Merge branch 'release/v7.2.0' into develop
This commit is contained in:
commit
3dcf0f6f4f
|
@ -226,7 +226,7 @@
|
||||||
background: data-uri('../../../../common/main/resources/img/header/dark-logo_s.svg') no-repeat;
|
background: data-uri('../../../../common/main/resources/img/header/dark-logo_s.svg') no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark {
|
.theme-type-dark {
|
||||||
.brand-logo {
|
.brand-logo {
|
||||||
background: data-uri('../../../../common/main/resources/img/header/header-logo_s.svg') no-repeat;
|
background: data-uri('../../../../common/main/resources/img/header/header-logo_s.svg') no-repeat;
|
||||||
}
|
}
|
||||||
|
@ -432,7 +432,7 @@
|
||||||
@icon-width: 20px;
|
@icon-width: 20px;
|
||||||
@icon-height: 20px;
|
@icon-height: 20px;
|
||||||
|
|
||||||
.theme-dark {
|
.theme-type-dark {
|
||||||
@neg-value: -@icon-height;
|
@neg-value: -@icon-height;
|
||||||
--icon-normal-top: @neg-value;
|
--icon-normal-top: @neg-value;
|
||||||
}
|
}
|
||||||
|
|
|
@ -291,9 +291,13 @@ define([
|
||||||
'modal:show': _onModalDialog.bind(this, 'open'),
|
'modal:show': _onModalDialog.bind(this, 'open'),
|
||||||
'modal:close': _onModalDialog.bind(this, 'close'),
|
'modal:close': _onModalDialog.bind(this, 'close'),
|
||||||
'uitheme:changed' : function (name) {
|
'uitheme:changed' : function (name) {
|
||||||
|
if (Common.localStorage.getBool('ui-theme-use-system', false)) {
|
||||||
|
native.execCommand("uitheme:changed", JSON.stringify({name:'theme-system'}));
|
||||||
|
} else {
|
||||||
var theme = Common.UI.Themes.get(name);
|
var theme = Common.UI.Themes.get(name);
|
||||||
if ( theme )
|
if ( theme )
|
||||||
native.execCommand("uitheme:changed", JSON.stringify({name:name, type:theme.type}));
|
native.execCommand("uitheme:changed", JSON.stringify({name:name, type:theme.type}));
|
||||||
|
}
|
||||||
},
|
},
|
||||||
'hints:show': _onHintsShow.bind(this),
|
'hints:show': _onHintsShow.bind(this),
|
||||||
});
|
});
|
||||||
|
|
|
@ -199,13 +199,16 @@ define([
|
||||||
if (this.oleEditorView) {
|
if (this.oleEditorView) {
|
||||||
if (eventData.type == 'documentReady') {
|
if (eventData.type == 'documentReady') {
|
||||||
this.oleEditorView._isExternalDocReady = true;
|
this.oleEditorView._isExternalDocReady = true;
|
||||||
this.oleEditorView.setControlsDisabled(false);
|
|
||||||
this.isExternalEditorVisible && (isAppFirstOpened = false);
|
this.isExternalEditorVisible && (isAppFirstOpened = false);
|
||||||
this.oleEditorView._oleData && this.setOleData();
|
this.oleEditorView._oleData && this.setOleData();
|
||||||
if (this.needDisableEditing) {
|
if (this.needDisableEditing) {
|
||||||
this.onOleEditingDisabled();
|
this.onOleEditingDisabled();
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
if (eventData.type == 'oleEditorReady') {
|
||||||
|
if (this.needDisableEditing===undefined)
|
||||||
|
this.oleEditorView.setControlsDisabled(false);
|
||||||
|
} else
|
||||||
if (eventData.type == "shortcut") {
|
if (eventData.type == "shortcut") {
|
||||||
if (eventData.data.key == 'escape')
|
if (eventData.data.key == 'escape')
|
||||||
this.oleEditorView.hide();
|
this.oleEditorView.hide();
|
||||||
|
|
|
@ -162,6 +162,8 @@ define([
|
||||||
this.api.asc_registerCallback("asc_onPluginMouseMove", _.bind(this.onPluginMouseMove, this));
|
this.api.asc_registerCallback("asc_onPluginMouseMove", _.bind(this.onPluginMouseMove, this));
|
||||||
this.api.asc_registerCallback('asc_onPluginsReset', _.bind(this.resetPluginsList, this));
|
this.api.asc_registerCallback('asc_onPluginsReset', _.bind(this.resetPluginsList, this));
|
||||||
this.api.asc_registerCallback('asc_onPluginsInit', _.bind(this.onPluginsInit, this));
|
this.api.asc_registerCallback('asc_onPluginsInit', _.bind(this.onPluginsInit, this));
|
||||||
|
this.api.asc_registerCallback('asc_onPluginShowButton', _.bind(this.onPluginShowButton, this));
|
||||||
|
this.api.asc_registerCallback('asc_onPluginHideButton', _.bind(this.onPluginHideButton, this));
|
||||||
|
|
||||||
this.loadPlugins();
|
this.loadPlugins();
|
||||||
}
|
}
|
||||||
|
@ -381,6 +383,7 @@ define([
|
||||||
buttons: isCustomWindow ? undefined : newBtns,
|
buttons: isCustomWindow ? undefined : newBtns,
|
||||||
toolcallback: _.bind(this.onToolClose, this),
|
toolcallback: _.bind(this.onToolClose, this),
|
||||||
help: !!help,
|
help: !!help,
|
||||||
|
loader: plugin.get_Loader(),
|
||||||
modal: isModal!==undefined ? isModal : true
|
modal: isModal!==undefined ? isModal : true
|
||||||
});
|
});
|
||||||
me.pluginDlg.on({
|
me.pluginDlg.on({
|
||||||
|
@ -399,6 +402,9 @@ define([
|
||||||
},
|
},
|
||||||
'help': function(){
|
'help': function(){
|
||||||
help && window.open(help, '_blank');
|
help && window.open(help, '_blank');
|
||||||
|
},
|
||||||
|
'header:click': function(type){
|
||||||
|
me.api.asc_pluginButtonClick(type);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -458,6 +464,14 @@ define([
|
||||||
this.parsePlugins(pluginsdata)
|
this.parsePlugins(pluginsdata)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onPluginShowButton: function(id) {
|
||||||
|
this.pluginDlg && this.pluginDlg.showButton(id);
|
||||||
|
},
|
||||||
|
|
||||||
|
onPluginHideButton: function(id) {
|
||||||
|
this.pluginDlg && this.pluginDlg.hideButton(id);
|
||||||
|
},
|
||||||
|
|
||||||
runAutoStartPlugins: function() {
|
runAutoStartPlugins: function() {
|
||||||
if (this.autostart && this.autostart.length > 0) {
|
if (this.autostart && this.autostart.length > 0) {
|
||||||
this.api.asc_pluginRun(this.autostart.shift(), 0, '');
|
this.api.asc_pluginRun(this.autostart.shift(), 0, '');
|
||||||
|
|
|
@ -302,7 +302,9 @@ define([
|
||||||
$(window).on('storage', function (e) {
|
$(window).on('storage', function (e) {
|
||||||
if ( e.key == 'ui-theme' || e.key == 'ui-theme-id' ) {
|
if ( e.key == 'ui-theme' || e.key == 'ui-theme-id' ) {
|
||||||
if ( !!e.originalEvent.newValue ) {
|
if ( !!e.originalEvent.newValue ) {
|
||||||
me.setTheme(e.originalEvent.newValue, true);
|
if (Common.localStorage.getBool('ui-theme-use-system', false)) {
|
||||||
|
me.setTheme('theme-system');
|
||||||
|
} else me.setTheme(e.originalEvent.newValue, true);
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
if ( e.key == 'content-theme' ) {
|
if ( e.key == 'content-theme' ) {
|
||||||
|
|
|
@ -65,6 +65,7 @@ if ( window.desktop ) {
|
||||||
if ( theme.id == 'theme-system' ) {
|
if ( theme.id == 'theme-system' ) {
|
||||||
localStorage.setItem("ui-theme-use-system", "1");
|
localStorage.setItem("ui-theme-use-system", "1");
|
||||||
localStorage.removeItem("ui-theme-id");
|
localStorage.removeItem("ui-theme-id");
|
||||||
|
delete params.uitheme;
|
||||||
} else {
|
} else {
|
||||||
localStorage.setItem("ui-theme-id", theme.id);
|
localStorage.setItem("ui-theme-id", theme.id);
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,6 +77,7 @@ define([
|
||||||
_options.tpl = _.template(this.template)(_options);
|
_options.tpl = _.template(this.template)(_options);
|
||||||
|
|
||||||
this.url = options.url || '';
|
this.url = options.url || '';
|
||||||
|
this.loader = (options.loader!==undefined) ? options.loader : true;
|
||||||
this.frameId = options.frameId || 'plugin_iframe';
|
this.frameId = options.frameId || 'plugin_iframe';
|
||||||
Common.UI.Window.prototype.initialize.call(this, _options);
|
Common.UI.Window.prototype.initialize.call(this, _options);
|
||||||
},
|
},
|
||||||
|
@ -90,6 +91,8 @@ define([
|
||||||
if (!this.options.header) this._headerFooterHeight -= 34;
|
if (!this.options.header) this._headerFooterHeight -= 34;
|
||||||
this._headerFooterHeight += ((parseInt(this.$window.css('border-top-width')) + parseInt(this.$window.css('border-bottom-width'))));
|
this._headerFooterHeight += ((parseInt(this.$window.css('border-top-width')) + parseInt(this.$window.css('border-bottom-width'))));
|
||||||
|
|
||||||
|
this.$window.find('.header').prepend($('<div class="tools left hidden"></div>'));
|
||||||
|
|
||||||
var iframe = document.createElement("iframe");
|
var iframe = document.createElement("iframe");
|
||||||
iframe.id = this.frameId;
|
iframe.id = this.frameId;
|
||||||
iframe.name = 'pluginFrameEditor';
|
iframe.name = 'pluginFrameEditor';
|
||||||
|
@ -102,6 +105,7 @@ define([
|
||||||
iframe.onload = _.bind(this._onLoad,this);
|
iframe.onload = _.bind(this._onLoad,this);
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
|
if (this.loader) {
|
||||||
setTimeout(function(){
|
setTimeout(function(){
|
||||||
if (me.isLoaded) return;
|
if (me.isLoaded) return;
|
||||||
me.loadMask = new Common.UI.LoadMask({owner: $('#id-plugin-placeholder')});
|
me.loadMask = new Common.UI.LoadMask({owner: $('#id-plugin-placeholder')});
|
||||||
|
@ -109,6 +113,7 @@ define([
|
||||||
me.loadMask.show();
|
me.loadMask.show();
|
||||||
if (me.isLoaded) me.loadMask.hide();
|
if (me.isLoaded) me.loadMask.hide();
|
||||||
}, 500);
|
}, 500);
|
||||||
|
}
|
||||||
|
|
||||||
iframe.src = this.url;
|
iframe.src = this.url;
|
||||||
$('#id-plugin-placeholder').append(iframe);
|
$('#id-plugin-placeholder').append(iframe);
|
||||||
|
@ -180,6 +185,32 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
showButton: function(id) {
|
||||||
|
var header = this.$window.find('.header .tools.left');
|
||||||
|
if (id=='back') {
|
||||||
|
var btn = header.find('#id-plugindlg-' + id);
|
||||||
|
if (btn.length<1) {
|
||||||
|
btn = $('<div id="id-plugindlg-' + id + '" class="tool help" style="font-size:20px;">←</div>');
|
||||||
|
btn.on('click', _.bind(function() {
|
||||||
|
this.fireEvent('header:click',id);
|
||||||
|
}, this));
|
||||||
|
header.prepend(btn);
|
||||||
|
}
|
||||||
|
btn.show();
|
||||||
|
header.removeClass('hidden');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
hideButton: function(id) {
|
||||||
|
var header = this.$window.find('.header .tools.left');
|
||||||
|
if (id=='back') {
|
||||||
|
var btn = header.find('#id-plugindlg-' + id);
|
||||||
|
if (btn.length>0) {
|
||||||
|
btn.hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
textLoading : 'Loading'
|
textLoading : 'Loading'
|
||||||
}, Common.Views.PluginDlg || {}));
|
}, Common.Views.PluginDlg || {}));
|
||||||
});
|
});
|
|
@ -710,7 +710,7 @@
|
||||||
.background-ximage-all('toolbar/math.png', 1500px, @commonimage: true);
|
.background-ximage-all('toolbar/math.png', 1500px, @commonimage: true);
|
||||||
opacity: @component-normal-icon-opacity;
|
opacity: @component-normal-icon-opacity;
|
||||||
|
|
||||||
.theme-dark & {
|
.theme-type-dark & {
|
||||||
-webkit-filter: @img-equition-filter;
|
-webkit-filter: @img-equition-filter;
|
||||||
filter: @img-equition-filter;
|
filter: @img-equition-filter;
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
background-color: rgb(0,0,0);
|
background-color: rgb(0,0,0);
|
||||||
z-index: @zindex-modal - 1;
|
z-index: @zindex-modal - 1;
|
||||||
|
|
||||||
.theme-dark & {
|
.theme-type-dark & {
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,8 +46,8 @@
|
||||||
&:before, &:after {
|
&:before, &:after {
|
||||||
content: ' ';
|
content: ' ';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 7px;
|
left: 8px;
|
||||||
left: calc(7px / @pixel-ratio-factor);
|
left: calc(8px / @pixel-ratio-factor);
|
||||||
top: @scaled-one-px-value-ie;
|
top: @scaled-one-px-value-ie;
|
||||||
top: @scaled-one-px-value;
|
top: @scaled-one-px-value;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
|
@ -116,6 +116,12 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
padding-right: 6px;
|
padding-right: 6px;
|
||||||
|
|
||||||
|
&.left {
|
||||||
|
left: 0;
|
||||||
|
right: auto;
|
||||||
|
padding-left: 6px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tool.help {
|
.tool.help {
|
||||||
|
|
|
@ -69,6 +69,9 @@
|
||||||
.title {
|
.title {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: @text-normal;
|
color: @text-normal;
|
||||||
|
line-height: 17px;
|
||||||
|
max-height: 34px;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.navbar-inner, .subnavbar-inner {
|
.navbar-inner, .subnavbar-inner {
|
||||||
z-index: auto;
|
z-index: auto;
|
||||||
|
|
|
@ -1133,6 +1133,8 @@ input[type="number"]::-webkit-inner-spin-button {
|
||||||
// Navigation list
|
// Navigation list
|
||||||
|
|
||||||
.list.navigation-list {
|
.list.navigation-list {
|
||||||
|
overflow-y: auto;
|
||||||
|
height: 265px;
|
||||||
.item-title {
|
.item-title {
|
||||||
color: @text-normal;
|
color: @text-normal;
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,6 +118,7 @@ DE.ApplicationController = new(function(){
|
||||||
|
|
||||||
docInfo.put_Id(docConfig.key);
|
docInfo.put_Id(docConfig.key);
|
||||||
docInfo.put_Url(docConfig.url);
|
docInfo.put_Url(docConfig.url);
|
||||||
|
docInfo.put_DirectUrl(docConfig.directUrl);
|
||||||
docInfo.put_Title(docConfig.title);
|
docInfo.put_Title(docConfig.title);
|
||||||
docInfo.put_Format(docConfig.fileType);
|
docInfo.put_Format(docConfig.fileType);
|
||||||
docInfo.put_VKey(docConfig.vkey);
|
docInfo.put_VKey(docConfig.vkey);
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
"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.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.errorSubmit": "Odeslání se nezdařilo.",
|
||||||
"DE.ApplicationController.errorTokenExpire": "Platnost tokenu zabezpečení dokumentu skončila.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
"DE.ApplicationController.errorTokenExpire": "Platnost tokenu zabezpečení dokumentu skončila.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
||||||
"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.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.<br>Než budete moci pokračovat v práci, musíte stáhnout nebo zkopírovat obsah souboru, aby nedošlo ke ztrátě dat. Poté tuto stránku obnovte.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
"DE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Varování",
|
"DE.ApplicationController.notcriticalErrorTitle": "Varování",
|
||||||
"DE.ApplicationController.openErrorText": "Při otevírání souboru došlo k chybě.",
|
"DE.ApplicationController.openErrorText": "Při otevírání souboru došlo k chybě.",
|
||||||
|
|
|
@ -48,5 +48,6 @@
|
||||||
"DE.ApplicationView.txtFileLocation": "Dateispeicherort öffnen",
|
"DE.ApplicationView.txtFileLocation": "Dateispeicherort öffnen",
|
||||||
"DE.ApplicationView.txtFullScreen": "Vollbild-Modus",
|
"DE.ApplicationView.txtFullScreen": "Vollbild-Modus",
|
||||||
"DE.ApplicationView.txtPrint": "Drucken",
|
"DE.ApplicationView.txtPrint": "Drucken",
|
||||||
|
"DE.ApplicationView.txtSearch": "Suche",
|
||||||
"DE.ApplicationView.txtShare": "Freigeben"
|
"DE.ApplicationView.txtShare": "Freigeben"
|
||||||
}
|
}
|
|
@ -19,13 +19,14 @@
|
||||||
"DE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>Veuillez contacter l'administrateur de Document Server.",
|
"DE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"DE.ApplicationController.errorSubmit": "Échec de soumission",
|
"DE.ApplicationController.errorSubmit": "Échec de soumission",
|
||||||
"DE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",
|
"DE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",
|
||||||
"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.errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée.<br>Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
"DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
"DE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
||||||
"DE.ApplicationController.openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier",
|
"DE.ApplicationController.openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier",
|
||||||
"DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
"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.textAnonymous": "Anonyme",
|
||||||
"DE.ApplicationController.textClear": "Effacer tous les champs",
|
"DE.ApplicationController.textClear": "Effacer tous les champs",
|
||||||
|
"DE.ApplicationController.textCtrl": "Ctrl",
|
||||||
"DE.ApplicationController.textGotIt": "C'est compris",
|
"DE.ApplicationController.textGotIt": "C'est compris",
|
||||||
"DE.ApplicationController.textGuest": "Invité",
|
"DE.ApplicationController.textGuest": "Invité",
|
||||||
"DE.ApplicationController.textLoadingDocument": "Chargement du document",
|
"DE.ApplicationController.textLoadingDocument": "Chargement du document",
|
||||||
|
|
|
@ -19,13 +19,14 @@
|
||||||
"DE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.<br>Si prega di contattare il tuo amministratore di Document Server.",
|
"DE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.<br>Si prega di contattare il tuo amministratore di Document Server.",
|
||||||
"DE.ApplicationController.errorSubmit": "Invio fallito.",
|
"DE.ApplicationController.errorSubmit": "Invio fallito.",
|
||||||
"DE.ApplicationController.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Ti preghiamo di contattare l'amministratore del Document Server.",
|
"DE.ApplicationController.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Ti preghiamo di contattare l'amministratore del Document Server.",
|
||||||
"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.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso, quindi ricarica questa pagina.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
"DE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
||||||
"DE.ApplicationController.openErrorText": "Si è verificato un errore durante l'apertura del file.",
|
"DE.ApplicationController.openErrorText": "Si è verificato un errore durante l'apertura del file.",
|
||||||
"DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
"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.textAnonymous": "Anonimo",
|
||||||
"DE.ApplicationController.textClear": "Cancella tutti i campi",
|
"DE.ApplicationController.textClear": "Cancella tutti i campi",
|
||||||
|
"DE.ApplicationController.textCtrl": "Ctrl",
|
||||||
"DE.ApplicationController.textGotIt": "Capito",
|
"DE.ApplicationController.textGotIt": "Capito",
|
||||||
"DE.ApplicationController.textGuest": "Ospite",
|
"DE.ApplicationController.textGuest": "Ospite",
|
||||||
"DE.ApplicationController.textLoadingDocument": "Caricamento del documento",
|
"DE.ApplicationController.textLoadingDocument": "Caricamento del documento",
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"common.view.modals.txtHeight": "Ketinggian",
|
"common.view.modals.txtHeight": "Ketinggian",
|
||||||
"common.view.modals.txtShare": "Kongsi Pautan",
|
"common.view.modals.txtShare": "Kongsi Pautan",
|
||||||
"common.view.modals.txtWidth": "Lebar",
|
"common.view.modals.txtWidth": "Lebar",
|
||||||
|
"common.view.SearchBar.textFind": "Cari",
|
||||||
"DE.ApplicationController.convertationErrorText": "Penukaran telah gagal.",
|
"DE.ApplicationController.convertationErrorText": "Penukaran telah gagal.",
|
||||||
"DE.ApplicationController.convertationTimeoutText": "Melebihi masa tamat penukaran.",
|
"DE.ApplicationController.convertationTimeoutText": "Melebihi masa tamat penukaran.",
|
||||||
"DE.ApplicationController.criticalErrorTitle": "Ralat",
|
"DE.ApplicationController.criticalErrorTitle": "Ralat",
|
||||||
|
@ -46,5 +47,6 @@
|
||||||
"DE.ApplicationView.txtFileLocation": "Buka lokasi fail",
|
"DE.ApplicationView.txtFileLocation": "Buka lokasi fail",
|
||||||
"DE.ApplicationView.txtFullScreen": "Skrin penuh",
|
"DE.ApplicationView.txtFullScreen": "Skrin penuh",
|
||||||
"DE.ApplicationView.txtPrint": "Cetak",
|
"DE.ApplicationView.txtPrint": "Cetak",
|
||||||
|
"DE.ApplicationView.txtSearch": "Carian",
|
||||||
"DE.ApplicationView.txtShare": "Kongsi"
|
"DE.ApplicationView.txtShare": "Kongsi"
|
||||||
}
|
}
|
|
@ -4,6 +4,7 @@
|
||||||
"common.view.modals.txtHeight": "高度",
|
"common.view.modals.txtHeight": "高度",
|
||||||
"common.view.modals.txtShare": "分享連結",
|
"common.view.modals.txtShare": "分享連結",
|
||||||
"common.view.modals.txtWidth": "寬度",
|
"common.view.modals.txtWidth": "寬度",
|
||||||
|
"common.view.SearchBar.textFind": "尋找",
|
||||||
"DE.ApplicationController.convertationErrorText": "轉換失敗。",
|
"DE.ApplicationController.convertationErrorText": "轉換失敗。",
|
||||||
"DE.ApplicationController.convertationTimeoutText": "轉換逾時。",
|
"DE.ApplicationController.convertationTimeoutText": "轉換逾時。",
|
||||||
"DE.ApplicationController.criticalErrorTitle": "錯誤",
|
"DE.ApplicationController.criticalErrorTitle": "錯誤",
|
||||||
|
@ -25,6 +26,7 @@
|
||||||
"DE.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法載入。請重新整理頁面。",
|
"DE.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法載入。請重新整理頁面。",
|
||||||
"DE.ApplicationController.textAnonymous": "匿名",
|
"DE.ApplicationController.textAnonymous": "匿名",
|
||||||
"DE.ApplicationController.textClear": "清除所有段落",
|
"DE.ApplicationController.textClear": "清除所有段落",
|
||||||
|
"DE.ApplicationController.textCtrl": "Ctrl",
|
||||||
"DE.ApplicationController.textGotIt": "我瞭解了",
|
"DE.ApplicationController.textGotIt": "我瞭解了",
|
||||||
"DE.ApplicationController.textGuest": "訪客",
|
"DE.ApplicationController.textGuest": "訪客",
|
||||||
"DE.ApplicationController.textLoadingDocument": "載入文件中",
|
"DE.ApplicationController.textLoadingDocument": "載入文件中",
|
||||||
|
@ -46,5 +48,6 @@
|
||||||
"DE.ApplicationView.txtFileLocation": "打開文件所在位置",
|
"DE.ApplicationView.txtFileLocation": "打開文件所在位置",
|
||||||
"DE.ApplicationView.txtFullScreen": "全螢幕",
|
"DE.ApplicationView.txtFullScreen": "全螢幕",
|
||||||
"DE.ApplicationView.txtPrint": "列印",
|
"DE.ApplicationView.txtPrint": "列印",
|
||||||
|
"DE.ApplicationView.txtSearch": "搜索",
|
||||||
"DE.ApplicationView.txtShare": "分享"
|
"DE.ApplicationView.txtShare": "分享"
|
||||||
}
|
}
|
|
@ -19,7 +19,7 @@
|
||||||
"DE.ApplicationController.errorLoadingFont": "字体未加载。<br>请联系文档服务器管理员。",
|
"DE.ApplicationController.errorLoadingFont": "字体未加载。<br>请联系文档服务器管理员。",
|
||||||
"DE.ApplicationController.errorSubmit": "提交失败",
|
"DE.ApplicationController.errorSubmit": "提交失败",
|
||||||
"DE.ApplicationController.errorTokenExpire": "文档安全令牌已过期。<br>请与您的文档服务器管理员联系。",
|
"DE.ApplicationController.errorTokenExpire": "文档安全令牌已过期。<br>请与您的文档服务器管理员联系。",
|
||||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。",
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "网连接已还原文件版本已更改。.<br>在继续工作之前,需要下载文件或复制其内容以确保没有丢失任何内容,然后重新加载此页。",
|
||||||
"DE.ApplicationController.errorUserDrop": "该文件现在无法访问。",
|
"DE.ApplicationController.errorUserDrop": "该文件现在无法访问。",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "警告",
|
"DE.ApplicationController.notcriticalErrorTitle": "警告",
|
||||||
"DE.ApplicationController.openErrorText": "打开文件时出现错误",
|
"DE.ApplicationController.openErrorText": "打开文件时出现错误",
|
||||||
|
|
|
@ -482,6 +482,7 @@ define([
|
||||||
docInfo = new Asc.asc_CDocInfo();
|
docInfo = new Asc.asc_CDocInfo();
|
||||||
docInfo.put_Id(data.doc.key);
|
docInfo.put_Id(data.doc.key);
|
||||||
docInfo.put_Url(data.doc.url);
|
docInfo.put_Url(data.doc.url);
|
||||||
|
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||||
docInfo.put_Title(data.doc.title);
|
docInfo.put_Title(data.doc.title);
|
||||||
docInfo.put_Format(data.doc.fileType);
|
docInfo.put_Format(data.doc.fileType);
|
||||||
docInfo.put_VKey(data.doc.vkey);
|
docInfo.put_VKey(data.doc.vkey);
|
||||||
|
|
|
@ -175,6 +175,7 @@ define([
|
||||||
buttons: isCustomWindow ? undefined : newBtns,
|
buttons: isCustomWindow ? undefined : newBtns,
|
||||||
toolcallback: _.bind(this.onToolClose, this),
|
toolcallback: _.bind(this.onToolClose, this),
|
||||||
help: !!help,
|
help: !!help,
|
||||||
|
loader: plugin.get_Loader(),
|
||||||
modal: isModal!==undefined ? isModal : true
|
modal: isModal!==undefined ? isModal : true
|
||||||
});
|
});
|
||||||
me.pluginDlg.on({
|
me.pluginDlg.on({
|
||||||
|
|
|
@ -32,6 +32,10 @@
|
||||||
"Common.UI.Calendar.textShortTuesday": "Di",
|
"Common.UI.Calendar.textShortTuesday": "Di",
|
||||||
"Common.UI.Calendar.textShortWednesday": "Mi",
|
"Common.UI.Calendar.textShortWednesday": "Mi",
|
||||||
"Common.UI.Calendar.textYears": "Jahre",
|
"Common.UI.Calendar.textYears": "Jahre",
|
||||||
|
"Common.UI.SearchBar.textFind": "Finden",
|
||||||
|
"Common.UI.SearchBar.tipCloseSearch": "Suche schließen",
|
||||||
|
"Common.UI.SearchBar.tipNextResult": "Nächstes Ergebnis",
|
||||||
|
"Common.UI.SearchBar.tipPreviousResult": "Vorheriges Ergebnis",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Klassisch Hell",
|
"Common.UI.Themes.txtThemeClassicLight": "Klassisch Hell",
|
||||||
"Common.UI.Themes.txtThemeDark": "Dunkelmodus",
|
"Common.UI.Themes.txtThemeDark": "Dunkelmodus",
|
||||||
"Common.UI.Themes.txtThemeLight": "Hell",
|
"Common.UI.Themes.txtThemeLight": "Hell",
|
||||||
|
@ -166,6 +170,7 @@
|
||||||
"DE.Views.ApplicationView.txtFileLocation": "Dateispeicherort öffnen",
|
"DE.Views.ApplicationView.txtFileLocation": "Dateispeicherort öffnen",
|
||||||
"DE.Views.ApplicationView.txtFullScreen": "Vollbild-Modus",
|
"DE.Views.ApplicationView.txtFullScreen": "Vollbild-Modus",
|
||||||
"DE.Views.ApplicationView.txtPrint": "Drucken",
|
"DE.Views.ApplicationView.txtPrint": "Drucken",
|
||||||
|
"DE.Views.ApplicationView.txtSearch": "Suche",
|
||||||
"DE.Views.ApplicationView.txtShare": "Freigeben",
|
"DE.Views.ApplicationView.txtShare": "Freigeben",
|
||||||
"DE.Views.ApplicationView.txtTheme": "Thema der Benutzeroberfläche"
|
"DE.Views.ApplicationView.txtTheme": "Thema der Benutzeroberfläche"
|
||||||
}
|
}
|
|
@ -103,7 +103,7 @@
|
||||||
"DE.Controllers.ApplicationController.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.<br>Veuillez contacter votre administrateur de Document Server.",
|
"DE.Controllers.ApplicationController.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.<br>Veuillez contacter votre administrateur de Document Server.",
|
||||||
"DE.Controllers.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",
|
"DE.Controllers.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",
|
||||||
"DE.Controllers.ApplicationController.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
|
"DE.Controllers.ApplicationController.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
|
||||||
"DE.Controllers.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.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée.<br>Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
|
||||||
"DE.Controllers.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
"DE.Controllers.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
||||||
"DE.Controllers.ApplicationController.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais vous ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie et que la page soit actualisée.",
|
"DE.Controllers.ApplicationController.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais vous ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie et que la page soit actualisée.",
|
||||||
"DE.Controllers.ApplicationController.mniImageFromFile": "Image à partir d'un fichier",
|
"DE.Controllers.ApplicationController.mniImageFromFile": "Image à partir d'un fichier",
|
||||||
|
|
|
@ -103,7 +103,7 @@
|
||||||
"DE.Controllers.ApplicationController.errorToken": "Il token di sicurezza del documento non è formato correttamente.<br>Si prega di contattare l'amministratore di Document Server.",
|
"DE.Controllers.ApplicationController.errorToken": "Il token di sicurezza del documento non è formato correttamente.<br>Si prega di contattare l'amministratore di Document Server.",
|
||||||
"DE.Controllers.ApplicationController.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore di Document Server.",
|
"DE.Controllers.ApplicationController.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore di Document Server.",
|
||||||
"DE.Controllers.ApplicationController.errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.",
|
"DE.Controllers.ApplicationController.errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.",
|
||||||
"DE.Controllers.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.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso, quindi ricarica questa pagina.",
|
||||||
"DE.Controllers.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
"DE.Controllers.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
||||||
"DE.Controllers.ApplicationController.errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
|
"DE.Controllers.ApplicationController.errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
|
||||||
"DE.Controllers.ApplicationController.mniImageFromFile": "Immagine da file",
|
"DE.Controllers.ApplicationController.mniImageFromFile": "Immagine da file",
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
"Common.UI.Calendar.textShortTuesday": "Sel",
|
"Common.UI.Calendar.textShortTuesday": "Sel",
|
||||||
"Common.UI.Calendar.textShortWednesday": "Kami",
|
"Common.UI.Calendar.textShortWednesday": "Kami",
|
||||||
"Common.UI.Calendar.textYears": "Tahun",
|
"Common.UI.Calendar.textYears": "Tahun",
|
||||||
|
"Common.UI.SearchBar.textFind": "Cari",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
|
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
|
||||||
"Common.UI.Themes.txtThemeDark": "Gelap",
|
"Common.UI.Themes.txtThemeDark": "Gelap",
|
||||||
"Common.UI.Themes.txtThemeLight": "Ringan",
|
"Common.UI.Themes.txtThemeLight": "Ringan",
|
||||||
|
@ -164,6 +165,7 @@
|
||||||
"DE.Views.ApplicationView.txtFileLocation": "Buka lokasi fail",
|
"DE.Views.ApplicationView.txtFileLocation": "Buka lokasi fail",
|
||||||
"DE.Views.ApplicationView.txtFullScreen": "Skrin penuh",
|
"DE.Views.ApplicationView.txtFullScreen": "Skrin penuh",
|
||||||
"DE.Views.ApplicationView.txtPrint": "Cetak",
|
"DE.Views.ApplicationView.txtPrint": "Cetak",
|
||||||
|
"DE.Views.ApplicationView.txtSearch": "Carian",
|
||||||
"DE.Views.ApplicationView.txtShare": "Kongsi",
|
"DE.Views.ApplicationView.txtShare": "Kongsi",
|
||||||
"DE.Views.ApplicationView.txtTheme": "Tema antara muka"
|
"DE.Views.ApplicationView.txtTheme": "Tema antara muka"
|
||||||
}
|
}
|
|
@ -32,6 +32,10 @@
|
||||||
"Common.UI.Calendar.textShortTuesday": "Tu",
|
"Common.UI.Calendar.textShortTuesday": "Tu",
|
||||||
"Common.UI.Calendar.textShortWednesday": "We",
|
"Common.UI.Calendar.textShortWednesday": "We",
|
||||||
"Common.UI.Calendar.textYears": "年",
|
"Common.UI.Calendar.textYears": "年",
|
||||||
|
"Common.UI.SearchBar.textFind": "尋找",
|
||||||
|
"Common.UI.SearchBar.tipCloseSearch": "關閉搜索",
|
||||||
|
"Common.UI.SearchBar.tipNextResult": "下一個結果",
|
||||||
|
"Common.UI.SearchBar.tipPreviousResult": "上一個結果",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "傳統亮色",
|
"Common.UI.Themes.txtThemeClassicLight": "傳統亮色",
|
||||||
"Common.UI.Themes.txtThemeDark": "暗",
|
"Common.UI.Themes.txtThemeDark": "暗",
|
||||||
"Common.UI.Themes.txtThemeLight": "光",
|
"Common.UI.Themes.txtThemeLight": "光",
|
||||||
|
@ -166,6 +170,7 @@
|
||||||
"DE.Views.ApplicationView.txtFileLocation": "打開文件所在位置",
|
"DE.Views.ApplicationView.txtFileLocation": "打開文件所在位置",
|
||||||
"DE.Views.ApplicationView.txtFullScreen": "全螢幕",
|
"DE.Views.ApplicationView.txtFullScreen": "全螢幕",
|
||||||
"DE.Views.ApplicationView.txtPrint": "打印",
|
"DE.Views.ApplicationView.txtPrint": "打印",
|
||||||
|
"DE.Views.ApplicationView.txtSearch": "搜索",
|
||||||
"DE.Views.ApplicationView.txtShare": "分享",
|
"DE.Views.ApplicationView.txtShare": "分享",
|
||||||
"DE.Views.ApplicationView.txtTheme": "介面主題"
|
"DE.Views.ApplicationView.txtTheme": "介面主題"
|
||||||
}
|
}
|
|
@ -103,7 +103,7 @@
|
||||||
"DE.Controllers.ApplicationController.errorToken": "文档安全令牌形成不正确。<br> 请联系文档服务器管理员。",
|
"DE.Controllers.ApplicationController.errorToken": "文档安全令牌形成不正确。<br> 请联系文档服务器管理员。",
|
||||||
"DE.Controllers.ApplicationController.errorTokenExpire": "文档安全令牌已过期。<br> 请联系文档服务器管理员。",
|
"DE.Controllers.ApplicationController.errorTokenExpire": "文档安全令牌已过期。<br> 请联系文档服务器管理员。",
|
||||||
"DE.Controllers.ApplicationController.errorUpdateVersion": "\n该文件版本已更改。该页面将重新加载。",
|
"DE.Controllers.ApplicationController.errorUpdateVersion": "\n该文件版本已更改。该页面将重新加载。",
|
||||||
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后重新加载此页。",
|
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "网连接已还原文件版本已更改。.<br>在继续工作之前,需要下载文件或复制其内容以确保没有丢失任何内容,然后重新加载此页。",
|
||||||
"DE.Controllers.ApplicationController.errorUserDrop": "该文件现在无法访问。",
|
"DE.Controllers.ApplicationController.errorUserDrop": "该文件现在无法访问。",
|
||||||
"DE.Controllers.ApplicationController.errorViewerDisconnect": "连接已断开。您仍然可以查看文档,<br> 但在连接恢复并页面被重新加载之前无法下载或打印。",
|
"DE.Controllers.ApplicationController.errorViewerDisconnect": "连接已断开。您仍然可以查看文档,<br> 但在连接恢复并页面被重新加载之前无法下载或打印。",
|
||||||
"DE.Controllers.ApplicationController.mniImageFromFile": "来自文件的图像",
|
"DE.Controllers.ApplicationController.mniImageFromFile": "来自文件的图像",
|
||||||
|
|
|
@ -320,6 +320,7 @@ define([
|
||||||
oleEditor.on('hide', _.bind(function(cmp, message) {
|
oleEditor.on('hide', _.bind(function(cmp, message) {
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
this.api.asc_enableKeyEvents(true);
|
this.api.asc_enableKeyEvents(true);
|
||||||
|
this.api.asc_onCloseChartFrame();
|
||||||
}
|
}
|
||||||
setTimeout(function(){
|
setTimeout(function(){
|
||||||
me.editComplete();
|
me.editComplete();
|
||||||
|
|
|
@ -465,6 +465,7 @@ define([
|
||||||
docInfo = new Asc.asc_CDocInfo();
|
docInfo = new Asc.asc_CDocInfo();
|
||||||
docInfo.put_Id(data.doc.key);
|
docInfo.put_Id(data.doc.key);
|
||||||
docInfo.put_Url(data.doc.url);
|
docInfo.put_Url(data.doc.url);
|
||||||
|
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||||
docInfo.put_Title(data.doc.title);
|
docInfo.put_Title(data.doc.title);
|
||||||
docInfo.put_Format(data.doc.fileType);
|
docInfo.put_Format(data.doc.fileType);
|
||||||
docInfo.put_VKey(data.doc.vkey);
|
docInfo.put_VKey(data.doc.vkey);
|
||||||
|
@ -1363,7 +1364,8 @@ define([
|
||||||
|| licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0))
|
|| licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0))
|
||||||
this._state.licenseType = licType;
|
this._state.licenseType = licType;
|
||||||
|
|
||||||
if (licType !== undefined && this.appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS))
|
if (licType !== undefined && this.appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS ||
|
||||||
|
licType===Asc.c_oLicenseResult.UsersViewCount || licType===Asc.c_oLicenseResult.UsersViewCountOS))
|
||||||
this._state.licenseType = licType;
|
this._state.licenseType = licType;
|
||||||
|
|
||||||
if (this._isDocReady)
|
if (this._isDocReady)
|
||||||
|
@ -1372,7 +1374,8 @@ define([
|
||||||
|
|
||||||
applyLicense: function() {
|
applyLicense: function() {
|
||||||
if (this.editorConfig.mode === 'view') {
|
if (this.editorConfig.mode === 'view') {
|
||||||
if (this.appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS)) {
|
if (this.appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS ||
|
||||||
|
this._state.licenseType===Asc.c_oLicenseResult.UsersViewCount || this._state.licenseType===Asc.c_oLicenseResult.UsersViewCountOS)) {
|
||||||
// show warning or write to log if Common.Utils.InternalSettings.get("de-settings-coauthmode") was true ???
|
// show warning or write to log if Common.Utils.InternalSettings.get("de-settings-coauthmode") was true ???
|
||||||
this.disableLiveViewing(true);
|
this.disableLiveViewing(true);
|
||||||
}
|
}
|
||||||
|
|
|
@ -209,7 +209,9 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
applyZoom: function (value) {
|
applyZoom: function (value) {
|
||||||
var val = Math.max(25, Math.min(500, value));
|
var val = Math.max(10, Math.min(500, value));
|
||||||
|
if (this._state.zoomValue === val)
|
||||||
|
this.view.cmbZoom.setValue(this._state.zoomValue, this._state.zoomValue + '%');
|
||||||
this.api.zoom(val);
|
this.api.zoom(val);
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.view);
|
Common.NotificationCenter.trigger('edit:complete', this.view);
|
||||||
},
|
},
|
||||||
|
|
|
@ -1525,8 +1525,15 @@ define([
|
||||||
this.coreProps = (this.api) ? this.api.asc_getCoreProps() : null;
|
this.coreProps = (this.api) ? this.api.asc_getCoreProps() : null;
|
||||||
if (this.coreProps) {
|
if (this.coreProps) {
|
||||||
var value = this.coreProps.asc_getCreated();
|
var value = this.coreProps.asc_getCreated();
|
||||||
if (value)
|
if (value) {
|
||||||
this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
|
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
|
||||||
|
try {
|
||||||
|
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
} catch (e) {
|
||||||
|
lang = 'en';
|
||||||
|
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
}
|
||||||
|
}
|
||||||
this._ShowHideInfoItem(this.lblDate, !!value);
|
this._ShowHideInfoItem(this.lblDate, !!value);
|
||||||
} else if (pdfProps)
|
} else if (pdfProps)
|
||||||
this.updatePdfInfo(pdfProps);
|
this.updatePdfInfo(pdfProps);
|
||||||
|
@ -1544,8 +1551,16 @@ define([
|
||||||
if (props) {
|
if (props) {
|
||||||
var visible = false;
|
var visible = false;
|
||||||
value = props.asc_getModified();
|
value = props.asc_getModified();
|
||||||
if (value)
|
|
||||||
this.lblModifyDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
|
if (value) {
|
||||||
|
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
|
||||||
|
try {
|
||||||
|
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
} catch (e) {
|
||||||
|
lang = 'en';
|
||||||
|
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
}
|
||||||
|
}
|
||||||
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
|
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
|
||||||
value = props.asc_getLastModifiedBy();
|
value = props.asc_getLastModifiedBy();
|
||||||
if (value)
|
if (value)
|
||||||
|
@ -1586,7 +1601,13 @@ define([
|
||||||
value = props.CreationDate;
|
value = props.CreationDate;
|
||||||
if (value) {
|
if (value) {
|
||||||
value = new Date(value);
|
value = new Date(value);
|
||||||
this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
|
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
|
||||||
|
try {
|
||||||
|
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
} catch (e) {
|
||||||
|
lang = 'en';
|
||||||
|
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this._ShowHideInfoItem(this.lblDate, !!value);
|
this._ShowHideInfoItem(this.lblDate, !!value);
|
||||||
|
|
||||||
|
@ -1594,7 +1615,13 @@ define([
|
||||||
value = props.ModDate;
|
value = props.ModDate;
|
||||||
if (value) {
|
if (value) {
|
||||||
value = new Date(value);
|
value = new Date(value);
|
||||||
this.lblModifyDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
|
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
|
||||||
|
try {
|
||||||
|
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
} catch (e) {
|
||||||
|
lang = 'en';
|
||||||
|
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
|
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
|
||||||
visible = this._ShowHideInfoItem(this.lblModifyBy, false) || visible;
|
visible = this._ShowHideInfoItem(this.lblModifyBy, false) || visible;
|
||||||
|
|
|
@ -24,14 +24,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textCenter": "Alineació al centre",
|
"Common.Controllers.ReviewChanges.textCenter": "Alineació al centre",
|
||||||
"Common.Controllers.ReviewChanges.textChar": "Nivell de caràcter",
|
"Common.Controllers.ReviewChanges.textChar": "Nivell de caràcter",
|
||||||
"Common.Controllers.ReviewChanges.textChart": "Gràfic",
|
"Common.Controllers.ReviewChanges.textChart": "Gràfic",
|
||||||
"Common.Controllers.ReviewChanges.textColor": "Color del tipus de lletra",
|
"Common.Controllers.ReviewChanges.textColor": "Color de la lletra",
|
||||||
"Common.Controllers.ReviewChanges.textContextual": "No afegeixis cap interval entre paràgrafs del mateix estil",
|
"Common.Controllers.ReviewChanges.textContextual": "No afegeixis cap interval entre paràgrafs del mateix estil",
|
||||||
"Common.Controllers.ReviewChanges.textDeleted": "<b>Suprimit:</b>",
|
"Common.Controllers.ReviewChanges.textDeleted": "<b>Suprimit:</b>",
|
||||||
"Common.Controllers.ReviewChanges.textDStrikeout": "Ratllat doble",
|
"Common.Controllers.ReviewChanges.textDStrikeout": "Ratllat doble",
|
||||||
"Common.Controllers.ReviewChanges.textEquation": "Equació",
|
"Common.Controllers.ReviewChanges.textEquation": "Equació",
|
||||||
"Common.Controllers.ReviewChanges.textExact": "exacte",
|
"Common.Controllers.ReviewChanges.textExact": "exacte",
|
||||||
"Common.Controllers.ReviewChanges.textFirstLine": "Primera línia",
|
"Common.Controllers.ReviewChanges.textFirstLine": "Primera línia",
|
||||||
"Common.Controllers.ReviewChanges.textFontSize": "Mida del tipus de lletra",
|
"Common.Controllers.ReviewChanges.textFontSize": "Mida de la lletra",
|
||||||
"Common.Controllers.ReviewChanges.textFormatted": "S'ha formatat",
|
"Common.Controllers.ReviewChanges.textFormatted": "S'ha formatat",
|
||||||
"Common.Controllers.ReviewChanges.textHighlight": "Color de ressaltat",
|
"Common.Controllers.ReviewChanges.textHighlight": "Color de ressaltat",
|
||||||
"Common.Controllers.ReviewChanges.textImage": "Imatge",
|
"Common.Controllers.ReviewChanges.textImage": "Imatge",
|
||||||
|
@ -500,8 +500,8 @@
|
||||||
"Common.Views.SignDialog.textTitle": "Signeu el document",
|
"Common.Views.SignDialog.textTitle": "Signeu el document",
|
||||||
"Common.Views.SignDialog.textUseImage": "o fes clic a \"Selecciona imatge\" per utilitzar una imatge com a signatura",
|
"Common.Views.SignDialog.textUseImage": "o fes clic a \"Selecciona imatge\" per utilitzar una imatge com a signatura",
|
||||||
"Common.Views.SignDialog.textValid": "Vàlid des de %1 fins a %2",
|
"Common.Views.SignDialog.textValid": "Vàlid des de %1 fins a %2",
|
||||||
"Common.Views.SignDialog.tipFontName": "Nom del tipus de lletra",
|
"Common.Views.SignDialog.tipFontName": "Nom de la lletra",
|
||||||
"Common.Views.SignDialog.tipFontSize": "Mida del tipus de lletra",
|
"Common.Views.SignDialog.tipFontSize": "Mida de la lletra",
|
||||||
"Common.Views.SignSettingsDialog.textAllowComment": "Permet al signant afegir comentaris al diàleg de signatura",
|
"Common.Views.SignSettingsDialog.textAllowComment": "Permet al signant afegir comentaris al diàleg de signatura",
|
||||||
"Common.Views.SignSettingsDialog.textInfo": "Informació del signant",
|
"Common.Views.SignSettingsDialog.textInfo": "Informació del signant",
|
||||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic",
|
"Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic",
|
||||||
|
@ -521,7 +521,7 @@
|
||||||
"Common.Views.SymbolTableDialog.textEmSpace": "Espai llarg",
|
"Common.Views.SymbolTableDialog.textEmSpace": "Espai llarg",
|
||||||
"Common.Views.SymbolTableDialog.textEnDash": "Guió curt",
|
"Common.Views.SymbolTableDialog.textEnDash": "Guió curt",
|
||||||
"Common.Views.SymbolTableDialog.textEnSpace": "Espai curt",
|
"Common.Views.SymbolTableDialog.textEnSpace": "Espai curt",
|
||||||
"Common.Views.SymbolTableDialog.textFont": "Tipus de lletra",
|
"Common.Views.SymbolTableDialog.textFont": "Lletra",
|
||||||
"Common.Views.SymbolTableDialog.textNBHyphen": "Guió sense ruptura",
|
"Common.Views.SymbolTableDialog.textNBHyphen": "Guió sense ruptura",
|
||||||
"Common.Views.SymbolTableDialog.textNBSpace": "Espai sense pauses",
|
"Common.Views.SymbolTableDialog.textNBSpace": "Espai sense pauses",
|
||||||
"Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó",
|
"Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó",
|
||||||
|
@ -585,7 +585,7 @@
|
||||||
"DE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.",
|
"DE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat",
|
"DE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat",
|
||||||
"DE.Controllers.Main.errorLoadingFont": "No s'han carregat els tipus de lletra.<br> Contacta amb l'administrador del Servidor de Documents.",
|
"DE.Controllers.Main.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "No s'ha pogut carregar el document. Selecciona un fitxer diferent.",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "No s'ha pogut carregar el document. Selecciona un fitxer diferent.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "No s'ha pogut combinar.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "No s'ha pogut combinar.",
|
||||||
"DE.Controllers.Main.errorNoTOC": "No hi ha cap taula de continguts per actualitzar. En podeu inserir una des de la pestanya de Referències.",
|
"DE.Controllers.Main.errorNoTOC": "No hi ha cap taula de continguts per actualitzar. En podeu inserir una des de la pestanya de Referències.",
|
||||||
|
@ -935,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Inici del document",
|
"DE.Controllers.Navigation.txtBeginning": "Inici del document",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Ves al començament del document",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Ves al començament del document",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Advertiment",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Advertiment",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "S'ha fet la cerca. S'han substituït {0} ocurrències",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} no és un caràcter especial vàlid per a la casella Substitueix per.",
|
"DE.Controllers.Search.warnReplaceString": "{0} no és un caràcter especial vàlid per a la casella Substitueix per.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'intenta connectar. Comproveu la configuració de connexió",
|
"DE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'intenta connectar. Comproveu la configuració de connexió",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "S'ha fet un seguiment dels canvis nous",
|
"DE.Controllers.Statusbar.textHasChanges": "S'ha fet un seguiment dels canvis nous",
|
||||||
|
@ -942,7 +945,7 @@
|
||||||
"DE.Controllers.Statusbar.textTrackChanges": "El document s'ha obert amb el mode de seguiment de canvis activat",
|
"DE.Controllers.Statusbar.textTrackChanges": "El document s'ha obert amb el mode de seguiment de canvis activat",
|
||||||
"DE.Controllers.Statusbar.tipReview": "Control de canvis",
|
"DE.Controllers.Statusbar.tipReview": "Control de canvis",
|
||||||
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
"DE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que desareu no està disponible al dispositiu actual. <br>L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible. <br>Voleu continuar ?",
|
"DE.Controllers.Toolbar.confirmAddFontName": "La lletra que desareu no està disponible al dispositiu actual. <br>L'estil de text es mostrarà amb una de les lletres del sistema, la lletra desada s'utilitzarà quan estigui disponible. <br>Voleu continuar?",
|
||||||
"DE.Controllers.Toolbar.dataUrl": "Enganxa un URL de dades",
|
"DE.Controllers.Toolbar.dataUrl": "Enganxa un URL de dades",
|
||||||
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Advertiment",
|
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Advertiment",
|
||||||
"DE.Controllers.Toolbar.textAccent": "Accents",
|
"DE.Controllers.Toolbar.textAccent": "Accents",
|
||||||
|
@ -1676,7 +1679,7 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.textDistance": "Distància del text",
|
"DE.Views.DropcapSettingsAdvanced.textDistance": "Distància del text",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textExact": "Exacte",
|
"DE.Views.DropcapSettingsAdvanced.textExact": "Exacte",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textFlow": "Marc de flux",
|
"DE.Views.DropcapSettingsAdvanced.textFlow": "Marc de flux",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textFont": "Tipus de lletra",
|
"DE.Views.DropcapSettingsAdvanced.textFont": "Lletra",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textFrame": "Marc",
|
"DE.Views.DropcapSettingsAdvanced.textFrame": "Marc",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textHeight": "Alçada",
|
"DE.Views.DropcapSettingsAdvanced.textHeight": "Alçada",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textHorizontal": "Horitzontal",
|
"DE.Views.DropcapSettingsAdvanced.textHorizontal": "Horitzontal",
|
||||||
|
@ -1699,7 +1702,7 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.textTop": "Superior",
|
"DE.Views.DropcapSettingsAdvanced.textTop": "Superior",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical",
|
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textWidth": "Amplada",
|
"DE.Views.DropcapSettingsAdvanced.textWidth": "Amplada",
|
||||||
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipus de lletra",
|
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Lletra",
|
||||||
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sense vores",
|
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sense vores",
|
||||||
"DE.Views.EditListItemDialog.textDisplayName": "Mostra el nom",
|
"DE.Views.EditListItemDialog.textDisplayName": "Mostra el nom",
|
||||||
"DE.Views.EditListItemDialog.textNameError": "El nom de visualització no pot estar buit.",
|
"DE.Views.EditListItemDialog.textNameError": "El nom de visualització no pot estar buit.",
|
||||||
|
@ -1774,7 +1777,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.okButtonText": "Aplica",
|
"DE.Views.FileMenuPanels.Settings.okButtonText": "Aplica",
|
||||||
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició",
|
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició",
|
||||||
"DE.Views.FileMenuPanels.Settings.strFast": "Ràpid",
|
"DE.Views.FileMenuPanels.Settings.strFast": "Ràpid",
|
||||||
"DE.Views.FileMenuPanels.Settings.strFontRender": "Tipus de lletra suggerides",
|
"DE.Views.FileMenuPanels.Settings.strFontRender": "Lletres suggerides",
|
||||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignora les paraules en MAJÚSCULA",
|
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignora les paraules en MAJÚSCULA",
|
||||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignora les paraules amb números",
|
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignora les paraules amb números",
|
||||||
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros",
|
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros",
|
||||||
|
@ -2123,7 +2126,7 @@
|
||||||
"DE.Views.ListSettingsDialog.txtAlign": "Alineació",
|
"DE.Views.ListSettingsDialog.txtAlign": "Alineació",
|
||||||
"DE.Views.ListSettingsDialog.txtBullet": "Pic",
|
"DE.Views.ListSettingsDialog.txtBullet": "Pic",
|
||||||
"DE.Views.ListSettingsDialog.txtColor": "Color",
|
"DE.Views.ListSettingsDialog.txtColor": "Color",
|
||||||
"DE.Views.ListSettingsDialog.txtFont": "Tipus de lletra i símbol",
|
"DE.Views.ListSettingsDialog.txtFont": "Lletra i símbol",
|
||||||
"DE.Views.ListSettingsDialog.txtLikeText": "Com un text",
|
"DE.Views.ListSettingsDialog.txtLikeText": "Com un text",
|
||||||
"DE.Views.ListSettingsDialog.txtNewBullet": "Crea un pic",
|
"DE.Views.ListSettingsDialog.txtNewBullet": "Crea un pic",
|
||||||
"DE.Views.ListSettingsDialog.txtNone": "Cap",
|
"DE.Views.ListSettingsDialog.txtNone": "Cap",
|
||||||
|
@ -2187,7 +2190,7 @@
|
||||||
"DE.Views.Navigation.txtEmptyViewer": "No hi ha cap títol al document.",
|
"DE.Views.Navigation.txtEmptyViewer": "No hi ha cap títol al document.",
|
||||||
"DE.Views.Navigation.txtExpand": "Expandeix-ho tot",
|
"DE.Views.Navigation.txtExpand": "Expandeix-ho tot",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Expandeix al nivell",
|
"DE.Views.Navigation.txtExpandToLevel": "Expandeix al nivell",
|
||||||
"DE.Views.Navigation.txtFontSize": "Mida del tipus de lletra",
|
"DE.Views.Navigation.txtFontSize": "Mida de la lletra",
|
||||||
"DE.Views.Navigation.txtHeadingAfter": "Crea un títol després",
|
"DE.Views.Navigation.txtHeadingAfter": "Crea un títol després",
|
||||||
"DE.Views.Navigation.txtHeadingBefore": "Crea un títol abans",
|
"DE.Views.Navigation.txtHeadingBefore": "Crea un títol abans",
|
||||||
"DE.Views.Navigation.txtLarge": "Gran",
|
"DE.Views.Navigation.txtLarge": "Gran",
|
||||||
|
@ -2287,7 +2290,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Segueix amb el següent",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Segueix amb el següent",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Espaiats",
|
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Espaiats",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de línies orfes",
|
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de línies orfes",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipus de lletra",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Lletra",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Salts de línia i de pàgina",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Salts de línia i de pàgina",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Ubicació",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Ubicació",
|
||||||
|
@ -2821,18 +2824,18 @@
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "Copia l'estil",
|
"DE.Views.Toolbar.tipCopyStyle": "Copia l'estil",
|
||||||
"DE.Views.Toolbar.tipCut": "Talla",
|
"DE.Views.Toolbar.tipCut": "Talla",
|
||||||
"DE.Views.Toolbar.tipDateTime": "Insereix la data i l'hora actuals",
|
"DE.Views.Toolbar.tipDateTime": "Insereix la data i l'hora actuals",
|
||||||
"DE.Views.Toolbar.tipDecFont": "Redueix la mida del tipus de lletra",
|
"DE.Views.Toolbar.tipDecFont": "Redueix la mida de la lletra",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "Redueix la mida de la sagnia",
|
"DE.Views.Toolbar.tipDecPrLeft": "Redueix la mida de la sagnia",
|
||||||
"DE.Views.Toolbar.tipDropCap": "Insereix lletra de caixa alta",
|
"DE.Views.Toolbar.tipDropCap": "Insereix lletra de caixa alta",
|
||||||
"DE.Views.Toolbar.tipEditHeader": "Edita la capçalera o el peu de pàgina",
|
"DE.Views.Toolbar.tipEditHeader": "Edita la capçalera o el peu de pàgina",
|
||||||
"DE.Views.Toolbar.tipFontColor": "Color del tipus de lletra",
|
"DE.Views.Toolbar.tipFontColor": "Color de la lletra",
|
||||||
"DE.Views.Toolbar.tipFontName": "Tipus de lletra",
|
"DE.Views.Toolbar.tipFontName": "Lletra",
|
||||||
"DE.Views.Toolbar.tipFontSize": "Mida del tipus de lletra",
|
"DE.Views.Toolbar.tipFontSize": "Mida de la lletra",
|
||||||
"DE.Views.Toolbar.tipHighlightColor": "Color de ressaltat",
|
"DE.Views.Toolbar.tipHighlightColor": "Color de ressaltat",
|
||||||
"DE.Views.Toolbar.tipImgAlign": "Alineació d'objectes",
|
"DE.Views.Toolbar.tipImgAlign": "Alineació d'objectes",
|
||||||
"DE.Views.Toolbar.tipImgGroup": "Agrupa objectes",
|
"DE.Views.Toolbar.tipImgGroup": "Agrupa objectes",
|
||||||
"DE.Views.Toolbar.tipImgWrapping": "Ajusta el text",
|
"DE.Views.Toolbar.tipImgWrapping": "Ajusta el text",
|
||||||
"DE.Views.Toolbar.tipIncFont": "Augmenta la mida del tipus de lletra",
|
"DE.Views.Toolbar.tipIncFont": "Augmenta la mida de la lletra",
|
||||||
"DE.Views.Toolbar.tipIncPrLeft": "Augmenta el sagnat",
|
"DE.Views.Toolbar.tipIncPrLeft": "Augmenta el sagnat",
|
||||||
"DE.Views.Toolbar.tipInsertChart": "Insereix un gràfic",
|
"DE.Views.Toolbar.tipInsertChart": "Insereix un gràfic",
|
||||||
"DE.Views.Toolbar.tipInsertEquation": "Insereix una equació",
|
"DE.Views.Toolbar.tipInsertEquation": "Insereix una equació",
|
||||||
|
@ -2842,7 +2845,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertSymbol": "Insereix un símbol",
|
"DE.Views.Toolbar.tipInsertSymbol": "Insereix un símbol",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "Insereix una taula",
|
"DE.Views.Toolbar.tipInsertTable": "Insereix una taula",
|
||||||
"DE.Views.Toolbar.tipInsertText": "Insereix un quadre de text",
|
"DE.Views.Toolbar.tipInsertText": "Insereix un quadre de text",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "Insereix Text Art",
|
"DE.Views.Toolbar.tipInsertTextArt": "Insereix la galeria de text",
|
||||||
"DE.Views.Toolbar.tipLineNumbers": "Mostra els números de línia",
|
"DE.Views.Toolbar.tipLineNumbers": "Mostra els números de línia",
|
||||||
"DE.Views.Toolbar.tipLineSpace": "Interlineat del paràgraf",
|
"DE.Views.Toolbar.tipLineSpace": "Interlineat del paràgraf",
|
||||||
"DE.Views.Toolbar.tipMailRecepients": "Combina la correspondència",
|
"DE.Views.Toolbar.tipMailRecepients": "Combina la correspondència",
|
||||||
|
@ -2919,7 +2922,7 @@
|
||||||
"DE.Views.WatermarkSettingsDialog.textBold": "Negreta",
|
"DE.Views.WatermarkSettingsDialog.textBold": "Negreta",
|
||||||
"DE.Views.WatermarkSettingsDialog.textColor": "Color del text",
|
"DE.Views.WatermarkSettingsDialog.textColor": "Color del text",
|
||||||
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
|
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
|
||||||
"DE.Views.WatermarkSettingsDialog.textFont": "Tipus de lletra",
|
"DE.Views.WatermarkSettingsDialog.textFont": "Lletra",
|
||||||
"DE.Views.WatermarkSettingsDialog.textFromFile": "Des d'un fitxer",
|
"DE.Views.WatermarkSettingsDialog.textFromFile": "Des d'un fitxer",
|
||||||
"DE.Views.WatermarkSettingsDialog.textFromStorage": "Des de l’emmagatzematge",
|
"DE.Views.WatermarkSettingsDialog.textFromStorage": "Des de l’emmagatzematge",
|
||||||
"DE.Views.WatermarkSettingsDialog.textFromUrl": "Des de l'URL",
|
"DE.Views.WatermarkSettingsDialog.textFromUrl": "Des de l'URL",
|
||||||
|
@ -2937,6 +2940,6 @@
|
||||||
"DE.Views.WatermarkSettingsDialog.textTitle": "Configuració de la filigrana",
|
"DE.Views.WatermarkSettingsDialog.textTitle": "Configuració de la filigrana",
|
||||||
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
|
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
|
||||||
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subratllat",
|
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subratllat",
|
||||||
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nom del tipus de lletra",
|
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nom de la lletra",
|
||||||
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida del tipus de lletra"
|
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida de la lletra"
|
||||||
}
|
}
|
|
@ -934,6 +934,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Začátek dokumentu",
|
"DE.Controllers.Navigation.txtBeginning": "Začátek dokumentu",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Přejít na začátek dokumentu",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Přejít na začátek dokumentu",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Varování",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Varování",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Data, která jste hledali, nebyla nalezena. Upravte parametry vyhledávání.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "Hledání bylo provedeno. Provedeno {0} nahrazení",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} není platným speciálním znakem pro nahrazení polem.",
|
"DE.Controllers.Search.warnReplaceString": "{0} není platným speciálním znakem pro nahrazení polem.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Spojení je ztraceno</b><br>Pokus o opětovné připojení. Zkontrolujte nastavení připojení.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>Spojení je ztraceno</b><br>Pokus o opětovné připojení. Zkontrolujte nastavení připojení.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Byly zaznamenány nové změny",
|
"DE.Controllers.Statusbar.textHasChanges": "Byly zaznamenány nové změny",
|
||||||
|
@ -2817,6 +2820,7 @@
|
||||||
"DE.Views.Toolbar.tipControls": "Vložit ovládací prvek obsahu",
|
"DE.Views.Toolbar.tipControls": "Vložit ovládací prvek obsahu",
|
||||||
"DE.Views.Toolbar.tipCopy": "Kopírovat",
|
"DE.Views.Toolbar.tipCopy": "Kopírovat",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "Zkopírovat styl",
|
"DE.Views.Toolbar.tipCopyStyle": "Zkopírovat styl",
|
||||||
|
"DE.Views.Toolbar.tipCut": "Vyjmout",
|
||||||
"DE.Views.Toolbar.tipDateTime": "Vložit aktuální datum a čas",
|
"DE.Views.Toolbar.tipDateTime": "Vložit aktuální datum a čas",
|
||||||
"DE.Views.Toolbar.tipDecFont": "Zmenšit velikost písma",
|
"DE.Views.Toolbar.tipDecFont": "Zmenšit velikost písma",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "Zmenšit odsazení",
|
"DE.Views.Toolbar.tipDecPrLeft": "Zmenšit odsazení",
|
||||||
|
@ -2868,6 +2872,7 @@
|
||||||
"DE.Views.Toolbar.tipRedo": "Znovu",
|
"DE.Views.Toolbar.tipRedo": "Znovu",
|
||||||
"DE.Views.Toolbar.tipSave": "Uložit",
|
"DE.Views.Toolbar.tipSave": "Uložit",
|
||||||
"DE.Views.Toolbar.tipSaveCoauth": "Uložte změny, aby je viděli i ostatní uživatelé.",
|
"DE.Views.Toolbar.tipSaveCoauth": "Uložte změny, aby je viděli i ostatní uživatelé.",
|
||||||
|
"DE.Views.Toolbar.tipSelectAll": "Vybrat vše",
|
||||||
"DE.Views.Toolbar.tipSendBackward": "Přesunout o vrstvu níž",
|
"DE.Views.Toolbar.tipSendBackward": "Přesunout o vrstvu níž",
|
||||||
"DE.Views.Toolbar.tipSendForward": "Přenést o vrstvu výš",
|
"DE.Views.Toolbar.tipSendForward": "Přenést o vrstvu výš",
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Netisknutelné znaky",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Netisknutelné znaky",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonym",
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonym",
|
||||||
"Common.Controllers.ExternalOleEditor.textClose": "Schließen",
|
"Common.Controllers.ExternalOleEditor.textClose": "Schließen",
|
||||||
"Common.Controllers.ExternalOleEditor.warningText": "Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.",
|
"Common.Controllers.ExternalOleEditor.warningText": "Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Achtung",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "Achtung",
|
"Common.Controllers.History.notcriticalErrorTitle": "Achtung",
|
||||||
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Um Dokumente zu vergleichen, gelten alle nachverfolgten Änderungen als akzeptiert. Möchten Sie weiter machen?",
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Um Dokumente zu vergleichen, gelten alle nachverfolgten Änderungen als akzeptiert. Möchten Sie weiter machen?",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "Mindestens",
|
"Common.Controllers.ReviewChanges.textAtLeast": "Mindestens",
|
||||||
|
@ -195,6 +196,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standardfarben",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Standardfarben",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Designfarben",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Designfarben",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Klassisch Hell",
|
"Common.UI.Themes.txtThemeClassicLight": "Klassisch Hell",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "Dunkler Kontrast",
|
||||||
"Common.UI.Themes.txtThemeDark": "Dunkel",
|
"Common.UI.Themes.txtThemeDark": "Dunkel",
|
||||||
"Common.UI.Themes.txtThemeLight": "Hell",
|
"Common.UI.Themes.txtThemeLight": "Hell",
|
||||||
"Common.UI.Themes.txtThemeSystem": "Wie im System",
|
"Common.UI.Themes.txtThemeSystem": "Wie im System",
|
||||||
|
@ -293,6 +295,7 @@
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Seriendruckempfänger",
|
"Common.Views.ExternalMergeEditor.textTitle": "Seriendruckempfänger",
|
||||||
"Common.Views.ExternalOleEditor.textClose": "Schließen",
|
"Common.Views.ExternalOleEditor.textClose": "Schließen",
|
||||||
"Common.Views.ExternalOleEditor.textSave": "Speichern und beenden",
|
"Common.Views.ExternalOleEditor.textSave": "Speichern und beenden",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "Editor der Tabellenkalkulationen",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
|
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
|
||||||
"Common.Views.Header.textAddFavorite": "Als Favorit kennzeichnen",
|
"Common.Views.Header.textAddFavorite": "Als Favorit kennzeichnen",
|
||||||
"Common.Views.Header.textAdvSettings": "Erweiterte Einstellungen",
|
"Common.Views.Header.textAdvSettings": "Erweiterte Einstellungen",
|
||||||
|
@ -352,6 +355,7 @@
|
||||||
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
|
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugins",
|
"Common.Views.Plugins.groupCaption": "Plugins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
"Common.Views.Plugins.strPlugins": "Plugins",
|
||||||
|
"Common.Views.Plugins.textClosePanel": "Plugin schließen",
|
||||||
"Common.Views.Plugins.textLoading": "Ladevorgang",
|
"Common.Views.Plugins.textLoading": "Ladevorgang",
|
||||||
"Common.Views.Plugins.textStart": "Starten",
|
"Common.Views.Plugins.textStart": "Starten",
|
||||||
"Common.Views.Plugins.textStop": "Beenden",
|
"Common.Views.Plugins.textStop": "Beenden",
|
||||||
|
@ -475,6 +479,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "Ersetzen",
|
"Common.Views.SearchPanel.textReplace": "Ersetzen",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "Alle ersetzen",
|
"Common.Views.SearchPanel.textReplaceAll": "Alle ersetzen",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "Ersetzen durch",
|
"Common.Views.SearchPanel.textReplaceWith": "Ersetzen durch",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "Suche abgebrochen",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "Suchergebnisse: {0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "Suchergebnisse: {0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "Es gibt zu viele Ergebnisse, um sie hier zu zeigen",
|
"Common.Views.SearchPanel.textTooManyResults": "Es gibt zu viele Ergebnisse, um sie hier zu zeigen",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "Nur ganze Wörter",
|
"Common.Views.SearchPanel.textWholeWords": "Nur ganze Wörter",
|
||||||
|
@ -930,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Anfang des Dokuments",
|
"DE.Controllers.Navigation.txtBeginning": "Anfang des Dokuments",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Zum Anfang des Dokuments übergehnen",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Zum Anfang des Dokuments übergehnen",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Achtung",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Achtung",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "Die Suche wurde durchgeführt. {0} Einträge wurden ersetzt",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} kann als Sonderzeichen für das Feld \"Ersetzen durch\" nicht verwendet werden.",
|
"DE.Controllers.Search.warnReplaceString": "{0} kann als Sonderzeichen für das Feld \"Ersetzen durch\" nicht verwendet werden.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Die Verbindung wurde unterbrochen</b><br>Verbindungsversuch... Bitte Verbindungseinstellungen überprüfen.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>Die Verbindung wurde unterbrochen</b><br>Verbindungsversuch... Bitte Verbindungseinstellungen überprüfen.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Neue Änderungen wurden zurückverfolgt",
|
"DE.Controllers.Statusbar.textHasChanges": "Neue Änderungen wurden zurückverfolgt",
|
||||||
|
@ -1776,6 +1784,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen",
|
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Änderungen bei der Echtzeit-Zusammenarbeit zeigen",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Änderungen bei der Echtzeit-Zusammenarbeit zeigen",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "Kommentare im Text anzeigen",
|
"DE.Views.FileMenuPanels.Settings.strShowComments": "Kommentare im Text anzeigen",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Änderungen von anderen Benutzern anzeigen",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Gelöste Kommentare anzeigen",
|
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Gelöste Kommentare anzeigen",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Formal",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "Formal",
|
||||||
"DE.Views.FileMenuPanels.Settings.strTheme": "Thema der Benutzeroberfläche",
|
"DE.Views.FileMenuPanels.Settings.strTheme": "Thema der Benutzeroberfläche",
|
||||||
|
@ -1828,6 +1837,7 @@
|
||||||
"DE.Views.FormSettings.textAlways": "Immer",
|
"DE.Views.FormSettings.textAlways": "Immer",
|
||||||
"DE.Views.FormSettings.textAspect": "Seitenverhältnis sperren",
|
"DE.Views.FormSettings.textAspect": "Seitenverhältnis sperren",
|
||||||
"DE.Views.FormSettings.textAtLeast": "Mindestens",
|
"DE.Views.FormSettings.textAtLeast": "Mindestens",
|
||||||
|
"DE.Views.FormSettings.textAuto": "auto",
|
||||||
"DE.Views.FormSettings.textAutofit": "Automatisch anpassen",
|
"DE.Views.FormSettings.textAutofit": "Automatisch anpassen",
|
||||||
"DE.Views.FormSettings.textBackgroundColor": "Hintergrundfarbe",
|
"DE.Views.FormSettings.textBackgroundColor": "Hintergrundfarbe",
|
||||||
"DE.Views.FormSettings.textCheckbox": "Kontrollkästchen",
|
"DE.Views.FormSettings.textCheckbox": "Kontrollkästchen",
|
||||||
|
@ -1857,6 +1867,7 @@
|
||||||
"DE.Views.FormSettings.textRequired": "Erforderlich",
|
"DE.Views.FormSettings.textRequired": "Erforderlich",
|
||||||
"DE.Views.FormSettings.textScale": "Wann skalieren",
|
"DE.Views.FormSettings.textScale": "Wann skalieren",
|
||||||
"DE.Views.FormSettings.textSelectImage": "Bild auswählen",
|
"DE.Views.FormSettings.textSelectImage": "Bild auswählen",
|
||||||
|
"DE.Views.FormSettings.textTag": "Tag",
|
||||||
"DE.Views.FormSettings.textTip": "Tipp",
|
"DE.Views.FormSettings.textTip": "Tipp",
|
||||||
"DE.Views.FormSettings.textTipAdd": "Neuen Wert hinzufügen",
|
"DE.Views.FormSettings.textTipAdd": "Neuen Wert hinzufügen",
|
||||||
"DE.Views.FormSettings.textTipDelete": "Den Wert löschen",
|
"DE.Views.FormSettings.textTipDelete": "Den Wert löschen",
|
||||||
|
@ -2292,6 +2303,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Zeilennummerierung verbieten",
|
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Zeilennummerierung verbieten",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulatoren",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulatoren",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Ausrichtung",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Ausrichtung",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAll": "Alle",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Mindestens",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Mindestens",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Mehrfach",
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Mehrfach",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Hintergrundfarbe",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Hintergrundfarbe",
|
||||||
|
@ -2302,23 +2314,39 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Unten",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Unten",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Zentriert",
|
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Zentriert",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Zeichenabstand",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Zeichenabstand",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContext": "Kontextbezogene",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontextbezogene und freie",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontextbezogene, historische und freie",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Kontextbezogene und historische",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standardregisterkarte",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standardregisterkarte",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Freie",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effekte",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effekte",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textExact": "Genau",
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "Genau",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Erste Zeile",
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Erste Zeile",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Hängend",
|
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Hängend",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historische",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historische und freie",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Blocksatz",
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Blocksatz",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Füllzeichen",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Füllzeichen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Ebene",
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Ebene",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Doppelbuchstaben",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "Kein",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "Kein",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(kein)",
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(kein)",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType-Funktionen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Löschen",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Löschen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alle löschen",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alle löschen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRight": "Rechts",
|
"DE.Views.ParagraphSettingsAdvanced.textRight": "Rechts",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textSet": "Angeben",
|
"DE.Views.ParagraphSettingsAdvanced.textSet": "Angeben",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Abstand",
|
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Abstand",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Nur standartisierte",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standartisierte und kontextbezogene",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standartisierte, kontextbezogene und freie",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standartisierte, kontextbezogene und historische",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standartisierte und freie",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standartisierte, historische und freie",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standartisierte und historische",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Zenter",
|
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Zenter",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Links",
|
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Links",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tabulatorposition",
|
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tabulatorposition",
|
||||||
|
@ -2794,6 +2822,7 @@
|
||||||
"DE.Views.Toolbar.tipControls": "Inhaltssteuerelemente einfügen",
|
"DE.Views.Toolbar.tipControls": "Inhaltssteuerelemente einfügen",
|
||||||
"DE.Views.Toolbar.tipCopy": "Kopieren",
|
"DE.Views.Toolbar.tipCopy": "Kopieren",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "Format übertragen",
|
"DE.Views.Toolbar.tipCopyStyle": "Format übertragen",
|
||||||
|
"DE.Views.Toolbar.tipCut": "Ausschneiden",
|
||||||
"DE.Views.Toolbar.tipDateTime": "Die aktuellen Datum und Uhrzeit einfügen",
|
"DE.Views.Toolbar.tipDateTime": "Die aktuellen Datum und Uhrzeit einfügen",
|
||||||
"DE.Views.Toolbar.tipDecFont": "Schriftart verkleinern",
|
"DE.Views.Toolbar.tipDecFont": "Schriftart verkleinern",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "Einzug verkleinern",
|
"DE.Views.Toolbar.tipDecPrLeft": "Einzug verkleinern",
|
||||||
|
@ -2845,6 +2874,7 @@
|
||||||
"DE.Views.Toolbar.tipRedo": "Wiederholen",
|
"DE.Views.Toolbar.tipRedo": "Wiederholen",
|
||||||
"DE.Views.Toolbar.tipSave": "Speichern",
|
"DE.Views.Toolbar.tipSave": "Speichern",
|
||||||
"DE.Views.Toolbar.tipSaveCoauth": "Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.",
|
"DE.Views.Toolbar.tipSaveCoauth": "Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.",
|
||||||
|
"DE.Views.Toolbar.tipSelectAll": "Alles auswählen",
|
||||||
"DE.Views.Toolbar.tipSendBackward": "Eine Ebene nach hinten",
|
"DE.Views.Toolbar.tipSendBackward": "Eine Ebene nach hinten",
|
||||||
"DE.Views.Toolbar.tipSendForward": "Eine Ebene nach vorne",
|
"DE.Views.Toolbar.tipSendForward": "Eine Ebene nach vorne",
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Formatierungszeichen",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Formatierungszeichen",
|
||||||
|
|
|
@ -935,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Principio del documento",
|
"DE.Controllers.Navigation.txtBeginning": "Principio del documento",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Advertencia",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Advertencia",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "Se realizó la búsqueda. {0} ocurrencias se sustituyeron",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} no es un carácter especial válido para la casilla Reemplazar con.",
|
"DE.Controllers.Search.warnReplaceString": "{0} no es un carácter especial válido para la casilla Reemplazar con.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Se ha perdido la conexión</b><br>Intentando conectar. Por favor compruebe la configuración de la conexión.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>Se ha perdido la conexión</b><br>Intentando conectar. Por favor compruebe la configuración de la conexión.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Nuevos cambios han sido encontrado",
|
"DE.Controllers.Statusbar.textHasChanges": "Nuevos cambios han sido encontrado",
|
||||||
|
@ -2369,7 +2372,7 @@
|
||||||
"DE.Views.RightMenu.txtShapeSettings": "Ajustes de forma",
|
"DE.Views.RightMenu.txtShapeSettings": "Ajustes de forma",
|
||||||
"DE.Views.RightMenu.txtSignatureSettings": "Configuración de firma",
|
"DE.Views.RightMenu.txtSignatureSettings": "Configuración de firma",
|
||||||
"DE.Views.RightMenu.txtTableSettings": "Ajustes de tabla",
|
"DE.Views.RightMenu.txtTableSettings": "Ajustes de tabla",
|
||||||
"DE.Views.RightMenu.txtTextArtSettings": "Ajustes de arte de texto",
|
"DE.Views.RightMenu.txtTextArtSettings": "Ajustes de galería de texto",
|
||||||
"DE.Views.ShapeSettings.strBackground": "Color de fondo",
|
"DE.Views.ShapeSettings.strBackground": "Color de fondo",
|
||||||
"DE.Views.ShapeSettings.strChange": "Cambiar autoforma",
|
"DE.Views.ShapeSettings.strChange": "Cambiar autoforma",
|
||||||
"DE.Views.ShapeSettings.strColor": "Color",
|
"DE.Views.ShapeSettings.strColor": "Color",
|
||||||
|
@ -2692,7 +2695,7 @@
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "Forma",
|
"DE.Views.Toolbar.capBtnInsShape": "Forma",
|
||||||
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
|
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "Tabla",
|
"DE.Views.Toolbar.capBtnInsTable": "Tabla",
|
||||||
"DE.Views.Toolbar.capBtnInsTextart": "Texto Arte",
|
"DE.Views.Toolbar.capBtnInsTextart": "Galería de Texto",
|
||||||
"DE.Views.Toolbar.capBtnInsTextbox": "Cuadro de Texto",
|
"DE.Views.Toolbar.capBtnInsTextbox": "Cuadro de Texto",
|
||||||
"DE.Views.Toolbar.capBtnLineNumbers": "Numeración de Líneas",
|
"DE.Views.Toolbar.capBtnLineNumbers": "Numeración de Líneas",
|
||||||
"DE.Views.Toolbar.capBtnMargins": "Márgenes",
|
"DE.Views.Toolbar.capBtnMargins": "Márgenes",
|
||||||
|
@ -2842,7 +2845,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertSymbol": "Insertar Symboló",
|
"DE.Views.Toolbar.tipInsertSymbol": "Insertar Symboló",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "Insertar tabla",
|
"DE.Views.Toolbar.tipInsertTable": "Insertar tabla",
|
||||||
"DE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
|
"DE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "Insertar Texto Arte",
|
"DE.Views.Toolbar.tipInsertTextArt": "Insertar Galería de Texto",
|
||||||
"DE.Views.Toolbar.tipLineNumbers": "Mostrar números de línea",
|
"DE.Views.Toolbar.tipLineNumbers": "Mostrar números de línea",
|
||||||
"DE.Views.Toolbar.tipLineSpace": "Espaciado de línea de párrafo",
|
"DE.Views.Toolbar.tipLineSpace": "Espaciado de línea de párrafo",
|
||||||
"DE.Views.Toolbar.tipMailRecepients": "Combinación de Correspondencia",
|
"DE.Views.Toolbar.tipMailRecepients": "Combinación de Correspondencia",
|
||||||
|
|
|
@ -935,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Dokumentuaren hasiera",
|
"DE.Controllers.Navigation.txtBeginning": "Dokumentuaren hasiera",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Joan dokumentuaren hasierara",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Joan dokumentuaren hasierara",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Abisua",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Abisua",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Bilatu duzun datua ezin izan da aurkitu. Doitu bilaketaren ezarpenak.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "Ordezkapena burutu da. {0} agerraldi saltatu dira.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "Bilaketa burutu da. {0} agerraldi ordeztu dira",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} ez da baliozko karaktere berezi bat Ordezkatu honekin kaxarako.",
|
"DE.Controllers.Search.warnReplaceString": "{0} ez da baliozko karaktere berezi bat Ordezkatu honekin kaxarako.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Konexioa galdu da</b><br>Saiatu berriz konektatzen. Egiaztatu konexioaren ezarpenak.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>Konexioa galdu da</b><br>Saiatu berriz konektatzen. Egiaztatu konexioaren ezarpenak.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Aldaketa berriak aurkitu dira",
|
"DE.Controllers.Statusbar.textHasChanges": "Aldaketa berriak aurkitu dira",
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.textClose": "Fermer",
|
"Common.Controllers.ExternalMergeEditor.textClose": "Fermer",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningText": "L'objet est désactivé car il est en cours de modification par un autre utilisateur.",
|
"Common.Controllers.ExternalMergeEditor.warningText": "L'objet est désactivé car il est en cours de modification par un autre utilisateur.",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "Avertissement",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "Avertissement",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonyme",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "Fermer",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "L'objet est désactivé, car il est en cours de modification par un autre utilisateur.",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Avertissement",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "Avertissement",
|
"Common.Controllers.History.notcriticalErrorTitle": "Avertissement",
|
||||||
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Pour comparer les documents, toutes les modifications apportées seront considérées comme acceptées. Voulez-vous continuer ?",
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Pour comparer les documents, toutes les modifications apportées seront considérées comme acceptées. Voulez-vous continuer ?",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "au moins ",
|
"Common.Controllers.ReviewChanges.textAtLeast": "au moins ",
|
||||||
|
@ -192,6 +196,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Couleurs standard",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Couleurs standard",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Couleurs de thème",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Couleurs de thème",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Classique clair",
|
"Common.UI.Themes.txtThemeClassicLight": "Classique clair",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "Contraste sombre",
|
||||||
"Common.UI.Themes.txtThemeDark": "Sombre",
|
"Common.UI.Themes.txtThemeDark": "Sombre",
|
||||||
"Common.UI.Themes.txtThemeLight": "Clair",
|
"Common.UI.Themes.txtThemeLight": "Clair",
|
||||||
"Common.UI.Themes.txtThemeSystem": "Identique à système",
|
"Common.UI.Themes.txtThemeSystem": "Identique à système",
|
||||||
|
@ -207,6 +212,9 @@
|
||||||
"Common.UI.Window.yesButtonText": "Oui",
|
"Common.UI.Window.yesButtonText": "Oui",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
|
"Common.Utils.String.textAlt": "Alt",
|
||||||
|
"Common.Utils.String.textCtrl": "Ctrl",
|
||||||
|
"Common.Utils.String.textShift": "Shift",
|
||||||
"Common.Views.About.txtAddress": "adresse: ",
|
"Common.Views.About.txtAddress": "adresse: ",
|
||||||
"Common.Views.About.txtLicensee": "CESSIONNAIRE",
|
"Common.Views.About.txtLicensee": "CESSIONNAIRE",
|
||||||
"Common.Views.About.txtLicensor": "CONCÉDANT",
|
"Common.Views.About.txtLicensor": "CONCÉDANT",
|
||||||
|
@ -285,6 +293,9 @@
|
||||||
"Common.Views.ExternalMergeEditor.textClose": "Fermer",
|
"Common.Views.ExternalMergeEditor.textClose": "Fermer",
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Enregistrer et quitter",
|
"Common.Views.ExternalMergeEditor.textSave": "Enregistrer et quitter",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Destinataires de fusion et publipostage",
|
"Common.Views.ExternalMergeEditor.textTitle": "Destinataires de fusion et publipostage",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "Fermer",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "Enregistrer et quitter",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "Tableur",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par les utilisateurs suivants :",
|
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par les utilisateurs suivants :",
|
||||||
"Common.Views.Header.textAddFavorite": "Marquer en tant que favori",
|
"Common.Views.Header.textAddFavorite": "Marquer en tant que favori",
|
||||||
"Common.Views.Header.textAdvSettings": "Paramètres avancés",
|
"Common.Views.Header.textAdvSettings": "Paramètres avancés",
|
||||||
|
@ -411,17 +422,17 @@
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
||||||
"Common.Views.ReviewChanges.txtHistory": "Historique des versions",
|
"Common.Views.ReviewChanges.txtHistory": "Historique des versions",
|
||||||
"Common.Views.ReviewChanges.txtMarkup": "Toutes les modifications {0}",
|
"Common.Views.ReviewChanges.txtMarkup": "Toutes les modifications {0}",
|
||||||
"Common.Views.ReviewChanges.txtMarkupCap": "Balisage et ballons",
|
"Common.Views.ReviewChanges.txtMarkupCap": "Balisage et bulles",
|
||||||
"Common.Views.ReviewChanges.txtMarkupSimple": "Tous les changements {0}<br>Pas de ballons",
|
"Common.Views.ReviewChanges.txtMarkupSimple": "Tous les changements {0}<br>Pas de ballons",
|
||||||
"Common.Views.ReviewChanges.txtMarkupSimpleCap": "Balisage uniquement",
|
"Common.Views.ReviewChanges.txtMarkupSimpleCap": "Balisage uniquement",
|
||||||
"Common.Views.ReviewChanges.txtNext": "À la modification suivante",
|
"Common.Views.ReviewChanges.txtNext": "Suivante",
|
||||||
"Common.Views.ReviewChanges.txtOff": "OFF pour moi ",
|
"Common.Views.ReviewChanges.txtOff": "OFF pour moi ",
|
||||||
"Common.Views.ReviewChanges.txtOffGlobal": "OFF pour moi et tout le monde",
|
"Common.Views.ReviewChanges.txtOffGlobal": "OFF pour moi et tout le monde",
|
||||||
"Common.Views.ReviewChanges.txtOn": "ON pour moi ",
|
"Common.Views.ReviewChanges.txtOn": "ON pour moi ",
|
||||||
"Common.Views.ReviewChanges.txtOnGlobal": "ON pour moi et tout le monde",
|
"Common.Views.ReviewChanges.txtOnGlobal": "ON pour moi et tout le monde",
|
||||||
"Common.Views.ReviewChanges.txtOriginal": "Toutes les modifications rejetées {0}",
|
"Common.Views.ReviewChanges.txtOriginal": "Toutes les modifications rejetées {0}",
|
||||||
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
|
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
|
||||||
"Common.Views.ReviewChanges.txtPrev": "À la modification précédente",
|
"Common.Views.ReviewChanges.txtPrev": "Précédente",
|
||||||
"Common.Views.ReviewChanges.txtPreview": "Aperçu",
|
"Common.Views.ReviewChanges.txtPreview": "Aperçu",
|
||||||
"Common.Views.ReviewChanges.txtReject": "Rejeter",
|
"Common.Views.ReviewChanges.txtReject": "Rejeter",
|
||||||
"Common.Views.ReviewChanges.txtRejectAll": "Refuser tous les changements",
|
"Common.Views.ReviewChanges.txtRejectAll": "Refuser tous les changements",
|
||||||
|
@ -468,6 +479,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "Remplacer",
|
"Common.Views.SearchPanel.textReplace": "Remplacer",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "Remplacer tout",
|
"Common.Views.SearchPanel.textReplaceAll": "Remplacer tout",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "Remplacer par",
|
"Common.Views.SearchPanel.textReplaceWith": "Remplacer par",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "La recherche a été arrêtée",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "Résultats de la recherche : {0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "Résultats de la recherche : {0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "Il y a trop de résultats pour les montrer ici",
|
"Common.Views.SearchPanel.textTooManyResults": "Il y a trop de résultats pour les montrer ici",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "Mots entiers uniquement",
|
"Common.Views.SearchPanel.textWholeWords": "Mots entiers uniquement",
|
||||||
|
@ -588,7 +600,7 @@
|
||||||
"DE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.<br>Veuillez contacter l'administrateur de Document Server.",
|
"DE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de votre Document Server.",
|
"DE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de votre Document Server.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
|
"DE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
|
||||||
"DE.Controllers.Main.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.Controllers.Main.errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée.<br>Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier",
|
"DE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
|
"DE.Controllers.Main.errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.",
|
"DE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.",
|
||||||
|
@ -923,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Début du document",
|
"DE.Controllers.Navigation.txtBeginning": "Début du document",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Aller au début du document",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Aller au début du document",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Avertissement",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Avertissement",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Les données que vous recherchez n'ont pas pu être trouvées. Veuillez modifier vos options de recherche.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "La recherche a été effectuée. {0} occurrences ont été remplacées",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} n'est pas un caractère spécial valide pour la case Remplacer par.",
|
"DE.Controllers.Search.warnReplaceString": "{0} n'est pas un caractère spécial valide pour la case Remplacer par.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>La connexion est perdue</b><br>Tentative de connexion. Veuillez vérifier les paramètres de connexion.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>La connexion est perdue</b><br>Tentative de connexion. Veuillez vérifier les paramètres de connexion.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Nouveaux changements ont été suivis",
|
"DE.Controllers.Statusbar.textHasChanges": "Nouveaux changements ont été suivis",
|
||||||
|
@ -1769,6 +1784,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Afficher le bouton \"Options de collage\" lorsque le contenu est collé ",
|
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Afficher le bouton \"Options de collage\" lorsque le contenu est collé ",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Visibilité des modifications en co-édition",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Visibilité des modifications en co-édition",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "Afficher les commentaires dans le texte",
|
"DE.Views.FileMenuPanels.Settings.strShowComments": "Afficher les commentaires dans le texte",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Afficher les modifications apportées par d'autres utilisateurs",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Afficher les commentaires résolus",
|
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Afficher les commentaires résolus",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Strict",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "Strict",
|
||||||
"DE.Views.FileMenuPanels.Settings.strTheme": "Thème d’interface",
|
"DE.Views.FileMenuPanels.Settings.strTheme": "Thème d’interface",
|
||||||
|
@ -1820,6 +1836,8 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Espace de travail",
|
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Espace de travail",
|
||||||
"DE.Views.FormSettings.textAlways": "Toujours",
|
"DE.Views.FormSettings.textAlways": "Toujours",
|
||||||
"DE.Views.FormSettings.textAspect": "Verrouiller les proportions",
|
"DE.Views.FormSettings.textAspect": "Verrouiller les proportions",
|
||||||
|
"DE.Views.FormSettings.textAtLeast": "Au moins ",
|
||||||
|
"DE.Views.FormSettings.textAuto": "Automatique",
|
||||||
"DE.Views.FormSettings.textAutofit": "Ajuster automatiquement",
|
"DE.Views.FormSettings.textAutofit": "Ajuster automatiquement",
|
||||||
"DE.Views.FormSettings.textBackgroundColor": "Couleur d'arrière-plan",
|
"DE.Views.FormSettings.textBackgroundColor": "Couleur d'arrière-plan",
|
||||||
"DE.Views.FormSettings.textCheckbox": "Case à cocher",
|
"DE.Views.FormSettings.textCheckbox": "Case à cocher",
|
||||||
|
@ -1830,6 +1848,7 @@
|
||||||
"DE.Views.FormSettings.textDelete": "Supprimer",
|
"DE.Views.FormSettings.textDelete": "Supprimer",
|
||||||
"DE.Views.FormSettings.textDisconnect": "Déconnexion ",
|
"DE.Views.FormSettings.textDisconnect": "Déconnexion ",
|
||||||
"DE.Views.FormSettings.textDropDown": "Déroulant",
|
"DE.Views.FormSettings.textDropDown": "Déroulant",
|
||||||
|
"DE.Views.FormSettings.textExact": "Exactement",
|
||||||
"DE.Views.FormSettings.textField": "Champ texte",
|
"DE.Views.FormSettings.textField": "Champ texte",
|
||||||
"DE.Views.FormSettings.textFixed": "Taille de champ fixe",
|
"DE.Views.FormSettings.textFixed": "Taille de champ fixe",
|
||||||
"DE.Views.FormSettings.textFromFile": "Depuis un fichier",
|
"DE.Views.FormSettings.textFromFile": "Depuis un fichier",
|
||||||
|
@ -2284,6 +2303,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Supprimer les numéros des lignes",
|
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Supprimer les numéros des lignes",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAll": "Tout",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Au moins ",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Au moins ",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ",
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan",
|
||||||
|
@ -2294,23 +2314,39 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "En bas",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "En bas",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centré",
|
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centré",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contextuels",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextuels et discrétionnaires",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextuels, historiques et discrétionnaires",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextuels et historiques",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discrétionnaires",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactement",
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactement",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Première ligne",
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Première ligne",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Suspendu",
|
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Suspendu",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historiques",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historiques et discrétionnaires",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Justifié",
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Justifié",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Points de suite",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Points de suite",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "A gauche",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "A gauche",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Niveau",
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Niveau",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "Aucune",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "Aucune",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(aucun)",
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(aucun)",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "Fonctionnalités OpenType",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Supprimer",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Supprimer",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRight": "A droite",
|
"DE.Views.ParagraphSettingsAdvanced.textRight": "A droite",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier",
|
"DE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espacement",
|
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espacement",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Standards uniquement",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standards et contextuelles",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standards, contextuelles et discrétionnaires",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standards, contextuelles et historiques",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standards et discrétionnaires",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standards, historiques et discrétionnaires",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standards et historiques",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre",
|
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche",
|
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
|
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
|
||||||
|
@ -2786,6 +2822,7 @@
|
||||||
"DE.Views.Toolbar.tipControls": "Insérer des contrôles de contenu",
|
"DE.Views.Toolbar.tipControls": "Insérer des contrôles de contenu",
|
||||||
"DE.Views.Toolbar.tipCopy": "Copier",
|
"DE.Views.Toolbar.tipCopy": "Copier",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "Copier le style",
|
"DE.Views.Toolbar.tipCopyStyle": "Copier le style",
|
||||||
|
"DE.Views.Toolbar.tipCut": "Couper",
|
||||||
"DE.Views.Toolbar.tipDateTime": "Inserer la date et l'heure actuelle",
|
"DE.Views.Toolbar.tipDateTime": "Inserer la date et l'heure actuelle",
|
||||||
"DE.Views.Toolbar.tipDecFont": "Réduire la taille de la police",
|
"DE.Views.Toolbar.tipDecFont": "Réduire la taille de la police",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "Réduire le retrait",
|
"DE.Views.Toolbar.tipDecPrLeft": "Réduire le retrait",
|
||||||
|
@ -2837,6 +2874,7 @@
|
||||||
"DE.Views.Toolbar.tipRedo": "Rétablir",
|
"DE.Views.Toolbar.tipRedo": "Rétablir",
|
||||||
"DE.Views.Toolbar.tipSave": "Enregistrer",
|
"DE.Views.Toolbar.tipSave": "Enregistrer",
|
||||||
"DE.Views.Toolbar.tipSaveCoauth": "Enregistrez vos modifications pour que les autres utilisateurs puissent les voir.",
|
"DE.Views.Toolbar.tipSaveCoauth": "Enregistrez vos modifications pour que les autres utilisateurs puissent les voir.",
|
||||||
|
"DE.Views.Toolbar.tipSelectAll": "Sélectionner tout",
|
||||||
"DE.Views.Toolbar.tipSendBackward": "Envoyer vers l'arrière.",
|
"DE.Views.Toolbar.tipSendBackward": "Envoyer vers l'arrière.",
|
||||||
"DE.Views.Toolbar.tipSendForward": "Déplacer vers l'avant",
|
"DE.Views.Toolbar.tipSendForward": "Déplacer vers l'avant",
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Caractères non imprimables",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Caractères non imprimables",
|
||||||
|
|
|
@ -935,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Dokumentum eleje",
|
"DE.Controllers.Navigation.txtBeginning": "Dokumentum eleje",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Ugorj a dokumentum elejére",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Ugorj a dokumentum elejére",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Figyelmeztetés",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "A keresett adatot nem sikerült megtalálni. Kérjük, módosítsa a keresési beállításokat.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "A keresés megtörtént. {0} eredmények lettek kicserélve",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} nem használható speciális karakterként a \"Csere mezőben\".",
|
"DE.Controllers.Search.warnReplaceString": "{0} nem használható speciális karakterként a \"Csere mezőben\".",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>A kapcsolat megszakadt</b><br>Megpróbálok kapcsolódni. Kérjük, ellenőrizze a kapcsolat beállításait.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>A kapcsolat megszakadt</b><br>Megpróbálok kapcsolódni. Kérjük, ellenőrizze a kapcsolat beállításait.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Új módosítások történtek",
|
"DE.Controllers.Statusbar.textHasChanges": "Új módosítások történtek",
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.textClose": "Փակել",
|
"Common.Controllers.ExternalMergeEditor.textClose": "Փակել",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningText": "Օբյեկտն անջատված է, քանի որ այն խմբագրվում է մեկ այլ օգտվողի կողմից:",
|
"Common.Controllers.ExternalMergeEditor.warningText": "Օբյեկտն անջատված է, քանի որ այն խմբագրվում է մեկ այլ օգտվողի կողմից:",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "Զգուշացում",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "Զգուշացում",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Անանուն",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "Փակել",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "Օբյեկտն անջատված է, քանի որ այն խմբագրվում է մեկ այլ օգտվողի կողմից:",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Զգուշացում",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "Զգուշացում",
|
"Common.Controllers.History.notcriticalErrorTitle": "Զգուշացում",
|
||||||
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Փաստաթղթերը համեմատելու համար դրանցում հետևված բոլոր փոփոխությունները կհամարվեն ընդունված:Ցանկանու՞մ եք շարունակել։",
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Փաստաթղթերը համեմատելու համար դրանցում հետևված բոլոր փոփոխությունները կհամարվեն ընդունված:Ցանկանու՞մ եք շարունակել։",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "առնվազն",
|
"Common.Controllers.ReviewChanges.textAtLeast": "առնվազն",
|
||||||
|
@ -285,6 +289,9 @@
|
||||||
"Common.Views.ExternalMergeEditor.textClose": "Փակել",
|
"Common.Views.ExternalMergeEditor.textClose": "Փակել",
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Պահպանել և դուրս գալ",
|
"Common.Views.ExternalMergeEditor.textSave": "Պահպանել և դուրս գալ",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Փոստի միավորման հաղորդագրություն ստացողներ",
|
"Common.Views.ExternalMergeEditor.textTitle": "Փոստի միավորման հաղորդագրություն ստացողներ",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "Փակել",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "Պահպանել և դուրս գալ",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "Աղյուսակաթերթի խմբագիր",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝",
|
"Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝",
|
||||||
"Common.Views.Header.textAddFavorite": "Նշել որպես հավանած տարբերակ",
|
"Common.Views.Header.textAddFavorite": "Նշել որպես հավանած տարբերակ",
|
||||||
"Common.Views.Header.textAdvSettings": "Լրացուցիչ կարգավորումներ",
|
"Common.Views.Header.textAdvSettings": "Լրացուցիչ կարգավորումներ",
|
||||||
|
@ -923,6 +930,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Փաստաթղթի սկիզբ",
|
"DE.Controllers.Navigation.txtBeginning": "Փաստաթղթի սկիզբ",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Գնալ փաստաթղթի սկիզբ",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Գնալ փաստաթղթի սկիզբ",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Զգուշացում",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Զգուշացում",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "Որոնումը կատարվել է։ {0} դեպք փոխարինվել է",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{k}-ը վավեր գրանշան չէ Փոխարինել տուփի համար:",
|
"DE.Controllers.Search.warnReplaceString": "{k}-ը վավեր գրանշան չէ Փոխարինել տուփի համար:",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "Կապը ընդատվել է</b><br> Փորձում է միանալ: Խնդրում ենք ստուգել կապի կարգավորումները:",
|
"DE.Controllers.Statusbar.textDisconnect": "Կապը ընդատվել է</b><br> Փորձում է միանալ: Խնդրում ենք ստուգել կապի կարգավորումները:",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Նոր փոփոխությունները հետևվել են",
|
"DE.Controllers.Statusbar.textHasChanges": "Նոր փոփոխությունները հետևվել են",
|
||||||
|
@ -1820,6 +1830,8 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Աշխատատարածք",
|
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Աշխատատարածք",
|
||||||
"DE.Views.FormSettings.textAlways": "Միշտ",
|
"DE.Views.FormSettings.textAlways": "Միշտ",
|
||||||
"DE.Views.FormSettings.textAspect": "Պահպանեք համամասնությունները",
|
"DE.Views.FormSettings.textAspect": "Պահպանեք համամասնությունները",
|
||||||
|
"DE.Views.FormSettings.textAtLeast": "առնվազն",
|
||||||
|
"DE.Views.FormSettings.textAuto": "Ավտոմատ",
|
||||||
"DE.Views.FormSettings.textAutofit": "Ինքնահարմարեցում",
|
"DE.Views.FormSettings.textAutofit": "Ինքնահարմարեցում",
|
||||||
"DE.Views.FormSettings.textBackgroundColor": "Փոնի գույն",
|
"DE.Views.FormSettings.textBackgroundColor": "Փոնի գույն",
|
||||||
"DE.Views.FormSettings.textCheckbox": "Ստուգանիշ",
|
"DE.Views.FormSettings.textCheckbox": "Ստուգանիշ",
|
||||||
|
@ -1830,6 +1842,7 @@
|
||||||
"DE.Views.FormSettings.textDelete": "Ջնջել",
|
"DE.Views.FormSettings.textDelete": "Ջնջել",
|
||||||
"DE.Views.FormSettings.textDisconnect": "Անջատել",
|
"DE.Views.FormSettings.textDisconnect": "Անջատել",
|
||||||
"DE.Views.FormSettings.textDropDown": "Բացվող",
|
"DE.Views.FormSettings.textDropDown": "Բացվող",
|
||||||
|
"DE.Views.FormSettings.textExact": "ճշգրիտ",
|
||||||
"DE.Views.FormSettings.textField": "Տեքստի դաշտ",
|
"DE.Views.FormSettings.textField": "Տեքստի դաշտ",
|
||||||
"DE.Views.FormSettings.textFixed": "ֆիքսված չափի դաշտ",
|
"DE.Views.FormSettings.textFixed": "ֆիքսված չափի դաշտ",
|
||||||
"DE.Views.FormSettings.textFromFile": "Ֆայլից",
|
"DE.Views.FormSettings.textFromFile": "Ֆայլից",
|
||||||
|
@ -2284,6 +2297,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Հեռացնել տողի համարները",
|
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Հեռացնել տողի համարները",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "ՆԵՐԴԻՐՆԵՐ",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "ՆԵՐԴԻՐՆԵՐ",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Հավասարեցում",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Հավասարեցում",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAll": "Բոլորը",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Առնվազն",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Առնվազն",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Բազմակի",
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Բազմակի",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Խորքի գույն",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Խորքի գույն",
|
||||||
|
@ -2786,6 +2800,7 @@
|
||||||
"DE.Views.Toolbar.tipControls": "Զետեղել բովանդակության կառավարներ",
|
"DE.Views.Toolbar.tipControls": "Զետեղել բովանդակության կառավարներ",
|
||||||
"DE.Views.Toolbar.tipCopy": "Պատճենել",
|
"DE.Views.Toolbar.tipCopy": "Պատճենել",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "Պատճենել ոճը",
|
"DE.Views.Toolbar.tipCopyStyle": "Պատճենել ոճը",
|
||||||
|
"DE.Views.Toolbar.tipCut": "Կտրել",
|
||||||
"DE.Views.Toolbar.tipDateTime": "Տեղադրել ընթացիկ ամսաթիվը և ժամը",
|
"DE.Views.Toolbar.tipDateTime": "Տեղադրել ընթացիկ ամսաթիվը և ժամը",
|
||||||
"DE.Views.Toolbar.tipDecFont": "Փոքրացնել տառաչափը",
|
"DE.Views.Toolbar.tipDecFont": "Փոքրացնել տառաչափը",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "Փոքրացնել նահանջը",
|
"DE.Views.Toolbar.tipDecPrLeft": "Փոքրացնել նահանջը",
|
||||||
|
@ -2837,6 +2852,7 @@
|
||||||
"DE.Views.Toolbar.tipRedo": "Վերարկել",
|
"DE.Views.Toolbar.tipRedo": "Վերարկել",
|
||||||
"DE.Views.Toolbar.tipSave": "Պահպանել",
|
"DE.Views.Toolbar.tipSave": "Պահպանել",
|
||||||
"DE.Views.Toolbar.tipSaveCoauth": "Պահպանեք բոլոր փոփոխումները, որպեսզի այլ օգտատերեր տեսնեն դրանք։",
|
"DE.Views.Toolbar.tipSaveCoauth": "Պահպանեք բոլոր փոփոխումները, որպեսզի այլ օգտատերեր տեսնեն դրանք։",
|
||||||
|
"DE.Views.Toolbar.tipSelectAll": "Ընտրել բոլորը",
|
||||||
"DE.Views.Toolbar.tipSendBackward": "ՈՒղարկել հետ",
|
"DE.Views.Toolbar.tipSendBackward": "ՈՒղարկել հետ",
|
||||||
"DE.Views.Toolbar.tipSendForward": "Բերել առաջ",
|
"DE.Views.Toolbar.tipSendForward": "Բերել առաջ",
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Չտպվող գրանշաններ",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Չտպվող գրանշաններ",
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.textClose": "Chiudi",
|
"Common.Controllers.ExternalMergeEditor.textClose": "Chiudi",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningText": "L'oggetto è disabilitato perché un altro utente lo sta modificando.",
|
"Common.Controllers.ExternalMergeEditor.warningText": "L'oggetto è disabilitato perché un altro utente lo sta modificando.",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "Avviso",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "Avviso",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonimo",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "Chiudere",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "L'oggetto è disabilitato perché è stato modificato da un altro utente.",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Avvertimento",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "Avviso",
|
"Common.Controllers.History.notcriticalErrorTitle": "Avviso",
|
||||||
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Al fine di confrontare i documenti, tutte le modifiche rilevate verranno considerate accettate. Vuoi continuare?",
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Al fine di confrontare i documenti, tutte le modifiche rilevate verranno considerate accettate. Vuoi continuare?",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "Minima",
|
"Common.Controllers.ReviewChanges.textAtLeast": "Minima",
|
||||||
|
@ -192,6 +196,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Colori standard",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Colori standard",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Luce leggera",
|
"Common.UI.Themes.txtThemeClassicLight": "Luce leggera",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "Contrasto scuro",
|
||||||
"Common.UI.Themes.txtThemeDark": "Scuro",
|
"Common.UI.Themes.txtThemeDark": "Scuro",
|
||||||
"Common.UI.Themes.txtThemeLight": "Chiaro",
|
"Common.UI.Themes.txtThemeLight": "Chiaro",
|
||||||
"Common.UI.Themes.txtThemeSystem": "Uguale al sistema",
|
"Common.UI.Themes.txtThemeSystem": "Uguale al sistema",
|
||||||
|
@ -207,6 +212,9 @@
|
||||||
"Common.UI.Window.yesButtonText": "Sì",
|
"Common.UI.Window.yesButtonText": "Sì",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
|
"Common.Utils.String.textAlt": "Alt",
|
||||||
|
"Common.Utils.String.textCtrl": "Ctrl",
|
||||||
|
"Common.Utils.String.textShift": "Shift",
|
||||||
"Common.Views.About.txtAddress": "indirizzo: ",
|
"Common.Views.About.txtAddress": "indirizzo: ",
|
||||||
"Common.Views.About.txtLicensee": "LICENZIATARIO",
|
"Common.Views.About.txtLicensee": "LICENZIATARIO",
|
||||||
"Common.Views.About.txtLicensor": "CONCEDENTE",
|
"Common.Views.About.txtLicensor": "CONCEDENTE",
|
||||||
|
@ -285,6 +293,9 @@
|
||||||
"Common.Views.ExternalMergeEditor.textClose": "Chiudi",
|
"Common.Views.ExternalMergeEditor.textClose": "Chiudi",
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Salva ed esci",
|
"Common.Views.ExternalMergeEditor.textSave": "Salva ed esci",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Destinatari Stampa unione",
|
"Common.Views.ExternalMergeEditor.textTitle": "Destinatari Stampa unione",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "Chiudere",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "Salvare ed uscire",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "Editor di fogli di calcolo",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
|
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
|
||||||
"Common.Views.Header.textAddFavorite": "Segna come preferito",
|
"Common.Views.Header.textAddFavorite": "Segna come preferito",
|
||||||
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
|
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
|
||||||
|
@ -468,6 +479,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "Sostituisci",
|
"Common.Views.SearchPanel.textReplace": "Sostituisci",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "Sostituisci tutto",
|
"Common.Views.SearchPanel.textReplaceAll": "Sostituisci tutto",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "Sostituire con",
|
"Common.Views.SearchPanel.textReplaceWith": "Sostituire con",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "La ricerca è stata interrotta",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "Ci sono troppi risultati per essere mostrati qui",
|
"Common.Views.SearchPanel.textTooManyResults": "Ci sono troppi risultati per essere mostrati qui",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "Solo parole intere",
|
"Common.Views.SearchPanel.textWholeWords": "Solo parole intere",
|
||||||
|
@ -588,7 +600,7 @@
|
||||||
"DE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
"DE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
"DE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.",
|
"DE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.",
|
||||||
"DE.Controllers.Main.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, quindi ricaricare questa pagina.",
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso, quindi ricarica questa pagina.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "Impossibile accedere al file in questo momento.",
|
"DE.Controllers.Main.errorUserDrop": "Impossibile accedere al file in questo momento.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "È stato superato il numero di utenti consentito dal piano tariffario",
|
"DE.Controllers.Main.errorUsersExceed": "È stato superato il numero di utenti consentito dal piano tariffario",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
|
"DE.Controllers.Main.errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
|
||||||
|
@ -923,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Inizio del documento",
|
"DE.Controllers.Navigation.txtBeginning": "Inizio del documento",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Vai all'inizio del documento",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Vai all'inizio del documento",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Avviso",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Avviso",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Impossibile trovare i dati che stavi cercando. Ti preghiamo di modificare le opzioni di ricerca.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "La sostituzione è stata effettuata. {0} ricorrenze sono state saltate.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "La ricerca è stata effettuata. {0} occorrenze sono state sostituite",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} non è un carattere speciale valido per la casella Sostituire con.",
|
"DE.Controllers.Search.warnReplaceString": "{0} non è un carattere speciale valido per la casella Sostituire con.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Connessione persa</b><br>Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>Connessione persa</b><br>Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Sono state rilevate nuove modifiche",
|
"DE.Controllers.Statusbar.textHasChanges": "Sono state rilevate nuove modifiche",
|
||||||
|
@ -1769,6 +1784,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato",
|
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Evidenzia modifiche di collaborazione in tempo reale",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Evidenzia modifiche di collaborazione in tempo reale",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "Mostrare i commenti nel testo",
|
"DE.Views.FileMenuPanels.Settings.strShowComments": "Mostrare i commenti nel testo",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Mostrare le modifiche degli altri utenti",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Mostrare i commenti risolti",
|
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Mostrare i commenti risolti",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Rigorosa",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "Rigorosa",
|
||||||
"DE.Views.FileMenuPanels.Settings.strTheme": "Tema dell'interfaccia",
|
"DE.Views.FileMenuPanels.Settings.strTheme": "Tema dell'interfaccia",
|
||||||
|
@ -1820,6 +1836,8 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Spazio di lavoro",
|
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Spazio di lavoro",
|
||||||
"DE.Views.FormSettings.textAlways": "Sempre",
|
"DE.Views.FormSettings.textAlways": "Sempre",
|
||||||
"DE.Views.FormSettings.textAspect": "Blocca proporzioni",
|
"DE.Views.FormSettings.textAspect": "Blocca proporzioni",
|
||||||
|
"DE.Views.FormSettings.textAtLeast": "Almeno",
|
||||||
|
"DE.Views.FormSettings.textAuto": "Automatico",
|
||||||
"DE.Views.FormSettings.textAutofit": "adattare automaticamente",
|
"DE.Views.FormSettings.textAutofit": "adattare automaticamente",
|
||||||
"DE.Views.FormSettings.textBackgroundColor": "Colore di sfondo",
|
"DE.Views.FormSettings.textBackgroundColor": "Colore di sfondo",
|
||||||
"DE.Views.FormSettings.textCheckbox": "Casella di controllo",
|
"DE.Views.FormSettings.textCheckbox": "Casella di controllo",
|
||||||
|
@ -1830,6 +1848,7 @@
|
||||||
"DE.Views.FormSettings.textDelete": "Elimina",
|
"DE.Views.FormSettings.textDelete": "Elimina",
|
||||||
"DE.Views.FormSettings.textDisconnect": "Disconnetti",
|
"DE.Views.FormSettings.textDisconnect": "Disconnetti",
|
||||||
"DE.Views.FormSettings.textDropDown": "Menù a discesca",
|
"DE.Views.FormSettings.textDropDown": "Menù a discesca",
|
||||||
|
"DE.Views.FormSettings.textExact": "Esattamente",
|
||||||
"DE.Views.FormSettings.textField": "Campo di testo",
|
"DE.Views.FormSettings.textField": "Campo di testo",
|
||||||
"DE.Views.FormSettings.textFixed": "Dimensione di campo fissa",
|
"DE.Views.FormSettings.textFixed": "Dimensione di campo fissa",
|
||||||
"DE.Views.FormSettings.textFromFile": "Da file",
|
"DE.Views.FormSettings.textFromFile": "Da file",
|
||||||
|
@ -2284,6 +2303,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Sopprimi i numeri di riga",
|
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Sopprimi i numeri di riga",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulazione",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulazione",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Allineamento",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Allineamento",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAll": "Tutti",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Minima",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Minima",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiplo",
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiplo",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Colore sfondo",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Colore sfondo",
|
||||||
|
@ -2294,23 +2314,39 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "In basso",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "In basso",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrato",
|
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrato",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spaziatura caratteri",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spaziatura caratteri",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contestuali",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contestuali e discrezionali",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contestuali, storici e discrezionali",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contestuali e storici",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Scheda predefinita",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Scheda predefinita",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discrezionali",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effetti",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effetti",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textExact": "Esatto",
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "Esatto",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prima riga",
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prima riga",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Sospensione",
|
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Sospensione",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Storici",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Storici e discrezionali",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Giustificato",
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Giustificato",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "A sinistra",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "A sinistra",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Livello",
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Livello",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Legature",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "Nessuno",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "Nessuno",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nessuna)",
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nessuna)",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "Caratteristiche OpenType",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posizione",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posizione",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Elimina",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Elimina",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Elimina tutto",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Elimina tutto",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRight": "A destra",
|
"DE.Views.ParagraphSettingsAdvanced.textRight": "A destra",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textSet": "Specifica",
|
"DE.Views.ParagraphSettingsAdvanced.textSet": "Specifica",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spaziatura",
|
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spaziatura",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Solo standard",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard e contestuali",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, contestuali e discrezionali",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, contestuali e discrezionali",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard e discrezionali",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, storici e discrezionali",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard e storici",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Al centro",
|
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Al centro",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "A sinistra",
|
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "A sinistra",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posizione della scheda",
|
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posizione della scheda",
|
||||||
|
@ -2786,6 +2822,7 @@
|
||||||
"DE.Views.Toolbar.tipControls": "Inserisci i controlli del contenuto",
|
"DE.Views.Toolbar.tipControls": "Inserisci i controlli del contenuto",
|
||||||
"DE.Views.Toolbar.tipCopy": "Copia",
|
"DE.Views.Toolbar.tipCopy": "Copia",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "Copia stile",
|
"DE.Views.Toolbar.tipCopyStyle": "Copia stile",
|
||||||
|
"DE.Views.Toolbar.tipCut": "Tagliare",
|
||||||
"DE.Views.Toolbar.tipDateTime": "Inserisci data e ora correnti",
|
"DE.Views.Toolbar.tipDateTime": "Inserisci data e ora correnti",
|
||||||
"DE.Views.Toolbar.tipDecFont": "Riduci dimensione caratteri",
|
"DE.Views.Toolbar.tipDecFont": "Riduci dimensione caratteri",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "Riduci rientro",
|
"DE.Views.Toolbar.tipDecPrLeft": "Riduci rientro",
|
||||||
|
@ -2837,6 +2874,7 @@
|
||||||
"DE.Views.Toolbar.tipRedo": "Ripristina",
|
"DE.Views.Toolbar.tipRedo": "Ripristina",
|
||||||
"DE.Views.Toolbar.tipSave": "Salva",
|
"DE.Views.Toolbar.tipSave": "Salva",
|
||||||
"DE.Views.Toolbar.tipSaveCoauth": "Salva i tuoi cambiamenti per renderli disponibili agli altri utenti.",
|
"DE.Views.Toolbar.tipSaveCoauth": "Salva i tuoi cambiamenti per renderli disponibili agli altri utenti.",
|
||||||
|
"DE.Views.Toolbar.tipSelectAll": "Selezionare tutto",
|
||||||
"DE.Views.Toolbar.tipSendBackward": "Porta indietro",
|
"DE.Views.Toolbar.tipSendBackward": "Porta indietro",
|
||||||
"DE.Views.Toolbar.tipSendForward": "Porta avanti",
|
"DE.Views.Toolbar.tipSendForward": "Porta avanti",
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Caratteri non stampabili",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Caratteri non stampabili",
|
||||||
|
|
|
@ -196,6 +196,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "標準色",
|
"Common.UI.ThemeColorPalette.textStandartColors": "標準色",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "テーマの色",
|
"Common.UI.ThemeColorPalette.textThemeColors": "テーマの色",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)",
|
"Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "ダークコントラスト",
|
||||||
"Common.UI.Themes.txtThemeDark": "暗い",
|
"Common.UI.Themes.txtThemeDark": "暗い",
|
||||||
"Common.UI.Themes.txtThemeLight": "明るい",
|
"Common.UI.Themes.txtThemeLight": "明るい",
|
||||||
"Common.UI.Themes.txtThemeSystem": "システム設定と同じ",
|
"Common.UI.Themes.txtThemeSystem": "システム設定と同じ",
|
||||||
|
@ -354,6 +355,7 @@
|
||||||
"Common.Views.PluginDlg.textLoading": "読み込み中",
|
"Common.Views.PluginDlg.textLoading": "読み込み中",
|
||||||
"Common.Views.Plugins.groupCaption": "プラグイン",
|
"Common.Views.Plugins.groupCaption": "プラグイン",
|
||||||
"Common.Views.Plugins.strPlugins": "プラグイン",
|
"Common.Views.Plugins.strPlugins": "プラグイン",
|
||||||
|
"Common.Views.Plugins.textClosePanel": "プラグインを閉じる",
|
||||||
"Common.Views.Plugins.textLoading": "読み込み中",
|
"Common.Views.Plugins.textLoading": "読み込み中",
|
||||||
"Common.Views.Plugins.textStart": "開始",
|
"Common.Views.Plugins.textStart": "開始",
|
||||||
"Common.Views.Plugins.textStop": "停止",
|
"Common.Views.Plugins.textStop": "停止",
|
||||||
|
@ -477,6 +479,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "置換する",
|
"Common.Views.SearchPanel.textReplace": "置換する",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "全てを置換する",
|
"Common.Views.SearchPanel.textReplaceAll": "全てを置換する",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "置換後の文字列",
|
"Common.Views.SearchPanel.textReplaceWith": "置換後の文字列",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "検索が停止しました",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "検索結果:{0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "検索結果:{0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "検索結果が多すぎるため、ここに表示できません",
|
"Common.Views.SearchPanel.textTooManyResults": "検索結果が多すぎるため、ここに表示できません",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "単語全体のみ",
|
"Common.Views.SearchPanel.textWholeWords": "単語全体のみ",
|
||||||
|
@ -932,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "文書の先頭",
|
"DE.Controllers.Navigation.txtBeginning": "文書の先頭",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動する",
|
"DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動する",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": " 警告",
|
"DE.Controllers.Search.notcriticalErrorTitle": " 警告",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "検索が実行されました。{0}発生が置換されました。",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0}は、「置換」ボックスで有効な特殊文字ではありません。",
|
"DE.Controllers.Search.warnReplaceString": "{0}は、「置換」ボックスで有効な特殊文字ではありません。",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>接続が切断されました</b><br>接続を試みています。接続設定を確認してください。",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>接続が切断されました</b><br>接続を試みています。接続設定を確認してください。",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "新しい変更点を追記しました",
|
"DE.Controllers.Statusbar.textHasChanges": "新しい変更点を追記しました",
|
||||||
|
@ -1778,6 +1784,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する",
|
"DE.Views.FileMenuPanels.Settings.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "リアルタイム共同編集の変更表示モード",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "リアルタイム共同編集の変更表示モード",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "テキストにコメントを表示する",
|
"DE.Views.FileMenuPanels.Settings.strShowComments": "テキストにコメントを表示する",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "他のユーザーの変更点を表示する",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "解決済みコメントを表示する",
|
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "解決済みコメントを表示する",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "厳格",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "厳格",
|
||||||
"DE.Views.FileMenuPanels.Settings.strTheme": "インターフェイスのテーマ",
|
"DE.Views.FileMenuPanels.Settings.strTheme": "インターフェイスのテーマ",
|
||||||
|
@ -1841,6 +1848,7 @@
|
||||||
"DE.Views.FormSettings.textDelete": "削除する",
|
"DE.Views.FormSettings.textDelete": "削除する",
|
||||||
"DE.Views.FormSettings.textDisconnect": "切断する",
|
"DE.Views.FormSettings.textDisconnect": "切断する",
|
||||||
"DE.Views.FormSettings.textDropDown": "ドロップダウン",
|
"DE.Views.FormSettings.textDropDown": "ドロップダウン",
|
||||||
|
"DE.Views.FormSettings.textExact": "固定値",
|
||||||
"DE.Views.FormSettings.textField": "テキストフィールド",
|
"DE.Views.FormSettings.textField": "テキストフィールド",
|
||||||
"DE.Views.FormSettings.textFixed": "固定サイズのフィールド",
|
"DE.Views.FormSettings.textFixed": "固定サイズのフィールド",
|
||||||
"DE.Views.FormSettings.textFromFile": "ファイルから",
|
"DE.Views.FormSettings.textFromFile": "ファイルから",
|
||||||
|
@ -2053,6 +2061,7 @@
|
||||||
"DE.Views.LeftMenu.tipSupport": "フィードバック&サポート",
|
"DE.Views.LeftMenu.tipSupport": "フィードバック&サポート",
|
||||||
"DE.Views.LeftMenu.tipTitles": "タイトル",
|
"DE.Views.LeftMenu.tipTitles": "タイトル",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "開発者モード",
|
"DE.Views.LeftMenu.txtDeveloper": "開発者モード",
|
||||||
|
"DE.Views.LeftMenu.txtEditor": "ドキュメントエディタ",
|
||||||
"DE.Views.LeftMenu.txtLimit": "制限されたアクセス",
|
"DE.Views.LeftMenu.txtLimit": "制限されたアクセス",
|
||||||
"DE.Views.LeftMenu.txtTrial": "試用モード",
|
"DE.Views.LeftMenu.txtTrial": "試用モード",
|
||||||
"DE.Views.LeftMenu.txtTrialDev": "試用開発者モード",
|
"DE.Views.LeftMenu.txtTrialDev": "試用開発者モード",
|
||||||
|
@ -2305,16 +2314,23 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "下",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "下",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCentered": "中央揃え済み",
|
"DE.Views.ParagraphSettingsAdvanced.textCentered": "中央揃え済み",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "文字間隔",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "文字間隔",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textContext": "コンテキスト",
|
"DE.Views.ParagraphSettingsAdvanced.textContext": "コンテキスト合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "コンテキストおよび随意合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "コンテキスト、履歴および随意合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "コンテキストおよび履歴合字",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "デフォルトのタブ",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "デフォルトのタブ",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "随意合字",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "エフェクト",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "エフェクト",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textExact": "固定値",
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "固定値",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "最初の行",
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "最初の行",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textHanging": "ぶら下げ",
|
"DE.Views.ParagraphSettingsAdvanced.textHanging": "ぶら下げ",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "歴史的合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "歴史的合字と随意合字",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textJustified": "両端揃え",
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "両端揃え",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "埋め草文字",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "埋め草文字",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "左",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "左",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLevel": "レベル",
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "レベル",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "合字",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "なし",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "なし",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(なし)",
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(なし)",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenTypeフォント特性",
|
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenTypeフォント特性",
|
||||||
|
@ -2324,6 +2340,13 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRight": "右",
|
"DE.Views.ParagraphSettingsAdvanced.textRight": "右",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textSet": "指定",
|
"DE.Views.ParagraphSettingsAdvanced.textSet": "指定",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "間隔",
|
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "間隔",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandard": "標準合字のみ",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "標準合字およびコンテキスト合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "標準、コンテキストおよび随意合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "標準、コンテキストおよび履歴合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "標準および随意合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "標準、履歴および随意合字",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "標準および履歴合字",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "中央揃え",
|
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "中央揃え",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "左",
|
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "左",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "タブの位置",
|
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "タブの位置",
|
||||||
|
@ -2701,6 +2724,7 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "ファイルからの画像",
|
"DE.Views.Toolbar.mniImageFromFile": "ファイルからの画像",
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "ストレージから画像",
|
"DE.Views.Toolbar.mniImageFromStorage": "ストレージから画像",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "URLからのファイル",
|
"DE.Views.Toolbar.mniImageFromUrl": "URLからのファイル",
|
||||||
|
"DE.Views.Toolbar.mniInsertSSE": "スプレッドシートを挿入する",
|
||||||
"DE.Views.Toolbar.mniLowerCase": "小文字",
|
"DE.Views.Toolbar.mniLowerCase": "小文字",
|
||||||
"DE.Views.Toolbar.mniRemoveFooter": "フッターの削除",
|
"DE.Views.Toolbar.mniRemoveFooter": "フッターの削除",
|
||||||
"DE.Views.Toolbar.mniRemoveHeader": "ヘッダーの削除",
|
"DE.Views.Toolbar.mniRemoveHeader": "ヘッダーの削除",
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.textClose": "Tutup",
|
"Common.Controllers.ExternalMergeEditor.textClose": "Tutup",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningText": "Objek telah dinyahdaya kerana ia sedang diedit oleh pengguna yang lain.",
|
"Common.Controllers.ExternalMergeEditor.warningText": "Objek telah dinyahdaya kerana ia sedang diedit oleh pengguna yang lain.",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "Amaran",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "Amaran",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Tanpa Nama",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "Tutup",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "Objek telah dinyahdaya kerana ia sedang diedit oleh pengguna yang lain.",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Amaran",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "Amaran",
|
"Common.Controllers.History.notcriticalErrorTitle": "Amaran",
|
||||||
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Bagi membandingkan dokumen semua jejak perubahan dalam dokumen akan dianggap untuk telah diterima. Adakah anda mahu meneruskannya?",
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Bagi membandingkan dokumen semua jejak perubahan dalam dokumen akan dianggap untuk telah diterima. Adakah anda mahu meneruskannya?",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "sekurang-kurangnya",
|
"Common.Controllers.ReviewChanges.textAtLeast": "sekurang-kurangnya",
|
||||||
|
@ -121,6 +125,7 @@
|
||||||
"Common.define.chartData.textScatterSmoothMarker": "Serak dengan garis rata dan penanda",
|
"Common.define.chartData.textScatterSmoothMarker": "Serak dengan garis rata dan penanda",
|
||||||
"Common.define.chartData.textStock": "Stok",
|
"Common.define.chartData.textStock": "Stok",
|
||||||
"Common.define.chartData.textSurface": "Permukaan",
|
"Common.define.chartData.textSurface": "Permukaan",
|
||||||
|
"Common.Translation.textMoreButton": "Selanjutnya",
|
||||||
"Common.Translation.warnFileLocked": "Anda tidak boleh mengedit fail ini kerana ia sedang diedit dalam apl lain.",
|
"Common.Translation.warnFileLocked": "Anda tidak boleh mengedit fail ini kerana ia sedang diedit dalam apl lain.",
|
||||||
"Common.Translation.warnFileLockedBtnEdit": "Cipta Salinan",
|
"Common.Translation.warnFileLockedBtnEdit": "Cipta Salinan",
|
||||||
"Common.Translation.warnFileLockedBtnView": "Buka untuk paparan",
|
"Common.Translation.warnFileLockedBtnView": "Buka untuk paparan",
|
||||||
|
@ -170,6 +175,7 @@
|
||||||
"Common.UI.HSBColorPicker.textNoColor": "Tiada Warna",
|
"Common.UI.HSBColorPicker.textNoColor": "Tiada Warna",
|
||||||
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan",
|
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan",
|
||||||
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan",
|
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan",
|
||||||
|
"Common.UI.SearchBar.textFind": "Cari",
|
||||||
"Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting",
|
"Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting",
|
||||||
"Common.UI.SearchDialog.textMatchCase": "Sensitif huruf",
|
"Common.UI.SearchDialog.textMatchCase": "Sensitif huruf",
|
||||||
"Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian",
|
"Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian",
|
||||||
|
@ -187,6 +193,7 @@
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
|
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
|
||||||
"Common.UI.Themes.txtThemeDark": "Gelap",
|
"Common.UI.Themes.txtThemeDark": "Gelap",
|
||||||
"Common.UI.Themes.txtThemeLight": "Ringan",
|
"Common.UI.Themes.txtThemeLight": "Ringan",
|
||||||
|
"Common.UI.Themes.txtThemeSystem": "Sama seperti Sistem",
|
||||||
"Common.UI.Window.cancelButtonText": "Batalkan",
|
"Common.UI.Window.cancelButtonText": "Batalkan",
|
||||||
"Common.UI.Window.closeButtonText": "Tutup",
|
"Common.UI.Window.closeButtonText": "Tutup",
|
||||||
"Common.UI.Window.noButtonText": "Tidak",
|
"Common.UI.Window.noButtonText": "Tidak",
|
||||||
|
@ -277,6 +284,8 @@
|
||||||
"Common.Views.ExternalMergeEditor.textClose": "Tutup",
|
"Common.Views.ExternalMergeEditor.textClose": "Tutup",
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Simpan & Keluar",
|
"Common.Views.ExternalMergeEditor.textSave": "Simpan & Keluar",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Cantum Mel Penerima",
|
"Common.Views.ExternalMergeEditor.textTitle": "Cantum Mel Penerima",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "Tutup",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "Simpan & Keluar",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:",
|
"Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:",
|
||||||
"Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran",
|
"Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran",
|
||||||
"Common.Views.Header.textAdvSettings": "Seting lanjutan",
|
"Common.Views.Header.textAdvSettings": "Seting lanjutan",
|
||||||
|
@ -285,6 +294,7 @@
|
||||||
"Common.Views.Header.textHideLines": "Sembunyikan Pembaris",
|
"Common.Views.Header.textHideLines": "Sembunyikan Pembaris",
|
||||||
"Common.Views.Header.textHideStatusBar": "Sembunyikan Bar Status",
|
"Common.Views.Header.textHideStatusBar": "Sembunyikan Bar Status",
|
||||||
"Common.Views.Header.textRemoveFavorite": "Alih keluar daripada Kegemaran",
|
"Common.Views.Header.textRemoveFavorite": "Alih keluar daripada Kegemaran",
|
||||||
|
"Common.Views.Header.textShare": "Kongsi",
|
||||||
"Common.Views.Header.textZoom": "Zum",
|
"Common.Views.Header.textZoom": "Zum",
|
||||||
"Common.Views.Header.tipAccessRights": "Uruskan hak akses dokumen",
|
"Common.Views.Header.tipAccessRights": "Uruskan hak akses dokumen",
|
||||||
"Common.Views.Header.tipDownload": "Muat turun fail",
|
"Common.Views.Header.tipDownload": "Muat turun fail",
|
||||||
|
@ -292,6 +302,7 @@
|
||||||
"Common.Views.Header.tipPrint": "Fail cetakan",
|
"Common.Views.Header.tipPrint": "Fail cetakan",
|
||||||
"Common.Views.Header.tipRedo": "Buat Semula",
|
"Common.Views.Header.tipRedo": "Buat Semula",
|
||||||
"Common.Views.Header.tipSave": "Simpan",
|
"Common.Views.Header.tipSave": "Simpan",
|
||||||
|
"Common.Views.Header.tipSearch": "Carian",
|
||||||
"Common.Views.Header.tipUndo": "Buat semula",
|
"Common.Views.Header.tipUndo": "Buat semula",
|
||||||
"Common.Views.Header.tipViewSettings": "Lihat seting",
|
"Common.Views.Header.tipViewSettings": "Lihat seting",
|
||||||
"Common.Views.Header.tipViewUsers": "Lihat pengguna dan uruskan hak akses dokumen",
|
"Common.Views.Header.tipViewUsers": "Lihat pengguna dan uruskan hak akses dokumen",
|
||||||
|
@ -446,6 +457,12 @@
|
||||||
"Common.Views.ReviewPopover.txtReject": "Tolak",
|
"Common.Views.ReviewPopover.txtReject": "Tolak",
|
||||||
"Common.Views.SaveAsDlg.textLoading": "Memuatkan",
|
"Common.Views.SaveAsDlg.textLoading": "Memuatkan",
|
||||||
"Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan",
|
"Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan",
|
||||||
|
"Common.Views.SearchPanel.textCaseSensitive": "Sensitif huruf",
|
||||||
|
"Common.Views.SearchPanel.textFind": "Cari",
|
||||||
|
"Common.Views.SearchPanel.textFindAndReplace": "Cari dan Ganti",
|
||||||
|
"Common.Views.SearchPanel.textReplace": "Gantikan",
|
||||||
|
"Common.Views.SearchPanel.textReplaceAll": "Gantikan Semua",
|
||||||
|
"Common.Views.SearchPanel.textWholeWords": "Seluruh perkataan sahaja",
|
||||||
"Common.Views.SelectFileDlg.textLoading": "Memuatkan",
|
"Common.Views.SelectFileDlg.textLoading": "Memuatkan",
|
||||||
"Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data",
|
"Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data",
|
||||||
"Common.Views.SignDialog.textBold": "Tebal",
|
"Common.Views.SignDialog.textBold": "Tebal",
|
||||||
|
@ -890,6 +907,9 @@
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "Anda telah ditolak hak untuk edit fail.",
|
"DE.Controllers.Main.warnProcessRightsChange": "Anda telah ditolak hak untuk edit fail.",
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Permulaan dokumen",
|
"DE.Controllers.Navigation.txtBeginning": "Permulaan dokumen",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Pergi ke permulaan dokumen",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Pergi ke permulaan dokumen",
|
||||||
|
"DE.Controllers.Search.notcriticalErrorTitle": "Amaran",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Data yang andaa sedang cari tidak dijumpai. Sila laras pilihan carian.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Sambungan telah hilang</b><br>Sedang cuba untuk menyambung. Sila semak seting sambungan.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>Sambungan telah hilang</b><br>Sedang cuba untuk menyambung. Sila semak seting sambungan.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Perubahan baharu telah dijejaki",
|
"DE.Controllers.Statusbar.textHasChanges": "Perubahan baharu telah dijejaki",
|
||||||
"DE.Controllers.Statusbar.textSetTrackChanges": "Anda berada dalam mod Jejak Perubahan",
|
"DE.Controllers.Statusbar.textSetTrackChanges": "Anda berada dalam mod Jejak Perubahan",
|
||||||
|
@ -1724,6 +1744,8 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mod Pengeditan-bersama",
|
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mod Pengeditan-bersama",
|
||||||
"DE.Views.FileMenuPanels.Settings.strFast": "Pantas",
|
"DE.Views.FileMenuPanels.Settings.strFast": "Pantas",
|
||||||
"DE.Views.FileMenuPanels.Settings.strFontRender": "Pembayang Fon",
|
"DE.Views.FileMenuPanels.Settings.strFontRender": "Pembayang Fon",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Abaikan perkataan dalam HURUF BESAR",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Abaikan perkataan dengan nombor",
|
||||||
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Seting Makro",
|
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Seting Makro",
|
||||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Tunjukkan butang Pilihan Tampal di mana kandungan ditampalkan",
|
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Tunjukkan butang Pilihan Tampal di mana kandungan ditampalkan",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Perubahan Kerjasama Masa-sebenar",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Perubahan Kerjasama Masa-sebenar",
|
||||||
|
@ -1748,6 +1770,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Tunjukkan dengan klik dalam belon",
|
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Tunjukkan dengan klik dalam belon",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Tunjukkan dengan mengapung dalam petuaalat",
|
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Tunjukkan dengan mengapung dalam petuaalat",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "Kerjasama",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Hidupkan mod gelap dokumen",
|
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Hidupkan mod gelap dokumen",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Muat kepada Halaman",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Muat kepada Halaman",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Muat kepada Kelebaran",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Muat kepada Kelebaran",
|
||||||
|
@ -1768,6 +1791,8 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows",
|
||||||
"DE.Views.FormSettings.textAlways": "Sentiasa",
|
"DE.Views.FormSettings.textAlways": "Sentiasa",
|
||||||
"DE.Views.FormSettings.textAspect": "Nisbah aspek dikunci",
|
"DE.Views.FormSettings.textAspect": "Nisbah aspek dikunci",
|
||||||
|
"DE.Views.FormSettings.textAtLeast": "sekurang-kurangnya",
|
||||||
|
"DE.Views.FormSettings.textAuto": "auto",
|
||||||
"DE.Views.FormSettings.textAutofit": "AutoMuat",
|
"DE.Views.FormSettings.textAutofit": "AutoMuat",
|
||||||
"DE.Views.FormSettings.textBackgroundColor": "Warna latar belakang",
|
"DE.Views.FormSettings.textBackgroundColor": "Warna latar belakang",
|
||||||
"DE.Views.FormSettings.textCheckbox": "Kotak semak",
|
"DE.Views.FormSettings.textCheckbox": "Kotak semak",
|
||||||
|
@ -1778,6 +1803,7 @@
|
||||||
"DE.Views.FormSettings.textDelete": "Padam",
|
"DE.Views.FormSettings.textDelete": "Padam",
|
||||||
"DE.Views.FormSettings.textDisconnect": "Nyahsambungan",
|
"DE.Views.FormSettings.textDisconnect": "Nyahsambungan",
|
||||||
"DE.Views.FormSettings.textDropDown": "Juntai bawah",
|
"DE.Views.FormSettings.textDropDown": "Juntai bawah",
|
||||||
|
"DE.Views.FormSettings.textExact": "tepat sekali",
|
||||||
"DE.Views.FormSettings.textField": "Medan Teks",
|
"DE.Views.FormSettings.textField": "Medan Teks",
|
||||||
"DE.Views.FormSettings.textFixed": "Tetapkan saiz medan",
|
"DE.Views.FormSettings.textFixed": "Tetapkan saiz medan",
|
||||||
"DE.Views.FormSettings.textFromFile": "Dari Fail",
|
"DE.Views.FormSettings.textFromFile": "Dari Fail",
|
||||||
|
@ -1796,6 +1822,7 @@
|
||||||
"DE.Views.FormSettings.textRequired": "Memerlukan",
|
"DE.Views.FormSettings.textRequired": "Memerlukan",
|
||||||
"DE.Views.FormSettings.textScale": "Apabila untuk mengukur",
|
"DE.Views.FormSettings.textScale": "Apabila untuk mengukur",
|
||||||
"DE.Views.FormSettings.textSelectImage": "Pilih Imej",
|
"DE.Views.FormSettings.textSelectImage": "Pilih Imej",
|
||||||
|
"DE.Views.FormSettings.textTag": "Tag",
|
||||||
"DE.Views.FormSettings.textTip": "Petua",
|
"DE.Views.FormSettings.textTip": "Petua",
|
||||||
"DE.Views.FormSettings.textTipAdd": "Tambah nilai baharu",
|
"DE.Views.FormSettings.textTipAdd": "Tambah nilai baharu",
|
||||||
"DE.Views.FormSettings.textTipDelete": "Padam nilai",
|
"DE.Views.FormSettings.textTipDelete": "Padam nilai",
|
||||||
|
@ -1907,7 +1934,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Penjajaran",
|
"DE.Views.ImageSettingsAdvanced.textAlignment": "Penjajaran",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAlt": "Teks Berselang",
|
"DE.Views.ImageSettingsAdvanced.textAlt": "Teks Berselang",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Perihalan",
|
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Perihalan",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
|
"DE.Views.ImageSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka memahami dengan lebih baik maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Tajuk",
|
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Tajuk",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAngle": "Sudut",
|
"DE.Views.ImageSettingsAdvanced.textAngle": "Sudut",
|
||||||
"DE.Views.ImageSettingsAdvanced.textArrows": "Anak panah",
|
"DE.Views.ImageSettingsAdvanced.textArrows": "Anak panah",
|
||||||
|
@ -1981,6 +2008,7 @@
|
||||||
"DE.Views.LeftMenu.tipChat": "Sembang",
|
"DE.Views.LeftMenu.tipChat": "Sembang",
|
||||||
"DE.Views.LeftMenu.tipComments": "Komen",
|
"DE.Views.LeftMenu.tipComments": "Komen",
|
||||||
"DE.Views.LeftMenu.tipNavigation": "Navigasi",
|
"DE.Views.LeftMenu.tipNavigation": "Navigasi",
|
||||||
|
"DE.Views.LeftMenu.tipOutline": "Pengepala",
|
||||||
"DE.Views.LeftMenu.tipPlugins": "Plug masuk",
|
"DE.Views.LeftMenu.tipPlugins": "Plug masuk",
|
||||||
"DE.Views.LeftMenu.tipSearch": "Carian",
|
"DE.Views.LeftMenu.tipSearch": "Carian",
|
||||||
"DE.Views.LeftMenu.tipSupport": "Maklum Balas & Sokongan",
|
"DE.Views.LeftMenu.tipSupport": "Maklum Balas & Sokongan",
|
||||||
|
@ -2003,6 +2031,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Mulakan pada",
|
"DE.Views.LineNumbersDialog.textStartAt": "Mulakan pada",
|
||||||
"DE.Views.LineNumbersDialog.textTitle": "Nombor Garis",
|
"DE.Views.LineNumbersDialog.textTitle": "Nombor Garis",
|
||||||
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
|
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
|
||||||
|
"DE.Views.Links.capBtnAddText": "Tambah Teks",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Penanda buku",
|
"DE.Views.Links.capBtnBookmarks": "Penanda buku",
|
||||||
"DE.Views.Links.capBtnCaption": "Kapsyen",
|
"DE.Views.Links.capBtnCaption": "Kapsyen",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Kemas kini Jadual",
|
"DE.Views.Links.capBtnContentsUpdate": "Kemas kini Jadual",
|
||||||
|
@ -2037,6 +2066,7 @@
|
||||||
"DE.Views.Links.tipTableFigures": "Sisip jadual rajah",
|
"DE.Views.Links.tipTableFigures": "Sisip jadual rajah",
|
||||||
"DE.Views.Links.tipTableFiguresUpdate": "Kemas Kini Jadual Rajah",
|
"DE.Views.Links.tipTableFiguresUpdate": "Kemas Kini Jadual Rajah",
|
||||||
"DE.Views.Links.titleUpdateTOF": "Kemas Kini Jadual Rajah",
|
"DE.Views.Links.titleUpdateTOF": "Kemas Kini Jadual Rajah",
|
||||||
|
"DE.Views.Links.txtLevel": "Tahap",
|
||||||
"DE.Views.ListSettingsDialog.textAuto": "Automatik",
|
"DE.Views.ListSettingsDialog.textAuto": "Automatik",
|
||||||
"DE.Views.ListSettingsDialog.textCenter": "Pusat",
|
"DE.Views.ListSettingsDialog.textCenter": "Pusat",
|
||||||
"DE.Views.ListSettingsDialog.textLeft": "Kiri",
|
"DE.Views.ListSettingsDialog.textLeft": "Kiri",
|
||||||
|
@ -2099,6 +2129,7 @@
|
||||||
"DE.Views.MailMergeSettings.txtPrev": "Ke rekod sebelumnya",
|
"DE.Views.MailMergeSettings.txtPrev": "Ke rekod sebelumnya",
|
||||||
"DE.Views.MailMergeSettings.txtUntitled": "Tanpa Tajuk",
|
"DE.Views.MailMergeSettings.txtUntitled": "Tanpa Tajuk",
|
||||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Telah gagal memulakan cantum",
|
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Telah gagal memulakan cantum",
|
||||||
|
"DE.Views.Navigation.strNavigate": "Pengepala",
|
||||||
"DE.Views.Navigation.txtCollapse": "Runtuhkan semua",
|
"DE.Views.Navigation.txtCollapse": "Runtuhkan semua",
|
||||||
"DE.Views.Navigation.txtDemote": "Turun aras",
|
"DE.Views.Navigation.txtDemote": "Turun aras",
|
||||||
"DE.Views.Navigation.txtEmpty": "Tidak ada pengepala di dalam dokumen.<br>Gunakan gaya pengepala ke teks supaya ia kelihatan di dalam senarai kandungan.",
|
"DE.Views.Navigation.txtEmpty": "Tidak ada pengepala di dalam dokumen.<br>Gunakan gaya pengepala ke teks supaya ia kelihatan di dalam senarai kandungan.",
|
||||||
|
@ -2106,8 +2137,10 @@
|
||||||
"DE.Views.Navigation.txtEmptyViewer": "Tidak ada pengepala di dalam dokumen.",
|
"DE.Views.Navigation.txtEmptyViewer": "Tidak ada pengepala di dalam dokumen.",
|
||||||
"DE.Views.Navigation.txtExpand": "Kembangkan semua",
|
"DE.Views.Navigation.txtExpand": "Kembangkan semua",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Kembangkan ke tahap",
|
"DE.Views.Navigation.txtExpandToLevel": "Kembangkan ke tahap",
|
||||||
|
"DE.Views.Navigation.txtFontSize": "Saiz fon",
|
||||||
"DE.Views.Navigation.txtHeadingAfter": "Pengepala baharu selepas",
|
"DE.Views.Navigation.txtHeadingAfter": "Pengepala baharu selepas",
|
||||||
"DE.Views.Navigation.txtHeadingBefore": "Pengepala baharu sebelum",
|
"DE.Views.Navigation.txtHeadingBefore": "Pengepala baharu sebelum",
|
||||||
|
"DE.Views.Navigation.txtMedium": "Medium",
|
||||||
"DE.Views.Navigation.txtNewHeading": "Subpengepala baharu",
|
"DE.Views.Navigation.txtNewHeading": "Subpengepala baharu",
|
||||||
"DE.Views.Navigation.txtPromote": "Naikkan aras",
|
"DE.Views.Navigation.txtPromote": "Naikkan aras",
|
||||||
"DE.Views.Navigation.txtSelect": "Pilih kandungan",
|
"DE.Views.Navigation.txtSelect": "Pilih kandungan",
|
||||||
|
@ -2212,6 +2245,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Sekat bilangan garis",
|
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Sekat bilangan garis",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tab",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tab",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Penjajaran",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Penjajaran",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAll": "Semua",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Sekurang-kurangnya",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Sekurang-kurangnya",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Pelbagai",
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Pelbagai",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Warna latar belakang",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Warna latar belakang",
|
||||||
|
@ -2458,7 +2492,7 @@
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Penjarakan antara sel",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Penjarakan antara sel",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlt": "Teks Berselang",
|
"DE.Views.TableSettingsAdvanced.textAlt": "Teks Berselang",
|
||||||
"DE.Views.TableSettingsAdvanced.textAltDescription": "Perihalan",
|
"DE.Views.TableSettingsAdvanced.textAltDescription": "Perihalan",
|
||||||
"DE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
|
"DE.Views.TableSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka memahami dengan lebih baik maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
|
||||||
"DE.Views.TableSettingsAdvanced.textAltTitle": "Tajuk",
|
"DE.Views.TableSettingsAdvanced.textAltTitle": "Tajuk",
|
||||||
"DE.Views.TableSettingsAdvanced.textAnchorText": "Teks",
|
"DE.Views.TableSettingsAdvanced.textAnchorText": "Teks",
|
||||||
"DE.Views.TableSettingsAdvanced.textAutofit": "Saiz semula secara automatik untuk padankan kandungan",
|
"DE.Views.TableSettingsAdvanced.textAutofit": "Saiz semula secara automatik untuk padankan kandungan",
|
||||||
|
@ -2710,6 +2744,7 @@
|
||||||
"DE.Views.Toolbar.tipControls": "Sisipkan kawalan kandungan",
|
"DE.Views.Toolbar.tipControls": "Sisipkan kawalan kandungan",
|
||||||
"DE.Views.Toolbar.tipCopy": "Salin",
|
"DE.Views.Toolbar.tipCopy": "Salin",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "Gaya Salin",
|
"DE.Views.Toolbar.tipCopyStyle": "Gaya Salin",
|
||||||
|
"DE.Views.Toolbar.tipCut": "Potong",
|
||||||
"DE.Views.Toolbar.tipDateTime": "Sisipkan tarikh dan masa semasa",
|
"DE.Views.Toolbar.tipDateTime": "Sisipkan tarikh dan masa semasa",
|
||||||
"DE.Views.Toolbar.tipDecFont": "Pengurangan saiz fon",
|
"DE.Views.Toolbar.tipDecFont": "Pengurangan saiz fon",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "Kurangkan inden",
|
"DE.Views.Toolbar.tipDecPrLeft": "Kurangkan inden",
|
||||||
|
@ -2761,6 +2796,7 @@
|
||||||
"DE.Views.Toolbar.tipRedo": "Buat Semula",
|
"DE.Views.Toolbar.tipRedo": "Buat Semula",
|
||||||
"DE.Views.Toolbar.tipSave": "Simpan",
|
"DE.Views.Toolbar.tipSave": "Simpan",
|
||||||
"DE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan anda untuk pengguna lain melihatnya.",
|
"DE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan anda untuk pengguna lain melihatnya.",
|
||||||
|
"DE.Views.Toolbar.tipSelectAll": "Pilih Semua",
|
||||||
"DE.Views.Toolbar.tipSendBackward": "Hantar ke belakang",
|
"DE.Views.Toolbar.tipSendBackward": "Hantar ke belakang",
|
||||||
"DE.Views.Toolbar.tipSendForward": "Bawa Ke Hadapan",
|
"DE.Views.Toolbar.tipSendForward": "Bawa Ke Hadapan",
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Aksara bukan cetakan",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Aksara bukan cetakan",
|
||||||
|
@ -2800,6 +2836,7 @@
|
||||||
"DE.Views.ViewTab.textFitToWidth": "Muat kepada Kelebaran",
|
"DE.Views.ViewTab.textFitToWidth": "Muat kepada Kelebaran",
|
||||||
"DE.Views.ViewTab.textInterfaceTheme": "Tema antara muka",
|
"DE.Views.ViewTab.textInterfaceTheme": "Tema antara muka",
|
||||||
"DE.Views.ViewTab.textNavigation": "Navigasi",
|
"DE.Views.ViewTab.textNavigation": "Navigasi",
|
||||||
|
"DE.Views.ViewTab.textOutline": "Pengepala",
|
||||||
"DE.Views.ViewTab.textRulers": "Pembaris",
|
"DE.Views.ViewTab.textRulers": "Pembaris",
|
||||||
"DE.Views.ViewTab.textStatusBar": "Bar Status",
|
"DE.Views.ViewTab.textStatusBar": "Bar Status",
|
||||||
"DE.Views.ViewTab.textZoom": "Zum",
|
"DE.Views.ViewTab.textZoom": "Zum",
|
||||||
|
|
|
@ -935,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Início do documento",
|
"DE.Controllers.Navigation.txtBeginning": "Início do documento",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Não foi possível localizar os dados procurados. Ajuste as opções de pesquisa.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "A pesquisa foi concluída. {0} ocorrências foram substituídas",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} não é um carácter especial válido para a janela Substituir com.",
|
"DE.Controllers.Search.warnReplaceString": "{0} não é um carácter especial válido para a janela Substituir com.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Sem ligação</b><br>A tentar ligar. Por favor, verifique as definições da ligação.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>Sem ligação</b><br>A tentar ligar. Por favor, verifique as definições da ligação.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Novas alterações foram encontradas",
|
"DE.Controllers.Statusbar.textHasChanges": "Novas alterações foram encontradas",
|
||||||
|
|
|
@ -353,8 +353,8 @@
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Definir senha",
|
"Common.Views.PasswordDialog.txtTitle": "Definir senha",
|
||||||
"Common.Views.PasswordDialog.txtWarning": "Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.",
|
"Common.Views.PasswordDialog.txtWarning": "Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Carregamento",
|
"Common.Views.PluginDlg.textLoading": "Carregamento",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugins",
|
"Common.Views.Plugins.groupCaption": "Plug-ins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
||||||
"Common.Views.Plugins.textClosePanel": "Fechar plug-in",
|
"Common.Views.Plugins.textClosePanel": "Fechar plug-in",
|
||||||
"Common.Views.Plugins.textLoading": "Carregamento",
|
"Common.Views.Plugins.textLoading": "Carregamento",
|
||||||
"Common.Views.Plugins.textStart": "Iniciar",
|
"Common.Views.Plugins.textStart": "Iniciar",
|
||||||
|
@ -935,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Início do documento",
|
"DE.Controllers.Navigation.txtBeginning": "Início do documento",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
"DE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "A pesquisa foi feita. {0} ocorrências foram substituídas",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0} não é um caractere especial válido para a caixa Substituir por.",
|
"DE.Controllers.Search.warnReplaceString": "{0} não é um caractere especial válido para a caixa Substituir por.",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>A conexão foi perdida</b><br>Tentando conectar. Verifique as configurações de conexão.",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>A conexão foi perdida</b><br>Tentando conectar. Verifique as configurações de conexão.",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
||||||
|
@ -2053,7 +2056,7 @@
|
||||||
"DE.Views.LeftMenu.tipComments": "Comentários",
|
"DE.Views.LeftMenu.tipComments": "Comentários",
|
||||||
"DE.Views.LeftMenu.tipNavigation": "Navegação",
|
"DE.Views.LeftMenu.tipNavigation": "Navegação",
|
||||||
"DE.Views.LeftMenu.tipOutline": "Cabeçalhos",
|
"DE.Views.LeftMenu.tipOutline": "Cabeçalhos",
|
||||||
"DE.Views.LeftMenu.tipPlugins": "Plugins",
|
"DE.Views.LeftMenu.tipPlugins": "Plug-ins",
|
||||||
"DE.Views.LeftMenu.tipSearch": "Pesquisar",
|
"DE.Views.LeftMenu.tipSearch": "Pesquisar",
|
||||||
"DE.Views.LeftMenu.tipSupport": "Feedback e Suporte",
|
"DE.Views.LeftMenu.tipSupport": "Feedback e Suporte",
|
||||||
"DE.Views.LeftMenu.tipTitles": "Títulos",
|
"DE.Views.LeftMenu.tipTitles": "Títulos",
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "警告",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "警告",
|
||||||
"Common.Controllers.ExternalOleEditor.textAnonymous": "匿名",
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "匿名",
|
||||||
"Common.Controllers.ExternalOleEditor.textClose": "關閉",
|
"Common.Controllers.ExternalOleEditor.textClose": "關閉",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "該物件被禁用,因為它正在由另一個帳戶編輯。",
|
||||||
"Common.Controllers.ExternalOleEditor.warningTitle": "警告",
|
"Common.Controllers.ExternalOleEditor.warningTitle": "警告",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "警告",
|
"Common.Controllers.History.notcriticalErrorTitle": "警告",
|
||||||
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "為了比較文檔,所有被跟蹤的更改都將被視為已接受。你想繼續嗎?",
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "為了比較文檔,所有被跟蹤的更改都將被視為已接受。你想繼續嗎?",
|
||||||
|
@ -195,6 +196,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "標準顏色",
|
"Common.UI.ThemeColorPalette.textStandartColors": "標準顏色",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "主題顏色",
|
"Common.UI.ThemeColorPalette.textThemeColors": "主題顏色",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "傳統亮色",
|
"Common.UI.Themes.txtThemeClassicLight": "傳統亮色",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "暗色對比",
|
||||||
"Common.UI.Themes.txtThemeDark": "暗",
|
"Common.UI.Themes.txtThemeDark": "暗",
|
||||||
"Common.UI.Themes.txtThemeLight": "光亮色系",
|
"Common.UI.Themes.txtThemeLight": "光亮色系",
|
||||||
"Common.UI.Themes.txtThemeSystem": "和系統一致",
|
"Common.UI.Themes.txtThemeSystem": "和系統一致",
|
||||||
|
@ -479,6 +481,8 @@
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "替換為",
|
"Common.Views.SearchPanel.textReplaceWith": "替換為",
|
||||||
"Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止",
|
"Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}",
|
||||||
|
"Common.Views.SearchPanel.textTooManyResults": "因數量過多而無法顯示部分結果",
|
||||||
|
"Common.Views.SearchPanel.textWholeWords": "僅使用全字",
|
||||||
"Common.Views.SearchPanel.tipNextResult": "下一個結果",
|
"Common.Views.SearchPanel.tipNextResult": "下一個結果",
|
||||||
"Common.Views.SearchPanel.tipPreviousResult": "上一個結果",
|
"Common.Views.SearchPanel.tipPreviousResult": "上一個結果",
|
||||||
"Common.Views.SelectFileDlg.textLoading": "載入中",
|
"Common.Views.SelectFileDlg.textLoading": "載入中",
|
||||||
|
@ -575,6 +579,7 @@
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。<br>使用“下載為...”選項將文件備份副本保存到計算機硬碟驅動器中。",
|
"DE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。<br>使用“下載為...”選項將文件備份副本保存到計算機硬碟驅動器中。",
|
||||||
"DE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。<br>使用“另存為...”選項將文件備份副本保存到硬碟中。",
|
"DE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。<br>使用“另存為...”選項將文件備份副本保存到硬碟中。",
|
||||||
"DE.Controllers.Main.errorEmailClient": "找不到電子郵件客戶端。",
|
"DE.Controllers.Main.errorEmailClient": "找不到電子郵件客戶端。",
|
||||||
|
"DE.Controllers.Main.errorEmptyTOC": "用選取的文字然後利用樣式庫中的標題風格來創造目錄",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。",
|
"DE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。",
|
||||||
"DE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小<br> 進一步資訊,請聯絡您的文件服務主機的管理者。",
|
"DE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小<br> 進一步資訊,請聯絡您的文件服務主機的管理者。",
|
||||||
"DE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦硬碟中,或稍後再試。",
|
"DE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦硬碟中,或稍後再試。",
|
||||||
|
@ -583,6 +588,7 @@
|
||||||
"DE.Controllers.Main.errorLoadingFont": "字體未加載。<br>請聯繫文件服務器管理員。",
|
"DE.Controllers.Main.errorLoadingFont": "字體未加載。<br>請聯繫文件服務器管理員。",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "文件載入中",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "文件載入中",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "合併失敗.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "合併失敗.",
|
||||||
|
"DE.Controllers.Main.errorNoTOC": "沒有目錄需要更新。你可以從引用頁來插入。",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "儲存失敗",
|
"DE.Controllers.Main.errorProcessSaveResult": "儲存失敗",
|
||||||
"DE.Controllers.Main.errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。",
|
"DE.Controllers.Main.errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。",
|
||||||
"DE.Controllers.Main.errorSessionAbsolute": "此文件編輯的會期已經過時。請重新載入此頁面。",
|
"DE.Controllers.Main.errorSessionAbsolute": "此文件編輯的會期已經過時。請重新載入此頁面。",
|
||||||
|
@ -929,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "文件的開頭",
|
"DE.Controllers.Navigation.txtBeginning": "文件的開頭",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "轉到文檔的開頭",
|
"DE.Controllers.Navigation.txtGotoBeginning": "轉到文檔的開頭",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "警告",
|
"DE.Controllers.Search.notcriticalErrorTitle": "警告",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "找不到您在搜索的數據。請調整您的搜索選項。",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "搜尋完成。 {0}個符合結果已被取代",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0}不是有效的字元",
|
"DE.Controllers.Search.warnReplaceString": "{0}不是有效的字元",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>連線失敗</b><br>正在嘗試連線。請檢查網路連線設定。",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>連線失敗</b><br>正在嘗試連線。請檢查網路連線設定。",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "跟蹤了新的變化",
|
"DE.Controllers.Statusbar.textHasChanges": "跟蹤了新的變化",
|
||||||
|
@ -1774,6 +1783,9 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定",
|
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定",
|
||||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕",
|
"DE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "即時共同編輯設定更新",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "即時共同編輯設定更新",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strShowComments": "在內文中顯示註釋",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "顯示其他用戶的更改",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "顯示已解決的註釋",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "嚴格",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "嚴格",
|
||||||
"DE.Views.FileMenuPanels.Settings.strTheme": "介面主題",
|
"DE.Views.FileMenuPanels.Settings.strTheme": "介面主題",
|
||||||
"DE.Views.FileMenuPanels.Settings.strUnit": "測量單位",
|
"DE.Views.FileMenuPanels.Settings.strUnit": "測量單位",
|
||||||
|
@ -1798,6 +1810,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "共同編輯",
|
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "共同編輯",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "開啟文件夜間模式",
|
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "開啟文件夜間模式",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtEditingSaving": "編輯並儲存",
|
"DE.Views.FileMenuPanels.Settings.txtEditingSaving": "編輯並儲存",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtFastTip": "實時共同編輯,所有變更將自動儲存。",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "切合至頁面",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "切合至頁面",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "切合至寬度",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "切合至寬度",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "特殊符號",
|
"DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "特殊符號",
|
||||||
|
@ -1810,12 +1823,17 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtPt": "點",
|
"DE.Views.FileMenuPanels.Settings.txtPt": "點",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "全部啟用",
|
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "全部啟用",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "不用提示啟用全部巨集",
|
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "不用提示啟用全部巨集",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "顯示追蹤更改",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼字檢查",
|
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼字檢查",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "全部停用",
|
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "全部停用",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "不用提示停用全部巨集",
|
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "不用提示停用全部巨集",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtStrictTip": "使用儲存鍵來同步你和其他用戶的變更",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtUseAltKey": "使用Alt鍵來操控用戶介面",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "使用Option鍵來操控用戶介面",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "顯示通知",
|
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "顯示通知",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "以提示停用全部巨集",
|
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "以提示停用全部巨集",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "作為Windows",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "作為Windows",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "工作空間",
|
||||||
"DE.Views.FormSettings.textAlways": "永遠",
|
"DE.Views.FormSettings.textAlways": "永遠",
|
||||||
"DE.Views.FormSettings.textAspect": "鎖定寬高比",
|
"DE.Views.FormSettings.textAspect": "鎖定寬高比",
|
||||||
"DE.Views.FormSettings.textAtLeast": "至少",
|
"DE.Views.FormSettings.textAtLeast": "至少",
|
||||||
|
@ -2182,6 +2200,7 @@
|
||||||
"DE.Views.Navigation.txtSelect": "選擇內容",
|
"DE.Views.Navigation.txtSelect": "選擇內容",
|
||||||
"DE.Views.Navigation.txtSettings": "標題設置",
|
"DE.Views.Navigation.txtSettings": "標題設置",
|
||||||
"DE.Views.Navigation.txtSmall": "小",
|
"DE.Views.Navigation.txtSmall": "小",
|
||||||
|
"DE.Views.Navigation.txtWrapHeadings": "包覆長的標題",
|
||||||
"DE.Views.NoteSettingsDialog.textApply": "套用",
|
"DE.Views.NoteSettingsDialog.textApply": "套用",
|
||||||
"DE.Views.NoteSettingsDialog.textApplyTo": "套用更改",
|
"DE.Views.NoteSettingsDialog.textApplyTo": "套用更改",
|
||||||
"DE.Views.NoteSettingsDialog.textContinue": "連續",
|
"DE.Views.NoteSettingsDialog.textContinue": "連續",
|
||||||
|
@ -2325,6 +2344,9 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "標準與上下文的",
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "標準與上下文的",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "標準、上下文與任用的",
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "標準、上下文與任用的",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "標準、上下文與歷史的",
|
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "標準、上下文與歷史的",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "標準和任意的",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "標準,歷史和任意的",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "標準和歷史的",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "中心",
|
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "中心",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "左",
|
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "左",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "標籤位置",
|
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "標籤位置",
|
||||||
|
@ -2800,6 +2822,7 @@
|
||||||
"DE.Views.Toolbar.tipControls": "插入內容控件",
|
"DE.Views.Toolbar.tipControls": "插入內容控件",
|
||||||
"DE.Views.Toolbar.tipCopy": "複製",
|
"DE.Views.Toolbar.tipCopy": "複製",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "複製風格",
|
"DE.Views.Toolbar.tipCopyStyle": "複製風格",
|
||||||
|
"DE.Views.Toolbar.tipCut": "剪下",
|
||||||
"DE.Views.Toolbar.tipDateTime": "插入當前日期和時間",
|
"DE.Views.Toolbar.tipDateTime": "插入當前日期和時間",
|
||||||
"DE.Views.Toolbar.tipDecFont": "減少字體大小",
|
"DE.Views.Toolbar.tipDecFont": "減少字體大小",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "減少縮進",
|
"DE.Views.Toolbar.tipDecPrLeft": "減少縮進",
|
||||||
|
@ -2851,6 +2874,7 @@
|
||||||
"DE.Views.Toolbar.tipRedo": "重複",
|
"DE.Views.Toolbar.tipRedo": "重複",
|
||||||
"DE.Views.Toolbar.tipSave": "存檔",
|
"DE.Views.Toolbar.tipSave": "存檔",
|
||||||
"DE.Views.Toolbar.tipSaveCoauth": "儲存您的更改,以供其他帳戶查看。",
|
"DE.Views.Toolbar.tipSaveCoauth": "儲存您的更改,以供其他帳戶查看。",
|
||||||
|
"DE.Views.Toolbar.tipSelectAll": "全選",
|
||||||
"DE.Views.Toolbar.tipSendBackward": "向後發送",
|
"DE.Views.Toolbar.tipSendBackward": "向後發送",
|
||||||
"DE.Views.Toolbar.tipSendForward": "向前進",
|
"DE.Views.Toolbar.tipSendForward": "向前進",
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "非印刷字符",
|
"DE.Views.Toolbar.tipShowHiddenChars": "非印刷字符",
|
||||||
|
|
|
@ -196,6 +196,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "标准颜色",
|
"Common.UI.ThemeColorPalette.textStandartColors": "标准颜色",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "主题颜色",
|
"Common.UI.ThemeColorPalette.textThemeColors": "主题颜色",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "经典浅颜色",
|
"Common.UI.Themes.txtThemeClassicLight": "经典浅颜色",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "暗色对比",
|
||||||
"Common.UI.Themes.txtThemeDark": "暗色模式",
|
"Common.UI.Themes.txtThemeDark": "暗色模式",
|
||||||
"Common.UI.Themes.txtThemeLight": "浅颜色",
|
"Common.UI.Themes.txtThemeLight": "浅颜色",
|
||||||
"Common.UI.Themes.txtThemeSystem": "和系统一致",
|
"Common.UI.Themes.txtThemeSystem": "和系统一致",
|
||||||
|
@ -934,6 +935,9 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "文档开头",
|
"DE.Controllers.Navigation.txtBeginning": "文档开头",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "转到文档开头",
|
"DE.Controllers.Navigation.txtGotoBeginning": "转到文档开头",
|
||||||
"DE.Controllers.Search.notcriticalErrorTitle": "警告",
|
"DE.Controllers.Search.notcriticalErrorTitle": "警告",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "您搜索的数据无法找到。请调整您的搜索选项。",
|
||||||
|
"DE.Controllers.Search.textReplaceSkipped": "替换已完成。 {0}个符合结果被跳过。",
|
||||||
|
"DE.Controllers.Search.textReplaceSuccess": "搜寻已完成。 {0}个符合结果已被取代",
|
||||||
"DE.Controllers.Search.warnReplaceString": "{0}不是有效的规范",
|
"DE.Controllers.Search.warnReplaceString": "{0}不是有效的规范",
|
||||||
"DE.Controllers.Statusbar.textDisconnect": "<b>连接失败</b><br>正在尝试连接。请检查连接设置。",
|
"DE.Controllers.Statusbar.textDisconnect": "<b>连接失败</b><br>正在尝试连接。请检查连接设置。",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "已经跟踪了新的变化",
|
"DE.Controllers.Statusbar.textHasChanges": "已经跟踪了新的变化",
|
||||||
|
@ -1780,6 +1784,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮",
|
"DE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "在文本中显示注释",
|
"DE.Views.FileMenuPanels.Settings.strShowComments": "在文本中显示注释",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "显示其他用户的更改",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "显示已解决的注释",
|
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "显示已解决的注释",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "手动",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "手动",
|
||||||
"DE.Views.FileMenuPanels.Settings.strTheme": "界面主题",
|
"DE.Views.FileMenuPanels.Settings.strTheme": "界面主题",
|
||||||
|
@ -2817,6 +2822,7 @@
|
||||||
"DE.Views.Toolbar.tipControls": "插入内容控件",
|
"DE.Views.Toolbar.tipControls": "插入内容控件",
|
||||||
"DE.Views.Toolbar.tipCopy": "复制",
|
"DE.Views.Toolbar.tipCopy": "复制",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "复制样式",
|
"DE.Views.Toolbar.tipCopyStyle": "复制样式",
|
||||||
|
"DE.Views.Toolbar.tipCut": "剪切",
|
||||||
"DE.Views.Toolbar.tipDateTime": "插入当前日期和时间",
|
"DE.Views.Toolbar.tipDateTime": "插入当前日期和时间",
|
||||||
"DE.Views.Toolbar.tipDecFont": "递减字体大小",
|
"DE.Views.Toolbar.tipDecFont": "递减字体大小",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "减少缩进",
|
"DE.Views.Toolbar.tipDecPrLeft": "减少缩进",
|
||||||
|
@ -2868,6 +2874,7 @@
|
||||||
"DE.Views.Toolbar.tipRedo": "重做",
|
"DE.Views.Toolbar.tipRedo": "重做",
|
||||||
"DE.Views.Toolbar.tipSave": "保存",
|
"DE.Views.Toolbar.tipSave": "保存",
|
||||||
"DE.Views.Toolbar.tipSaveCoauth": "保存您的更改以供其他用户查看",
|
"DE.Views.Toolbar.tipSaveCoauth": "保存您的更改以供其他用户查看",
|
||||||
|
"DE.Views.Toolbar.tipSelectAll": "全选",
|
||||||
"DE.Views.Toolbar.tipSendBackward": "下移一层",
|
"DE.Views.Toolbar.tipSendBackward": "下移一层",
|
||||||
"DE.Views.Toolbar.tipSendForward": "上移一层",
|
"DE.Views.Toolbar.tipSendForward": "上移一层",
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "不打印字符",
|
"DE.Views.Toolbar.tipShowHiddenChars": "不打印字符",
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
"textPictureFromLibrary": "Imatge de la biblioteca",
|
"textPictureFromLibrary": "Imatge de la biblioteca",
|
||||||
"textPictureFromURL": "Imatge de l'URL",
|
"textPictureFromURL": "Imatge de l'URL",
|
||||||
"textPosition": "Posició",
|
"textPosition": "Posició",
|
||||||
"textRightBottom": "Dreta Inferior",
|
"textRightBottom": "Dreta inferior",
|
||||||
"textRightTop": "Dreta superior",
|
"textRightTop": "Dreta superior",
|
||||||
"textRows": "Files",
|
"textRows": "Files",
|
||||||
"textScreenTip": "Consell de pantalla",
|
"textScreenTip": "Consell de pantalla",
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
"textAcceptAllChanges": "Accepta tots els canvis",
|
"textAcceptAllChanges": "Accepta tots els canvis",
|
||||||
"textAddComment": "Afegeix un comentari",
|
"textAddComment": "Afegeix un comentari",
|
||||||
"textAddReply": "Afegeix una resposta",
|
"textAddReply": "Afegeix una resposta",
|
||||||
"textAllChangesAcceptedPreview": "S'han acceptat tots el canvis (Visualització prèvia)",
|
"textAllChangesAcceptedPreview": "S'han acceptat tots els canvis (Visualització prèvia)",
|
||||||
"textAllChangesEditing": "Tots els canvis (Edició)",
|
"textAllChangesEditing": "Tots els canvis (Edició)",
|
||||||
"textAllChangesRejectedPreview": "S'han rebutjat tots els canvis (Visualització prèvia)",
|
"textAllChangesRejectedPreview": "S'han rebutjat tots els canvis (Visualització prèvia)",
|
||||||
"textAtLeast": "pel cap baix",
|
"textAtLeast": "pel cap baix",
|
||||||
|
@ -84,7 +84,7 @@
|
||||||
"textCenter": "Alineació al centre",
|
"textCenter": "Alineació al centre",
|
||||||
"textChart": "Gràfic",
|
"textChart": "Gràfic",
|
||||||
"textCollaboration": "Col·laboració",
|
"textCollaboration": "Col·laboració",
|
||||||
"textColor": "Color del tipus de lletra",
|
"textColor": "Color de la lletra",
|
||||||
"textComments": "Comentaris",
|
"textComments": "Comentaris",
|
||||||
"textContextual": "No afegeixis intervals entre paràgrafs del mateix estil",
|
"textContextual": "No afegeixis intervals entre paràgrafs del mateix estil",
|
||||||
"textDelete": "Suprimeix",
|
"textDelete": "Suprimeix",
|
||||||
|
@ -115,17 +115,17 @@
|
||||||
"textLeft": "Alineació a l'esquerra",
|
"textLeft": "Alineació a l'esquerra",
|
||||||
"textLineSpacing": "Interlineat:",
|
"textLineSpacing": "Interlineat:",
|
||||||
"textMarkup": "Etiquetatge",
|
"textMarkup": "Etiquetatge",
|
||||||
"textMessageDeleteComment": "Segur que vols suprimir aquest comentari?",
|
"textMessageDeleteComment": "Segur que voleu suprimir aquest comentari?",
|
||||||
"textMessageDeleteReply": "Segur que vols suprimir aquesta resposta?",
|
"textMessageDeleteReply": "Segur que voleu suprimir aquesta resposta?",
|
||||||
"textMultiple": "múltiple",
|
"textMultiple": "múltiple",
|
||||||
"textNoBreakBefore": "No hi ha cap salt de pàgina abans",
|
"textNoBreakBefore": "No hi ha cap salt de pàgina abans",
|
||||||
"textNoChanges": "No hi ha canvis.",
|
"textNoChanges": "No hi ha canvis.",
|
||||||
"textNoComments": "Aquest document no conté comentaris",
|
"textNoComments": "Aquest document no té cap comentari",
|
||||||
"textNoContextual": "Afegeix un interval entre els paràgrafs del mateix estil",
|
"textNoContextual": "Afegeix un interval entre els paràgrafs del mateix estil",
|
||||||
"textNoKeepLines": "No mantinguis les línies juntes",
|
"textNoKeepLines": "No mantinguis les línies juntes",
|
||||||
"textNoKeepNext": "No segueixis amb el següent",
|
"textNoKeepNext": "No segueixis amb el següent",
|
||||||
"textNot": "No",
|
"textNot": "No",
|
||||||
"textNoWidow": "No hi ha control de finestra",
|
"textNoWidow": "No hi ha cap control de finestra",
|
||||||
"textNum": "Canvia la numeració",
|
"textNum": "Canvia la numeració",
|
||||||
"textOk": "D'acord",
|
"textOk": "D'acord",
|
||||||
"textOriginal": "Original",
|
"textOriginal": "Original",
|
||||||
|
@ -191,16 +191,16 @@
|
||||||
"menuStartNewList": "Inicia una llista nova",
|
"menuStartNewList": "Inicia una llista nova",
|
||||||
"menuStartNumberingFrom": "Estableix el valor de numeració",
|
"menuStartNumberingFrom": "Estableix el valor de numeració",
|
||||||
"menuViewComment": "Mostra el comentari",
|
"menuViewComment": "Mostra el comentari",
|
||||||
"textCancel": "Cancel·lar",
|
"textCancel": "Cancel·la",
|
||||||
"textColumns": "Columnes",
|
"textColumns": "Columnes",
|
||||||
"textCopyCutPasteActions": "Accions de copia, talla i enganxa ",
|
"textCopyCutPasteActions": "Accions de còpia, talla i enganxa ",
|
||||||
"textDoNotShowAgain": "No ho mostris més",
|
"textDoNotShowAgain": "No ho mostris més",
|
||||||
"textNumberingValue": "Valor de numeració",
|
"textNumberingValue": "Valor de numeració",
|
||||||
"textOk": "D'acord",
|
"textOk": "D'acord",
|
||||||
"textRefreshEntireTable": "Actualitza la taula sencera",
|
"textRefreshEntireTable": "Actualitza la taula sencera",
|
||||||
"textRefreshPageNumbersOnly": "Actualitza només els números de pàgina",
|
"textRefreshPageNumbersOnly": "Actualitza només els números de pàgina",
|
||||||
"textRows": "Files",
|
"textRows": "Files",
|
||||||
"txtWarnUrl": "Fer clic en aquest enllaç pot ser perjudicial per al dispositiu i les dades.<br>Esteu segur que voleu continuar?"
|
"txtWarnUrl": "Fer clic en aquest enllaç pot ser perjudicial per al dispositiu i les dades. <br>Segur que voleu continuar?"
|
||||||
},
|
},
|
||||||
"Edit": {
|
"Edit": {
|
||||||
"notcriticalErrorTitle": "Advertiment",
|
"notcriticalErrorTitle": "Advertiment",
|
||||||
|
@ -225,7 +225,7 @@
|
||||||
"textBandedColumn": "Columna en bandes",
|
"textBandedColumn": "Columna en bandes",
|
||||||
"textBandedRow": "Fila en bandes",
|
"textBandedRow": "Fila en bandes",
|
||||||
"textBefore": "Abans",
|
"textBefore": "Abans",
|
||||||
"textBehind": "Darrere el text",
|
"textBehind": "Darrere del text",
|
||||||
"textBorder": "Vora",
|
"textBorder": "Vora",
|
||||||
"textBringToForeground": "Porta al primer pla",
|
"textBringToForeground": "Porta al primer pla",
|
||||||
"textBullets": "Pics",
|
"textBullets": "Pics",
|
||||||
|
@ -254,15 +254,15 @@
|
||||||
"textEffects": "Efectes",
|
"textEffects": "Efectes",
|
||||||
"textEmpty": "Buit",
|
"textEmpty": "Buit",
|
||||||
"textEmptyImgUrl": "Cal especificar l'URL de la imatge.",
|
"textEmptyImgUrl": "Cal especificar l'URL de la imatge.",
|
||||||
"textEnterTitleNewStyle": "Introdueix un títol o un estil nous",
|
"textEnterTitleNewStyle": "Introduïu un títol o un estil nous",
|
||||||
"textFebruary": "febrer",
|
"textFebruary": "febrer",
|
||||||
"textFill": "Emplena",
|
"textFill": "Emplena",
|
||||||
"textFirstColumn": "Primera columna",
|
"textFirstColumn": "Primera columna",
|
||||||
"textFirstLine": "Primera línia",
|
"textFirstLine": "Primera línia",
|
||||||
"textFlow": "Flux",
|
"textFlow": "Flux",
|
||||||
"textFontColor": "Color del tipus de lletra",
|
"textFontColor": "Color de la lletra",
|
||||||
"textFontColors": "Colors del tipus de lletra",
|
"textFontColors": "Colors de la lletra",
|
||||||
"textFonts": "Tipus de lletra",
|
"textFonts": "Lletra",
|
||||||
"textFooter": "Peu de pàgina",
|
"textFooter": "Peu de pàgina",
|
||||||
"textFormal": "Formal",
|
"textFormal": "Formal",
|
||||||
"textFr": "dv.",
|
"textFr": "dv.",
|
||||||
|
@ -296,7 +296,7 @@
|
||||||
"textMoveWithText": "Mou amb el text",
|
"textMoveWithText": "Mou amb el text",
|
||||||
"textNextParagraphStyle": "Estil de paràgraf següent",
|
"textNextParagraphStyle": "Estil de paràgraf següent",
|
||||||
"textNone": "Cap",
|
"textNone": "Cap",
|
||||||
"textNoStyles": "No hi ha estils per a aquest tipus de gràfics.",
|
"textNoStyles": "No hi ha cap estil per a aquest tipus de gràfics.",
|
||||||
"textNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"",
|
"textNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"",
|
||||||
"textNovember": "novembre",
|
"textNovember": "novembre",
|
||||||
"textNumbers": "Nombres",
|
"textNumbers": "Nombres",
|
||||||
|
@ -305,7 +305,7 @@
|
||||||
"textOnline": "En línia",
|
"textOnline": "En línia",
|
||||||
"textOpacity": "Opacitat",
|
"textOpacity": "Opacitat",
|
||||||
"textOptions": "Opcions",
|
"textOptions": "Opcions",
|
||||||
"textOrphanControl": "Control de línies orfes",
|
"textOrphanControl": "Control de línies òrfenes",
|
||||||
"textPageBreakBefore": "Salt de pàgina anterior",
|
"textPageBreakBefore": "Salt de pàgina anterior",
|
||||||
"textPageNumbering": "Numeració de pàgines",
|
"textPageNumbering": "Numeració de pàgines",
|
||||||
"textPageNumbers": "Números de pàgina",
|
"textPageNumbers": "Números de pàgina",
|
||||||
|
@ -369,38 +369,38 @@
|
||||||
},
|
},
|
||||||
"Error": {
|
"Error": {
|
||||||
"convertationTimeoutText": "S'ha superat el temps de conversió.",
|
"convertationTimeoutText": "S'ha superat el temps de conversió.",
|
||||||
"criticalErrorExtText": "Prem «D'acord» per tornar a la llista de documents.",
|
"criticalErrorExtText": "Premeu «D'acord» per tornar a la llista de documents.",
|
||||||
"criticalErrorTitle": "Error",
|
"criticalErrorTitle": "Error",
|
||||||
"downloadErrorText": "S'ha produït un error en la baixada",
|
"downloadErrorText": "S'ha produït un error en la baixada",
|
||||||
"errorAccessDeny": "No tens permís per realitzar aquesta acció. <br>Contacta amb el teu administrador.",
|
"errorAccessDeny": "No teniu permís per realitzar aquesta acció. <br>Contacteu amb l'administrador.",
|
||||||
"errorBadImageUrl": "L'URL de la imatge no és correcta",
|
"errorBadImageUrl": "L'URL de la imatge no és correcta",
|
||||||
"errorConnectToServer": "No es pot desar aquest doc. Comprova la configuració de la connexió o poseu-vos en contacte amb l'administrador. <br>Quan facis clic a D'acord, et demanarà que baixis el document.",
|
"errorConnectToServer": "No es pot desar aquest document. Comproveu la configuració de la connexió o poseu-vos en contacte amb l'administrador. <br>Quan feu clic a D'acord, us demanarà que baixeu el document.",
|
||||||
"errorDatabaseConnection": "Error extern. <br>Error de connexió amb la base de dades. Contacta amb el servei d'assistència tècnica.",
|
"errorDatabaseConnection": "Error extern. <br>Error de connexió amb la base de dades. Contacteu amb el servei d'assistència tècnica.",
|
||||||
"errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.",
|
"errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.",
|
||||||
"errorDataRange": "L'interval de dades no és correcte.",
|
"errorDataRange": "L'interval de dades no és correcte.",
|
||||||
"errorDefaultMessage": "Codi d'error: %1",
|
"errorDefaultMessage": "Codi d'error: %1",
|
||||||
"errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document. <br> Baixa'l per desar la còpia de seguretat del fitxer localment.",
|
"errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document. <br> Baixa'l per desar la còpia de seguretat del fitxer localment.",
|
||||||
"errorEmptyTOC": "Comenceu a crear una taula de continguts aplicant un estil d'encapçalament de la galeria d'Estils al text seleccionat.",
|
"errorEmptyTOC": "Comenceu a crear una taula de continguts aplicant un estil d'encapçalament de la galeria d'Estils al text seleccionat.",
|
||||||
"errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.",
|
"errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.",
|
||||||
"errorFileSizeExceed": "La mida del fitxer supera el límit del teu servidor. <br>Contacta amb el teu administrador.",
|
"errorFileSizeExceed": "La mida del fitxer supera el límit del teu servidor. <br>Contacteu amb el vostre administrador.",
|
||||||
"errorKeyEncrypt": "Descriptor de claus desconegut",
|
"errorKeyEncrypt": "Descriptor de claus desconegut",
|
||||||
"errorKeyExpire": "El descriptor de claus ha caducat",
|
"errorKeyExpire": "El descriptor de claus ha caducat",
|
||||||
"errorLoadingFont": "No s'han carregat els tipus de lletra.<br> Contacta amb l'administrador del Servidor de Documents.",
|
"errorLoadingFont": "No s'han carregat les famílies tipogràfiques. <br>Contacteu amb l'administrador del servidor de documents.",
|
||||||
"errorMailMergeLoadFile": "No s'ha pogut carregar",
|
"errorMailMergeLoadFile": "No s'ha pogut carregar",
|
||||||
"errorMailMergeSaveFile": "No s'ha pogut combinar.",
|
"errorMailMergeSaveFile": "No s'ha pogut combinar.",
|
||||||
"errorNoTOC": "No hi ha cap taula de continguts per actualitzar. En podeu inserir una des de la pestanya de Referències.",
|
"errorNoTOC": "No hi ha cap taula de continguts per actualitzar. En podeu inserir una des de la pestanya de Referències.",
|
||||||
"errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torna a carregar la pàgina.",
|
"errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torneu a carregar la pàgina.",
|
||||||
"errorSessionIdle": "Fa molt de temps que no s'edita el document. Torna a carregar la pàgina.",
|
"errorSessionIdle": "Fa molt de temps que no s'edita el document. Torneu a carregar la pàgina.",
|
||||||
"errorSessionToken": "S'ha interromput la connexió amb el servidor. Torna a carregar la pàgina.",
|
"errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.",
|
||||||
"errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, posa les dades al full de càlcul en l'ordre següent: <br>preu d'obertura, preu màxim, preu mínim, preu de tancament.",
|
"errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, poseu les dades al full de càlcul en l'ordre següent: <br>preu d'obertura, preu màxim, preu mínim, preu de tancament.",
|
||||||
"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.",
|
"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.",
|
||||||
"errorUserDrop": "Ara mateix no es pot accedir al fitxer.",
|
"errorUserDrop": "Ara mateix no es pot accedir al fitxer.",
|
||||||
"errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el teu pla",
|
"errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla",
|
||||||
"errorViewerDisconnect": "S'ha perdut la connexió. Encara pots veure el document, <br>però no podràs baixar-lo fins que es restableixi la connexió i es torni a carregar la pàgina.",
|
"errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu veure el document, <br>però no el podreu baixar fins que es restableixi la connexió i es torni a carregar la pàgina.",
|
||||||
"notcriticalErrorTitle": "Advertiment",
|
"notcriticalErrorTitle": "Advertiment",
|
||||||
"openErrorText": "S'ha produït un error en obrir el fitxer",
|
"openErrorText": "S'ha produït un error en obrir el fitxer",
|
||||||
"saveErrorText": "S'ha produït un error en desar el fitxer",
|
"saveErrorText": "S'ha produït un error en desar el fitxer",
|
||||||
"scriptLoadError": "La connexió és massa lenta, alguns dels components no s'han pogut carregar. Torna a carregar la pàgina.",
|
"scriptLoadError": "La connexió és massa lenta, alguns dels components no s'han pogut carregar. Torneu a carregar la pàgina.",
|
||||||
"splitDividerErrorText": "El nombre de files ha de ser un divisor de %1",
|
"splitDividerErrorText": "El nombre de files ha de ser un divisor de %1",
|
||||||
"splitMaxColsErrorText": "El nombre de columnes ha de ser inferior a %1",
|
"splitMaxColsErrorText": "El nombre de columnes ha de ser inferior a %1",
|
||||||
"splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1",
|
"splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1",
|
||||||
|
@ -442,16 +442,16 @@
|
||||||
"txtEditingMode": "Estableix el mode d'edició ...",
|
"txtEditingMode": "Estableix el mode d'edició ...",
|
||||||
"uploadImageTextText": "S'està carregant la imatge...",
|
"uploadImageTextText": "S'està carregant la imatge...",
|
||||||
"uploadImageTitleText": "S'està carregant la imatge",
|
"uploadImageTitleText": "S'està carregant la imatge",
|
||||||
"waitText": "Espera..."
|
"waitText": "Espereu..."
|
||||||
},
|
},
|
||||||
"Main": {
|
"Main": {
|
||||||
"criticalErrorTitle": "Error",
|
"criticalErrorTitle": "Error",
|
||||||
"errorAccessDeny": "No tens permís per fer aquesta acció. Contacta amb el vostre administrador.",
|
"errorAccessDeny": "No teniu permís per realitzar aquesta acció. <br>Contacteu amb l'administrador.",
|
||||||
"errorOpensource": "Amb la versió gratuïta de la Comunitat, només pots obrir els documents en mode lectura. Per accedir als editors de web per a mòbils, cal una llicència comercial.",
|
"errorOpensource": "Amb la versió gratuïta de la Comunitat, només podeu obrir els documents en mode lectura. Per accedir als editors de web per a mòbils, cal una llicència comercial.",
|
||||||
"errorProcessSaveResult": "S'ha produït un error en desar.",
|
"errorProcessSaveResult": "S'ha produït un error en desar.",
|
||||||
"errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.",
|
"errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.",
|
||||||
"errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.",
|
"errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.",
|
||||||
"leavePageText": "Tens canvis sense desar. Fes clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.",
|
"leavePageText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.",
|
||||||
"notcriticalErrorTitle": "Advertiment",
|
"notcriticalErrorTitle": "Advertiment",
|
||||||
"SDK": {
|
"SDK": {
|
||||||
" -Section ": "-Secció",
|
" -Section ": "-Secció",
|
||||||
|
@ -459,11 +459,11 @@
|
||||||
"below": "A sota",
|
"below": "A sota",
|
||||||
"Caption": "Llegenda",
|
"Caption": "Llegenda",
|
||||||
"Choose an item": "Tria un element",
|
"Choose an item": "Tria un element",
|
||||||
"Click to load image": "Fes clic per carregar la imatge",
|
"Click to load image": "Feu clic per carregar la imatge",
|
||||||
"Current Document": "Document actual",
|
"Current Document": "Document actual",
|
||||||
"Diagram Title": "Títol del gràfic",
|
"Diagram Title": "Títol del gràfic",
|
||||||
"endnote text": "Text de nota al final",
|
"endnote text": "Text de nota al final",
|
||||||
"Enter a date": "Introdueix una data",
|
"Enter a date": "Introduïu una data",
|
||||||
"Error! Bookmark not defined": "Error! No s'ha definit el marcador.",
|
"Error! Bookmark not defined": "Error! No s'ha definit el marcador.",
|
||||||
"Error! Main Document Only": "Error! Només el document principal.",
|
"Error! Main Document Only": "Error! Només el document principal.",
|
||||||
"Error! No text of specified style in document": "Error! No hi ha cap text de l'estil especificat al document.",
|
"Error! No text of specified style in document": "Error! No hi ha cap text de l'estil especificat al document.",
|
||||||
|
@ -486,11 +486,11 @@
|
||||||
"Index Too Large": "L'índex és massa gran",
|
"Index Too Large": "L'índex és massa gran",
|
||||||
"Intense Quote": "Cita intensa",
|
"Intense Quote": "Cita intensa",
|
||||||
"Is Not In Table": "No hi és a la taula",
|
"Is Not In Table": "No hi és a la taula",
|
||||||
"List Paragraph": "Paràgraf de la Llista",
|
"List Paragraph": "Paràgraf de llista",
|
||||||
"Missing Argument": "Falta l'argument",
|
"Missing Argument": "Falta l'argument",
|
||||||
"Missing Operator": "Falta l'operador",
|
"Missing Operator": "Falta l'operador",
|
||||||
"No Spacing": "Sense espaiat",
|
"No Spacing": "Sense espaiat",
|
||||||
"No table of contents entries found": "No hi ha cap títol al document. Aplica un estil d’encapçalament al text perquè aparegui a la taula de continguts.",
|
"No table of contents entries found": "No hi ha cap títol al document. Apliqueu un estil d’encapçalament al text perquè aparegui a la taula de continguts.",
|
||||||
"No table of figures entries found": "No s'ha trobat cap entrada a l'índex d'il·lustracions.",
|
"No table of figures entries found": "No s'ha trobat cap entrada a l'índex d'il·lustracions.",
|
||||||
"None": "Cap",
|
"None": "Cap",
|
||||||
"Normal": "Normal",
|
"Normal": "Normal",
|
||||||
|
@ -508,23 +508,23 @@
|
||||||
"Title": "Títol",
|
"Title": "Títol",
|
||||||
"TOC Heading": "Capçalera de la taula de continguts",
|
"TOC Heading": "Capçalera de la taula de continguts",
|
||||||
"Type equation here": "Escriu l'equació aquí",
|
"Type equation here": "Escriu l'equació aquí",
|
||||||
"Undefined Bookmark": "Marcador no definit",
|
"Undefined Bookmark": "No hi ha cap marcador definit",
|
||||||
"Unexpected End of Formula": "Final inesperat de la fórmula",
|
"Unexpected End of Formula": "Final inesperat de la fórmula",
|
||||||
"X Axis": "Eix X XAS",
|
"X Axis": "Eix X XAS",
|
||||||
"Y Axis": "Eix Y",
|
"Y Axis": "Eix Y",
|
||||||
"Your text here": "El teu text aquí",
|
"Your text here": "El vostre text aquí",
|
||||||
"Zero Divide": "Divideix per zero"
|
"Zero Divide": "Divideix per zero"
|
||||||
},
|
},
|
||||||
"textAnonymous": "Anònim",
|
"textAnonymous": "Anònim",
|
||||||
"textBuyNow": "Visita el Lloc Web",
|
"textBuyNow": "Visiteu el lloc web",
|
||||||
"textClose": "Tanca",
|
"textClose": "Tanca",
|
||||||
"textContactUs": "Contacta amb vendes",
|
"textContactUs": "Contacteu amb vendes",
|
||||||
"textCustomLoader": "No tens permisos per canviar el carregador. Contacta amb el nostre departament de vendes per obtenir un pressupost.",
|
"textCustomLoader": "No teniu permisos per canviar el carregador. Contacteu amb el nostre departament de vendes per obtenir un pressupost.",
|
||||||
"textGuest": "Convidat",
|
"textGuest": "Convidat",
|
||||||
"textHasMacros": "El fitxer conté macros automàtiques. <br>Les vols executar?",
|
"textHasMacros": "El fitxer conté macros automàtiques. <br>Les voleu executar?",
|
||||||
"textNo": "No",
|
"textNo": "No",
|
||||||
"textNoLicenseTitle": "S'ha assolit el límit de llicència",
|
"textNoLicenseTitle": "S'ha assolit el límit de llicència",
|
||||||
"textNoTextFound": "No s'ha trobat el text",
|
"textNoTextFound": "No s'ha trobat cap text",
|
||||||
"textPaidFeature": "Funció de pagament",
|
"textPaidFeature": "Funció de pagament",
|
||||||
"textRemember": "Recorda la meva elecció",
|
"textRemember": "Recorda la meva elecció",
|
||||||
"textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.",
|
"textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.",
|
||||||
|
@ -534,14 +534,14 @@
|
||||||
"titleLicenseExp": "La llicència ha caducat",
|
"titleLicenseExp": "La llicència ha caducat",
|
||||||
"titleServerVersion": "S'ha actualitzat l'editor",
|
"titleServerVersion": "S'ha actualitzat l'editor",
|
||||||
"titleUpdateVersion": "S'ha canviat la versió",
|
"titleUpdateVersion": "S'ha canviat la versió",
|
||||||
"warnLicenseExceeded": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb el vostre administrador per a més informació.",
|
"warnLicenseExceeded": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'administrador per a més informació.",
|
||||||
"warnLicenseExp": "La teva llicència ha caducat. Actualitza la llicència i la pàgina.",
|
"warnLicenseExp": "La vostra llicència ha caducat. Actualitzeu la llicència i la pàgina.",
|
||||||
"warnLicenseLimitedNoAccess": "La llicència ha caducat. No tens accés a la funció d'edició de documents. Contacta amb el teu administrador.",
|
"warnLicenseLimitedNoAccess": "La llicència ha caducat. No teniu accés a la funció d'edició de documents. Contacteu amb l'administrador.",
|
||||||
"warnLicenseLimitedRenewed": "Cal renovar la llicència. Tens accés limitat a la funció d'edició de documents. <br>Contacta amb el teu administrador per obtenir accés total",
|
"warnLicenseLimitedRenewed": "Cal renovar la llicència. Teniu accés limitat a la funció d'edició de documents. <br>Contacteu amb l'administrador per obtenir accés total",
|
||||||
"warnLicenseUsersExceeded": "Has arribat al límit d'usuari per a %1 editors. Contacta amb el teu administrador per a més informació.",
|
"warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per a més informació.",
|
||||||
"warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.",
|
"warnNoLicense": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'equip de vendes %1 per conèixer les condicions d'actualització personal.",
|
||||||
"warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.",
|
"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.",
|
||||||
"warnProcessRightsChange": "No tens permís per editar aquest fitxer."
|
"warnProcessRightsChange": "No teniu permís per editar aquest fitxer."
|
||||||
},
|
},
|
||||||
"Settings": {
|
"Settings": {
|
||||||
"advDRMOptions": "El fitxer està protegit",
|
"advDRMOptions": "El fitxer està protegit",
|
||||||
|
@ -578,14 +578,14 @@
|
||||||
"textDone": "Fet",
|
"textDone": "Fet",
|
||||||
"textDownload": "Baixa",
|
"textDownload": "Baixa",
|
||||||
"textDownloadAs": "Baixa-ho com a",
|
"textDownloadAs": "Baixa-ho com a",
|
||||||
"textDownloadRtf": "Si continues i deses en aquest format, es podrien perdre alguns dels formats. Vols continuar?",
|
"textDownloadRtf": "Si continueu i deseu en aquest format, es podrien perdre alguns dels formats. Voleu continuar?",
|
||||||
"textDownloadTxt": "Si continues i deses en aquest format, es perdran totes les característiques excepte el text. Vols continuar?",
|
"textDownloadTxt": "Si continueu i deseu en aquest format, es perdran totes les característiques excepte el text. Voleu continuar?",
|
||||||
"textEmptyHeading": "Encapçalament buit",
|
"textEmptyHeading": "Encapçalament buit",
|
||||||
"textEmptyScreens": "Aquest document no té capçaleres. Apliqueu un estil de títols al text perquè aparegui a la taula de continguts",
|
"textEmptyScreens": "Aquest document no té capçaleres. Apliqueu un estil de títols al text perquè aparegui a la taula de continguts",
|
||||||
"textEnableAll": "Habilita-ho tot",
|
"textEnableAll": "Habilita-ho tot",
|
||||||
"textEnableAllMacrosWithoutNotification": "Habilita totes les macros sense notificació",
|
"textEnableAllMacrosWithoutNotification": "Habilita totes les macros sense notificació",
|
||||||
"textEncoding": "Codificació",
|
"textEncoding": "Codificació",
|
||||||
"textFastWV": "Vista Web Ràpida",
|
"textFastWV": "Vista web ràpida",
|
||||||
"textFeedback": "Comentaris i servei d'atenció al client",
|
"textFeedback": "Comentaris i servei d'atenció al client",
|
||||||
"textFind": "Cerca",
|
"textFind": "Cerca",
|
||||||
"textFindAndReplace": "Cerca i substitueix",
|
"textFindAndReplace": "Cerca i substitueix",
|
||||||
|
@ -609,9 +609,9 @@
|
||||||
"textNavigation": "Navegació",
|
"textNavigation": "Navegació",
|
||||||
"textNo": "No",
|
"textNo": "No",
|
||||||
"textNoCharacters": "Caràcters que no es poden imprimir",
|
"textNoCharacters": "Caràcters que no es poden imprimir",
|
||||||
"textNoTextFound": "No s'ha trobat el text",
|
"textNoTextFound": "No s'ha trobat cap text",
|
||||||
"textOk": "D'acord",
|
"textOk": "D'acord",
|
||||||
"textOpenFile": "Introdueix una contrasenya per obrir el fitxer",
|
"textOpenFile": "Introduïu una contrasenya per obrir el fitxer",
|
||||||
"textOrientation": "Orientació",
|
"textOrientation": "Orientació",
|
||||||
"textOwner": "Propietari",
|
"textOwner": "Propietari",
|
||||||
"textPages": "Pàgines",
|
"textPages": "Pàgines",
|
||||||
|
@ -647,7 +647,7 @@
|
||||||
"txtDownloadTxt": "Baixa TXT",
|
"txtDownloadTxt": "Baixa TXT",
|
||||||
"txtIncorrectPwd": "La contrasenya no és correcta",
|
"txtIncorrectPwd": "La contrasenya no és correcta",
|
||||||
"txtOk": "D'acord",
|
"txtOk": "D'acord",
|
||||||
"txtProtected": "Una vegada introdueixis la contrasenya i obris el fitxer, es restablirà la contrasenya actual",
|
"txtProtected": "Un cop introduïu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual",
|
||||||
"txtScheme1": "Office",
|
"txtScheme1": "Office",
|
||||||
"txtScheme10": "Mediana",
|
"txtScheme10": "Mediana",
|
||||||
"txtScheme11": "Metro",
|
"txtScheme11": "Metro",
|
||||||
|
@ -672,8 +672,8 @@
|
||||||
"txtScheme9": "Foneria"
|
"txtScheme9": "Foneria"
|
||||||
},
|
},
|
||||||
"Toolbar": {
|
"Toolbar": {
|
||||||
"dlgLeaveMsgText": "Tens canvis sense desar. Fes clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.",
|
"dlgLeaveMsgText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.",
|
||||||
"dlgLeaveTitleText": "Estàs sortint de l'aplicació",
|
"dlgLeaveTitleText": "Esteu sortint de l'aplicació",
|
||||||
"leaveButtonText": "Surt d'aquesta pàgina",
|
"leaveButtonText": "Surt d'aquesta pàgina",
|
||||||
"stayButtonText": "Queda't en aquesta pàgina"
|
"stayButtonText": "Queda't en aquesta pàgina"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
"textAbout": "Information",
|
"textAbout": "Information",
|
||||||
"textAddress": "Adresse",
|
"textAddress": "Adresse",
|
||||||
"textBack": "Zurück",
|
"textBack": "Zurück",
|
||||||
|
"textEditor": "Dokumenteneditor",
|
||||||
"textEmail": "E-Mail",
|
"textEmail": "E-Mail",
|
||||||
"textPoweredBy": "Unterstützt von",
|
"textPoweredBy": "Unterstützt von",
|
||||||
"textTel": "Tel.",
|
"textTel": "Tel.",
|
||||||
"textVersion": "Version",
|
"textVersion": "Version"
|
||||||
"textEditor": "Document Editor"
|
|
||||||
},
|
},
|
||||||
"Add": {
|
"Add": {
|
||||||
"notcriticalErrorTitle": "Warnung",
|
"notcriticalErrorTitle": "Warnung",
|
||||||
|
@ -200,7 +200,7 @@
|
||||||
"textRefreshEntireTable": "Ganze Tabelle aktualisieren",
|
"textRefreshEntireTable": "Ganze Tabelle aktualisieren",
|
||||||
"textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren",
|
"textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren",
|
||||||
"textRows": "Zeilen",
|
"textRows": "Zeilen",
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
"txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?"
|
||||||
},
|
},
|
||||||
"Edit": {
|
"Edit": {
|
||||||
"notcriticalErrorTitle": "Warnung",
|
"notcriticalErrorTitle": "Warnung",
|
||||||
|
|
|
@ -200,7 +200,7 @@
|
||||||
"textRefreshEntireTable": "Actualiser le tableau entier",
|
"textRefreshEntireTable": "Actualiser le tableau entier",
|
||||||
"textRefreshPageNumbersOnly": "Actualiser les numéros de page uniquement",
|
"textRefreshPageNumbersOnly": "Actualiser les numéros de page uniquement",
|
||||||
"textRows": "Lignes",
|
"textRows": "Lignes",
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
"txtWarnUrl": "Cliquer sur ce lien peut être dangereux pour votre appareil et vos données. <br>Êtes-vous sûr de vouloir continuer ?"
|
||||||
},
|
},
|
||||||
"Edit": {
|
"Edit": {
|
||||||
"notcriticalErrorTitle": "Avertissement",
|
"notcriticalErrorTitle": "Avertissement",
|
||||||
|
@ -393,7 +393,7 @@
|
||||||
"errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.",
|
"errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.",
|
||||||
"errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.",
|
"errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.",
|
||||||
"errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:<br>cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
|
"errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:<br>cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
|
||||||
"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. Rechargez la page.",
|
"errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée.<br>Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
|
||||||
"errorUserDrop": "Le fichier ne peut pas être accédé tout de suite.",
|
"errorUserDrop": "Le fichier ne peut pas être accédé tout de suite.",
|
||||||
"errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
|
"errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
|
||||||
"errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.",
|
"errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.",
|
||||||
|
|
|
@ -585,11 +585,11 @@
|
||||||
"textEnableAll": "Összes engedélyezése",
|
"textEnableAll": "Összes engedélyezése",
|
||||||
"textEnableAllMacrosWithoutNotification": "Engedélyezze az összes makrót értesítés nélkül",
|
"textEnableAllMacrosWithoutNotification": "Engedélyezze az összes makrót értesítés nélkül",
|
||||||
"textEncoding": "Kódolás",
|
"textEncoding": "Kódolás",
|
||||||
"textFastWV": "Gyors webes megtekintés",
|
"textFastWV": "Gyors webes nézet",
|
||||||
"textFeedback": "Visszajelzés és Támogatás",
|
"textFeedback": "Visszajelzés és Támogatás",
|
||||||
"textFind": "Keres",
|
"textFind": "Keres",
|
||||||
"textFindAndReplace": "Keresés és Csere",
|
"textFindAndReplace": "Keres és cserél",
|
||||||
"textFindAndReplaceAll": "Keres és mindent cserél",
|
"textFindAndReplaceAll": "Összes keresése és cseréje",
|
||||||
"textFormat": "Formátum",
|
"textFormat": "Formátum",
|
||||||
"textHelp": "Súgó",
|
"textHelp": "Súgó",
|
||||||
"textHiddenTableBorders": "Rejtett táblázat szegélyek",
|
"textHiddenTableBorders": "Rejtett táblázat szegélyek",
|
||||||
|
|
|
@ -200,7 +200,7 @@
|
||||||
"textRefreshEntireTable": "Թարմացրել ամբողջ աղյուսակը",
|
"textRefreshEntireTable": "Թարմացրել ամբողջ աղյուսակը",
|
||||||
"textRefreshPageNumbersOnly": "Թարմացնել միայն էջերի համարները",
|
"textRefreshPageNumbersOnly": "Թարմացնել միայն էջերի համարները",
|
||||||
"textRows": "Տողեր",
|
"textRows": "Տողեր",
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
"txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները:<br>Վստա՞հ եք, որ ցանկանում եք շարունակել:"
|
||||||
},
|
},
|
||||||
"Edit": {
|
"Edit": {
|
||||||
"notcriticalErrorTitle": "Զգուշացում",
|
"notcriticalErrorTitle": "Զգուշացում",
|
||||||
|
|
|
@ -200,7 +200,7 @@
|
||||||
"textRefreshEntireTable": "Aggiorna intera tabella",
|
"textRefreshEntireTable": "Aggiorna intera tabella",
|
||||||
"textRefreshPageNumbersOnly": "Aggiorna solo numeri di pagina",
|
"textRefreshPageNumbersOnly": "Aggiorna solo numeri di pagina",
|
||||||
"textRows": "Righe",
|
"textRows": "Righe",
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
"txtWarnUrl": "Fare clic su questo collegamento può danneggiare il tuo dispositivo e i tuoi dati.<br>Sei sicuro che vuoi continuare?"
|
||||||
},
|
},
|
||||||
"Edit": {
|
"Edit": {
|
||||||
"notcriticalErrorTitle": "Avvertimento",
|
"notcriticalErrorTitle": "Avvertimento",
|
||||||
|
@ -393,7 +393,7 @@
|
||||||
"errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.",
|
"errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.",
|
||||||
"errorSessionToken": "La connessione al server è stata interrotta. Ti preghiamo di ricaricare la pagina.",
|
"errorSessionToken": "La connessione al server è stata interrotta. Ti preghiamo di ricaricare la pagina.",
|
||||||
"errorStockChart": "Ordine delle righe incorretto. Per creare un grafico azionario, inserisci i dati sul foglio nel seguente ordine:<br> prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
|
"errorStockChart": "Ordine delle righe incorretto. Per creare un grafico azionario, inserisci i dati sul foglio nel seguente ordine:<br> prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
|
||||||
"errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata cambiata.<br>Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, poi ricaricare questa pagina.",
|
"errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso, quindi ricarica questa pagina.",
|
||||||
"errorUserDrop": "Non si può accedere al file al momento.",
|
"errorUserDrop": "Non si può accedere al file al momento.",
|
||||||
"errorUsersExceed": "È stato superato il numero degli utenti consentito dalla tariffa",
|
"errorUsersExceed": "È stato superato il numero degli utenti consentito dalla tariffa",
|
||||||
"errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
|
"errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
|
||||||
|
|
|
@ -57,9 +57,9 @@
|
||||||
"textShape": "Bentuk",
|
"textShape": "Bentuk",
|
||||||
"textStartAt": "Mulakan pada",
|
"textStartAt": "Mulakan pada",
|
||||||
"textTable": "Jadual",
|
"textTable": "Jadual",
|
||||||
|
"textTableContents": "Senarai Kandungan",
|
||||||
"textTableSize": "Saiz Jadual",
|
"textTableSize": "Saiz Jadual",
|
||||||
"txtNotUrl": "Medan ini perlu sebagai URL dalam \"http://www.example.com\" formatnya",
|
"txtNotUrl": "Medan ini perlu sebagai URL dalam \"http://www.example.com\" formatnya",
|
||||||
"textTableContents": "Table of Contents",
|
|
||||||
"textWithBlueLinks": "With Blue Links",
|
"textWithBlueLinks": "With Blue Links",
|
||||||
"textWithPageNumbers": "With Page Numbers"
|
"textWithPageNumbers": "With Page Numbers"
|
||||||
},
|
},
|
||||||
|
@ -198,9 +198,9 @@
|
||||||
"textNumberingValue": "Nilai Bernombor",
|
"textNumberingValue": "Nilai Bernombor",
|
||||||
"textOk": "Okey",
|
"textOk": "Okey",
|
||||||
"textRows": "Baris",
|
"textRows": "Baris",
|
||||||
|
"txtWarnUrl": "Mengklik pautan ini boleh membahayakan peranti dan data anda.<br>Adakah anda mahu meneruskan?",
|
||||||
"textRefreshEntireTable": "Refresh entire table",
|
"textRefreshEntireTable": "Refresh entire table",
|
||||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
|
||||||
},
|
},
|
||||||
"Edit": {
|
"Edit": {
|
||||||
"notcriticalErrorTitle": "Amaran",
|
"notcriticalErrorTitle": "Amaran",
|
||||||
|
@ -229,11 +229,15 @@
|
||||||
"textBringToForeground": "Bawa ke Tanah",
|
"textBringToForeground": "Bawa ke Tanah",
|
||||||
"textBullets": "Bullet",
|
"textBullets": "Bullet",
|
||||||
"textBulletsAndNumbers": "Bulet dan Angka",
|
"textBulletsAndNumbers": "Bulet dan Angka",
|
||||||
|
"textCancel": "Batalkan",
|
||||||
"textCellMargins": "Margin Sel",
|
"textCellMargins": "Margin Sel",
|
||||||
|
"textCentered": "Berpusat",
|
||||||
"textChart": "Carta",
|
"textChart": "Carta",
|
||||||
|
"textClassic": "Klasik",
|
||||||
"textClose": "Tutup",
|
"textClose": "Tutup",
|
||||||
"textColor": "Warna",
|
"textColor": "Warna",
|
||||||
"textContinueFromPreviousSection": "Teruskan daripada bahagian sebelumnya",
|
"textContinueFromPreviousSection": "Teruskan daripada bahagian sebelumnya",
|
||||||
|
"textCurrent": "Semasa",
|
||||||
"textCustomColor": "Warna Tersuai",
|
"textCustomColor": "Warna Tersuai",
|
||||||
"textDecember": "Disember",
|
"textDecember": "Disember",
|
||||||
"textDesign": "Rekaan",
|
"textDesign": "Rekaan",
|
||||||
|
@ -241,6 +245,8 @@
|
||||||
"textDifferentOddAndEvenPages": "Halaman genap dan ganjil berbeza",
|
"textDifferentOddAndEvenPages": "Halaman genap dan ganjil berbeza",
|
||||||
"textDisplay": "Paparan",
|
"textDisplay": "Paparan",
|
||||||
"textDistanceFromText": "Jarak dari teks",
|
"textDistanceFromText": "Jarak dari teks",
|
||||||
|
"textDistinctive": "Tersendiri",
|
||||||
|
"textDone": "Siap",
|
||||||
"textDoubleStrikethrough": "Garis Lorek Berganda",
|
"textDoubleStrikethrough": "Garis Lorek Berganda",
|
||||||
"textEditLink": "Edit Pautan",
|
"textEditLink": "Edit Pautan",
|
||||||
"textEffects": "Kesan",
|
"textEffects": "Kesan",
|
||||||
|
@ -255,6 +261,7 @@
|
||||||
"textFontColors": "Warna Fon",
|
"textFontColors": "Warna Fon",
|
||||||
"textFonts": "Fon",
|
"textFonts": "Fon",
|
||||||
"textFooter": "Pengaki",
|
"textFooter": "Pengaki",
|
||||||
|
"textFormal": "Formal",
|
||||||
"textFr": "Jum",
|
"textFr": "Jum",
|
||||||
"textHeader": "Pengepala",
|
"textHeader": "Pengepala",
|
||||||
"textHeaderRow": "Baris Pengepala",
|
"textHeaderRow": "Baris Pengepala",
|
||||||
|
@ -270,7 +277,9 @@
|
||||||
"textKeepLinesTogether": "Kekalkan Garis Bersama",
|
"textKeepLinesTogether": "Kekalkan Garis Bersama",
|
||||||
"textKeepWithNext": "Kekal dengan Seterusnya",
|
"textKeepWithNext": "Kekal dengan Seterusnya",
|
||||||
"textLastColumn": "Lajur Terakhir",
|
"textLastColumn": "Lajur Terakhir",
|
||||||
|
"textLeader": "Ketua",
|
||||||
"textLetterSpacing": "Jarak Perkataan",
|
"textLetterSpacing": "Jarak Perkataan",
|
||||||
|
"textLevels": "Tahap",
|
||||||
"textLineSpacing": "Jarak Garis",
|
"textLineSpacing": "Jarak Garis",
|
||||||
"textLink": "Pautan",
|
"textLink": "Pautan",
|
||||||
"textLinkSettings": "Seting Pautan",
|
"textLinkSettings": "Seting Pautan",
|
||||||
|
@ -278,9 +287,11 @@
|
||||||
"textMarch": "Mac",
|
"textMarch": "Mac",
|
||||||
"textMay": "Mei",
|
"textMay": "Mei",
|
||||||
"textMo": "Is",
|
"textMo": "Is",
|
||||||
|
"textModern": "Moden",
|
||||||
"textMoveBackward": "Alih Ke Belakang",
|
"textMoveBackward": "Alih Ke Belakang",
|
||||||
"textMoveForward": "Alih Ke Hadapan",
|
"textMoveForward": "Alih Ke Hadapan",
|
||||||
"textMoveWithText": "Alih dengan Teks",
|
"textMoveWithText": "Alih dengan Teks",
|
||||||
|
"textNextParagraphStyle": "Gaya perenggan seterusnya",
|
||||||
"textNone": "Tiada",
|
"textNone": "Tiada",
|
||||||
"textNoStyles": "Tiada gaya untuk carta jenis ini.",
|
"textNoStyles": "Tiada gaya untuk carta jenis ini.",
|
||||||
"textNotUrl": "Medan ini perlu sebagai URL dalam “http://www.example.com” formatnya",
|
"textNotUrl": "Medan ini perlu sebagai URL dalam “http://www.example.com” formatnya",
|
||||||
|
@ -288,15 +299,18 @@
|
||||||
"textNumbers": "Nombor",
|
"textNumbers": "Nombor",
|
||||||
"textOctober": "Oktober",
|
"textOctober": "Oktober",
|
||||||
"textOk": "Okey",
|
"textOk": "Okey",
|
||||||
|
"textOnline": "Dalam talian",
|
||||||
"textOpacity": "Kelegapan",
|
"textOpacity": "Kelegapan",
|
||||||
"textOptions": "Pilihan",
|
"textOptions": "Pilihan",
|
||||||
"textOrphanControl": "Kawalan Yatim",
|
"textOrphanControl": "Kawalan Yatim",
|
||||||
"textPageBreakBefore": "Pemutus Halaman Sebelum",
|
"textPageBreakBefore": "Pemutus Halaman Sebelum",
|
||||||
"textPageNumbering": "Penomboran Halaman",
|
"textPageNumbering": "Penomboran Halaman",
|
||||||
"textParagraph": "Perenggan",
|
"textParagraph": "Perenggan",
|
||||||
|
"textParagraphStyle": "Gaya Perenggan",
|
||||||
"textPictureFromLibrary": "Gambar daripada Perpustakaan",
|
"textPictureFromLibrary": "Gambar daripada Perpustakaan",
|
||||||
"textPictureFromURL": "Gambar daripada URL",
|
"textPictureFromURL": "Gambar daripada URL",
|
||||||
"textPt": "pt",
|
"textPt": "pt",
|
||||||
|
"textRefresh": "Segar semula",
|
||||||
"textRemoveChart": "Alih Keluar Carta",
|
"textRemoveChart": "Alih Keluar Carta",
|
||||||
"textRemoveImage": "Alih Keluar Imej",
|
"textRemoveImage": "Alih Keluar Imej",
|
||||||
"textRemoveLink": "Alih Keluar Pautan",
|
"textRemoveLink": "Alih Keluar Pautan",
|
||||||
|
@ -308,20 +322,24 @@
|
||||||
"textReplaceImage": "Gantikan Imej",
|
"textReplaceImage": "Gantikan Imej",
|
||||||
"textResizeToFitContent": "Saiz Semula untuk Memuatkan Kandungan",
|
"textResizeToFitContent": "Saiz Semula untuk Memuatkan Kandungan",
|
||||||
"textSa": "Sa",
|
"textSa": "Sa",
|
||||||
|
"textSameCreatedNewStyle": "Sama seperti gaya baharu dicipta",
|
||||||
"textScreenTip": "Petua Skrin",
|
"textScreenTip": "Petua Skrin",
|
||||||
"textSelectObjectToEdit": "Pilih objek untuk edit",
|
"textSelectObjectToEdit": "Pilih objek untuk edit",
|
||||||
"textSendToBackground": "Hantar ke Latar Belakang",
|
"textSendToBackground": "Hantar ke Latar Belakang",
|
||||||
"textSeptember": "September",
|
"textSeptember": "September",
|
||||||
"textSettings": "Seting",
|
"textSettings": "Seting",
|
||||||
"textShape": "Bentuk",
|
"textShape": "Bentuk",
|
||||||
|
"textSimple": "Ringkas",
|
||||||
"textSize": "Saiz",
|
"textSize": "Saiz",
|
||||||
"textSmallCaps": "Huruf Besar Kecil",
|
"textSmallCaps": "Huruf Besar Kecil",
|
||||||
"textSpaceBetweenParagraphs": "Jarak Di Antara Perenggan",
|
"textSpaceBetweenParagraphs": "Jarak Di Antara Perenggan",
|
||||||
"textSquare": "Kuasa dua",
|
"textSquare": "Kuasa dua",
|
||||||
|
"textStandard": "Standard",
|
||||||
"textStartAt": "Mulakan pada",
|
"textStartAt": "Mulakan pada",
|
||||||
"textStrikethrough": "Garis Lorek",
|
"textStrikethrough": "Garis Lorek",
|
||||||
"textStyle": "Gaya",
|
"textStyle": "Gaya",
|
||||||
"textStyleOptions": "Pilihan Gaya",
|
"textStyleOptions": "Pilihan Gaya",
|
||||||
|
"textStyles": "Gaya",
|
||||||
"textSu": "Su",
|
"textSu": "Su",
|
||||||
"textSubscript": "Subskrip",
|
"textSubscript": "Subskrip",
|
||||||
"textSuperscript": "Superskrip",
|
"textSuperscript": "Superskrip",
|
||||||
|
@ -331,6 +349,7 @@
|
||||||
"textTh": "Kha",
|
"textTh": "Kha",
|
||||||
"textThrough": "Melalui",
|
"textThrough": "Melalui",
|
||||||
"textTight": "Ketat",
|
"textTight": "Ketat",
|
||||||
|
"textTitle": "Tajuk",
|
||||||
"textTopAndBottom": "Atas dan bawah",
|
"textTopAndBottom": "Atas dan bawah",
|
||||||
"textTotalRow": "Baris Jumlah",
|
"textTotalRow": "Baris Jumlah",
|
||||||
"textTu": "Sel",
|
"textTu": "Sel",
|
||||||
|
@ -338,34 +357,15 @@
|
||||||
"textWe": "Kami",
|
"textWe": "Kami",
|
||||||
"textWrap": "Balut",
|
"textWrap": "Balut",
|
||||||
"textAmountOfLevels": "Amount of Levels",
|
"textAmountOfLevels": "Amount of Levels",
|
||||||
"textCancel": "Cancel",
|
|
||||||
"textCentered": "Centered",
|
|
||||||
"textClassic": "Classic",
|
|
||||||
"textCreateTextStyle": "Create new text style",
|
"textCreateTextStyle": "Create new text style",
|
||||||
"textCurrent": "Current",
|
|
||||||
"textDistinctive": "Distinctive",
|
|
||||||
"textDone": "Done",
|
|
||||||
"textEnterTitleNewStyle": "Enter title of a new style",
|
"textEnterTitleNewStyle": "Enter title of a new style",
|
||||||
"textFormal": "Formal",
|
|
||||||
"textLeader": "Leader",
|
|
||||||
"textLevels": "Levels",
|
|
||||||
"textModern": "Modern",
|
|
||||||
"textNextParagraphStyle": "Next paragraph style",
|
|
||||||
"textOnline": "Online",
|
|
||||||
"textPageNumbers": "Page Numbers",
|
"textPageNumbers": "Page Numbers",
|
||||||
"textParagraphStyle": "Paragraph Style",
|
|
||||||
"textRefresh": "Refresh",
|
|
||||||
"textRefreshEntireTable": "Refresh entire table",
|
"textRefreshEntireTable": "Refresh entire table",
|
||||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||||
"textRemoveTableContent": "Remove table of contents",
|
"textRemoveTableContent": "Remove table of contents",
|
||||||
"textRightAlign": "Right Align",
|
"textRightAlign": "Right Align",
|
||||||
"textSameCreatedNewStyle": "Same as created new style",
|
|
||||||
"textSimple": "Simple",
|
|
||||||
"textStandard": "Standard",
|
|
||||||
"textStructure": "Structure",
|
"textStructure": "Structure",
|
||||||
"textStyles": "Styles",
|
"textTableOfCont": "TOC"
|
||||||
"textTableOfCont": "TOC",
|
|
||||||
"textTitle": "Title"
|
|
||||||
},
|
},
|
||||||
"Error": {
|
"Error": {
|
||||||
"convertationTimeoutText": "Melebihi masa tamat penukaran.",
|
"convertationTimeoutText": "Melebihi masa tamat penukaran.",
|
||||||
|
@ -554,6 +554,7 @@
|
||||||
"textApplicationSettings": "Seting Permohonan",
|
"textApplicationSettings": "Seting Permohonan",
|
||||||
"textAuthor": "Pengarang",
|
"textAuthor": "Pengarang",
|
||||||
"textBack": "Kembali",
|
"textBack": "Kembali",
|
||||||
|
"textBeginningDocument": "Permulaan dokumen",
|
||||||
"textBottom": "Bawah",
|
"textBottom": "Bawah",
|
||||||
"textCancel": "Batalkan",
|
"textCancel": "Batalkan",
|
||||||
"textCaseSensitive": "Sensitif Huruf",
|
"textCaseSensitive": "Sensitif Huruf",
|
||||||
|
@ -567,6 +568,7 @@
|
||||||
"textCommentsDisplay": "Paparan Komen",
|
"textCommentsDisplay": "Paparan Komen",
|
||||||
"textCreated": "Diciptakan",
|
"textCreated": "Diciptakan",
|
||||||
"textCustomSize": "Saiz Tersuai",
|
"textCustomSize": "Saiz Tersuai",
|
||||||
|
"textDirection": "Arah",
|
||||||
"textDisableAll": "Nyahdayakan Semua",
|
"textDisableAll": "Nyahdayakan Semua",
|
||||||
"textDisableAllMacrosWithNotification": "Nyahdayakan semua makro dengan pemberitahuan",
|
"textDisableAllMacrosWithNotification": "Nyahdayakan semua makro dengan pemberitahuan",
|
||||||
"textDisableAllMacrosWithoutNotification": "Nyahdayakan semua makro tanpa pemberitahuan",
|
"textDisableAllMacrosWithoutNotification": "Nyahdayakan semua makro tanpa pemberitahuan",
|
||||||
|
@ -578,10 +580,12 @@
|
||||||
"textDownloadAs": "Muat turun sebagai",
|
"textDownloadAs": "Muat turun sebagai",
|
||||||
"textDownloadRtf": "Jika anda terus menyimpan dalam format ini beberapa pemformatan mungkin akan hilang. Adakah anda pasti mahu meneruskan?",
|
"textDownloadRtf": "Jika anda terus menyimpan dalam format ini beberapa pemformatan mungkin akan hilang. Adakah anda pasti mahu meneruskan?",
|
||||||
"textDownloadTxt": "ika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang. Adakah anda pasti mahu meneruskan?",
|
"textDownloadTxt": "ika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang. Adakah anda pasti mahu meneruskan?",
|
||||||
|
"textEmptyHeading": "Pengepala Kosong",
|
||||||
"textEnableAll": "Mendayakan Semua",
|
"textEnableAll": "Mendayakan Semua",
|
||||||
"textEnableAllMacrosWithoutNotification": "Mendayakan semua makro tanpa pemberitahuan",
|
"textEnableAllMacrosWithoutNotification": "Mendayakan semua makro tanpa pemberitahuan",
|
||||||
"textEncoding": "Pengekodan",
|
"textEncoding": "Pengekodan",
|
||||||
"textFastWV": "Paparan Web Pantas",
|
"textFastWV": "Paparan Web Pantas",
|
||||||
|
"textFeedback": "Maklum Balas & Sokongan",
|
||||||
"textFind": "Cari",
|
"textFind": "Cari",
|
||||||
"textFindAndReplace": "Cari dan Ganti",
|
"textFindAndReplace": "Cari dan Ganti",
|
||||||
"textFindAndReplaceAll": "Cari dan Ganti Semua",
|
"textFindAndReplaceAll": "Cari dan Ganti Semua",
|
||||||
|
@ -594,12 +598,14 @@
|
||||||
"textLastModified": "Dibodifikasi Terakhir",
|
"textLastModified": "Dibodifikasi Terakhir",
|
||||||
"textLastModifiedBy": "Terakhir Dimodifikasi Oleh",
|
"textLastModifiedBy": "Terakhir Dimodifikasi Oleh",
|
||||||
"textLeft": "Kiri",
|
"textLeft": "Kiri",
|
||||||
|
"textLeftToRight": "Kiri ke kanan",
|
||||||
"textLoading": "Memuatkan",
|
"textLoading": "Memuatkan",
|
||||||
"textLocation": "Lokasi",
|
"textLocation": "Lokasi",
|
||||||
"textMacrosSettings": "Seting Makro",
|
"textMacrosSettings": "Seting Makro",
|
||||||
"textMargins": "Margin",
|
"textMargins": "Margin",
|
||||||
"textMarginsH": "Margin atas dan bawah adalah terlalu tinggi untuk ketinggian halaman yang diberikan",
|
"textMarginsH": "Margin atas dan bawah adalah terlalu tinggi untuk ketinggian halaman yang diberikan",
|
||||||
"textMarginsW": "Margin ke kiri dan kanan terlalu lebar untuk kelebaran halaman yang diberikan",
|
"textMarginsW": "Margin ke kiri dan kanan terlalu lebar untuk kelebaran halaman yang diberikan",
|
||||||
|
"textNavigation": "Navigasi",
|
||||||
"textNo": "Tidak",
|
"textNo": "Tidak",
|
||||||
"textNoCharacters": "Aksara bukan cetakan",
|
"textNoCharacters": "Aksara bukan cetakan",
|
||||||
"textNoTextFound": "Teks tidak dijumpai",
|
"textNoTextFound": "Teks tidak dijumpai",
|
||||||
|
@ -620,6 +626,7 @@
|
||||||
"textReplaceAll": "Gantikan Semua",
|
"textReplaceAll": "Gantikan Semua",
|
||||||
"textResolvedComments": "Komen Diselesaikan",
|
"textResolvedComments": "Komen Diselesaikan",
|
||||||
"textRight": "Kanan",
|
"textRight": "Kanan",
|
||||||
|
"textRightToLeft": "Kanan ke Kiri",
|
||||||
"textSearch": "Carian",
|
"textSearch": "Carian",
|
||||||
"textSettings": "Seting",
|
"textSettings": "Seting",
|
||||||
"textShowNotification": "Tunjuk Pemberitahuan",
|
"textShowNotification": "Tunjuk Pemberitahuan",
|
||||||
|
@ -659,16 +666,9 @@
|
||||||
"txtScheme7": "Ekuiti",
|
"txtScheme7": "Ekuiti",
|
||||||
"txtScheme8": "Aliran",
|
"txtScheme8": "Aliran",
|
||||||
"txtScheme9": "Faundri",
|
"txtScheme9": "Faundri",
|
||||||
"textBeginningDocument": "Beginning of document",
|
|
||||||
"textDirection": "Direction",
|
|
||||||
"textEmptyHeading": "Empty Heading",
|
|
||||||
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
|
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
|
||||||
"textFeedback": "Feedback & Support",
|
|
||||||
"textLeftToRight": "Left To Right",
|
|
||||||
"textNavigation": "Navigation",
|
|
||||||
"textPdfProducer": "PDF Producer",
|
"textPdfProducer": "PDF Producer",
|
||||||
"textRestartApplication": "Please restart the application for the changes to take effect",
|
"textRestartApplication": "Please restart the application for the changes to take effect",
|
||||||
"textRightToLeft": "Right To Left",
|
|
||||||
"textSubject": "Subject"
|
"textSubject": "Subject"
|
||||||
},
|
},
|
||||||
"Toolbar": {
|
"Toolbar": {
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
"textAbout": "關於",
|
"textAbout": "關於",
|
||||||
"textAddress": "地址",
|
"textAddress": "地址",
|
||||||
"textBack": "返回",
|
"textBack": "返回",
|
||||||
|
"textEditor": "文字編輯器",
|
||||||
"textEmail": "電子郵件",
|
"textEmail": "電子郵件",
|
||||||
"textPoweredBy": "於支援",
|
"textPoweredBy": "於支援",
|
||||||
"textTel": "電話",
|
"textTel": "電話",
|
||||||
"textVersion": "版本",
|
"textVersion": "版本"
|
||||||
"textEditor": "Document Editor"
|
|
||||||
},
|
},
|
||||||
"Add": {
|
"Add": {
|
||||||
"notcriticalErrorTitle": "警告",
|
"notcriticalErrorTitle": "警告",
|
||||||
|
@ -57,9 +57,9 @@
|
||||||
"textShape": "形狀",
|
"textShape": "形狀",
|
||||||
"textStartAt": "開始",
|
"textStartAt": "開始",
|
||||||
"textTable": "表格",
|
"textTable": "表格",
|
||||||
|
"textTableContents": "目錄",
|
||||||
"textTableSize": "表格大小",
|
"textTableSize": "表格大小",
|
||||||
"txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。",
|
"txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。",
|
||||||
"textTableContents": "Table of Contents",
|
|
||||||
"textWithBlueLinks": "With Blue Links",
|
"textWithBlueLinks": "With Blue Links",
|
||||||
"textWithPageNumbers": "With Page Numbers"
|
"textWithPageNumbers": "With Page Numbers"
|
||||||
},
|
},
|
||||||
|
@ -198,9 +198,9 @@
|
||||||
"textNumberingValue": "編號值",
|
"textNumberingValue": "編號值",
|
||||||
"textOk": "確定",
|
"textOk": "確定",
|
||||||
"textRows": "行列",
|
"textRows": "行列",
|
||||||
|
"txtWarnUrl": "這連結可能對您的設備和資料造成損害。<br> 您確定要繼續嗎?",
|
||||||
"textRefreshEntireTable": "Refresh entire table",
|
"textRefreshEntireTable": "Refresh entire table",
|
||||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
|
||||||
},
|
},
|
||||||
"Edit": {
|
"Edit": {
|
||||||
"notcriticalErrorTitle": "警告",
|
"notcriticalErrorTitle": "警告",
|
||||||
|
@ -229,11 +229,15 @@
|
||||||
"textBringToForeground": "移到前景",
|
"textBringToForeground": "移到前景",
|
||||||
"textBullets": "項目符號",
|
"textBullets": "項目符號",
|
||||||
"textBulletsAndNumbers": "符號項目與編號",
|
"textBulletsAndNumbers": "符號項目與編號",
|
||||||
|
"textCancel": "取消",
|
||||||
"textCellMargins": "儲存格邊距",
|
"textCellMargins": "儲存格邊距",
|
||||||
|
"textCentered": "置中",
|
||||||
"textChart": "圖表",
|
"textChart": "圖表",
|
||||||
|
"textClassic": "經典",
|
||||||
"textClose": "關閉",
|
"textClose": "關閉",
|
||||||
"textColor": "顏色",
|
"textColor": "顏色",
|
||||||
"textContinueFromPreviousSection": "從上個部份繼續",
|
"textContinueFromPreviousSection": "從上個部份繼續",
|
||||||
|
"textCurrent": "當前",
|
||||||
"textCustomColor": "自訂顏色",
|
"textCustomColor": "自訂顏色",
|
||||||
"textDecember": "十二月",
|
"textDecember": "十二月",
|
||||||
"textDesign": "設計",
|
"textDesign": "設計",
|
||||||
|
@ -241,6 +245,8 @@
|
||||||
"textDifferentOddAndEvenPages": "單/雙數頁不同",
|
"textDifferentOddAndEvenPages": "單/雙數頁不同",
|
||||||
"textDisplay": "顯示",
|
"textDisplay": "顯示",
|
||||||
"textDistanceFromText": "與文字的距離",
|
"textDistanceFromText": "與文字的距離",
|
||||||
|
"textDistinctive": "獨特的",
|
||||||
|
"textDone": "已完成",
|
||||||
"textDoubleStrikethrough": "雙刪除線",
|
"textDoubleStrikethrough": "雙刪除線",
|
||||||
"textEditLink": "編輯連結",
|
"textEditLink": "編輯連結",
|
||||||
"textEffects": "效果",
|
"textEffects": "效果",
|
||||||
|
@ -255,6 +261,7 @@
|
||||||
"textFontColors": "字體顏色",
|
"textFontColors": "字體顏色",
|
||||||
"textFonts": "字型",
|
"textFonts": "字型",
|
||||||
"textFooter": "頁尾",
|
"textFooter": "頁尾",
|
||||||
|
"textFormal": "正式",
|
||||||
"textFr": "Fr",
|
"textFr": "Fr",
|
||||||
"textHeader": "標頭",
|
"textHeader": "標頭",
|
||||||
"textHeaderRow": "頁首列",
|
"textHeaderRow": "頁首列",
|
||||||
|
@ -270,7 +277,9 @@
|
||||||
"textKeepLinesTogether": "保持線條一致",
|
"textKeepLinesTogether": "保持線條一致",
|
||||||
"textKeepWithNext": "跟著下一個",
|
"textKeepWithNext": "跟著下一個",
|
||||||
"textLastColumn": "最後一欄",
|
"textLastColumn": "最後一欄",
|
||||||
|
"textLeader": "領導",
|
||||||
"textLetterSpacing": "字母間距",
|
"textLetterSpacing": "字母間距",
|
||||||
|
"textLevels": "層次",
|
||||||
"textLineSpacing": "行間距",
|
"textLineSpacing": "行間距",
|
||||||
"textLink": "連結",
|
"textLink": "連結",
|
||||||
"textLinkSettings": "連結設定",
|
"textLinkSettings": "連結設定",
|
||||||
|
@ -278,9 +287,11 @@
|
||||||
"textMarch": "三月",
|
"textMarch": "三月",
|
||||||
"textMay": "五月",
|
"textMay": "五月",
|
||||||
"textMo": "Mo",
|
"textMo": "Mo",
|
||||||
|
"textModern": "現代",
|
||||||
"textMoveBackward": "向後移動",
|
"textMoveBackward": "向後移動",
|
||||||
"textMoveForward": "向前移動",
|
"textMoveForward": "向前移動",
|
||||||
"textMoveWithText": "與文字移動",
|
"textMoveWithText": "與文字移動",
|
||||||
|
"textNextParagraphStyle": "下一段風格",
|
||||||
"textNone": "無",
|
"textNone": "無",
|
||||||
"textNoStyles": "這類圖表沒有對應的風格",
|
"textNoStyles": "這類圖表沒有對應的風格",
|
||||||
"textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。",
|
"textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。",
|
||||||
|
@ -288,40 +299,48 @@
|
||||||
"textNumbers": "號碼",
|
"textNumbers": "號碼",
|
||||||
"textOctober": "十月",
|
"textOctober": "十月",
|
||||||
"textOk": "確定",
|
"textOk": "確定",
|
||||||
|
"textOnline": "上線",
|
||||||
"textOpacity": "透明度",
|
"textOpacity": "透明度",
|
||||||
"textOptions": "選項",
|
"textOptions": "選項",
|
||||||
"textOrphanControl": "遺留功能控制",
|
"textOrphanControl": "遺留功能控制",
|
||||||
"textPageBreakBefore": "分頁之前",
|
"textPageBreakBefore": "分頁之前",
|
||||||
"textPageNumbering": "頁編碼",
|
"textPageNumbering": "頁編碼",
|
||||||
"textParagraph": "段落",
|
"textParagraph": "段落",
|
||||||
|
"textParagraphStyle": "段落風格",
|
||||||
"textPictureFromLibrary": "來自圖庫的圖片",
|
"textPictureFromLibrary": "來自圖庫的圖片",
|
||||||
"textPictureFromURL": "網址圖片",
|
"textPictureFromURL": "網址圖片",
|
||||||
"textPt": "pt",
|
"textPt": "pt",
|
||||||
|
"textRefresh": "刷新",
|
||||||
"textRemoveChart": "刪除圖表",
|
"textRemoveChart": "刪除圖表",
|
||||||
"textRemoveImage": "移除圖片",
|
"textRemoveImage": "移除圖片",
|
||||||
"textRemoveLink": "刪除連結",
|
"textRemoveLink": "刪除連結",
|
||||||
"textRemoveShape": "刪除形狀",
|
"textRemoveShape": "刪除形狀",
|
||||||
"textRemoveTable": "刪除表格",
|
"textRemoveTable": "刪除表格",
|
||||||
|
"textRemoveTableContent": "刪除目錄",
|
||||||
"textReorder": "重新排序",
|
"textReorder": "重新排序",
|
||||||
"textRepeatAsHeaderRow": "重複作為標題行",
|
"textRepeatAsHeaderRow": "重複作為標題行",
|
||||||
"textReplace": "取代",
|
"textReplace": "取代",
|
||||||
"textReplaceImage": "取代圖片",
|
"textReplaceImage": "取代圖片",
|
||||||
"textResizeToFitContent": "調整大小以適合內容",
|
"textResizeToFitContent": "調整大小以適合內容",
|
||||||
"textSa": "Sa",
|
"textSa": "Sa",
|
||||||
|
"textSameCreatedNewStyle": "與新增風格相同",
|
||||||
"textScreenTip": "提示功能",
|
"textScreenTip": "提示功能",
|
||||||
"textSelectObjectToEdit": "選擇要編輯的物件",
|
"textSelectObjectToEdit": "選擇要編輯的物件",
|
||||||
"textSendToBackground": "傳送到背景",
|
"textSendToBackground": "傳送到背景",
|
||||||
"textSeptember": "九月",
|
"textSeptember": "九月",
|
||||||
"textSettings": "設定",
|
"textSettings": "設定",
|
||||||
"textShape": "形狀",
|
"textShape": "形狀",
|
||||||
|
"textSimple": "簡單",
|
||||||
"textSize": "大小",
|
"textSize": "大小",
|
||||||
"textSmallCaps": "小大寫",
|
"textSmallCaps": "小大寫",
|
||||||
"textSpaceBetweenParagraphs": "段落間空格",
|
"textSpaceBetweenParagraphs": "段落間空格",
|
||||||
"textSquare": "正方形",
|
"textSquare": "正方形",
|
||||||
|
"textStandard": "標準",
|
||||||
"textStartAt": "開始",
|
"textStartAt": "開始",
|
||||||
"textStrikethrough": "刪除線",
|
"textStrikethrough": "刪除線",
|
||||||
"textStyle": "風格",
|
"textStyle": "風格",
|
||||||
"textStyleOptions": "樣式選項",
|
"textStyleOptions": "樣式選項",
|
||||||
|
"textStyles": "風格",
|
||||||
"textSu": "Su",
|
"textSu": "Su",
|
||||||
"textSubscript": "下標",
|
"textSubscript": "下標",
|
||||||
"textSuperscript": "上標",
|
"textSuperscript": "上標",
|
||||||
|
@ -331,6 +350,7 @@
|
||||||
"textTh": "Th",
|
"textTh": "Th",
|
||||||
"textThrough": "通過",
|
"textThrough": "通過",
|
||||||
"textTight": "緊",
|
"textTight": "緊",
|
||||||
|
"textTitle": "標題",
|
||||||
"textTopAndBottom": "頂部和底部",
|
"textTopAndBottom": "頂部和底部",
|
||||||
"textTotalRow": "總行數",
|
"textTotalRow": "總行數",
|
||||||
"textTu": "Tu",
|
"textTu": "Tu",
|
||||||
|
@ -338,34 +358,14 @@
|
||||||
"textWe": "We",
|
"textWe": "We",
|
||||||
"textWrap": "包覆",
|
"textWrap": "包覆",
|
||||||
"textAmountOfLevels": "Amount of Levels",
|
"textAmountOfLevels": "Amount of Levels",
|
||||||
"textCancel": "Cancel",
|
|
||||||
"textCentered": "Centered",
|
|
||||||
"textClassic": "Classic",
|
|
||||||
"textCreateTextStyle": "Create new text style",
|
"textCreateTextStyle": "Create new text style",
|
||||||
"textCurrent": "Current",
|
|
||||||
"textDistinctive": "Distinctive",
|
|
||||||
"textDone": "Done",
|
|
||||||
"textEnterTitleNewStyle": "Enter title of a new style",
|
"textEnterTitleNewStyle": "Enter title of a new style",
|
||||||
"textFormal": "Formal",
|
|
||||||
"textLeader": "Leader",
|
|
||||||
"textLevels": "Levels",
|
|
||||||
"textModern": "Modern",
|
|
||||||
"textNextParagraphStyle": "Next paragraph style",
|
|
||||||
"textOnline": "Online",
|
|
||||||
"textPageNumbers": "Page Numbers",
|
"textPageNumbers": "Page Numbers",
|
||||||
"textParagraphStyle": "Paragraph Style",
|
|
||||||
"textRefresh": "Refresh",
|
|
||||||
"textRefreshEntireTable": "Refresh entire table",
|
"textRefreshEntireTable": "Refresh entire table",
|
||||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||||
"textRemoveTableContent": "Remove table of contents",
|
|
||||||
"textRightAlign": "Right Align",
|
"textRightAlign": "Right Align",
|
||||||
"textSameCreatedNewStyle": "Same as created new style",
|
|
||||||
"textSimple": "Simple",
|
|
||||||
"textStandard": "Standard",
|
|
||||||
"textStructure": "Structure",
|
"textStructure": "Structure",
|
||||||
"textStyles": "Styles",
|
"textTableOfCont": "TOC"
|
||||||
"textTableOfCont": "TOC",
|
|
||||||
"textTitle": "Title"
|
|
||||||
},
|
},
|
||||||
"Error": {
|
"Error": {
|
||||||
"convertationTimeoutText": "轉換逾時。",
|
"convertationTimeoutText": "轉換逾時。",
|
||||||
|
@ -380,6 +380,7 @@
|
||||||
"errorDataRange": "不正確的資料範圍",
|
"errorDataRange": "不正確的資料範圍",
|
||||||
"errorDefaultMessage": "錯誤編號:%1",
|
"errorDefaultMessage": "錯誤編號:%1",
|
||||||
"errorEditingDownloadas": "操作文件時發生錯誤<br>請將文件備份到本機端。",
|
"errorEditingDownloadas": "操作文件時發生錯誤<br>請將文件備份到本機端。",
|
||||||
|
"errorEmptyTOC": "用選取的文字然後利用樣式庫中的標題風格來創造目錄",
|
||||||
"errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。",
|
"errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。",
|
||||||
"errorFileSizeExceed": "此文件大小已超出主機之限制。<br>請聯絡您的帳戶管理員。",
|
"errorFileSizeExceed": "此文件大小已超出主機之限制。<br>請聯絡您的帳戶管理員。",
|
||||||
"errorKeyEncrypt": "未知密鑰描述符",
|
"errorKeyEncrypt": "未知密鑰描述符",
|
||||||
|
@ -387,6 +388,7 @@
|
||||||
"errorLoadingFont": "字型未載入。<br>請聯絡文件服務(Document Server)管理員。",
|
"errorLoadingFont": "字型未載入。<br>請聯絡文件服務(Document Server)管理員。",
|
||||||
"errorMailMergeLoadFile": "載入失敗",
|
"errorMailMergeLoadFile": "載入失敗",
|
||||||
"errorMailMergeSaveFile": "合併失敗。",
|
"errorMailMergeSaveFile": "合併失敗。",
|
||||||
|
"errorNoTOC": "沒有目錄需要更新。你可以從引用頁來插入。",
|
||||||
"errorSessionAbsolute": "該文件編輯時效已欲期。請重新載入此頁面。",
|
"errorSessionAbsolute": "該文件編輯時效已欲期。請重新載入此頁面。",
|
||||||
"errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。",
|
"errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。",
|
||||||
"errorSessionToken": "主機連線被中斷,請重新載入此頁面。",
|
"errorSessionToken": "主機連線被中斷,請重新載入此頁面。",
|
||||||
|
@ -405,9 +407,7 @@
|
||||||
"unknownErrorText": "未知錯誤。",
|
"unknownErrorText": "未知錯誤。",
|
||||||
"uploadImageExtMessage": "圖片格式未知。",
|
"uploadImageExtMessage": "圖片格式未知。",
|
||||||
"uploadImageFileCountMessage": "無上傳圖片。",
|
"uploadImageFileCountMessage": "無上傳圖片。",
|
||||||
"uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。",
|
"uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。"
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab."
|
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "載入資料中...",
|
"applyChangesTextText": "載入資料中...",
|
||||||
|
@ -529,6 +529,7 @@
|
||||||
"textRemember": "記住我的選擇",
|
"textRemember": "記住我的選擇",
|
||||||
"textReplaceSkipped": "替換已完成。 {0}已跳過。",
|
"textReplaceSkipped": "替換已完成。 {0}已跳過。",
|
||||||
"textReplaceSuccess": "搜尋已完成。已替換次數:{0}",
|
"textReplaceSuccess": "搜尋已完成。已替換次數:{0}",
|
||||||
|
"textRequestMacros": "有一個巨集指令要求連結至URL。是否允許該要求至%1?",
|
||||||
"textYes": "是",
|
"textYes": "是",
|
||||||
"titleLicenseExp": "憑證過期",
|
"titleLicenseExp": "憑證過期",
|
||||||
"titleServerVersion": "編輯器已更新",
|
"titleServerVersion": "編輯器已更新",
|
||||||
|
@ -540,8 +541,7 @@
|
||||||
"warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。",
|
"warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。",
|
||||||
"warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。",
|
"warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。",
|
||||||
"warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
|
"warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
|
||||||
"warnProcessRightsChange": "您沒有編輯這個文件的權限。",
|
"warnProcessRightsChange": "您沒有編輯這個文件的權限。"
|
||||||
"textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?"
|
|
||||||
},
|
},
|
||||||
"Settings": {
|
"Settings": {
|
||||||
"advDRMOptions": "受保護的檔案",
|
"advDRMOptions": "受保護的檔案",
|
||||||
|
@ -554,6 +554,7 @@
|
||||||
"textApplicationSettings": "應用程式設定",
|
"textApplicationSettings": "應用程式設定",
|
||||||
"textAuthor": "作者",
|
"textAuthor": "作者",
|
||||||
"textBack": "返回",
|
"textBack": "返回",
|
||||||
|
"textBeginningDocument": "文件的開頭",
|
||||||
"textBottom": "底部",
|
"textBottom": "底部",
|
||||||
"textCancel": "取消",
|
"textCancel": "取消",
|
||||||
"textCaseSensitive": "區分大小寫",
|
"textCaseSensitive": "區分大小寫",
|
||||||
|
@ -567,6 +568,7 @@
|
||||||
"textCommentsDisplay": "顯示回應",
|
"textCommentsDisplay": "顯示回應",
|
||||||
"textCreated": "已建立",
|
"textCreated": "已建立",
|
||||||
"textCustomSize": "自訂大小",
|
"textCustomSize": "自訂大小",
|
||||||
|
"textDirection": "方向",
|
||||||
"textDisableAll": "全部停用",
|
"textDisableAll": "全部停用",
|
||||||
"textDisableAllMacrosWithNotification": "停用所有帶通知的巨集",
|
"textDisableAllMacrosWithNotification": "停用所有帶通知的巨集",
|
||||||
"textDisableAllMacrosWithoutNotification": "停用所有不帶通知的巨集",
|
"textDisableAllMacrosWithoutNotification": "停用所有不帶通知的巨集",
|
||||||
|
@ -578,9 +580,12 @@
|
||||||
"textDownloadAs": "轉檔並下載",
|
"textDownloadAs": "轉檔並下載",
|
||||||
"textDownloadRtf": "以這個格式來儲存此文件的話,部份的文字排版效果將會遺失。您確定要繼續嗎?",
|
"textDownloadRtf": "以這個格式來儲存此文件的話,部份的文字排版效果將會遺失。您確定要繼續嗎?",
|
||||||
"textDownloadTxt": "若使用此格式來儲存這份文件的話,除了純文字以外,其他的文件功能將會失效。您確定要繼續嗎?",
|
"textDownloadTxt": "若使用此格式來儲存這份文件的話,除了純文字以外,其他的文件功能將會失效。您確定要繼續嗎?",
|
||||||
|
"textEmptyHeading": "空標題",
|
||||||
"textEnableAll": "全部啟用",
|
"textEnableAll": "全部啟用",
|
||||||
"textEnableAllMacrosWithoutNotification": "啟用所有不帶通知的巨集",
|
"textEnableAllMacrosWithoutNotification": "啟用所有不帶通知的巨集",
|
||||||
"textEncoding": "編碼方式",
|
"textEncoding": "編碼方式",
|
||||||
|
"textFastWV": "快速Web預覽",
|
||||||
|
"textFeedback": "反饋與支持",
|
||||||
"textFind": "尋找",
|
"textFind": "尋找",
|
||||||
"textFindAndReplace": "尋找與取代",
|
"textFindAndReplace": "尋找與取代",
|
||||||
"textFindAndReplaceAll": "尋找與全部取代",
|
"textFindAndReplaceAll": "尋找與全部取代",
|
||||||
|
@ -593,12 +598,14 @@
|
||||||
"textLastModified": "上一次更改",
|
"textLastModified": "上一次更改",
|
||||||
"textLastModifiedBy": "最後修改者",
|
"textLastModifiedBy": "最後修改者",
|
||||||
"textLeft": "左",
|
"textLeft": "左",
|
||||||
|
"textLeftToRight": "左到右",
|
||||||
"textLoading": "載入中...",
|
"textLoading": "載入中...",
|
||||||
"textLocation": "位置",
|
"textLocation": "位置",
|
||||||
"textMacrosSettings": "巨集設定",
|
"textMacrosSettings": "巨集設定",
|
||||||
"textMargins": "邊界",
|
"textMargins": "邊界",
|
||||||
"textMarginsH": "對於給定的頁面高度,上下邊距太高",
|
"textMarginsH": "對於給定的頁面高度,上下邊距太高",
|
||||||
"textMarginsW": "給定頁面寬度,左右頁邊距太寬",
|
"textMarginsW": "給定頁面寬度,左右頁邊距太寬",
|
||||||
|
"textNavigation": "導航",
|
||||||
"textNo": "沒有",
|
"textNo": "沒有",
|
||||||
"textNoCharacters": "非印刷字符",
|
"textNoCharacters": "非印刷字符",
|
||||||
"textNoTextFound": "找不到文字",
|
"textNoTextFound": "找不到文字",
|
||||||
|
@ -609,6 +616,9 @@
|
||||||
"textPages": "頁",
|
"textPages": "頁",
|
||||||
"textPageSize": "頁面大小",
|
"textPageSize": "頁面大小",
|
||||||
"textParagraphs": "段落",
|
"textParagraphs": "段落",
|
||||||
|
"textPdfProducer": "PDF產生器",
|
||||||
|
"textPdfTagged": "已標記為PDF",
|
||||||
|
"textPdfVer": "PDF版本",
|
||||||
"textPoint": "點",
|
"textPoint": "點",
|
||||||
"textPortrait": "直向方向",
|
"textPortrait": "直向方向",
|
||||||
"textPrint": "列印",
|
"textPrint": "列印",
|
||||||
|
@ -617,6 +627,7 @@
|
||||||
"textReplaceAll": "取代全部",
|
"textReplaceAll": "取代全部",
|
||||||
"textResolvedComments": "已解決的註解",
|
"textResolvedComments": "已解決的註解",
|
||||||
"textRight": "右",
|
"textRight": "右",
|
||||||
|
"textRightToLeft": "右到左",
|
||||||
"textSearch": "搜尋",
|
"textSearch": "搜尋",
|
||||||
"textSettings": "設定",
|
"textSettings": "設定",
|
||||||
"textShowNotification": "顯示通知",
|
"textShowNotification": "顯示通知",
|
||||||
|
@ -657,19 +668,8 @@
|
||||||
"txtScheme7": "產權",
|
"txtScheme7": "產權",
|
||||||
"txtScheme8": "流程",
|
"txtScheme8": "流程",
|
||||||
"txtScheme9": "鑄造廠",
|
"txtScheme9": "鑄造廠",
|
||||||
"textBeginningDocument": "Beginning of document",
|
|
||||||
"textDirection": "Direction",
|
|
||||||
"textEmptyHeading": "Empty Heading",
|
|
||||||
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
|
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
|
||||||
"textFastWV": "Fast Web View",
|
"textRestartApplication": "Please restart the application for the changes to take effect"
|
||||||
"textFeedback": "Feedback & Support",
|
|
||||||
"textLeftToRight": "Left To Right",
|
|
||||||
"textNavigation": "Navigation",
|
|
||||||
"textPdfProducer": "PDF Producer",
|
|
||||||
"textPdfTagged": "Tagged PDF",
|
|
||||||
"textPdfVer": "PDF Version",
|
|
||||||
"textRestartApplication": "Please restart the application for the changes to take effect",
|
|
||||||
"textRightToLeft": "Right To Left"
|
|
||||||
},
|
},
|
||||||
"Toolbar": {
|
"Toolbar": {
|
||||||
"dlgLeaveMsgText": "您有未儲存的變更。點擊“留在此頁面”以等待自動儲存。點擊“離開此頁面”以放棄所有未儲存的變更。",
|
"dlgLeaveMsgText": "您有未儲存的變更。點擊“留在此頁面”以等待自動儲存。點擊“離開此頁面”以放棄所有未儲存的變更。",
|
||||||
|
|
|
@ -393,7 +393,7 @@
|
||||||
"errorSessionIdle": "该文档已经有一段时间没有编辑了。请刷新该页。",
|
"errorSessionIdle": "该文档已经有一段时间没有编辑了。请刷新该页。",
|
||||||
"errorSessionToken": "与服务器的链接被打断。请刷新该页。",
|
"errorSessionToken": "与服务器的链接被打断。请刷新该页。",
|
||||||
"errorStockChart": "行的顺序有误。要想建立股票图表,请将数据按照如下顺序安放到表格中:<br> 开盘价格,最高价格,最低价格,收盘价格。",
|
"errorStockChart": "行的顺序有误。要想建立股票图表,请将数据按照如下顺序安放到表格中:<br> 开盘价格,最高价格,最低价格,收盘价格。",
|
||||||
"errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。",
|
"errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后重新加载此页。",
|
||||||
"errorUserDrop": "当前不能访问该文件。",
|
"errorUserDrop": "当前不能访问该文件。",
|
||||||
"errorUsersExceed": "超过了定价计划允许的用户数",
|
"errorUsersExceed": "超过了定价计划允许的用户数",
|
||||||
"errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,<br>但在连接恢复并刷新该页之前,你将不能下载或打印这个文档。",
|
"errorViewerDisconnect": "网络连接失败。你仍然可以查看这个文档,<br>但在连接恢复并刷新该页之前,你将不能下载或打印这个文档。",
|
||||||
|
|
|
@ -362,7 +362,7 @@ class ContextMenu extends ContextMenuController {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if(inToc) {
|
if(inToc && isEdit) {
|
||||||
itemsText.push({
|
itemsText.push({
|
||||||
caption: t('ContextMenu.textRefreshEntireTable'),
|
caption: t('ContextMenu.textRefreshEntireTable'),
|
||||||
event: 'refreshEntireTable'
|
event: 'refreshEntireTable'
|
||||||
|
|
|
@ -124,6 +124,7 @@ class MainController extends Component {
|
||||||
docInfo = new Asc.asc_CDocInfo();
|
docInfo = new Asc.asc_CDocInfo();
|
||||||
docInfo.put_Id(data.doc.key);
|
docInfo.put_Id(data.doc.key);
|
||||||
docInfo.put_Url(data.doc.url);
|
docInfo.put_Url(data.doc.url);
|
||||||
|
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||||
docInfo.put_Title(data.doc.title);
|
docInfo.put_Title(data.doc.title);
|
||||||
docInfo.put_Format(data.doc.fileType);
|
docInfo.put_Format(data.doc.fileType);
|
||||||
docInfo.put_VKey(data.doc.vkey);
|
docInfo.put_VKey(data.doc.vkey);
|
||||||
|
@ -445,7 +446,8 @@ class MainController extends Component {
|
||||||
|| licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0))
|
|| licType === Asc.c_oLicenseResult.SuccessLimit && (appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0))
|
||||||
this._state.licenseType = licType;
|
this._state.licenseType = licType;
|
||||||
|
|
||||||
if (licType !== undefined && appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS))
|
if (licType !== undefined && appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS ||
|
||||||
|
licType===Asc.c_oLicenseResult.UsersViewCount || licType===Asc.c_oLicenseResult.UsersViewCountOS))
|
||||||
this._state.licenseType = licType;
|
this._state.licenseType = licType;
|
||||||
|
|
||||||
if (this._isDocReady && this._state.licenseType)
|
if (this._isDocReady && this._state.licenseType)
|
||||||
|
@ -480,7 +482,8 @@ class MainController extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (appOptions.config.mode === 'view') {
|
if (appOptions.config.mode === 'view') {
|
||||||
if (appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS)) {
|
if (appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS ||
|
||||||
|
this._state.licenseType===Asc.c_oLicenseResult.UsersViewCount || this._state.licenseType===Asc.c_oLicenseResult.UsersViewCountOS)) {
|
||||||
appOptions.canLiveView = false;
|
appOptions.canLiveView = false;
|
||||||
this.api.asc_SetFastCollaborative(false);
|
this.api.asc_SetFastCollaborative(false);
|
||||||
}
|
}
|
||||||
|
@ -721,6 +724,12 @@ class MainController extends Component {
|
||||||
storeDocumentInfo.changeCount(this.objectInfo);
|
storeDocumentInfo.changeCount(this.objectInfo);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.api.asc_registerCallback('asc_onMeta', (meta) => {
|
||||||
|
if(meta) {
|
||||||
|
storeDocumentInfo.changeTitle(meta.title);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Color Schemes
|
// Color Schemes
|
||||||
|
|
||||||
this.api.asc_registerCallback('asc_onSendThemeColorSchemes', (arr) => {
|
this.api.asc_registerCallback('asc_onSendThemeColorSchemes', (arr) => {
|
||||||
|
|
|
@ -221,7 +221,7 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
.sheet-modal-inner {
|
.sheet-modal-inner {
|
||||||
background: @background-tertiary;
|
background: @background-tertiary;
|
||||||
overflow-y: auto;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
&.sheet-modal-bottom:before, &.sheet-modal:not(.sheet-modal-top):before {
|
&.sheet-modal-bottom:before, &.sheet-modal:not(.sheet-modal-top):before {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
|
@ -8,7 +8,8 @@ export class storeDocumentInfo {
|
||||||
dataDoc: observable,
|
dataDoc: observable,
|
||||||
switchIsLoaded: action,
|
switchIsLoaded: action,
|
||||||
changeCount: action,
|
changeCount: action,
|
||||||
setDataDoc: action
|
setDataDoc: action,
|
||||||
|
changeTitle: action
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,4 +46,8 @@ export class storeDocumentInfo {
|
||||||
setDataDoc(obj) {
|
setDataDoc(obj) {
|
||||||
this.dataDoc = obj;
|
this.dataDoc = obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
changeTitle(title) {
|
||||||
|
this.dataDoc.title = title;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -207,7 +207,7 @@ const EditParagraph = props => {
|
||||||
onStyleMenuDelete: props.onStyleMenuDelete
|
onStyleMenuDelete: props.onStyleMenuDelete
|
||||||
}}>
|
}}>
|
||||||
{curStyle &&
|
{curStyle &&
|
||||||
<div slot="inner" style={{backgroundImage: 'url(' + curStyle.image + ')', width: thumbSize.width + 'px', height: thumbSize.height + 'px', backgroundSize: thumbSize.width + 'px ' + thumbSize.height + 'px', backgroundRepeat: 'no-repeat'}}></div>
|
<div slot="inner" style={{backgroundImage: 'url(' + curStyle.image + ')', width: '100%', height: thumbSize.height + 'px', backgroundSize: '100% ' + thumbSize.height + 'px', backgroundRepeat: 'no-repeat'}}></div>
|
||||||
}
|
}
|
||||||
</ListItem>
|
</ListItem>
|
||||||
</List>
|
</List>
|
||||||
|
@ -278,7 +278,7 @@ const EditParagraphStyle = props => {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div slot="inner"
|
<div slot="inner"
|
||||||
style={{backgroundImage: 'url(' + style.image + ')', width: thumbSize.width + 'px', height: thumbSize.height + 'px', backgroundSize: thumbSize.width + 'px ' + thumbSize.height + 'px', backgroundRepeat: 'no-repeat'}}
|
style={{backgroundImage: 'url(' + style.image + ')', width: '100%', height: thumbSize.height + 'px', backgroundSize: '100% ' + thumbSize.height + 'px', backgroundRepeat: 'no-repeat'}}
|
||||||
></div>
|
></div>
|
||||||
{!api.asc_IsStyleDefault(style.name) && (
|
{!api.asc_IsStyleDefault(style.name) && (
|
||||||
<div slot="inner-end">
|
<div slot="inner-end">
|
||||||
|
@ -369,7 +369,7 @@ const ChangeNextParagraphStyle = props => {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div slot="inner"
|
<div slot="inner"
|
||||||
style={{backgroundImage: 'url(' + style.image + ')', width: thumbSize.width + 'px', height: thumbSize.height + 'px', backgroundSize: thumbSize.width + 'px ' + thumbSize.height + 'px', backgroundRepeat: 'no-repeat'}}
|
style={{backgroundImage: 'url(' + style.image + ')', width: '100%', height: thumbSize.height + 'px', backgroundSize: '100% ' + thumbSize.height + 'px', backgroundRepeat: 'no-repeat'}}
|
||||||
></div>
|
></div>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
))}
|
))}
|
||||||
|
|
|
@ -260,12 +260,12 @@ const PageEditStructureTableContents = props => {
|
||||||
<List>
|
<List>
|
||||||
{styles.map((style, index) => {
|
{styles.map((style, index) => {
|
||||||
return (
|
return (
|
||||||
<ListItem checkbox key={index} title={style.displayValue} checked={style.checked}>
|
<ListItem checkbox key={index} title={style.displayValue} checked={style.checked && style.value >= 1}>
|
||||||
{!isAndroid && <div slot='after-start'>{style.value}</div>}
|
{!isAndroid && <div slot='after-start'>{style.value === 0 ? '' : style.value}</div>}
|
||||||
<div slot='after'>
|
<div slot='after'>
|
||||||
<Segmented>
|
<Segmented>
|
||||||
<Button outline className='decrement item-link' onClick={() => {
|
<Button outline className='decrement item-link' onClick={() => {
|
||||||
if(style.value > 1) {
|
if(style.value >= 1) {
|
||||||
setAmountLevels(-1);
|
setAmountLevels(-1);
|
||||||
addNewStyle(style);
|
addNewStyle(style);
|
||||||
props.addStyles(chosenStyles, style.name, style.value - 1);
|
props.addStyles(chosenStyles, style.name, style.value - 1);
|
||||||
|
|
|
@ -8,7 +8,6 @@ const PageDocumentInfo = (props) => {
|
||||||
const _t = t("Settings", { returnObjects: true });
|
const _t = t("Settings", { returnObjects: true });
|
||||||
const storeInfo = props.storeDocumentInfo;
|
const storeInfo = props.storeDocumentInfo;
|
||||||
const fileType = storeInfo.dataDoc.fileType;
|
const fileType = storeInfo.dataDoc.fileType;
|
||||||
|
|
||||||
const dataApp = props.getAppProps();
|
const dataApp = props.getAppProps();
|
||||||
|
|
||||||
const {
|
const {
|
||||||
|
|
|
@ -32,7 +32,7 @@ const NavigationPopover = inject('storeNavigation')(observer(props => {
|
||||||
<List className="navigation-list">
|
<List className="navigation-list">
|
||||||
{arrHeaders.map((header, index) => {
|
{arrHeaders.map((header, index) => {
|
||||||
return (
|
return (
|
||||||
<ListItem radio key={index} title={header.isEmptyItem ? t('Settings.textEmptyHeading') : header.name} checked={header.index === currentPosition} style={{paddingLeft: header.level * 16}} onClick={() => {
|
<ListItem radio key={index} title={header.isEmptyItem ? t('Settings.textBeginningDocument') : header.name} checked={header.index === currentPosition} style={{paddingLeft: header.level * 16}} onClick={() => {
|
||||||
setCurrentPosition(header.index);
|
setCurrentPosition(header.index);
|
||||||
props.onSelectItem(header.index);
|
props.onSelectItem(header.index);
|
||||||
}}></ListItem>
|
}}></ListItem>
|
||||||
|
@ -121,7 +121,7 @@ const NavigationSheet = inject('storeNavigation')(observer(props => {
|
||||||
<List className="navigation-list">
|
<List className="navigation-list">
|
||||||
{arrHeaders.map((header, index) => {
|
{arrHeaders.map((header, index) => {
|
||||||
return (
|
return (
|
||||||
<ListItem radio key={index} title={header.isEmptyItem ? t('Settings.textEmptyHeading') : header.name} checked={header.index === currentPosition} style={{paddingLeft: header.level * 16}} onClick={() => {
|
<ListItem radio key={index} title={header.isEmptyItem ? t('Settings.textBeginningDocument') : header.name} checked={header.index === currentPosition} style={{paddingLeft: header.level * 16}} onClick={() => {
|
||||||
setCurrentPosition(header.index);
|
setCurrentPosition(header.index);
|
||||||
props.onSelectItem(header.index);
|
props.onSelectItem(header.index);
|
||||||
}}></ListItem>
|
}}></ListItem>
|
||||||
|
|
|
@ -115,6 +115,7 @@ PE.ApplicationController = new(function(){
|
||||||
|
|
||||||
docInfo.put_Id(docConfig.key);
|
docInfo.put_Id(docConfig.key);
|
||||||
docInfo.put_Url(docConfig.url);
|
docInfo.put_Url(docConfig.url);
|
||||||
|
docInfo.put_DirectUrl(docConfig.directUrl);
|
||||||
docInfo.put_Title(docConfig.title);
|
docInfo.put_Title(docConfig.title);
|
||||||
docInfo.put_Format(docConfig.fileType);
|
docInfo.put_Format(docConfig.fileType);
|
||||||
docInfo.put_VKey(docConfig.vkey);
|
docInfo.put_VKey(docConfig.vkey);
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
"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.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.errorLoadingFont": "Písma nejsou načtená.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
||||||
"PE.ApplicationController.errorTokenExpire": "Platnost tokenu zabezpečení dokumentu skončila.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
"PE.ApplicationController.errorTokenExpire": "Platnost tokenu zabezpečení dokumentu skončila.<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.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.<br>Než budete moci pokračovat v práci, musíte stáhnout nebo zkopírovat obsah souboru, aby nedošlo ke ztrátě dat. Poté tuto stránku obnovte.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
"PE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Varování",
|
"PE.ApplicationController.notcriticalErrorTitle": "Varování",
|
||||||
"PE.ApplicationController.openErrorText": "Při otevírání souboru došlo k chybě.",
|
"PE.ApplicationController.openErrorText": "Při otevírání souboru došlo k chybě.",
|
||||||
|
|
|
@ -35,5 +35,6 @@
|
||||||
"PE.ApplicationView.txtFileLocation": "Dateispeicherort öffnen",
|
"PE.ApplicationView.txtFileLocation": "Dateispeicherort öffnen",
|
||||||
"PE.ApplicationView.txtFullScreen": "Vollbild-Modus",
|
"PE.ApplicationView.txtFullScreen": "Vollbild-Modus",
|
||||||
"PE.ApplicationView.txtPrint": "Drucken",
|
"PE.ApplicationView.txtPrint": "Drucken",
|
||||||
|
"PE.ApplicationView.txtSearch": "Suche",
|
||||||
"PE.ApplicationView.txtShare": "Freigeben"
|
"PE.ApplicationView.txtShare": "Freigeben"
|
||||||
}
|
}
|
|
@ -17,7 +17,7 @@
|
||||||
"PE.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.",
|
"PE.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.",
|
||||||
"PE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>Veuillez contacter l'administrateur de Document Server.",
|
"PE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"PE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",
|
"PE.ApplicationController.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",
|
||||||
"PE.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.",
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée.<br>Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
"PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
"PE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
||||||
"PE.ApplicationController.openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier.",
|
"PE.ApplicationController.openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier.",
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
"PE.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.",
|
"PE.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.",
|
||||||
"PE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.<br>Si prega di contattare il tuo amministratore di Document Server.",
|
"PE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.<br>Si prega di contattare il tuo amministratore di Document Server.",
|
||||||
"PE.ApplicationController.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Ti preghiamo di contattare l'amministratore del Document Server.",
|
"PE.ApplicationController.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Ti preghiamo di contattare l'amministratore del Document Server.",
|
||||||
"PE.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.",
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso, quindi ricarica questa pagina.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
"PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
"PE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
||||||
"PE.ApplicationController.openErrorText": "Si è verificato un errore durante l'apertura del file.",
|
"PE.ApplicationController.openErrorText": "Si è verificato un errore durante l'apertura del file.",
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"common.view.modals.txtHeight": "Ketinggian",
|
"common.view.modals.txtHeight": "Ketinggian",
|
||||||
"common.view.modals.txtShare": "Kongsi Pautan",
|
"common.view.modals.txtShare": "Kongsi Pautan",
|
||||||
"common.view.modals.txtWidth": "Lebar",
|
"common.view.modals.txtWidth": "Lebar",
|
||||||
|
"common.view.SearchBar.textFind": "Cari",
|
||||||
"PE.ApplicationController.convertationErrorText": "Penukaran telah gagal.",
|
"PE.ApplicationController.convertationErrorText": "Penukaran telah gagal.",
|
||||||
"PE.ApplicationController.convertationTimeoutText": "Melebihi masa tamat penukaran.",
|
"PE.ApplicationController.convertationTimeoutText": "Melebihi masa tamat penukaran.",
|
||||||
"PE.ApplicationController.criticalErrorTitle": "Ralat",
|
"PE.ApplicationController.criticalErrorTitle": "Ralat",
|
||||||
|
@ -34,5 +35,6 @@
|
||||||
"PE.ApplicationView.txtFileLocation": "Buka lokasi fail",
|
"PE.ApplicationView.txtFileLocation": "Buka lokasi fail",
|
||||||
"PE.ApplicationView.txtFullScreen": "Skrin penuh",
|
"PE.ApplicationView.txtFullScreen": "Skrin penuh",
|
||||||
"PE.ApplicationView.txtPrint": "Cetak",
|
"PE.ApplicationView.txtPrint": "Cetak",
|
||||||
|
"PE.ApplicationView.txtSearch": "Carian",
|
||||||
"PE.ApplicationView.txtShare": "Kongsi"
|
"PE.ApplicationView.txtShare": "Kongsi"
|
||||||
}
|
}
|
|
@ -4,6 +4,7 @@
|
||||||
"common.view.modals.txtHeight": "\n高度",
|
"common.view.modals.txtHeight": "\n高度",
|
||||||
"common.view.modals.txtShare": "分享連結",
|
"common.view.modals.txtShare": "分享連結",
|
||||||
"common.view.modals.txtWidth": "寬度",
|
"common.view.modals.txtWidth": "寬度",
|
||||||
|
"common.view.SearchBar.textFind": "尋找",
|
||||||
"PE.ApplicationController.convertationErrorText": "轉換失敗。",
|
"PE.ApplicationController.convertationErrorText": "轉換失敗。",
|
||||||
"PE.ApplicationController.convertationTimeoutText": "轉換逾時。",
|
"PE.ApplicationController.convertationTimeoutText": "轉換逾時。",
|
||||||
"PE.ApplicationController.criticalErrorTitle": "錯誤",
|
"PE.ApplicationController.criticalErrorTitle": "錯誤",
|
||||||
|
@ -34,5 +35,6 @@
|
||||||
"PE.ApplicationView.txtFileLocation": "打開文件所在位置",
|
"PE.ApplicationView.txtFileLocation": "打開文件所在位置",
|
||||||
"PE.ApplicationView.txtFullScreen": "全螢幕",
|
"PE.ApplicationView.txtFullScreen": "全螢幕",
|
||||||
"PE.ApplicationView.txtPrint": "列印",
|
"PE.ApplicationView.txtPrint": "列印",
|
||||||
|
"PE.ApplicationView.txtSearch": "搜索",
|
||||||
"PE.ApplicationView.txtShare": "分享"
|
"PE.ApplicationView.txtShare": "分享"
|
||||||
}
|
}
|
|
@ -17,7 +17,7 @@
|
||||||
"PE.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。",
|
"PE.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。",
|
||||||
"PE.ApplicationController.errorLoadingFont": "字体未加载。<br>请与文档服务器管理员联系。",
|
"PE.ApplicationController.errorLoadingFont": "字体未加载。<br>请与文档服务器管理员联系。",
|
||||||
"PE.ApplicationController.errorTokenExpire": "文档安全令牌已过期。<br>请与您的文档服务器管理员联系。",
|
"PE.ApplicationController.errorTokenExpire": "文档安全令牌已过期。<br>请与您的文档服务器管理员联系。",
|
||||||
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。",
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后重新加载此页。",
|
||||||
"PE.ApplicationController.errorUserDrop": "该文件现在无法访问。",
|
"PE.ApplicationController.errorUserDrop": "该文件现在无法访问。",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "警告",
|
"PE.ApplicationController.notcriticalErrorTitle": "警告",
|
||||||
"PE.ApplicationController.openErrorText": "打开文件时出现错误",
|
"PE.ApplicationController.openErrorText": "打开文件时出现错误",
|
||||||
|
|
|
@ -107,6 +107,7 @@ require([
|
||||||
docInfo = new Asc.asc_CDocInfo();
|
docInfo = new Asc.asc_CDocInfo();
|
||||||
docInfo.put_Id(data.key);
|
docInfo.put_Id(data.key);
|
||||||
docInfo.put_Url(data.url);
|
docInfo.put_Url(data.url);
|
||||||
|
docInfo.put_DirectUrl(data.directUrl);
|
||||||
docInfo.put_Title(data.title);
|
docInfo.put_Title(data.title);
|
||||||
docInfo.put_Format(data.fileType);
|
docInfo.put_Format(data.fileType);
|
||||||
docInfo.put_VKey(data.vkey);
|
docInfo.put_VKey(data.vkey);
|
||||||
|
|
|
@ -230,7 +230,7 @@ define([
|
||||||
me.api.asc_registerCallback('asc_onUpdateThemeIndex', _.bind(me.onApiUpdateThemeIndex, me));
|
me.api.asc_registerCallback('asc_onUpdateThemeIndex', _.bind(me.onApiUpdateThemeIndex, me));
|
||||||
me.api.asc_registerCallback('asc_onLockDocumentTheme', _.bind(me.onApiLockDocumentTheme, me));
|
me.api.asc_registerCallback('asc_onLockDocumentTheme', _.bind(me.onApiLockDocumentTheme, me));
|
||||||
me.api.asc_registerCallback('asc_onUnLockDocumentTheme', _.bind(me.onApiUnLockDocumentTheme, me));
|
me.api.asc_registerCallback('asc_onUnLockDocumentTheme', _.bind(me.onApiUnLockDocumentTheme, me));
|
||||||
me.api.asc_registerCallback('asc_onStartDemonstration', _.bind(me.onApiStartDemonstration));
|
me.api.asc_registerCallback('asc_onStartDemonstration', _.bind(me.onApiStartDemonstration, me));
|
||||||
|
|
||||||
me.documentHolder.setApi(me.api);
|
me.documentHolder.setApi(me.api);
|
||||||
}
|
}
|
||||||
|
@ -342,6 +342,7 @@ define([
|
||||||
oleEditor.on('hide', _.bind(function(cmp, message) {
|
oleEditor.on('hide', _.bind(function(cmp, message) {
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
this.api.asc_enableKeyEvents(true);
|
this.api.asc_enableKeyEvents(true);
|
||||||
|
this.api.asc_onCloseChartFrame();
|
||||||
}
|
}
|
||||||
var me = this;
|
var me = this;
|
||||||
setTimeout(function(){
|
setTimeout(function(){
|
||||||
|
|
|
@ -421,6 +421,7 @@ define([
|
||||||
docInfo = new Asc.asc_CDocInfo();
|
docInfo = new Asc.asc_CDocInfo();
|
||||||
docInfo.put_Id(data.doc.key);
|
docInfo.put_Id(data.doc.key);
|
||||||
docInfo.put_Url(data.doc.url);
|
docInfo.put_Url(data.doc.url);
|
||||||
|
docInfo.put_DirectUrl(data.doc.directUrl);
|
||||||
docInfo.put_Title(data.doc.title);
|
docInfo.put_Title(data.doc.title);
|
||||||
docInfo.put_Format(data.doc.fileType);
|
docInfo.put_Format(data.doc.fileType);
|
||||||
docInfo.put_VKey(data.doc.vkey);
|
docInfo.put_VKey(data.doc.vkey);
|
||||||
|
@ -975,7 +976,8 @@ define([
|
||||||
|| licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0))
|
|| licType===Asc.c_oLicenseResult.SuccessLimit && (this.appOptions.trialMode & Asc.c_oLicenseMode.Limited) !== 0))
|
||||||
this._state.licenseType = licType;
|
this._state.licenseType = licType;
|
||||||
|
|
||||||
if (licType !== undefined && this.appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS))
|
if (licType !== undefined && this.appOptions.canLiveView && (licType===Asc.c_oLicenseResult.ConnectionsLive || licType===Asc.c_oLicenseResult.ConnectionsLiveOS||
|
||||||
|
licType===Asc.c_oLicenseResult.UsersViewCount || licType===Asc.c_oLicenseResult.UsersViewCountOS))
|
||||||
this._state.licenseType = licType;
|
this._state.licenseType = licType;
|
||||||
|
|
||||||
if (this._isDocReady)
|
if (this._isDocReady)
|
||||||
|
@ -984,7 +986,8 @@ define([
|
||||||
|
|
||||||
applyLicense: function() {
|
applyLicense: function() {
|
||||||
if (this.editorConfig.mode === 'view') {
|
if (this.editorConfig.mode === 'view') {
|
||||||
if (this.appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS)) {
|
if (this.appOptions.canLiveView && (this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLive || this._state.licenseType===Asc.c_oLicenseResult.ConnectionsLiveOS ||
|
||||||
|
this._state.licenseType===Asc.c_oLicenseResult.UsersViewCount || this._state.licenseType===Asc.c_oLicenseResult.UsersViewCountOS)) {
|
||||||
// show warning or write to log if Common.Utils.InternalSettings.get("pe-settings-coauthmode") was true ???
|
// show warning or write to log if Common.Utils.InternalSettings.get("pe-settings-coauthmode") was true ???
|
||||||
this.disableLiveViewing(true);
|
this.disableLiveViewing(true);
|
||||||
}
|
}
|
||||||
|
|
|
@ -108,7 +108,8 @@ define([
|
||||||
in_equation: undefined,
|
in_equation: undefined,
|
||||||
in_chart: false,
|
in_chart: false,
|
||||||
no_columns: false,
|
no_columns: false,
|
||||||
clrhighlight: undefined
|
clrhighlight: undefined,
|
||||||
|
can_copycut: undefined
|
||||||
};
|
};
|
||||||
this._isAddingShape = false;
|
this._isAddingShape = false;
|
||||||
this.slideSizeArr = [
|
this.slideSizeArr = [
|
||||||
|
@ -403,6 +404,7 @@ define([
|
||||||
this.api.asc_registerCallback('asc_onTextLanguage', _.bind(this.onTextLanguage, this));
|
this.api.asc_registerCallback('asc_onTextLanguage', _.bind(this.onTextLanguage, this));
|
||||||
Common.NotificationCenter.on('storage:image-load', _.bind(this.openImageFromStorage, this));
|
Common.NotificationCenter.on('storage:image-load', _.bind(this.openImageFromStorage, this));
|
||||||
Common.NotificationCenter.on('storage:image-insert', _.bind(this.insertImageFromStorage, this));
|
Common.NotificationCenter.on('storage:image-insert', _.bind(this.insertImageFromStorage, this));
|
||||||
|
this.api.asc_registerCallback('asc_onCanCopyCut', _.bind(this.onApiCanCopyCut, this));
|
||||||
} else if (this.mode.isRestrictedEdit) {
|
} else if (this.mode.isRestrictedEdit) {
|
||||||
this.api.asc_registerCallback('asc_onCountPages', _.bind(this.onApiCountPagesRestricted, this));
|
this.api.asc_registerCallback('asc_onCountPages', _.bind(this.onApiCountPagesRestricted, this));
|
||||||
}
|
}
|
||||||
|
@ -2531,6 +2533,7 @@ define([
|
||||||
activateControls: function() {
|
activateControls: function() {
|
||||||
this.onApiPageSize(this.api.get_PresentationWidth(), this.api.get_PresentationHeight());
|
this.onApiPageSize(this.api.get_PresentationWidth(), this.api.get_PresentationHeight());
|
||||||
this.toolbar.lockToolbar(Common.enumLock.disableOnStart, false, {array: this.toolbar.slideOnlyControls.concat(this.toolbar.shapeControls)});
|
this.toolbar.lockToolbar(Common.enumLock.disableOnStart, false, {array: this.toolbar.slideOnlyControls.concat(this.toolbar.shapeControls)});
|
||||||
|
this.toolbar.lockToolbar(Common.enumLock.copyLock, this._state.can_copycut!==true, {array: [this.toolbar.btnCopy, this.toolbar.btnCut]});
|
||||||
this._state.activated = true;
|
this._state.activated = true;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -2677,6 +2680,13 @@ define([
|
||||||
this.api && this.api.asc_AddVideo();
|
this.api && this.api.asc_AddVideo();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onApiCanCopyCut: function(can) {
|
||||||
|
if (this._state.can_copycut !== can) {
|
||||||
|
this.toolbar.lockToolbar(Common.enumLock.copyLock, !can, {array: [this.toolbar.btnCopy, this.toolbar.btnCut]});
|
||||||
|
this._state.can_copycut = can;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
textEmptyImgUrl : 'You need to specify image URL.',
|
textEmptyImgUrl : 'You need to specify image URL.',
|
||||||
textWarning : 'Warning',
|
textWarning : 'Warning',
|
||||||
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 300',
|
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 300',
|
||||||
|
|
|
@ -245,7 +245,9 @@ define([
|
||||||
applyZoom: function (value) {
|
applyZoom: function (value) {
|
||||||
this._state.zoom_percent = undefined;
|
this._state.zoom_percent = undefined;
|
||||||
this._state.zoom_type = undefined;
|
this._state.zoom_type = undefined;
|
||||||
var val = Math.max(25, Math.min(500, value));
|
var val = Math.max(10, Math.min(500, value));
|
||||||
|
if (this._state.zoomValue === val)
|
||||||
|
this.view.cmbZoom.setValue(this._state.zoomValue, this._state.zoomValue + '%');
|
||||||
this.api.zoom(val);
|
this.api.zoom(val);
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.view);
|
Common.NotificationCenter.trigger('edit:complete', this.view);
|
||||||
},
|
},
|
||||||
|
|
|
@ -819,6 +819,8 @@ define([
|
||||||
menuViewCopySeparator.setVisible(!value.isChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
|
menuViewCopySeparator.setVisible(!value.isChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
|
||||||
me.menuViewAddComment.setVisible(!value.isChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
|
me.menuViewAddComment.setVisible(!value.isChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
|
||||||
me.menuViewAddComment.setDisabled(value.locked);
|
me.menuViewAddComment.setDisabled(value.locked);
|
||||||
|
var cancopy = me.api && me.api.can_CopyCut();
|
||||||
|
me.menuViewCopy.setDisabled(!cancopy);
|
||||||
},
|
},
|
||||||
items: [
|
items: [
|
||||||
me.menuViewCopy,
|
me.menuViewCopy,
|
||||||
|
@ -1898,7 +1900,9 @@ define([
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
|
|
||||||
me.menuParagraphAdvanced.setDisabled(disabled);
|
me.menuParagraphAdvanced.setDisabled(disabled);
|
||||||
me.menuParaCut.setDisabled(disabled);
|
var cancopy = me.api && me.api.can_CopyCut();
|
||||||
|
me.menuParaCopy.setDisabled(!cancopy);
|
||||||
|
me.menuParaCut.setDisabled(disabled || !cancopy);
|
||||||
me.menuParaPaste.setDisabled(disabled);
|
me.menuParaPaste.setDisabled(disabled);
|
||||||
|
|
||||||
// spellCheck
|
// spellCheck
|
||||||
|
@ -2011,7 +2015,10 @@ define([
|
||||||
|
|
||||||
me.menuTableCellAlign.setDisabled(value.tableProps.locked || disabled);
|
me.menuTableCellAlign.setDisabled(value.tableProps.locked || disabled);
|
||||||
me.menuTableAdvanced.setDisabled(value.tableProps.locked || disabled);
|
me.menuTableAdvanced.setDisabled(value.tableProps.locked || disabled);
|
||||||
me.menuTableCut.setDisabled(value.tableProps.locked || disabled);
|
|
||||||
|
var cancopy = me.api && me.api.can_CopyCut();
|
||||||
|
me.menuTableCopy.setDisabled(!cancopy);
|
||||||
|
me.menuTableCut.setDisabled(value.tableProps.locked || disabled || !cancopy);
|
||||||
me.menuTablePaste.setDisabled(value.tableProps.locked || disabled);
|
me.menuTablePaste.setDisabled(value.tableProps.locked || disabled);
|
||||||
|
|
||||||
// hyperlink properties
|
// hyperlink properties
|
||||||
|
@ -2179,7 +2186,9 @@ define([
|
||||||
if (me.menuChartEdit.isVisible())
|
if (me.menuChartEdit.isVisible())
|
||||||
me.menuChartEdit.setDisabled(disabled);
|
me.menuChartEdit.setDisabled(disabled);
|
||||||
|
|
||||||
me.menuImgCut.setDisabled(disabled);
|
var cancopy = me.api && me.api.can_CopyCut();
|
||||||
|
me.menuImgCopy.setDisabled(!cancopy);
|
||||||
|
me.menuImgCut.setDisabled(disabled || !cancopy);
|
||||||
me.menuImgPaste.setDisabled(disabled);
|
me.menuImgPaste.setDisabled(disabled);
|
||||||
menuImgShapeArrange.setDisabled(disabled);
|
menuImgShapeArrange.setDisabled(disabled);
|
||||||
me.menuAddToLayoutImg.setDisabled(disabled);
|
me.menuAddToLayoutImg.setDisabled(disabled);
|
||||||
|
|
|
@ -1215,8 +1215,15 @@ define([
|
||||||
this.coreProps = (this.api) ? this.api.asc_getCoreProps() : null;
|
this.coreProps = (this.api) ? this.api.asc_getCoreProps() : null;
|
||||||
if (this.coreProps) {
|
if (this.coreProps) {
|
||||||
var value = this.coreProps.asc_getCreated();
|
var value = this.coreProps.asc_getCreated();
|
||||||
if (value)
|
if (value) {
|
||||||
this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
|
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
|
||||||
|
try {
|
||||||
|
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
} catch (e) {
|
||||||
|
lang = 'en';
|
||||||
|
this.lblDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
}
|
||||||
|
}
|
||||||
this._ShowHideInfoItem(this.lblDate, !!value);
|
this._ShowHideInfoItem(this.lblDate, !!value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1241,8 +1248,15 @@ define([
|
||||||
if (props) {
|
if (props) {
|
||||||
var visible = false;
|
var visible = false;
|
||||||
value = props.asc_getModified();
|
value = props.asc_getModified();
|
||||||
if (value)
|
if (value) {
|
||||||
this.lblModifyDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'}));
|
var lang = (this.mode.lang || 'en').replace('_', '-').toLowerCase();
|
||||||
|
try {
|
||||||
|
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
} catch (e) {
|
||||||
|
lang = 'en';
|
||||||
|
this.lblModifyDate.text(value.toLocaleString(lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(lang, {timeStyle: 'short'}));
|
||||||
|
}
|
||||||
|
}
|
||||||
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
|
visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible;
|
||||||
value = props.asc_getLastModifiedBy();
|
value = props.asc_getLastModifiedBy();
|
||||||
if (value)
|
if (value)
|
||||||
|
|
|
@ -99,7 +99,8 @@ define([
|
||||||
noAnimationPreview: 'no-animation-preview',
|
noAnimationPreview: 'no-animation-preview',
|
||||||
noAnimationRepeat: 'no-animation-repeat',
|
noAnimationRepeat: 'no-animation-repeat',
|
||||||
noAnimationDuration: 'no-animation-duration',
|
noAnimationDuration: 'no-animation-duration',
|
||||||
timingLock: 'timing-lock'
|
timingLock: 'timing-lock',
|
||||||
|
copyLock: 'can-copy'
|
||||||
};
|
};
|
||||||
for (var key in enumLock) {
|
for (var key in enumLock) {
|
||||||
if (enumLock.hasOwnProperty(key)) {
|
if (enumLock.hasOwnProperty(key)) {
|
||||||
|
@ -256,7 +257,7 @@ define([
|
||||||
id: 'id-toolbar-btn-copy',
|
id: 'id-toolbar-btn-copy',
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'toolbar__icon btn-copy',
|
iconCls: 'toolbar__icon btn-copy',
|
||||||
lock: [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart],
|
lock: [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart, _set.copyLock],
|
||||||
dataHint: '1',
|
dataHint: '1',
|
||||||
dataHintDirection: 'top',
|
dataHintDirection: 'top',
|
||||||
dataHintTitle: 'C'
|
dataHintTitle: 'C'
|
||||||
|
@ -278,7 +279,7 @@ define([
|
||||||
id: 'id-toolbar-btn-cut',
|
id: 'id-toolbar-btn-cut',
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'toolbar__icon btn-cut',
|
iconCls: 'toolbar__icon btn-cut',
|
||||||
lock: [_set.slideDeleted, _set.paragraphLock, _set.shapeLock, _set.slideLock, _set.lostConnect, _set.noSlides, _set.disableOnStart],
|
lock: [_set.slideDeleted, _set.paragraphLock, _set.shapeLock, _set.slideLock, _set.lostConnect, _set.noSlides, _set.disableOnStart, _set.copyLock],
|
||||||
dataHint: '1',
|
dataHint: '1',
|
||||||
dataHintDirection: 'top',
|
dataHintDirection: 'top',
|
||||||
dataHintTitle: 'X'
|
dataHintTitle: 'X'
|
||||||
|
|
|
@ -108,6 +108,7 @@ require([
|
||||||
docInfo = new Asc.asc_CDocInfo();
|
docInfo = new Asc.asc_CDocInfo();
|
||||||
docInfo.put_Id(data.key);
|
docInfo.put_Id(data.key);
|
||||||
docInfo.put_Url(data.url);
|
docInfo.put_Url(data.url);
|
||||||
|
docInfo.put_DirectUrl(data.directUrl);
|
||||||
docInfo.put_Title(data.title);
|
docInfo.put_Title(data.title);
|
||||||
docInfo.put_Format(data.fileType);
|
docInfo.put_Format(data.fileType);
|
||||||
docInfo.put_VKey(data.vkey);
|
docInfo.put_VKey(data.vkey);
|
||||||
|
|
|
@ -120,7 +120,7 @@
|
||||||
"Common.define.effectData.textFloatUp": "Flota cap amunt",
|
"Common.define.effectData.textFloatUp": "Flota cap amunt",
|
||||||
"Common.define.effectData.textFlyIn": "Vola cap a dins",
|
"Common.define.effectData.textFlyIn": "Vola cap a dins",
|
||||||
"Common.define.effectData.textFlyOut": "Vola cap a fora",
|
"Common.define.effectData.textFlyOut": "Vola cap a fora",
|
||||||
"Common.define.effectData.textFontColor": "Color del tipus de lletra",
|
"Common.define.effectData.textFontColor": "Color de la lletra",
|
||||||
"Common.define.effectData.textFootball": "Futbol",
|
"Common.define.effectData.textFootball": "Futbol",
|
||||||
"Common.define.effectData.textFromBottom": "Des de baix",
|
"Common.define.effectData.textFromBottom": "Des de baix",
|
||||||
"Common.define.effectData.textFromBottomLeft": "Des de baix a l'esquerra",
|
"Common.define.effectData.textFromBottomLeft": "Des de baix a l'esquerra",
|
||||||
|
@ -573,8 +573,8 @@
|
||||||
"Common.Views.SignDialog.textTitle": "Signa el document",
|
"Common.Views.SignDialog.textTitle": "Signa el document",
|
||||||
"Common.Views.SignDialog.textUseImage": "o clica a \"Selecciona imatge\" per utilitzar una imatge com a signatura",
|
"Common.Views.SignDialog.textUseImage": "o clica a \"Selecciona imatge\" per utilitzar una imatge com a signatura",
|
||||||
"Common.Views.SignDialog.textValid": "Vàlid des de %1 fins a %2",
|
"Common.Views.SignDialog.textValid": "Vàlid des de %1 fins a %2",
|
||||||
"Common.Views.SignDialog.tipFontName": "Nom del tipus de lletra",
|
"Common.Views.SignDialog.tipFontName": "Nom de la lletra",
|
||||||
"Common.Views.SignDialog.tipFontSize": "Mida del tipus de lletra",
|
"Common.Views.SignDialog.tipFontSize": "Mida de la lletra",
|
||||||
"Common.Views.SignSettingsDialog.textAllowComment": "Permetre al signant afegir comentaris al quadre de diàleg de signatura",
|
"Common.Views.SignSettingsDialog.textAllowComment": "Permetre al signant afegir comentaris al quadre de diàleg de signatura",
|
||||||
"Common.Views.SignSettingsDialog.textInfo": "Informació del signant",
|
"Common.Views.SignSettingsDialog.textInfo": "Informació del signant",
|
||||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic",
|
"Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic",
|
||||||
|
@ -594,7 +594,7 @@
|
||||||
"Common.Views.SymbolTableDialog.textEmSpace": "Espai llarg",
|
"Common.Views.SymbolTableDialog.textEmSpace": "Espai llarg",
|
||||||
"Common.Views.SymbolTableDialog.textEnDash": "Guió curt",
|
"Common.Views.SymbolTableDialog.textEnDash": "Guió curt",
|
||||||
"Common.Views.SymbolTableDialog.textEnSpace": "Espai curt",
|
"Common.Views.SymbolTableDialog.textEnSpace": "Espai curt",
|
||||||
"Common.Views.SymbolTableDialog.textFont": "Tipus de lletra",
|
"Common.Views.SymbolTableDialog.textFont": "Lletra",
|
||||||
"Common.Views.SymbolTableDialog.textNBHyphen": "Guió sense ruptura",
|
"Common.Views.SymbolTableDialog.textNBHyphen": "Guió sense ruptura",
|
||||||
"Common.Views.SymbolTableDialog.textNBSpace": "Espai sense pauses",
|
"Common.Views.SymbolTableDialog.textNBSpace": "Espai sense pauses",
|
||||||
"Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó",
|
"Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó",
|
||||||
|
@ -648,7 +648,7 @@
|
||||||
"PE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.",
|
"PE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.",
|
||||||
"PE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut",
|
"PE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut",
|
||||||
"PE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat",
|
"PE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat",
|
||||||
"PE.Controllers.Main.errorLoadingFont": "No s'han carregat els tipus de lletra.<br>Contacteu amb l'administrador del Servidor de Documents.",
|
"PE.Controllers.Main.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.<br> Contacteu amb l'administrador del Servidor de Documents.",
|
||||||
"PE.Controllers.Main.errorProcessSaveResult": "S'ha produït un error en desar.",
|
"PE.Controllers.Main.errorProcessSaveResult": "S'ha produït un error en desar.",
|
||||||
"PE.Controllers.Main.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.",
|
"PE.Controllers.Main.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.",
|
||||||
"PE.Controllers.Main.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.",
|
"PE.Controllers.Main.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.",
|
||||||
|
@ -996,10 +996,13 @@
|
||||||
"PE.Controllers.Main.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.",
|
"PE.Controllers.Main.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.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "No teniu permís per editar el fitxer.",
|
"PE.Controllers.Main.warnProcessRightsChange": "No teniu permís per editar el fitxer.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Advertiment",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Advertiment",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "S'ha fet la cerca. S'han substituït {0} ocurrències",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0} no és un caràcter especial vàlid per a la casella Substitueix per.",
|
"PE.Controllers.Search.warnReplaceString": "{0} no és un caràcter especial vàlid per a la casella Substitueix per.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'està intentat connectar. Comproveu la configuració de connexió",
|
"PE.Controllers.Statusbar.textDisconnect": "S'ha perdut la connexió. S'està intentat connectar. Comproveu la configuració de connexió",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
"PE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que desareu no està disponible al dispositiu actual. <br>L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible. <br>Voleu continuar ?",
|
"PE.Controllers.Toolbar.confirmAddFontName": "La lletra que desareu no està disponible al dispositiu actual. <br>L'estil de text es mostrarà amb una de les lletres del sistema, la lletra desada s'utilitzarà quan estigui disponible. <br>Voleu continuar?",
|
||||||
"PE.Controllers.Toolbar.textAccent": "Accents",
|
"PE.Controllers.Toolbar.textAccent": "Accents",
|
||||||
"PE.Controllers.Toolbar.textBracket": "Claudàtors",
|
"PE.Controllers.Toolbar.textBracket": "Claudàtors",
|
||||||
"PE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l'URL de la imatge.",
|
"PE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l'URL de la imatge.",
|
||||||
|
@ -1644,7 +1647,7 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.okButtonText": "Aplica",
|
"PE.Views.FileMenuPanels.Settings.okButtonText": "Aplica",
|
||||||
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició",
|
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de coedició",
|
||||||
"PE.Views.FileMenuPanels.Settings.strFast": "Ràpid",
|
"PE.Views.FileMenuPanels.Settings.strFast": "Ràpid",
|
||||||
"PE.Views.FileMenuPanels.Settings.strFontRender": "Tipus de lletra suggerides",
|
"PE.Views.FileMenuPanels.Settings.strFontRender": "Lletres suggerides",
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignora les paraules en MAJÚSCULA",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignora les paraules en MAJÚSCULA",
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignora les paraules amb números",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignora les paraules amb números",
|
||||||
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros",
|
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de les macros",
|
||||||
|
@ -1804,7 +1807,7 @@
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Després",
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Després",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Abans",
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Abans",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial",
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipus de lletra",
|
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Lletra",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat",
|
"PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes",
|
"PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaiat",
|
"PE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaiat",
|
||||||
|
@ -2172,6 +2175,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "Forma",
|
"PE.Views.Toolbar.capInsertShape": "Forma",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Taula",
|
"PE.Views.Toolbar.capInsertTable": "Taula",
|
||||||
"PE.Views.Toolbar.capInsertText": "Quadre de text",
|
"PE.Views.Toolbar.capInsertText": "Quadre de text",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Galeria de text",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
|
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
|
||||||
"PE.Views.Toolbar.capTabFile": "Fitxer",
|
"PE.Views.Toolbar.capTabFile": "Fitxer",
|
||||||
"PE.Views.Toolbar.capTabHome": "Inici",
|
"PE.Views.Toolbar.capTabHome": "Inici",
|
||||||
|
@ -2244,15 +2248,15 @@
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "Copia l'estil",
|
"PE.Views.Toolbar.tipCopyStyle": "Copia l'estil",
|
||||||
"PE.Views.Toolbar.tipCut": "Talla",
|
"PE.Views.Toolbar.tipCut": "Talla",
|
||||||
"PE.Views.Toolbar.tipDateTime": "Insereix la data i l'hora actuals",
|
"PE.Views.Toolbar.tipDateTime": "Insereix la data i l'hora actuals",
|
||||||
"PE.Views.Toolbar.tipDecFont": "Redueix la mida del tipus de lletra",
|
"PE.Views.Toolbar.tipDecFont": "Redueix la mida de la lletra",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "Redueix la mida de la sagnia",
|
"PE.Views.Toolbar.tipDecPrLeft": "Redueix la mida de la sagnia",
|
||||||
"PE.Views.Toolbar.tipEditHeader": "Edita el peu de pàgina",
|
"PE.Views.Toolbar.tipEditHeader": "Edita el peu de pàgina",
|
||||||
"PE.Views.Toolbar.tipFontColor": "Color del tipus de lletra",
|
"PE.Views.Toolbar.tipFontColor": "Color de la lletra",
|
||||||
"PE.Views.Toolbar.tipFontName": "Tipus de lletra",
|
"PE.Views.Toolbar.tipFontName": "Lletra",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Mida del tipus de lletra",
|
"PE.Views.Toolbar.tipFontSize": "Mida de la lletra",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Alineació Horitzontal",
|
"PE.Views.Toolbar.tipHAligh": "Alineació Horitzontal",
|
||||||
"PE.Views.Toolbar.tipHighlightColor": "Ressalta el color",
|
"PE.Views.Toolbar.tipHighlightColor": "Ressalta el color",
|
||||||
"PE.Views.Toolbar.tipIncFont": "Augmenta la mida del tipus de lletra",
|
"PE.Views.Toolbar.tipIncFont": "Augmenta la mida de la lletra",
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Augmenta el sagnat",
|
"PE.Views.Toolbar.tipIncPrLeft": "Augmenta el sagnat",
|
||||||
"PE.Views.Toolbar.tipInsertAudio": "Insereix un àudio",
|
"PE.Views.Toolbar.tipInsertAudio": "Insereix un àudio",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Insereix un gràfic",
|
"PE.Views.Toolbar.tipInsertChart": "Insereix un gràfic",
|
||||||
|
@ -2263,7 +2267,7 @@
|
||||||
"PE.Views.Toolbar.tipInsertSymbol": "Insereix un símbol",
|
"PE.Views.Toolbar.tipInsertSymbol": "Insereix un símbol",
|
||||||
"PE.Views.Toolbar.tipInsertTable": "Insereix una taula",
|
"PE.Views.Toolbar.tipInsertTable": "Insereix una taula",
|
||||||
"PE.Views.Toolbar.tipInsertText": "Insereix un quadre de text",
|
"PE.Views.Toolbar.tipInsertText": "Insereix un quadre de text",
|
||||||
"PE.Views.Toolbar.tipInsertTextArt": "Insereix Text Art",
|
"PE.Views.Toolbar.tipInsertTextArt": "Insereix la galeria de text",
|
||||||
"PE.Views.Toolbar.tipInsertVideo": "Insereix un vídeo",
|
"PE.Views.Toolbar.tipInsertVideo": "Insereix un vídeo",
|
||||||
"PE.Views.Toolbar.tipLineSpace": "Interlineat",
|
"PE.Views.Toolbar.tipLineSpace": "Interlineat",
|
||||||
"PE.Views.Toolbar.tipMarkers": "Pics",
|
"PE.Views.Toolbar.tipMarkers": "Pics",
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonym",
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonym",
|
||||||
"Common.Controllers.ExternalOleEditor.textClose": "Schließen",
|
"Common.Controllers.ExternalOleEditor.textClose": "Schließen",
|
||||||
"Common.Controllers.ExternalOleEditor.warningText": "Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.",
|
"Common.Controllers.ExternalOleEditor.warningText": "Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Achtung",
|
||||||
"Common.define.chartData.textArea": "Fläche",
|
"Common.define.chartData.textArea": "Fläche",
|
||||||
"Common.define.chartData.textAreaStacked": "Gestapelte Fläche",
|
"Common.define.chartData.textAreaStacked": "Gestapelte Fläche",
|
||||||
"Common.define.chartData.textAreaStackedPer": "100% Gestapelte Fläche",
|
"Common.define.chartData.textAreaStackedPer": "100% Gestapelte Fläche",
|
||||||
|
@ -282,6 +283,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standardfarben",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Standardfarben",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Designfarben",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Designfarben",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Klassisch Hell",
|
"Common.UI.Themes.txtThemeClassicLight": "Klassisch Hell",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "Dunkler Kontrast",
|
||||||
"Common.UI.Themes.txtThemeDark": "Dunkel",
|
"Common.UI.Themes.txtThemeDark": "Dunkel",
|
||||||
"Common.UI.Themes.txtThemeLight": "Hell",
|
"Common.UI.Themes.txtThemeLight": "Hell",
|
||||||
"Common.UI.Themes.txtThemeSystem": "Wie im System",
|
"Common.UI.Themes.txtThemeSystem": "Wie im System",
|
||||||
|
@ -377,6 +379,7 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten",
|
||||||
"Common.Views.ExternalOleEditor.textClose": "Schließen",
|
"Common.Views.ExternalOleEditor.textClose": "Schließen",
|
||||||
"Common.Views.ExternalOleEditor.textSave": "Speichern und beenden",
|
"Common.Views.ExternalOleEditor.textSave": "Speichern und beenden",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "Editor der Tabellenkalkulationen",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Benutzer, die die Datei bearbeiten:",
|
"Common.Views.Header.labelCoUsersDescr": "Benutzer, die die Datei bearbeiten:",
|
||||||
"Common.Views.Header.textAddFavorite": "Als Favorit kennzeichnen",
|
"Common.Views.Header.textAddFavorite": "Als Favorit kennzeichnen",
|
||||||
"Common.Views.Header.textAdvSettings": "Erweiterte Einstellungen",
|
"Common.Views.Header.textAdvSettings": "Erweiterte Einstellungen",
|
||||||
|
@ -454,6 +457,7 @@
|
||||||
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
|
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugins",
|
"Common.Views.Plugins.groupCaption": "Plugins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
"Common.Views.Plugins.strPlugins": "Plugins",
|
||||||
|
"Common.Views.Plugins.textClosePanel": "Plugin schließen",
|
||||||
"Common.Views.Plugins.textLoading": "Ladevorgang",
|
"Common.Views.Plugins.textLoading": "Ladevorgang",
|
||||||
"Common.Views.Plugins.textStart": "Starten",
|
"Common.Views.Plugins.textStart": "Starten",
|
||||||
"Common.Views.Plugins.textStop": "Beenden",
|
"Common.Views.Plugins.textStop": "Beenden",
|
||||||
|
@ -548,6 +552,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "Ersetzen",
|
"Common.Views.SearchPanel.textReplace": "Ersetzen",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "Alle ersetzen",
|
"Common.Views.SearchPanel.textReplaceAll": "Alle ersetzen",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "Ersetzen durch",
|
"Common.Views.SearchPanel.textReplaceWith": "Ersetzen durch",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "Suche abgebrochen",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "Suchergebnisse: {0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "Suchergebnisse: {0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "Es gibt zu viele Ergebnisse, um sie hier zu zeigen",
|
"Common.Views.SearchPanel.textTooManyResults": "Es gibt zu viele Ergebnisse, um sie hier zu zeigen",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "Nur ganze Wörter",
|
"Common.Views.SearchPanel.textWholeWords": "Nur ganze Wörter",
|
||||||
|
@ -991,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Achtung",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Achtung",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "Die Suche wurde durchgeführt. {0} Einträge wurden ersetzt",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0} kann als Sonderzeichen für das Feld \"Ersetzen durch\" nicht verwendet werden.",
|
"PE.Controllers.Search.warnReplaceString": "{0} kann als Sonderzeichen für das Feld \"Ersetzen durch\" nicht verwendet werden.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>Die Verbindung wurde unterbrochen</b><br>Verbindungsversuch... Bitte Verbindungseinstellungen überprüfen.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>Die Verbindung wurde unterbrochen</b><br>Verbindungsversuch... Bitte Verbindungseinstellungen überprüfen.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
|
@ -1644,6 +1652,7 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Wörter mit Zahlen ignorieren",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Wörter mit Zahlen ignorieren",
|
||||||
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Einstellungen von Makros",
|
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Einstellungen von Makros",
|
||||||
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen",
|
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Die Schaltfläche Einfügeoptionen beim Einfügen von Inhalten anzeigen",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Änderungen von anderen Benutzern anzeigen",
|
||||||
"PE.Views.FileMenuPanels.Settings.strStrict": "Formal",
|
"PE.Views.FileMenuPanels.Settings.strStrict": "Formal",
|
||||||
"PE.Views.FileMenuPanels.Settings.strTheme": "Thema der Benutzeroberfläche",
|
"PE.Views.FileMenuPanels.Settings.strTheme": "Thema der Benutzeroberfläche",
|
||||||
"PE.Views.FileMenuPanels.Settings.strUnit": "Maßeinheit",
|
"PE.Views.FileMenuPanels.Settings.strUnit": "Maßeinheit",
|
||||||
|
@ -1774,6 +1783,7 @@
|
||||||
"PE.Views.LeftMenu.tipSupport": "Feedback und Support",
|
"PE.Views.LeftMenu.tipSupport": "Feedback und Support",
|
||||||
"PE.Views.LeftMenu.tipTitles": "Titel",
|
"PE.Views.LeftMenu.tipTitles": "Titel",
|
||||||
"PE.Views.LeftMenu.txtDeveloper": "ENTWICKLERMODUS",
|
"PE.Views.LeftMenu.txtDeveloper": "ENTWICKLERMODUS",
|
||||||
|
"PE.Views.LeftMenu.txtEditor": "Editor der Präsentationen",
|
||||||
"PE.Views.LeftMenu.txtLimit": "Zugriffseinschränkung",
|
"PE.Views.LeftMenu.txtLimit": "Zugriffseinschränkung",
|
||||||
"PE.Views.LeftMenu.txtTrial": "Trial-Modus",
|
"PE.Views.LeftMenu.txtTrial": "Trial-Modus",
|
||||||
"PE.Views.LeftMenu.txtTrialDev": "Testversion für Entwickler-Modus",
|
"PE.Views.LeftMenu.txtTrialDev": "Testversion für Entwickler-Modus",
|
||||||
|
@ -2174,6 +2184,7 @@
|
||||||
"PE.Views.Toolbar.mniImageFromFile": "Bild aus Datei",
|
"PE.Views.Toolbar.mniImageFromFile": "Bild aus Datei",
|
||||||
"PE.Views.Toolbar.mniImageFromStorage": "Bild aus dem Speicher",
|
"PE.Views.Toolbar.mniImageFromStorage": "Bild aus dem Speicher",
|
||||||
"PE.Views.Toolbar.mniImageFromUrl": "Bild aus URL",
|
"PE.Views.Toolbar.mniImageFromUrl": "Bild aus URL",
|
||||||
|
"PE.Views.Toolbar.mniInsertSSE": "Tabelle einfügen",
|
||||||
"PE.Views.Toolbar.mniLowerCase": "Kleinbuchstaben",
|
"PE.Views.Toolbar.mniLowerCase": "Kleinbuchstaben",
|
||||||
"PE.Views.Toolbar.mniSentenceCase": "Ersten Buchstaben im Satz großschreiben.",
|
"PE.Views.Toolbar.mniSentenceCase": "Ersten Buchstaben im Satz großschreiben.",
|
||||||
"PE.Views.Toolbar.mniSlideAdvanced": "Erweiterte Einstellungen",
|
"PE.Views.Toolbar.mniSlideAdvanced": "Erweiterte Einstellungen",
|
||||||
|
@ -2234,6 +2245,7 @@
|
||||||
"PE.Views.Toolbar.tipColumns": "Spalten einfügen",
|
"PE.Views.Toolbar.tipColumns": "Spalten einfügen",
|
||||||
"PE.Views.Toolbar.tipCopy": "Kopieren",
|
"PE.Views.Toolbar.tipCopy": "Kopieren",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "Format übertragen",
|
"PE.Views.Toolbar.tipCopyStyle": "Format übertragen",
|
||||||
|
"PE.Views.Toolbar.tipCut": "Ausschneiden",
|
||||||
"PE.Views.Toolbar.tipDateTime": "Das aktuelle Datum und die aktuelle Uhrzeit einfügen ",
|
"PE.Views.Toolbar.tipDateTime": "Das aktuelle Datum und die aktuelle Uhrzeit einfügen ",
|
||||||
"PE.Views.Toolbar.tipDecFont": "Schriftgrad verkleinern",
|
"PE.Views.Toolbar.tipDecFont": "Schriftgrad verkleinern",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "Einzug verkleinern",
|
"PE.Views.Toolbar.tipDecPrLeft": "Einzug verkleinern",
|
||||||
|
@ -2274,6 +2286,7 @@
|
||||||
"PE.Views.Toolbar.tipRedo": "Wiederholen",
|
"PE.Views.Toolbar.tipRedo": "Wiederholen",
|
||||||
"PE.Views.Toolbar.tipSave": "Speichern",
|
"PE.Views.Toolbar.tipSave": "Speichern",
|
||||||
"PE.Views.Toolbar.tipSaveCoauth": "Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.",
|
"PE.Views.Toolbar.tipSaveCoauth": "Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.",
|
||||||
|
"PE.Views.Toolbar.tipSelectAll": "Alles auswählen",
|
||||||
"PE.Views.Toolbar.tipShapeAlign": "Form ausrichten",
|
"PE.Views.Toolbar.tipShapeAlign": "Form ausrichten",
|
||||||
"PE.Views.Toolbar.tipShapeArrange": "Form anordnen",
|
"PE.Views.Toolbar.tipShapeArrange": "Form anordnen",
|
||||||
"PE.Views.Toolbar.tipSlideNum": "Foliennummer einfügen",
|
"PE.Views.Toolbar.tipSlideNum": "Foliennummer einfügen",
|
||||||
|
|
|
@ -2174,11 +2174,11 @@
|
||||||
"PE.Views.Toolbar.capInsertChart": "Chart",
|
"PE.Views.Toolbar.capInsertChart": "Chart",
|
||||||
"PE.Views.Toolbar.capInsertEquation": "Equation",
|
"PE.Views.Toolbar.capInsertEquation": "Equation",
|
||||||
"PE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
|
"PE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
|
||||||
"PE.Views.Toolbar.capInsertTextArt": "Text Art",
|
|
||||||
"PE.Views.Toolbar.capInsertImage": "Image",
|
"PE.Views.Toolbar.capInsertImage": "Image",
|
||||||
"PE.Views.Toolbar.capInsertShape": "Shape",
|
"PE.Views.Toolbar.capInsertShape": "Shape",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Table",
|
"PE.Views.Toolbar.capInsertTable": "Table",
|
||||||
"PE.Views.Toolbar.capInsertText": "Text Box",
|
"PE.Views.Toolbar.capInsertText": "Text Box",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Text Art",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Video",
|
"PE.Views.Toolbar.capInsertVideo": "Video",
|
||||||
"PE.Views.Toolbar.capTabFile": "File",
|
"PE.Views.Toolbar.capTabFile": "File",
|
||||||
"PE.Views.Toolbar.capTabHome": "Home",
|
"PE.Views.Toolbar.capTabHome": "Home",
|
||||||
|
|
|
@ -996,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
|
"PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Advertencia",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Advertencia",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "Se realizó la búsqueda. {0} ocurrencias se sustituyeron",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0} no es un carácter especial válido para la casilla Reemplazar por.",
|
"PE.Controllers.Search.warnReplaceString": "{0} no es un carácter especial válido para la casilla Reemplazar por.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>Se ha perdido la conexión</b><br>Intentando conectar. Compruebe la configuración de la conexión.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>Se ha perdido la conexión</b><br>Intentando conectar. Compruebe la configuración de la conexión.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
|
@ -1838,7 +1841,7 @@
|
||||||
"PE.Views.RightMenu.txtSignatureSettings": "Configuración de firma",
|
"PE.Views.RightMenu.txtSignatureSettings": "Configuración de firma",
|
||||||
"PE.Views.RightMenu.txtSlideSettings": "Ajustes de diapositiva",
|
"PE.Views.RightMenu.txtSlideSettings": "Ajustes de diapositiva",
|
||||||
"PE.Views.RightMenu.txtTableSettings": "Ajustes de tabla",
|
"PE.Views.RightMenu.txtTableSettings": "Ajustes de tabla",
|
||||||
"PE.Views.RightMenu.txtTextArtSettings": "Text Art Settings",
|
"PE.Views.RightMenu.txtTextArtSettings": "Ajustes de galería de texto",
|
||||||
"PE.Views.ShapeSettings.strBackground": "Color de fondo",
|
"PE.Views.ShapeSettings.strBackground": "Color de fondo",
|
||||||
"PE.Views.ShapeSettings.strChange": "Cambiar autoforma",
|
"PE.Views.ShapeSettings.strChange": "Cambiar autoforma",
|
||||||
"PE.Views.ShapeSettings.strColor": "Color",
|
"PE.Views.ShapeSettings.strColor": "Color",
|
||||||
|
@ -2172,6 +2175,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "Forma",
|
"PE.Views.Toolbar.capInsertShape": "Forma",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Tabla",
|
"PE.Views.Toolbar.capInsertTable": "Tabla",
|
||||||
"PE.Views.Toolbar.capInsertText": "Cuadro de Texto",
|
"PE.Views.Toolbar.capInsertText": "Cuadro de Texto",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Galería de Texto",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
|
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
|
||||||
"PE.Views.Toolbar.capTabFile": "Archivo",
|
"PE.Views.Toolbar.capTabFile": "Archivo",
|
||||||
"PE.Views.Toolbar.capTabHome": "Inicio",
|
"PE.Views.Toolbar.capTabHome": "Inicio",
|
||||||
|
@ -2263,7 +2267,7 @@
|
||||||
"PE.Views.Toolbar.tipInsertSymbol": "Insertar symboló",
|
"PE.Views.Toolbar.tipInsertSymbol": "Insertar symboló",
|
||||||
"PE.Views.Toolbar.tipInsertTable": "Insertar tabla",
|
"PE.Views.Toolbar.tipInsertTable": "Insertar tabla",
|
||||||
"PE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
|
"PE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
|
||||||
"PE.Views.Toolbar.tipInsertTextArt": "Insertar Texto Arte",
|
"PE.Views.Toolbar.tipInsertTextArt": "Insertar Galería de Texto",
|
||||||
"PE.Views.Toolbar.tipInsertVideo": "Insertar vídeo",
|
"PE.Views.Toolbar.tipInsertVideo": "Insertar vídeo",
|
||||||
"PE.Views.Toolbar.tipLineSpace": "Espaciado de línea",
|
"PE.Views.Toolbar.tipLineSpace": "Espaciado de línea",
|
||||||
"PE.Views.Toolbar.tipMarkers": "Viñetas",
|
"PE.Views.Toolbar.tipMarkers": "Viñetas",
|
||||||
|
|
|
@ -996,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Aldi bereko %1 editoreren konexio-mugara iritsi zara. Jarri harremanetan %1 salmenta taldearekin mailaz igotzeko baldintzak ezagutzeko.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Aldi bereko %1 editoreren konexio-mugara iritsi zara. Jarri harremanetan %1 salmenta taldearekin mailaz igotzeko baldintzak ezagutzeko.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Fitxategi hau editatzeko baimena ukatu zaizu.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Fitxategi hau editatzeko baimena ukatu zaizu.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Abisua",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Abisua",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "Bilatu duzun datua ezin izan da aurkitu. Doitu bilaketaren ezarpenak.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "Ordezkapena burutu da. {0} agerraldi saltatu dira.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "Bilaketa burutu da. {0} agerraldi ordeztu dira",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0} ez da baliozko karaktere berezi bat Ordezkatu honekin kaxarako.",
|
"PE.Controllers.Search.warnReplaceString": "{0} ez da baliozko karaktere berezi bat Ordezkatu honekin kaxarako.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>Konexioa galdu da</b><br>Saiatu berriz konektatzen. Egiaztatu konexioaren ezarpenak.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>Konexioa galdu da</b><br>Saiatu berriz konektatzen. Egiaztatu konexioaren ezarpenak.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zooma %{0}",
|
"PE.Controllers.Statusbar.zoomText": "Zooma %{0}",
|
||||||
|
@ -2172,6 +2175,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "Forma",
|
"PE.Views.Toolbar.capInsertShape": "Forma",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Taula",
|
"PE.Views.Toolbar.capInsertTable": "Taula",
|
||||||
"PE.Views.Toolbar.capInsertText": "Testu-koadroa",
|
"PE.Views.Toolbar.capInsertText": "Testu-koadroa",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Testu-artea",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Bideoa",
|
"PE.Views.Toolbar.capInsertVideo": "Bideoa",
|
||||||
"PE.Views.Toolbar.capTabFile": "Fitxategia",
|
"PE.Views.Toolbar.capTabFile": "Fitxategia",
|
||||||
"PE.Views.Toolbar.capTabHome": "Hasiera",
|
"PE.Views.Toolbar.capTabHome": "Hasiera",
|
||||||
|
|
|
@ -5,6 +5,10 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Fermer",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Fermer",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "L'objet est désactivé car il est en cours d'être modifié par un autre utilisateur.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "L'objet est désactivé car il est en cours d'être modifié par un autre utilisateur.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Avertissement",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Avertissement",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonyme",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "Fermer",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "L'objet est désactivé, car il est en cours de modification par un autre utilisateur.",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Avertissement",
|
||||||
"Common.define.chartData.textArea": "En aires",
|
"Common.define.chartData.textArea": "En aires",
|
||||||
"Common.define.chartData.textAreaStacked": "Zone empilée",
|
"Common.define.chartData.textAreaStacked": "Zone empilée",
|
||||||
"Common.define.chartData.textAreaStackedPer": "Aire Empilée 100%",
|
"Common.define.chartData.textAreaStackedPer": "Aire Empilée 100%",
|
||||||
|
@ -279,6 +283,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Couleurs standard",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Couleurs standard",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Couleurs de thème",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Couleurs de thème",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Classique clair",
|
"Common.UI.Themes.txtThemeClassicLight": "Classique clair",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "Contraste sombre",
|
||||||
"Common.UI.Themes.txtThemeDark": "Sombre",
|
"Common.UI.Themes.txtThemeDark": "Sombre",
|
||||||
"Common.UI.Themes.txtThemeLight": "Clair",
|
"Common.UI.Themes.txtThemeLight": "Clair",
|
||||||
"Common.UI.Themes.txtThemeSystem": "Identique à système",
|
"Common.UI.Themes.txtThemeSystem": "Identique à système",
|
||||||
|
@ -294,6 +299,9 @@
|
||||||
"Common.UI.Window.yesButtonText": "Oui",
|
"Common.UI.Window.yesButtonText": "Oui",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
|
"Common.Utils.String.textAlt": "Alt",
|
||||||
|
"Common.Utils.String.textCtrl": "Ctrl",
|
||||||
|
"Common.Utils.String.textShift": "Shift",
|
||||||
"Common.Views.About.txtAddress": "adresse: ",
|
"Common.Views.About.txtAddress": "adresse: ",
|
||||||
"Common.Views.About.txtLicensee": "CESSIONNAIRE",
|
"Common.Views.About.txtLicensee": "CESSIONNAIRE",
|
||||||
"Common.Views.About.txtLicensor": "CONCÉDANT",
|
"Common.Views.About.txtLicensor": "CONCÉDANT",
|
||||||
|
@ -369,6 +377,9 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textClose": "Fermer",
|
"Common.Views.ExternalDiagramEditor.textClose": "Fermer",
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Enregistrer",
|
"Common.Views.ExternalDiagramEditor.textSave": "Enregistrer",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Éditeur de graphique",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Éditeur de graphique",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "Fermer",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "Enregistrer et quitter",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "Tableur",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par les utilisateurs suivants :",
|
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par les utilisateurs suivants :",
|
||||||
"Common.Views.Header.textAddFavorite": "Marquer en tant que favori",
|
"Common.Views.Header.textAddFavorite": "Marquer en tant que favori",
|
||||||
"Common.Views.Header.textAdvSettings": "Paramètres avancés",
|
"Common.Views.Header.textAdvSettings": "Paramètres avancés",
|
||||||
|
@ -504,10 +515,10 @@
|
||||||
"Common.Views.ReviewChanges.txtHistory": "Historique des versions",
|
"Common.Views.ReviewChanges.txtHistory": "Historique des versions",
|
||||||
"Common.Views.ReviewChanges.txtMarkup": "Toutes les modifications (édition)",
|
"Common.Views.ReviewChanges.txtMarkup": "Toutes les modifications (édition)",
|
||||||
"Common.Views.ReviewChanges.txtMarkupCap": "Balisage",
|
"Common.Views.ReviewChanges.txtMarkupCap": "Balisage",
|
||||||
"Common.Views.ReviewChanges.txtNext": "Suivant",
|
"Common.Views.ReviewChanges.txtNext": "Suivante",
|
||||||
"Common.Views.ReviewChanges.txtOriginal": "Toutes les modifications rejetées (Aperçu)",
|
"Common.Views.ReviewChanges.txtOriginal": "Toutes les modifications rejetées (Aperçu)",
|
||||||
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
|
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
|
||||||
"Common.Views.ReviewChanges.txtPrev": "Précédent",
|
"Common.Views.ReviewChanges.txtPrev": "Précédente",
|
||||||
"Common.Views.ReviewChanges.txtReject": "Rejeter",
|
"Common.Views.ReviewChanges.txtReject": "Rejeter",
|
||||||
"Common.Views.ReviewChanges.txtRejectAll": "Rejeter toutes les modifications",
|
"Common.Views.ReviewChanges.txtRejectAll": "Rejeter toutes les modifications",
|
||||||
"Common.Views.ReviewChanges.txtRejectChanges": "Rejeter les modifications",
|
"Common.Views.ReviewChanges.txtRejectChanges": "Rejeter les modifications",
|
||||||
|
@ -541,6 +552,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "Remplacer",
|
"Common.Views.SearchPanel.textReplace": "Remplacer",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "Remplacer tout",
|
"Common.Views.SearchPanel.textReplaceAll": "Remplacer tout",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "Remplacer par",
|
"Common.Views.SearchPanel.textReplaceWith": "Remplacer par",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "La recherche a été arrêtée",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "Résultats de la recherche : {0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "Résultats de la recherche : {0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "Il y a trop de résultats pour les montrer ici",
|
"Common.Views.SearchPanel.textTooManyResults": "Il y a trop de résultats pour les montrer ici",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "Mots entiers uniquement",
|
"Common.Views.SearchPanel.textWholeWords": "Mots entiers uniquement",
|
||||||
|
@ -647,7 +659,7 @@
|
||||||
"PE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.<br>Veuillez contacter l'administrateur de Document Server.",
|
"PE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"PE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",
|
"PE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.<br>Veuillez contactez l'administrateur de Document Server.",
|
||||||
"PE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
|
"PE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.",
|
||||||
"PE.Controllers.Main.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. Rechargez la page.",
|
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connexion a été rétablie et la version du fichier a été modifiée.<br>Avant de pouvoir continuer à travailler, vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu, puis recharger cette page.",
|
||||||
"PE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier",
|
"PE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier",
|
||||||
"PE.Controllers.Main.errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
|
"PE.Controllers.Main.errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé",
|
||||||
"PE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie et que la page soit actualisée.",
|
"PE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,<br>mais ne pouvez pas le télécharger ou l'imprimer jusqu'à ce que la connexion soit rétablie et que la page soit actualisée.",
|
||||||
|
@ -984,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Avertissement",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Avertissement",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "Les données que vous recherchez n'ont pas pu être trouvées. Veuillez modifier vos options de recherche.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "La recherche a été effectuée. {0} occurrences ont été remplacées",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0} n'est pas un caractère spécial valide pour la case Remplacer par.",
|
"PE.Controllers.Search.warnReplaceString": "{0} n'est pas un caractère spécial valide pour la case Remplacer par.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>La connexion est perdue</b><br>Tentative de connexion. Veuillez vérifier les paramètres de connexion.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>La connexion est perdue</b><br>Tentative de connexion. Veuillez vérifier les paramètres de connexion.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
|
@ -1637,6 +1652,7 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorer les mots contenant des chiffres",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorer les mots contenant des chiffres",
|
||||||
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Réglages macros",
|
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Réglages macros",
|
||||||
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Afficher le bouton \"Options de collage\" lorsque le contenu est collé ",
|
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Afficher le bouton \"Options de collage\" lorsque le contenu est collé ",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Afficher les modifications apportées par d'autres utilisateurs",
|
||||||
"PE.Views.FileMenuPanels.Settings.strStrict": "Strict",
|
"PE.Views.FileMenuPanels.Settings.strStrict": "Strict",
|
||||||
"PE.Views.FileMenuPanels.Settings.strTheme": "Thème d’interface",
|
"PE.Views.FileMenuPanels.Settings.strTheme": "Thème d’interface",
|
||||||
"PE.Views.FileMenuPanels.Settings.strUnit": "Unité de mesure",
|
"PE.Views.FileMenuPanels.Settings.strUnit": "Unité de mesure",
|
||||||
|
@ -2229,6 +2245,7 @@
|
||||||
"PE.Views.Toolbar.tipColumns": "Insérer des colonnes ",
|
"PE.Views.Toolbar.tipColumns": "Insérer des colonnes ",
|
||||||
"PE.Views.Toolbar.tipCopy": "Copier",
|
"PE.Views.Toolbar.tipCopy": "Copier",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "Copier le style",
|
"PE.Views.Toolbar.tipCopyStyle": "Copier le style",
|
||||||
|
"PE.Views.Toolbar.tipCut": "Couper",
|
||||||
"PE.Views.Toolbar.tipDateTime": "Inserer la date et l'heure actuelle",
|
"PE.Views.Toolbar.tipDateTime": "Inserer la date et l'heure actuelle",
|
||||||
"PE.Views.Toolbar.tipDecFont": "Diminuer la taille de police",
|
"PE.Views.Toolbar.tipDecFont": "Diminuer la taille de police",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "Diminuer le retrait",
|
"PE.Views.Toolbar.tipDecPrLeft": "Diminuer le retrait",
|
||||||
|
@ -2269,6 +2286,7 @@
|
||||||
"PE.Views.Toolbar.tipRedo": "Rétablir",
|
"PE.Views.Toolbar.tipRedo": "Rétablir",
|
||||||
"PE.Views.Toolbar.tipSave": "Enregistrer",
|
"PE.Views.Toolbar.tipSave": "Enregistrer",
|
||||||
"PE.Views.Toolbar.tipSaveCoauth": "Enregistrez vos modifications pour que les autres utilisateurs puissent les voir.",
|
"PE.Views.Toolbar.tipSaveCoauth": "Enregistrez vos modifications pour que les autres utilisateurs puissent les voir.",
|
||||||
|
"PE.Views.Toolbar.tipSelectAll": "Sélectionner tout",
|
||||||
"PE.Views.Toolbar.tipShapeAlign": "Aligner une forme",
|
"PE.Views.Toolbar.tipShapeAlign": "Aligner une forme",
|
||||||
"PE.Views.Toolbar.tipShapeArrange": "Organiser une forme",
|
"PE.Views.Toolbar.tipShapeArrange": "Organiser une forme",
|
||||||
"PE.Views.Toolbar.tipSlideNum": "Inserer le numéro de diapositive",
|
"PE.Views.Toolbar.tipSlideNum": "Inserer le numéro de diapositive",
|
||||||
|
|
|
@ -996,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Figyelmeztetés",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "A keresett adatot nem sikerült megtalálni. Kérjük, módosítsa a keresési beállításokat.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "A keresés megtörtént. {0} eredmények lettek kicserélve",
|
||||||
"PE.Controllers.Search.warnReplaceString": "A {0} nem érvényes speciális karakter a Csere mezőben.",
|
"PE.Controllers.Search.warnReplaceString": "A {0} nem érvényes speciális karakter a Csere mezőben.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>A kapcsolat megszakadt</b><br>Újrakapcsolódás folyamatban. Ellenőrizze a csatlakozási beállításokat.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>A kapcsolat megszakadt</b><br>Újrakapcsolódás folyamatban. Ellenőrizze a csatlakozási beállításokat.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
|
|
|
@ -5,6 +5,10 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Փակել",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Փակել",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Օբյեկտն անջատված է, քանի որ այն խմբագրվում է մեկ այլ օգտվողի կողմից:",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Օբյեկտն անջատված է, քանի որ այն խմբագրվում է մեկ այլ օգտվողի կողմից:",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Զգուշացում",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Զգուշացում",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Անանուն",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "Փակել",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "Օբյեկտն անջատված է, քանի որ այն խմբագրվում է մեկ այլ օգտվողի կողմից:",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Զգուշացում",
|
||||||
"Common.define.chartData.textArea": "Տարածք",
|
"Common.define.chartData.textArea": "Տարածք",
|
||||||
"Common.define.chartData.textAreaStacked": "Շեղջված տարածք",
|
"Common.define.chartData.textAreaStacked": "Շեղջված տարածք",
|
||||||
"Common.define.chartData.textAreaStackedPer": " 100% շեղջված տարածք",
|
"Common.define.chartData.textAreaStackedPer": " 100% շեղջված տարածք",
|
||||||
|
@ -369,6 +373,9 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textClose": "Փակել",
|
"Common.Views.ExternalDiagramEditor.textClose": "Փակել",
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Պահպանել և դուրս գալ",
|
"Common.Views.ExternalDiagramEditor.textSave": "Պահպանել և դուրս գալ",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Գծապատկերի խմբագրիչ",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Գծապատկերի խմբագրիչ",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "Փակել",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "Պահպանել և դուրս գալ",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "Աղյուսակաթերթի խմբագիր",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝",
|
"Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝",
|
||||||
"Common.Views.Header.textAddFavorite": "Նշել որպես հավանած տարբերակ",
|
"Common.Views.Header.textAddFavorite": "Նշել որպես հավանած տարբերակ",
|
||||||
"Common.Views.Header.textAdvSettings": "Հավելյալ կարգավորումներ",
|
"Common.Views.Header.textAdvSettings": "Հավելյալ կարգավորումներ",
|
||||||
|
@ -984,6 +991,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Դուք հասել եք %1 խմբագիրների օգտվողի սահմանաչափին:Անձնական թարմացման պայմանների համար կապվեք %1 վաճառքի թիմի հետ:",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Դուք հասել եք %1 խմբագիրների օգտվողի սահմանաչափին:Անձնական թարմացման պայմանների համար կապվեք %1 վաճառքի թիմի հետ:",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Ձեզ թույլ չի տրվում խմբագրել այս նիշքը։",
|
"PE.Controllers.Main.warnProcessRightsChange": "Ձեզ թույլ չի տրվում խմբագրել այս նիշքը։",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Զգուշացում",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Զգուշացում",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "Որոնումը կատարվել է։ {0} դեպք փոխարինվել է",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0}-ը վավեր գրանշան չէ փոխարինել տուփի համար:",
|
"PE.Controllers.Search.warnReplaceString": "{0}-ը վավեր գրանշան չէ փոխարինել տուփի համար:",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "Կապը ընդատվել է</b><br> Փորձում է միանալ: Խնդրում ենք ստուգել կապի կարգավորումները:",
|
"PE.Controllers.Statusbar.textDisconnect": "Կապը ընդատվել է</b><br> Փորձում է միանալ: Խնդրում ենք ստուգել կապի կարգավորումները:",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Խոշորացնել {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Խոշորացնել {0}%",
|
||||||
|
@ -2159,6 +2169,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "Պատկեր",
|
"PE.Views.Toolbar.capInsertShape": "Պատկեր",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Աղյուսակ",
|
"PE.Views.Toolbar.capInsertTable": "Աղյուսակ",
|
||||||
"PE.Views.Toolbar.capInsertText": "Գրվածքի տուփ",
|
"PE.Views.Toolbar.capInsertText": "Գրվածքի տուփ",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Տեքստարվեստ",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Տեսանյութ",
|
"PE.Views.Toolbar.capInsertVideo": "Տեսանյութ",
|
||||||
"PE.Views.Toolbar.capTabFile": "Ֆայլ",
|
"PE.Views.Toolbar.capTabFile": "Ֆայլ",
|
||||||
"PE.Views.Toolbar.capTabHome": "Գլխավոր",
|
"PE.Views.Toolbar.capTabHome": "Գլխավոր",
|
||||||
|
@ -2229,6 +2240,7 @@
|
||||||
"PE.Views.Toolbar.tipColumns": "Զետեղել սյուներ",
|
"PE.Views.Toolbar.tipColumns": "Զետեղել սյուներ",
|
||||||
"PE.Views.Toolbar.tipCopy": "Պատճենել",
|
"PE.Views.Toolbar.tipCopy": "Պատճենել",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "Պատճենել ոճը",
|
"PE.Views.Toolbar.tipCopyStyle": "Պատճենել ոճը",
|
||||||
|
"PE.Views.Toolbar.tipCut": "Կտրել",
|
||||||
"PE.Views.Toolbar.tipDateTime": "Տեղադրել ընթացիկ ամսաթիվը և ժամը",
|
"PE.Views.Toolbar.tipDateTime": "Տեղադրել ընթացիկ ամսաթիվը և ժամը",
|
||||||
"PE.Views.Toolbar.tipDecFont": "Նվազեցնել տառաչափը",
|
"PE.Views.Toolbar.tipDecFont": "Նվազեցնել տառաչափը",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "Նվազեցնել նահանջը",
|
"PE.Views.Toolbar.tipDecPrLeft": "Նվազեցնել նահանջը",
|
||||||
|
@ -2269,6 +2281,7 @@
|
||||||
"PE.Views.Toolbar.tipRedo": "Վերարկել",
|
"PE.Views.Toolbar.tipRedo": "Վերարկել",
|
||||||
"PE.Views.Toolbar.tipSave": "Պահպանել",
|
"PE.Views.Toolbar.tipSave": "Պահպանել",
|
||||||
"PE.Views.Toolbar.tipSaveCoauth": "Պահպանեք բոլոր փոփոխումները, որպեսզի այլ օգտատերեր տեսնեն դրանք։",
|
"PE.Views.Toolbar.tipSaveCoauth": "Պահպանեք բոլոր փոփոխումները, որպեսզի այլ օգտատերեր տեսնեն դրանք։",
|
||||||
|
"PE.Views.Toolbar.tipSelectAll": "Ընտրել բոլորը",
|
||||||
"PE.Views.Toolbar.tipShapeAlign": "Պատկերի հավասարեցում",
|
"PE.Views.Toolbar.tipShapeAlign": "Պատկերի հավասարեցում",
|
||||||
"PE.Views.Toolbar.tipShapeArrange": "Դասավորել պատկերները",
|
"PE.Views.Toolbar.tipShapeArrange": "Դասավորել պատկերները",
|
||||||
"PE.Views.Toolbar.tipSlideNum": "Զետեղել սահիկի համարը",
|
"PE.Views.Toolbar.tipSlideNum": "Զետեղել սահիկի համարը",
|
||||||
|
|
|
@ -5,6 +5,10 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Chiudi",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Chiudi",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "L'oggetto è disabilitato perché un altro utente lo sta modificando.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "L'oggetto è disabilitato perché un altro utente lo sta modificando.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Avviso",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Avviso",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonimo",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "Chiudere",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "L'oggetto è disabilitato perché è stato modificato da un altro utente.",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Avvertimento",
|
||||||
"Common.define.chartData.textArea": "Area",
|
"Common.define.chartData.textArea": "Area",
|
||||||
"Common.define.chartData.textAreaStacked": "Area impilata",
|
"Common.define.chartData.textAreaStacked": "Area impilata",
|
||||||
"Common.define.chartData.textAreaStackedPer": "Area impilata al 100%",
|
"Common.define.chartData.textAreaStackedPer": "Area impilata al 100%",
|
||||||
|
@ -279,6 +283,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Colori standard",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Colori standard",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Luce leggera",
|
"Common.UI.Themes.txtThemeClassicLight": "Luce leggera",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "Contrasto scuro",
|
||||||
"Common.UI.Themes.txtThemeDark": "Scuro",
|
"Common.UI.Themes.txtThemeDark": "Scuro",
|
||||||
"Common.UI.Themes.txtThemeLight": "Chiaro",
|
"Common.UI.Themes.txtThemeLight": "Chiaro",
|
||||||
"Common.UI.Themes.txtThemeSystem": "Uguale al sistema",
|
"Common.UI.Themes.txtThemeSystem": "Uguale al sistema",
|
||||||
|
@ -294,6 +299,9 @@
|
||||||
"Common.UI.Window.yesButtonText": "Sì",
|
"Common.UI.Window.yesButtonText": "Sì",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
|
"Common.Utils.String.textAlt": "Alt",
|
||||||
|
"Common.Utils.String.textCtrl": "Ctrl",
|
||||||
|
"Common.Utils.String.textShift": "Shift",
|
||||||
"Common.Views.About.txtAddress": "indirizzo: ",
|
"Common.Views.About.txtAddress": "indirizzo: ",
|
||||||
"Common.Views.About.txtLicensee": "LICENZIATARIO",
|
"Common.Views.About.txtLicensee": "LICENZIATARIO",
|
||||||
"Common.Views.About.txtLicensor": "CONCEDENTE",
|
"Common.Views.About.txtLicensor": "CONCEDENTE",
|
||||||
|
@ -369,6 +377,9 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textClose": "Chiudi",
|
"Common.Views.ExternalDiagramEditor.textClose": "Chiudi",
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Salva ed esci",
|
"Common.Views.ExternalDiagramEditor.textSave": "Salva ed esci",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Editor di grafici",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Editor di grafici",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "Chiudere",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "Salvare ed uscire",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "Editor di fogli di calcolo",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
|
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
|
||||||
"Common.Views.Header.textAddFavorite": "Segna come preferito",
|
"Common.Views.Header.textAddFavorite": "Segna come preferito",
|
||||||
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
|
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
|
||||||
|
@ -541,6 +552,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "Sostituisci",
|
"Common.Views.SearchPanel.textReplace": "Sostituisci",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "Sostituisci tutto",
|
"Common.Views.SearchPanel.textReplaceAll": "Sostituisci tutto",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "Sostituire con",
|
"Common.Views.SearchPanel.textReplaceWith": "Sostituire con",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "La ricerca è stata interrotta",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "Ci sono troppi risultati per essere mostrati qui",
|
"Common.Views.SearchPanel.textTooManyResults": "Ci sono troppi risultati per essere mostrati qui",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "Solo parole intere",
|
"Common.Views.SearchPanel.textWholeWords": "Solo parole intere",
|
||||||
|
@ -647,7 +659,7 @@
|
||||||
"PE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
"PE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
||||||
"PE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
"PE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
||||||
"PE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.",
|
"PE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.",
|
||||||
"PE.Controllers.Main.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, quindi ricaricare questa pagina.",
|
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso, quindi ricarica questa pagina.",
|
||||||
"PE.Controllers.Main.errorUserDrop": "Impossibile accedere al file in questo momento.",
|
"PE.Controllers.Main.errorUserDrop": "Impossibile accedere al file in questo momento.",
|
||||||
"PE.Controllers.Main.errorUsersExceed": "È stato superato il numero di utenti consentito dal piano tariffario",
|
"PE.Controllers.Main.errorUsersExceed": "È stato superato il numero di utenti consentito dal piano tariffario",
|
||||||
"PE.Controllers.Main.errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
|
"PE.Controllers.Main.errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
|
||||||
|
@ -984,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Avviso",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Avviso",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "Impossibile trovare i dati che stavi cercando. Ti preghiamo di modificare le opzioni di ricerca.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "La sostituzione è stata effettuata. {0} ricorrenze sono state saltate.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "La ricerca è stata effettuata. {0} occorrenze sono state sostituite",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0} non è un carattere speciale valido per la casella Sostituire con.",
|
"PE.Controllers.Search.warnReplaceString": "{0} non è un carattere speciale valido per la casella Sostituire con.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>Connessione persa</b><br>Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>Connessione persa</b><br>Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
|
@ -1637,6 +1652,7 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignora le parole con i numeri",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignora le parole con i numeri",
|
||||||
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Impostazioni macro",
|
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Impostazioni macro",
|
||||||
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato",
|
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Mostrare le modifiche degli altri utenti",
|
||||||
"PE.Views.FileMenuPanels.Settings.strStrict": "Rigorosa",
|
"PE.Views.FileMenuPanels.Settings.strStrict": "Rigorosa",
|
||||||
"PE.Views.FileMenuPanels.Settings.strTheme": "Tema dell'interfaccia",
|
"PE.Views.FileMenuPanels.Settings.strTheme": "Tema dell'interfaccia",
|
||||||
"PE.Views.FileMenuPanels.Settings.strUnit": "Unità di misura",
|
"PE.Views.FileMenuPanels.Settings.strUnit": "Unità di misura",
|
||||||
|
@ -2229,6 +2245,7 @@
|
||||||
"PE.Views.Toolbar.tipColumns": "Inserisci colonne",
|
"PE.Views.Toolbar.tipColumns": "Inserisci colonne",
|
||||||
"PE.Views.Toolbar.tipCopy": "Copia",
|
"PE.Views.Toolbar.tipCopy": "Copia",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "Copia stile",
|
"PE.Views.Toolbar.tipCopyStyle": "Copia stile",
|
||||||
|
"PE.Views.Toolbar.tipCut": "Tagliare",
|
||||||
"PE.Views.Toolbar.tipDateTime": "Inserisci data e ora correnti",
|
"PE.Views.Toolbar.tipDateTime": "Inserisci data e ora correnti",
|
||||||
"PE.Views.Toolbar.tipDecFont": "Riduci dimensione caratteri",
|
"PE.Views.Toolbar.tipDecFont": "Riduci dimensione caratteri",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "Riduci rientro",
|
"PE.Views.Toolbar.tipDecPrLeft": "Riduci rientro",
|
||||||
|
@ -2269,6 +2286,7 @@
|
||||||
"PE.Views.Toolbar.tipRedo": "Ripristina",
|
"PE.Views.Toolbar.tipRedo": "Ripristina",
|
||||||
"PE.Views.Toolbar.tipSave": "Salva",
|
"PE.Views.Toolbar.tipSave": "Salva",
|
||||||
"PE.Views.Toolbar.tipSaveCoauth": "Salva i tuoi cambiamenti per renderli disponibili agli altri utenti.",
|
"PE.Views.Toolbar.tipSaveCoauth": "Salva i tuoi cambiamenti per renderli disponibili agli altri utenti.",
|
||||||
|
"PE.Views.Toolbar.tipSelectAll": "Selezionare tutto",
|
||||||
"PE.Views.Toolbar.tipShapeAlign": "Allinea forma",
|
"PE.Views.Toolbar.tipShapeAlign": "Allinea forma",
|
||||||
"PE.Views.Toolbar.tipShapeArrange": "Disponi forma",
|
"PE.Views.Toolbar.tipShapeArrange": "Disponi forma",
|
||||||
"PE.Views.Toolbar.tipSlideNum": "Inserisci numero diapositiva",
|
"PE.Views.Toolbar.tipSlideNum": "Inserisci numero diapositiva",
|
||||||
|
|
|
@ -283,6 +283,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "標準色",
|
"Common.UI.ThemeColorPalette.textStandartColors": "標準色",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "テーマカラー",
|
"Common.UI.ThemeColorPalette.textThemeColors": "テーマカラー",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)",
|
"Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "ダークコントラスト",
|
||||||
"Common.UI.Themes.txtThemeDark": "暗い",
|
"Common.UI.Themes.txtThemeDark": "暗い",
|
||||||
"Common.UI.Themes.txtThemeLight": "ライト",
|
"Common.UI.Themes.txtThemeLight": "ライト",
|
||||||
"Common.UI.Themes.txtThemeSystem": "システム設定と同じ",
|
"Common.UI.Themes.txtThemeSystem": "システム設定と同じ",
|
||||||
|
@ -456,6 +457,7 @@
|
||||||
"Common.Views.PluginDlg.textLoading": "読み込み中",
|
"Common.Views.PluginDlg.textLoading": "読み込み中",
|
||||||
"Common.Views.Plugins.groupCaption": "プラグイン",
|
"Common.Views.Plugins.groupCaption": "プラグイン",
|
||||||
"Common.Views.Plugins.strPlugins": "プラグイン",
|
"Common.Views.Plugins.strPlugins": "プラグイン",
|
||||||
|
"Common.Views.Plugins.textClosePanel": "プラグインを閉じる",
|
||||||
"Common.Views.Plugins.textLoading": "読み込み中",
|
"Common.Views.Plugins.textLoading": "読み込み中",
|
||||||
"Common.Views.Plugins.textStart": "開始",
|
"Common.Views.Plugins.textStart": "開始",
|
||||||
"Common.Views.Plugins.textStop": "停止",
|
"Common.Views.Plugins.textStop": "停止",
|
||||||
|
@ -550,6 +552,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "置換する",
|
"Common.Views.SearchPanel.textReplace": "置換する",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "全てを置換する",
|
"Common.Views.SearchPanel.textReplaceAll": "全てを置換する",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "置換後の文字列",
|
"Common.Views.SearchPanel.textReplaceWith": "置換後の文字列",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "検索が停止しました",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "検索結果:{0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "検索結果:{0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "検索結果が多すぎるため、ここに表示できません",
|
"Common.Views.SearchPanel.textTooManyResults": "検索結果が多すぎるため、ここに表示できません",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "単語全体のみ",
|
"Common.Views.SearchPanel.textWholeWords": "単語全体のみ",
|
||||||
|
@ -993,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。",
|
"PE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。",
|
"PE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": " 警告",
|
"PE.Controllers.Search.notcriticalErrorTitle": " 警告",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "検索が実行されました。{0}発生が置換されました。",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0}は、「置換」ボックスで有効な特殊文字ではありません",
|
"PE.Controllers.Search.warnReplaceString": "{0}は、「置換」ボックスで有効な特殊文字ではありません",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>接続が切断されました</b><br>接続を試みています。接続設定を確認してください。",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>接続が切断されました</b><br>接続を試みています。接続設定を確認してください。",
|
||||||
"PE.Controllers.Statusbar.zoomText": "ズーム{0}%",
|
"PE.Controllers.Statusbar.zoomText": "ズーム{0}%",
|
||||||
|
@ -1646,6 +1652,7 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "数字のある単語は無視する",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "数字のある単語は無視する",
|
||||||
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定",
|
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定",
|
||||||
"PE.Views.FileMenuPanels.Settings.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する",
|
"PE.Views.FileMenuPanels.Settings.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "他のユーザーの変更点を表示する",
|
||||||
"PE.Views.FileMenuPanels.Settings.strStrict": "厳格",
|
"PE.Views.FileMenuPanels.Settings.strStrict": "厳格",
|
||||||
"PE.Views.FileMenuPanels.Settings.strTheme": "インターフェイスのテーマ",
|
"PE.Views.FileMenuPanels.Settings.strTheme": "インターフェイスのテーマ",
|
||||||
"PE.Views.FileMenuPanels.Settings.strUnit": "測定単位",
|
"PE.Views.FileMenuPanels.Settings.strUnit": "測定単位",
|
||||||
|
@ -2168,6 +2175,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "図形",
|
"PE.Views.Toolbar.capInsertShape": "図形",
|
||||||
"PE.Views.Toolbar.capInsertTable": "テーブル",
|
"PE.Views.Toolbar.capInsertTable": "テーブル",
|
||||||
"PE.Views.Toolbar.capInsertText": "テキストボックス",
|
"PE.Views.Toolbar.capInsertText": "テキストボックス",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "テキストアート",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "ビデオ",
|
"PE.Views.Toolbar.capInsertVideo": "ビデオ",
|
||||||
"PE.Views.Toolbar.capTabFile": "ファイル",
|
"PE.Views.Toolbar.capTabFile": "ファイル",
|
||||||
"PE.Views.Toolbar.capTabHome": "ホーム",
|
"PE.Views.Toolbar.capTabHome": "ホーム",
|
||||||
|
@ -2238,6 +2246,7 @@
|
||||||
"PE.Views.Toolbar.tipColumns": "列を挿入する",
|
"PE.Views.Toolbar.tipColumns": "列を挿入する",
|
||||||
"PE.Views.Toolbar.tipCopy": "コピーする",
|
"PE.Views.Toolbar.tipCopy": "コピーする",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "スタイルをコピーする",
|
"PE.Views.Toolbar.tipCopyStyle": "スタイルをコピーする",
|
||||||
|
"PE.Views.Toolbar.tipCut": "切り取り",
|
||||||
"PE.Views.Toolbar.tipDateTime": "現在の日付と時刻を挿入",
|
"PE.Views.Toolbar.tipDateTime": "現在の日付と時刻を挿入",
|
||||||
"PE.Views.Toolbar.tipDecFont": "フォントのサイズ縮小",
|
"PE.Views.Toolbar.tipDecFont": "フォントのサイズ縮小",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "インデントを減らす",
|
"PE.Views.Toolbar.tipDecPrLeft": "インデントを減らす",
|
||||||
|
|
|
@ -5,6 +5,10 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Tutup",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Tutup",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Objek telah dinyahdaya kerana ia sedang diedit oleh pengguna yang lain.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Objek telah dinyahdaya kerana ia sedang diedit oleh pengguna yang lain.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Amaran",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Amaran",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "Tanpa Nama",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "Tutup",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "Objek telah dinyahdaya kerana ia sedang diedit oleh pengguna yang lain.",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "Amaran",
|
||||||
"Common.define.chartData.textArea": "Kawasan",
|
"Common.define.chartData.textArea": "Kawasan",
|
||||||
"Common.define.chartData.textAreaStacked": "Kawasan bertindan",
|
"Common.define.chartData.textAreaStacked": "Kawasan bertindan",
|
||||||
"Common.define.chartData.textAreaStackedPer": "Kawasan bertindan 100%",
|
"Common.define.chartData.textAreaStackedPer": "Kawasan bertindan 100%",
|
||||||
|
@ -241,6 +245,7 @@
|
||||||
"Common.define.effectData.textWipe": "Sapu",
|
"Common.define.effectData.textWipe": "Sapu",
|
||||||
"Common.define.effectData.textZigzag": "Zigzag",
|
"Common.define.effectData.textZigzag": "Zigzag",
|
||||||
"Common.define.effectData.textZoom": "Zum",
|
"Common.define.effectData.textZoom": "Zum",
|
||||||
|
"Common.Translation.textMoreButton": "Selanjutnya",
|
||||||
"Common.Translation.warnFileLocked": "Fail sedang diedit dalam apl yang lain. Anda boleh terus mengedit dan simpan ia sebagai Salinan.",
|
"Common.Translation.warnFileLocked": "Fail sedang diedit dalam apl yang lain. Anda boleh terus mengedit dan simpan ia sebagai Salinan.",
|
||||||
"Common.Translation.warnFileLockedBtnEdit": "Cipta Salinan",
|
"Common.Translation.warnFileLockedBtnEdit": "Cipta Salinan",
|
||||||
"Common.Translation.warnFileLockedBtnView": "Buka untuk paparan",
|
"Common.Translation.warnFileLockedBtnView": "Buka untuk paparan",
|
||||||
|
@ -257,6 +262,7 @@
|
||||||
"Common.UI.HSBColorPicker.textNoColor": "Tiada Warna",
|
"Common.UI.HSBColorPicker.textNoColor": "Tiada Warna",
|
||||||
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan",
|
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan",
|
||||||
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan",
|
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan",
|
||||||
|
"Common.UI.SearchBar.textFind": "Cari",
|
||||||
"Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting",
|
"Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting",
|
||||||
"Common.UI.SearchDialog.textMatchCase": "Sensitif huruf",
|
"Common.UI.SearchDialog.textMatchCase": "Sensitif huruf",
|
||||||
"Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian",
|
"Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian",
|
||||||
|
@ -274,6 +280,7 @@
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
|
"Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah",
|
||||||
"Common.UI.Themes.txtThemeDark": "Gelap",
|
"Common.UI.Themes.txtThemeDark": "Gelap",
|
||||||
"Common.UI.Themes.txtThemeLight": "Ringan",
|
"Common.UI.Themes.txtThemeLight": "Ringan",
|
||||||
|
"Common.UI.Themes.txtThemeSystem": "Sama seperti Sistem",
|
||||||
"Common.UI.Window.cancelButtonText": "Batalkan",
|
"Common.UI.Window.cancelButtonText": "Batalkan",
|
||||||
"Common.UI.Window.closeButtonText": "Tutup",
|
"Common.UI.Window.closeButtonText": "Tutup",
|
||||||
"Common.UI.Window.noButtonText": "Tidak",
|
"Common.UI.Window.noButtonText": "Tidak",
|
||||||
|
@ -361,6 +368,8 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textClose": "Tutup",
|
"Common.Views.ExternalDiagramEditor.textClose": "Tutup",
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Simpan & Keluar",
|
"Common.Views.ExternalDiagramEditor.textSave": "Simpan & Keluar",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Editor Carta",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Editor Carta",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "Tutup",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "Simpan & Keluar",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:",
|
"Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:",
|
||||||
"Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran",
|
"Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran",
|
||||||
"Common.Views.Header.textAdvSettings": "Seting lanjutan",
|
"Common.Views.Header.textAdvSettings": "Seting lanjutan",
|
||||||
|
@ -374,6 +383,7 @@
|
||||||
"Common.Views.Header.textSaveChanged": "Diubahsuai",
|
"Common.Views.Header.textSaveChanged": "Diubahsuai",
|
||||||
"Common.Views.Header.textSaveEnd": "Semua perubahan disimpan",
|
"Common.Views.Header.textSaveEnd": "Semua perubahan disimpan",
|
||||||
"Common.Views.Header.textSaveExpander": "Semua perubahan disimpan",
|
"Common.Views.Header.textSaveExpander": "Semua perubahan disimpan",
|
||||||
|
"Common.Views.Header.textShare": "Kongsi",
|
||||||
"Common.Views.Header.textZoom": "Zum",
|
"Common.Views.Header.textZoom": "Zum",
|
||||||
"Common.Views.Header.tipAccessRights": "Uruskan hak akses dokumen",
|
"Common.Views.Header.tipAccessRights": "Uruskan hak akses dokumen",
|
||||||
"Common.Views.Header.tipDownload": "Muat turun fail",
|
"Common.Views.Header.tipDownload": "Muat turun fail",
|
||||||
|
@ -381,6 +391,7 @@
|
||||||
"Common.Views.Header.tipPrint": "Fail cetakan",
|
"Common.Views.Header.tipPrint": "Fail cetakan",
|
||||||
"Common.Views.Header.tipRedo": "Buat Semula",
|
"Common.Views.Header.tipRedo": "Buat Semula",
|
||||||
"Common.Views.Header.tipSave": "Simpan",
|
"Common.Views.Header.tipSave": "Simpan",
|
||||||
|
"Common.Views.Header.tipSearch": "Carian",
|
||||||
"Common.Views.Header.tipUndo": "Buat semula",
|
"Common.Views.Header.tipUndo": "Buat semula",
|
||||||
"Common.Views.Header.tipUndock": "Keluar dok ke tetingkap berasingan",
|
"Common.Views.Header.tipUndock": "Keluar dok ke tetingkap berasingan",
|
||||||
"Common.Views.Header.tipViewSettings": "Lihat seting",
|
"Common.Views.Header.tipViewSettings": "Lihat seting",
|
||||||
|
@ -519,6 +530,12 @@
|
||||||
"Common.Views.ReviewPopover.txtEditTip": "Edit",
|
"Common.Views.ReviewPopover.txtEditTip": "Edit",
|
||||||
"Common.Views.SaveAsDlg.textLoading": "Memuatkan",
|
"Common.Views.SaveAsDlg.textLoading": "Memuatkan",
|
||||||
"Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan",
|
"Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan",
|
||||||
|
"Common.Views.SearchPanel.textCaseSensitive": "Sensitif huruf",
|
||||||
|
"Common.Views.SearchPanel.textFind": "Cari",
|
||||||
|
"Common.Views.SearchPanel.textFindAndReplace": "Cari dan Ganti",
|
||||||
|
"Common.Views.SearchPanel.textReplace": "Gantikan",
|
||||||
|
"Common.Views.SearchPanel.textReplaceAll": "Gantikan Semua",
|
||||||
|
"Common.Views.SearchPanel.textWholeWords": "Seluruh perkataan sahaja",
|
||||||
"Common.Views.SelectFileDlg.textLoading": "Memuatkan",
|
"Common.Views.SelectFileDlg.textLoading": "Memuatkan",
|
||||||
"Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data",
|
"Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data",
|
||||||
"Common.Views.SignDialog.textBold": "Tebal",
|
"Common.Views.SignDialog.textBold": "Tebal",
|
||||||
|
@ -954,6 +971,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicense": "Anda telah mencapai had pengguna untuk sambungan serentak kepada editor %1. Dokumen ini akan dibuka untuk dilihat sahaja.<br>Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
|
"PE.Controllers.Main.warnNoLicense": "Anda telah mencapai had pengguna untuk sambungan serentak kepada editor %1. Dokumen ini akan dibuka untuk dilihat sahaja.<br>Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Anda telah ditolak hak untuk edit fail.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Anda telah ditolak hak untuk edit fail.",
|
||||||
|
"PE.Controllers.Search.notcriticalErrorTitle": "Amaran",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "Data yang andaa sedang cari tidak dijumpai. Sila laras pilihan carian.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>Sambungan telah hilang</b><br>Sedang cuba untuk menyambung. Sila semak seting sambungan.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>Sambungan telah hilang</b><br>Sedang cuba untuk menyambung. Sila semak seting sambungan.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zum {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zum {0}%",
|
||||||
"PE.Controllers.Toolbar.confirmAddFontName": "Fon yang anda akan simpan tidak tersedia pada peranti semasa.<br>Gaya teks akan dipaparkan menggunakan satu daripada fon system, fon yang disimpan akan digunakan apabila ia tersedia.<br>Adakah anda mahu teruskan?",
|
"PE.Controllers.Toolbar.confirmAddFontName": "Fon yang anda akan simpan tidak tersedia pada peranti semasa.<br>Gaya teks akan dipaparkan menggunakan satu daripada fon system, fon yang disimpan akan digunakan apabila ia tersedia.<br>Adakah anda mahu teruskan?",
|
||||||
|
@ -1330,8 +1350,19 @@
|
||||||
"PE.Views.ChartSettings.textWidth": "Lebar",
|
"PE.Views.ChartSettings.textWidth": "Lebar",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Teks Berselang",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Teks Berselang",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Perihalan",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Perihalan",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka memahami dengan lebih baik maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Tajuk",
|
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Tajuk",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textCenter": "Pusat",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textFrom": "Dari",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textHeight": "Ketinggian",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textHorizontal": "Melintang",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textKeepRatio": "Perkadaran pemalar",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textPlacement": "Tempatkan",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textPosition": "Kedudukan",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textSize": "Saiz",
|
||||||
"PE.Views.ChartSettingsAdvanced.textTitle": "Carta – Seting Lanjutan",
|
"PE.Views.ChartSettingsAdvanced.textTitle": "Carta – Seting Lanjutan",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textVertical": "Menegak",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textWidth": "Lebar",
|
||||||
"PE.Views.DateTimeDialog.confirmDefault": "Tetapkan format lalai bagi {0}: \"{1}\"",
|
"PE.Views.DateTimeDialog.confirmDefault": "Tetapkan format lalai bagi {0}: \"{1}\"",
|
||||||
"PE.Views.DateTimeDialog.textDefault": "Tetapkan sebagai lalai",
|
"PE.Views.DateTimeDialog.textDefault": "Tetapkan sebagai lalai",
|
||||||
"PE.Views.DateTimeDialog.textFormat": "Format",
|
"PE.Views.DateTimeDialog.textFormat": "Format",
|
||||||
|
@ -1584,6 +1615,8 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mod Pengeditan-bersama",
|
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mod Pengeditan-bersama",
|
||||||
"PE.Views.FileMenuPanels.Settings.strFast": "Pantas",
|
"PE.Views.FileMenuPanels.Settings.strFast": "Pantas",
|
||||||
"PE.Views.FileMenuPanels.Settings.strFontRender": "Pembayang Fon",
|
"PE.Views.FileMenuPanels.Settings.strFontRender": "Pembayang Fon",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Abaikan perkataan dalam HURUF BESAR",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Abaikan perkataan dengan nombor",
|
||||||
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Seting Makro",
|
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Seting Makro",
|
||||||
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Tunjukkan butang Pilihan Tampal di mana kandungan ditampalkan",
|
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Tunjukkan butang Pilihan Tampal di mana kandungan ditampalkan",
|
||||||
"PE.Views.FileMenuPanels.Settings.strStrict": "Tegas",
|
"PE.Views.FileMenuPanels.Settings.strStrict": "Tegas",
|
||||||
|
@ -1604,6 +1637,7 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Pilihan AutoBaiki…",
|
"PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Pilihan AutoBaiki…",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtCacheMode": "Mod Cache Lalai",
|
"PE.Views.FileMenuPanels.Settings.txtCacheMode": "Mod Cache Lalai",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter",
|
"PE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtCollaboration": "Kerjasama",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Muat kepada Slaid",
|
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Muat kepada Slaid",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "Muat kepada Kelebaran",
|
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "Muat kepada Kelebaran",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtInch": "Inci",
|
"PE.Views.FileMenuPanels.Settings.txtInch": "Inci",
|
||||||
|
@ -1679,10 +1713,14 @@
|
||||||
"PE.Views.ImageSettings.textWidth": "Lebar",
|
"PE.Views.ImageSettings.textWidth": "Lebar",
|
||||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Teks Berselang",
|
"PE.Views.ImageSettingsAdvanced.textAlt": "Teks Berselang",
|
||||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Perihalan",
|
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Perihalan",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka memahami dengan lebih baik maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
|
||||||
"PE.Views.ImageSettingsAdvanced.textAltTitle": "Tajuk",
|
"PE.Views.ImageSettingsAdvanced.textAltTitle": "Tajuk",
|
||||||
"PE.Views.ImageSettingsAdvanced.textAngle": "Sudut",
|
"PE.Views.ImageSettingsAdvanced.textAngle": "Sudut",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textCenter": "Pusat",
|
||||||
"PE.Views.ImageSettingsAdvanced.textFlipped": "Dibalikkan",
|
"PE.Views.ImageSettingsAdvanced.textFlipped": "Dibalikkan",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textFrom": "Dari",
|
||||||
"PE.Views.ImageSettingsAdvanced.textHeight": "Ketinggian",
|
"PE.Views.ImageSettingsAdvanced.textHeight": "Ketinggian",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textHorizontal": "Melintang",
|
||||||
"PE.Views.ImageSettingsAdvanced.textHorizontally": "Melintang",
|
"PE.Views.ImageSettingsAdvanced.textHorizontally": "Melintang",
|
||||||
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Perkadaran pemalar",
|
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Perkadaran pemalar",
|
||||||
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "Saiz Sebenar",
|
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "Saiz Sebenar",
|
||||||
|
@ -1691,6 +1729,7 @@
|
||||||
"PE.Views.ImageSettingsAdvanced.textRotation": "Putaran",
|
"PE.Views.ImageSettingsAdvanced.textRotation": "Putaran",
|
||||||
"PE.Views.ImageSettingsAdvanced.textSize": "Saiz",
|
"PE.Views.ImageSettingsAdvanced.textSize": "Saiz",
|
||||||
"PE.Views.ImageSettingsAdvanced.textTitle": "Imej – Seting Lanjutan",
|
"PE.Views.ImageSettingsAdvanced.textTitle": "Imej – Seting Lanjutan",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textVertical": "Menegak",
|
||||||
"PE.Views.ImageSettingsAdvanced.textVertically": "Menegal",
|
"PE.Views.ImageSettingsAdvanced.textVertically": "Menegal",
|
||||||
"PE.Views.ImageSettingsAdvanced.textWidth": "Lebar",
|
"PE.Views.ImageSettingsAdvanced.textWidth": "Lebar",
|
||||||
"PE.Views.LeftMenu.tipAbout": "Perihal",
|
"PE.Views.LeftMenu.tipAbout": "Perihal",
|
||||||
|
@ -1818,6 +1857,7 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Pelapik Teks",
|
"PE.Views.ShapeSettingsAdvanced.strMargins": "Pelapik Teks",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Teks Berselang",
|
"PE.Views.ShapeSettingsAdvanced.textAlt": "Teks Berselang",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textAltDescription": "Perihalan",
|
"PE.Views.ShapeSettingsAdvanced.textAltDescription": "Perihalan",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka memahami dengan lebih baik maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textAltTitle": "Tajuk",
|
"PE.Views.ShapeSettingsAdvanced.textAltTitle": "Tajuk",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textAngle": "Sudut",
|
"PE.Views.ShapeSettingsAdvanced.textAngle": "Sudut",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textArrows": "Anak panah",
|
"PE.Views.ShapeSettingsAdvanced.textArrows": "Anak panah",
|
||||||
|
@ -1827,12 +1867,15 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textBevel": "Serong",
|
"PE.Views.ShapeSettingsAdvanced.textBevel": "Serong",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textBottom": "Bawah",
|
"PE.Views.ShapeSettingsAdvanced.textBottom": "Bawah",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textCapType": "Jenis huruf besar",
|
"PE.Views.ShapeSettingsAdvanced.textCapType": "Jenis huruf besar",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textCenter": "Pusat",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Bilangan Lajur",
|
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Bilangan Lajur",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textEndSize": "Saiz Tamat",
|
"PE.Views.ShapeSettingsAdvanced.textEndSize": "Saiz Tamat",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "Gaya Tamat",
|
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "Gaya Tamat",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textFlat": "Leper",
|
"PE.Views.ShapeSettingsAdvanced.textFlat": "Leper",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textFlipped": "Dibalikkan",
|
"PE.Views.ShapeSettingsAdvanced.textFlipped": "Dibalikkan",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textFrom": "Dari",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textHeight": "Ketinggian",
|
"PE.Views.ShapeSettingsAdvanced.textHeight": "Ketinggian",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textHorizontal": "Melintang",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textHorizontally": "Melintang",
|
"PE.Views.ShapeSettingsAdvanced.textHorizontally": "Melintang",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textJoinType": "Sertai Jenis",
|
"PE.Views.ShapeSettingsAdvanced.textJoinType": "Sertai Jenis",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Perkadaran pemalar",
|
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Perkadaran pemalar",
|
||||||
|
@ -1840,6 +1883,8 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "Gaya Garis",
|
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "Gaya Garis",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
|
"PE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textNofit": "Tidak Automuat",
|
"PE.Views.ShapeSettingsAdvanced.textNofit": "Tidak Automuat",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textPlacement": "Tempatkan",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textPosition": "Kedudukan",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textResizeFit": "Saiz Semula bentuk ke muatkan teks",
|
"PE.Views.ShapeSettingsAdvanced.textResizeFit": "Saiz Semula bentuk ke muatkan teks",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textRight": "Kanan",
|
"PE.Views.ShapeSettingsAdvanced.textRight": "Kanan",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textRotation": "Putaran",
|
"PE.Views.ShapeSettingsAdvanced.textRotation": "Putaran",
|
||||||
|
@ -1851,6 +1896,7 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textTextBox": "Kotak Teks",
|
"PE.Views.ShapeSettingsAdvanced.textTextBox": "Kotak Teks",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textTitle": "Bentuk – Seting Lanjutan",
|
"PE.Views.ShapeSettingsAdvanced.textTitle": "Bentuk – Seting Lanjutan",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textTop": "Atas",
|
"PE.Views.ShapeSettingsAdvanced.textTop": "Atas",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textVertical": "Menegak",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textVertically": "Menegal",
|
"PE.Views.ShapeSettingsAdvanced.textVertically": "Menegal",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Berat & Anak Panah",
|
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Berat & Anak Panah",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWidth": "Lebar",
|
"PE.Views.ShapeSettingsAdvanced.textWidth": "Lebar",
|
||||||
|
@ -2001,15 +2047,26 @@
|
||||||
"PE.Views.TableSettings.txtTable_ThemedStyle": "Gaya Tema",
|
"PE.Views.TableSettings.txtTable_ThemedStyle": "Gaya Tema",
|
||||||
"PE.Views.TableSettingsAdvanced.textAlt": "Teks Berselang",
|
"PE.Views.TableSettingsAdvanced.textAlt": "Teks Berselang",
|
||||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Perihalan",
|
"PE.Views.TableSettingsAdvanced.textAltDescription": "Perihalan",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka memahami dengan lebih baik maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.",
|
||||||
"PE.Views.TableSettingsAdvanced.textAltTitle": "Tajuk",
|
"PE.Views.TableSettingsAdvanced.textAltTitle": "Tajuk",
|
||||||
"PE.Views.TableSettingsAdvanced.textBottom": "Bawah",
|
"PE.Views.TableSettingsAdvanced.textBottom": "Bawah",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textCenter": "Pusat",
|
||||||
"PE.Views.TableSettingsAdvanced.textCheckMargins": "Guna margin lalai",
|
"PE.Views.TableSettingsAdvanced.textCheckMargins": "Guna margin lalai",
|
||||||
"PE.Views.TableSettingsAdvanced.textDefaultMargins": "Margin Lalai",
|
"PE.Views.TableSettingsAdvanced.textDefaultMargins": "Margin Lalai",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textFrom": "Dari",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textHeight": "Ketinggian",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textHorizontal": "Melintang",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textKeepRatio": "Perkadaran pemalar",
|
||||||
"PE.Views.TableSettingsAdvanced.textLeft": "Kiri",
|
"PE.Views.TableSettingsAdvanced.textLeft": "Kiri",
|
||||||
"PE.Views.TableSettingsAdvanced.textMargins": "Margin Sel",
|
"PE.Views.TableSettingsAdvanced.textMargins": "Margin Sel",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textPlacement": "Tempatkan",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textPosition": "Kedudukan",
|
||||||
"PE.Views.TableSettingsAdvanced.textRight": "Kanan",
|
"PE.Views.TableSettingsAdvanced.textRight": "Kanan",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textSize": "Saiz",
|
||||||
"PE.Views.TableSettingsAdvanced.textTitle": "Jadual – Seting Lanjutan",
|
"PE.Views.TableSettingsAdvanced.textTitle": "Jadual – Seting Lanjutan",
|
||||||
"PE.Views.TableSettingsAdvanced.textTop": "Atas",
|
"PE.Views.TableSettingsAdvanced.textTop": "Atas",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textVertical": "Menegak",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textWidth": "Lebar",
|
||||||
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margin",
|
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margin",
|
||||||
"PE.Views.TextArtSettings.strBackground": "Warna latar belakang",
|
"PE.Views.TextArtSettings.strBackground": "Warna latar belakang",
|
||||||
"PE.Views.TextArtSettings.strColor": "Warna",
|
"PE.Views.TextArtSettings.strColor": "Warna",
|
||||||
|
@ -2071,6 +2128,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "Bentuk",
|
"PE.Views.Toolbar.capInsertShape": "Bentuk",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Jadual",
|
"PE.Views.Toolbar.capInsertTable": "Jadual",
|
||||||
"PE.Views.Toolbar.capInsertText": "Kotak Teks",
|
"PE.Views.Toolbar.capInsertText": "Kotak Teks",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Lukisan Teks",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Video",
|
"PE.Views.Toolbar.capInsertVideo": "Video",
|
||||||
"PE.Views.Toolbar.capTabFile": "Fail",
|
"PE.Views.Toolbar.capTabFile": "Fail",
|
||||||
"PE.Views.Toolbar.capTabHome": "Laman Rumah",
|
"PE.Views.Toolbar.capTabHome": "Laman Rumah",
|
||||||
|
@ -2140,6 +2198,7 @@
|
||||||
"PE.Views.Toolbar.tipColumns": "Sisipkan lajur",
|
"PE.Views.Toolbar.tipColumns": "Sisipkan lajur",
|
||||||
"PE.Views.Toolbar.tipCopy": "Salin",
|
"PE.Views.Toolbar.tipCopy": "Salin",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "Gaya Salin",
|
"PE.Views.Toolbar.tipCopyStyle": "Gaya Salin",
|
||||||
|
"PE.Views.Toolbar.tipCut": "Potong",
|
||||||
"PE.Views.Toolbar.tipDateTime": "Sisipkan tarikh dan masa semasa",
|
"PE.Views.Toolbar.tipDateTime": "Sisipkan tarikh dan masa semasa",
|
||||||
"PE.Views.Toolbar.tipDecFont": "Pengurangan saiz fon",
|
"PE.Views.Toolbar.tipDecFont": "Pengurangan saiz fon",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "Kurangkan inden",
|
"PE.Views.Toolbar.tipDecPrLeft": "Kurangkan inden",
|
||||||
|
@ -2180,6 +2239,7 @@
|
||||||
"PE.Views.Toolbar.tipRedo": "Buat Semula",
|
"PE.Views.Toolbar.tipRedo": "Buat Semula",
|
||||||
"PE.Views.Toolbar.tipSave": "Simpan",
|
"PE.Views.Toolbar.tipSave": "Simpan",
|
||||||
"PE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan anda untuk pengguna lain melihatnya.",
|
"PE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan anda untuk pengguna lain melihatnya.",
|
||||||
|
"PE.Views.Toolbar.tipSelectAll": "Pilih Semua",
|
||||||
"PE.Views.Toolbar.tipShapeAlign": "Jajarkan bentuk",
|
"PE.Views.Toolbar.tipShapeAlign": "Jajarkan bentuk",
|
||||||
"PE.Views.Toolbar.tipShapeArrange": "Susun bentuk",
|
"PE.Views.Toolbar.tipShapeArrange": "Susun bentuk",
|
||||||
"PE.Views.Toolbar.tipSlideNum": "Sisip nombor slaid",
|
"PE.Views.Toolbar.tipSlideNum": "Sisip nombor slaid",
|
||||||
|
|
|
@ -996,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "Não foi possível localizar os dados procurados. Ajuste as opções de pesquisa.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "A pesquisa foi concluída. {0} ocorrências foram substituídas",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0} não é um carácter especial válido para a janela Substituir com.",
|
"PE.Controllers.Search.warnReplaceString": "{0} não é um carácter especial válido para a janela Substituir com.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>Sem Ligação</b><br>A tentar ligar. Por favor, verifique as definições de ligação.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>Sem Ligação</b><br>A tentar ligar. Por favor, verifique as definições de ligação.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
|
@ -2172,6 +2175,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "Forma",
|
"PE.Views.Toolbar.capInsertShape": "Forma",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Tabela",
|
"PE.Views.Toolbar.capInsertTable": "Tabela",
|
||||||
"PE.Views.Toolbar.capInsertText": "Caixa de texto",
|
"PE.Views.Toolbar.capInsertText": "Caixa de texto",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Lágrima",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
|
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
|
||||||
"PE.Views.Toolbar.capTabFile": "Ficheiro",
|
"PE.Views.Toolbar.capTabFile": "Ficheiro",
|
||||||
"PE.Views.Toolbar.capTabHome": "Base",
|
"PE.Views.Toolbar.capTabHome": "Base",
|
||||||
|
|
|
@ -455,8 +455,8 @@
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Definir senha",
|
"Common.Views.PasswordDialog.txtTitle": "Definir senha",
|
||||||
"Common.Views.PasswordDialog.txtWarning": "Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.",
|
"Common.Views.PasswordDialog.txtWarning": "Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Carregamento",
|
"Common.Views.PluginDlg.textLoading": "Carregamento",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugins",
|
"Common.Views.Plugins.groupCaption": "Plug-ins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
||||||
"Common.Views.Plugins.textClosePanel": "Fechar plug-in",
|
"Common.Views.Plugins.textClosePanel": "Fechar plug-in",
|
||||||
"Common.Views.Plugins.textLoading": "Carregamento",
|
"Common.Views.Plugins.textLoading": "Carregamento",
|
||||||
"Common.Views.Plugins.textStart": "Iniciar",
|
"Common.Views.Plugins.textStart": "Iniciar",
|
||||||
|
@ -996,6 +996,9 @@
|
||||||
"PE.Controllers.Main.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.",
|
"PE.Controllers.Main.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.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
"PE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "A pesquisa foi feita. {0} ocorrências foram substituídas",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0} não é um caractere especial válido para a caixa Substituir por.",
|
"PE.Controllers.Search.warnReplaceString": "{0} não é um caractere especial válido para a caixa Substituir por.",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>A conexão foi perdida</b><br>Tentando conectar. Verifique as configurações de conexão.",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>A conexão foi perdida</b><br>Tentando conectar. Verifique as configurações de conexão.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
|
@ -1643,7 +1646,7 @@
|
||||||
"PE.Views.FileMenuPanels.ProtectDoc.txtView": "Exibir assinaturas",
|
"PE.Views.FileMenuPanels.ProtectDoc.txtView": "Exibir assinaturas",
|
||||||
"PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar",
|
"PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar",
|
||||||
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
|
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
|
||||||
"PE.Views.FileMenuPanels.Settings.strFast": "Fast",
|
"PE.Views.FileMenuPanels.Settings.strFast": "Rápido",
|
||||||
"PE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte",
|
"PE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte",
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras MAIÚSCULAS",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras MAIÚSCULAS",
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorar palavras com números",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorar palavras com números",
|
||||||
|
@ -1774,7 +1777,7 @@
|
||||||
"PE.Views.LeftMenu.tipAbout": "Sobre",
|
"PE.Views.LeftMenu.tipAbout": "Sobre",
|
||||||
"PE.Views.LeftMenu.tipChat": "Gráfico",
|
"PE.Views.LeftMenu.tipChat": "Gráfico",
|
||||||
"PE.Views.LeftMenu.tipComments": "Comentários",
|
"PE.Views.LeftMenu.tipComments": "Comentários",
|
||||||
"PE.Views.LeftMenu.tipPlugins": "Plugins",
|
"PE.Views.LeftMenu.tipPlugins": "Plug-ins",
|
||||||
"PE.Views.LeftMenu.tipSearch": "Pesquisar",
|
"PE.Views.LeftMenu.tipSearch": "Pesquisar",
|
||||||
"PE.Views.LeftMenu.tipSlides": "Slides",
|
"PE.Views.LeftMenu.tipSlides": "Slides",
|
||||||
"PE.Views.LeftMenu.tipSupport": "Feedback e Suporte",
|
"PE.Views.LeftMenu.tipSupport": "Feedback e Suporte",
|
||||||
|
@ -2172,6 +2175,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "Forma",
|
"PE.Views.Toolbar.capInsertShape": "Forma",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Tabela",
|
"PE.Views.Toolbar.capInsertTable": "Tabela",
|
||||||
"PE.Views.Toolbar.capInsertText": "Caixa de texto",
|
"PE.Views.Toolbar.capInsertText": "Caixa de texto",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Arte de texto",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
|
"PE.Views.Toolbar.capInsertVideo": "Vídeo",
|
||||||
"PE.Views.Toolbar.capTabFile": "Arquivo",
|
"PE.Views.Toolbar.capTabFile": "Arquivo",
|
||||||
"PE.Views.Toolbar.capTabHome": "Página Inicial",
|
"PE.Views.Toolbar.capTabHome": "Página Inicial",
|
||||||
|
|
|
@ -2175,6 +2175,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "Фигура",
|
"PE.Views.Toolbar.capInsertShape": "Фигура",
|
||||||
"PE.Views.Toolbar.capInsertTable": "Таблица",
|
"PE.Views.Toolbar.capInsertTable": "Таблица",
|
||||||
"PE.Views.Toolbar.capInsertText": "Надпись",
|
"PE.Views.Toolbar.capInsertText": "Надпись",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "Text Art",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "Видео",
|
"PE.Views.Toolbar.capInsertVideo": "Видео",
|
||||||
"PE.Views.Toolbar.capTabFile": "Файл",
|
"PE.Views.Toolbar.capTabFile": "Файл",
|
||||||
"PE.Views.Toolbar.capTabHome": "Главная",
|
"PE.Views.Toolbar.capTabHome": "Главная",
|
||||||
|
|
|
@ -5,6 +5,10 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "關閉",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "關閉",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "該對像被禁用,因為它正在由另一個用戶編輯。",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "該對像被禁用,因為它正在由另一個用戶編輯。",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "警告",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "警告",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textAnonymous": "匿名",
|
||||||
|
"Common.Controllers.ExternalOleEditor.textClose": "關閉",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningText": "該物件被禁用,因為它正在由另一個帳戶編輯。",
|
||||||
|
"Common.Controllers.ExternalOleEditor.warningTitle": "警告",
|
||||||
"Common.define.chartData.textArea": "區域",
|
"Common.define.chartData.textArea": "區域",
|
||||||
"Common.define.chartData.textAreaStacked": "堆叠面積",
|
"Common.define.chartData.textAreaStacked": "堆叠面積",
|
||||||
"Common.define.chartData.textAreaStackedPer": "100% 堆疊面積圖",
|
"Common.define.chartData.textAreaStackedPer": "100% 堆疊面積圖",
|
||||||
|
@ -241,6 +245,7 @@
|
||||||
"Common.define.effectData.textWipe": "擦去",
|
"Common.define.effectData.textWipe": "擦去",
|
||||||
"Common.define.effectData.textZigzag": "鋸齒邊緣",
|
"Common.define.effectData.textZigzag": "鋸齒邊緣",
|
||||||
"Common.define.effectData.textZoom": "放大",
|
"Common.define.effectData.textZoom": "放大",
|
||||||
|
"Common.Translation.textMoreButton": "更多",
|
||||||
"Common.Translation.warnFileLocked": "該文件正在另一個應用程序中進行編輯。您可以繼續編輯並將其另存為副本。",
|
"Common.Translation.warnFileLocked": "該文件正在另一個應用程序中進行編輯。您可以繼續編輯並將其另存為副本。",
|
||||||
"Common.Translation.warnFileLockedBtnEdit": "\n建立副本",
|
"Common.Translation.warnFileLockedBtnEdit": "\n建立副本",
|
||||||
"Common.Translation.warnFileLockedBtnView": "打開查看",
|
"Common.Translation.warnFileLockedBtnView": "打開查看",
|
||||||
|
@ -257,6 +262,11 @@
|
||||||
"Common.UI.HSBColorPicker.textNoColor": "無顏色",
|
"Common.UI.HSBColorPicker.textNoColor": "無顏色",
|
||||||
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "不顯示密碼",
|
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "不顯示密碼",
|
||||||
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "顯示密碼",
|
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "顯示密碼",
|
||||||
|
"Common.UI.SearchBar.textFind": "尋找",
|
||||||
|
"Common.UI.SearchBar.tipCloseSearch": "關閉搜索",
|
||||||
|
"Common.UI.SearchBar.tipNextResult": "下一個結果",
|
||||||
|
"Common.UI.SearchBar.tipOpenAdvancedSettings": "開啟進階設置",
|
||||||
|
"Common.UI.SearchBar.tipPreviousResult": "上一個結果",
|
||||||
"Common.UI.SearchDialog.textHighlight": "強調結果",
|
"Common.UI.SearchDialog.textHighlight": "強調結果",
|
||||||
"Common.UI.SearchDialog.textMatchCase": "區分大小寫",
|
"Common.UI.SearchDialog.textMatchCase": "區分大小寫",
|
||||||
"Common.UI.SearchDialog.textReplaceDef": "輸入替換文字",
|
"Common.UI.SearchDialog.textReplaceDef": "輸入替換文字",
|
||||||
|
@ -269,11 +279,14 @@
|
||||||
"Common.UI.SearchDialog.txtBtnReplaceAll": "取代全部",
|
"Common.UI.SearchDialog.txtBtnReplaceAll": "取代全部",
|
||||||
"Common.UI.SynchronizeTip.textDontShow": "不再顯示此消息",
|
"Common.UI.SynchronizeTip.textDontShow": "不再顯示此消息",
|
||||||
"Common.UI.SynchronizeTip.textSynchronize": "該文檔已被其他用戶更改。<br>請單擊以保存更改並重新加載更新。",
|
"Common.UI.SynchronizeTip.textSynchronize": "該文檔已被其他用戶更改。<br>請單擊以保存更改並重新加載更新。",
|
||||||
|
"Common.UI.ThemeColorPalette.textRecentColors": "近期顏色",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "標準顏色",
|
"Common.UI.ThemeColorPalette.textStandartColors": "標準顏色",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "主題顏色",
|
"Common.UI.ThemeColorPalette.textThemeColors": "主題顏色",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "傳統亮色",
|
"Common.UI.Themes.txtThemeClassicLight": "傳統亮色",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "暗色對比",
|
||||||
"Common.UI.Themes.txtThemeDark": "暗",
|
"Common.UI.Themes.txtThemeDark": "暗",
|
||||||
"Common.UI.Themes.txtThemeLight": "淺色主題",
|
"Common.UI.Themes.txtThemeLight": "淺色主題",
|
||||||
|
"Common.UI.Themes.txtThemeSystem": "和系統一致",
|
||||||
"Common.UI.Window.cancelButtonText": "取消",
|
"Common.UI.Window.cancelButtonText": "取消",
|
||||||
"Common.UI.Window.closeButtonText": "關閉",
|
"Common.UI.Window.closeButtonText": "關閉",
|
||||||
"Common.UI.Window.noButtonText": "沒有",
|
"Common.UI.Window.noButtonText": "沒有",
|
||||||
|
@ -286,6 +299,9 @@
|
||||||
"Common.UI.Window.yesButtonText": "是",
|
"Common.UI.Window.yesButtonText": "是",
|
||||||
"Common.Utils.Metric.txtCm": "公分",
|
"Common.Utils.Metric.txtCm": "公分",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
|
"Common.Utils.String.textAlt": "Alt",
|
||||||
|
"Common.Utils.String.textCtrl": "Ctrl",
|
||||||
|
"Common.Utils.String.textShift": "Shift",
|
||||||
"Common.Views.About.txtAddress": "地址:",
|
"Common.Views.About.txtAddress": "地址:",
|
||||||
"Common.Views.About.txtLicensee": "被許可人",
|
"Common.Views.About.txtLicensee": "被許可人",
|
||||||
"Common.Views.About.txtLicensor": "許可人",
|
"Common.Views.About.txtLicensor": "許可人",
|
||||||
|
@ -361,6 +377,9 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textClose": "關閉",
|
"Common.Views.ExternalDiagramEditor.textClose": "關閉",
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "存檔並離開",
|
"Common.Views.ExternalDiagramEditor.textSave": "存檔並離開",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "圖表編輯器",
|
"Common.Views.ExternalDiagramEditor.textTitle": "圖表編輯器",
|
||||||
|
"Common.Views.ExternalOleEditor.textClose": "關閉",
|
||||||
|
"Common.Views.ExternalOleEditor.textSave": "存檔並離開",
|
||||||
|
"Common.Views.ExternalOleEditor.textTitle": "試算表編輯器",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "正在編輯文件的用戶:",
|
"Common.Views.Header.labelCoUsersDescr": "正在編輯文件的用戶:",
|
||||||
"Common.Views.Header.textAddFavorite": "標記為最愛收藏",
|
"Common.Views.Header.textAddFavorite": "標記為最愛收藏",
|
||||||
"Common.Views.Header.textAdvSettings": "進階設定",
|
"Common.Views.Header.textAdvSettings": "進階設定",
|
||||||
|
@ -374,6 +393,7 @@
|
||||||
"Common.Views.Header.textSaveChanged": "已更改",
|
"Common.Views.Header.textSaveChanged": "已更改",
|
||||||
"Common.Views.Header.textSaveEnd": "所有更改已保存",
|
"Common.Views.Header.textSaveEnd": "所有更改已保存",
|
||||||
"Common.Views.Header.textSaveExpander": "所有更改已保存",
|
"Common.Views.Header.textSaveExpander": "所有更改已保存",
|
||||||
|
"Common.Views.Header.textShare": "分享",
|
||||||
"Common.Views.Header.textZoom": "放大",
|
"Common.Views.Header.textZoom": "放大",
|
||||||
"Common.Views.Header.tipAccessRights": "管理文檔存取權限",
|
"Common.Views.Header.tipAccessRights": "管理文檔存取權限",
|
||||||
"Common.Views.Header.tipDownload": "下載文件",
|
"Common.Views.Header.tipDownload": "下載文件",
|
||||||
|
@ -381,8 +401,10 @@
|
||||||
"Common.Views.Header.tipPrint": "列印文件",
|
"Common.Views.Header.tipPrint": "列印文件",
|
||||||
"Common.Views.Header.tipRedo": "重做",
|
"Common.Views.Header.tipRedo": "重做",
|
||||||
"Common.Views.Header.tipSave": "儲存",
|
"Common.Views.Header.tipSave": "儲存",
|
||||||
|
"Common.Views.Header.tipSearch": "搜尋",
|
||||||
"Common.Views.Header.tipUndo": "復原",
|
"Common.Views.Header.tipUndo": "復原",
|
||||||
"Common.Views.Header.tipUndock": "移至單獨的視窗",
|
"Common.Views.Header.tipUndock": "移至單獨的視窗",
|
||||||
|
"Common.Views.Header.tipUsers": "查看用戶",
|
||||||
"Common.Views.Header.tipViewSettings": "查看設定",
|
"Common.Views.Header.tipViewSettings": "查看設定",
|
||||||
"Common.Views.Header.tipViewUsers": "查看用戶並管理文檔存取權限",
|
"Common.Views.Header.tipViewUsers": "查看用戶並管理文檔存取權限",
|
||||||
"Common.Views.Header.txtAccessRights": "更改存取權限",
|
"Common.Views.Header.txtAccessRights": "更改存取權限",
|
||||||
|
@ -435,6 +457,7 @@
|
||||||
"Common.Views.PluginDlg.textLoading": "載入中",
|
"Common.Views.PluginDlg.textLoading": "載入中",
|
||||||
"Common.Views.Plugins.groupCaption": "外掛程式",
|
"Common.Views.Plugins.groupCaption": "外掛程式",
|
||||||
"Common.Views.Plugins.strPlugins": "外掛程式",
|
"Common.Views.Plugins.strPlugins": "外掛程式",
|
||||||
|
"Common.Views.Plugins.textClosePanel": "關閉插件",
|
||||||
"Common.Views.Plugins.textLoading": "載入中",
|
"Common.Views.Plugins.textLoading": "載入中",
|
||||||
"Common.Views.Plugins.textStart": "開始",
|
"Common.Views.Plugins.textStart": "開始",
|
||||||
"Common.Views.Plugins.textStop": "停止",
|
"Common.Views.Plugins.textStop": "停止",
|
||||||
|
@ -519,6 +542,22 @@
|
||||||
"Common.Views.ReviewPopover.txtEditTip": "編輯",
|
"Common.Views.ReviewPopover.txtEditTip": "編輯",
|
||||||
"Common.Views.SaveAsDlg.textLoading": "載入中",
|
"Common.Views.SaveAsDlg.textLoading": "載入中",
|
||||||
"Common.Views.SaveAsDlg.textTitle": "保存文件夾",
|
"Common.Views.SaveAsDlg.textTitle": "保存文件夾",
|
||||||
|
"Common.Views.SearchPanel.textCaseSensitive": "區分大小寫",
|
||||||
|
"Common.Views.SearchPanel.textCloseSearch": "關閉搜索",
|
||||||
|
"Common.Views.SearchPanel.textFind": "尋找",
|
||||||
|
"Common.Views.SearchPanel.textFindAndReplace": "尋找與取代",
|
||||||
|
"Common.Views.SearchPanel.textMatchUsingRegExp": "用正規表達式進行匹配",
|
||||||
|
"Common.Views.SearchPanel.textNoMatches": "無匹配",
|
||||||
|
"Common.Views.SearchPanel.textNoSearchResults": "查無搜索结果",
|
||||||
|
"Common.Views.SearchPanel.textReplace": "取代",
|
||||||
|
"Common.Views.SearchPanel.textReplaceAll": "全部替換",
|
||||||
|
"Common.Views.SearchPanel.textReplaceWith": "替換為",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止",
|
||||||
|
"Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}",
|
||||||
|
"Common.Views.SearchPanel.textTooManyResults": "因數量過多而無法顯示部分結果",
|
||||||
|
"Common.Views.SearchPanel.textWholeWords": "僅全字",
|
||||||
|
"Common.Views.SearchPanel.tipNextResult": "下一個結果",
|
||||||
|
"Common.Views.SearchPanel.tipPreviousResult": "上一個結果",
|
||||||
"Common.Views.SelectFileDlg.textLoading": "載入中",
|
"Common.Views.SelectFileDlg.textLoading": "載入中",
|
||||||
"Common.Views.SelectFileDlg.textTitle": "選擇資料來源",
|
"Common.Views.SelectFileDlg.textTitle": "選擇資料來源",
|
||||||
"Common.Views.SignDialog.textBold": "粗體",
|
"Common.Views.SignDialog.textBold": "粗體",
|
||||||
|
@ -674,8 +713,10 @@
|
||||||
"PE.Controllers.Main.textPaidFeature": "付費功能",
|
"PE.Controllers.Main.textPaidFeature": "付費功能",
|
||||||
"PE.Controllers.Main.textReconnect": "連線恢復",
|
"PE.Controllers.Main.textReconnect": "連線恢復",
|
||||||
"PE.Controllers.Main.textRemember": "記住我對所有文件的選擇",
|
"PE.Controllers.Main.textRemember": "記住我對所有文件的選擇",
|
||||||
|
"PE.Controllers.Main.textRememberMacros": "記住我所有巨集的選擇",
|
||||||
"PE.Controllers.Main.textRenameError": "使用者名稱無法留空。",
|
"PE.Controllers.Main.textRenameError": "使用者名稱無法留空。",
|
||||||
"PE.Controllers.Main.textRenameLabel": "輸入合作名稱",
|
"PE.Controllers.Main.textRenameLabel": "輸入合作名稱",
|
||||||
|
"PE.Controllers.Main.textRequestMacros": "有一個巨集指令要求連結至URL。是否允許該要求至%1?",
|
||||||
"PE.Controllers.Main.textShape": "形狀",
|
"PE.Controllers.Main.textShape": "形狀",
|
||||||
"PE.Controllers.Main.textStrict": "嚴格模式",
|
"PE.Controllers.Main.textStrict": "嚴格模式",
|
||||||
"PE.Controllers.Main.textTryUndoRedo": "快速共同編輯模式禁用了“撤消/重做”功能。<br>單擊“嚴格模式”按鈕切換到“嚴格共同編輯”模式以編輯文件而不會受到其他用戶的干擾,並且僅在保存後發送更改他們。您可以使用編輯器的“高級”設置在共同編輯模式之間切換。",
|
"PE.Controllers.Main.textTryUndoRedo": "快速共同編輯模式禁用了“撤消/重做”功能。<br>單擊“嚴格模式”按鈕切換到“嚴格共同編輯”模式以編輯文件而不會受到其他用戶的干擾,並且僅在保存後發送更改他們。您可以使用編輯器的“高級”設置在共同編輯模式之間切換。",
|
||||||
|
@ -954,6 +995,10 @@
|
||||||
"PE.Controllers.Main.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。<br> 請聯繫 %1 銷售團隊來取得個人升級的需求。",
|
"PE.Controllers.Main.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。<br> 請聯繫 %1 銷售團隊來取得個人升級的需求。",
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
|
"PE.Controllers.Main.warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "您被拒絕編輯文件的權利。",
|
"PE.Controllers.Main.warnProcessRightsChange": "您被拒絕編輯文件的權利。",
|
||||||
|
"PE.Controllers.Search.notcriticalErrorTitle": "警告",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "找不到您一直在搜索的數據。請調整您的搜索選項。",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "搜尋完成。 {0}個符合結果已被取代",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0}不是有效的字元",
|
"PE.Controllers.Search.warnReplaceString": "{0}不是有效的字元",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>連線失敗</b><br>正在嘗試連線。請檢查網路連線設定。",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>連線失敗</b><br>正在嘗試連線。請檢查網路連線設定。",
|
||||||
"PE.Controllers.Statusbar.zoomText": "放大{0}%",
|
"PE.Controllers.Statusbar.zoomText": "放大{0}%",
|
||||||
|
@ -1337,7 +1382,17 @@
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "描述",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "描述",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。",
|
"PE.Views.ChartSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltTitle": "標題",
|
"PE.Views.ChartSettingsAdvanced.textAltTitle": "標題",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textCenter": "中心",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textFrom": "自",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textHeight": "\n高度",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textHorizontal": "水平的",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textKeepRatio": "比例不變",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textPlacement": "放置",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textPosition": "職務",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textSize": "大小",
|
||||||
"PE.Views.ChartSettingsAdvanced.textTitle": "圖表-進階設置",
|
"PE.Views.ChartSettingsAdvanced.textTitle": "圖表-進階設置",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textVertical": "垂直",
|
||||||
|
"PE.Views.ChartSettingsAdvanced.textWidth": "寬度",
|
||||||
"PE.Views.DateTimeDialog.confirmDefault": "設置{0}的預設格式:“ {1}”",
|
"PE.Views.DateTimeDialog.confirmDefault": "設置{0}的預設格式:“ {1}”",
|
||||||
"PE.Views.DateTimeDialog.textDefault": "設為預設",
|
"PE.Views.DateTimeDialog.textDefault": "設為預設",
|
||||||
"PE.Views.DateTimeDialog.textFormat": "格式",
|
"PE.Views.DateTimeDialog.textFormat": "格式",
|
||||||
|
@ -1592,8 +1647,11 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編輯模式",
|
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編輯模式",
|
||||||
"PE.Views.FileMenuPanels.Settings.strFast": "快",
|
"PE.Views.FileMenuPanels.Settings.strFast": "快",
|
||||||
"PE.Views.FileMenuPanels.Settings.strFontRender": "字體提示",
|
"PE.Views.FileMenuPanels.Settings.strFontRender": "字體提示",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "忽略大寫單詞",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "忽略帶數字的單詞",
|
||||||
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定",
|
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定",
|
||||||
"PE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕",
|
"PE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "顯示其他用戶的更改",
|
||||||
"PE.Views.FileMenuPanels.Settings.strStrict": "嚴格",
|
"PE.Views.FileMenuPanels.Settings.strStrict": "嚴格",
|
||||||
"PE.Views.FileMenuPanels.Settings.strTheme": "介面主題",
|
"PE.Views.FileMenuPanels.Settings.strTheme": "介面主題",
|
||||||
"PE.Views.FileMenuPanels.Settings.strUnit": "測量單位",
|
"PE.Views.FileMenuPanels.Settings.strUnit": "測量單位",
|
||||||
|
@ -1612,8 +1670,12 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自動更正選項...",
|
"PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自動更正選項...",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtCacheMode": "預設緩存模式",
|
"PE.Views.FileMenuPanels.Settings.txtCacheMode": "預設緩存模式",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtCm": "公分",
|
"PE.Views.FileMenuPanels.Settings.txtCm": "公分",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtCollaboration": "協作",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtEditingSaving": "編輯並儲存",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtFastTip": "實時共同編輯,所有變更將自動儲存。",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "與投影片切合",
|
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "與投影片切合",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "切合至寬度",
|
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "切合至寬度",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "特殊符號",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtInch": "吋",
|
"PE.Views.FileMenuPanels.Settings.txtInch": "吋",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtLast": "查看最後",
|
"PE.Views.FileMenuPanels.Settings.txtLast": "查看最後",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtMac": "作為OS X",
|
"PE.Views.FileMenuPanels.Settings.txtMac": "作為OS X",
|
||||||
|
@ -1625,9 +1687,13 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼字檢查",
|
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼字檢查",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtStopMacros": "全部停用",
|
"PE.Views.FileMenuPanels.Settings.txtStopMacros": "全部停用",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "不用提示停用全部巨集",
|
"PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "不用提示停用全部巨集",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtStrictTip": "使用儲存鍵來同步你和其他用戶的變更",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtUseAltKey": "使用Alt鍵來操控用戶介面",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtUseOptionKey": "使用Option鍵來操控用戶介面",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtWarnMacros": "顯示通知",
|
"PE.Views.FileMenuPanels.Settings.txtWarnMacros": "顯示通知",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "以提示停用全部巨集",
|
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "以提示停用全部巨集",
|
||||||
"PE.Views.FileMenuPanels.Settings.txtWin": "作為Windows",
|
"PE.Views.FileMenuPanels.Settings.txtWin": "作為Windows",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.txtWorkspace": "工作空間",
|
||||||
"PE.Views.HeaderFooterDialog.applyAllText": "全部應用",
|
"PE.Views.HeaderFooterDialog.applyAllText": "全部應用",
|
||||||
"PE.Views.HeaderFooterDialog.applyText": "套用",
|
"PE.Views.HeaderFooterDialog.applyText": "套用",
|
||||||
"PE.Views.HeaderFooterDialog.diffLanguage": "您不能使用與投影片母片不同的語言的日期格式。<br>要更改母片,請點擊“全部應用”而不是“應用”",
|
"PE.Views.HeaderFooterDialog.diffLanguage": "您不能使用與投影片母片不同的語言的日期格式。<br>要更改母片,請點擊“全部應用”而不是“應用”",
|
||||||
|
@ -1690,8 +1756,11 @@
|
||||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。",
|
"PE.Views.ImageSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。",
|
||||||
"PE.Views.ImageSettingsAdvanced.textAltTitle": "標題",
|
"PE.Views.ImageSettingsAdvanced.textAltTitle": "標題",
|
||||||
"PE.Views.ImageSettingsAdvanced.textAngle": "角度",
|
"PE.Views.ImageSettingsAdvanced.textAngle": "角度",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textCenter": "中心",
|
||||||
"PE.Views.ImageSettingsAdvanced.textFlipped": "已翻轉",
|
"PE.Views.ImageSettingsAdvanced.textFlipped": "已翻轉",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textFrom": "自",
|
||||||
"PE.Views.ImageSettingsAdvanced.textHeight": "高度",
|
"PE.Views.ImageSettingsAdvanced.textHeight": "高度",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textHorizontal": "水平的",
|
||||||
"PE.Views.ImageSettingsAdvanced.textHorizontally": "水平地",
|
"PE.Views.ImageSettingsAdvanced.textHorizontally": "水平地",
|
||||||
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "比例不變",
|
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "比例不變",
|
||||||
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "實際大小",
|
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "實際大小",
|
||||||
|
@ -1700,6 +1769,7 @@
|
||||||
"PE.Views.ImageSettingsAdvanced.textRotation": "旋轉",
|
"PE.Views.ImageSettingsAdvanced.textRotation": "旋轉",
|
||||||
"PE.Views.ImageSettingsAdvanced.textSize": "大小",
|
"PE.Views.ImageSettingsAdvanced.textSize": "大小",
|
||||||
"PE.Views.ImageSettingsAdvanced.textTitle": "圖像-進階設置",
|
"PE.Views.ImageSettingsAdvanced.textTitle": "圖像-進階設置",
|
||||||
|
"PE.Views.ImageSettingsAdvanced.textVertical": "垂直",
|
||||||
"PE.Views.ImageSettingsAdvanced.textVertically": "垂直",
|
"PE.Views.ImageSettingsAdvanced.textVertically": "垂直",
|
||||||
"PE.Views.ImageSettingsAdvanced.textWidth": "寬度",
|
"PE.Views.ImageSettingsAdvanced.textWidth": "寬度",
|
||||||
"PE.Views.LeftMenu.tipAbout": "關於",
|
"PE.Views.LeftMenu.tipAbout": "關於",
|
||||||
|
@ -1839,12 +1909,15 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textBevel": "斜角",
|
"PE.Views.ShapeSettingsAdvanced.textBevel": "斜角",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textBottom": "底部",
|
"PE.Views.ShapeSettingsAdvanced.textBottom": "底部",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textCapType": "Cap 類型",
|
"PE.Views.ShapeSettingsAdvanced.textCapType": "Cap 類型",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textCenter": "中心",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textColNumber": "列數",
|
"PE.Views.ShapeSettingsAdvanced.textColNumber": "列數",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textEndSize": "端部尺寸",
|
"PE.Views.ShapeSettingsAdvanced.textEndSize": "端部尺寸",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "結束樣式",
|
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "結束樣式",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textFlat": "平面",
|
"PE.Views.ShapeSettingsAdvanced.textFlat": "平面",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textFlipped": "已翻轉",
|
"PE.Views.ShapeSettingsAdvanced.textFlipped": "已翻轉",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textFrom": "自",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textHeight": "高度",
|
"PE.Views.ShapeSettingsAdvanced.textHeight": "高度",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textHorizontal": "水平的",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textHorizontally": "水平地",
|
"PE.Views.ShapeSettingsAdvanced.textHorizontally": "水平地",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textJoinType": "加入類型",
|
"PE.Views.ShapeSettingsAdvanced.textJoinType": "加入類型",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "比例不變",
|
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "比例不變",
|
||||||
|
@ -1852,6 +1925,8 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "線型",
|
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "線型",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
|
"PE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textNofit": "不要自動調整",
|
"PE.Views.ShapeSettingsAdvanced.textNofit": "不要自動調整",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textPlacement": "放置",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textPosition": "職務",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textResizeFit": "調整形狀以適合文本",
|
"PE.Views.ShapeSettingsAdvanced.textResizeFit": "調整形狀以適合文本",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textRight": "右",
|
"PE.Views.ShapeSettingsAdvanced.textRight": "右",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textRotation": "旋轉",
|
"PE.Views.ShapeSettingsAdvanced.textRotation": "旋轉",
|
||||||
|
@ -1863,6 +1938,7 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textTextBox": "文字框",
|
"PE.Views.ShapeSettingsAdvanced.textTextBox": "文字框",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textTitle": "形狀 - 進階設定",
|
"PE.Views.ShapeSettingsAdvanced.textTitle": "形狀 - 進階設定",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textTop": "上方",
|
"PE.Views.ShapeSettingsAdvanced.textTop": "上方",
|
||||||
|
"PE.Views.ShapeSettingsAdvanced.textVertical": "垂直",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textVertically": "垂直",
|
"PE.Views.ShapeSettingsAdvanced.textVertically": "垂直",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "重量和箭頭",
|
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "重量和箭頭",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWidth": "寬度",
|
"PE.Views.ShapeSettingsAdvanced.textWidth": "寬度",
|
||||||
|
@ -2016,13 +2092,23 @@
|
||||||
"PE.Views.TableSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。",
|
"PE.Views.TableSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。",
|
||||||
"PE.Views.TableSettingsAdvanced.textAltTitle": "標題",
|
"PE.Views.TableSettingsAdvanced.textAltTitle": "標題",
|
||||||
"PE.Views.TableSettingsAdvanced.textBottom": "底部",
|
"PE.Views.TableSettingsAdvanced.textBottom": "底部",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textCenter": "中心",
|
||||||
"PE.Views.TableSettingsAdvanced.textCheckMargins": "使用預設邊距",
|
"PE.Views.TableSettingsAdvanced.textCheckMargins": "使用預設邊距",
|
||||||
"PE.Views.TableSettingsAdvanced.textDefaultMargins": "預設邊框",
|
"PE.Views.TableSettingsAdvanced.textDefaultMargins": "預設邊框",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textFrom": "自",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textHeight": "\n高度",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textHorizontal": "水平的",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textKeepRatio": "比例不變",
|
||||||
"PE.Views.TableSettingsAdvanced.textLeft": "左",
|
"PE.Views.TableSettingsAdvanced.textLeft": "左",
|
||||||
"PE.Views.TableSettingsAdvanced.textMargins": "單元格內邊距",
|
"PE.Views.TableSettingsAdvanced.textMargins": "單元格內邊距",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textPlacement": "放置",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textPosition": "職務",
|
||||||
"PE.Views.TableSettingsAdvanced.textRight": "右",
|
"PE.Views.TableSettingsAdvanced.textRight": "右",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textSize": "大小",
|
||||||
"PE.Views.TableSettingsAdvanced.textTitle": "表格 - 進階設定",
|
"PE.Views.TableSettingsAdvanced.textTitle": "表格 - 進階設定",
|
||||||
"PE.Views.TableSettingsAdvanced.textTop": "上方",
|
"PE.Views.TableSettingsAdvanced.textTop": "上方",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textVertical": "垂直",
|
||||||
|
"PE.Views.TableSettingsAdvanced.textWidth": "寬度",
|
||||||
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "邊框",
|
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "邊框",
|
||||||
"PE.Views.TextArtSettings.strBackground": "背景顏色",
|
"PE.Views.TextArtSettings.strBackground": "背景顏色",
|
||||||
"PE.Views.TextArtSettings.strColor": "顏色",
|
"PE.Views.TextArtSettings.strColor": "顏色",
|
||||||
|
@ -2084,6 +2170,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "形狀",
|
"PE.Views.Toolbar.capInsertShape": "形狀",
|
||||||
"PE.Views.Toolbar.capInsertTable": "表格",
|
"PE.Views.Toolbar.capInsertTable": "表格",
|
||||||
"PE.Views.Toolbar.capInsertText": "文字框",
|
"PE.Views.Toolbar.capInsertText": "文字框",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "文字藝術",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "影片",
|
"PE.Views.Toolbar.capInsertVideo": "影片",
|
||||||
"PE.Views.Toolbar.capTabFile": "檔案",
|
"PE.Views.Toolbar.capTabFile": "檔案",
|
||||||
"PE.Views.Toolbar.capTabHome": "首頁",
|
"PE.Views.Toolbar.capTabHome": "首頁",
|
||||||
|
@ -2093,6 +2180,7 @@
|
||||||
"PE.Views.Toolbar.mniImageFromFile": "圖片來自文件",
|
"PE.Views.Toolbar.mniImageFromFile": "圖片來自文件",
|
||||||
"PE.Views.Toolbar.mniImageFromStorage": "來自存儲的圖像",
|
"PE.Views.Toolbar.mniImageFromStorage": "來自存儲的圖像",
|
||||||
"PE.Views.Toolbar.mniImageFromUrl": "來自網址的圖片",
|
"PE.Views.Toolbar.mniImageFromUrl": "來自網址的圖片",
|
||||||
|
"PE.Views.Toolbar.mniInsertSSE": "插入計算表",
|
||||||
"PE.Views.Toolbar.mniLowerCase": "小寫",
|
"PE.Views.Toolbar.mniLowerCase": "小寫",
|
||||||
"PE.Views.Toolbar.mniSentenceCase": "大寫句子頭",
|
"PE.Views.Toolbar.mniSentenceCase": "大寫句子頭",
|
||||||
"PE.Views.Toolbar.mniSlideAdvanced": "進階設定",
|
"PE.Views.Toolbar.mniSlideAdvanced": "進階設定",
|
||||||
|
@ -2153,6 +2241,7 @@
|
||||||
"PE.Views.Toolbar.tipColumns": "插入欄",
|
"PE.Views.Toolbar.tipColumns": "插入欄",
|
||||||
"PE.Views.Toolbar.tipCopy": "複製",
|
"PE.Views.Toolbar.tipCopy": "複製",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "複製樣式",
|
"PE.Views.Toolbar.tipCopyStyle": "複製樣式",
|
||||||
|
"PE.Views.Toolbar.tipCut": "剪下",
|
||||||
"PE.Views.Toolbar.tipDateTime": "插入當前日期和時間",
|
"PE.Views.Toolbar.tipDateTime": "插入當前日期和時間",
|
||||||
"PE.Views.Toolbar.tipDecFont": "減少字體大小",
|
"PE.Views.Toolbar.tipDecFont": "減少字體大小",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "減少縮進",
|
"PE.Views.Toolbar.tipDecPrLeft": "減少縮進",
|
||||||
|
@ -2193,6 +2282,7 @@
|
||||||
"PE.Views.Toolbar.tipRedo": "重做",
|
"PE.Views.Toolbar.tipRedo": "重做",
|
||||||
"PE.Views.Toolbar.tipSave": "儲存",
|
"PE.Views.Toolbar.tipSave": "儲存",
|
||||||
"PE.Views.Toolbar.tipSaveCoauth": "保存您的更改,以供其他用戶查看。",
|
"PE.Views.Toolbar.tipSaveCoauth": "保存您的更改,以供其他用戶查看。",
|
||||||
|
"PE.Views.Toolbar.tipSelectAll": "全選",
|
||||||
"PE.Views.Toolbar.tipShapeAlign": "對齊形狀",
|
"PE.Views.Toolbar.tipShapeAlign": "對齊形狀",
|
||||||
"PE.Views.Toolbar.tipShapeArrange": "排列形狀",
|
"PE.Views.Toolbar.tipShapeArrange": "排列形狀",
|
||||||
"PE.Views.Toolbar.tipSlideNum": "插入投影片編號",
|
"PE.Views.Toolbar.tipSlideNum": "插入投影片編號",
|
||||||
|
|
|
@ -283,6 +283,7 @@
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "标准颜色",
|
"Common.UI.ThemeColorPalette.textStandartColors": "标准颜色",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "主题颜色",
|
"Common.UI.ThemeColorPalette.textThemeColors": "主题颜色",
|
||||||
"Common.UI.Themes.txtThemeClassicLight": "经典浅色",
|
"Common.UI.Themes.txtThemeClassicLight": "经典浅色",
|
||||||
|
"Common.UI.Themes.txtThemeContrastDark": "暗色对比",
|
||||||
"Common.UI.Themes.txtThemeDark": "暗色模式",
|
"Common.UI.Themes.txtThemeDark": "暗色模式",
|
||||||
"Common.UI.Themes.txtThemeLight": "浅色主題",
|
"Common.UI.Themes.txtThemeLight": "浅色主題",
|
||||||
"Common.UI.Themes.txtThemeSystem": "和系统一致",
|
"Common.UI.Themes.txtThemeSystem": "和系统一致",
|
||||||
|
@ -551,6 +552,7 @@
|
||||||
"Common.Views.SearchPanel.textReplace": "替换",
|
"Common.Views.SearchPanel.textReplace": "替换",
|
||||||
"Common.Views.SearchPanel.textReplaceAll": "全部替换",
|
"Common.Views.SearchPanel.textReplaceAll": "全部替换",
|
||||||
"Common.Views.SearchPanel.textReplaceWith": "替换为",
|
"Common.Views.SearchPanel.textReplaceWith": "替换为",
|
||||||
|
"Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止",
|
||||||
"Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}",
|
"Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}",
|
||||||
"Common.Views.SearchPanel.textTooManyResults": "结果太多了",
|
"Common.Views.SearchPanel.textTooManyResults": "结果太多了",
|
||||||
"Common.Views.SearchPanel.textWholeWords": "仅全字",
|
"Common.Views.SearchPanel.textWholeWords": "仅全字",
|
||||||
|
@ -657,7 +659,7 @@
|
||||||
"PE.Controllers.Main.errorToken": "文档安全令牌未正确形成。<br>请与您的文件服务器管理员联系。",
|
"PE.Controllers.Main.errorToken": "文档安全令牌未正确形成。<br>请与您的文件服务器管理员联系。",
|
||||||
"PE.Controllers.Main.errorTokenExpire": "文档安全令牌已过期。<br>请与您的文档服务器管理员联系。",
|
"PE.Controllers.Main.errorTokenExpire": "文档安全令牌已过期。<br>请与您的文档服务器管理员联系。",
|
||||||
"PE.Controllers.Main.errorUpdateVersion": "该文件版本已经改变了。该页面将被重新加载。",
|
"PE.Controllers.Main.errorUpdateVersion": "该文件版本已经改变了。该页面将被重新加载。",
|
||||||
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "网连接已还原文件版本已更改。.<br>在继续工作之前,需要下载文件或复制其内容以确保没有丢失任何内容,然后重新加载此页。",
|
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后重新加载此页。",
|
||||||
"PE.Controllers.Main.errorUserDrop": "该文件现在无法访问。",
|
"PE.Controllers.Main.errorUserDrop": "该文件现在无法访问。",
|
||||||
"PE.Controllers.Main.errorUsersExceed": "超过了定价计划允许的用户数",
|
"PE.Controllers.Main.errorUsersExceed": "超过了定价计划允许的用户数",
|
||||||
"PE.Controllers.Main.errorViewerDisconnect": "连接丢失了。您仍然可以查看文档,<br>但在连接恢复并页面被重新加载之前无法下载或打印。",
|
"PE.Controllers.Main.errorViewerDisconnect": "连接丢失了。您仍然可以查看文档,<br>但在连接恢复并页面被重新加载之前无法下载或打印。",
|
||||||
|
@ -994,6 +996,9 @@
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "您已达到%1编辑器的用户限制。请联系%1销售团队以了解个人升级条款。",
|
"PE.Controllers.Main.warnNoLicenseUsers": "您已达到%1编辑器的用户限制。请联系%1销售团队以了解个人升级条款。",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "您被拒绝编辑文件的权限。",
|
"PE.Controllers.Main.warnProcessRightsChange": "您被拒绝编辑文件的权限。",
|
||||||
"PE.Controllers.Search.notcriticalErrorTitle": "警告",
|
"PE.Controllers.Search.notcriticalErrorTitle": "警告",
|
||||||
|
"PE.Controllers.Search.textNoTextFound": "您搜索的数据无法找到。请调整您的搜索选项。",
|
||||||
|
"PE.Controllers.Search.textReplaceSkipped": "替换已完成。 {0}个符合结果被跳过。",
|
||||||
|
"PE.Controllers.Search.textReplaceSuccess": "搜寻已完成。 {0}个符合结果已被取代",
|
||||||
"PE.Controllers.Search.warnReplaceString": "{0}不是有效的规范",
|
"PE.Controllers.Search.warnReplaceString": "{0}不是有效的规范",
|
||||||
"PE.Controllers.Statusbar.textDisconnect": "<b>连接失败</b><br>正在尝试连接。请检查连接设置。",
|
"PE.Controllers.Statusbar.textDisconnect": "<b>连接失败</b><br>正在尝试连接。请检查连接设置。",
|
||||||
"PE.Controllers.Statusbar.zoomText": "缩放%{0}",
|
"PE.Controllers.Statusbar.zoomText": "缩放%{0}",
|
||||||
|
@ -1647,6 +1652,7 @@
|
||||||
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "忽略带数字的单词",
|
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "忽略带数字的单词",
|
||||||
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置",
|
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置",
|
||||||
"PE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮",
|
"PE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮",
|
||||||
|
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "显示其他用户的更改",
|
||||||
"PE.Views.FileMenuPanels.Settings.strStrict": "手动",
|
"PE.Views.FileMenuPanels.Settings.strStrict": "手动",
|
||||||
"PE.Views.FileMenuPanels.Settings.strTheme": "界面主題",
|
"PE.Views.FileMenuPanels.Settings.strTheme": "界面主題",
|
||||||
"PE.Views.FileMenuPanels.Settings.strUnit": "测量单位",
|
"PE.Views.FileMenuPanels.Settings.strUnit": "测量单位",
|
||||||
|
@ -2169,6 +2175,7 @@
|
||||||
"PE.Views.Toolbar.capInsertShape": "形状",
|
"PE.Views.Toolbar.capInsertShape": "形状",
|
||||||
"PE.Views.Toolbar.capInsertTable": "表格",
|
"PE.Views.Toolbar.capInsertTable": "表格",
|
||||||
"PE.Views.Toolbar.capInsertText": "文本框",
|
"PE.Views.Toolbar.capInsertText": "文本框",
|
||||||
|
"PE.Views.Toolbar.capInsertTextArt": "艺术字",
|
||||||
"PE.Views.Toolbar.capInsertVideo": "视频",
|
"PE.Views.Toolbar.capInsertVideo": "视频",
|
||||||
"PE.Views.Toolbar.capTabFile": "文件",
|
"PE.Views.Toolbar.capTabFile": "文件",
|
||||||
"PE.Views.Toolbar.capTabHome": "主页",
|
"PE.Views.Toolbar.capTabHome": "主页",
|
||||||
|
@ -2239,6 +2246,7 @@
|
||||||
"PE.Views.Toolbar.tipColumns": "插入列",
|
"PE.Views.Toolbar.tipColumns": "插入列",
|
||||||
"PE.Views.Toolbar.tipCopy": "复制",
|
"PE.Views.Toolbar.tipCopy": "复制",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "复制样式",
|
"PE.Views.Toolbar.tipCopyStyle": "复制样式",
|
||||||
|
"PE.Views.Toolbar.tipCut": "剪切",
|
||||||
"PE.Views.Toolbar.tipDateTime": "插入当前日期和时间",
|
"PE.Views.Toolbar.tipDateTime": "插入当前日期和时间",
|
||||||
"PE.Views.Toolbar.tipDecFont": "缩小字号",
|
"PE.Views.Toolbar.tipDecFont": "缩小字号",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "减少缩进",
|
"PE.Views.Toolbar.tipDecPrLeft": "减少缩进",
|
||||||
|
@ -2279,6 +2287,7 @@
|
||||||
"PE.Views.Toolbar.tipRedo": "重做",
|
"PE.Views.Toolbar.tipRedo": "重做",
|
||||||
"PE.Views.Toolbar.tipSave": "保存",
|
"PE.Views.Toolbar.tipSave": "保存",
|
||||||
"PE.Views.Toolbar.tipSaveCoauth": "保存您的更改以供其他用户查看",
|
"PE.Views.Toolbar.tipSaveCoauth": "保存您的更改以供其他用户查看",
|
||||||
|
"PE.Views.Toolbar.tipSelectAll": "全选",
|
||||||
"PE.Views.Toolbar.tipShapeAlign": "对齐形状",
|
"PE.Views.Toolbar.tipShapeAlign": "对齐形状",
|
||||||
"PE.Views.Toolbar.tipShapeArrange": "排列形状",
|
"PE.Views.Toolbar.tipShapeArrange": "排列形状",
|
||||||
"PE.Views.Toolbar.tipSlideNum": "插入幻灯片编号",
|
"PE.Views.Toolbar.tipSlideNum": "插入幻灯片编号",
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
"textAbout": "Information",
|
"textAbout": "Information",
|
||||||
"textAddress": "Adresse",
|
"textAddress": "Adresse",
|
||||||
"textBack": "Zurück",
|
"textBack": "Zurück",
|
||||||
|
"textEditor": "Editor der Präsentationen",
|
||||||
"textEmail": "E-Mail",
|
"textEmail": "E-Mail",
|
||||||
"textPoweredBy": "Unterstützt von",
|
"textPoweredBy": "Unterstützt von",
|
||||||
"textTel": "Tel.",
|
"textTel": "Tel.",
|
||||||
"textVersion": "Version",
|
"textVersion": "Version"
|
||||||
"textEditor": "Presentation Editor"
|
|
||||||
},
|
},
|
||||||
"Common": {
|
"Common": {
|
||||||
"Collaboration": {
|
"Collaboration": {
|
||||||
|
@ -59,9 +59,9 @@
|
||||||
"textColumns": "Spalten",
|
"textColumns": "Spalten",
|
||||||
"textCopyCutPasteActions": "Kopieren, Ausschneiden und Einfügen",
|
"textCopyCutPasteActions": "Kopieren, Ausschneiden und Einfügen",
|
||||||
"textDoNotShowAgain": "Nicht mehr anzeigen",
|
"textDoNotShowAgain": "Nicht mehr anzeigen",
|
||||||
|
"textOk": "OK",
|
||||||
"textRows": "Zeilen",
|
"textRows": "Zeilen",
|
||||||
"textOk": "Ok",
|
"txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.<br>Möchten Sie wirklich fortsetzen?"
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
|
||||||
},
|
},
|
||||||
"Controller": {
|
"Controller": {
|
||||||
"Main": {
|
"Main": {
|
||||||
|
|
|
@ -59,9 +59,9 @@
|
||||||
"textColumns": "Colonnes",
|
"textColumns": "Colonnes",
|
||||||
"textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller",
|
"textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller",
|
||||||
"textDoNotShowAgain": "Ne plus afficher",
|
"textDoNotShowAgain": "Ne plus afficher",
|
||||||
|
"textOk": "OK",
|
||||||
"textRows": "Lignes",
|
"textRows": "Lignes",
|
||||||
"textOk": "Ok",
|
"txtWarnUrl": "Cliquer sur ce lien peut être dangereux pour votre appareil et vos données. <br>Êtes-vous sûr de vouloir continuer ?"
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
|
||||||
},
|
},
|
||||||
"Controller": {
|
"Controller": {
|
||||||
"Main": {
|
"Main": {
|
||||||
|
@ -249,7 +249,7 @@
|
||||||
},
|
},
|
||||||
"Edit": {
|
"Edit": {
|
||||||
"notcriticalErrorTitle": "Avertissement",
|
"notcriticalErrorTitle": "Avertissement",
|
||||||
"textActualSize": "Taille réelle",
|
"textActualSize": "Taille actuelle",
|
||||||
"textAddCustomColor": "Ajouter une couleur personnalisée",
|
"textAddCustomColor": "Ajouter une couleur personnalisée",
|
||||||
"textAdditional": "Additionnel",
|
"textAdditional": "Additionnel",
|
||||||
"textAdditionalFormatting": "Mise en forme supplémentaire",
|
"textAdditionalFormatting": "Mise en forme supplémentaire",
|
||||||
|
|
|
@ -59,9 +59,9 @@
|
||||||
"textColumns": "Սյունակներ",
|
"textColumns": "Սյունակներ",
|
||||||
"textCopyCutPasteActions": "Պատճենելու, կտրելու և փակցնելու գործողություններ",
|
"textCopyCutPasteActions": "Պատճենելու, կտրելու և փակցնելու գործողություններ",
|
||||||
"textDoNotShowAgain": "Այլևս ցույց չտալ",
|
"textDoNotShowAgain": "Այլևս ցույց չտալ",
|
||||||
|
"textOk": "Լավ",
|
||||||
"textRows": "Տողեր",
|
"textRows": "Տողեր",
|
||||||
"textOk": "Ok",
|
"txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները:<br>Վստա՞հ եք, որ ցանկանում եք շարունակել:"
|
||||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
|
||||||
},
|
},
|
||||||
"Controller": {
|
"Controller": {
|
||||||
"Main": {
|
"Main": {
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue