After merge
This commit is contained in:
commit
224366ea99
|
@ -421,7 +421,7 @@
|
|||
|
||||
if (typeof _config.document.fileType === 'string' && _config.document.fileType != '') {
|
||||
_config.document.fileType = _config.document.fileType.toLowerCase();
|
||||
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx|fods|ots)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm|fodp|otp)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps|oxps|docm|dot|dotm|dotx|fodt|ott|fb2|xml|oform))$/
|
||||
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx|fods|ots)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm|fodp|otp)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps|oxps|docm|dot|dotm|dotx|fodt|ott|fb2|xml|oform|docxf))$/
|
||||
.exec(_config.document.fileType);
|
||||
if (!type) {
|
||||
window.alert("The \"document.fileType\" parameter for the config object is invalid. Please correct it.");
|
||||
|
|
|
@ -345,15 +345,15 @@ define([
|
|||
document.body.className = document.body.className.replace(/theme-[\w-]+\s?/gi, '').trim();
|
||||
document.body.classList.add(id, 'theme-type-' + themes_map[id].type);
|
||||
|
||||
if ( this.api.asc_setContentDarkMode )
|
||||
if ( themes_map[id].type == 'light' ) {
|
||||
this.api.asc_setContentDarkMode(false);
|
||||
} else {
|
||||
this.api.asc_setContentDarkMode(this.isContentThemeDark());
|
||||
Common.NotificationCenter.trigger('contenttheme:dark', this.isContentThemeDark());
|
||||
}
|
||||
|
||||
if ( this.api ) {
|
||||
if ( this.api.asc_setContentDarkMode )
|
||||
if ( themes_map[id].type == 'light' ) {
|
||||
this.api.asc_setContentDarkMode(false);
|
||||
} else {
|
||||
this.api.asc_setContentDarkMode(this.isContentThemeDark());
|
||||
Common.NotificationCenter.trigger('contenttheme:dark', this.isContentThemeDark());
|
||||
}
|
||||
|
||||
var obj = get_current_theme_colors(name_colors);
|
||||
obj.type = themes_map[id].type;
|
||||
obj.name = id;
|
||||
|
|
|
@ -52,14 +52,19 @@ var checkLocalStorage = (function () {
|
|||
}
|
||||
})();
|
||||
|
||||
if ( window.desktop && window.desktop.theme ) {
|
||||
if ( window.desktop.theme.id ) {
|
||||
// params.uitheme = undefined;
|
||||
localStorage.setItem("ui-theme-id", window.desktop.theme.id);
|
||||
} else
|
||||
if ( window.desktop.theme.type ) {
|
||||
if ( window.desktop.theme.type == 'dark' ) params.uitheme == 'default-dark'; else
|
||||
if ( window.desktop.theme.type == 'light' ) params.uitheme == 'default-light';
|
||||
if ( window.desktop && !!window.RendererProcessVariable ) {
|
||||
var theme = window.RendererProcessVariable.theme
|
||||
|
||||
if ( theme ) {
|
||||
if ( !theme.id && !!theme.type ) {
|
||||
if ( theme.type == 'dark' ) theme.id = 'theme-dark'; else
|
||||
if ( theme.type == 'light' ) theme.id = 'theme-classic-light';
|
||||
}
|
||||
|
||||
if ( theme.id ) {
|
||||
// params.uitheme = undefined;
|
||||
localStorage.setItem("ui-theme-id", theme.id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -144,7 +144,7 @@ define([
|
|||
'</tr>',
|
||||
'<tr>',
|
||||
'<td colspan="3" align="center">',
|
||||
'<label class="asc-about-desc"><% print(publisherurl.replace(/https?:\\/{2}/, "").replace(/\\/$/,"")) %></label>',
|
||||
'<a href="<%= publisherurl %>" target="_blank"><% print(publisherurl.replace(/https?:\\/{2}/, "").replace(/\\/$/,"")) %></a>',
|
||||
'</td>',
|
||||
'</tr>',
|
||||
'</table>'
|
||||
|
@ -195,7 +195,7 @@ define([
|
|||
if ( !this.rendered ) {
|
||||
this.licData = data || true;
|
||||
} else {
|
||||
if (data && typeof data == 'object' && typeof(data.customer)=='object') {
|
||||
if (data && typeof data == 'object' && data.customer && typeof(data.customer)=='object') {
|
||||
this.licData = data;
|
||||
var customer = data.customer;
|
||||
|
||||
|
|
|
@ -536,13 +536,13 @@ define([
|
|||
|
||||
if ( !config.isEdit ) {
|
||||
if ( (config.canDownload || config.canDownloadOrigin) && !config.isOffline )
|
||||
this.btnDownload = createTitleButton('toolbar__icon icon--inverse btn-download', $html.findById('#slot-hbtn-download'));
|
||||
this.btnDownload = createTitleButton('toolbar__icon icon--inverse btn-download', $html.findById('#slot-hbtn-download'), undefined, 'bottom', 'big');
|
||||
|
||||
if ( config.canPrint )
|
||||
this.btnPrint = createTitleButton('toolbar__icon icon--inverse btn-print', $html.findById('#slot-hbtn-print'));
|
||||
this.btnPrint = createTitleButton('toolbar__icon icon--inverse btn-print', $html.findById('#slot-hbtn-print'), undefined, 'bottom', 'big');
|
||||
|
||||
if ( config.canEdit && config.canRequestEditRights )
|
||||
this.btnEdit = createTitleButton('toolbar__icon icon--inverse btn-edit', $html.findById('#slot-hbtn-edit'));
|
||||
this.btnEdit = createTitleButton('toolbar__icon icon--inverse btn-edit', $html.findById('#slot-hbtn-edit'), undefined, 'bottom', 'big');
|
||||
}
|
||||
me.btnOptions.render($html.find('#slot-btn-options'));
|
||||
|
||||
|
@ -565,7 +565,9 @@ define([
|
|||
if ( !!window.DE ) {
|
||||
var mode_cls = Common.UI.Themes.isContentThemeDark() ? 'btn-mode-light' : 'btn-mode-dark';
|
||||
me.btnContentMode = createTitleButton('toolbar__icon icon--inverse ' + mode_cls, $html.findById('#slot-btn-mode'), undefined, 'bottom', 'big');
|
||||
me.btnContentMode.setVisible(Common.UI.Themes.isDarkTheme());
|
||||
|
||||
var document = window.DE.getController('Main').document;
|
||||
me.btnContentMode.setVisible(Common.UI.Themes.isDarkTheme() && !/^pdf|djvu|xps|oxps$/.test(document.fileType));
|
||||
}
|
||||
|
||||
return $html;
|
||||
|
@ -757,7 +759,7 @@ define([
|
|||
if ( alias == 'users' ) {
|
||||
if ( lock )
|
||||
$btnUsers.addClass('disabled').attr('disabled', 'disabled'); else
|
||||
$btnUsers.removeClass('disabled').attr('disabled', '');
|
||||
$btnUsers.removeClass('disabled').removeAttr('disabled');
|
||||
} else if ( alias == 'rename-user' ) {
|
||||
if (me.labelUserName) {
|
||||
if ( lock ) {
|
||||
|
|
|
@ -92,14 +92,17 @@
|
|||
.border-left-radius(0);
|
||||
|
||||
.dataview {
|
||||
@minus-px: calc(-1px / @pixel-ratio-factor);
|
||||
height: 46px;
|
||||
padding: 0;
|
||||
margin: -1px 0 0 -1px;
|
||||
margin: -1 0 0 -1;
|
||||
margin: @minus-px 0 0 @minus-px;
|
||||
}
|
||||
}
|
||||
|
||||
.item {
|
||||
padding: 2px;
|
||||
padding: @scaled-two-px-value;
|
||||
border: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
||||
border: @scaled-one-px-value solid @border-regular-control;
|
||||
.box-shadow(none);
|
||||
|
@ -111,6 +114,7 @@
|
|||
height: @combo-dataview-height;
|
||||
background-color: @background-normal-ie;
|
||||
background-color: @background-normal;
|
||||
display: flex;
|
||||
|
||||
&:hover {
|
||||
.box-inner-shadow(0 0 0 2px @border-preview-hover-ie);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "Zkopírovat do schránky",
|
||||
"common.view.modals.txtEmbed": "Vestavěný",
|
||||
"common.view.modals.txtEmbed": "Vestavět",
|
||||
"common.view.modals.txtHeight": "Výška",
|
||||
"common.view.modals.txtShare": "Odkaz pro sdílení",
|
||||
"common.view.modals.txtWidth": "Šířka",
|
||||
|
@ -11,25 +11,25 @@
|
|||
"DE.ApplicationController.downloadTextText": "Stahování dokumentu…",
|
||||
"DE.ApplicationController.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
||||
"DE.ApplicationController.errorDefaultMessage": "Kód chyby: %1",
|
||||
"DE.ApplicationController.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.<br>Použijte volbu 'Stáhnout jako…' pro uložení záložní kopie na harddisk Vašeho počítače. ",
|
||||
"DE.ApplicationController.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.<br>Použijte volbu „Stáhnout jako…“ a uložte si do souboru jako záložní kopii na svůj počítač.",
|
||||
"DE.ApplicationController.errorFilePassProtect": "Soubor je chráněn heslem a bez něj ho nelze otevřít.",
|
||||
"DE.ApplicationController.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.<br>Ohledně podrobností se obraťte na správce dokumentového serveru.",
|
||||
"DE.ApplicationController.errorForceSave": "Při ukládání souboru došlo k chybě. Prosím použijte 'Stáhnout jako' k uložení souboru na harddisk Vašeho počítače, nebo opakujte volbu později.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Styly nejsou načteny.<br>Prosím kontaktujte Vašeho administrátora dokumentových serverů.",
|
||||
"DE.ApplicationController.errorSubmit": "Potvrzení selhalo.",
|
||||
"DE.ApplicationController.errorForceSave": "Při ukládání souboru došlo k chybě. Prosím použijte „Stáhnout jako“ a uložte si soubor k sobě na počítač nebo původní volbu zkuste znovu později.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Písma nejsou načtená.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
||||
"DE.ApplicationController.errorSubmit": "Odeslání se nezdařilo.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.<br>Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.",
|
||||
"DE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Varování",
|
||||
"DE.ApplicationController.scriptLoadError": "Připojení je příliš pomalé, některé součásti se nepodařilo načíst. Načtěte stránku znovu.",
|
||||
"DE.ApplicationController.textAnonymous": "Anonymní",
|
||||
"DE.ApplicationController.textClear": "Odstranit všechna pole",
|
||||
"DE.ApplicationController.textClear": "Odstranit všechny kolonky",
|
||||
"DE.ApplicationController.textGotIt": "Rozumím",
|
||||
"DE.ApplicationController.textGuest": "Host",
|
||||
"DE.ApplicationController.textLoadingDocument": "Načítání dokumentu",
|
||||
"DE.ApplicationController.textNext": "Následující pole",
|
||||
"DE.ApplicationController.textNext": "Následující kolonka",
|
||||
"DE.ApplicationController.textOf": "z",
|
||||
"DE.ApplicationController.textRequired": "Pro odeslání formuláře vyplňte všechna požadovaná pole.",
|
||||
"DE.ApplicationController.textSubmit": "Potvrdit",
|
||||
"DE.ApplicationController.textRequired": "Aby formulář bylo možné odeslat, je třeba vyplnit všechny vyžadované kolonky.",
|
||||
"DE.ApplicationController.textSubmit": "Odeslat",
|
||||
"DE.ApplicationController.textSubmited": "<b>Formulář úspěšně uložen.</b><br>Klikněte pro zavření nápovědy.",
|
||||
"DE.ApplicationController.txtClose": "Zavřít",
|
||||
"DE.ApplicationController.txtEmpty": "(Prázdné)",
|
||||
|
@ -40,7 +40,7 @@
|
|||
"DE.ApplicationView.txtDownload": "Stáhnout",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Stáhnout jako docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Stáhnout jako pdf",
|
||||
"DE.ApplicationView.txtEmbed": "Vestavěný",
|
||||
"DE.ApplicationView.txtEmbed": "Vestavět",
|
||||
"DE.ApplicationView.txtFileLocation": "Otevřít umístění souboru",
|
||||
"DE.ApplicationView.txtFullScreen": "Na celou obrazovku",
|
||||
"DE.ApplicationView.txtPrint": "Tisk",
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
"DE.ApplicationController.textOf": "di",
|
||||
"DE.ApplicationController.textRequired": "Compila tutti i campi richiesti per inviare il modulo.",
|
||||
"DE.ApplicationController.textSubmit": "Invia",
|
||||
"DE.ApplicationController.textSubmited": "<b>Modulo inviato con successo</b><br>Fare click per chiudere la notifica</br>",
|
||||
"DE.ApplicationController.textSubmited": "<b>Modulo è stato inviato con successo</b><br>Clicca su per chiudere la notifica</br>",
|
||||
"DE.ApplicationController.txtClose": "Chiudi",
|
||||
"DE.ApplicationController.txtEmpty": "(Vuoto)",
|
||||
"DE.ApplicationController.txtPressLink": "Premi CTRL e clicca sul collegamento",
|
||||
|
|
|
@ -16,24 +16,41 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel vostre servidor. Contacteu amb el vostre administrador del servidor de documents per obtenir més informació.",
|
||||
"DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.",
|
||||
"DE.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.<br>Contacteu amb l'administrador del Servidor de Documents.",
|
||||
"DE.ApplicationController.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.",
|
||||
"DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat. <br> Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, torneu a carregar aquesta pàgina.",
|
||||
"DE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Advertiment",
|
||||
"DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.",
|
||||
"DE.ApplicationController.textAnonymous": "Anònim",
|
||||
"DE.ApplicationController.textBuyNow": "Visiteu el lloc web",
|
||||
"DE.ApplicationController.textCloseTip": "Feu clic per tancar el suggeriment.",
|
||||
"DE.ApplicationController.textContactUs": "Contacteu amb vendes",
|
||||
"DE.ApplicationController.textGotIt": "Ho tinc",
|
||||
"DE.ApplicationController.textGuest": "Convidat",
|
||||
"DE.ApplicationController.textLoadingDocument": "S'està carregant el document",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "S'ha assolit el límit de llicència",
|
||||
"DE.ApplicationController.textOf": "de",
|
||||
"DE.ApplicationController.textRequired": "Emplena tots els camps necessaris per enviar el formulari.",
|
||||
"DE.ApplicationController.textSubmited": "<b>El formulari s'ha enviat amb èxit</b><br>Cliqueu per a tancar el consell",
|
||||
"DE.ApplicationController.titleServerVersion": "S'ha actualitzat l'editor",
|
||||
"DE.ApplicationController.titleUpdateVersion": "S'ha canviat la versió",
|
||||
"DE.ApplicationController.txtClose": "Tanca",
|
||||
"DE.ApplicationController.txtEmpty": "(Buit)",
|
||||
"DE.ApplicationController.txtPressLink": "Prem CTRL i clica a l'enllaç",
|
||||
"DE.ApplicationController.unknownErrorText": "Error desconegut.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.",
|
||||
"DE.ApplicationController.waitText": "Espereu...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "Heu arribat al límit de connexions simultànies amb %1 editors. Aquest document només s'obrirà en mode lectura. <br> Contacteu amb el vostre administrador per obtenir més informació.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "La llicència ha caducat.<br>No teniu accés a la funció d'edició de documents.<br>Contacteu amb el vostre administrador.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "Cal renovar la llicència.<br>Teniu un accés limitat a la funció d'edició de documents.<br>Contacteu amb el vostre administrador per obtenir accés complet",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per a més informació.",
|
||||
"DE.ApplicationController.warnNoLicense": "Heu arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà en mode de només lectura. Contacteu l'equip de vendes %1 per a les condicions personals de millora del servei.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.",
|
||||
"DE.ApplicationView.textClear": "Esborra tots els camps",
|
||||
"DE.ApplicationView.textNext": "Camp següent",
|
||||
"DE.ApplicationView.textSubmit": "Envia",
|
||||
"DE.ApplicationView.txtDownload": "Baixa",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Baixa-ho com a .docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Baixa-ho com a pdf",
|
||||
|
@ -41,5 +58,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer",
|
||||
"DE.ApplicationView.txtFullScreen": "Pantalla sencera",
|
||||
"DE.ApplicationView.txtPrint": "Imprimeix",
|
||||
"DE.ApplicationView.txtShare": "Comparteix"
|
||||
"DE.ApplicationView.txtShare": "Comparteix",
|
||||
"DE.ApplicationView.txtTheme": "Tema de la interfície"
|
||||
}
|
|
@ -16,27 +16,41 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
|
||||
"DE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.<br>Bitte wenden Sie sich an Administratoren von Ihrem Document Server.",
|
||||
"DE.ApplicationController.errorServerVersion": "Version des Editors wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.",
|
||||
"DE.ApplicationController.errorSubmit": "Fehler beim Senden.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "Die Dateiversion wurde geändert. Die Seite wird neu geladen.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.<br>Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.",
|
||||
"DE.ApplicationController.errorUserDrop": "Der Zugriff auf diese Datei ist nicht möglich.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Warnung",
|
||||
"DE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.",
|
||||
"DE.ApplicationController.textAnonymous": "Anonym",
|
||||
"DE.ApplicationController.textClear": "Alle Felder löschen",
|
||||
"DE.ApplicationController.textBuyNow": "Webseite besuchen",
|
||||
"DE.ApplicationController.textCloseTip": "Klicken Sie hier, um den Tipp zu schließen.",
|
||||
"DE.ApplicationController.textContactUs": "Verkaufsteam kontaktieren",
|
||||
"DE.ApplicationController.textGotIt": "OK",
|
||||
"DE.ApplicationController.textGuest": "Gast",
|
||||
"DE.ApplicationController.textLoadingDocument": "Dokument wird geladen...",
|
||||
"DE.ApplicationController.textNext": "Nächstes Feld",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
"DE.ApplicationController.textOf": "von",
|
||||
"DE.ApplicationController.textRequired": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.",
|
||||
"DE.ApplicationController.textSubmit": "Senden",
|
||||
"DE.ApplicationController.textSubmited": "<b>Das Formular wurde erfolgreich abgesendet</b><br>Klicken Sie hier, um den Tipp auszublenden",
|
||||
"DE.ApplicationController.titleServerVersion": "Editor wurde aktualisiert",
|
||||
"DE.ApplicationController.titleUpdateVersion": "Version wurde geändert",
|
||||
"DE.ApplicationController.txtClose": "Schließen",
|
||||
"DE.ApplicationController.txtEmpty": "(Leer)",
|
||||
"DE.ApplicationController.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link",
|
||||
"DE.ApplicationController.unknownErrorText": "Unbekannter Fehler.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.",
|
||||
"DE.ApplicationController.waitText": "Bitte warten...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "Die Lizenz ist abgelaufen.<br>Die Bearbeitungsfunktionen sind nicht verfügbar.<br>Bitte wenden Sie sich an Ihrem Administrator.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "Die Lizenz soll aktualisiert werden.<br>Die Bearbeitungsfunktionen sind eingeschränkt.<br>Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.ApplicationController.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"DE.ApplicationView.textClear": "Alle Felder leeren",
|
||||
"DE.ApplicationView.textNext": "Nächstes Feld",
|
||||
"DE.ApplicationView.textSubmit": "Senden",
|
||||
"DE.ApplicationView.txtDownload": "Herunterladen",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Als DOCX herunterladen",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Als PDF herunterladen",
|
||||
|
@ -44,5 +58,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Dateispeicherort öffnen",
|
||||
"DE.ApplicationView.txtFullScreen": "Vollbild-Modus",
|
||||
"DE.ApplicationView.txtPrint": "Drucken",
|
||||
"DE.ApplicationView.txtShare": "Freigeben"
|
||||
"DE.ApplicationView.txtShare": "Freigeben",
|
||||
"DE.ApplicationView.txtTheme": "Thema der Benutzeroberfläche"
|
||||
}
|
|
@ -22,14 +22,11 @@
|
|||
"DE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση",
|
||||
"DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.",
|
||||
"DE.ApplicationController.textAnonymous": "Ανώνυμος",
|
||||
"DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων",
|
||||
"DE.ApplicationController.textGotIt": "Ελήφθη",
|
||||
"DE.ApplicationController.textGuest": "Επισκέπτης",
|
||||
"DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου",
|
||||
"DE.ApplicationController.textNext": "Επόμενο Πεδίο",
|
||||
"DE.ApplicationController.textOf": "του",
|
||||
"DE.ApplicationController.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.",
|
||||
"DE.ApplicationController.textSubmit": "Υποβολή",
|
||||
"DE.ApplicationController.textSubmited": "<b>Η φόρμα υποβλήθηκε με επιτυχία</b><br>Κάντε κλικ για να κλείσετε τη συμβουλή ",
|
||||
"DE.ApplicationController.txtClose": "Κλείσιμο",
|
||||
"DE.ApplicationController.txtEmpty": "(Κενό)",
|
||||
|
|
|
@ -16,38 +16,41 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
||||
"DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"DE.ApplicationController.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"DE.ApplicationController.errorSubmit": "Submit failed.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Warning",
|
||||
"DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
|
||||
"DE.ApplicationController.textAnonymous": "Anonymous",
|
||||
"DE.ApplicationController.textBuyNow": "Visit website",
|
||||
"DE.ApplicationController.textCloseTip": "Click to close the tip.",
|
||||
"DE.ApplicationController.textContactUs": "Contact sales",
|
||||
"DE.ApplicationController.textGotIt": "Got it",
|
||||
"DE.ApplicationController.textGuest": "Guest",
|
||||
"DE.ApplicationController.textLoadingDocument": "Loading document",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "License limit reached",
|
||||
"DE.ApplicationController.textOf": "of",
|
||||
"DE.ApplicationController.textRequired": "Fill all required fields to send form.",
|
||||
"DE.ApplicationController.textSubmited": "<b>Form submitted successfully</b><br>Click to close the tip",
|
||||
"DE.ApplicationController.titleServerVersion": "Editor updated",
|
||||
"DE.ApplicationController.titleUpdateVersion": "Version changed",
|
||||
"DE.ApplicationController.txtClose": "Close",
|
||||
"DE.ApplicationController.txtEmpty": "(Empty)",
|
||||
"DE.ApplicationController.txtPressLink": "Press Ctrl and click link",
|
||||
"DE.ApplicationController.unknownErrorText": "Unknown error.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.",
|
||||
"DE.ApplicationController.waitText": "Please, wait...",
|
||||
"DE.ApplicationController.textCloseTip": "Click to close the tip.",
|
||||
"DE.ApplicationController.titleServerVersion": "Editor updated",
|
||||
"DE.ApplicationController.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"DE.ApplicationController.titleUpdateVersion": "Version changed",
|
||||
"DE.ApplicationController.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "License needs to be renewed.<br>You have a limited access to document editing functionality.<br>Please contact your administrator to get full access",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "License expired.<br>You have no access to document editing functionality.<br>Please contact your administrator.",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "License expired.<br>You have no access to document editing functionality.<br>Please contact your administrator.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "License needs to be renewed.<br>You have a limited access to document editing functionality.<br>Please contact your administrator to get full access",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"DE.ApplicationController.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"DE.ApplicationController.textBuyNow": "Visit website",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "License limit reached",
|
||||
"DE.ApplicationController.textContactUs": "Contact sales",
|
||||
"DE.ApplicationView.textClear": "Clear All Fields",
|
||||
"DE.ApplicationView.textNext": "Next Field",
|
||||
"DE.ApplicationView.textSubmit": "Submit",
|
||||
"DE.ApplicationView.txtDownload": "Download",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Download as docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Download as pdf",
|
||||
|
@ -56,8 +59,5 @@
|
|||
"DE.ApplicationView.txtFullScreen": "Full Screen",
|
||||
"DE.ApplicationView.txtPrint": "Print",
|
||||
"DE.ApplicationView.txtShare": "Share",
|
||||
"DE.ApplicationView.textSubmit": "Submit",
|
||||
"DE.ApplicationView.textClear": "Clear All Fields",
|
||||
"DE.ApplicationView.textNext": "Next Field",
|
||||
"DE.ApplicationView.txtTheme": "Interface theme"
|
||||
}
|
|
@ -16,27 +16,41 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede el límite establecido para su servidor. Por favor póngase en contacto con el administrador del Servidor de Documentos para obtener más información.",
|
||||
"DE.ApplicationController.errorForceSave": "Ha ocurrido un error al guardar el archivo. Por favor, use la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.<br>Por favor, póngase en contacto con el administrador del Document Server.",
|
||||
"DE.ApplicationController.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
|
||||
"DE.ApplicationController.errorSubmit": "Error al enviar.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página.",
|
||||
"DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||
"DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, recargue la página.",
|
||||
"DE.ApplicationController.textAnonymous": "Anónimo",
|
||||
"DE.ApplicationController.textClear": "Borrar todos los campos",
|
||||
"DE.ApplicationController.textBuyNow": "Visitar sitio web",
|
||||
"DE.ApplicationController.textCloseTip": "Haga clic para cerrar el consejo.",
|
||||
"DE.ApplicationController.textContactUs": "Contactar con el equipo de ventas",
|
||||
"DE.ApplicationController.textGotIt": "Entiendo",
|
||||
"DE.ApplicationController.textGuest": "Invitado",
|
||||
"DE.ApplicationController.textLoadingDocument": "Cargando documento",
|
||||
"DE.ApplicationController.textNext": "Campo siguiente",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "Se ha alcanzado el límite de licencia",
|
||||
"DE.ApplicationController.textOf": "de",
|
||||
"DE.ApplicationController.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.",
|
||||
"DE.ApplicationController.textSubmit": "Enviar",
|
||||
"DE.ApplicationController.textSubmited": "<b>Formulario enviado con éxito</b><br>Haga clic para cerrar el consejo",
|
||||
"DE.ApplicationController.titleServerVersion": "Editor ha sido actualizado",
|
||||
"DE.ApplicationController.titleUpdateVersion": "Versión se ha cambiado",
|
||||
"DE.ApplicationController.txtClose": "Cerrar",
|
||||
"DE.ApplicationController.txtEmpty": "(Vacío)",
|
||||
"DE.ApplicationController.txtPressLink": "Pulse CTRL y haga clic en el enlace",
|
||||
"DE.ApplicationController.unknownErrorText": "Error desconocido.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.",
|
||||
"DE.ApplicationController.waitText": "Por favor, espere...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.<br>Por favor, contacte con su administrador para recibir más información.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "Licencia expirada.<br>No tiene acceso a la funcionalidad de edición de documentos.<br>Por favor, póngase en contacto con su administrador.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "La licencia requiere ser renovada.<br>Tiene un acceso limitado a la funcionalidad de edición de documentos.<br>Por favor, póngase en contacto con su administrador para obtener un acceso completo",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.",
|
||||
"DE.ApplicationController.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.<br>Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1.<br>Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.",
|
||||
"DE.ApplicationView.textClear": "Borrar todos los campos",
|
||||
"DE.ApplicationView.textNext": "Campo siguiente",
|
||||
"DE.ApplicationView.textSubmit": "Enviar",
|
||||
"DE.ApplicationView.txtDownload": "Descargar",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Descargar como docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Descargar como pdf",
|
||||
|
@ -44,5 +58,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo",
|
||||
"DE.ApplicationView.txtFullScreen": "Pantalla Completa",
|
||||
"DE.ApplicationView.txtPrint": "Imprimir",
|
||||
"DE.ApplicationView.txtShare": "Compartir"
|
||||
"DE.ApplicationView.txtShare": "Compartir",
|
||||
"DE.ApplicationView.txtTheme": "Tema de interfaz"
|
||||
}
|
|
@ -16,27 +16,41 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ",
|
||||
"DE.ApplicationController.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||
"DE.ApplicationController.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.",
|
||||
"DE.ApplicationController.errorSubmit": "Échec de soumission",
|
||||
"DE.ApplicationController.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.<br>Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.",
|
||||
"DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
||||
"DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
||||
"DE.ApplicationController.textAnonymous": "Anonyme",
|
||||
"DE.ApplicationController.textClear": "Effacer tous les champs",
|
||||
"DE.ApplicationController.textBuyNow": "Visiter le site web",
|
||||
"DE.ApplicationController.textCloseTip": "Cliquez pour fermer le conseil.",
|
||||
"DE.ApplicationController.textContactUs": "Contacter l'équipe de ventes",
|
||||
"DE.ApplicationController.textGotIt": "C'est compris",
|
||||
"DE.ApplicationController.textGuest": "Invité",
|
||||
"DE.ApplicationController.textLoadingDocument": "Chargement du document",
|
||||
"DE.ApplicationController.textNext": "Champ suivant",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "La limite de la licence est atteinte",
|
||||
"DE.ApplicationController.textOf": "de",
|
||||
"DE.ApplicationController.textRequired": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire.",
|
||||
"DE.ApplicationController.textSubmit": "Soumettre ",
|
||||
"DE.ApplicationController.textSubmited": "<b>Le formulaire a été soumis avec succès</b><br>Cliquez ici pour fermer l'astuce",
|
||||
"DE.ApplicationController.titleServerVersion": "L'éditeur est mis à jour",
|
||||
"DE.ApplicationController.titleUpdateVersion": "La version a été modifiée",
|
||||
"DE.ApplicationController.txtClose": "Fermer",
|
||||
"DE.ApplicationController.txtEmpty": "(Vide)",
|
||||
"DE.ApplicationController.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien",
|
||||
"DE.ApplicationController.unknownErrorText": "Erreur inconnue.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.",
|
||||
"DE.ApplicationController.waitText": "Veuillez patienter...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour en savoir davantage.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "La licence est expirée.<br>Vous n'avez plus d'accès aux outils d'édition.<br>Veuillez contacter votre administrateur.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "La licence doit être renouvelée.<br>Vous avez un accès limité aux outils d'édition des documents.<br>Veuillez contacter votre administrateur pour obtenir un accès complet.",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Veuillez contacter votre administrateur pour en savoir davantage.",
|
||||
"DE.ApplicationController.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule.<br>Veuillez contacter le service des ventes %1 pour connaître les conditions de mise à niveau personnelle.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Veuillez contacter l’équipe des ventes %1 pour connaître les conditions de mise à niveau personnelle.",
|
||||
"DE.ApplicationView.textClear": "Effacer tous les champs",
|
||||
"DE.ApplicationView.textNext": "Champ suivant",
|
||||
"DE.ApplicationView.textSubmit": "Soumettre ",
|
||||
"DE.ApplicationView.txtDownload": "Télécharger",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Télécharger en tant que docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Télécharger en tant que pdf",
|
||||
|
@ -44,5 +58,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Ouvrir l'emplacement du fichier",
|
||||
"DE.ApplicationView.txtFullScreen": "Plein écran",
|
||||
"DE.ApplicationView.txtPrint": "Imprimer",
|
||||
"DE.ApplicationView.txtShare": "Partager"
|
||||
"DE.ApplicationView.txtShare": "Partager",
|
||||
"DE.ApplicationView.txtTheme": "Thème d’interface"
|
||||
}
|
|
@ -16,27 +16,41 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
||||
"DE.ApplicationController.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.",
|
||||
"DE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.<br>Si prega di contattare il tuo amministratore di Document Server.",
|
||||
"DE.ApplicationController.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.",
|
||||
"DE.ApplicationController.errorSubmit": "Invio fallito.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.",
|
||||
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
||||
"DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
||||
"DE.ApplicationController.textAnonymous": "Anonimo",
|
||||
"DE.ApplicationController.textClear": "Cancella tutti i campi",
|
||||
"DE.ApplicationController.textBuyNow": "Visita il sito web",
|
||||
"DE.ApplicationController.textCloseTip": "Clicca su per chiudere la notifica",
|
||||
"DE.ApplicationController.textContactUs": "Contatta il team di vendita",
|
||||
"DE.ApplicationController.textGotIt": "Capito",
|
||||
"DE.ApplicationController.textGuest": "Ospite",
|
||||
"DE.ApplicationController.textLoadingDocument": "Caricamento del documento",
|
||||
"DE.ApplicationController.textNext": "Campo successivo",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "E' stato raggiunto il limite della licenza",
|
||||
"DE.ApplicationController.textOf": "di",
|
||||
"DE.ApplicationController.textRequired": "Compila tutti i campi richiesti per inviare il modulo.",
|
||||
"DE.ApplicationController.textSubmit": "Invia",
|
||||
"DE.ApplicationController.textSubmited": "<b>Modulo inviato con successo</b><br>Fare click per chiudere la notifica</br>",
|
||||
"DE.ApplicationController.titleServerVersion": "L'editor è stato aggiornato",
|
||||
"DE.ApplicationController.titleUpdateVersion": "La versione è stata cambiata",
|
||||
"DE.ApplicationController.txtClose": "Chiudi",
|
||||
"DE.ApplicationController.txtEmpty": "(Vuoto)",
|
||||
"DE.ApplicationController.txtPressLink": "Premi CTRL e clicca sul collegamento",
|
||||
"DE.ApplicationController.unknownErrorText": "Errore sconosciuto.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.",
|
||||
"DE.ApplicationController.waitText": "Per favore, attendi...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "Hai raggiunto il limite delle connessioni simultanee con gli editor %1. Questo documento verrà aperto solo per la visualizzazione.<br>Ti preghiamo di contattare il tuo amministratore per maggior informazioni.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "Licenza è scaduta. <br>Non hai accesso alle funzionalità di modifica dei documenti.<br>Ti preghiamo di contattare l'amministratore.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "La licenza va rinnovata. <br>Hai un accesso limitato alle funzionalità di modifica dei documenti.<br>Ti preghiamo di contattare l'amministratore per ottenere l'accesso completo",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.",
|
||||
"DE.ApplicationController.warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee con gli editor %1. Questo documento verrà aperto solo per la visualizzazione.<br>Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.",
|
||||
"DE.ApplicationView.textClear": "Cancellare tutti i campi",
|
||||
"DE.ApplicationView.textNext": "Campo successivo",
|
||||
"DE.ApplicationView.textSubmit": "Invia",
|
||||
"DE.ApplicationView.txtDownload": "Scarica",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Scarica come .docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Scarica come .pdf",
|
||||
|
@ -44,5 +58,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Apri percorso file",
|
||||
"DE.ApplicationView.txtFullScreen": "Schermo intero",
|
||||
"DE.ApplicationView.txtPrint": "Stampa",
|
||||
"DE.ApplicationView.txtShare": "Condividi"
|
||||
"DE.ApplicationView.txtShare": "Condividi",
|
||||
"DE.ApplicationView.txtTheme": "Tema dell'interfaccia"
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "클립보드로 복사",
|
||||
"common.view.modals.txtEmbed": "개체 삽입",
|
||||
"common.view.modals.txtEmbed": "퍼가기",
|
||||
"common.view.modals.txtHeight": "높이",
|
||||
"common.view.modals.txtShare": "링크 공유",
|
||||
"common.view.modals.txtWidth": "너비",
|
||||
|
@ -10,36 +10,54 @@
|
|||
"DE.ApplicationController.downloadErrorText": "다운로드 실패",
|
||||
"DE.ApplicationController.downloadTextText": "문서 다운로드 중...",
|
||||
"DE.ApplicationController.errorAccessDeny": "권한이없는 작업을 수행하려고합니다. <br> Document Server 관리자에게 문의하십시오.",
|
||||
"DE.ApplicationController.errorDefaultMessage": "오류 코드: %1",
|
||||
"DE.ApplicationController.errorDefaultMessage": "오류 코드 : % 1",
|
||||
"DE.ApplicationController.errorEditingDownloadas": " 문서 작업 중에 알수 없는 장애가 발생했습니다.<br> \"다른 이름으로 다운로드...\"를 선택하여 파일을 현재 사용 중인 컴퓨터 하드 디스크에 저장하시기 바랍니다.",
|
||||
"DE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.",
|
||||
"DE.ApplicationController.errorFilePassProtect": "이 문서는 암호로 보호되어 있어 열 수 없습니다.",
|
||||
"DE.ApplicationController.errorFileSizeExceed": "파일의 크기가 서버에서 정해진 범위를 초과 했습니다. 문서 서버 관리자에게 해당 내용에 대한 자세한 안내를 받아 보시기 바랍니다.",
|
||||
"DE.ApplicationController.errorForceSave": "파일을 저장하는 동안 오류가 발생했습니다. \"다른 이름으로 다운로드\" 옵션을 사용하여 파일을 컴퓨터의 하드 드라이브에 저장하거나 나중에 다시 시도하십시오.",
|
||||
"DE.ApplicationController.errorLoadingFont": "글꼴이 로드되지 않았습니다. <br>문서 관리 관리자에게 문의하십시오.",
|
||||
"DE.ApplicationController.errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.",
|
||||
"DE.ApplicationController.errorSubmit": "전송실패",
|
||||
"DE.ApplicationController.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다. <br>계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.",
|
||||
"DE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "경고",
|
||||
"DE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.",
|
||||
"DE.ApplicationController.textAnonymous": "익명사용자",
|
||||
"DE.ApplicationController.textAnonymous": "익명",
|
||||
"DE.ApplicationController.textBuyNow": "웹 사이트 방문",
|
||||
"DE.ApplicationController.textCloseTip": "팁을 닫으려면 클릭합니다.",
|
||||
"DE.ApplicationController.textContactUs": "영업 담당자에게 문의",
|
||||
"DE.ApplicationController.textGotIt": "취득",
|
||||
"DE.ApplicationController.textGuest": "게스트",
|
||||
"DE.ApplicationController.textLoadingDocument": "문서 로드 중",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "ONLYOFFICE 연결 제한",
|
||||
"DE.ApplicationController.textOf": "의",
|
||||
"DE.ApplicationController.textRequired": "양식을 보내려면 모든 필수 필드를 채우십시오.",
|
||||
"DE.ApplicationController.textSubmited": "<b>양식이 성공적으로 전송되었습니다.</b><br>여기를 클릭하여 프롬프트를 닫으십시오",
|
||||
"DE.ApplicationController.titleServerVersion": "편집기가 업데이트되었습니다.",
|
||||
"DE.ApplicationController.titleUpdateVersion": "버전이 변경되었습니다.",
|
||||
"DE.ApplicationController.txtClose": "닫기",
|
||||
"DE.ApplicationController.txtEmpty": "(없음)",
|
||||
"DE.ApplicationController.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭",
|
||||
"DE.ApplicationController.unknownErrorText": "알 수없는 오류.",
|
||||
"DE.ApplicationController.unknownErrorText": "알 수 없는 오류.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.",
|
||||
"DE.ApplicationController.waitText": "잠시만 기다려주세요...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "귀하의 시스템은 동시에 연결을 편집하는 %1명의 편집자에게 도달했습니다. 이 문서는 보기 모드에서만 열 수 있습니다. <br> 자세한 내용은 관리자에게 문의하십시오.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다.<br>더 이상 파일을 수정할 수 있는 권한이 없습니다.<br> 관리자에게 문의하세요.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "라이센스를 갱신해야합니다. <br> 문서 편집 기능에 대한 액세스가 제한되어 있습니다. <br> 전체 액세스 권한을 얻으려면 관리자에게 문의하십시오",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.",
|
||||
"DE.ApplicationController.warnNoLicense": "이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다. <br> 더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다. <br> 더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.",
|
||||
"DE.ApplicationView.textClear": "모든 필드 지우기",
|
||||
"DE.ApplicationView.textNext": "다음 필드",
|
||||
"DE.ApplicationView.textSubmit": "전송",
|
||||
"DE.ApplicationView.txtDownload": "다운로드 ",
|
||||
"DE.ApplicationView.txtDownloadDocx": "docx 형식으로 다운로드",
|
||||
"DE.ApplicationView.txtDownloadPdf": "PDF형식으로 다운로드",
|
||||
"DE.ApplicationView.txtEmbed": "개체 삽입",
|
||||
"DE.ApplicationView.txtEmbed": "퍼가기",
|
||||
"DE.ApplicationView.txtFileLocation": "파일 위치 열기",
|
||||
"DE.ApplicationView.txtFullScreen": "전체 화면",
|
||||
"DE.ApplicationView.txtPrint": "인쇄",
|
||||
"DE.ApplicationView.txtShare": "공유"
|
||||
"DE.ApplicationView.txtShare": "공유",
|
||||
"DE.ApplicationView.txtTheme": "인터페이스 테마"
|
||||
}
|
|
@ -19,11 +19,8 @@
|
|||
"DE.ApplicationController.errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງຟາຍໄດ້",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "ເຕືອນ",
|
||||
"DE.ApplicationController.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່",
|
||||
"DE.ApplicationController.textClear": "ລຶບລ້າງຟີລທັງໝົດ",
|
||||
"DE.ApplicationController.textLoadingDocument": "ກຳລັງໂຫຼດເອກະສານ",
|
||||
"DE.ApplicationController.textNext": "ຟີລທັດໄປ",
|
||||
"DE.ApplicationController.textOf": "ຂອງ",
|
||||
"DE.ApplicationController.textSubmit": "ສົ່ງອອກ",
|
||||
"DE.ApplicationController.textSubmited": "<b> ແບບຟອມທີ່ສົ່ງມາແລ້ວ",
|
||||
"DE.ApplicationController.txtClose": " ປິດ",
|
||||
"DE.ApplicationController.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ",
|
||||
|
|
|
@ -20,14 +20,11 @@
|
|||
"DE.ApplicationController.notcriticalErrorTitle": "Waarschuwing",
|
||||
"DE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.",
|
||||
"DE.ApplicationController.textAnonymous": "Anoniem",
|
||||
"DE.ApplicationController.textClear": "Wis Alle Velden",
|
||||
"DE.ApplicationController.textGotIt": "OK",
|
||||
"DE.ApplicationController.textGuest": "Gast",
|
||||
"DE.ApplicationController.textLoadingDocument": "Document wordt geladen",
|
||||
"DE.ApplicationController.textNext": "Volgend veld ",
|
||||
"DE.ApplicationController.textOf": "van",
|
||||
"DE.ApplicationController.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.",
|
||||
"DE.ApplicationController.textSubmit": "Verzenden ",
|
||||
"DE.ApplicationController.textSubmited": "<b>Formulier succesvol ingediend</b><br>Klik om de tip te sluiten",
|
||||
"DE.ApplicationController.txtClose": "Sluiten",
|
||||
"DE.ApplicationController.unknownErrorText": "Onbekende fout.",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "Copiar para a área de transferência",
|
||||
"common.view.modals.txtCopy": "Copiar para a área de trabalho",
|
||||
"common.view.modals.txtEmbed": "Incorporar",
|
||||
"common.view.modals.txtHeight": "Altura",
|
||||
"common.view.modals.txtShare": "Compartilhar link",
|
||||
|
@ -7,42 +7,57 @@
|
|||
"DE.ApplicationController.convertationErrorText": "Conversão falhou.",
|
||||
"DE.ApplicationController.convertationTimeoutText": "Tempo limite de conversão excedido.",
|
||||
"DE.ApplicationController.criticalErrorTitle": "Erro",
|
||||
"DE.ApplicationController.downloadErrorText": "Transferência falhou.",
|
||||
"DE.ApplicationController.downloadTextText": "Transferindo documento...",
|
||||
"DE.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.<br>Entre em contato com o administrador do Document Server.",
|
||||
"DE.ApplicationController.downloadErrorText": "Download falhou.",
|
||||
"DE.ApplicationController.downloadTextText": "Baixando documento...",
|
||||
"DE.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação que você não tem direitos. <br> Contate o administrador do Servidor de Documentos.",
|
||||
"DE.ApplicationController.errorDefaultMessage": "Código do erro: %1",
|
||||
"DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.<br>Utilizar a opção 'Download as...' para salvar a cópia de backup do arquivo no disco rígido do seu computador.",
|
||||
"DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro. <br> Use a opção 'Transferir como...' para gravar a cópia de backup em seu computador.",
|
||||
"DE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
|
||||
"DE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. <br> Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
|
||||
"DE.ApplicationController.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Baixar como' para gravar o arquivo em seu computador ou tente novamente mais tarde.",
|
||||
"DE.ApplicationController.errorLoadingFont": "As fontes não foram carregadas. <br> Entre em contato com o administrador do Document Server.",
|
||||
"DE.ApplicationController.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
|
||||
"DE.ApplicationController.errorSubmit": "Falha no envio.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada. <br> Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.",
|
||||
"DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||
"DE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.",
|
||||
"DE.ApplicationController.textAnonymous": "Anônimo",
|
||||
"DE.ApplicationController.textClear": "Limpar todos os campos",
|
||||
"DE.ApplicationController.textBuyNow": "Visitar website",
|
||||
"DE.ApplicationController.textCloseTip": "Clique para fechar a dica.",
|
||||
"DE.ApplicationController.textContactUs": "Entre em contato com o departamento de vendas",
|
||||
"DE.ApplicationController.textGotIt": "Entendi",
|
||||
"DE.ApplicationController.textGuest": "Convidado(a)",
|
||||
"DE.ApplicationController.textGuest": "Convidado",
|
||||
"DE.ApplicationController.textLoadingDocument": "Carregando documento",
|
||||
"DE.ApplicationController.textNext": "Próximo campo",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "Limite de licença atingido",
|
||||
"DE.ApplicationController.textOf": "de",
|
||||
"DE.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.",
|
||||
"DE.ApplicationController.textSubmit": "Enviar",
|
||||
"DE.ApplicationController.textSubmited": "<b>Formulário apresentado com sucesso</b>>br>Click para fechar a ponta",
|
||||
"DE.ApplicationController.txtClose": "Fechar",
|
||||
"DE.ApplicationController.titleServerVersion": "Editor atualizado",
|
||||
"DE.ApplicationController.titleUpdateVersion": "Versão alterada",
|
||||
"DE.ApplicationController.txtClose": "Encerrar",
|
||||
"DE.ApplicationController.txtEmpty": "(Vazio)",
|
||||
"DE.ApplicationController.txtPressLink": "Pressione CTRL e clique no link",
|
||||
"DE.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.",
|
||||
"DE.ApplicationController.waitText": "Aguarde...",
|
||||
"DE.ApplicationView.txtDownload": "Transferir",
|
||||
"DE.ApplicationController.waitText": "Por favor, aguarde...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com seu administrador para saber mais.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "A licença expirou.<br>Você não tem acesso à funcionalidade de edição de documentos.<br>Por favor, contate seu administrador.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "A licença precisa ser renovada. <br> Você tem acesso limitado à funcionalidade de edição de documentos. <br> Entre em contato com o administrador para obter acesso total.",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.",
|
||||
"DE.ApplicationController.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"DE.ApplicationView.textClear": "Limpar todos os campos",
|
||||
"DE.ApplicationView.textNext": "Próximo campo",
|
||||
"DE.ApplicationView.textSubmit": "Enviar",
|
||||
"DE.ApplicationView.txtDownload": "Baixar",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Baixar como docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Baixar como pdf",
|
||||
"DE.ApplicationView.txtEmbed": "Incorporar",
|
||||
"DE.ApplicationView.txtFileLocation": "Local do arquivo aberto",
|
||||
"DE.ApplicationView.txtFullScreen": "Tela cheia",
|
||||
"DE.ApplicationView.txtPrint": "Imprimir",
|
||||
"DE.ApplicationView.txtShare": "Compartilhar"
|
||||
"DE.ApplicationView.txtShare": "Compartilhar",
|
||||
"DE.ApplicationView.txtTheme": "Tema de interface"
|
||||
}
|
|
@ -16,27 +16,41 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.<br>Pentru detalii, contactați administratorul dumneavoastră de Server Documente.",
|
||||
"DE.ApplicationController.errorForceSave": "S-a produs o eroare în timpul salvării fișierului. Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca... sau încercați din nou mai târziu.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Fonturile nu sunt încărcate.<br>Contactați administratorul dvs de Server Documente.",
|
||||
"DE.ApplicationController.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.",
|
||||
"DE.ApplicationController.errorSubmit": "Remiterea eșuată.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.<br>Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.",
|
||||
"DE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Avertisment",
|
||||
"DE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.",
|
||||
"DE.ApplicationController.textAnonymous": "Anonim",
|
||||
"DE.ApplicationController.textClear": "Goleşte toate câmpurile",
|
||||
"DE.ApplicationController.textBuyNow": "Vizitarea site-ul Web",
|
||||
"DE.ApplicationController.textCloseTip": "Faceţi clic pentru a închide sfatul.",
|
||||
"DE.ApplicationController.textContactUs": "Contactați Departamentul de Vânzări",
|
||||
"DE.ApplicationController.textGotIt": "Am înțeles",
|
||||
"DE.ApplicationController.textGuest": "Invitat",
|
||||
"DE.ApplicationController.textLoadingDocument": "Încărcare document",
|
||||
"DE.ApplicationController.textNext": "Câmpul următor",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "Ați atins limita stabilită de licență",
|
||||
"DE.ApplicationController.textOf": "din",
|
||||
"DE.ApplicationController.textRequired": "Toate câmpurile din formular trebuie completate înainte de a-l trimite.",
|
||||
"DE.ApplicationController.textSubmit": "Remitere",
|
||||
"DE.ApplicationController.textSubmited": "<b>Formularul a fost remis cu succes</b><br>Faceţi clic pentru a închide sfatul",
|
||||
"DE.ApplicationController.titleServerVersion": "Editorul a fost actualizat",
|
||||
"DE.ApplicationController.titleUpdateVersion": "Versiunea s-a modificat",
|
||||
"DE.ApplicationController.txtClose": "Închidere",
|
||||
"DE.ApplicationController.txtEmpty": "(Gol)",
|
||||
"DE.ApplicationController.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul",
|
||||
"DE.ApplicationController.unknownErrorText": "Eroare necunoscută.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.",
|
||||
"DE.ApplicationController.waitText": "Vă rugăm să așteptați...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.<br>Pentru detalii, contactați administratorul dvs.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.<br>Nu aveți acces la funcții de editare a documentului.<br>Contactați administratorul dvs. de rețeea.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.<br>Funcțiile de editare sunt cu acces limitat.<br>Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"DE.ApplicationController.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.<br>Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"DE.ApplicationView.textClear": "Goleşte toate câmpurile",
|
||||
"DE.ApplicationView.textNext": "Câmpul următor",
|
||||
"DE.ApplicationView.textSubmit": "Remitere",
|
||||
"DE.ApplicationView.txtDownload": "Descărcare",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Descărcare ca docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Descărcare ca pdf",
|
||||
|
@ -44,5 +58,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Deschidere locația fișierului",
|
||||
"DE.ApplicationView.txtFullScreen": "Ecran complet",
|
||||
"DE.ApplicationView.txtPrint": "Imprimare",
|
||||
"DE.ApplicationView.txtShare": "Partajează"
|
||||
"DE.ApplicationView.txtShare": "Partajează",
|
||||
"DE.ApplicationView.txtTheme": "Tema interfeței"
|
||||
}
|
|
@ -16,27 +16,41 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
||||
"DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Шрифты не загружены.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||
"DE.ApplicationController.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.",
|
||||
"DE.ApplicationController.errorSubmit": "Не удалось отправить.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.<br>Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
|
||||
"DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
||||
"DE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
||||
"DE.ApplicationController.textAnonymous": "Анонимный пользователь",
|
||||
"DE.ApplicationController.textClear": "Очистить все поля",
|
||||
"DE.ApplicationController.textBuyNow": "Перейти на сайт",
|
||||
"DE.ApplicationController.textCloseTip": "Нажмите, чтобы закрыть подсказку.",
|
||||
"DE.ApplicationController.textContactUs": "Связаться с отделом продаж",
|
||||
"DE.ApplicationController.textGotIt": "ОК",
|
||||
"DE.ApplicationController.textGuest": "Гость",
|
||||
"DE.ApplicationController.textLoadingDocument": "Загрузка документа",
|
||||
"DE.ApplicationController.textNext": "Следующее поле",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "Лицензионное ограничение",
|
||||
"DE.ApplicationController.textOf": "из",
|
||||
"DE.ApplicationController.textRequired": "Заполните все обязательные поля для отправки формы.",
|
||||
"DE.ApplicationController.textSubmit": "Отправить",
|
||||
"DE.ApplicationController.textSubmited": "<b>Форма успешно отправлена</b><br>Нажмите, чтобы закрыть подсказку",
|
||||
"DE.ApplicationController.titleServerVersion": "Редактор обновлен",
|
||||
"DE.ApplicationController.titleUpdateVersion": "Версия изменилась",
|
||||
"DE.ApplicationController.txtClose": "Закрыть",
|
||||
"DE.ApplicationController.txtEmpty": "(Пусто)",
|
||||
"DE.ApplicationController.txtPressLink": "Нажмите CTRL и щелкните по ссылке",
|
||||
"DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.",
|
||||
"DE.ApplicationController.waitText": "Пожалуйста, подождите...",
|
||||
"DE.ApplicationController.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "Истек срок действия лицензии.<br>Нет доступа к функциональности редактирования документов.<br>Пожалуйста, обратитесь к администратору.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "Необходимо обновить лицензию.<br>У вас ограниченный доступ к функциональности редактирования документов.<br>Пожалуйста, обратитесь к администратору, чтобы получить полный доступ",
|
||||
"DE.ApplicationController.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1. Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"DE.ApplicationController.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"DE.ApplicationController.warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.",
|
||||
"DE.ApplicationView.textClear": "Очистить все поля",
|
||||
"DE.ApplicationView.textNext": "Следующее поле",
|
||||
"DE.ApplicationView.textSubmit": "Отправить",
|
||||
"DE.ApplicationView.txtDownload": "Скачать файл",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Скачать как docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Скачать как pdf",
|
||||
|
@ -44,5 +58,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Открыть расположение файла",
|
||||
"DE.ApplicationView.txtFullScreen": "Во весь экран",
|
||||
"DE.ApplicationView.txtPrint": "Печать",
|
||||
"DE.ApplicationView.txtShare": "Поделиться"
|
||||
"DE.ApplicationView.txtShare": "Поделиться",
|
||||
"DE.ApplicationView.txtTheme": "Тема интерфейса"
|
||||
}
|
|
@ -16,24 +16,37 @@
|
|||
"DE.ApplicationController.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.<br> Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.",
|
||||
"DE.ApplicationController.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.",
|
||||
"DE.ApplicationController.errorLoadingFont": "Fonty sa nenahrali.<br>Kontaktujte prosím svojho administrátora Servera dokumentov.",
|
||||
"DE.ApplicationController.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.",
|
||||
"DE.ApplicationController.errorSubmit": "Odoslanie sa nepodarilo.",
|
||||
"DE.ApplicationController.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.<br>Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.",
|
||||
"DE.ApplicationController.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Upozornenie",
|
||||
"DE.ApplicationController.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.",
|
||||
"DE.ApplicationController.textAnonymous": "Anonymný",
|
||||
"DE.ApplicationController.textBuyNow": "Navštíviť webovú stránku",
|
||||
"DE.ApplicationController.textCloseTip": "Kliknite na zatvorenie tipu.",
|
||||
"DE.ApplicationController.textContactUs": "Kontaktujte predajcu",
|
||||
"DE.ApplicationController.textGotIt": "Pochopil/a som",
|
||||
"DE.ApplicationController.textGuest": "Hosť",
|
||||
"DE.ApplicationController.textLoadingDocument": "Načítavanie dokumentu",
|
||||
"DE.ApplicationController.textNoLicenseTitle": "Bol dosiahnutý limit licencie",
|
||||
"DE.ApplicationController.textOf": "z",
|
||||
"DE.ApplicationController.textRequired": "Vyplňte všetky požadované polia, aby ste formulár mohli odoslať.",
|
||||
"DE.ApplicationController.textSubmited": "<b>Formulár bol úspešne predložený</b><br>Kliknite, aby ste tip zatvorili",
|
||||
"DE.ApplicationController.titleServerVersion": "Editor bol aktualizovaný",
|
||||
"DE.ApplicationController.titleUpdateVersion": "Verzia bola zmenená",
|
||||
"DE.ApplicationController.txtClose": "Zatvoriť",
|
||||
"DE.ApplicationController.txtEmpty": "(Prázdne)",
|
||||
"DE.ApplicationController.txtPressLink": "Stlačte CTRL a kliknite na odkaz",
|
||||
"DE.ApplicationController.unknownErrorText": "Neznáma chyba.",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.",
|
||||
"DE.ApplicationController.waitText": "Prosím čakajte...",
|
||||
"DE.ApplicationController.warnLicenseLimitedNoAccess": "Licencia vypršala.<br>K funkcii úprav dokumentu už nemáte prístup.<br>Kontaktujte svojho administrátora, prosím.",
|
||||
"DE.ApplicationController.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.<br>K funkciám úprav dokumentov máte obmedzený prístup.<br>Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.",
|
||||
"DE.ApplicationView.textClear": "Vyčistiť všetky polia",
|
||||
"DE.ApplicationView.textNext": "Nasledujúce pole",
|
||||
"DE.ApplicationView.textSubmit": "Odoslať",
|
||||
"DE.ApplicationView.txtDownload": "Stiahnuť",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Stiahnuť ako docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Stiahnuť ako pdf",
|
||||
|
@ -41,5 +54,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Otvoriť umiestnenie súboru",
|
||||
"DE.ApplicationView.txtFullScreen": "Celá obrazovka",
|
||||
"DE.ApplicationView.txtPrint": "Tlačiť",
|
||||
"DE.ApplicationView.txtShare": "Zdieľať"
|
||||
"DE.ApplicationView.txtShare": "Zdieľať",
|
||||
"DE.ApplicationView.txtTheme": "Téma rozhrania"
|
||||
}
|
|
@ -19,11 +19,8 @@
|
|||
"DE.ApplicationController.errorUserDrop": "Do datoteke v tem trenutku ni možno dostopati.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Opozorilo",
|
||||
"DE.ApplicationController.scriptLoadError": "Povezava je počasna, nekatere komponente niso pravilno naložene.Prosimo osvežite stran.",
|
||||
"DE.ApplicationController.textClear": "Počisti vsa polja",
|
||||
"DE.ApplicationController.textLoadingDocument": "Nalaganje dokumenta",
|
||||
"DE.ApplicationController.textNext": "Naslednje polje",
|
||||
"DE.ApplicationController.textOf": "od",
|
||||
"DE.ApplicationController.textSubmit": "Pošlji",
|
||||
"DE.ApplicationController.textSubmited": "<b>Obrazec poslan uspešno</b><br>Pritisnite tukaj za zaprtje obvestila",
|
||||
"DE.ApplicationController.txtClose": "Zapri",
|
||||
"DE.ApplicationController.unknownErrorText": "Neznana napaka.",
|
||||
|
|
|
@ -17,11 +17,8 @@
|
|||
"DE.ApplicationController.errorUserDrop": "Belgeye şu an erişilemiyor.",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Uyarı",
|
||||
"DE.ApplicationController.scriptLoadError": "Bağlantı çok yavaş, bileşenlerin bazıları yüklenemedi. Lütfen sayfayı yenileyin.",
|
||||
"DE.ApplicationController.textClear": "Tüm alanları temizle",
|
||||
"DE.ApplicationController.textLoadingDocument": "Döküman yükleniyor",
|
||||
"DE.ApplicationController.textNext": "Sonraki alan",
|
||||
"DE.ApplicationController.textOf": "'in",
|
||||
"DE.ApplicationController.textSubmit": "Kaydet",
|
||||
"DE.ApplicationController.textSubmited": "<b>Form başarılı bir şekilde kaydedildi</b><br>İpucunu kapatmak için tıklayın",
|
||||
"DE.ApplicationController.txtClose": "Kapat",
|
||||
"DE.ApplicationController.unknownErrorText": "Bilinmeyen hata.",
|
||||
|
|
|
@ -325,7 +325,8 @@ define([
|
|||
})).on('click', _on_btn_zoom.bind(me, 'up'));
|
||||
|
||||
me.header.btnOptions.menu.on('item:click', me.onOptionsItemClick.bind(this));
|
||||
if ( !Common.UI.Themes.isDarkTheme() ) {
|
||||
var document = DE.getController('Main').document;
|
||||
if ( !Common.UI.Themes.isDarkTheme() || /^pdf|djvu|xps|oxps$/.test(document.fileType) ) {
|
||||
me.header.menuItemsDarkMode.hide();
|
||||
me.header.menuItemsDarkMode.$el.prev('.divider').hide();
|
||||
}
|
||||
|
@ -370,13 +371,16 @@ define([
|
|||
},
|
||||
|
||||
onThemeChanged: function (id) {
|
||||
var current_dark = Common.UI.Themes.isDarkTheme();
|
||||
var menuItem = this.header.menuItemsDarkMode;
|
||||
menuItem.setVisible(current_dark);
|
||||
menuItem.$el.prev('.divider')[current_dark ? 'show' : 'hide']();
|
||||
var document = DE.getController('Main').document;
|
||||
if ( !/^pdf|djvu|xps|oxps$/.test(document.fileType) ) {
|
||||
var current_dark = Common.UI.Themes.isDarkTheme();
|
||||
var menuItem = this.header.menuItemsDarkMode;
|
||||
menuItem.setVisible(current_dark);
|
||||
menuItem.$el.prev('.divider')[current_dark ? 'show' : 'hide']();
|
||||
|
||||
menuItem.setChecked(current_dark);
|
||||
this.header.btnContentMode.setVisible(current_dark);
|
||||
menuItem.setChecked(current_dark);
|
||||
this.header.btnContentMode.setVisible(current_dark);
|
||||
}
|
||||
},
|
||||
|
||||
onContentThemeChangedToDark: function (isdark) {
|
||||
|
|
|
@ -1309,10 +1309,10 @@ define([
|
|||
if (menu.cmpEl) {
|
||||
var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent();
|
||||
var itemMargin = /*parseInt($(itemEl.get(0)).parent().css('margin-right'))*/-1;
|
||||
Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = itemMargin + 1/Common.Utils.applicationPixelRatio());
|
||||
var itemWidth = itemEl.is(':visible') ? parseInt(itemEl.css('width')) :
|
||||
(cmp.itemWidth + parseInt(itemEl.css('padding-left')) + parseInt(itemEl.css('padding-right')) +
|
||||
parseInt(itemEl.css('border-left-width')) + parseInt(itemEl.css('border-right-width')));
|
||||
Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = -1 / Common.Utils.applicationPixelRatio());
|
||||
var itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) :
|
||||
(cmp.itemWidth + parseFloat(itemEl.css('padding-left')) + parseFloat(itemEl.css('padding-right')) +
|
||||
parseFloat(itemEl.css('border-left-width')) + parseFloat(itemEl.css('border-right-width')));
|
||||
|
||||
var minCount = cmp.menuPicker.store.length >= minMenuColumn ? minMenuColumn : cmp.menuPicker.store.length,
|
||||
columnCount = Math.min(cmp.menuPicker.store.length, Math.round($('.dataview', $(cmp.fieldPicker.el)).width() / (itemMargin + itemWidth) + 0.5));
|
||||
|
|
|
@ -124,6 +124,8 @@
|
|||
"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.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"Common.UI.Calendar.textApril": "April",
|
||||
"Common.UI.Calendar.textAugust": "August",
|
||||
"Common.UI.Calendar.textDecember": "Dezember",
|
||||
|
@ -210,6 +212,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBy": "Nach",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Löschen",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "Jeden Satz mit einem Großbuchstaben beginnen",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet- und Netzwerkpfade durch Hyperlinks",
|
||||
"Common.Views.AutoCorrectDialog.textHyphens": "Bindestriche (--) mit Gedankenstrich (—)",
|
||||
"Common.Views.AutoCorrectDialog.textMathCorrect": "Mathematische Autokorrektur",
|
||||
"Common.Views.AutoCorrectDialog.textNumbered": "Automatische nummerierte Listen",
|
||||
|
@ -229,6 +232,12 @@
|
|||
"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.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.mniPositionAsc": "Von oben",
|
||||
"Common.Views.Comments.mniPositionDesc": "Von unten",
|
||||
"Common.Views.Comments.textAdd": "Hinzufügen",
|
||||
"Common.Views.Comments.textAddComment": "Hinzufügen",
|
||||
"Common.Views.Comments.textAddCommentToDoc": "Kommentar zum Dokument hinzufügen",
|
||||
|
@ -236,6 +245,7 @@
|
|||
"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.textComments": "Kommentare",
|
||||
"Common.Views.Comments.textEdit": "OK",
|
||||
"Common.Views.Comments.textEnterCommentHint": "Geben Sie Ihren Kommentar hier ein",
|
||||
|
@ -244,6 +254,7 @@
|
|||
"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.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.<br><br>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\"",
|
||||
|
@ -380,7 +391,7 @@
|
|||
"Common.Views.ReviewChanges.txtFinalCap": "Endgültig",
|
||||
"Common.Views.ReviewChanges.txtHistory": "Versionshistorie",
|
||||
"Common.Views.ReviewChanges.txtMarkup": "Alle Änderungen {0}",
|
||||
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
|
||||
"Common.Views.ReviewChanges.txtMarkupCap": "Markup und Sprechblasen",
|
||||
"Common.Views.ReviewChanges.txtMarkupSimple": "Alle Änderungen {0}<br>Sprechblasen ausblenden",
|
||||
"Common.Views.ReviewChanges.txtMarkupSimpleCap": "Einfaches Markup",
|
||||
"Common.Views.ReviewChanges.txtNext": "Zur nächsten Änderung",
|
||||
|
@ -581,6 +592,7 @@
|
|||
"DE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
|
||||
"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. <br>Jetzt konvertieren?",
|
||||
"DE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> 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.<br>Möchten Sie Makros ausführen?",
|
||||
"DE.Controllers.Main.textLearnMore": "Mehr erfahren",
|
||||
|
@ -875,6 +887,7 @@
|
|||
"DE.Controllers.Toolbar.textAccent": "Akzente",
|
||||
"DE.Controllers.Toolbar.textBracket": "Klammern",
|
||||
"DE.Controllers.Toolbar.textEmptyImgUrl": "Sie müssen eine Bild-URL angeben.",
|
||||
"DE.Controllers.Toolbar.textEmptyMMergeUrl": "Geben Sie URL ein.",
|
||||
"DE.Controllers.Toolbar.textFontSizeErr": "Der eingegebene Wert ist falsch.<br>Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein.",
|
||||
"DE.Controllers.Toolbar.textFraction": "Bruchteile",
|
||||
"DE.Controllers.Toolbar.textFunction": "Funktionen",
|
||||
|
@ -1578,6 +1591,7 @@
|
|||
"DE.Views.DocumentHolder.txtTopAndBottom": "Oben und unten",
|
||||
"DE.Views.DocumentHolder.txtUnderbar": "Linie unter dem Text ",
|
||||
"DE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben",
|
||||
"DE.Views.DocumentHolder.txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Format aktualisieren %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Rahmen & Füllung",
|
||||
|
@ -1644,6 +1658,8 @@
|
|||
"DE.Views.FileMenu.btnSettingsCaption": "Erweiterte Einstellungen...",
|
||||
"DE.Views.FileMenu.btnToEditCaption": "Dokument bearbeiten",
|
||||
"DE.Views.FileMenu.textDownload": "Herunterladen",
|
||||
"DE.Views.FileMenuPanels.CreateNew.txtBlank": "Leeres Dokument",
|
||||
"DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Neu erstellen",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Anwenden",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Autor hinzufügen",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Text hinzufügen",
|
||||
|
@ -1696,6 +1712,7 @@
|
|||
"DE.Views.FileMenuPanels.Settings.strPaste": "Ausschneiden, Kopieren und Einfügen",
|
||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen",
|
||||
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "Die Anzeige der aufgelösten Kommentare einschalten",
|
||||
"DE.Views.FileMenuPanels.Settings.strReviewHover": "Änderungen bei der Überprüfung anzeigen",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Änderungen bei der Echtzeit-Zusammenarbeit zeigen",
|
||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Rechtschreibprüfung einschalten",
|
||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Formal",
|
||||
|
@ -1717,6 +1734,8 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtAll": "Alle anzeigen",
|
||||
"DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Optionen von Autokorrektur...",
|
||||
"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.txtFitPage": "Seite anpassen",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Breite anpassen",
|
||||
|
@ -1740,6 +1759,7 @@
|
|||
"DE.Views.FormSettings.textAlways": "Immer",
|
||||
"DE.Views.FormSettings.textAspect": "Seitenverhältnis sperren",
|
||||
"DE.Views.FormSettings.textAutofit": "Automatisch anpassen",
|
||||
"DE.Views.FormSettings.textBackgroundColor": "Hintergrundfarbe",
|
||||
"DE.Views.FormSettings.textCheckbox": "Kontrollkästchen",
|
||||
"DE.Views.FormSettings.textColor": "Rahmenfarbe",
|
||||
"DE.Views.FormSettings.textComb": "Zeichenanzahl in Textfeld",
|
||||
|
@ -2564,6 +2584,9 @@
|
|||
"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": "Formatierungszeichen",
|
||||
"DE.Views.Toolbar.mniHighlightControls": "Einstellungen für Hervorhebungen",
|
||||
|
|
|
@ -212,6 +212,7 @@
|
|||
"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 por hipervínculos",
|
||||
"Common.Views.AutoCorrectDialog.textHyphens": "Guiones (--) con guión (—)",
|
||||
"Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrección matemática",
|
||||
"Common.Views.AutoCorrectDialog.textNumbered": "Listas con numeración automática",
|
||||
|
@ -886,6 +887,7 @@
|
|||
"DE.Controllers.Toolbar.textAccent": "Acentos",
|
||||
"DE.Controllers.Toolbar.textBracket": "Paréntesis",
|
||||
"DE.Controllers.Toolbar.textEmptyImgUrl": "Hay que especificar URL de imagen",
|
||||
"DE.Controllers.Toolbar.textEmptyMMergeUrl": "Debe especificar la URL.",
|
||||
"DE.Controllers.Toolbar.textFontSizeErr": "El valor introducido es incorrecto.<br>Por favor, introduzca un valor numérico entre 1 y 300",
|
||||
"DE.Controllers.Toolbar.textFraction": "Fracciones",
|
||||
"DE.Controllers.Toolbar.textFunction": "Funciones",
|
||||
|
@ -1589,6 +1591,7 @@
|
|||
"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.<br>¿Está seguro de que quiere continuar?",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Actualizar estilo %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Alineación vertical",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Bordes y relleno",
|
||||
|
@ -1756,6 +1759,7 @@
|
|||
"DE.Views.FormSettings.textAlways": "Siempre",
|
||||
"DE.Views.FormSettings.textAspect": "Bloquear relación de aspecto",
|
||||
"DE.Views.FormSettings.textAutofit": "Autoajustar",
|
||||
"DE.Views.FormSettings.textBackgroundColor": "Color de fondo",
|
||||
"DE.Views.FormSettings.textCheckbox": "Casilla",
|
||||
"DE.Views.FormSettings.textColor": "Color de borde",
|
||||
"DE.Views.FormSettings.textComb": "Peine de caracteres",
|
||||
|
@ -2580,6 +2584,9 @@
|
|||
"DE.Views.Toolbar.mniEditFooter": "Editar pie de página",
|
||||
"DE.Views.Toolbar.mniEditHeader": "Editar encabezado",
|
||||
"DE.Views.Toolbar.mniEraseTable": "Eliminar la 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 escogidos",
|
||||
"DE.Views.Toolbar.mniHiddenChars": "Caracteres no imprimibles",
|
||||
"DE.Views.Toolbar.mniHighlightControls": "Ajustes de resaltado",
|
||||
|
|
|
@ -212,6 +212,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBy": "Di",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Elimina",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "Rendere maiuscola la prima lettera di frasi",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet e percorsi di rete con i collegamenti ipertestuali",
|
||||
"Common.Views.AutoCorrectDialog.textHyphens": "Trattini (--) con trattino (-)",
|
||||
"Common.Views.AutoCorrectDialog.textMathCorrect": "Correzione automatica matematica",
|
||||
"Common.Views.AutoCorrectDialog.textNumbered": "Elenchi numerati automatici",
|
||||
|
@ -587,7 +588,7 @@
|
|||
"DE.Controllers.Main.textBuyNow": "Visita il sito web",
|
||||
"DE.Controllers.Main.textChangesSaved": "Tutte le modifiche sono state salvate",
|
||||
"DE.Controllers.Main.textClose": "Chiudi",
|
||||
"DE.Controllers.Main.textCloseTip": "Fai clic per chiudere il consiglio",
|
||||
"DE.Controllers.Main.textCloseTip": "Clicca su per chiudere la notifica",
|
||||
"DE.Controllers.Main.textContactUs": "Contatta il team di vendite",
|
||||
"DE.Controllers.Main.textConvertEquation": "Questa equazione è stata creata con una vecchia versione dell'editor di equazioni che non è più supportata.Per modificarla, convertire l'equazione nel formato ML di Office Math.<br>Convertire ora?",
|
||||
"DE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore.<br>Si prega di contattare il nostro reparto vendite per ottenere un preventivo.",
|
||||
|
@ -886,6 +887,7 @@
|
|||
"DE.Controllers.Toolbar.textAccent": "Accenti",
|
||||
"DE.Controllers.Toolbar.textBracket": "Parentesi",
|
||||
"DE.Controllers.Toolbar.textEmptyImgUrl": "Specifica URL immagine.",
|
||||
"DE.Controllers.Toolbar.textEmptyMMergeUrl": "Devi specificare l'URL.",
|
||||
"DE.Controllers.Toolbar.textFontSizeErr": "Il valore inserito non è corretto.<br>Inserisci un valore numerico compreso tra 1 e 300",
|
||||
"DE.Controllers.Toolbar.textFraction": "Frazioni",
|
||||
"DE.Controllers.Toolbar.textFunction": "Funzioni",
|
||||
|
@ -1589,6 +1591,7 @@
|
|||
"DE.Views.DocumentHolder.txtTopAndBottom": "Sopra e sotto",
|
||||
"DE.Views.DocumentHolder.txtUnderbar": "Barra sotto al testo",
|
||||
"DE.Views.DocumentHolder.txtUngroup": "Separa",
|
||||
"DE.Views.DocumentHolder.txtWarnUrl": "Cliccare questo link può essere dannoso per il tuo dispositivo e i dati.<br>Sei sicuro di voler continuare?",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Aggiorna %1 stile",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Allineamento verticale",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Bordi e riempimento",
|
||||
|
@ -1756,6 +1759,7 @@
|
|||
"DE.Views.FormSettings.textAlways": "Sempre",
|
||||
"DE.Views.FormSettings.textAspect": "Blocca proporzioni",
|
||||
"DE.Views.FormSettings.textAutofit": "adattare automaticamente",
|
||||
"DE.Views.FormSettings.textBackgroundColor": "Colore di sfondo",
|
||||
"DE.Views.FormSettings.textCheckbox": "Casella di controllo",
|
||||
"DE.Views.FormSettings.textColor": "Colore bordo",
|
||||
"DE.Views.FormSettings.textComb": "Combinazione di caratteri",
|
||||
|
@ -2580,6 +2584,9 @@
|
|||
"DE.Views.Toolbar.mniEditFooter": "Modifica piè di pagina",
|
||||
"DE.Views.Toolbar.mniEditHeader": "Modifica intestazione",
|
||||
"DE.Views.Toolbar.mniEraseTable": "Cancella Tabella",
|
||||
"DE.Views.Toolbar.mniFromFile": "Dal file",
|
||||
"DE.Views.Toolbar.mniFromStorage": "Dall'archivio",
|
||||
"DE.Views.Toolbar.mniFromUrl": "Dall'URL",
|
||||
"DE.Views.Toolbar.mniHiddenBorders": "Bordi tabella nascosti",
|
||||
"DE.Views.Toolbar.mniHiddenChars": "Caratteri non stampabili",
|
||||
"DE.Views.Toolbar.mniHighlightControls": "Impostazioni evidenziazione",
|
||||
|
|
|
@ -464,7 +464,7 @@
|
|||
"Common.Views.SymbolTableDialog.textCopyright": "저작권 표시",
|
||||
"Common.Views.SymbolTableDialog.textDCQuote": "큰 따옴표 닫기",
|
||||
"Common.Views.SymbolTableDialog.textDOQuote": "큰 따옴표 (왼쪽)",
|
||||
"Common.Views.SymbolTableDialog.textEllipsis": "수평줄임표",
|
||||
"Common.Views.SymbolTableDialog.textEllipsis": "말줄임표",
|
||||
"Common.Views.SymbolTableDialog.textEmDash": "Em 대시",
|
||||
"Common.Views.SymbolTableDialog.textEmSpace": "Em 공백",
|
||||
"Common.Views.SymbolTableDialog.textEnDash": "En 대시",
|
||||
|
@ -614,7 +614,7 @@
|
|||
"DE.Controllers.Main.txtArt": "여기에 귀하의 텍스트",
|
||||
"DE.Controllers.Main.txtBasicShapes": "기본 도형",
|
||||
"DE.Controllers.Main.txtBelow": "아래",
|
||||
"DE.Controllers.Main.txtBookmarkError": "문제발생! 북마크가 정의되지 않음",
|
||||
"DE.Controllers.Main.txtBookmarkError": "오류! 즐겨찾기가 정의되지 않음",
|
||||
"DE.Controllers.Main.txtButtons": "Buttons",
|
||||
"DE.Controllers.Main.txtCallouts": "설명선",
|
||||
"DE.Controllers.Main.txtCharts": "Charts",
|
||||
|
@ -1146,7 +1146,7 @@
|
|||
"DE.Controllers.Toolbar.txtSymbol_bullet": "글 머리 기호 연산자",
|
||||
"DE.Controllers.Toolbar.txtSymbol_cap": "교차점",
|
||||
"DE.Controllers.Toolbar.txtSymbol_cbrt": "큐브 루트",
|
||||
"DE.Controllers.Toolbar.txtSymbol_cdots": "Midline Horizontal Ellipsis",
|
||||
"DE.Controllers.Toolbar.txtSymbol_cdots": "중간 말줄임표",
|
||||
"DE.Controllers.Toolbar.txtSymbol_celsius": "섭씨도",
|
||||
"DE.Controllers.Toolbar.txtSymbol_chi": "Chi",
|
||||
"DE.Controllers.Toolbar.txtSymbol_cong": "대략 같음",
|
||||
|
@ -1236,7 +1236,7 @@
|
|||
"DE.Views.BookmarksDialog.textLocation": "위치",
|
||||
"DE.Views.BookmarksDialog.textName": "이름",
|
||||
"DE.Views.BookmarksDialog.textSort": "정렬 기준",
|
||||
"DE.Views.BookmarksDialog.textTitle": "북마크",
|
||||
"DE.Views.BookmarksDialog.textTitle": "즐겨 찾기",
|
||||
"DE.Views.BookmarksDialog.txtInvalidName": "즐겨찾기 명은 문자, 숫자 및 밑줄만 포함할 수 있으며 문자로 시작해야 합니다.",
|
||||
"DE.Views.CaptionDialog.textAdd": "라벨추가",
|
||||
"DE.Views.CaptionDialog.textAfter": "이후",
|
||||
|
@ -1348,7 +1348,7 @@
|
|||
"DE.Views.CrossReferenceDialog.textTable": "표",
|
||||
"DE.Views.CrossReferenceDialog.textText": "단락 텍스트",
|
||||
"DE.Views.CrossReferenceDialog.textWhich": "캡션 참조",
|
||||
"DE.Views.CrossReferenceDialog.textWhichBookmark": "북마크참조",
|
||||
"DE.Views.CrossReferenceDialog.textWhichBookmark": "책갈피 참조",
|
||||
"DE.Views.CrossReferenceDialog.textWhichEndnote": "미주 참조",
|
||||
"DE.Views.CrossReferenceDialog.textWhichHeading": "제목 참조",
|
||||
"DE.Views.CrossReferenceDialog.textWhichNote": "각주 참조",
|
||||
|
@ -1850,7 +1850,7 @@
|
|||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "스크린팁 텍스트",
|
||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "링크 대상",
|
||||
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "문서의 시작",
|
||||
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "북마크",
|
||||
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "즐겨 찾기",
|
||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "이 입력란은 필수 항목입니다.",
|
||||
"DE.Views.HyperlinkSettingsDialog.txtHeadings": "제목",
|
||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.",
|
||||
|
@ -1986,7 +1986,7 @@
|
|||
"DE.Views.LineNumbersDialog.textStartAt": "시작",
|
||||
"DE.Views.LineNumbersDialog.textTitle": "행번호",
|
||||
"DE.Views.LineNumbersDialog.txtAutoText": "자동",
|
||||
"DE.Views.Links.capBtnBookmarks": "북마크",
|
||||
"DE.Views.Links.capBtnBookmarks": "즐겨찾기",
|
||||
"DE.Views.Links.capBtnCaption": "참조",
|
||||
"DE.Views.Links.capBtnContentsUpdate": "재실행",
|
||||
"DE.Views.Links.capBtnCrossRef": "상호 참조",
|
||||
|
@ -2010,7 +2010,7 @@
|
|||
"DE.Views.Links.textSwapNotes": "각주와 미주 바꾸기",
|
||||
"DE.Views.Links.textUpdateAll": "전체 테이블을 새로고침하세요",
|
||||
"DE.Views.Links.textUpdatePages": "페이지 번호만 새로고침하세요",
|
||||
"DE.Views.Links.tipBookmarks": "북마크 만들기",
|
||||
"DE.Views.Links.tipBookmarks": "책갈피 만들기",
|
||||
"DE.Views.Links.tipCaption": "캡션 삽입",
|
||||
"DE.Views.Links.tipContents": "콘텐트 테이블 삽입",
|
||||
"DE.Views.Links.tipContentsUpdate": "콘텐트 테이블 새로고침",
|
||||
|
@ -2339,7 +2339,7 @@
|
|||
"DE.Views.StyleTitleDialog.txtEmpty": "이 입력란은 필수 항목",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "필드가 비어 있어서는 안됩니다.",
|
||||
"DE.Views.StyleTitleDialog.txtSameAs": "새로 생성된 스타일과 동일하게",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "북마크 붙여넣기",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "책갈피 붙여넣기",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "숫자 형식",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "수식",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "함수 붙여넣기",
|
||||
|
@ -2666,7 +2666,7 @@
|
|||
"DE.Views.Toolbar.textTabHome": "홈",
|
||||
"DE.Views.Toolbar.textTabInsert": "삽입",
|
||||
"DE.Views.Toolbar.textTabLayout": "레이아웃",
|
||||
"DE.Views.Toolbar.textTabLinks": "레퍼런스",
|
||||
"DE.Views.Toolbar.textTabLinks": "참조",
|
||||
"DE.Views.Toolbar.textTabProtect": "보호",
|
||||
"DE.Views.Toolbar.textTabReview": "다시보기",
|
||||
"DE.Views.Toolbar.textTitleError": "오류",
|
||||
|
|
|
@ -871,9 +871,9 @@
|
|||
"DE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.<br>Licența urmează să fie reînnoită iar pagina reîmprospătată.",
|
||||
"DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.<br>Nu aveți acces la funcții de editare a documentului.<br>Contactați administratorul dvs. de rețeea.",
|
||||
"DE.Controllers.Main.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.<br>Funcțiile de editare sunt cu acces limitat.<br>Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.<br>Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Începutul documentului",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Salt la începutul documentului",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "Introdueix una contrasenya per obrir el fitxer",
|
||||
"textOrientation": "Orientació",
|
||||
"textOwner": "Propietari",
|
||||
"textPages": "Pàgines",
|
||||
"textParagraphs": "Paràgrafs",
|
||||
"textPoint": "Punt",
|
||||
"textPortrait": "Orientació vertical",
|
||||
"textPrint": "Imprimeix",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "Cerca",
|
||||
"textSettings": "Configuració",
|
||||
"textShowNotification": "Mostra la notificació",
|
||||
"textSpaces": "Espais",
|
||||
"textSpellcheck": "Revisió ortogràfica",
|
||||
"textStatistic": "Estadístiques",
|
||||
"textSubject": "Assumpte",
|
||||
"textSymbols": "Símbols",
|
||||
"textTitle": "Títol",
|
||||
"textTop": "Superior",
|
||||
"textUnitOfMeasurement": "Unitat de mesura",
|
||||
"textUploaded": "S'ha carregat",
|
||||
"textWords": "Paraules",
|
||||
"txtDownloadTxt": "Baixar TXT",
|
||||
"txtIncorrectPwd": "La contrasenya no és correcta",
|
||||
"txtOk": "D'acord",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -122,6 +122,7 @@
|
|||
"textNot": "Nicht",
|
||||
"textNoWidow": "Keine Absatzkontrolle",
|
||||
"textNum": "Nummerierung ändern",
|
||||
"textOk": "OK",
|
||||
"textOriginal": "Original",
|
||||
"textParaDeleted": "Absatz gelöscht",
|
||||
"textParaFormatted": "Absatz formatiert",
|
||||
|
@ -154,8 +155,7 @@
|
|||
"textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.",
|
||||
"textUnderline": "Unterstrichen",
|
||||
"textUsers": "Benutzer",
|
||||
"textWidow": "Absatzkontrolle",
|
||||
"textOk": "Ok"
|
||||
"textWidow": "Absatzkontrolle"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Benutzerdefinierte Farben",
|
||||
|
@ -168,28 +168,28 @@
|
|||
"menuAddComment": "Kommentar hinzufügen",
|
||||
"menuAddLink": "Link hinzufügen",
|
||||
"menuCancel": "Abbrechen",
|
||||
"menuContinueNumbering": "Nummerierung fortführen",
|
||||
"menuDelete": "Löschen",
|
||||
"menuDeleteTable": "Tabelle löschen",
|
||||
"menuEdit": "Bearbeiten",
|
||||
"menuJoinList": "Mit der vorherigen Liste verbinden",
|
||||
"menuMerge": "Verbinden",
|
||||
"menuMore": "Mehr",
|
||||
"menuOpenLink": "Link öffnen",
|
||||
"menuReview": "Überprüfung",
|
||||
"menuReviewChange": "Änderung überprüfen",
|
||||
"menuSeparateList": "Liste trennen",
|
||||
"menuSplit": "Aufteilen",
|
||||
"menuStartNewList": "Neue Liste beginnen",
|
||||
"menuStartNumberingFrom": "Nummerierungswert festlegen",
|
||||
"menuViewComment": "Kommentar anzeigen",
|
||||
"textCancel": "Abbrechen",
|
||||
"textColumns": "Spalten",
|
||||
"textCopyCutPasteActions": "Kopieren, Ausschneiden und Einfügen",
|
||||
"textDoNotShowAgain": "Nicht mehr anzeigen",
|
||||
"textRows": "Zeilen",
|
||||
"menuContinueNumbering": "Continue numbering",
|
||||
"menuJoinList": "Join to previous list",
|
||||
"menuSeparateList": "Separate list",
|
||||
"menuStartNewList": "Start new list",
|
||||
"menuStartNumberingFrom": "Set numbering value",
|
||||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textOk": "OK"
|
||||
"textNumberingValue": "Nummerierungswert",
|
||||
"textOk": "OK",
|
||||
"textRows": "Zeilen"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warnung",
|
||||
|
@ -491,6 +491,8 @@
|
|||
"textCancel": "Abbrechen",
|
||||
"textCaseSensitive": "Groß-/Kleinschreibung beachten",
|
||||
"textCentimeter": "Zentimeter",
|
||||
"textChooseEncoding": "Codierung auswählen",
|
||||
"textChooseTxtOptions": "Optionen für TXT-Dateien auswählen",
|
||||
"textCollaboration": "Zusammenarbeit",
|
||||
"textColorSchemes": "Farbschemata",
|
||||
"textComment": "Kommentar",
|
||||
|
@ -536,6 +538,8 @@
|
|||
"textOpenFile": "Kennwort zum Öffnen der Datei eingeben",
|
||||
"textOrientation": "Orientierung",
|
||||
"textOwner": "Besitzer",
|
||||
"textPages": "Seiten",
|
||||
"textParagraphs": "Absätze",
|
||||
"textPoint": "Punkt",
|
||||
"textPortrait": "Hochformat",
|
||||
"textPrint": "Drucken",
|
||||
|
@ -547,14 +551,19 @@
|
|||
"textSearch": "Suche",
|
||||
"textSettings": "Einstellungen",
|
||||
"textShowNotification": "Benachrichtigung anzeigen",
|
||||
"textSpaces": "Leerzeichen",
|
||||
"textSpellcheck": "Rechtschreibprüfung",
|
||||
"textStatistic": "Statistik",
|
||||
"textSubject": "Betreff",
|
||||
"textSymbols": "Symbole",
|
||||
"textTitle": "Titel",
|
||||
"textTop": "Oben",
|
||||
"textUnitOfMeasurement": "Maßeinheit",
|
||||
"textUploaded": "Hochgeladen",
|
||||
"textWords": "Wörter",
|
||||
"txtDownloadTxt": "TXT herunterladen",
|
||||
"txtIncorrectPwd": "Passwort ist falsch",
|
||||
"txtOk": "OK",
|
||||
"txtProtected": "Wenn Sie das Password eingeben und die Datei öffnen, wird das aktive Password zurückgesetzt",
|
||||
"txtScheme1": "Office",
|
||||
"txtScheme10": "Median",
|
||||
|
@ -577,11 +586,7 @@
|
|||
"txtScheme6": "Halle",
|
||||
"txtScheme7": "Kapital",
|
||||
"txtScheme8": "Fluss",
|
||||
"txtScheme9": "Gießerei",
|
||||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtScheme9": "Gießerei"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "Enter a password to open the file",
|
||||
"textOrientation": "Orientation",
|
||||
"textOwner": "Owner",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textPoint": "Point",
|
||||
"textPortrait": "Portrait",
|
||||
"textPrint": "Print",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "Search",
|
||||
"textSettings": "Settings",
|
||||
"textShowNotification": "Show Notification",
|
||||
"textSpaces": "Spaces",
|
||||
"textSpellcheck": "Spell Checking",
|
||||
"textStatistic": "Statistic",
|
||||
"textSubject": "Subject",
|
||||
"textSymbols": "Symbols",
|
||||
"textTitle": "Title",
|
||||
"textTop": "Top",
|
||||
"textUnitOfMeasurement": "Unit Of Measurement",
|
||||
"textUploaded": "Uploaded",
|
||||
"textWords": "Words",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtIncorrectPwd": "Password is incorrect",
|
||||
"txtOk": "Ok",
|
||||
|
@ -581,12 +586,7 @@
|
|||
"txtScheme6": "Concourse",
|
||||
"txtScheme7": "Equity",
|
||||
"txtScheme8": "Flow",
|
||||
"txtScheme9": "Foundry",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textWords": "Words",
|
||||
"textSymbols": "Symbols",
|
||||
"textSpaces": "Spaces"
|
||||
"txtScheme9": "Foundry"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -168,28 +168,28 @@
|
|||
"menuAddComment": "Añadir comentario",
|
||||
"menuAddLink": "Añadir enlace ",
|
||||
"menuCancel": "Cancelar",
|
||||
"menuContinueNumbering": "Continuar numeración",
|
||||
"menuDelete": "Eliminar",
|
||||
"menuDeleteTable": "Eliminar tabla",
|
||||
"menuEdit": "Editar",
|
||||
"menuJoinList": "Unir a lista anterior",
|
||||
"menuMerge": "Combinar",
|
||||
"menuMore": "Más",
|
||||
"menuOpenLink": "Abrir enlace",
|
||||
"menuReview": "Revisión",
|
||||
"menuReviewChange": "Revisar cambios",
|
||||
"menuSeparateList": "Separar lista",
|
||||
"menuSplit": "Dividir",
|
||||
"menuStartNewList": "Iniciar nueva lista",
|
||||
"menuStartNumberingFrom": "Establecer valor de numeración",
|
||||
"menuViewComment": "Ver comentario",
|
||||
"textCancel": "Cancelar",
|
||||
"textColumns": "Columnas",
|
||||
"textCopyCutPasteActions": "Acciones de Copiar, Cortar y Pegar",
|
||||
"textDoNotShowAgain": "No mostrar de nuevo",
|
||||
"textRows": "Filas",
|
||||
"menuContinueNumbering": "Continue numbering",
|
||||
"menuJoinList": "Join to previous list",
|
||||
"menuSeparateList": "Separate list",
|
||||
"menuStartNewList": "Start new list",
|
||||
"menuStartNumberingFrom": "Set numbering value",
|
||||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textOk": "OK"
|
||||
"textNumberingValue": "Valor de numeración",
|
||||
"textOk": "OK",
|
||||
"textRows": "Filas"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Advertencia",
|
||||
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "Introduzca la contraseña para abrir el archivo",
|
||||
"textOrientation": "Orientación ",
|
||||
"textOwner": "Propietario",
|
||||
"textPages": "Páginas",
|
||||
"textParagraphs": "Párrafos",
|
||||
"textPoint": "Punto",
|
||||
"textPortrait": "Vertical",
|
||||
"textPrint": "Imprimir",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "Buscar",
|
||||
"textSettings": "Ajustes",
|
||||
"textShowNotification": "Mostrar notificación",
|
||||
"textSpaces": "Espacios",
|
||||
"textSpellcheck": "Сorrección ortográfica",
|
||||
"textStatistic": "Estadísticas",
|
||||
"textSubject": "Asunto",
|
||||
"textSymbols": "Símbolos",
|
||||
"textTitle": "Título",
|
||||
"textTop": "Arriba",
|
||||
"textUnitOfMeasurement": "Unidad de medida",
|
||||
"textUploaded": "Cargado",
|
||||
"textWords": "Palabras",
|
||||
"txtDownloadTxt": "Descargar TXT",
|
||||
"txtIncorrectPwd": "La contraseña es incorrecta",
|
||||
"txtOk": "OK",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "Entrer le mot de passe pour ouvrir le fichier",
|
||||
"textOrientation": "Orientation",
|
||||
"textOwner": "Propriétaire",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphes",
|
||||
"textPoint": "Point",
|
||||
"textPortrait": "Portrait",
|
||||
"textPrint": "Imprimer",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "Rechercher",
|
||||
"textSettings": "Paramètres",
|
||||
"textShowNotification": "Montrer la notification",
|
||||
"textSpaces": "Espaces",
|
||||
"textSpellcheck": "Vérification de l'orthographe",
|
||||
"textStatistic": "Statistique",
|
||||
"textSubject": "Sujet",
|
||||
"textSymbols": "Symboles",
|
||||
"textTitle": "Titre",
|
||||
"textTop": "En haut",
|
||||
"textUnitOfMeasurement": "Unité de mesure",
|
||||
"textUploaded": "Chargé",
|
||||
"textWords": "Mots",
|
||||
"txtDownloadTxt": "Télécharger le TXT",
|
||||
"txtIncorrectPwd": "Mot de passe incorrect",
|
||||
"txtOk": "Ok",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -1,30 +1,30 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "About",
|
||||
"textAddress": "Address",
|
||||
"textBack": "Back",
|
||||
"textAbout": "In riguardo a",
|
||||
"textAddress": "Indirizzo",
|
||||
"textBack": "Indietro",
|
||||
"textEmail": "Email",
|
||||
"textPoweredBy": "Powered By",
|
||||
"textTel": "Tel",
|
||||
"textVersion": "Version"
|
||||
},
|
||||
"Add": {
|
||||
"textAddLink": "Aggiungere link",
|
||||
"textAddress": "Indirizzo",
|
||||
"textBack": "Indietro",
|
||||
"textBelowText": "Testo sotto",
|
||||
"textBottomOfPage": "Fondo pagina",
|
||||
"textBreak": "Interruzione",
|
||||
"textCancel": "Annullare",
|
||||
"textCenterBottom": "In basso al centro",
|
||||
"textCenterTop": "In alto al centro",
|
||||
"textColumnBreak": "Divisione di colonna",
|
||||
"textColumns": "Colonne",
|
||||
"textComment": "Commento",
|
||||
"textContinuousPage": "Pagina continua",
|
||||
"textCurrentPosition": "Posizione attuale",
|
||||
"textDisplay": "Visualizzare",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textAddLink": "Add link",
|
||||
"textAddress": "Address",
|
||||
"textBack": "Back",
|
||||
"textBelowText": "Below text",
|
||||
"textBottomOfPage": "Bottom of page",
|
||||
"textBreak": "Break",
|
||||
"textCancel": "Cancel",
|
||||
"textCenterBottom": "Center Bottom",
|
||||
"textCenterTop": "Center Top",
|
||||
"textColumnBreak": "Column Break",
|
||||
"textColumns": "Columns",
|
||||
"textComment": "Comment",
|
||||
"textContinuousPage": "Continuous Page",
|
||||
"textCurrentPosition": "Current Position",
|
||||
"textDisplay": "Display",
|
||||
"textEmptyImgUrl": "You need to specify image URL.",
|
||||
"textEvenPage": "Even Page",
|
||||
"textFootnote": "Footnote",
|
||||
|
@ -60,38 +60,47 @@
|
|||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"textAccept": "Accettare",
|
||||
"textAcceptAllChanges": "Accettare tutte le modifiche",
|
||||
"textAddComment": "Aggiungere commento",
|
||||
"textAddReply": "Aggiungere risposta",
|
||||
"textAllChangesAcceptedPreview": "Tutti i cambiamenti accettati (Anteprima)",
|
||||
"textAllChangesEditing": "Tutti i cambiamenti (Modifica)",
|
||||
"textAllChangesRejectedPreview": "Tutti i cambiamenti rifiutati (Anteprima)",
|
||||
"textAtLeast": "almeno",
|
||||
"textAuto": "Automatico",
|
||||
"textBack": "Indietro",
|
||||
"textBaseline": "Linea di base",
|
||||
"textBold": "Grassetto",
|
||||
"textCancel": "Annullare",
|
||||
"textCaps": "Tutto maiuscolo",
|
||||
"textCenter": "Allineare al centro",
|
||||
"textChart": "Grafico",
|
||||
"textCollaboration": "Collaborazione",
|
||||
"textComments": "Commenti",
|
||||
"textDelete": "Eliminare",
|
||||
"textDeleteComment": "Eliminare commento",
|
||||
"textDeleted": "Eliminato:",
|
||||
"textDeleteReply": "Eliminare risposta",
|
||||
"textDisplayMode": "Modalità di visualizzazione",
|
||||
"textDone": "Fatto",
|
||||
"textEdit": "Modificare",
|
||||
"textEditComment": "Modificare commento",
|
||||
"textEditReply": "Modificare risposta",
|
||||
"textJustify": "Allineamento giustificato",
|
||||
"textLeft": "Allineare a sinistra",
|
||||
"textMessageDeleteComment": "Sei sicuro di voler eliminare questo commento?",
|
||||
"textMessageDeleteReply": "Sei sicuro di voler eliminare questa risposta?",
|
||||
"textNoContextual": "Aggiungere intervallo tra paragrafi dello stesso stile",
|
||||
"textNum": "Cambiare numerazione",
|
||||
"textRight": "Allineare a destra",
|
||||
"textShd": "Colore di sfondo",
|
||||
"textTabs": "Cambiare tabulazioni",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textAccept": "Accept",
|
||||
"textAcceptAllChanges": "Accept all changes",
|
||||
"textAddComment": "Add comment",
|
||||
"textAddReply": "Add reply",
|
||||
"textAllChangesAcceptedPreview": "All changes accepted (Preview)",
|
||||
"textAllChangesEditing": "All changes (Editing)",
|
||||
"textAllChangesRejectedPreview": "All changes rejected (Preview)",
|
||||
"textAtLeast": "at least",
|
||||
"textAuto": "auto",
|
||||
"textBack": "Back",
|
||||
"textBaseline": "Baseline",
|
||||
"textBold": "Bold",
|
||||
"textBreakBefore": "Page break before",
|
||||
"textCancel": "Cancel",
|
||||
"textCaps": "All caps",
|
||||
"textCenter": "Align center",
|
||||
"textChart": "Chart",
|
||||
"textCollaboration": "Collaboration",
|
||||
"textColor": "Font color",
|
||||
"textComments": "Comments",
|
||||
"textContextual": "Don't add intervals between paragraphs of the same style",
|
||||
"textDelete": "Delete",
|
||||
"textDeleteComment": "Delete Comment",
|
||||
"textDeleted": "Deleted:",
|
||||
"textDeleteReply": "Delete Reply",
|
||||
"textDisplayMode": "Display Mode",
|
||||
"textDone": "Done",
|
||||
"textDStrikeout": "Double strikeout",
|
||||
"textEdit": "Edit",
|
||||
"textEditComment": "Edit Comment",
|
||||
"textEditReply": "Edit Reply",
|
||||
"textEditUser": "Users who are editing the file:",
|
||||
"textEquation": "Equation",
|
||||
"textExact": "exactly",
|
||||
|
@ -104,24 +113,19 @@
|
|||
"textIndentRight": "Indent right",
|
||||
"textInserted": "Inserted:",
|
||||
"textItalic": "Italic",
|
||||
"textJustify": "Align justified ",
|
||||
"textKeepLines": "Keep lines together",
|
||||
"textKeepNext": "Keep with next",
|
||||
"textLeft": "Align left",
|
||||
"textLineSpacing": "Line Spacing: ",
|
||||
"textMarkup": "Markup",
|
||||
"textMessageDeleteComment": "Do you really want to delete this comment?",
|
||||
"textMessageDeleteReply": "Do you really want to delete this reply?",
|
||||
"textMultiple": "multiple",
|
||||
"textNoBreakBefore": "No page break before",
|
||||
"textNoChanges": "There are no changes.",
|
||||
"textNoComments": "This document doesn't contain comments",
|
||||
"textNoContextual": "Add interval between paragraphs of the same style",
|
||||
"textNoKeepLines": "Don't keep lines together",
|
||||
"textNoKeepNext": "Don't keep with next",
|
||||
"textNot": "Not ",
|
||||
"textNoWidow": "No widow control",
|
||||
"textNum": "Change numbering",
|
||||
"textOk": "Ok",
|
||||
"textOriginal": "Original",
|
||||
"textParaDeleted": "Paragraph Deleted",
|
||||
"textParaFormatted": "Paragraph Formatted",
|
||||
|
@ -136,9 +140,7 @@
|
|||
"textResolve": "Resolve",
|
||||
"textReview": "Review",
|
||||
"textReviewChange": "Review Change",
|
||||
"textRight": "Align right",
|
||||
"textShape": "Shape",
|
||||
"textShd": "Background color",
|
||||
"textSmallCaps": "Small caps",
|
||||
"textSpacing": "Spacing",
|
||||
"textSpacingAfter": "Spacing after",
|
||||
|
@ -149,86 +151,84 @@
|
|||
"textTableChanged": "Table Settings Changed",
|
||||
"textTableRowsAdd": "Table Rows Added",
|
||||
"textTableRowsDel": "Table Rows Deleted",
|
||||
"textTabs": "Change tabs",
|
||||
"textTrackChanges": "Track Changes",
|
||||
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
|
||||
"textUnderline": "Underline",
|
||||
"textUsers": "Users",
|
||||
"textWidow": "Widow control",
|
||||
"textOk": "Ok"
|
||||
"textWidow": "Widow control"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Custom Colors",
|
||||
"textCustomColors": "Colori personalizzati",
|
||||
"textStandartColors": "Standard Colors",
|
||||
"textThemeColors": "Theme Colors"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"menuAddComment": "Aggiungere commento",
|
||||
"menuAddLink": "Aggiungere link",
|
||||
"menuCancel": "Annullare",
|
||||
"menuContinueNumbering": "Continuare la numerazione",
|
||||
"menuDelete": "Eliminare",
|
||||
"menuDeleteTable": "Eliminare tabella",
|
||||
"menuEdit": "Modificare",
|
||||
"textCancel": "Annullare",
|
||||
"textColumns": "Colonne",
|
||||
"textCopyCutPasteActions": "Funzioni di Copiare, Tagliare e Incollare",
|
||||
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
|
||||
"menuAddComment": "Add comment",
|
||||
"menuAddLink": "Add link",
|
||||
"menuCancel": "Cancel",
|
||||
"menuDelete": "Delete",
|
||||
"menuDeleteTable": "Delete Table",
|
||||
"menuEdit": "Edit",
|
||||
"menuJoinList": "Join to previous list",
|
||||
"menuMerge": "Merge",
|
||||
"menuMore": "More",
|
||||
"menuOpenLink": "Open Link",
|
||||
"menuReview": "Review",
|
||||
"menuReviewChange": "Review Change",
|
||||
"menuSeparateList": "Separate list",
|
||||
"menuSplit": "Split",
|
||||
"menuViewComment": "View Comment",
|
||||
"textColumns": "Columns",
|
||||
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
|
||||
"textDoNotShowAgain": "Don't show again",
|
||||
"textRows": "Rows",
|
||||
"menuStartNewList": "Start new list",
|
||||
"menuStartNumberingFrom": "Set numbering value",
|
||||
"menuContinueNumbering": "Continue numbering",
|
||||
"menuSeparateList": "Separate list",
|
||||
"menuJoinList": "Join to previous list",
|
||||
"menuViewComment": "View Comment",
|
||||
"textDoNotShowAgain": "Don't show again",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textOk": "OK",
|
||||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value"
|
||||
"textRows": "Rows"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textActualSize": "Actual size",
|
||||
"textAddCustomColor": "Add custom color",
|
||||
"textAdditional": "Additional",
|
||||
"textAdditionalFormatting": "Additional formatting",
|
||||
"textAddress": "Address",
|
||||
"textAdvanced": "Advanced",
|
||||
"textAdvancedSettings": "Advanced settings",
|
||||
"textAfter": "After",
|
||||
"textAlign": "Align",
|
||||
"textAllCaps": "All caps",
|
||||
"textAllowOverlap": "Allow overlap",
|
||||
"textActualSize": "Dimensione reale",
|
||||
"textAddCustomColor": "Aggiungere colore personalizzato",
|
||||
"textAdditional": "Aggiuntivo",
|
||||
"textAdditionalFormatting": "Formattazione aggiuntiva",
|
||||
"textAddress": "Indirizzo",
|
||||
"textAdvanced": "Avanzato",
|
||||
"textAdvancedSettings": "Impostazioni avanzate",
|
||||
"textAfter": "Dopo",
|
||||
"textAlign": "Allineare",
|
||||
"textAllCaps": "Tutto maiuscolo",
|
||||
"textAllowOverlap": "Consentire sovrapposizione",
|
||||
"textAuto": "Auto",
|
||||
"textAutomatic": "Automatic",
|
||||
"textBack": "Back",
|
||||
"textBackground": "Background",
|
||||
"textBandedColumn": "Banded column",
|
||||
"textBandedRow": "Banded row",
|
||||
"textBefore": "Before",
|
||||
"textBehind": "Behind",
|
||||
"textBorder": "Border",
|
||||
"textBringToForeground": "Bring to foreground",
|
||||
"textBullets": "Bullets",
|
||||
"textBulletsAndNumbers": "Bullets & Numbers",
|
||||
"textCellMargins": "Cell Margins",
|
||||
"textChart": "Chart",
|
||||
"textClose": "Close",
|
||||
"textColor": "Color",
|
||||
"textContinueFromPreviousSection": "Continue from previous section",
|
||||
"textCustomColor": "Custom Color",
|
||||
"textDifferentFirstPage": "Different first page",
|
||||
"textAutomatic": "Automatico",
|
||||
"textBack": "Indietro",
|
||||
"textBackground": "Sfondo",
|
||||
"textBandedColumn": "Colonne a bande",
|
||||
"textBandedRow": "Righe a bande",
|
||||
"textBefore": "Prima",
|
||||
"textBehind": "Dietro",
|
||||
"textBorder": "Bordo",
|
||||
"textBringToForeground": "Portare in primo piano",
|
||||
"textBullets": "Elenchi puntati",
|
||||
"textBulletsAndNumbers": "Puntato e numerato",
|
||||
"textCellMargins": "Margini di cella",
|
||||
"textChart": "Grafico",
|
||||
"textClose": "Chiudere",
|
||||
"textColor": "Colore",
|
||||
"textContinueFromPreviousSection": "Continuare dalla sezione precedente",
|
||||
"textCustomColor": "Colore personalizzato",
|
||||
"textDifferentFirstPage": "Prima pagina diversa",
|
||||
"textDisplay": "Visualizzare",
|
||||
"textDistanceFromText": "Distanza dal testo",
|
||||
"textEditLink": "Modificare link",
|
||||
"textEffects": "Effetti",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textDifferentOddAndEvenPages": "Different odd and even pages",
|
||||
"textDisplay": "Display",
|
||||
"textDistanceFromText": "Distance from text",
|
||||
"textDoubleStrikethrough": "Double Strikethrough",
|
||||
"textEditLink": "Edit Link",
|
||||
"textEffects": "Effects",
|
||||
"textEmptyImgUrl": "You need to specify image URL.",
|
||||
"textFill": "Fill",
|
||||
"textFirstColumn": "First Column",
|
||||
|
@ -260,6 +260,7 @@
|
|||
"textNone": "None",
|
||||
"textNoStyles": "No styles for this type of charts.",
|
||||
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
|
||||
"textNumbers": "Numbers",
|
||||
"textOpacity": "Opacity",
|
||||
"textOptions": "Options",
|
||||
"textOrphanControl": "Orphan Control",
|
||||
|
@ -303,26 +304,28 @@
|
|||
"textTopAndBottom": "Top and Bottom",
|
||||
"textTotalRow": "Total Row",
|
||||
"textType": "Type",
|
||||
"textWrap": "Wrap",
|
||||
"textNumbers": "Numbers"
|
||||
"textWrap": "Wrap"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Conversion timeout exceeded.",
|
||||
"convertationTimeoutText": "È stato superato il tempo massimo della conversione.",
|
||||
"downloadErrorText": "Scaricamento fallito.",
|
||||
"errorConnectToServer": "Impossibile salvare questo documento. Controlla le impostazioni di connessione o contatta l'amministratore.<br>Cliccando su OK ti verrà richiesto di scaricare il documento.",
|
||||
"errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.<br>Scarica il documento per salvare il backup del file localmente.",
|
||||
"openErrorText": "Si è verificato un errore all'apertura del file",
|
||||
"saveErrorText": "Si è verificato un errore al salvataggio del file",
|
||||
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
|
||||
"criticalErrorTitle": "Error",
|
||||
"downloadErrorText": "Download failed.",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
|
||||
"errorBadImageUrl": "Image url is incorrect",
|
||||
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.<br>When you click OK, you will be prompted to download the document.",
|
||||
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
|
||||
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
|
||||
"errorDataRange": "Incorrect data range.",
|
||||
"errorDefaultMessage": "Error code: %1",
|
||||
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
|
||||
"errorFilePassProtect": "The file is password protected and could not be opened.",
|
||||
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
|
||||
"errorKeyEncrypt": "Unknown key descriptor",
|
||||
"errorKeyExpire": "Key descriptor expired",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorMailMergeLoadFile": "Loading failed",
|
||||
"errorMailMergeSaveFile": "Merge failed.",
|
||||
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
|
||||
|
@ -332,10 +335,8 @@
|
|||
"errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"errorUserDrop": "The file can't be accessed right now.",
|
||||
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
|
||||
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download or print it until the connection is restored and the page is reloaded.",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"openErrorText": "An error has occurred while opening the file",
|
||||
"saveErrorText": "An error has occurred while saving the file",
|
||||
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
|
||||
"splitDividerErrorText": "The number of rows must be a divisor of %1",
|
||||
"splitMaxColsErrorText": "The number of columns must be less than %1",
|
||||
|
@ -343,16 +344,15 @@
|
|||
"unknownErrorText": "Unknown error.",
|
||||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator."
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"downloadMergeText": "Scaricamento...",
|
||||
"downloadMergeTitle": "Scaricamento",
|
||||
"downloadTextText": "Scaricamento di documento...",
|
||||
"downloadTitleText": "Scaricamento di documento",
|
||||
"applyChangesTextText": "Loading data...",
|
||||
"applyChangesTitleText": "Loading Data",
|
||||
"downloadMergeText": "Downloading...",
|
||||
"downloadMergeTitle": "Downloading",
|
||||
"downloadTextText": "Downloading document...",
|
||||
"downloadTitleText": "Downloading Document",
|
||||
"loadFontsTextText": "Loading data...",
|
||||
"loadFontsTitleText": "Loading Data",
|
||||
"loadFontTextText": "Loading data...",
|
||||
|
@ -382,23 +382,15 @@
|
|||
"waitText": "Please, wait..."
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Error",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
|
||||
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"errorProcessSaveResult": "Saving failed.",
|
||||
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"SDK": {
|
||||
" -Section ": " -Section ",
|
||||
"above": "above",
|
||||
"below": "below",
|
||||
"Caption": "Caption",
|
||||
"Choose an item": "Choose an item",
|
||||
"Click to load image": "Click to load image",
|
||||
"Current Document": "Current Document",
|
||||
"Diagram Title": "Chart Title",
|
||||
" -Section ": "-Sezione",
|
||||
"above": "sopra",
|
||||
"below": "sotto",
|
||||
"Caption": "Didascalia",
|
||||
"Choose an item": "Scegliere un elemento",
|
||||
"Click to load image": "Cliccare per caricare l'immagine",
|
||||
"Current Document": "Documento attuale",
|
||||
"Diagram Title": "Titolo di grafico",
|
||||
"endnote text": "Endnote Text",
|
||||
"Enter a date": "Enter a date",
|
||||
"Error! Bookmark not defined": "Error! Bookmark not defined.",
|
||||
|
@ -452,10 +444,19 @@
|
|||
"Your text here": "Your text here",
|
||||
"Zero Divide": "Zero Divide"
|
||||
},
|
||||
"textAnonymous": "Anonymous",
|
||||
"textAnonymous": "Anonimo",
|
||||
"textClose": "Chiudere",
|
||||
"textContactUs": "Contatta il team di vendite",
|
||||
"titleServerVersion": "L'editor è stato aggiornato",
|
||||
"criticalErrorTitle": "Error",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
|
||||
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"errorProcessSaveResult": "Saving failed.",
|
||||
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textBuyNow": "Visit website",
|
||||
"textClose": "Close",
|
||||
"textContactUs": "Contact sales",
|
||||
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
|
||||
"textGuest": "Guest",
|
||||
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
|
||||
|
@ -465,7 +466,6 @@
|
|||
"textRemember": "Remember my choice",
|
||||
"textYes": "Yes",
|
||||
"titleLicenseExp": "License expired",
|
||||
"titleServerVersion": "Editor updated",
|
||||
"titleUpdateVersion": "Version changed",
|
||||
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
|
||||
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
|
||||
|
@ -477,41 +477,48 @@
|
|||
"warnProcessRightsChange": "You don't have permission to edit this file."
|
||||
},
|
||||
"Settings": {
|
||||
"advTxtOptions": "Selezionare opzioni di TXT",
|
||||
"closeButtonText": "Chiudere file",
|
||||
"textAbout": "In riguardo a",
|
||||
"textApplication": "Applicazione",
|
||||
"textApplicationSettings": "Impostazioni dell'applicazione",
|
||||
"textAuthor": "Autore",
|
||||
"textBack": "Indietro",
|
||||
"textBottom": "In basso",
|
||||
"textCancel": "Annullare",
|
||||
"textCaseSensitive": "Sensibile al maiuscolo/minuscolo",
|
||||
"textCentimeter": "Centimetro",
|
||||
"textChooseEncoding": "Scegliere codificazione",
|
||||
"textChooseTxtOptions": "Selezionare opzioni di TXT",
|
||||
"textCollaboration": "Collaborazione",
|
||||
"textColorSchemes": "Schemi di colori",
|
||||
"textComment": "Commento",
|
||||
"textComments": "Commenti",
|
||||
"textCommentsDisplay": "Visualizzazione di commenti",
|
||||
"textCreated": "Creato",
|
||||
"textCustomSize": "Dimensione personalizzata",
|
||||
"textDisableAll": "Disabilitare tutto",
|
||||
"textDocumentInfo": "Informazioni sul documento",
|
||||
"textDocumentSettings": "Impostazioni del documento",
|
||||
"textDocumentTitle": "Titolo di documento",
|
||||
"textDone": "Fatto",
|
||||
"textDownload": "Scaricare",
|
||||
"textDownloadAs": "Scaricare come",
|
||||
"textEnableAll": "Attivare tutto",
|
||||
"textEncoding": "Codificazione",
|
||||
"txtDownloadTxt": "Scaricare TXT",
|
||||
"txtScheme3": "Apice",
|
||||
"txtScheme4": "Aspetto",
|
||||
"txtScheme5": "Civico",
|
||||
"txtScheme6": "Concorso",
|
||||
"advDRMOptions": "Protected File",
|
||||
"advDRMPassword": "Password",
|
||||
"advTxtOptions": "Choose TXT Options",
|
||||
"closeButtonText": "Close File",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textAbout": "About",
|
||||
"textApplication": "Application",
|
||||
"textApplicationSettings": "Application settings",
|
||||
"textAuthor": "Author",
|
||||
"textBack": "Back",
|
||||
"textBottom": "Bottom",
|
||||
"textCancel": "Cancel",
|
||||
"textCaseSensitive": "Case Sensitive",
|
||||
"textCentimeter": "Centimeter",
|
||||
"textCollaboration": "Collaboration",
|
||||
"textColorSchemes": "Color Schemes",
|
||||
"textComment": "Comment",
|
||||
"textComments": "Comments",
|
||||
"textCommentsDisplay": "Comments Display",
|
||||
"textCreated": "Created",
|
||||
"textCustomSize": "Custom Size",
|
||||
"textDisableAll": "Disable All",
|
||||
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
|
||||
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
|
||||
"textDocumentInfo": "Document Info",
|
||||
"textDocumentSettings": "Document Settings",
|
||||
"textDocumentTitle": "Document Title",
|
||||
"textDone": "Done",
|
||||
"textDownload": "Download",
|
||||
"textDownloadAs": "Download As",
|
||||
"textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?",
|
||||
"textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?",
|
||||
"textEnableAll": "Enable All",
|
||||
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
|
||||
"textEncoding": "Encoding",
|
||||
"textFind": "Find",
|
||||
"textFindAndReplace": "Find and Replace",
|
||||
"textFindAndReplaceAll": "Find and Replace All",
|
||||
|
@ -532,9 +539,12 @@
|
|||
"textMarginsW": "Left and right margins are too wide for a given page width",
|
||||
"textNoCharacters": "Nonprinting Characters",
|
||||
"textNoTextFound": "Text not found",
|
||||
"textOk": "Ok",
|
||||
"textOpenFile": "Enter a password to open the file",
|
||||
"textOrientation": "Orientation",
|
||||
"textOwner": "Owner",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textPoint": "Point",
|
||||
"textPortrait": "Portrait",
|
||||
"textPrint": "Print",
|
||||
|
@ -546,14 +556,18 @@
|
|||
"textSearch": "Search",
|
||||
"textSettings": "Settings",
|
||||
"textShowNotification": "Show Notification",
|
||||
"textSpaces": "Spaces",
|
||||
"textSpellcheck": "Spell Checking",
|
||||
"textStatistic": "Statistic",
|
||||
"textSubject": "Subject",
|
||||
"textSymbols": "Symbols",
|
||||
"textTitle": "Title",
|
||||
"textTop": "Top",
|
||||
"textUnitOfMeasurement": "Unit Of Measurement",
|
||||
"textUploaded": "Uploaded",
|
||||
"textWords": "Words",
|
||||
"txtIncorrectPwd": "Password is incorrect",
|
||||
"txtOk": "Ok",
|
||||
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
|
||||
"txtScheme1": "Office",
|
||||
"txtScheme10": "Median",
|
||||
|
@ -570,18 +584,9 @@
|
|||
"txtScheme20": "Urban",
|
||||
"txtScheme21": "Verve",
|
||||
"txtScheme22": "New Office",
|
||||
"txtScheme3": "Apex",
|
||||
"txtScheme4": "Aspect",
|
||||
"txtScheme5": "Civic",
|
||||
"txtScheme6": "Concourse",
|
||||
"txtScheme7": "Equity",
|
||||
"txtScheme8": "Flow",
|
||||
"txtScheme9": "Foundry",
|
||||
"textOk": "Ok",
|
||||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtScheme9": "Foundry"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "ファイルを開くためにパスワードを入力してください",
|
||||
"textOrientation": "向き",
|
||||
"textOwner": "所有者",
|
||||
"textPages": "ページ",
|
||||
"textParagraphs": "段落",
|
||||
"textPoint": "ポイント",
|
||||
"textPortrait": "縦長の向き",
|
||||
"textPrint": "印刷",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "検索",
|
||||
"textSettings": "設定",
|
||||
"textShowNotification": " 通知を表示する",
|
||||
"textSpaces": "スペース",
|
||||
"textSpellcheck": "スペルチェック",
|
||||
"textStatistic": "統計値",
|
||||
"textSubject": "件名",
|
||||
"textSymbols": "記号",
|
||||
"textTitle": "タイトル",
|
||||
"textTop": "上",
|
||||
"textUnitOfMeasurement": "測定の単位",
|
||||
"textUploaded": "アップロードした",
|
||||
"textWords": "文字数",
|
||||
"txtDownloadTxt": "TXTをダウンロード",
|
||||
"txtIncorrectPwd": "パスワードが間違い",
|
||||
"txtOk": "OK",
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
"textContinuousPage": "연속 페이지",
|
||||
"textCurrentPosition": "현재 위치",
|
||||
"textDisplay": "표시",
|
||||
"textEmptyImgUrl": "이미지 URL을 지정해야합니다.",
|
||||
"textEvenPage": "짝수 페이지",
|
||||
"textFootnote": "각주",
|
||||
"textFormat": "형식",
|
||||
|
@ -55,8 +56,7 @@
|
|||
"textStartAt": "시작",
|
||||
"textTable": "표",
|
||||
"textTableSize": "표 크기",
|
||||
"textEmptyImgUrl": "You need to specify image URL.",
|
||||
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
|
||||
"txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다."
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -114,6 +114,8 @@
|
|||
"textMessageDeleteReply": "이 댓글을 삭제하시겠습니까?",
|
||||
"textMultiple": "배수",
|
||||
"textNoBreakBefore": "현재 단락 앞에서 페이지 나누기 없음",
|
||||
"textNoChanges": "변경된 사항이 없습니다.",
|
||||
"textNoComments": "이 문서에 달린 코멘트가 없습니다",
|
||||
"textNoContextual": "같은 스타일의 단락 사이에 공백 추가",
|
||||
"textNoKeepLines": "현재 단락을 나누지 마십시오",
|
||||
"textNoKeepNext": "현재 단락과 다음 단락을 항상 같은 페이지에 배치하지 마십시오",
|
||||
|
@ -122,7 +124,9 @@
|
|||
"textNum": "번호 매기기 변경",
|
||||
"textOk": "확인",
|
||||
"textOriginal": "오리지널",
|
||||
"textParaDeleted": "삭제된 단락",
|
||||
"textParaFormatted": "단락 서식 지정",
|
||||
"textParaInserted": "삽입된 단락",
|
||||
"textParaMoveFromDown": "아래로 이동:",
|
||||
"textParaMoveFromUp": "위로 이동:",
|
||||
"textParaMoveTo": "이동됨:",
|
||||
|
@ -143,24 +147,20 @@
|
|||
"textStrikeout": "취소선",
|
||||
"textSubScript": "아래 첨자",
|
||||
"textSuperScript": "위 첨자",
|
||||
"textTableChanged": "표 설정이 변경됨",
|
||||
"textTableRowsAdd": "표의 행이 추가됨",
|
||||
"textTableRowsDel": "표의 행이 삭제됨",
|
||||
"textTabs": "탭 변경",
|
||||
"textTrackChanges": "변경 내용 추적",
|
||||
"textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.",
|
||||
"textUnderline": "밑줄",
|
||||
"textUsers": "사용자",
|
||||
"textNoChanges": "There are no changes.",
|
||||
"textNoComments": "This document doesn't contain comments",
|
||||
"textParaDeleted": "Paragraph Deleted",
|
||||
"textParaInserted": "Paragraph Inserted",
|
||||
"textTableChanged": "Table Settings Changed",
|
||||
"textTableRowsAdd": "Table Rows Added",
|
||||
"textTableRowsDel": "Table Rows Deleted",
|
||||
"textWidow": "Widow control"
|
||||
"textWidow": "개별 제어"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "사용자 정의 색상",
|
||||
"textStandartColors": "표준 색상",
|
||||
"textThemeColors": "Theme Colors"
|
||||
"textThemeColors": "테마 색"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
|
@ -182,14 +182,14 @@
|
|||
"menuSplit": "분할",
|
||||
"menuStartNewList": "새 목록 시작",
|
||||
"menuStartNumberingFrom": "숫자 값 설정",
|
||||
"menuViewComment": "코멘트 보기",
|
||||
"textCancel": "취소",
|
||||
"textColumns": "열",
|
||||
"textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기",
|
||||
"textDoNotShowAgain": "다시 표시하지 않음",
|
||||
"textNumberingValue": "번호",
|
||||
"textOk": "확인",
|
||||
"textRows": "행",
|
||||
"menuViewComment": "View Comment"
|
||||
"textRows": "행"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "경고",
|
||||
|
@ -229,6 +229,7 @@
|
|||
"textDoubleStrikethrough": "이중 취소선",
|
||||
"textEditLink": "링크 편집",
|
||||
"textEffects": "효과",
|
||||
"textEmptyImgUrl": "이미지 URL을 지정해야합니다.",
|
||||
"textFill": "채우기",
|
||||
"textFirstColumn": "첫째 열",
|
||||
"textFirstLine": "첫째 줄",
|
||||
|
@ -258,6 +259,7 @@
|
|||
"textMoveWithText": "텍스트와 함께 이동",
|
||||
"textNone": "없음",
|
||||
"textNoStyles": "이 유형의 차트에 해당하는 스타일이 없습니다.",
|
||||
"textNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.",
|
||||
"textNumbers": "숫자",
|
||||
"textOpacity": "투명도",
|
||||
"textOptions": "옵션",
|
||||
|
@ -280,11 +282,13 @@
|
|||
"textReplaceImage": "이미지 바꾸기",
|
||||
"textResizeToFitContent": "내용에 맞게 크기 조정",
|
||||
"textScreenTip": "화면 팁",
|
||||
"textSelectObjectToEdit": "편집하기 위해 개체를 선택하십시오",
|
||||
"textSendToBackground": "맨 뒤로 보내기",
|
||||
"textSettings": "설정",
|
||||
"textShape": "도형",
|
||||
"textSize": "크기",
|
||||
"textSmallCaps": "작은 대문자",
|
||||
"textSpaceBetweenParagraphs": "단락 사이의 공백",
|
||||
"textSquare": "사각형",
|
||||
"textStartAt": "시작",
|
||||
"textStrikethrough": "취소선",
|
||||
|
@ -296,18 +300,15 @@
|
|||
"textTableOptions": "표 옵션",
|
||||
"textText": "텍스트",
|
||||
"textThrough": "통과",
|
||||
"textTight": "Tight",
|
||||
"textTopAndBottom": "상단 및 하단",
|
||||
"textTotalRow": "합계",
|
||||
"textType": "유형",
|
||||
"textWrap": "줄 바꾸기",
|
||||
"textEmptyImgUrl": "You need to specify image URL.",
|
||||
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
|
||||
"textSelectObjectToEdit": "Select object to edit",
|
||||
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
|
||||
"textTight": "Tight"
|
||||
"textWrap": "줄 바꾸기"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "변환 시간을 초과했습니다.",
|
||||
"criticalErrorExtText": "문서 목록으로 돌아가려면 \"확인\" 버튼을 누르십시오.",
|
||||
"criticalErrorTitle": "오류",
|
||||
"downloadErrorText": "다운로드 실패",
|
||||
"errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.<br>관리자에게 문의하십시오.",
|
||||
|
@ -330,21 +331,20 @@
|
|||
"errorSessionToken": "서버에 대한 링크가 중단되었습니다. 페이지를 새로고침하세요.",
|
||||
"errorStockChart": "줄의 순서가 잘못되었습니다. 주식형 차트를 생성하려면 <br> 시가, 최고가, 최저가, 종가의 순서로 데이터를 테이블에 배치하십시오.",
|
||||
"errorUpdateVersionOnDisconnect": "네트워크 연결이 복원되었으며 파일 버전이 변경되었습니다. <br>계속 작업하기 전에 데이터 손실을 방지하기 위해 파일을 다운로드하거나 내용을 복사한 다음 이 페이지를 새로 고쳐야 합니다.",
|
||||
"errorUserDrop": "이제 파일에 액세스 할 수 없습니다.",
|
||||
"errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다",
|
||||
"errorViewerDisconnect": "네트워크 연결에 실패했습니다. 이 문서는 계속 볼 수 있지만<br>연결이 복원되고 페이지가 새로 고쳐질 때까지 이 문서를 다운로드하거나 인쇄할 수 없습니다.",
|
||||
"notcriticalErrorTitle": "경고",
|
||||
"openErrorText": "파일을 여는 동안 오류가 발생했습니다.",
|
||||
"saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.",
|
||||
"scriptLoadError": "인터넷 속도가 너무 느려 이 페이지의 일부 요소가 로드되지 않습니다. 페이지를 새로고침하세요.",
|
||||
"splitDividerErrorText": "행 수는 % 1의 약수이어야합니다",
|
||||
"splitMaxColsErrorText": "열 수가 % 1보다 작아야합니다",
|
||||
"splitMaxRowsErrorText": "행 수가 % 1보다 작아야 합니다",
|
||||
"unknownErrorText": "알 수 없는 오류.",
|
||||
"uploadImageExtMessage": "알 수없는 이미지 형식입니다.",
|
||||
"uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.",
|
||||
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
|
||||
"errorUserDrop": "The file can't be accessed right now.",
|
||||
"splitDividerErrorText": "The number of rows must be a divisor of %1",
|
||||
"splitMaxColsErrorText": "The number of columns must be less than %1",
|
||||
"splitMaxRowsErrorText": "The number of rows must be less than %1",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
"uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "데이터로드 중 ...",
|
||||
|
@ -373,13 +373,13 @@
|
|||
"savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...",
|
||||
"saveTextText": "문서 저장 중 ...",
|
||||
"saveTitleText": "문서 저장 중",
|
||||
"sendMergeText": "병합 결과 보내는 중",
|
||||
"sendMergeTitle": "병합 결과 보내기",
|
||||
"textLoadingDocument": "문서로드 중",
|
||||
"txtEditingMode": "편집 모드 설정 ...",
|
||||
"uploadImageTextText": "이미지 업로드 중 ...",
|
||||
"uploadImageTitleText": "이미지 업로드 중",
|
||||
"waitText": "잠시만 기다려주세요...",
|
||||
"sendMergeText": "Sending Merge...",
|
||||
"sendMergeTitle": "Sending Merge"
|
||||
"waitText": "잠시만 기다려주세요..."
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "오류",
|
||||
|
@ -388,6 +388,7 @@
|
|||
"errorProcessSaveResult": "저장하지 못했습니다.",
|
||||
"errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.",
|
||||
"errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.",
|
||||
"leavePageText": "저장하지 않은 변경 사항이 있습니다. 자동 저장이 완료될 때까지 기다리려면 \"이 페이지에 머물기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 변경 사항이 삭제됩니다.",
|
||||
"notcriticalErrorTitle": "경고",
|
||||
"SDK": {
|
||||
" -Section ": "-섹션",
|
||||
|
@ -426,6 +427,7 @@
|
|||
"Missing Argument": "누락된 매개변수",
|
||||
"Missing Operator": "누락된 연산자",
|
||||
"No Spacing": "간격 없음",
|
||||
"No table of contents entries found": "이 문서에는 제목이 없습니다. 목차에 나타나도록 제목 스타일을 텍스트에 적용합니다.",
|
||||
"No table of figures entries found": "목차 항목을 찾을 수 없습니다.",
|
||||
"None": "없음",
|
||||
"Normal": "표준",
|
||||
|
@ -439,42 +441,40 @@
|
|||
"Table Index Cannot be Zero": "표 인덱스는 0일 수 없습니다.",
|
||||
"Table of Contents": "차례",
|
||||
"table of figures": "목차",
|
||||
"The Formula Not In Table": "표에 없는 수식",
|
||||
"Title": "제목",
|
||||
"TOC Heading": "TOC 제목",
|
||||
"Type equation here": "여기에 수식을 입력합니다",
|
||||
"Undefined Bookmark": "정의되지 않은 책갈피",
|
||||
"Unexpected End of Formula": "수식의 예기치 않은 종료",
|
||||
"X Axis": "X 축 XAS",
|
||||
"Y Axis": "Y 축",
|
||||
"Zero Divide": "0으로 나누기",
|
||||
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
|
||||
"The Formula Not In Table": "The Formula Not In Table",
|
||||
"Type equation here": "Type equation here",
|
||||
"Undefined Bookmark": "Undefined Bookmark",
|
||||
"Unexpected End of Formula": "Unexpected End of Formula",
|
||||
"X Axis": "X Axis XAS",
|
||||
"Your text here": "Your text here"
|
||||
"Your text here": "여기에 귀하의 텍스트를 입력하여 주십시오",
|
||||
"Zero Divide": "0으로 나누기"
|
||||
},
|
||||
"textAnonymous": "익명",
|
||||
"textBuyNow": "웹 사이트 방문",
|
||||
"textClose": "닫기",
|
||||
"textContactUs": "영업 담당자에게 문의",
|
||||
"textCustomLoader": "불행하게도 당신은 로더를 변경할 수 없습니다. 견적을 받도록 영업 부서에 문의하십시오.",
|
||||
"textGuest": "게스트",
|
||||
"textHasMacros": "파일에 자동 매크로가 포함되어 있습니다. <br> 매크로를 실행 하시겠습니까?",
|
||||
"textNo": "아니오",
|
||||
"textNoLicenseTitle": "라이센스 수를 제한했습니다.",
|
||||
"textPaidFeature": "유료 기능",
|
||||
"textRemember": "선택사항을 저장",
|
||||
"textYes": "확인",
|
||||
"titleLicenseExp": "라이센스 만료",
|
||||
"titleServerVersion": "편집기가 업데이트되었습니다.",
|
||||
"titleUpdateVersion": "버전이 변경되었습니다",
|
||||
"warnLicenseExceeded": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드에서 엽립니다. 자세한 내용은 관리자에게 연락하십시오.",
|
||||
"warnLicenseExp": "라이센스가 만료되었습니다. 라이선스를 업데이트하고 페이지를 새로고침하세요.",
|
||||
"warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다. 문서 편집 기능을 사용할 수 없습니다. 관리자에게 문의하십시오.",
|
||||
"warnLicenseLimitedRenewed": "라이선스를 업데이트해야 합니다. 문서 편집 기능이 제한됩니다. <br>전체 액세스 권한을 얻으려면 관리자에게 문의하십시오.",
|
||||
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"textBuyNow": "Visit website",
|
||||
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
|
||||
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
|
||||
"textRemember": "Remember my choice",
|
||||
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
|
||||
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
|
||||
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"warnProcessRightsChange": "You don't have permission to edit this file."
|
||||
"warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.",
|
||||
"warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.",
|
||||
"warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다. <br> 더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.",
|
||||
"warnProcessRightsChange": "파일을 편집 할 권한이 없습니다."
|
||||
},
|
||||
"Settings": {
|
||||
"advDRMOptions": "보호 된 파일",
|
||||
|
@ -538,6 +538,9 @@
|
|||
"textOpenFile": "파일을 열려면 암호를 입력하십시오.",
|
||||
"textOrientation": "방향",
|
||||
"textOwner": "소유자",
|
||||
"textPages": "페이지",
|
||||
"textParagraphs": "단락",
|
||||
"textPoint": "Point",
|
||||
"textPortrait": "세로",
|
||||
"textPrint": "인쇄",
|
||||
"textReaderMode": "읽기 모드",
|
||||
|
@ -548,13 +551,16 @@
|
|||
"textSearch": "검색",
|
||||
"textSettings": "설정",
|
||||
"textShowNotification": "알림 표시",
|
||||
"textSpaces": "공백",
|
||||
"textSpellcheck": "맞춤법 검사",
|
||||
"textStatistic": "통계",
|
||||
"textSubject": "제목",
|
||||
"textSymbols": "심볼",
|
||||
"textTitle": "제목",
|
||||
"textTop": "위",
|
||||
"textUnitOfMeasurement": "측정 단위",
|
||||
"textUploaded": "업로드 되었습니다",
|
||||
"textWords": "단어",
|
||||
"txtDownloadTxt": "TXT 다운로드",
|
||||
"txtIncorrectPwd": "잘못된 비밀번호",
|
||||
"txtOk": "확인",
|
||||
|
@ -571,6 +577,8 @@
|
|||
"txtScheme18": "기술",
|
||||
"txtScheme19": "트레킹",
|
||||
"txtScheme2": "그레이스케일",
|
||||
"txtScheme20": "도시",
|
||||
"txtScheme21": "네온",
|
||||
"txtScheme22": "신규 오피스",
|
||||
"txtScheme3": "꼭지점",
|
||||
"txtScheme4": "화면",
|
||||
|
@ -578,15 +586,12 @@
|
|||
"txtScheme6": "광장",
|
||||
"txtScheme7": "같음",
|
||||
"txtScheme8": "플로우",
|
||||
"txtScheme9": "발견",
|
||||
"textPoint": "Point",
|
||||
"txtScheme20": "Urban",
|
||||
"txtScheme21": "Verve"
|
||||
"txtScheme9": "발견"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "저장하지 않은 변경 사항이 있습니다. 자동 저장이 완료될 때까지 기다리려면 \"이 페이지에 머물기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 변경 사항이 삭제됩니다.",
|
||||
"dlgLeaveTitleText": "응용 프로그램을 종료합니다",
|
||||
"leaveButtonText": "이 페이지에서 나가기",
|
||||
"stayButtonText": "이 페이지에 보관",
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"dlgLeaveTitleText": "You leave the application"
|
||||
"stayButtonText": "이 페이지에 보관"
|
||||
}
|
||||
}
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -580,6 +580,11 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"textOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
},
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "Inserir a Senha para Abrir o Arquivo",
|
||||
"textOrientation": "Orientação",
|
||||
"textOwner": "Proprietário",
|
||||
"textPages": "Páginas",
|
||||
"textParagraphs": "Parágrafos",
|
||||
"textPoint": "Ponto",
|
||||
"textPortrait": "Retrato ",
|
||||
"textPrint": "Imprimir",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "Pesquisar",
|
||||
"textSettings": "Configurações",
|
||||
"textShowNotification": "Mostrar notificação",
|
||||
"textSpaces": "Espaços",
|
||||
"textSpellcheck": "Verificação ortográfica",
|
||||
"textStatistic": "Estatística",
|
||||
"textSubject": "Assunto",
|
||||
"textSymbols": "Símbolos",
|
||||
"textTitle": "Título",
|
||||
"textTop": "Parte superior",
|
||||
"textUnitOfMeasurement": "Unidade de medida",
|
||||
"textUploaded": "Carregado",
|
||||
"textWords": "Palavras",
|
||||
"txtDownloadTxt": "Baixar TXT",
|
||||
"txtIncorrectPwd": "A senha está incorreta",
|
||||
"txtOk": "OK",
|
||||
|
|
|
@ -471,9 +471,9 @@
|
|||
"warnLicenseExp": "Licența dvs. a expirat. Licența urmează să fie reînnoită iar pagina reîmprospătată.",
|
||||
"warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.",
|
||||
"warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită. Funcțiile de editare sunt cu acces limitat. Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.",
|
||||
"warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.",
|
||||
"warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de actualizare.",
|
||||
"warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier."
|
||||
},
|
||||
"Settings": {
|
||||
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "Introduceți parola pentru deschidere fișier",
|
||||
"textOrientation": "Orientare",
|
||||
"textOwner": "Proprietar",
|
||||
"textPages": "Pagini",
|
||||
"textParagraphs": "Paragrafe",
|
||||
"textPoint": "Punct",
|
||||
"textPortrait": "Portret",
|
||||
"textPrint": "Imprimare",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "Căutare",
|
||||
"textSettings": "Setări",
|
||||
"textShowNotification": "Afișare notificări",
|
||||
"textSpaces": "Spații",
|
||||
"textSpellcheck": "Verificarea ortografică",
|
||||
"textStatistic": "Statistic",
|
||||
"textSubject": "Subiect",
|
||||
"textSymbols": "Simboluri",
|
||||
"textTitle": "Titlu",
|
||||
"textTop": "Sus",
|
||||
"textUnitOfMeasurement": "Unitate de măsură ",
|
||||
"textUploaded": "S-a încărcat",
|
||||
"textWords": "Cuvinte",
|
||||
"txtDownloadTxt": "Încărcare TXT",
|
||||
"txtIncorrectPwd": "Parolă incorectă",
|
||||
"txtOk": "OK",
|
||||
|
|
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "Введите пароль для открытия файла",
|
||||
"textOrientation": "Ориентация",
|
||||
"textOwner": "Владелец",
|
||||
"textPages": "Страницы",
|
||||
"textParagraphs": "Абзацы",
|
||||
"textPoint": "Пункт",
|
||||
"textPortrait": "Книжная",
|
||||
"textPrint": "Печать",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "Поиск",
|
||||
"textSettings": "Настройки",
|
||||
"textShowNotification": "Показывать уведомление",
|
||||
"textSpaces": "Пробелы",
|
||||
"textSpellcheck": "Проверка орфографии",
|
||||
"textStatistic": "Статистика",
|
||||
"textSubject": "Тема",
|
||||
"textSymbols": "Символы",
|
||||
"textTitle": "Название",
|
||||
"textTop": "Верхнее",
|
||||
"textUnitOfMeasurement": "Единица измерения",
|
||||
"textUploaded": "Загружен",
|
||||
"textWords": "Слова",
|
||||
"txtDownloadTxt": "Скачать TXT",
|
||||
"txtIncorrectPwd": "Неверный пароль",
|
||||
"txtOk": "Ok",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -503,6 +503,8 @@
|
|||
"textOpenFile": "Enter a password to open the file",
|
||||
"textOrientation": "Orientation",
|
||||
"textOwner": "Owner",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textPoint": "Point",
|
||||
"textPortrait": "Portrait",
|
||||
"textPrint": "Print",
|
||||
|
@ -514,13 +516,16 @@
|
|||
"textSearch": "Search",
|
||||
"textSettings": "Settings",
|
||||
"textShowNotification": "Show Notification",
|
||||
"textSpaces": "Spaces",
|
||||
"textSpellcheck": "Spell Checking",
|
||||
"textStatistic": "Statistic",
|
||||
"textSubject": "Subject",
|
||||
"textSymbols": "Symbols",
|
||||
"textTitle": "Title",
|
||||
"textTop": "Top",
|
||||
"textUnitOfMeasurement": "Unit Of Measurement",
|
||||
"textUploaded": "Uploaded",
|
||||
"textWords": "Words",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtIncorrectPwd": "Password is incorrect",
|
||||
"txtOk": "Ok",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -581,7 +581,12 @@
|
|||
"textChooseEncoding": "Choose Encoding",
|
||||
"textChooseTxtOptions": "Choose TXT Options",
|
||||
"txtDownloadTxt": "Download TXT",
|
||||
"txtOk": "Ok"
|
||||
"txtOk": "Ok",
|
||||
"textPages": "Pages",
|
||||
"textParagraphs": "Paragraphs",
|
||||
"textSpaces": "Spaces",
|
||||
"textSymbols": "Symbols",
|
||||
"textWords": "Words"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
|
|
@ -538,6 +538,8 @@
|
|||
"textOpenFile": "输入密码来打开文件",
|
||||
"textOrientation": "方向",
|
||||
"textOwner": "创建者",
|
||||
"textPages": "页面",
|
||||
"textParagraphs": "段落",
|
||||
"textPoint": "点",
|
||||
"textPortrait": "纵向",
|
||||
"textPrint": "打印",
|
||||
|
@ -549,13 +551,16 @@
|
|||
"textSearch": "搜索",
|
||||
"textSettings": "设置",
|
||||
"textShowNotification": "显示通知",
|
||||
"textSpaces": "间隔",
|
||||
"textSpellcheck": "拼写检查",
|
||||
"textStatistic": "统计",
|
||||
"textSubject": "主题",
|
||||
"textSymbols": "符号",
|
||||
"textTitle": "标题",
|
||||
"textTop": "顶部",
|
||||
"textUnitOfMeasurement": "计量单位",
|
||||
"textUploaded": "已上传",
|
||||
"textWords": "字幕",
|
||||
"txtDownloadTxt": "下载 TXT",
|
||||
"txtIncorrectPwd": "密码有误",
|
||||
"txtOk": "好",
|
||||
|
|
|
@ -108,9 +108,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
.swiper-pagination-bullet-active{
|
||||
background: @black;
|
||||
.swiper-container {
|
||||
height: 100%;
|
||||
.swiper-pagination-bullet-active{
|
||||
background: @black;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -184,12 +184,12 @@ const PageReplace = props => {
|
|||
</Navbar>
|
||||
<List>
|
||||
<ListItem title={_t.textPictureFromLibrary} onClick={() => {props.onReplaceByFile()}}>
|
||||
<Icon slot="media" icon="icon-link"></Icon>
|
||||
<Icon slot="media" icon="icon-image-library"></Icon>
|
||||
</ListItem>
|
||||
<ListItem title={_t.textPictureFromURL} link='/edit-image-link/' routeProps={{
|
||||
onReplaceByUrl: props.onReplaceByUrl
|
||||
}}>
|
||||
<Icon slot="media" icon="icon-image-library"></Icon>
|
||||
<Icon slot="media" icon="icon-link"></Icon>
|
||||
</ListItem>
|
||||
</List>
|
||||
</Page>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "Zkopírovat do schránky",
|
||||
"common.view.modals.txtEmbed": "Vestavěný",
|
||||
"common.view.modals.txtEmbed": "Vestavět",
|
||||
"common.view.modals.txtHeight": "Výška",
|
||||
"common.view.modals.txtShare": "Odkaz pro sdílení",
|
||||
"common.view.modals.txtWidth": "Šířka",
|
||||
|
@ -13,8 +13,8 @@
|
|||
"PE.ApplicationController.errorDefaultMessage": "Kód chyby: %1",
|
||||
"PE.ApplicationController.errorFilePassProtect": "Soubor je chráněn heslem a bez něj ho nelze otevřít.",
|
||||
"PE.ApplicationController.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.<br>Ohledně podrobností se obraťte na správce dokumentového serveru.",
|
||||
"PE.ApplicationController.errorForceSave": "Při ukládání souboru došlo k chybě. Prosím použijte 'Stáhnout jako' k uložení souboru na harddisk Vašeho počítače, nebo opakujte volbu později.",
|
||||
"PE.ApplicationController.errorLoadingFont": "Styly nejsou načteny.<br>Prosím kontaktujte Vašeho administrátora dokumentových serverů.",
|
||||
"PE.ApplicationController.errorForceSave": "Při ukládání souboru došlo k chybě. Prosím použijte „Stáhnout jako“ a uložte si soubor k sobě na počítač nebo původní volbu zkuste znovu později.",
|
||||
"PE.ApplicationController.errorLoadingFont": "Písma nejsou načtená.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
||||
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.<br>Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.",
|
||||
"PE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
||||
"PE.ApplicationController.notcriticalErrorTitle": "Varování",
|
||||
|
@ -28,7 +28,7 @@
|
|||
"PE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.",
|
||||
"PE.ApplicationController.waitText": "Čekejte prosím…",
|
||||
"PE.ApplicationView.txtDownload": "Stáhnout",
|
||||
"PE.ApplicationView.txtEmbed": "Vestavěný",
|
||||
"PE.ApplicationView.txtEmbed": "Vestavět",
|
||||
"PE.ApplicationView.txtFileLocation": "Otevřít umístění souboru",
|
||||
"PE.ApplicationView.txtFullScreen": "Na celou obrazovku",
|
||||
"PE.ApplicationView.txtPrint": "Tisk",
|
||||
|
|
|
@ -1010,10 +1010,10 @@ define([
|
|||
if (menu.cmpEl) {
|
||||
var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent();
|
||||
var itemMargin = /*parseInt($(itemEl.get(0)).parent().css('margin-right'))*/-1;
|
||||
Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = itemMargin + 1/Common.Utils.applicationPixelRatio());
|
||||
var itemWidth = itemEl.is(':visible') ? parseInt(itemEl.css('width')) :
|
||||
(cmp.itemWidth + parseInt(itemEl.css('padding-left')) + parseInt(itemEl.css('padding-right')) +
|
||||
parseInt(itemEl.css('border-left-width')) + parseInt(itemEl.css('border-right-width')));
|
||||
Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = -1 / Common.Utils.applicationPixelRatio());
|
||||
var itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) :
|
||||
(cmp.itemWidth + parseFloat(itemEl.css('padding-left')) + parseFloat(itemEl.css('padding-right')) +
|
||||
parseFloat(itemEl.css('border-left-width')) + parseFloat(itemEl.css('border-right-width')));
|
||||
|
||||
var minCount = cmp.menuPicker.store.length >= minMenuColumn ? minMenuColumn : cmp.menuPicker.store.length,
|
||||
columnCount = Math.min(cmp.menuPicker.store.length, Math.round($('.dataview', $(cmp.fieldPicker.el)).width() / (itemMargin + itemWidth) + 0.5));
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
"Common.define.chartData.textScatterSmoothMarker": "Bodový s vyhlazenými spojnicemi a značkami",
|
||||
"Common.define.chartData.textStock": "Burzovní graf",
|
||||
"Common.define.chartData.textSurface": "Povrch",
|
||||
"Common.Translation.warnFileLocked": "Soubor je upravován v jiné aplikaci. Můžete pokračovat v úpravách a uložit ho jako kopii.",
|
||||
"Common.Translation.warnFileLockedBtnEdit": "Vytvořit kopii",
|
||||
"Common.Translation.warnFileLockedBtnView": "Otevřít pro náhled",
|
||||
"Common.UI.ButtonColored.textAutoColor": "Automatické",
|
||||
|
@ -190,6 +191,7 @@
|
|||
"Common.Views.History.textRestore": "Obnovit",
|
||||
"Common.Views.History.textShow": "Rozšířit",
|
||||
"Common.Views.History.textShowAll": "Zobrazit detailní změny",
|
||||
"Common.Views.History.textVer": "ver.",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Vložte URL adresu obrázku:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Tuto kolonku je třeba vyplnit",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Obsahem této kolonky by měla být URL adresa ve formátu „http://www.example.com“",
|
||||
|
@ -1312,6 +1314,7 @@
|
|||
"PE.Views.FileMenu.btnSaveCopyAsCaption": "Uložit kopii jako…",
|
||||
"PE.Views.FileMenu.btnSettingsCaption": "Pokročilá nastavení…",
|
||||
"PE.Views.FileMenu.btnToEditCaption": "Upravit prezentaci",
|
||||
"PE.Views.FileMenuPanels.CreateNew.txtBlank": "Prázdná prezentace",
|
||||
"PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Vytvořit nový",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Použít",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Přidat autora",
|
||||
|
@ -1617,9 +1620,11 @@
|
|||
"PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo",
|
||||
"PE.Views.ShapeSettingsAdvanced.textRotation": "Otočení",
|
||||
"PE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené",
|
||||
"PE.Views.ShapeSettingsAdvanced.textShrink": "V případě přetečení řádku oříznout text",
|
||||
"PE.Views.ShapeSettingsAdvanced.textSize": "Velikost",
|
||||
"PE.Views.ShapeSettingsAdvanced.textSpacing": "Rozestupy mezi sloupci",
|
||||
"PE.Views.ShapeSettingsAdvanced.textSquare": "Čtverec",
|
||||
"PE.Views.ShapeSettingsAdvanced.textTextBox": "Textové pole",
|
||||
"PE.Views.ShapeSettingsAdvanced.textTitle": "Tvar – pokročilé nastavení",
|
||||
"PE.Views.ShapeSettingsAdvanced.textTop": "Nahoře",
|
||||
"PE.Views.ShapeSettingsAdvanced.textVertically": "Svisle",
|
||||
|
@ -2002,6 +2007,7 @@
|
|||
"PE.Views.Transitions.textUnCover": "Odkrýt",
|
||||
"PE.Views.Transitions.textVerticalIn": "Svislý uvnitř",
|
||||
"PE.Views.Transitions.textVerticalOut": "Svislý vně",
|
||||
"PE.Views.Transitions.textWedge": "Konjunkce",
|
||||
"PE.Views.Transitions.textWipe": "Vyčistit",
|
||||
"PE.Views.Transitions.textZoom": "Přiblížení",
|
||||
"PE.Views.Transitions.textZoomIn": "Přiblížit",
|
||||
|
|
|
@ -105,6 +105,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBy": "Nach",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Löschen",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "Jeden Satz mit einem Großbuchstaben beginnen",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet- und Netzwerkpfade durch Hyperlinks",
|
||||
"Common.Views.AutoCorrectDialog.textHyphens": "Bindestriche (--) mit Gedankenstrich (—)",
|
||||
"Common.Views.AutoCorrectDialog.textMathCorrect": "Mathematische Autokorrektur",
|
||||
"Common.Views.AutoCorrectDialog.textNumbered": "Automatische nummerierte Listen",
|
||||
|
@ -124,6 +125,12 @@
|
|||
"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.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.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",
|
||||
|
@ -131,6 +138,7 @@
|
|||
"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.textComments": "Kommentare",
|
||||
"Common.Views.Comments.textEdit": "OK",
|
||||
"Common.Views.Comments.textEnterCommentHint": "Geben Sie Ihren Kommentar hier ein",
|
||||
|
@ -139,6 +147,7 @@
|
|||
"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.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.<br><br> Für Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:",
|
||||
"Common.Views.CopyWarningDialog.textTitle": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"",
|
||||
|
@ -452,8 +461,10 @@
|
|||
"PE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
|
||||
"PE.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. <br>Jetzt konvertieren?",
|
||||
"PE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||
"PE.Controllers.Main.textDisconnect": "Verbindung wurde unterbrochen",
|
||||
"PE.Controllers.Main.textGuest": "Gast",
|
||||
"PE.Controllers.Main.textHasMacros": "Die Datei beinhaltet automatische Makros.<br>Möchten Sie Makros ausführen?",
|
||||
"PE.Controllers.Main.textLearnMore": "Mehr erfahren",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Präsentation wird geladen ",
|
||||
"PE.Controllers.Main.textLongName": "Der Name einer Tabellenansicht darf maximal 128 Zeichen lang sein.",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
|
@ -1269,6 +1280,7 @@
|
|||
"PE.Views.DocumentHolder.txtTop": "Oben",
|
||||
"PE.Views.DocumentHolder.txtUnderbar": "Linie unter dem Text ",
|
||||
"PE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben",
|
||||
"PE.Views.DocumentHolder.txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?",
|
||||
"PE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung",
|
||||
"PE.Views.DocumentPreview.goToSlideText": "Zu Folie übergehen",
|
||||
"PE.Views.DocumentPreview.slideIndexText": "Folie {0} von {1}",
|
||||
|
@ -1302,6 +1314,8 @@
|
|||
"PE.Views.FileMenu.btnSaveCopyAsCaption": "Kopie speichern als...",
|
||||
"PE.Views.FileMenu.btnSettingsCaption": "Erweiterte Einstellungen...",
|
||||
"PE.Views.FileMenu.btnToEditCaption": "Präsentation bearbeiten",
|
||||
"PE.Views.FileMenuPanels.CreateNew.txtBlank": "Leere Präsentation",
|
||||
"PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Neu erstellen",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Anwenden",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Autor hinzufügen",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Text hinzufügen",
|
||||
|
@ -1971,15 +1985,20 @@
|
|||
"PE.Views.Transitions.strDuration": "Dauer",
|
||||
"PE.Views.Transitions.strStartOnClick": "Bei Klicken beginnen",
|
||||
"PE.Views.Transitions.textBlack": "Durch Schwarz",
|
||||
"PE.Views.Transitions.textBottom": "Unten",
|
||||
"PE.Views.Transitions.textBottomLeft": "Unten links",
|
||||
"PE.Views.Transitions.textBottomRight": "Unten rechts",
|
||||
"PE.Views.Transitions.textClock": "Uhr",
|
||||
"PE.Views.Transitions.textClockwise": "Im Uhrzeigersinn",
|
||||
"PE.Views.Transitions.textCounterclockwise": "Gegen Uhrzeigersinn",
|
||||
"PE.Views.Transitions.textCover": "Bedecken",
|
||||
"PE.Views.Transitions.textFade": "Einblendung",
|
||||
"PE.Views.Transitions.textHorizontalIn": "Horizontal nach innen",
|
||||
"PE.Views.Transitions.textHorizontalOut": "Horizontal nach außen",
|
||||
"PE.Views.Transitions.textLeft": "Links",
|
||||
"PE.Views.Transitions.textNone": "Kein(e)",
|
||||
"PE.Views.Transitions.textPush": "Schieben",
|
||||
"PE.Views.Transitions.textRight": "Rechts",
|
||||
"PE.Views.Transitions.textSmoothly": "Gleitend",
|
||||
"PE.Views.Transitions.textSplit": "Aufteilen",
|
||||
"PE.Views.Transitions.textTop": "Oben",
|
||||
|
@ -1989,8 +2008,11 @@
|
|||
"PE.Views.Transitions.textVerticalIn": "Vertikal nach innen",
|
||||
"PE.Views.Transitions.textVerticalOut": "Vertikal nach außen",
|
||||
"PE.Views.Transitions.textWedge": "Keil",
|
||||
"PE.Views.Transitions.textWipe": "Wischblende",
|
||||
"PE.Views.Transitions.textZoom": "Vergrößern",
|
||||
"PE.Views.Transitions.textZoomIn": "Vergrößern",
|
||||
"PE.Views.Transitions.textZoomOut": "Verkleinern",
|
||||
"PE.Views.Transitions.textZoomRotate": "Vergrößern und drehen",
|
||||
"PE.Views.Transitions.txtApplyToAll": "Auf alle Folien anwenden",
|
||||
"PE.Views.Transitions.txtParameters": "Parameter",
|
||||
"PE.Views.Transitions.txtPreview": "Vorschau",
|
||||
|
|
|
@ -105,6 +105,7 @@
|
|||
"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 por hipervínculos",
|
||||
"Common.Views.AutoCorrectDialog.textHyphens": "Guiones (--) con guión largo (—)",
|
||||
"Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrección matemática",
|
||||
"Common.Views.AutoCorrectDialog.textNumbered": "Listas con numeración automática",
|
||||
|
@ -1279,6 +1280,7 @@
|
|||
"PE.Views.DocumentHolder.txtTop": "Superior",
|
||||
"PE.Views.DocumentHolder.txtUnderbar": "Barra debajo de texto",
|
||||
"PE.Views.DocumentHolder.txtUngroup": "Desagrupar",
|
||||
"PE.Views.DocumentHolder.txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos.<br>¿Está seguro de que quiere continuar?",
|
||||
"PE.Views.DocumentHolder.vertAlignText": "Alineación vertical",
|
||||
"PE.Views.DocumentPreview.goToSlideText": "Ir a diapositiva",
|
||||
"PE.Views.DocumentPreview.slideIndexText": "Diapositiva {0} de {1}",
|
||||
|
|
|
@ -105,6 +105,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBy": "Di",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Elimina",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "In maiuscolo la prima lettera delle frasi",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet e percorsi di rete con i collegamenti ipertestuali",
|
||||
"Common.Views.AutoCorrectDialog.textHyphens": "Trattini (--) con trattino (-)",
|
||||
"Common.Views.AutoCorrectDialog.textMathCorrect": "Correzione automatica matematica",
|
||||
"Common.Views.AutoCorrectDialog.textNumbered": "Elenchi numerati automatici",
|
||||
|
@ -126,6 +127,8 @@
|
|||
"Common.Views.Chat.textSend": "Invia",
|
||||
"Common.Views.Comments.mniAuthorAsc": "Autore dalla A alla Z",
|
||||
"Common.Views.Comments.mniAuthorDesc": "Autore dalla Z alla A",
|
||||
"Common.Views.Comments.mniDateAsc": "Più vecchio",
|
||||
"Common.Views.Comments.mniDateDesc": "Più recente",
|
||||
"Common.Views.Comments.mniPositionAsc": "Dall'alto",
|
||||
"Common.Views.Comments.mniPositionDesc": "Dal basso",
|
||||
"Common.Views.Comments.textAdd": "Aggiungi",
|
||||
|
@ -144,6 +147,7 @@
|
|||
"Common.Views.Comments.textReply": "Rispondi",
|
||||
"Common.Views.Comments.textResolve": "Chiudi",
|
||||
"Common.Views.Comments.textResolved": "Chiuso",
|
||||
"Common.Views.Comments.textSort": "Ordinare commenti",
|
||||
"Common.Views.CopyWarningDialog.textDontShow": "Non mostrare più questo messaggio",
|
||||
"Common.Views.CopyWarningDialog.textMsg": "Le azioni di copia, taglia e incolla utilizzando i pulsanti della barra degli strumenti dell'editor e le azioni del menu di scelta rapida verranno eseguite solo all'interno di questa scheda dell'editor. <br><br>Per copiare o incollare in o da applicazioni esterne alla scheda dell'editor, utilizzare le seguenti combinazioni di tasti:",
|
||||
"Common.Views.CopyWarningDialog.textTitle": "Funzioni copia/taglia/incolla",
|
||||
|
@ -455,10 +459,12 @@
|
|||
"PE.Controllers.Main.textClose": "Chiudi",
|
||||
"PE.Controllers.Main.textCloseTip": "Fai clic per chiudere il consiglio",
|
||||
"PE.Controllers.Main.textContactUs": "Contatta il reparto vendite.",
|
||||
"PE.Controllers.Main.textConvertEquation": "Questa equazione è stata creata in una vecchia versione dell'editor di equazioni che non è più supportata. Per modificarla, devi convertire l'equazione nel formato ML di Office Math.<br>Convertire ora?",
|
||||
"PE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore.<br>Si prega di contattare il nostro reparto vendite per ottenere un preventivo.",
|
||||
"PE.Controllers.Main.textDisconnect": "Connessione persa",
|
||||
"PE.Controllers.Main.textGuest": "Ospite",
|
||||
"PE.Controllers.Main.textHasMacros": "Il file contiene macro automatiche. <br> Vuoi eseguire le macro?",
|
||||
"PE.Controllers.Main.textLearnMore": "Per saperne di più",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Caricamento della presentazione",
|
||||
"PE.Controllers.Main.textLongName": "Si prega di immettere un nome che contenga meno di 128 caratteri.",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto",
|
||||
|
@ -1274,6 +1280,7 @@
|
|||
"PE.Views.DocumentHolder.txtTop": "In alto",
|
||||
"PE.Views.DocumentHolder.txtUnderbar": "Barra sotto al testo",
|
||||
"PE.Views.DocumentHolder.txtUngroup": "Separa",
|
||||
"PE.Views.DocumentHolder.txtWarnUrl": "Cliccare questo link può essere dannoso per il tuo dispositivo e i dati.<br>Sei sicuro di voler continuare?",
|
||||
"PE.Views.DocumentHolder.vertAlignText": "Allineamento verticale",
|
||||
"PE.Views.DocumentPreview.goToSlideText": "Vai alla diapositiva",
|
||||
"PE.Views.DocumentPreview.slideIndexText": "Diapositiva {0} di {1}",
|
||||
|
@ -1894,6 +1901,7 @@
|
|||
"PE.Views.Toolbar.textTabHome": "Home",
|
||||
"PE.Views.Toolbar.textTabInsert": "Inserisci",
|
||||
"PE.Views.Toolbar.textTabProtect": "Protezione",
|
||||
"PE.Views.Toolbar.textTabTransitions": "Transizioni",
|
||||
"PE.Views.Toolbar.textTitleError": "Errore",
|
||||
"PE.Views.Toolbar.textUnderline": "Sottolineato",
|
||||
"PE.Views.Toolbar.tipAddSlide": "Aggiungi diapositiva",
|
||||
|
@ -1975,6 +1983,8 @@
|
|||
"PE.Views.Toolbar.txtUngroup": "Separa",
|
||||
"PE.Views.Transitions.strDelay": "Ritardo",
|
||||
"PE.Views.Transitions.strDuration": "Durata",
|
||||
"PE.Views.Transitions.strStartOnClick": "Inizia al clic del mouse",
|
||||
"PE.Views.Transitions.textBlack": "Attraverso il nero",
|
||||
"PE.Views.Transitions.textBottom": "In basso",
|
||||
"PE.Views.Transitions.textBottomLeft": "In basso a sinistra",
|
||||
"PE.Views.Transitions.textBottomRight": "In basso a destra",
|
||||
|
@ -1983,10 +1993,28 @@
|
|||
"PE.Views.Transitions.textCounterclockwise": "In senso antiorario",
|
||||
"PE.Views.Transitions.textCover": "Copertina",
|
||||
"PE.Views.Transitions.textFade": "Dissolvenza",
|
||||
"PE.Views.Transitions.textHorizontalIn": "Orizzontale dentro",
|
||||
"PE.Views.Transitions.textHorizontalOut": "Orizzontale fuori",
|
||||
"PE.Views.Transitions.textLeft": "Sinistra",
|
||||
"PE.Views.Transitions.textNone": "Nessuno",
|
||||
"PE.Views.Transitions.textPush": "Spinta",
|
||||
"PE.Views.Transitions.textRight": "Destra",
|
||||
"PE.Views.Transitions.textSmoothly": "Agevolmente",
|
||||
"PE.Views.Transitions.textSplit": "Dividere",
|
||||
"PE.Views.Transitions.textTop": "In alto",
|
||||
"PE.Views.Transitions.textTopLeft": "In alto a sinistra",
|
||||
"PE.Views.Transitions.textTopRight": "In alto a destra",
|
||||
"PE.Views.Transitions.textUnCover": "Scoprire",
|
||||
"PE.Views.Transitions.textVerticalIn": "Verticale dentro",
|
||||
"PE.Views.Transitions.textVerticalOut": "Verticale fuori",
|
||||
"PE.Views.Transitions.textWedge": "Cuneo",
|
||||
"PE.Views.Transitions.textWipe": "Pulire",
|
||||
"PE.Views.Transitions.textZoom": "Zoomare",
|
||||
"PE.Views.Transitions.textZoomIn": "Ingrandire",
|
||||
"PE.Views.Transitions.textZoomOut": "Rimpicciolire",
|
||||
"PE.Views.Transitions.textZoomRotate": "Zoomare e Ruotare",
|
||||
"PE.Views.Transitions.txtApplyToAll": "Applicare a tutte le diapositive",
|
||||
"PE.Views.Transitions.txtParameters": "Parametri",
|
||||
"PE.Views.Transitions.txtPreview": "Anteprima",
|
||||
"PE.Views.Transitions.txtSec": "s"
|
||||
}
|
|
@ -345,7 +345,7 @@
|
|||
"Common.Views.SymbolTableDialog.textCopyright": "저작권 표시",
|
||||
"Common.Views.SymbolTableDialog.textDCQuote": "큰 따옴표 닫기",
|
||||
"Common.Views.SymbolTableDialog.textDOQuote": "二重の引用符(左)",
|
||||
"Common.Views.SymbolTableDialog.textEllipsis": "수평 타원",
|
||||
"Common.Views.SymbolTableDialog.textEllipsis": "말줄임표",
|
||||
"Common.Views.SymbolTableDialog.textEmDash": "Em 대시",
|
||||
"Common.Views.SymbolTableDialog.textEmSpace": "Em 공백",
|
||||
"Common.Views.SymbolTableDialog.textEnDash": "En 대시",
|
||||
|
@ -1009,7 +1009,7 @@
|
|||
"PE.Controllers.Toolbar.txtSymbol_bullet": "글 머리 기호 연산자",
|
||||
"PE.Controllers.Toolbar.txtSymbol_cap": "교차점",
|
||||
"PE.Controllers.Toolbar.txtSymbol_cbrt": "큐브 루트",
|
||||
"PE.Controllers.Toolbar.txtSymbol_cdots": "Midline Horizontal Ellipsis",
|
||||
"PE.Controllers.Toolbar.txtSymbol_cdots": "중간 말줄임표",
|
||||
"PE.Controllers.Toolbar.txtSymbol_celsius": "섭씨도",
|
||||
"PE.Controllers.Toolbar.txtSymbol_chi": "Chi",
|
||||
"PE.Controllers.Toolbar.txtSymbol_cong": "대략 같음",
|
||||
|
|
|
@ -746,9 +746,9 @@
|
|||
"PE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.<br>Licența urmează să fie reînnoită iar pagina reîmprospătată.",
|
||||
"PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.<br>Nu aveți acces la funcții de editare a documentului.<br>Contactați administratorul dvs. de rețeea.",
|
||||
"PE.Controllers.Main.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.<br>Funcțiile de editare sunt cu acces limitat.<br>Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.<br>Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.",
|
||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||
"PE.Controllers.Toolbar.confirmAddFontName": "Fonturi pe care doriți să le salvați nu sunt disponibile pe acest dispozitiv.<br>Textul va apărea scris cu fontul și stilul disponibil pe sistem, fontul salvat va fi aplicat de îndată ce devine disponibil.<br>Doriți să continuați?",
|
||||
|
|
|
@ -27,11 +27,11 @@
|
|||
"textMessageDeleteComment": "Möchten Sie diesen Kommentar wirklich löschen?",
|
||||
"textMessageDeleteReply": "Möchten Sie diese Antwort wirklich löschen?",
|
||||
"textNoComments": "Dieses Dokument enthält keine Kommentare",
|
||||
"textOk": "OK",
|
||||
"textReopen": "Wiederöffnen",
|
||||
"textResolve": "Lösen",
|
||||
"textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.",
|
||||
"textUsers": "Benutzer",
|
||||
"textOk": "Ok"
|
||||
"textUsers": "Benutzer"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Benutzerdefinierte Farben",
|
||||
|
|
|
@ -372,7 +372,7 @@
|
|||
"textTopLeft": "Top-Left",
|
||||
"textTopRight": "Top-Right",
|
||||
"textTotalRow": "Total Row",
|
||||
"textTransition": "Transition",
|
||||
"textTransitions": "Transitions",
|
||||
"textType": "Type",
|
||||
"textUnCover": "UnCover",
|
||||
"textVerticalIn": "Vertical In",
|
||||
|
|
|
@ -23,20 +23,20 @@
|
|||
"textEdit": "편집",
|
||||
"textEditComment": "코멘트 편집",
|
||||
"textEditReply": "댓글 편집",
|
||||
"textEditUser": "파일을 편집 중인 사용자:",
|
||||
"textMessageDeleteComment": "정말로 삭제 하시겠습니까",
|
||||
"textMessageDeleteReply": "정말로 삭제 하시겠습니까",
|
||||
"textNoComments": "이 문서에 달린 코멘트가 없습니다",
|
||||
"textOk": "확인",
|
||||
"textReopen": "다시 열기",
|
||||
"textResolve": "해결",
|
||||
"textUsers": "사용자",
|
||||
"textEditUser": "Users who are editing the file:",
|
||||
"textNoComments": "This document doesn't contain comments",
|
||||
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode."
|
||||
"textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.",
|
||||
"textUsers": "사용자"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "사용자 정의 색상",
|
||||
"textStandartColors": "Standard Colors",
|
||||
"textThemeColors": "Theme Colors"
|
||||
"textStandartColors": "표준 색상",
|
||||
"textThemeColors": "테마 색"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
|
@ -63,10 +63,16 @@
|
|||
"advDRMPassword": "비밀번호",
|
||||
"closeButtonText": "파일 닫기",
|
||||
"criticalErrorTitle": "오류",
|
||||
"errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다.<br>관리자에게 문의하십시오.",
|
||||
"errorOpensource": "무료 커뮤니티 버전을 사용하는 경우 열린 파일만 볼 수 있습니다. 모바일 온라인 에디터 기능을 사용하기 위해서는 유료 라이선스가 필요합니다.",
|
||||
"errorProcessSaveResult": "저장하지 못했습니다.",
|
||||
"errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.",
|
||||
"errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.",
|
||||
"leavePageText": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.",
|
||||
"notcriticalErrorTitle": "경고",
|
||||
"SDK": {
|
||||
"Chart": "차트",
|
||||
"Click to add first slide": "첫 슬라이드 추가 클릭",
|
||||
"Click to add notes": "노트를 추가하려면 클릭",
|
||||
"ClipArt": "클립 아트",
|
||||
"Date and time": "날짜 및 시간",
|
||||
|
@ -85,42 +91,36 @@
|
|||
"Slide text": "슬라이드 텍스트",
|
||||
"Slide title": "슬라이드 제목",
|
||||
"Table": "표",
|
||||
"Click to add first slide": "Click to add first slide",
|
||||
"X Axis": "X Axis XAS",
|
||||
"Y Axis": "Y Axis",
|
||||
"Your text here": "Your text here"
|
||||
"X Axis": "X 축 XAS",
|
||||
"Y Axis": "Y 축",
|
||||
"Your text here": "여기에 귀하의 텍스트를 입력하여 주십시오"
|
||||
},
|
||||
"textAnonymous": "익명",
|
||||
"textBuyNow": "웹 사이트 방문",
|
||||
"textClose": "닫기",
|
||||
"textContactUs": "영업 담당자에게 문의",
|
||||
"textCustomLoader": "죄송합니다. 로더를 수정할 권한이 없습니다. 견적을 받으려면 영업 부서에 문의하시기 바랍니다.",
|
||||
"textGuest": "게스트",
|
||||
"textHasMacros": "파일에 자동 매크로가 포함되어 있습니다. <br> 매크로를 실행 하시겠습니까?",
|
||||
"textNo": "아니오",
|
||||
"textNoLicenseTitle": "라이센스 수를 제한했습니다.",
|
||||
"textOpenFile": "파일을 열려면 암호를 입력하십시오.",
|
||||
"textPaidFeature": "유료기능",
|
||||
"textRemember": "선택사항을 저장",
|
||||
"textYes": "확인",
|
||||
"titleLicenseExp": "라이센스 만료",
|
||||
"titleServerVersion": "편집기가 업데이트되었습니다.",
|
||||
"titleUpdateVersion": "버전이 변경되었습니다.",
|
||||
"txtIncorrectPwd": "잘못된 비밀번호",
|
||||
"txtProtected": "암호를 입력하고 파일을 열면 파일의 현재 암호가 재설정됩니다.",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
|
||||
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.",
|
||||
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
|
||||
"textRemember": "Remember my choice",
|
||||
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
|
||||
"warnLicenseExp": "Your license has expired. Please, update it and refresh the page.",
|
||||
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.",
|
||||
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
|
||||
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
|
||||
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"warnProcessRightsChange": "You don't have permission to edit the file."
|
||||
"warnLicenseExceeded": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드에서 엽립니다. 자세한 내용은 관리자에게 연락하십시오.",
|
||||
"warnLicenseExp": "라이센스가 만료되었습니다. 라이선스를 업데이트하고 페이지를 새로고침하세요.",
|
||||
"warnLicenseLimitedNoAccess": "라이센스가 만료되었습니다. 지금은 문서 편집 기능을 사용할 수 없습니다. 관리자에게 문의하시기 바랍니다.",
|
||||
"warnLicenseLimitedRenewed": "라이선스를 업데이트해야 합니다. 문서 편집 기능이 제한됩니다. <br>전체 액세스 권한을 얻으려면 관리자에게 문의하십시오.",
|
||||
"warnLicenseUsersExceeded": "편집자 사용자 한도인 %1명에 도달했습니다. 자세한 내용은 관리자에게 문의하십시오.",
|
||||
"warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.",
|
||||
"warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다. <br> 더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.",
|
||||
"warnProcessRightsChange": "파일을 수정할 수 있는 권한이 없습니다."
|
||||
}
|
||||
},
|
||||
"Error": {
|
||||
|
@ -128,38 +128,38 @@
|
|||
"criticalErrorExtText": "문서 목록으로 돌아가려면 \"확인\" 버튼을 누르십시오.",
|
||||
"criticalErrorTitle": "오류",
|
||||
"downloadErrorText": "다운로드 실패",
|
||||
"errorAccessDeny": "권한이 없는 작업을 수행하려고 합니다. <br>관리자에게 문의하십시오.",
|
||||
"errorBadImageUrl": "이미지 URL이 잘못되었습니다.",
|
||||
"errorConnectToServer": "저장하지 못했습니다. 네트워크 설정을 확인하거나 관리자에게 문의하세요. <br>이 문서는 \"확인\" 버튼을 누르면 다운로드할 수 있습니다.",
|
||||
"errorDatabaseConnection": "외부 오류입니다. <br> 데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.",
|
||||
"errorDataEncrypted": "암호화 변경 사항이 수신되었으며 해독할 수 없습니다.",
|
||||
"errorDataRange": "잘못된 참조 대상 입니다.",
|
||||
"errorDefaultMessage": "오류 코드: %1",
|
||||
"errorEditingDownloadas": "이 문서를 처리하는 동안 오류가 발생했습니다. <br>파일 백업을 로컬에 저장하려면 \"저장\" 옵션을 사용하십시오.",
|
||||
"errorFilePassProtect": "파일이 암호로 보호되어 열 수 없습니다.",
|
||||
"errorFileSizeExceed": "파일 크기가 서버 제한을 초과합니다. <br>관리자에게 문의하십시오.",
|
||||
"errorKeyEncrypt": "알 수없는 키 설명자",
|
||||
"errorKeyExpire": "키가 만료됨",
|
||||
"errorLoadingFont": "글꼴 불러오기에 실패하였습니다.<br>문서 시스템 관리자에게 문의하세요.",
|
||||
"errorSessionAbsolute": "파일 편집 창이 만료되었습니다. 페이지를 새로고침하세요.",
|
||||
"errorSessionIdle": "이 문서는 한동안 수정되지 않았습니다. 페이지를 새로고침하세요.",
|
||||
"errorSessionToken": "서버에 대한 링크가 중단되었습니다. 페이지를 새로고침하세요.",
|
||||
"errorStockChart": "줄의 순서가 잘못되었습니다. 주식형 차트를 생성하려면 <br> 시가, 최고가, 최저가, 종가의 순서로 데이터를 테이블에 배치하십시오.",
|
||||
"errorUpdateVersionOnDisconnect": "네트워크 링크가 복원되었으며 파일 버전이 변경되었습니다. <br>진행하기 전에 파일을 다운로드하거나 파일 내용을 복사하여 손실이 발생하지 않도록 하고 페이지를 새로고침하세요.",
|
||||
"errorUserDrop": "파일에 지금 액세스 할 수 없습니다.",
|
||||
"errorUsersExceed": "요금제에서 허용하는 사용자 수 초과",
|
||||
"errorViewerDisconnect": "네트워크 연결에 실패했습니다. 이 문서는 계속 볼 수 있지만<br>연결이 복원되고 페이지가 새로 고쳐질 때까지 이 문서를 다운로드하거나 인쇄할 수 없습니다.",
|
||||
"notcriticalErrorTitle": "경고",
|
||||
"openErrorText": "파일을 여는 동안 오류가 발생했습니다.",
|
||||
"saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.",
|
||||
"scriptLoadError": "인터넷 속도가 너무 느려 이 페이지의 일부 요소가 로드되지 않습니다. 페이지를 새로고침하세요.",
|
||||
"splitDividerErrorText": "행 수는 % 1의 약수이어야합니다",
|
||||
"splitMaxColsErrorText": "열 수가 % 1보다 작아야합니다",
|
||||
"splitMaxRowsErrorText": "행 수가 % 1보다 작아야합니다",
|
||||
"unknownErrorText": "알 수 없는 오류.",
|
||||
"uploadImageExtMessage": "알 수없는 이미지 형식입니다.",
|
||||
"uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your admin.",
|
||||
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.<br>When you click the 'OK' button, you will be prompted to download the document.",
|
||||
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download' option to save the file backup copy locally.",
|
||||
"errorFilePassProtect": "The file is password protected and could not be opened.",
|
||||
"errorFileSizeExceed": "The file size exceeds your server limitation.<br>Please, contact your admin.",
|
||||
"errorKeyExpire": "Key descriptor expired",
|
||||
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
|
||||
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
|
||||
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
|
||||
"errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"errorUserDrop": "The file cannot be accessed right now.",
|
||||
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
|
||||
"splitDividerErrorText": "The number of rows must be a divisor of %1",
|
||||
"splitMaxColsErrorText": "The number of columns must be less than %1",
|
||||
"splitMaxRowsErrorText": "The number of rows must be less than %1",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
"uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "데이터로드 중 ...",
|
||||
|
@ -193,10 +193,10 @@
|
|||
"waitText": "잠시만 기다려주세요..."
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.",
|
||||
"dlgLeaveTitleText": "응용 프로그램을 종료합니다",
|
||||
"leaveButtonText": "이 페이지에서 나가기",
|
||||
"dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"dlgLeaveTitleText": "You leave the application",
|
||||
"stayButtonText": "Stay on this Page"
|
||||
"stayButtonText": "이 페이지에 보관"
|
||||
},
|
||||
"View": {
|
||||
"Add": {
|
||||
|
@ -209,6 +209,7 @@
|
|||
"textComment": "코멘트",
|
||||
"textDefault": "선택한 텍스트",
|
||||
"textDisplay": "표시",
|
||||
"textEmptyImgUrl": "이미지의 URL을 지정해야 합니다.",
|
||||
"textExternalLink": "외부 링크",
|
||||
"textFirstSlide": "첫 번째 슬라이드",
|
||||
"textImage": "이미지",
|
||||
|
@ -224,17 +225,16 @@
|
|||
"textOther": "기타",
|
||||
"textPictureFromLibrary": "그림 라이브러리에서",
|
||||
"textPictureFromURL": "URL에서 그림",
|
||||
"textPreviousSlide": "이전 슬라이드",
|
||||
"textRows": "행",
|
||||
"textScreenTip": "화면 팁",
|
||||
"textShape": "도형",
|
||||
"textSlide": "슬라이드",
|
||||
"textSlideInThisPresentation": "이 프리젠 테이션에서 슬라이드",
|
||||
"textSlideNumber": "슬라이드 번호",
|
||||
"textTable": "표",
|
||||
"textTableSize": "표 크기",
|
||||
"textEmptyImgUrl": "You need to specify the image URL.",
|
||||
"textPreviousSlide": "Previous Slide",
|
||||
"textScreenTip": "Screen Tip",
|
||||
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
|
||||
"txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다."
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "경고",
|
||||
|
@ -258,6 +258,7 @@
|
|||
"textBandedColumn": "줄무늬 열",
|
||||
"textBandedRow": "줄무늬 행",
|
||||
"textBefore": "이전",
|
||||
"textBlack": "검은 색을 사용",
|
||||
"textBorder": "테두리",
|
||||
"textBottom": "하단",
|
||||
"textBottomLeft": "왼쪽 하단",
|
||||
|
@ -283,13 +284,16 @@
|
|||
"textDistributeVertically": "수직 분포",
|
||||
"textDone": "완료",
|
||||
"textDoubleStrikethrough": "이중 취소 선",
|
||||
"textDuplicateSlide": "슬라이드 복사",
|
||||
"textDuration": "재생 시간",
|
||||
"textEditLink": "링크 편집",
|
||||
"textEffect": "효과",
|
||||
"textEffects": "효과",
|
||||
"textEmptyImgUrl": "이미지의 URL을 지정해야 합니다.",
|
||||
"textExternalLink": "외부 링크",
|
||||
"textFade": "페이드",
|
||||
"textFill": "채우기",
|
||||
"textFinalMessage": "슬라이드 미리보기의 끝입니다. 끝내려면 클릭하십시오.",
|
||||
"textFind": "검색",
|
||||
"textFindAndReplace": "찾기 및 바꾸기",
|
||||
"textFirstColumn": "첫 번째 열",
|
||||
|
@ -321,11 +325,15 @@
|
|||
"textMoveForward": "맨 앞으로 가져오기",
|
||||
"textNextSlide": "다음 슬라이드",
|
||||
"textNone": "없음",
|
||||
"textNoStyles": "이 유형의 테이블에 해당하는 스타일 설정이 없습니다.",
|
||||
"textNoTextFound": "텍스트를 찾을 수 없습니다",
|
||||
"textNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.",
|
||||
"textNumbers": "숫자",
|
||||
"textOpacity": "투명도",
|
||||
"textOptions": "옵션",
|
||||
"textPictureFromLibrary": "그림 라이브러리에서",
|
||||
"textPictureFromURL": "URL에서 그림",
|
||||
"textPreviousSlide": "이전 슬라이드",
|
||||
"textPt": "pt",
|
||||
"textPush": "밀어내기",
|
||||
"textRemoveChart": "차트 제거",
|
||||
|
@ -338,8 +346,10 @@
|
|||
"textReplaceAll": "모두 바꾸기",
|
||||
"textReplaceImage": "이미지 바꾸기",
|
||||
"textRight": "오른쪽",
|
||||
"textScreenTip": "화면 팁",
|
||||
"textSearch": "검색",
|
||||
"textSec": "s",
|
||||
"textSelectObjectToEdit": "편집하기 위해 개체를 선택하십시오",
|
||||
"textSendToBackground": "맨 뒤로 보내기",
|
||||
"textShape": "도형",
|
||||
"textSize": "크기",
|
||||
|
@ -350,6 +360,7 @@
|
|||
"textSmoothly": "부드럽게",
|
||||
"textSplit": "분할",
|
||||
"textStartOnClick": "시작시 클릭",
|
||||
"textStrikethrough": "취소선",
|
||||
"textStyle": "스타일",
|
||||
"textStyleOptions": "스타일 옵션",
|
||||
"textSubscript": "아래 첨자",
|
||||
|
@ -357,34 +368,24 @@
|
|||
"textTable": "표",
|
||||
"textText": "텍스트",
|
||||
"textTheme": "테마",
|
||||
"textTop": "위",
|
||||
"textTopLeft": "왼쪽 위",
|
||||
"textTopRight": "오른쪽 위",
|
||||
"textTotalRow": "합계",
|
||||
"textTransition": "전환",
|
||||
"textType": "유형",
|
||||
"textUnCover": "당기기",
|
||||
"textVerticalIn": "덮기",
|
||||
"textVerticalOut": "수직 출력",
|
||||
"textWedge": "쇄기꼴",
|
||||
"textWipe": "닦아내기",
|
||||
"textZoom": "확대/축소",
|
||||
"textZoomIn": "확대",
|
||||
"textZoomOut": "축소",
|
||||
"textZoomRotate": "확대 / 축소 및 회전",
|
||||
"textBlack": "Through Black",
|
||||
"textDuplicateSlide": "Duplicate Slide",
|
||||
"textEmptyImgUrl": "You need to specify the image URL.",
|
||||
"textFinalMessage": "The end of slide preview. Click to exit.",
|
||||
"textNoStyles": "No styles for this type of chart.",
|
||||
"textNoTextFound": "Text not found",
|
||||
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
|
||||
"textPreviousSlide": "Previous Slide",
|
||||
"textScreenTip": "Screen Tip",
|
||||
"textSelectObjectToEdit": "Select object to edit",
|
||||
"textStrikethrough": "Strikethrough",
|
||||
"textTop": "Top",
|
||||
"textTopLeft": "Top-Left",
|
||||
"textTopRight": "Top-Right",
|
||||
"textTransition": "Transition",
|
||||
"textUnCover": "UnCover",
|
||||
"textVerticalIn": "Vertical In",
|
||||
"textWedge": "Wedge",
|
||||
"textWipe": "Wipe"
|
||||
"textZoomRotate": "확대 / 축소 및 회전"
|
||||
},
|
||||
"Settings": {
|
||||
"mniSlideStandard": "표준 (4 : 3)",
|
||||
"mniSlideWide": "와이드 스크린 (16 : 9)",
|
||||
"textAbout": "정보",
|
||||
"textAddress": "주소 :",
|
||||
|
@ -418,7 +419,9 @@
|
|||
"textLoading": "로딩중...",
|
||||
"textLocation": "위치",
|
||||
"textMacrosSettings": "매크로 설정",
|
||||
"textNoTextFound": "텍스트를 찾을 수 없습니다",
|
||||
"textOwner": "소유자",
|
||||
"textPoint": "Point",
|
||||
"textPoweredBy": "기술 지원",
|
||||
"textPresentationInfo": "프레젠테이션 정보",
|
||||
"textPresentationSettings": "프레젠테이션 설정",
|
||||
|
@ -430,8 +433,10 @@
|
|||
"textSettings": "설정",
|
||||
"textShowNotification": "알림 표시",
|
||||
"textSlideSize": "슬라이드 크기",
|
||||
"textSpellcheck": "맞춤법 검사",
|
||||
"textSubject": "제목",
|
||||
"textTel": "전화:",
|
||||
"textTitle": "제목",
|
||||
"textUnitOfMeasurement": "측정 단위",
|
||||
"textUploaded": "업로드 되었습니다",
|
||||
"textVersion": "버전",
|
||||
|
@ -444,24 +449,19 @@
|
|||
"txtScheme15": "원본",
|
||||
"txtScheme16": "용지",
|
||||
"txtScheme17": "지점",
|
||||
"txtScheme18": "기술",
|
||||
"txtScheme19": "트레킹",
|
||||
"txtScheme2": "그레이스케일",
|
||||
"txtScheme20": "도시",
|
||||
"txtScheme21": "네온",
|
||||
"txtScheme22": "신규 오피스",
|
||||
"txtScheme3": "꼭지점",
|
||||
"txtScheme4": "화면",
|
||||
"txtScheme5": "시민",
|
||||
"txtScheme6": "광장",
|
||||
"txtScheme7": "같음",
|
||||
"txtScheme8": "플로우",
|
||||
"txtScheme9": "발견",
|
||||
"mniSlideStandard": "Standard (4:3)",
|
||||
"textNoTextFound": "Text not found",
|
||||
"textPoint": "Point",
|
||||
"textSpellcheck": "Spell Checking",
|
||||
"textTitle": "Title",
|
||||
"txtScheme18": "Technic",
|
||||
"txtScheme19": "Trek",
|
||||
"txtScheme20": "Urban",
|
||||
"txtScheme21": "Verve",
|
||||
"txtScheme5": "Civic",
|
||||
"txtScheme6": "Concourse"
|
||||
"txtScheme9": "발견"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -117,9 +117,9 @@
|
|||
"warnLicenseExp": "Licența dvs. a expirat. Licența urmează să fie reînnoită iar pagina reîmprospătată.",
|
||||
"warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.",
|
||||
"warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită. Funcțiile de editare sunt cu acces limitat. Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.",
|
||||
"warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.",
|
||||
"warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier."
|
||||
}
|
||||
},
|
||||
|
|
|
@ -34,7 +34,7 @@ const ToolbarView = props => {
|
|||
onEditClick: () => props.openOptions('edit'),
|
||||
onAddClick: () => props.openOptions('add')
|
||||
})}
|
||||
{ Device.phone ? null : <Link className={props.disabledControls && 'disabled'} icon='icon-search' searchbarEnable='.searchbar' href={false}></Link> }
|
||||
{ Device.phone ? null : <Link className={(props.disabledControls || props.disabledPreview) && 'disabled'} icon='icon-search' searchbarEnable='.searchbar' href={false}></Link> }
|
||||
{props.displayCollaboration && window.matchMedia("(min-width: 375px)").matches ? <Link className={props.disabledControls && 'disabled'} id='btn-coauth' href={false} icon='icon-collaboration' onClick={() => props.openOptions('coauth')}></Link> : null}
|
||||
<Link className={(props.disabledSettings || props.disabledControls || isDisconnected) && 'disabled'} id='btn-settings' icon='icon-settings' href={false} onClick={() => props.openOptions('settings')}></Link>
|
||||
</NavRight>
|
||||
|
|
|
@ -149,12 +149,12 @@ const PageReplace = props => {
|
|||
</Navbar>
|
||||
<List>
|
||||
<ListItem title={_t.textPictureFromLibrary} onClick={() => {props.onReplaceByFile()}}>
|
||||
<Icon slot="media" icon="icon-link"></Icon>
|
||||
<Icon slot="media" icon="icon-image-library"></Icon>
|
||||
</ListItem>
|
||||
<ListItem title={_t.textPictureFromURL} link='/edit-image-link/' routeProps={{
|
||||
onReplaceByUrl: props.onReplaceByUrl
|
||||
}}>
|
||||
<Icon slot="media" icon="icon-image-library"></Icon>
|
||||
<Icon slot="media" icon="icon-link"></Icon>
|
||||
</ListItem>
|
||||
</List>
|
||||
</Page>
|
||||
|
|
|
@ -19,7 +19,7 @@ const EditSlide = props => {
|
|||
<ListItem title={_t.textLayout} link="/layout/" routeProps={{
|
||||
onLayoutClick: props.onLayoutClick
|
||||
}}></ListItem>
|
||||
<ListItem title={_t.textTransition} link="/transition/" routeProps={{
|
||||
<ListItem title={t('View.Edit.textTransitions')} link="/transition/" routeProps={{
|
||||
onEffectClick: props.onEffectClick,
|
||||
onEffectTypeClick: props.onEffectTypeClick,
|
||||
changeDuration: props.changeDuration,
|
||||
|
@ -225,7 +225,7 @@ const PageTransition = props => {
|
|||
|
||||
return (
|
||||
<Page className="slide-transition">
|
||||
<Navbar title={_t.textTransition} backLink={_t.textBack}>
|
||||
<Navbar title={t('View.Edit.textTransitions')} backLink={_t.textBack}>
|
||||
{Device.phone &&
|
||||
<NavRight>
|
||||
<Link sheetClose='#edit-sheet'>
|
||||
|
|
|
@ -57,9 +57,12 @@ const routes = [
|
|||
];
|
||||
|
||||
|
||||
const SettingsList = inject("storeAppOptions")(observer(props => {
|
||||
const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer(props => {
|
||||
const { t } = useTranslation();
|
||||
const _t = t('View.Settings', {returnObjects: true});
|
||||
const storeToolbarSettings = props.storeToolbarSettings;
|
||||
const disabledPreview = storeToolbarSettings.countPages <= 0;
|
||||
|
||||
const navbar = <Navbar title={_t.textSettings}>
|
||||
{!props.inPopover && <NavRight><Link popupClose=".settings-popup">{_t.textDone}</Link></NavRight>}
|
||||
</Navbar>;
|
||||
|
@ -121,7 +124,7 @@ const SettingsList = inject("storeAppOptions")(observer(props => {
|
|||
{navbar}
|
||||
<List>
|
||||
{!props.inPopover &&
|
||||
<ListItem disabled={appOptions.readerMode ? true : false} title={!_isEdit ? _t.textFind : _t.textFindAndReplace} link="#" searchbarEnable='.searchbar' onClick={closeModal} className='no-indicator'>
|
||||
<ListItem disabled={appOptions.readerMode || disabledPreview ? true : false} title={!_isEdit ? _t.textFind : _t.textFindAndReplace} link="#" searchbarEnable='.searchbar' onClick={closeModal} className='no-indicator'>
|
||||
<Icon slot="media" icon="icon-search"></Icon>
|
||||
</ListItem>
|
||||
}
|
||||
|
@ -141,7 +144,7 @@ const SettingsList = inject("storeAppOptions")(observer(props => {
|
|||
<ListItem title={_t.textDownload} link="#" onClick={onoptionclick.bind(this, '/download/')}>
|
||||
<Icon slot="media" icon="icon-download"></Icon>
|
||||
</ListItem>
|
||||
<ListItem title={_t.textPrint} onClick={onPrint}>
|
||||
<ListItem className={disabledPreview && 'disabled'} title={_t.textPrint} onClick={onPrint}>
|
||||
<Icon slot="media" icon="icon-print"></Icon>
|
||||
</ListItem>
|
||||
<ListItem title={_t.textPresentationInfo} link="#" onClick={onoptionclick.bind(this, "/presentation-info/")}>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "Zkopírovat do schránky",
|
||||
"common.view.modals.txtEmbed": "Vestavěný",
|
||||
"common.view.modals.txtEmbed": "Vestavět",
|
||||
"common.view.modals.txtHeight": "Výška",
|
||||
"common.view.modals.txtShare": "Odkaz pro sdílení",
|
||||
"common.view.modals.txtWidth": "Šířka",
|
||||
|
@ -13,8 +13,8 @@
|
|||
"SSE.ApplicationController.errorDefaultMessage": "Kód chyby: %1",
|
||||
"SSE.ApplicationController.errorFilePassProtect": "Soubor je chráněn heslem a bez něj ho nelze otevřít.",
|
||||
"SSE.ApplicationController.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.<br>Ohledně podrobností se obraťte na správce dokumentového serveru.",
|
||||
"SSE.ApplicationController.errorForceSave": "Při ukládání souboru došlo k chybě. Prosím použijte 'Stáhnout jako' k uložení souboru na harddisk Vašeho počítače, nebo opakujte volbu později.",
|
||||
"SSE.ApplicationController.errorLoadingFont": "Styly nejsou načteny.<br>Prosím kontaktujte Vašeho administrátora dokumentových serverů.",
|
||||
"SSE.ApplicationController.errorForceSave": "Při ukládání souboru došlo k chybě. Prosím použijte „Stáhnout jako“ a uložte si soubor k sobě na počítač nebo původní volbu zkuste znovu později.",
|
||||
"SSE.ApplicationController.errorLoadingFont": "Písma nejsou načtená.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
||||
"SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.<br>Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.",
|
||||
"SSE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
||||
"SSE.ApplicationController.notcriticalErrorTitle": "Varování",
|
||||
|
@ -28,7 +28,7 @@
|
|||
"SSE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.",
|
||||
"SSE.ApplicationController.waitText": "Čekejte prosím…",
|
||||
"SSE.ApplicationView.txtDownload": "Stáhnout",
|
||||
"SSE.ApplicationView.txtEmbed": "Vestavěný",
|
||||
"SSE.ApplicationView.txtEmbed": "Vestavět",
|
||||
"SSE.ApplicationView.txtFileLocation": "Otevřít umístění souboru",
|
||||
"SSE.ApplicationView.txtFullScreen": "Na celou obrazovku",
|
||||
"SSE.ApplicationView.txtPrint": "Tisk",
|
||||
|
|
|
@ -306,7 +306,7 @@ define([
|
|||
me.header.mnuitemHideHeadings.hide();
|
||||
me.header.mnuitemHideGridlines.hide();
|
||||
me.header.mnuitemFreezePanes.hide();
|
||||
menu.items[5].hide();
|
||||
menu.items[6].hide();
|
||||
if (!config.canViewComments) { // show advanced settings for editing and commenting mode
|
||||
// mnuitemAdvSettings.hide();
|
||||
// menu.items[9].hide();
|
||||
|
|
|
@ -320,11 +320,11 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template',
|
|||
fontColor: preset[0],
|
||||
fillColor: preset[1],
|
||||
borderColor: preset[2],
|
||||
styleObj: {'background-color': preset[1] ? '#' + preset[1] : 'transparent', color: preset[0] ? '#' + preset[0] : 'transparent', border: preset[2] ? '1px solid #' + preset[2] : '', 'text-align': 'center' }
|
||||
styleObj: {'background-color': preset[1] ? '#' + preset[1] : '#ffffff', color: preset[0] ? '#' + preset[0] : 'transparent', border: preset[2] ? '1px solid #' + preset[2] : '', 'text-align': 'center' }
|
||||
},
|
||||
caption: preset[0] ? Common.define.conditionalData.exampleText : '',
|
||||
template: presetTemplate,
|
||||
styleStr: 'background-color: ' + (preset[1] ? '#' + preset[1] : 'transparent') + ';color:' + (preset[0] ? '#' + preset[0] : 'transparent') + ';' + (preset[2] ? 'border: 1px solid #' + preset[2] + ';' : '' + 'text-align: center;')
|
||||
styleStr: 'background-color: ' + (preset[1] ? '#' + preset[1] : '#ffffff') + ';color:' + (preset[0] ? '#' + preset[0] : 'transparent') + ';' + (preset[2] ? 'border: 1px solid #' + preset[2] + ';' : '' + 'text-align: center;')
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
@ -513,7 +513,8 @@ define([
|
|||
setMode: function(mode) {
|
||||
this.mode = _.extend({}, this.mode, mode);
|
||||
// this.$el.find('.el-edit')[mode.isEdit?'show':'hide']();
|
||||
this.btnAddWorksheet.setVisible(this.mode.isEdit);
|
||||
//this.btnAddWorksheet.setVisible(this.mode.isEdit);
|
||||
$('#status-addtabs-box')[this.mode.isEdit ? 'show' : 'hide']();
|
||||
this.btnAddWorksheet.setDisabled(this.mode.isDisconnected || this.api && (this.api.asc_isWorkbookLocked() || this.api.isCellEdited) || this.rangeSelectionMode!=Asc.c_oAscSelectionDialogType.None);
|
||||
this.updateTabbarBorders();
|
||||
},
|
||||
|
@ -600,7 +601,11 @@ define([
|
|||
this.tabbar.setTabVisible(sindex);
|
||||
|
||||
this.btnAddWorksheet.setDisabled(me.mode.isDisconnected || me.api.asc_isWorkbookLocked() || me.api.asc_isProtectedWorkbook() || me.api.isCellEdited);
|
||||
this.tabbar.addDataHint(_.findIndex(items, function (item) { return item.sheetindex === sindex; }));
|
||||
if (this.mode.isEdit) {
|
||||
this.tabbar.addDataHint(_.findIndex(items, function (item) {
|
||||
return item.sheetindex === sindex;
|
||||
}));
|
||||
}
|
||||
|
||||
$('#status-label-zoom').text(Common.Utils.String.format(this.zoomText, Math.floor((this.api.asc_getZoom() +.005)*100)));
|
||||
|
||||
|
@ -687,7 +692,9 @@ define([
|
|||
this.tabbar.setTabVisible(index);
|
||||
}
|
||||
|
||||
this.tabbar.addDataHint(index);
|
||||
if (this.mode.isEdit) {
|
||||
this.tabbar.addDataHint(index);
|
||||
}
|
||||
|
||||
this.fireEvent('sheet:changed', [this, tab.sheetindex]);
|
||||
this.fireEvent('sheet:updateColors', [true]);
|
||||
|
|
|
@ -917,10 +917,10 @@ define([
|
|||
if (menu.cmpEl) {
|
||||
var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent();
|
||||
var itemMargin = /*parseInt($(itemEl.get(0)).parent().css('margin-right'))*/-1;
|
||||
Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = itemMargin + 1/Common.Utils.applicationPixelRatio());
|
||||
var itemWidth = itemEl.is(':visible') ? parseInt(itemEl.css('width')) :
|
||||
(cmp.itemWidth + parseInt(itemEl.css('padding-left')) + parseInt(itemEl.css('padding-right')) +
|
||||
parseInt(itemEl.css('border-left-width')) + parseInt(itemEl.css('border-right-width')));
|
||||
Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = -1/Common.Utils.applicationPixelRatio());
|
||||
var itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) :
|
||||
(cmp.itemWidth + parseFloat(itemEl.css('padding-left')) + parseFloat(itemEl.css('padding-right')) +
|
||||
parseFloat(itemEl.css('border-left-width')) + parseFloat(itemEl.css('border-right-width')));
|
||||
|
||||
var minCount = cmp.menuPicker.store.length >= minMenuColumn ? minMenuColumn : cmp.menuPicker.store.length,
|
||||
columnCount = Math.min(cmp.menuPicker.store.length, Math.round($('.dataview', $(cmp.fieldPicker.el)).width() / (itemMargin + itemWidth) + 0.5));
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -2,6 +2,7 @@
|
|||
"cancelButtonText": "Abbrechen",
|
||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Achtung",
|
||||
"Common.Controllers.Chat.textEnterMessage": "Geben Sie Ihre Nachricht hier ein",
|
||||
"Common.Controllers.History.notcriticalErrorTitle": "Warnung",
|
||||
"Common.define.chartData.textArea": "Fläche",
|
||||
"Common.define.chartData.textAreaStacked": "Gestapelte Fläche",
|
||||
"Common.define.chartData.textAreaStackedPer": "100% Gestapelte Fläche",
|
||||
|
@ -102,6 +103,8 @@
|
|||
"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.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"Common.UI.ComboBorderSize.txtNoBorders": "Keine Rahmen",
|
||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Keine Formate",
|
||||
|
@ -171,6 +174,12 @@
|
|||
"Common.Views.AutoCorrectDialog.warnReset": "Von Ihnen hinzugefügte Autokorrekturen werden entfernt und von Ihnen geänderte Autokorrekturen werden auf die Ursprungswerte zurückgesetzt. Möchten Sie fortfahren?",
|
||||
"Common.Views.AutoCorrectDialog.warnRestore": "Der Autokorrektur-Eintrag für %1 wird zurückgestellt. Möchten Sie fortsetzen?",
|
||||
"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.mniPositionAsc": "Von oben",
|
||||
"Common.Views.Comments.mniPositionDesc": "Von unten",
|
||||
"Common.Views.Comments.textAdd": "Hinzufügen",
|
||||
"Common.Views.Comments.textAddComment": "Hinzufügen",
|
||||
"Common.Views.Comments.textAddCommentToDoc": "Kommentar zum Dokument hinzufügen",
|
||||
|
@ -178,6 +187,7 @@
|
|||
"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.textComments": "Kommentare",
|
||||
"Common.Views.Comments.textEdit": "OK",
|
||||
"Common.Views.Comments.textEnterCommentHint": "Geben Sie Ihren Kommentar hier ein",
|
||||
|
@ -186,6 +196,7 @@
|
|||
"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.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.<br><br> Für Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:",
|
||||
"Common.Views.CopyWarningDialog.textTitle": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"",
|
||||
|
@ -221,6 +232,13 @@
|
|||
"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": "Verlauf schließen",
|
||||
"Common.Views.History.textHide": "Reduzieren",
|
||||
"Common.Views.History.textHideAll": "Wesentliche Änderungen verbergen",
|
||||
"Common.Views.History.textRestore": "Wiederherstellen",
|
||||
"Common.Views.History.textShow": "Erweitern",
|
||||
"Common.Views.History.textShowAll": "Wesentliche Änderungen anzeigen",
|
||||
"Common.Views.History.textVer": "Vers.",
|
||||
"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\" enthalten",
|
||||
|
@ -515,6 +533,7 @@
|
|||
"SSE.Controllers.DocumentHolder.txtLimitChange": "Grenzwerten ändern ",
|
||||
"SSE.Controllers.DocumentHolder.txtLimitOver": "Grenzen über dem Text",
|
||||
"SSE.Controllers.DocumentHolder.txtLimitUnder": "Grenzen unter dem Text",
|
||||
"SSE.Controllers.DocumentHolder.txtLockSort": "Neben dem ausgewählten Bereich wurde Daten gefunden, aber Sie haben keine Berechtigung, diese Zelle zu verändern.<br>Möchten Sie mit dem ausgewählten Bereich weiter arbeiten?",
|
||||
"SSE.Controllers.DocumentHolder.txtMatchBrackets": "Eckige Klammern an Argumenthöhe anpassen",
|
||||
"SSE.Controllers.DocumentHolder.txtMatrixAlign": "Matrixausrichtung",
|
||||
"SSE.Controllers.DocumentHolder.txtNoChoices": "Es gibt keine Möglichkeit zum Füllung der Zelle.<br>Nur die Textwerte aus der Spalte kann für den Ersatz gewählt werden. ",
|
||||
|
@ -567,6 +586,7 @@
|
|||
"SSE.Controllers.DocumentHolder.txtUnderbar": "Linie unter dem Text ",
|
||||
"SSE.Controllers.DocumentHolder.txtUndoExpansion": "Automatische Erweiterung der Tabelle rückgängig machen",
|
||||
"SSE.Controllers.DocumentHolder.txtUseTextImport": "Text Import-Assistenten verwenden",
|
||||
"SSE.Controllers.DocumentHolder.txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?",
|
||||
"SSE.Controllers.DocumentHolder.txtWidth": "Breite",
|
||||
"SSE.Controllers.FormulaDialog.sCategoryAll": "Alle",
|
||||
"SSE.Controllers.FormulaDialog.sCategoryCube": "Cube",
|
||||
|
@ -586,6 +606,7 @@
|
|||
"SSE.Controllers.LeftMenu.textByRows": "Zeilenweise",
|
||||
"SSE.Controllers.LeftMenu.textFormulas": "Formeln",
|
||||
"SSE.Controllers.LeftMenu.textItemEntireCell": "Gesamter Zellinhalt",
|
||||
"SSE.Controllers.LeftMenu.textLoadHistory": "Versionshistorie wird geladen...",
|
||||
"SSE.Controllers.LeftMenu.textLookin": "Suchen in",
|
||||
"SSE.Controllers.LeftMenu.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.",
|
||||
"SSE.Controllers.LeftMenu.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.",
|
||||
|
@ -618,6 +639,7 @@
|
|||
"SSE.Controllers.Main.errorCannotUngroup": "Gruppierung kann nicht aufgehoben werden. Um eine Gliederung zu erstellen, wählen Sie Zeilen oder Spalten aus und gruppieren Sie diese.",
|
||||
"SSE.Controllers.Main.errorChangeArray": "Sie können einen Teil eines Arrays nicht ändern.",
|
||||
"SSE.Controllers.Main.errorChangeFilteredRange": "Hierdurch wird ein gefilterter Bereich in Ihrem Arbeitsblatt geändert.<br> Um diesen Vorgang abzuschließen, entfernen Sie bitte die AutoFilter.",
|
||||
"SSE.Controllers.Main.errorChangeOnProtectedSheet": "Die Zelle oder das Diagramm, die Sie bearbeiten möchten, ist in der geschützten Liste.<br>Entschützen Sie die Liste, um Änderungen vorzunehmen. Das Passwort kann erforderlich sein.",
|
||||
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.",
|
||||
"SSE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.",
|
||||
"SSE.Controllers.Main.errorCopyMultiselectArea": "Bei einer Markierung von nicht angrenzenden Zellen ist die Ausführung dieses Befehls nicht möglich.<br>Wählen Sie nur einen einzelnen Bereich aus, und versuchen Sie es noch mal.",
|
||||
|
@ -629,6 +651,8 @@
|
|||
"SSE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
||||
"SSE.Controllers.Main.errorDataValidate": "Der eingegebene Wert ist ungültig.<br>Die Werte, die in diese Zelle eingegeben werden können, sind begrenzt.",
|
||||
"SSE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1",
|
||||
"SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Sie versuchen, eine Spalte mit einer gesperrten Zelle zu löschen. Gesperrte Zellen können in geschützten Listen nicht gelöscht werden.<br>Um eine gesperrte Zelle zu löschen, entschützen Sie die Liste. Das Passwort kann erforderlich sein.",
|
||||
"SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Sie versuchen, eine Zeile mit einer gesperrten Zelle zu löschen. Gesperrte Zellen können in geschützten Listen nicht gelöscht werden.<br>Um eine gesperrte Zelle zu löschen, entschützen Sie die Liste. Das Passwort kann erforderlich sein.",
|
||||
"SSE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. <br> Verwenden Sie die Option 'Herunterladen als ...', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
|
||||
"SSE.Controllers.Main.errorEditingSaveas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. <br> Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
|
||||
"SSE.Controllers.Main.errorEditView": "Die aktuelle Tabellenansicht sind schreibgeschützt und die neuen können nicht erstellt werden, weil manche Ansichten bearbeitet werden.",
|
||||
|
@ -663,6 +687,7 @@
|
|||
"SSE.Controllers.Main.errorNoDataToParse": "Es wurden keine Daten zur Analyse markiert.",
|
||||
"SSE.Controllers.Main.errorOpenWarning": "Die Länge einer der Formeln in der Datei hat<br>die zugelassene Anzahl von Zeichen überschritten und sie wurde entfernt.",
|
||||
"SSE.Controllers.Main.errorOperandExpected": "Die Syntax der eingegeben Funktion ist nicht korrekt. Bitte überprüfen Sie, ob eine der Klammern - '(' oder ')' fehlt.",
|
||||
"SSE.Controllers.Main.errorPasswordIsNotCorrect": "Das eingegebene Kennwort ist ungültig.<br>Stellen Sie sicher, dass die FESTSTELLTASTE nicht aktiviert ist und dass Sie die korrekte Groß-/Kleinschreibung verwenden.",
|
||||
"SSE.Controllers.Main.errorPasteMaxRange": "Zeilen Kopieren und Einfügen stimmen nicht überein.<br>Bitte wählen Sie einen Bereich der gleichen Größe oder klicken auf die erste Zelle der Zeile, um die kopierten Zellen einzufügen.",
|
||||
"SSE.Controllers.Main.errorPasteMultiSelect": "Dies kann nicht mit einer Mehrfachauswahl ausgeführt werden.<br>Wählen Sie nur einen einzelnen Bereich aus und versuchen Sie es noch mal.",
|
||||
"SSE.Controllers.Main.errorPasteSlicerError": "Datenschnitte können aus einer Arbeitsmappe in die andere nicht verschoben werden.",
|
||||
|
@ -688,6 +713,7 @@
|
|||
"SSE.Controllers.Main.errorViewerDisconnect": "Die Verbindung ist unterbrochen. Man kann das Dokument weiterhin anschauen.<br>Es ist aber momentan nicht möglich, es herunterzuladen oder zu drucken bis die Verbindung wiederhergestellt <br>und die Seite neu geladen wird.",
|
||||
"SSE.Controllers.Main.errorWrongBracketsCount": "Die eingegebene Formel enthält einen Fehler.<br>Falsche Anzahl an Klammern wurde genutzt.",
|
||||
"SSE.Controllers.Main.errorWrongOperator": "Die eingegebene Formel enthält einen Fehler. Falscher Operator wurde genutzt.<br>Bitte korrigieren Sie den Fehler.",
|
||||
"SSE.Controllers.Main.errorWrongPassword": "Inkorrektes Passwort.",
|
||||
"SSE.Controllers.Main.errRemDuplicates": "Duplizierte Werte gefunden und gelöscht: {0}, Werte geblieben: {1}.",
|
||||
"SSE.Controllers.Main.leavePageText": "In dieser Kalkulationstabelle gibt es nicht gespeicherte Änderungen. Klicken Sie auf 'Auf dieser Seite bleiben' und dann auf 'Speichern', um sie zu speichern. Klicken Sie auf 'Diese Seite verlassen', um alle nicht gespeicherten Änderungen zu verwerfen.",
|
||||
"SSE.Controllers.Main.leavePageTextOnClose": "Alle ungespeicherten Änderungen in dieser Tabellenkalkulation werden verloren.<br> 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. ",
|
||||
|
@ -718,16 +744,22 @@
|
|||
"SSE.Controllers.Main.saveTitleText": "Speichern der Kalkulationstabelle",
|
||||
"SSE.Controllers.Main.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.",
|
||||
"SSE.Controllers.Main.textAnonymous": "Anonym",
|
||||
"SSE.Controllers.Main.textApplyAll": "Für alle Gleichungen verwenden",
|
||||
"SSE.Controllers.Main.textBuyNow": "Webseite besuchen",
|
||||
"SSE.Controllers.Main.textChangesSaved": "Alle Änderungen wurden gespeichert",
|
||||
"SSE.Controllers.Main.textClose": "Schließen",
|
||||
"SSE.Controllers.Main.textCloseTip": "Klicken Sie, um den Tipp zu schließen",
|
||||
"SSE.Controllers.Main.textConfirm": "Bestätigung",
|
||||
"SSE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
|
||||
"SSE.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. <br>Jetzt konvertieren?",
|
||||
"SSE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||
"SSE.Controllers.Main.textDisconnect": "Verbindung wurde unterbrochen",
|
||||
"SSE.Controllers.Main.textGuest": "Gast",
|
||||
"SSE.Controllers.Main.textHasMacros": "Die Datei beinhaltet automatische Makros.<br>Möchten Sie Makros ausführen?",
|
||||
"SSE.Controllers.Main.textLearnMore": "Mehr erfahren",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Tabelle wird geladen",
|
||||
"SSE.Controllers.Main.textLongName": "Der Name einer Tabellenansicht darf maximal 128 Zeichen lang sein.",
|
||||
"SSE.Controllers.Main.textNeedSynchronize": "Updates verfügbar",
|
||||
"SSE.Controllers.Main.textNo": "Nein",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
||||
|
@ -761,6 +793,7 @@
|
|||
"SSE.Controllers.Main.txtDays": "Tage",
|
||||
"SSE.Controllers.Main.txtDiagramTitle": "Diagrammtitel",
|
||||
"SSE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus einschalten...",
|
||||
"SSE.Controllers.Main.txtErrorLoadHistory": "Laden der Historie ist fehlgeschlagen ",
|
||||
"SSE.Controllers.Main.txtFiguredArrows": "Geformte Pfeile",
|
||||
"SSE.Controllers.Main.txtFile": "Datei",
|
||||
"SSE.Controllers.Main.txtGrandTotal": "Gesamtsumme",
|
||||
|
@ -980,6 +1013,10 @@
|
|||
"SSE.Controllers.Main.txtTab": "Registerkarte",
|
||||
"SSE.Controllers.Main.txtTable": "Tabelle",
|
||||
"SSE.Controllers.Main.txtTime": "Uhrzeit",
|
||||
"SSE.Controllers.Main.txtUnlock": "Entsperren",
|
||||
"SSE.Controllers.Main.txtUnlockRange": "Bereich aufsperren",
|
||||
"SSE.Controllers.Main.txtUnlockRangeDescription": "Zur Bearbeitung dieses Bereichs bitte Kennwort eingeben:",
|
||||
"SSE.Controllers.Main.txtUnlockRangeWarning": "Ein Bereich, den Sie zu bearbeiten versuchen, ist durch ein Kennwort geschützt.",
|
||||
"SSE.Controllers.Main.txtValues": "Werte",
|
||||
"SSE.Controllers.Main.txtXAxis": "x-Achse",
|
||||
"SSE.Controllers.Main.txtYAxis": "y-Achse",
|
||||
|
@ -1227,6 +1264,7 @@
|
|||
"SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithmus",
|
||||
"SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximal",
|
||||
"SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimal",
|
||||
"SSE.Controllers.Toolbar.txtLockSort": "Neben dem ausgewählten Bereich wurde Daten gefunden, aber Sie haben keine Berechtigung, diese Zelle zu verändern.<br>Möchten Sie mit dem ausgewählten Bereich weiter arbeiten?",
|
||||
"SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Leere Matrix",
|
||||
"SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Leere Matrix",
|
||||
"SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Leere Matrix",
|
||||
|
@ -1960,6 +1998,7 @@
|
|||
"SSE.Views.FileMenu.btnCreateNewCaption": "Neue erstellen",
|
||||
"SSE.Views.FileMenu.btnDownloadCaption": "Herunterladen als...",
|
||||
"SSE.Views.FileMenu.btnHelpCaption": "Hilfe...",
|
||||
"SSE.Views.FileMenu.btnHistoryCaption": "Versionshistorie",
|
||||
"SSE.Views.FileMenu.btnInfoCaption": "Tabelleninfo...",
|
||||
"SSE.Views.FileMenu.btnPrintCaption": "Drucken",
|
||||
"SSE.Views.FileMenu.btnProtectCaption": "Schützen",
|
||||
|
@ -1972,6 +2011,8 @@
|
|||
"SSE.Views.FileMenu.btnSaveCopyAsCaption": "Kopie speichern als...",
|
||||
"SSE.Views.FileMenu.btnSettingsCaption": "Erweiterte Einstellungen...",
|
||||
"SSE.Views.FileMenu.btnToEditCaption": "Tabelle bearbeiten",
|
||||
"SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Leere Tabellenkalkulation",
|
||||
"SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Neu erstellen",
|
||||
"SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Anwenden",
|
||||
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Autor hinzufügen",
|
||||
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Text hinzufügen",
|
||||
|
@ -2055,7 +2096,8 @@
|
|||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Niederländisch",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polnisch",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punkt",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugiesisch",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugiesisch (Brasilien)",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugiesisch (Portugal)",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Rumänisch",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russisch",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "alle aktivieren",
|
||||
|
@ -2677,6 +2719,56 @@
|
|||
"SSE.Views.PrintTitlesDialog.textSelectRange": "Bereich auswählen",
|
||||
"SSE.Views.PrintTitlesDialog.textTitle": "Drucke Titel",
|
||||
"SSE.Views.PrintTitlesDialog.textTop": "wiederhole Zeilen am Anfang",
|
||||
"SSE.Views.ProtectDialog.textExistName": "FEHLER! Es gibt schon einen Bereich mit diesem Titel",
|
||||
"SSE.Views.ProtectDialog.textInvalidName": "Der Bereich soll mit einem Buchstaben anfangen und soll nur Buchstaben, Zahlen und Lücken beinhalten.",
|
||||
"SSE.Views.ProtectDialog.textInvalidRange": "FEHLER! Ungültiger Zellenbereich",
|
||||
"SSE.Views.ProtectDialog.textSelectData": "Daten auswählen",
|
||||
"SSE.Views.ProtectDialog.txtAllow": "Alle Benutzer dieser Arbeitsblätter können",
|
||||
"SSE.Views.ProtectDialog.txtAutofilter": "AutoFilter verwenden",
|
||||
"SSE.Views.ProtectDialog.txtDelCols": "Spalten löschen",
|
||||
"SSE.Views.ProtectDialog.txtDelRows": "Zeilen löschen",
|
||||
"SSE.Views.ProtectDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||
"SSE.Views.ProtectDialog.txtFormatCells": "Zellen formatieren",
|
||||
"SSE.Views.ProtectDialog.txtFormatCols": "Spalten formatieren",
|
||||
"SSE.Views.ProtectDialog.txtFormatRows": "Zeilen formatieren",
|
||||
"SSE.Views.ProtectDialog.txtIncorrectPwd": "Bestätigungseingabe ist nicht identisch",
|
||||
"SSE.Views.ProtectDialog.txtInsCols": "Spalten einfügen",
|
||||
"SSE.Views.ProtectDialog.txtInsHyper": "Hyperlink einfügen",
|
||||
"SSE.Views.ProtectDialog.txtInsRows": "Zeilen einfügen",
|
||||
"SSE.Views.ProtectDialog.txtObjs": "Objekte bearbeiten",
|
||||
"SSE.Views.ProtectDialog.txtOptional": "optional",
|
||||
"SSE.Views.ProtectDialog.txtPassword": "Passwort",
|
||||
"SSE.Views.ProtectDialog.txtPivot": "PivotTable und PivotChart verwenden",
|
||||
"SSE.Views.ProtectDialog.txtProtect": "Schützen",
|
||||
"SSE.Views.ProtectDialog.txtRange": "Bereich",
|
||||
"SSE.Views.ProtectDialog.txtRangeName": "Titel",
|
||||
"SSE.Views.ProtectDialog.txtRepeat": "Kennwort wiederholen",
|
||||
"SSE.Views.ProtectDialog.txtScen": "Szenarien bearbeiten",
|
||||
"SSE.Views.ProtectDialog.txtSelLocked": "Gesperrte Zellen auswählen",
|
||||
"SSE.Views.ProtectDialog.txtSelUnLocked": "Aufgesperrte Zellen auswählen",
|
||||
"SSE.Views.ProtectDialog.txtSheetDescription": "Unerwünschte Änderungen durch andere Personen verhindern, indem deren Bearbeitungsmöglichkeiten eingeschränkt werden.",
|
||||
"SSE.Views.ProtectDialog.txtSheetTitle": "Blatt schützen",
|
||||
"SSE.Views.ProtectDialog.txtSort": "Sortieren",
|
||||
"SSE.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.",
|
||||
"SSE.Views.ProtectDialog.txtWBDescription": "Um den Benutzern das Öffnen von ausgeblendeten Arbeitsblättern, Hinzufügen, Verschieben oder Ausblenden und Umbenennen von Arbeitsblättern zu verbieten, schützen Sie die Arbeitsmappenstruktur mit einem Passwort.",
|
||||
"SSE.Views.ProtectDialog.txtWBTitle": "Arbeitsmappenstruktur schützen",
|
||||
"SSE.Views.ProtectRangesDlg.guestText": "Gast",
|
||||
"SSE.Views.ProtectRangesDlg.textDelete": "Löschen",
|
||||
"SSE.Views.ProtectRangesDlg.textEdit": "Bearbeiten",
|
||||
"SSE.Views.ProtectRangesDlg.textEmpty": "Keine Bereiche für Bearbeitung gefunden.",
|
||||
"SSE.Views.ProtectRangesDlg.textNew": "Neu",
|
||||
"SSE.Views.ProtectRangesDlg.textProtect": "Blatt schützen",
|
||||
"SSE.Views.ProtectRangesDlg.textPwd": "Passwort",
|
||||
"SSE.Views.ProtectRangesDlg.textRange": "Bereich",
|
||||
"SSE.Views.ProtectRangesDlg.textRangesDesc": "Bereiche, für die ein Kennwort die Sperre aufhebt (nur für gesperrte Zellen)",
|
||||
"SSE.Views.ProtectRangesDlg.textTitle": "Titel",
|
||||
"SSE.Views.ProtectRangesDlg.tipIsLocked": "Das Element wird gerade von einem anderen Benutzer bearbeitet.",
|
||||
"SSE.Views.ProtectRangesDlg.txtEditRange": "Bereich bearbeiten",
|
||||
"SSE.Views.ProtectRangesDlg.txtNewRange": "Neuer Bereich",
|
||||
"SSE.Views.ProtectRangesDlg.txtNo": "Nein",
|
||||
"SSE.Views.ProtectRangesDlg.txtTitle": "Den Benutzern Bearbeitung der Bereiche erlauben",
|
||||
"SSE.Views.ProtectRangesDlg.txtYes": "Ja",
|
||||
"SSE.Views.ProtectRangesDlg.warnDelete": "Möchten Sie den Namen {0} wirklich löschen?",
|
||||
"SSE.Views.RemoveDuplicatesDialog.textColumns": "Spalten",
|
||||
"SSE.Views.RemoveDuplicatesDialog.textDescription": "Wählen Sie zum Löschen doppelter Werte mindestens eine Spalte aus, die doppelte Werte enthält.",
|
||||
"SSE.Views.RemoveDuplicatesDialog.textHeaders": "Meine Daten haben Kopfzeilen",
|
||||
|
@ -2980,13 +3072,17 @@
|
|||
"SSE.Views.Statusbar.itemMaximum": "Maximum",
|
||||
"SSE.Views.Statusbar.itemMinimum": "Minimum",
|
||||
"SSE.Views.Statusbar.itemMove": "Verschieben",
|
||||
"SSE.Views.Statusbar.itemProtect": "Schützen",
|
||||
"SSE.Views.Statusbar.itemRename": "Umbenennen",
|
||||
"SSE.Views.Statusbar.itemStatus": "Status der Speicherung",
|
||||
"SSE.Views.Statusbar.itemSum": "Summe",
|
||||
"SSE.Views.Statusbar.itemTabColor": "Farbe des Tabulators",
|
||||
"SSE.Views.Statusbar.itemUnProtect": "Entschützen",
|
||||
"SSE.Views.Statusbar.RenameDialog.errNameExists": "Das Arbeitsblatt mit demselben Namen ist bereits vorhanden.",
|
||||
"SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Der Blattname kann die folgenden Zeichen nicht enthalten: \\/*?[]:",
|
||||
"SSE.Views.Statusbar.RenameDialog.labelSheetName": "Blattname",
|
||||
"SSE.Views.Statusbar.selectAllSheets": "Alle Blätter auswählen ",
|
||||
"SSE.Views.Statusbar.sheetIndexText": "Liste {0} von {1}",
|
||||
"SSE.Views.Statusbar.textAverage": "Mittelwert",
|
||||
"SSE.Views.Statusbar.textCount": "Anzahl",
|
||||
"SSE.Views.Statusbar.textMax": "Max",
|
||||
|
@ -3422,5 +3518,19 @@
|
|||
"SSE.Views.ViewTab.tipClose": "Tabellenansicht schließen",
|
||||
"SSE.Views.ViewTab.tipCreate": "Tabellenansicht erstellen",
|
||||
"SSE.Views.ViewTab.tipFreeze": "Fensterausschnitt fixieren",
|
||||
"SSE.Views.ViewTab.tipSheetView": "Tabellenansicht"
|
||||
"SSE.Views.ViewTab.tipSheetView": "Tabellenansicht",
|
||||
"SSE.Views.WBProtection.hintAllowRanges": "Bearbeitung der Bereiche erlauben",
|
||||
"SSE.Views.WBProtection.hintProtectSheet": "Blatt schützen",
|
||||
"SSE.Views.WBProtection.hintProtectWB": "Arbeitsmappe schützen",
|
||||
"SSE.Views.WBProtection.txtAllowRanges": "Bearbeitung der Bereiche erlauben",
|
||||
"SSE.Views.WBProtection.txtHiddenFormula": "Ausgeblendete Formeln",
|
||||
"SSE.Views.WBProtection.txtLockedCell": "Gesperrte Zelle",
|
||||
"SSE.Views.WBProtection.txtLockedShape": "Gesperrte Form",
|
||||
"SSE.Views.WBProtection.txtLockedText": "Text sperren",
|
||||
"SSE.Views.WBProtection.txtProtectSheet": "Blatt schützen",
|
||||
"SSE.Views.WBProtection.txtProtectWB": "Arbeitsmappe schützen",
|
||||
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Zum Entschützen der Tabellenkalkulation bitte Kennwort eingeben",
|
||||
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Liste entschützen",
|
||||
"SSE.Views.WBProtection.txtWBUnlockDescription": "Zum Entschützen der Arbeitsmappe bitte Kennwort eingeben",
|
||||
"SSE.Views.WBProtection.txtWBUnlockTitle": "Arbeitsmappe entschützen"
|
||||
}
|
|
@ -213,7 +213,7 @@
|
|||
"Common.Views.Header.textBack": "Abrir ubicación del archivo",
|
||||
"Common.Views.Header.textCompactView": "Esconder barra de herramientas",
|
||||
"Common.Views.Header.textHideLines": "Ocultar reglas",
|
||||
"Common.Views.Header.textHideStatusBar": "Ocultar barra de estado",
|
||||
"Common.Views.Header.textHideStatusBar": "Combinar las barras de hoja y de estado",
|
||||
"Common.Views.Header.textRemoveFavorite": "Eliminar de Favoritos",
|
||||
"Common.Views.Header.textSaveBegin": "Guardando...",
|
||||
"Common.Views.Header.textSaveChanged": "Modificado",
|
||||
|
@ -586,6 +586,7 @@
|
|||
"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": "Usar el Asistente para importar texto",
|
||||
"SSE.Controllers.DocumentHolder.txtWarnUrl": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos.<br>¿Está seguro de que quiere continuar?",
|
||||
"SSE.Controllers.DocumentHolder.txtWidth": "Ancho",
|
||||
"SSE.Controllers.FormulaDialog.sCategoryAll": "Todo",
|
||||
"SSE.Controllers.FormulaDialog.sCategoryCube": "Cubo",
|
||||
|
@ -2096,7 +2097,7 @@
|
|||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polaco",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punto",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugués (Brasil)",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugués",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugués (Portugal)",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Rumano",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ruso",
|
||||
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Habilitar todo",
|
||||
|
|
|
@ -102,6 +102,8 @@
|
|||
"Common.Translation.warnFileLocked": "Il file è in fase di modifica in un'altra applicazione. Puoi continuare a modificarlo e salvarlo come copia.",
|
||||
"Common.Translation.warnFileLockedBtnEdit": "Crea una copia",
|
||||
"Common.Translation.warnFileLockedBtnView": "Aperto per la visualizzazione",
|
||||
"Common.UI.ButtonColored.textAutoColor": "Automatico",
|
||||
"Common.UI.ButtonColored.textNewColor": "Aggiungere un nuovo colore personalizzato",
|
||||
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
|
||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
||||
|
@ -171,6 +173,8 @@
|
|||
"Common.Views.AutoCorrectDialog.warnReset": "Tutte le correzioni automatiche aggiunte verranno rimosse e quelle modificate verranno ripristinate ai valori originali. Vuoi continuare?",
|
||||
"Common.Views.AutoCorrectDialog.warnRestore": "La voce di correzione automatica per %1 verrà reimpostata al suo valore originale. Vuoi continuare?",
|
||||
"Common.Views.Chat.textSend": "Invia",
|
||||
"Common.Views.Comments.mniAuthorAsc": "Autore dalla A alla Z",
|
||||
"Common.Views.Comments.mniAuthorDesc": "Autore dalla Z alla A",
|
||||
"Common.Views.Comments.textAdd": "Aggiungi",
|
||||
"Common.Views.Comments.textAddComment": "Aggiungi commento",
|
||||
"Common.Views.Comments.textAddCommentToDoc": "Aggiungi commento al documento",
|
||||
|
@ -178,6 +182,7 @@
|
|||
"Common.Views.Comments.textAnonym": "Ospite",
|
||||
"Common.Views.Comments.textCancel": "Annulla",
|
||||
"Common.Views.Comments.textClose": "Chiudi",
|
||||
"Common.Views.Comments.textClosePanel": "Chiudere commenti",
|
||||
"Common.Views.Comments.textComments": "Commenti",
|
||||
"Common.Views.Comments.textEdit": "OK",
|
||||
"Common.Views.Comments.textEnterCommentHint": "Inserisci il commento qui",
|
||||
|
@ -221,6 +226,8 @@
|
|||
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
|
||||
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
|
||||
"Common.Views.Header.txtRename": "Rinomina",
|
||||
"Common.Views.History.textCloseHistory": "Chiudere cronologia",
|
||||
"Common.Views.History.textHide": "Ridurre",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Incolla URL immagine:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Campo obbligatorio",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"",
|
||||
|
@ -567,6 +574,7 @@
|
|||
"SSE.Controllers.DocumentHolder.txtUnderbar": "Barra sotto al testo",
|
||||
"SSE.Controllers.DocumentHolder.txtUndoExpansion": "Annulla l'espansione automatica della tabella",
|
||||
"SSE.Controllers.DocumentHolder.txtUseTextImport": "Usa la procedura guidata di importazione del testo",
|
||||
"SSE.Controllers.DocumentHolder.txtWarnUrl": "Cliccare questo link può essere dannoso per il tuo dispositivo e i dati.<br>Sei sicuro di voler continuare?",
|
||||
"SSE.Controllers.DocumentHolder.txtWidth": "Larghezza",
|
||||
"SSE.Controllers.FormulaDialog.sCategoryAll": "Tutti",
|
||||
"SSE.Controllers.FormulaDialog.sCategoryCube": "Cubo",
|
||||
|
@ -718,12 +726,15 @@
|
|||
"SSE.Controllers.Main.saveTitleText": "Salvataggio del foglio di calcolo",
|
||||
"SSE.Controllers.Main.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
||||
"SSE.Controllers.Main.textAnonymous": "Anonimo",
|
||||
"SSE.Controllers.Main.textApplyAll": "Applicare a tutte le equazioni",
|
||||
"SSE.Controllers.Main.textBuyNow": "Visita il sito web",
|
||||
"SSE.Controllers.Main.textChangesSaved": "Tutte le modifiche sono state salvate",
|
||||
"SSE.Controllers.Main.textClose": "Chiudi",
|
||||
"SSE.Controllers.Main.textCloseTip": "Fai clic per chiudere il consiglio",
|
||||
"SSE.Controllers.Main.textConfirm": "Conferma",
|
||||
"SSE.Controllers.Main.textContactUs": "Contatta il reparto vendite.",
|
||||
"SSE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore.<br>Si prega di contattare il nostro reparto vendite per ottenere un preventivo.",
|
||||
"SSE.Controllers.Main.textDisconnect": "La connessione è stata persa",
|
||||
"SSE.Controllers.Main.textGuest": "Ospite",
|
||||
"SSE.Controllers.Main.textHasMacros": "Il file contiene macro automatiche. <br> Vuoi eseguire le macro?",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Caricamento del foglio di calcolo",
|
||||
|
@ -980,6 +991,7 @@
|
|||
"SSE.Controllers.Main.txtTab": "Scheda",
|
||||
"SSE.Controllers.Main.txtTable": "Tabella",
|
||||
"SSE.Controllers.Main.txtTime": "Ora",
|
||||
"SSE.Controllers.Main.txtUnlockRangeWarning": "L'intervallo che cerchi di cambiare è protetto con password.",
|
||||
"SSE.Controllers.Main.txtValues": "Valori",
|
||||
"SSE.Controllers.Main.txtXAxis": "Asse X",
|
||||
"SSE.Controllers.Main.txtYAxis": "Asse Y",
|
||||
|
@ -1972,6 +1984,8 @@
|
|||
"SSE.Views.FileMenu.btnSaveCopyAsCaption": "Salva copia come...",
|
||||
"SSE.Views.FileMenu.btnSettingsCaption": "Impostazioni avanzate...",
|
||||
"SSE.Views.FileMenu.btnToEditCaption": "Modifica foglio di calcolo",
|
||||
"SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Folio di calcolo vuoto",
|
||||
"SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Creare nuovo",
|
||||
"SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Applica",
|
||||
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Aggiungi Autore",
|
||||
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Aggiungi testo",
|
||||
|
@ -2677,6 +2691,10 @@
|
|||
"SSE.Views.PrintTitlesDialog.textSelectRange": "Seleziona intervallo",
|
||||
"SSE.Views.PrintTitlesDialog.textTitle": "Stampa titoli",
|
||||
"SSE.Views.PrintTitlesDialog.textTop": "Ripeti righe in alto",
|
||||
"SSE.Views.ProtectDialog.txtAllow": "Permettere a tutti gli utenti del foglio di",
|
||||
"SSE.Views.ProtectDialog.txtIncorrectPwd": "La password di conferma non corrisponde",
|
||||
"SSE.Views.ProtectRangesDlg.txtTitle": "Permettere agli utenti di cambiare gli intervalli",
|
||||
"SSE.Views.ProtectRangesDlg.warnDelete": "Sei sicuro che vuoi eliminare il nome {0}?",
|
||||
"SSE.Views.RemoveDuplicatesDialog.textColumns": "Colonne",
|
||||
"SSE.Views.RemoveDuplicatesDialog.textDescription": "Per eliminare i valori duplicati, selezionare una o più colonne che contengono duplicati.",
|
||||
"SSE.Views.RemoveDuplicatesDialog.textHeaders": "I miei dati hanno intestazioni",
|
||||
|
@ -3422,5 +3440,7 @@
|
|||
"SSE.Views.ViewTab.tipClose": "Chiudi visualizzazione foglio",
|
||||
"SSE.Views.ViewTab.tipCreate": "Crea vista del foglio",
|
||||
"SSE.Views.ViewTab.tipFreeze": "Blocca riquadri",
|
||||
"SSE.Views.ViewTab.tipSheetView": "Visualizzazione foglio"
|
||||
"SSE.Views.ViewTab.tipSheetView": "Visualizzazione foglio",
|
||||
"SSE.Views.WBProtection.hintAllowRanges": "Permettere di cambiare gli intervalli",
|
||||
"SSE.Views.WBProtection.txtAllowRanges": "Permettere di cambiare gli intervalli"
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -1038,9 +1038,9 @@
|
|||
"SSE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.<br>Licența urmează să fie reînnoită iar pagina reîmprospătată.",
|
||||
"SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.<br>Nu aveți acces la funcții de editare a documentului.<br>Contactați administratorul dvs. de rețeea.",
|
||||
"SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.<br>Funcțiile de editare sunt cu acces limitat.<br>Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %1 editoare. Pentru detalii, contactați administratorul dvs.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.<br>Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori ai %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.",
|
||||
"SSE.Controllers.Print.strAllSheets": "Toate foile",
|
||||
"SSE.Controllers.Print.textFirstCol": "Prima coloană",
|
||||
|
|
|
@ -4,12 +4,16 @@
|
|||
"Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu",
|
||||
"Common.define.chartData.textArea": "Plošný graf",
|
||||
"Common.define.chartData.textBar": "Pruhový graf",
|
||||
"Common.define.chartData.textBarNormal3dPerspective": "3D stĺpec",
|
||||
"Common.define.chartData.textCharts": "Grafy",
|
||||
"Common.define.chartData.textColumn": "Stĺpec",
|
||||
"Common.define.chartData.textColumnSpark": "Stĺpec",
|
||||
"Common.define.chartData.textHBarStacked3d": "3-D zoskupená lišta",
|
||||
"Common.define.chartData.textLine": "Čiara/líniový graf",
|
||||
"Common.define.chartData.textLine3d": "3-D línia",
|
||||
"Common.define.chartData.textLineSpark": "Čiara",
|
||||
"Common.define.chartData.textPie": "Koláčový graf",
|
||||
"Common.define.chartData.textPie3d": "3-D koláč",
|
||||
"Common.define.chartData.textPoint": "Bodový graf",
|
||||
"Common.define.chartData.textSparks": "Sparklines",
|
||||
"Common.define.chartData.textStock": "Akcie/burzový graf",
|
||||
|
@ -531,6 +535,7 @@
|
|||
"SSE.Controllers.Main.txtFile": "Súbor",
|
||||
"SSE.Controllers.Main.txtLines": "Čiary",
|
||||
"SSE.Controllers.Main.txtMath": "Matematika",
|
||||
"SSE.Controllers.Main.txtOr": "%1 alebo %2",
|
||||
"SSE.Controllers.Main.txtPage": "Stránka",
|
||||
"SSE.Controllers.Main.txtPageOf": "Stránka %1 z %2",
|
||||
"SSE.Controllers.Main.txtPages": "Strany",
|
||||
|
@ -1444,6 +1449,8 @@
|
|||
"SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy",
|
||||
"SSE.Views.FileMenuPanels.Settings.txtGeneral": "Všeobecné",
|
||||
"SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Nastavenie stránky",
|
||||
"SSE.Views.FormatRulesEditDlg.text2Scales": "2 Farebná škála",
|
||||
"SSE.Views.FormatRulesEditDlg.text3Scales": "3 farebná škála",
|
||||
"SSE.Views.FormatSettingsDialog.textCategory": "Kategória",
|
||||
"SSE.Views.FormatSettingsDialog.textDecimal": "Desatinné číslo/desatinný",
|
||||
"SSE.Views.FormatSettingsDialog.textFormat": "Formát",
|
||||
|
@ -1887,6 +1894,7 @@
|
|||
"SSE.Views.SlicerSettingsAdvanced.textSort": "Zoradiť",
|
||||
"SSE.Views.SlicerSettingsAdvanced.textZA": "Z po A",
|
||||
"SSE.Views.SortDialog.errorEmpty": "Všetky kritériá triedenia musia mať špecifikovaný stĺpec alebo riadok.",
|
||||
"SSE.Views.SortDialog.errorSameColumnColor": "%1 sa triedi podľa rovnakej farby viac než jeden raz.<br>Vymažte duplicitné kritériá triedenia a skúste znova. ",
|
||||
"SSE.Views.SortDialog.textAdd": "Pridať úroveň",
|
||||
"SSE.Views.SortDialog.textAsc": "Vzostupne",
|
||||
"SSE.Views.SortDialog.textAuto": "Automaticky",
|
||||
|
|
|
@ -224,7 +224,8 @@
|
|||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator."
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -224,7 +224,8 @@
|
|||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator."
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -224,7 +224,8 @@
|
|||
"unknownErrorText": "Error desconegut.",
|
||||
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
||||
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB."
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "S'estant carregant les dades...",
|
||||
|
|
|
@ -224,7 +224,8 @@
|
|||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator."
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -27,11 +27,11 @@
|
|||
"textMessageDeleteComment": "Möchten Sie diesen Kommentar wirklich löschen?",
|
||||
"textMessageDeleteReply": "Möchten Sie diese Antwort wirklich löschen?",
|
||||
"textNoComments": "Dieses Dokument enthält keine Kommentare",
|
||||
"textOk": "OK",
|
||||
"textReopen": "Wiederöffnen",
|
||||
"textResolve": "Lösen",
|
||||
"textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.",
|
||||
"textUsers": "Benutzer",
|
||||
"textOk": "Ok"
|
||||
"textUsers": "Benutzer"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Benutzerdefinierte Farben",
|
||||
|
@ -224,7 +224,8 @@
|
|||
"unknownErrorText": "Unbekannter Fehler.",
|
||||
"uploadImageExtMessage": "Unbekanntes Bildformat.",
|
||||
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
|
||||
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten."
|
||||
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Daten werden geladen...",
|
||||
|
@ -335,12 +336,12 @@
|
|||
"textSortAndFilter": "Sortieren und Filtern",
|
||||
"txtExpand": "Erweitern und sortieren",
|
||||
"txtExpandSort": "Die Daten neben der Auswahl werden nicht sortiert. Möchten Sie die Auswahl um die angrenzenden Daten erweitern oder nur mit der Sortierung der aktuell ausgewählten Zellen fortfahren?",
|
||||
"txtLockSort": "Neben dem ausgewählten Bereich wurde Daten gefunden, aber Sie haben keine Berechtigung, diese Zelle zu verändern.<br>Möchten Sie mit dem ausgewählten Bereich weiter arbeiten?",
|
||||
"txtNo": "Nein",
|
||||
"txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.",
|
||||
"txtSorting": "Sortierung",
|
||||
"txtSortSelected": "Ausgewählte sortieren",
|
||||
"txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.<br>Do you wish to continue with the current selection?",
|
||||
"txtNo": "No",
|
||||
"txtYes": "Yes"
|
||||
"txtYes": "Ja"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warnung",
|
||||
|
@ -540,6 +541,9 @@
|
|||
"textByRows": "Nach Zeilen",
|
||||
"textCancel": "Abbrechen",
|
||||
"textCentimeter": "Zentimeter",
|
||||
"textChooseCsvOptions": "CSV-Optionen auswählen",
|
||||
"textChooseDelimeter": "Trennzeichen auswählen",
|
||||
"textChooseEncoding": "Codierung auswählen",
|
||||
"textCollaboration": "Zusammenarbeit",
|
||||
"textColorSchemes": "Farbschemata",
|
||||
"textComment": "Kommentar",
|
||||
|
@ -547,6 +551,7 @@
|
|||
"textComments": "Kommentare",
|
||||
"textCreated": "Erstellt",
|
||||
"textCustomSize": "Benutzerdefinierte Größe",
|
||||
"textDelimeter": "Trennzeichen",
|
||||
"textDisableAll": "Alle deaktivieren",
|
||||
"textDisableAllMacrosWithNotification": "Alle Makros mit einer Benachrichtigung deaktivieren",
|
||||
"textDisableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung deaktivieren",
|
||||
|
@ -556,6 +561,7 @@
|
|||
"textEmail": "E-Mail",
|
||||
"textEnableAll": "Alle aktivieren",
|
||||
"textEnableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung aktivieren",
|
||||
"textEncoding": "Codierung ",
|
||||
"textExample": "Beispiel",
|
||||
"textFind": "Suche",
|
||||
"textFindAndReplace": "Suchen und ersetzen",
|
||||
|
@ -612,9 +618,13 @@
|
|||
"textValues": "Werte",
|
||||
"textVersion": "Version",
|
||||
"textWorkbook": "Arbeitsmappe",
|
||||
"txtColon": "Doppelpunkt",
|
||||
"txtComma": "Komma",
|
||||
"txtDelimiter": "Trennzeichen",
|
||||
"txtDownloadCsv": "CSV herunterladen",
|
||||
"txtEncoding": "Codierung ",
|
||||
"txtIncorrectPwd": "Passwort ist falsch",
|
||||
"txtOk": "OK",
|
||||
"txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt",
|
||||
"txtScheme1": "Office",
|
||||
"txtScheme10": "Median",
|
||||
|
@ -638,19 +648,10 @@
|
|||
"txtScheme7": "Kapital",
|
||||
"txtScheme8": "Fluss",
|
||||
"txtScheme9": "Gießerei",
|
||||
"txtSemicolon": "Semikolon",
|
||||
"txtSpace": "Leerzeichen",
|
||||
"txtTab": "Tab",
|
||||
"warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.<br>Möchten Sie wirklich fortsetzen?",
|
||||
"textChooseCsvOptions": "Choose CSV Options",
|
||||
"textChooseDelimeter": "Choose Delimeter",
|
||||
"textChooseEncoding": "Choose Encoding",
|
||||
"textDelimeter": "Delimiter",
|
||||
"textEncoding": "Encoding",
|
||||
"txtColon": "Colon",
|
||||
"txtComma": "Comma",
|
||||
"txtDownloadCsv": "Download CSV",
|
||||
"txtOk": "Ok",
|
||||
"txtSemicolon": "Semicolon"
|
||||
"warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.<br>Möchten Sie wirklich fortsetzen?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -224,7 +224,8 @@
|
|||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator."
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -169,6 +169,7 @@
|
|||
"errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.<br>Please, unhide the filtered elements and try again.",
|
||||
"errorBadImageUrl": "Image url is incorrect",
|
||||
"errorChangeArray": "You cannot change part of an array.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.",
|
||||
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.<br>When you click the 'OK' button, you will be prompted to download the document.",
|
||||
"errorCopyMultiselectArea": "This command cannot be used with multiple selections.<br>Select a single range and try again.",
|
||||
"errorCountArg": "An error in the formula.<br>Invalid number of arguments.",
|
||||
|
@ -224,8 +225,7 @@
|
|||
"unknownErrorText": "Unknown error.",
|
||||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
|
|
|
@ -224,7 +224,8 @@
|
|||
"unknownErrorText": "Error desconocido.",
|
||||
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB."
|
||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Cargando datos...",
|
||||
|
|
|
@ -224,7 +224,8 @@
|
|||
"unknownErrorText": "Erreur inconnue.",
|
||||
"uploadImageExtMessage": "Format d'image inconnu.",
|
||||
"uploadImageFileCountMessage": "Aucune image chargée.",
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.",
|
||||
"errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Chargement des données en cours...",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue