Merge branch 'release/v7.1.0' into develop
This commit is contained in:
commit
21a0746dd9
|
@ -183,6 +183,8 @@ define([
|
|||
|
||||
_options.tpl = _.template(this.template)(_options);
|
||||
|
||||
this._previewTdWidth = [];
|
||||
this._previewTdMaxLength = 0;
|
||||
Common.UI.Window.prototype.initialize.call(this, _options);
|
||||
},
|
||||
render: function () {
|
||||
|
@ -417,6 +419,9 @@ define([
|
|||
},
|
||||
|
||||
updatePreview: function() {
|
||||
this._previewTdWidth = [];
|
||||
this._previewTdMaxLength = 0;
|
||||
|
||||
var encoding = (this.cmbEncoding && !this.cmbEncoding.isDisabled()) ? this.cmbEncoding.getValue() :
|
||||
((this.settings && this.settings.asc_getCodePage()) ? this.settings.asc_getCodePage() : 0);
|
||||
var delimiter = this.cmbDelimiter ? this.cmbDelimiter.getValue() : null,
|
||||
|
@ -488,15 +493,24 @@ define([
|
|||
if (str.length>maxlength)
|
||||
maxlength = str.length;
|
||||
}
|
||||
this._previewTdMaxLength = Math.max(this._previewTdMaxLength, maxlength);
|
||||
var tpl = '<table>';
|
||||
for (var i=0; i<data.length; i++) {
|
||||
var str = data[i] || '';
|
||||
tpl += '<tr style="vertical-align: top;">';
|
||||
for (var j=0; j<str.length; j++) {
|
||||
tpl += '<td>' + Common.Utils.String.htmlEncode(str[j]) + '</td>';
|
||||
var style = '';
|
||||
if (i==0 && this._previewTdWidth[j]) { // set td style only for first tr
|
||||
style = 'style="min-width:' + this._previewTdWidth[j] + 'px;"';
|
||||
}
|
||||
tpl += '<td '+ style +'>' + Common.Utils.String.htmlEncode(str[j]) + '</td>';
|
||||
}
|
||||
for (j=str.length; j<maxlength; j++) {
|
||||
tpl += '<td></td>';
|
||||
for (j=str.length; j<this._previewTdMaxLength; j++) {
|
||||
var style = '';
|
||||
if (i==0 && this._previewTdWidth[j]) { // set td style only for first tr
|
||||
style = 'style="min-width:' + this._previewTdWidth[j] + 'px;"';
|
||||
}
|
||||
tpl += '<td '+ style +'></td>';
|
||||
}
|
||||
tpl += '</tr>';
|
||||
}
|
||||
|
@ -511,6 +525,14 @@ define([
|
|||
}
|
||||
this.previewPanel.html(tpl);
|
||||
|
||||
if (data.length>0) {
|
||||
var me = this;
|
||||
(this._previewTdWidth.length===0) && this.previewScrolled.scrollLeft(0);
|
||||
this.previewPanel.find('tr:first td').each(function(index, el){
|
||||
me._previewTdWidth[index] = Math.max(Math.max(Math.ceil($(el).outerWidth()), 30), me._previewTdWidth[index] || 0);
|
||||
});
|
||||
}
|
||||
|
||||
this.scrollerX = new Common.UI.Scroller({
|
||||
el: this.previewPanel,
|
||||
suppressScrollY: true,
|
||||
|
@ -521,7 +543,9 @@ define([
|
|||
|
||||
onCmbDelimiterSelect: function(combo, record){
|
||||
this.inputDelimiter.setVisible(record.value == -1);
|
||||
(record.value == -1) && this.inputDelimiter.cmpEl.find('input').focus();
|
||||
var me = this;
|
||||
if (record.value == -1)
|
||||
setTimeout(function(){me.inputDelimiter.focus();}, 10);
|
||||
if (this.preview)
|
||||
this.updatePreview();
|
||||
},
|
||||
|
|
|
@ -171,7 +171,7 @@
|
|||
this.txtSearch.on('keydown', null, 'search', _.bind(this.onKeyPress, this));
|
||||
this.txtReplace.on('keydown', null, 'replace', _.bind(this.onKeyPress, this));
|
||||
|
||||
this.on('animate:before', _.bind(this.focus, this));
|
||||
this.on('animate:before', _.bind(this.onAnimateBefore, this));
|
||||
|
||||
return this;
|
||||
},
|
||||
|
@ -191,14 +191,18 @@
|
|||
this.focus();
|
||||
},
|
||||
|
||||
focus: function() {
|
||||
var me = this;
|
||||
focus: function(type) {
|
||||
var field = (type==='replace') ? this.txtReplace : this.txtSearch;
|
||||
setTimeout(function(){
|
||||
me.txtSearch.focus();
|
||||
me.txtSearch.select();
|
||||
field.focus();
|
||||
field.select();
|
||||
}, 10);
|
||||
},
|
||||
|
||||
onAnimateBefore: function() {
|
||||
this.focus();
|
||||
},
|
||||
|
||||
onKeyPress: function(event) {
|
||||
if (!this.isLocked()) {
|
||||
if (event.keyCode == Common.UI.Keys.RETURN) {
|
||||
|
|
|
@ -574,8 +574,21 @@ define([
|
|||
|
||||
onQueryReplace: function(w, opts) {
|
||||
if (!_.isEmpty(opts.textsearch)) {
|
||||
var me = this;
|
||||
var str = this.api.asc_GetErrorForReplaceString(opts.textreplace);
|
||||
if (str) {
|
||||
Common.UI.warning({
|
||||
title: this.notcriticalErrorTitle,
|
||||
msg: Common.Utils.String.format(this.warnReplaceString, str),
|
||||
buttons: ['ok'],
|
||||
callback: function(btn){
|
||||
me.dlgSearch.focus('replace');
|
||||
}
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (!this.api.asc_replaceText(opts.textsearch, opts.textreplace, false, opts.matchcase, opts.matchword)) {
|
||||
var me = this;
|
||||
Common.UI.info({
|
||||
msg: this.textNoTextFound,
|
||||
callback: function() {
|
||||
|
@ -588,6 +601,19 @@ define([
|
|||
|
||||
onQueryReplaceAll: function(w, opts) {
|
||||
if (!_.isEmpty(opts.textsearch)) {
|
||||
var me = this;
|
||||
var str = this.api.asc_GetErrorForReplaceString(opts.textreplace);
|
||||
if (str) {
|
||||
Common.UI.warning({
|
||||
title: this.notcriticalErrorTitle,
|
||||
msg: Common.Utils.String.format(this.warnReplaceString, str),
|
||||
buttons: ['ok'],
|
||||
callback: function(btn){
|
||||
me.dlgSearch.focus('replace');
|
||||
}
|
||||
});
|
||||
return;
|
||||
}
|
||||
this.api.asc_replaceText(opts.textsearch, opts.textreplace, true, opts.matchcase, opts.matchword);
|
||||
}
|
||||
},
|
||||
|
@ -927,7 +953,8 @@ define([
|
|||
warnDownloadAsRTF : 'If you continue saving in this format some of the formatting might be lost.<br>Are you sure you want to continue?',
|
||||
txtUntitled: 'Untitled',
|
||||
txtCompatible: 'The document will be saved to the new format. It will allow to use all the editor features, but might affect the document layout.<br>Use the \'Compatibility\' option of the advanced settings if you want to make the files compatible with older MS Word versions.',
|
||||
warnDownloadAsPdf: 'Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.'
|
||||
warnDownloadAsPdf: 'Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.',
|
||||
warnReplaceString: '{0} is not a valid special character for the Replace With box.'
|
||||
|
||||
}, DE.Controllers.LeftMenu || {}));
|
||||
});
|
|
@ -90,7 +90,9 @@ define([
|
|||
me.statusbar.render(cfg);
|
||||
me.statusbar.$el.css('z-index', 1);
|
||||
|
||||
$('.statusbar #label-zoom').css('min-width', 80);
|
||||
var lblzoom = $('.statusbar #label-zoom');
|
||||
lblzoom.css('min-width', 80);
|
||||
lblzoom.text(Common.Utils.String.format(me.zoomText, 100));
|
||||
|
||||
if ( cfg.isEdit ) {
|
||||
var review = me.getApplication().getController('Common.Controllers.ReviewChanges').getView();
|
||||
|
|
|
@ -365,7 +365,8 @@ define([
|
|||
addEvent(me.el, eventname, handleDocumentWheel);
|
||||
}
|
||||
|
||||
$(document).on('mousewheel', handleDocumentWheel);
|
||||
!Common.Utils.isChrome ? $(document).on('mousewheel', handleDocumentWheel) :
|
||||
document.addEventListener('mousewheel', handleDocumentWheel, {passive: false});
|
||||
$(document).on('keydown', handleDocumentKeyDown);
|
||||
|
||||
$(window).on('resize', onDocumentHolderResize);
|
||||
|
|
|
@ -844,7 +844,6 @@
|
|||
"DE.Controllers.Toolbar.textScript": "Індэксы",
|
||||
"DE.Controllers.Toolbar.textSymbols": "Сімвалы",
|
||||
"DE.Controllers.Toolbar.textWarning": "Увага",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Маркеры-стрэлкі",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Націск",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрэлка ўправа-ўлева зверху",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрэлка ўлева зверху",
|
||||
|
@ -1438,7 +1437,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Абнавіць змест",
|
||||
"DE.Views.DocumentHolder.textWrap": "Стыль абцякання",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Гэты элемент рэдагуецца іншым карыстальнікам.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрэлкі",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Дадаць у слоўнік",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Дадаць ніжнюю мяжу",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Дадаць рыску дробу",
|
||||
|
@ -2568,6 +2566,7 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Міжрадковы прамежак у абзацах",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Аб’яднанне",
|
||||
"DE.Views.Toolbar.tipMarkers": "Спіс з адзнакамі",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрэлкі",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Шматузроўневы спіс",
|
||||
"DE.Views.Toolbar.tipNumbers": "Пранумараваны спіс",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Уставіць разрыў старонкі альбо раздзела",
|
||||
|
|
|
@ -514,6 +514,7 @@
|
|||
"DE.Controllers.LeftMenu.warnDownloadAs": "Si continueu i deseu en aquest format, es perdran totes les característiques, excepte el text. <br>Voleu continuar?",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsPdf": "El vostre {0} es convertirà a un format editable. Això pot trigar una estona. El document resultant s'optimitzarà perquè pugueu editar el text, de manera que pot ser que no se sembli a l'original {0}, sobretot si el fitxer original contenia molts gràfics.",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continueu i deseu en aquest format, es pot perdre part del format. <br>Voleu continuar?",
|
||||
"DE.Controllers.LeftMenu.warnReplaceString": "{0} no és un caràcter especial vàlid per al camp de substitució.",
|
||||
"DE.Controllers.Main.applyChangesTextText": "S'estan carregant els canvis...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "S'estan carregant els canvis",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "S'ha superat el temps de conversió.",
|
||||
|
@ -918,17 +919,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Símbols",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formularis",
|
||||
"DE.Controllers.Toolbar.textWarning": "Advertiment",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Pics de fletxa",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Pics de guió",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Pics de rombes plens",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Pics rodons plens",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Pics quadrats plens",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Pics rodons buits",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Pics d'estrella",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Pics numerats multinivell ",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Pics de símbols multinivell",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Pics numerats de diferents nivells",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Agut",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Fletxa dreta-esquerra superior",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa esquerra a sobre",
|
||||
|
@ -1531,14 +1521,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Actualitza la taula de continguts",
|
||||
"DE.Views.DocumentHolder.textWrap": "Estil d'ajustament",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Un altre usuari té obert ara aquest element.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Pics de fletxa",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Pics de marca de selecció",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Pics de guió",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Pics de rombes plens",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Pics rodons plens",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Pics quadrats plens",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Pics rodons buits",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Pics d'estrella",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Afegeix al diccionari",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Afegeix una línia inferior",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Afegeix una barra de fracció",
|
||||
|
@ -1681,7 +1663,7 @@
|
|||
"DE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú",
|
||||
"DE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou",
|
||||
"DE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Surt",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Tancar",
|
||||
"DE.Views.FileMenu.btnFileOpenCaption": "Obre...",
|
||||
"DE.Views.FileMenu.btnHelpCaption": "Ajuda...",
|
||||
"DE.Views.FileMenu.btnHistoryCaption": "Historial de versions",
|
||||
|
@ -2771,7 +2753,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Interlineat del paràgraf",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Combina la correspondència",
|
||||
"DE.Views.Toolbar.tipMarkers": "Pics",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Pics de fletxa",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Pics de guió",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Pics de rombes plens",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Pics rodons plens",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Pics quadrats plens",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Pics rodons buits",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Pics d'estrella",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Pics numerats multinivell ",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Llista amb diversos nivells",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Pics de símbols multinivell",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Pics numerats de diferents nivells",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numeració",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Insereix un salt de pàgina o de secció",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Marges de la pàgina",
|
||||
|
|
|
@ -514,6 +514,7 @@
|
|||
"DE.Controllers.LeftMenu.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.<br>Opravdu chcete pokračovat?",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsPdf": "Vašich {0} bude převedeno do editovatelného formátu. Tato operace může chvíli trvat. Výsledný dokument bude optimalizován a umožní editaci textu. Nemusí vypadat totožně jako původní {0}, zvláště pokud původní soubor obsahoval velké množství grafiky. ",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Uložením v tomto formátu může být ztracena část formátování dokumentu.<br>Opravdu chcete pokračovat?",
|
||||
"DE.Controllers.LeftMenu.warnReplaceString": "{0} je neplatný speciální znak pro nahrazení.",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Načítání změn…",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Načítání změn",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Překročen časový limit pro provedení převodu.",
|
||||
|
@ -918,17 +919,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Symboly",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formuláře",
|
||||
"DE.Controllers.Toolbar.textWarning": "Varování",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Šipkové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Duté kulaté odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Hvězdičkové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Víceúrovňové číslované odrážky",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Víceúrovňové symbolové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Víceúrovňové různé číslované odrážky",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Čárka",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Šipka vlevo-vpravo nad",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Šipka vlevo nad",
|
||||
|
@ -1531,14 +1521,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Obnovit obsah",
|
||||
"DE.Views.DocumentHolder.textWrap": "Obtékání textu",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Tento prvek je právě upravován jiným uživatelem.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Šipkové odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Zatržítkové odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Vyplněné kulaté odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Plné čtvercové odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Duté kulaté odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Hvězdičkové odrážky",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Přidat do slovníku",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Přidat spodní ohraničení",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Přidat zlomkovou čáru",
|
||||
|
@ -1681,7 +1663,7 @@
|
|||
"DE.Views.FileMenu.btnCloseMenuCaption": "Zavřít nabídku",
|
||||
"DE.Views.FileMenu.btnCreateNewCaption": "Vytvořit nový",
|
||||
"DE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako…",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Konec",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Zavřít",
|
||||
"DE.Views.FileMenu.btnFileOpenCaption": "Otevřít...",
|
||||
"DE.Views.FileMenu.btnHelpCaption": "Nápověda…",
|
||||
"DE.Views.FileMenu.btnHistoryCaption": "Historie verzí",
|
||||
|
@ -2771,7 +2753,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Řádkování v odstavci",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Korespondence",
|
||||
"DE.Views.Toolbar.tipMarkers": "Odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Šipkové odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Duté kulaté odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Víceúrovňové číslované odrážky",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Seznam s více úrovněmi",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Víceúrovňové symbolové odrážky",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Víceúrovňové různé číslované odrážky",
|
||||
"DE.Views.Toolbar.tipNumbers": "Číslování",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Vložit rozdělení stránky nebo sekce",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Okraje stránky",
|
||||
|
|
|
@ -916,17 +916,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Symbole",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formulare",
|
||||
"DE.Controllers.Toolbar.textWarning": "Achtung",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Aufzählungszeichen",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Nummerierte Liste mit mehreren Ebenen",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Aufzählungsliste mit mehreren Ebenen",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Kombinierte Liste mit mehreren Ebenen",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Akut",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Pfeil nach rechts und links oben",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Pfeil nach links oben",
|
||||
|
@ -1527,14 +1516,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Das Inhaltsverzeichnis aktualisieren",
|
||||
"DE.Views.DocumentHolder.textWrap": "Textumbruch",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Häkchenaufzählungszeichen",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Aufzählungszeichen",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Leere runde Aufzählungszeichen",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Sternförmige Aufzählungszeichen",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Zum Wörterbuch hinzufügen",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Unteren Rahmen hinzufügen",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Bruchstrich hinzufügen",
|
||||
|
@ -2765,7 +2746,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Zeilenabstand",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Serienbrief",
|
||||
"DE.Views.Toolbar.tipMarkers": "Aufzählung",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Aufzählungszeichen",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Nummerierte Liste mit mehreren Ebenen",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Liste mit mehreren Ebenen",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Aufzählungsliste mit mehreren Ebenen",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Kombinierte Liste mit mehreren Ebenen",
|
||||
"DE.Views.Toolbar.tipNumbers": "Nummerierung",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Seiten- oder Abschnittsumbruch einfügen",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Seitenränder",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Σύμβολα",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Φόρμες",
|
||||
"DE.Controllers.Toolbar.textWarning": "Προειδοποίηση",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Κουκίδες βέλη",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Κουκίδες παύλας",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Κουκίδες αστέρια",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Κουκίδες αριθμημένες πολυεπίπεδες",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Κουκίδες συμβόλων πολυεπίπεδες",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Κουκίδες πολλαπλώς αριθμημένες πολυεπίπεδες",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Οξεία",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Από πάνω βέλος δεξιά-αριστερά",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Από πάνω βέλος προς αριστερά",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Ενημέρωση πίνακα περιεχομένων",
|
||||
"DE.Views.DocumentHolder.textWrap": "Τεχνοτροπία Αναδίπλωσης",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Αυτό το στοιχείο επεξεργάζεται αυτήν τη στιγμή από άλλο χρήστη.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Κουκίδες βέλη",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Κουκίδες παύλας",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Κουκίδες αστέρια",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Προσθήκη στο Λεξικό",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Προσθήκη κάτω περιγράμματος",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Προσθήκη γραμμής κλάσματος",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Διάστιχο παραγράφου",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Συγχώνευση αλληλογραφίας",
|
||||
"DE.Views.Toolbar.tipMarkers": "Κουκκίδες",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Κουκίδες βέλη",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Κουκίδες παύλας",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Κουκίδες αστέρια",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Κουκίδες αριθμημένες πολυεπίπεδες",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Πολυεπίπεδη λίστα",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Κουκίδες συμβόλων πολυεπίπεδες",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Κουκίδες πολλαπλώς αριθμημένες πολυεπίπεδες",
|
||||
"DE.Views.Toolbar.tipNumbers": "Αρίθμηση",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Εισαγωγή αλλαγής σελίδας ή τμήματος",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Περιθώρια σελίδας",
|
||||
|
|
|
@ -517,6 +517,7 @@
|
|||
"DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsPdf": "Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.<br>Are you sure you want to continue?",
|
||||
"DE.Controllers.LeftMenu.warnReplaceString": "{0} is not a valid special character for the replacement field.",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Loading the changes...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Loading the Changes",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
|
||||
|
@ -923,17 +924,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Symbols",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Forms",
|
||||
"DE.Controllers.Toolbar.textWarning": "Warning",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Arrow bullets",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Checkmark bullets",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Dash bullets",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Filled round bullets",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Filled square bullets",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Hollow round bullets",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Star bullets",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Multi-level numbered bullets",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Multi-level symbols bullets",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Multi-level various numbered bullets",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Acute",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Right-left arrow above",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards arrow above",
|
||||
|
@ -1536,14 +1526,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Update table of contents",
|
||||
"DE.Views.DocumentHolder.textWrap": "Wrapping Style",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Arrow bullets",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Checkmark bullets",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Dash bullets",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Filled rhombus bullets",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Filled round bullets",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Filled square bullets",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Hollow round bullets",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Star bullets",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Add to Dictionary",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar",
|
||||
|
@ -1686,7 +1668,7 @@
|
|||
"DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
|
||||
"DE.Views.FileMenu.btnCreateNewCaption": "Create New",
|
||||
"DE.Views.FileMenu.btnDownloadCaption": "Download as...",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Exit",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Close",
|
||||
"DE.Views.FileMenu.btnFileOpenCaption": "Open...",
|
||||
"DE.Views.FileMenu.btnHelpCaption": "Help...",
|
||||
"DE.Views.FileMenu.btnHistoryCaption": "Version History",
|
||||
|
@ -2785,7 +2767,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Paragraph line spacing",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Mail merge",
|
||||
"DE.Views.Toolbar.tipMarkers": "Bullets",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Arrow bullets",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Checkmark bullets",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Dash bullets",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Filled round bullets",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Filled square bullets",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Hollow round bullets",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Star bullets",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Multi-level numbered bullets",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Multilevel list",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Multi-level symbols bullets",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Multi-level various numbered bullets",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numbering",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Insert page or section break",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Page margins",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Símbolos",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formularios",
|
||||
"DE.Controllers.Toolbar.textWarning": "Aviso",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Viñetas de flecha",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Viñetas guión",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Rombos rellenos",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Viñetas redondas huecas",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Viñetas de estrella",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Acento agudo",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Flecha derecha-izquierda superior",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Flecha superior hacia izquierda",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Actualice la tabla de contenidos",
|
||||
"DE.Views.DocumentHolder.textWrap": "Ajuste de texto",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Viñetas de flecha",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos rellenos",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas rellenas",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cuadradas rellenas",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas huecas",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrella",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Agregar al diccionario",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Agregar borde inferior",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Agregar barra de fracción",
|
||||
|
@ -1681,7 +1662,7 @@
|
|||
"DE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú",
|
||||
"DE.Views.FileMenu.btnCreateNewCaption": "Crear nuevo",
|
||||
"DE.Views.FileMenu.btnDownloadCaption": "Descargar como...",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Salir",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Cerrar",
|
||||
"DE.Views.FileMenu.btnFileOpenCaption": "Abrir...",
|
||||
"DE.Views.FileMenu.btnHelpCaption": "Ayuda...",
|
||||
"DE.Views.FileMenu.btnHistoryCaption": "Historial de las Versiones",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Espaciado de línea de párrafo",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Combinación de Correspondencia",
|
||||
"DE.Views.Toolbar.tipMarkers": "Viñetas",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Viñetas guión",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Rombos rellenos",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas huecas",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Viñetas de estrella",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Esquema",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numeración",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Insertar salto de página o de sección",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Márgenes de Página",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Symboles",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formulaires",
|
||||
"DE.Controllers.Toolbar.textWarning": "Avertissement",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Puces fléchées",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Puces coches",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Tirets",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Losanges remplis",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Puces arrondies remplies",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Puces carrées remplies",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Puces rondes vides",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Puces en étoile",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Puces numérotées à plusieurs niveaux",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Puces de symboles à plusieurs niveaux",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Puces numérotées à plusieurs niveaux",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Aigu",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Flèche gauche-droite au-dessus",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Flèche vers la gauche au-dessus",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Actualiser la table des matières",
|
||||
"DE.Views.DocumentHolder.textWrap": "Style d'habillage",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Cet élément est en cours d'édition par un autre utilisateur.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Puces fléchées",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Puces coches",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Tirets",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Losanges remplis",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Puces arrondies remplies",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Puces carrées remplies",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Puces rondes vides",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Puces en étoile",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Ajouter au dictionnaire",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Ajouter bordure inférieure",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Ajouter barre de fraction",
|
||||
|
@ -2137,7 +2118,7 @@
|
|||
"DE.Views.Navigation.txtEmpty": "Aucune entrée de table des matières trouvée.<br>L'application d'un style de titre sur une sélection de texte permettra l'affichage dans la table des matières. ",
|
||||
"DE.Views.Navigation.txtEmptyItem": "En-tête vide",
|
||||
"DE.Views.Navigation.txtExpand": "Développer tout",
|
||||
"DE.Views.Navigation.txtExpandToLevel": "Décomprimer jusqu'au niveau",
|
||||
"DE.Views.Navigation.txtExpandToLevel": "Développer jusqu'au niveau",
|
||||
"DE.Views.Navigation.txtHeadingAfter": "Nouvel en-tête après",
|
||||
"DE.Views.Navigation.txtHeadingBefore": "Nouvel en-tête avant",
|
||||
"DE.Views.Navigation.txtNewHeading": "Nouveau sous-titre",
|
||||
|
@ -2725,7 +2706,7 @@
|
|||
"DE.Views.Toolbar.textTabLinks": "Références",
|
||||
"DE.Views.Toolbar.textTabProtect": "Protection",
|
||||
"DE.Views.Toolbar.textTabReview": "Révision",
|
||||
"DE.Views.Toolbar.textTabView": "Afficher",
|
||||
"DE.Views.Toolbar.textTabView": "Affichage",
|
||||
"DE.Views.Toolbar.textTitleError": "Erreur",
|
||||
"DE.Views.Toolbar.textToCurrent": "À la position actuelle",
|
||||
"DE.Views.Toolbar.textTop": "En haut: ",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Interligne du paragraphe",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Fusion et publipostage",
|
||||
"DE.Views.Toolbar.tipMarkers": "Puces",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Puces fléchées",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Puces coches",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Tirets",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Losanges remplis",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Puces arrondies remplies",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Puces carrées remplies",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Puces rondes vides",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Puces en étoile",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Puces numérotées à plusieurs niveaux",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Liste multiniveau",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Puces de symboles à plusieurs niveaux",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Puces numérotées à plusieurs niveaux",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numérotation",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Insérer un saut de page ou de section",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Marges de la page",
|
||||
|
|
|
@ -916,17 +916,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Símbolos",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formularios",
|
||||
"DE.Controllers.Toolbar.textWarning": "Aviso",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Botóns das frechas",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Viñetas guión",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Rombos recheos",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Viñetas redondas recheas",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Viñetas redondas ocas",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Viñetas de estrela",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Agudo",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Frecha superior dereita e esquerda",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Frecha superior esquerda",
|
||||
|
@ -1527,14 +1516,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Actualizar a táboa de contido",
|
||||
"DE.Views.DocumentHolder.textWrap": "Axuste do texto",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Este elemento está sendo actualmente editado por outro usuario.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Botóns das frechas",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos recheos",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas recheas",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cadradas recheas",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas ocas",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrela",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Engadir ao Dicionario",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Engadir bordo inferior",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Engadir barra de fracción",
|
||||
|
@ -2765,7 +2746,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Espazo da liña do parágrafo",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Combinación da Correspondencia",
|
||||
"DE.Views.Toolbar.tipMarkers": "Viñetas",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Viñetas guión",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Rombos recheos",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas recheas",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas ocas",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Viñetas de estrela",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Contorno",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numeración",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Inserir páxina ou salto de sección",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Marxes da páxina",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Szimbólumok",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Űrlapok",
|
||||
"DE.Controllers.Toolbar.textWarning": "Figyelmeztetés",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Csillag felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Többszintű számozott felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Többszintű szimbólum felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Többszintű különféle számozott felsorolásjelek",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Akut",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Jobbra-balra nyíl fent",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Balra mutató nyíl fent",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Tartalomjegyzék frissítése",
|
||||
"DE.Views.DocumentHolder.textWrap": "Tördelés stílus",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Ezt az elemet jelenleg egy másik felhasználó szerkeszti.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Nyíl felsorolásjelek",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Kötőjel felsorolásjelek",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Tömör kör felsorolásjelek",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Tömör szögletes felsorolásjelek",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Üreges kör felsorolásjelek",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Csillag felsorolásjelek",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Hozzáadás a szótárhoz",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Alsó szegély hozzáadása",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Törtjel hozzáadása",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Bekezdés sortávolság",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "E-mail összevonás",
|
||||
"DE.Views.Toolbar.tipMarkers": "Felsorolás",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Csillag felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Többszintű számozott felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Többszintű lista",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Többszintű szimbólum felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Többszintű különféle számozott felsorolásjelek",
|
||||
"DE.Views.Toolbar.tipNumbers": "Számozás",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Oldal vagy szakasztörés beszúrása",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Oldal margók",
|
||||
|
|
|
@ -916,17 +916,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Simboli",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Forme",
|
||||
"DE.Controllers.Toolbar.textWarning": "Avviso",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Punti elenco a freccia",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Punti elenco a trattino",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Punti elenco a stella",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Elenco numerato a livelli multipli",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Simboli puntati a livelli multipli",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Punti numerati a livelli multipli",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Acuto",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Freccia Destra-Sinistra in alto",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Freccia verso sinistra sopra",
|
||||
|
@ -1527,14 +1516,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Aggiorna sommario",
|
||||
"DE.Views.DocumentHolder.textWrap": "Stile di disposizione testo",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Questo elemento è attualmente in fase di modifica da un altro utente.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Punti elenco a freccia",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Punti elenco a segno di spunta",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Punti elenco a trattino",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Punti elenco a rombo pieno",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Punti elenco rotondi pieni",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Punti elenco quadrati pieni",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Punti elenco rotondi vuoti",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Punti elenco a stella",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Aggiungi al Dizionario",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Aggiungi bordo inferiore",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Aggiungi barra di frazione",
|
||||
|
@ -2765,7 +2746,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Interlinea paragrafo",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Stampa unione",
|
||||
"DE.Views.Toolbar.tipMarkers": "Elenchi puntati",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Punti elenco a freccia",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Punti elenco a trattino",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Punti elenco a stella",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Elenco numerato a livelli multipli",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Struttura",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Simboli puntati a livelli multipli",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Punti numerati a livelli multipli",
|
||||
"DE.Views.Toolbar.tipNumbers": "Elenchi numerati",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Inserisci interruzione di pagina o di sezione",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Margini della pagina",
|
||||
|
|
|
@ -917,13 +917,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "記号",
|
||||
"DE.Controllers.Toolbar.textTabForms": "フォーム",
|
||||
"DE.Controllers.Toolbar.textWarning": "警告",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "箇条書き(矢印)",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "箇条書き(チェックマーク)",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "箇条書き(ひし形)",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "箇条書き(丸)",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "箇条書き(四角)",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "箇条書き(円)",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "箇条書き(星)",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "アキュート",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "左右双方向矢印 (上)",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "左に矢印 (上)",
|
||||
|
@ -1525,13 +1518,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "目次を更新する",
|
||||
"DE.Views.DocumentHolder.textWrap": "折り返しの種類と配置",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "今、この要素が他のユーザによって編集されています。",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "箇条書き(矢印)",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "箇条書き(チェックマーク)",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "箇条書き(ひし形)",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "箇条書き(丸)",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "箇条書き(四角)",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "箇条書き(円)",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "箇条書き(星)",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "辞書に追加",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "下罫線の追加",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "分数罫の追加",
|
||||
|
@ -2758,6 +2744,13 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "段落の行間",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "差し込み印刷",
|
||||
"DE.Views.Toolbar.tipMarkers": "箇条書き",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "箇条書き(矢印)",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "箇条書き(チェックマーク)",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "箇条書き(ひし形)",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "箇条書き(丸)",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "箇条書き(四角)",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "箇条書き(円)",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "箇条書き(星)",
|
||||
"DE.Views.Toolbar.tipMultilevels": "複数レベルのリスト",
|
||||
"DE.Views.Toolbar.tipNumbers": "番号設定",
|
||||
"DE.Views.Toolbar.tipPageBreak": "ページの挿入またはセクション区切り",
|
||||
|
|
|
@ -915,9 +915,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Symbolen",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formulieren",
|
||||
"DE.Controllers.Toolbar.textWarning": "Waarschuwing",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Pijltjes",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Vinkjes",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Streepjes",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Aigu",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Pijl van rechts naar links boven",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Pijl links boven",
|
||||
|
@ -1519,9 +1516,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Inhoudsopgave verversen",
|
||||
"DE.Views.DocumentHolder.textWrap": "Terugloopstijl",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Dit element wordt op dit moment bewerkt door een andere gebruiker.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Pijltjes",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Vinkjes",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Streepjes",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Toevoegen aan woordenboek",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Onderrand toevoegen",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Deelteken toevoegen",
|
||||
|
@ -2751,6 +2745,9 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Regelafstand alinea",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Afdruk samenvoegen",
|
||||
"DE.Views.Toolbar.tipMarkers": "Opsommingstekens",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Pijltjes",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Vinkjes",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Streepjes",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Lijst met meerdere niveaus",
|
||||
"DE.Views.Toolbar.tipNumbers": "Nummering",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Pagina- of sectie-einde invoegen",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Símbolos",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formulários",
|
||||
"DE.Controllers.Toolbar.textWarning": "Aviso",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Balas de flecha",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Marcas de verificação",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Marcadores de roteiro",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Vinhetas rômbicas cheias",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Balas redondas cheias",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Balas quadradas cheias",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Balas redondas ocas",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Balas de estrelas",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Marcadores numerados de vários níveis",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Marcadores de símbolos de vários níveis",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Várias balas numeradas de vários níveis",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Agudo",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Seta para direita-esquerda acima",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Seta adiante para cima",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Atualizar a tabela de conteúdo",
|
||||
"DE.Views.DocumentHolder.textWrap": "Estilo da quebra automática",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Este elemento está sendo atualmente editado por outro usuário.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Balas de flecha",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Marcas de verificação",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Marcadores de roteiro",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Vinhetas rômbicas cheias",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Balas redondas cheias",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Balas quadradas cheias",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Balas redondas ocas",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Balas de estrelas",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Incluir no Dicionário",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Adicionar borda inferior",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Adicionar barra de fração",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Espaçamento entre linhas do parágrafo",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Select Recepients",
|
||||
"DE.Views.Toolbar.tipMarkers": "Marcadores",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Balas de flecha",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Marcas de verificação",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Marcadores de roteiro",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Vinhetas rômbicas cheias",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Balas redondas cheias",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Balas quadradas cheias",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Balas redondas ocas",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Balas de estrelas",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Marcadores numerados de vários níveis",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Contorno",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Marcadores de símbolos de vários níveis",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Várias balas numeradas de vários níveis",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numeração",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Inserir página ou quebra de seção",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Margens da página",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Simboluri",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formulare",
|
||||
"DE.Controllers.Toolbar.textWarning": "Avertisment",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Listă cu marcatori săgeată",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Listă cu marcatori cu o liniuță",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Listă cu marcatori romb umplut",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Listă cu marcatori cerc umplut",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Listă cu marcatori pătrat umplut",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Listă cu marcatori cerc gol ",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Listă cu marcatori stele",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Listă multinivel numerotată",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Listă multinivel cu marcatori",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Listă multinivel cu numerotare diversă ",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Ascuțit",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Săgeată deasupra de la dreapta la stînga",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Săgeată deasupra spre stânga ",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Actualizare cuprins",
|
||||
"DE.Views.DocumentHolder.textWrap": "Stil de încadrare",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "La moment acest obiect este editat de către un alt utilizator.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Listă cu marcatori săgeată",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Listă cu marcatori cu o liniuță",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Listă cu marcatori romb umplut",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Listă cu marcatori cerc umplut",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Listă cu marcatori pătrat umplut",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Listă cu marcatori cerc gol ",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Listă cu marcatori stele",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Adăugare la dicționar",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Adăugare bordură de jos",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Adăugare linia de fracție",
|
||||
|
@ -1681,7 +1662,7 @@
|
|||
"DE.Views.FileMenu.btnCloseMenuCaption": "Închidere meniu",
|
||||
"DE.Views.FileMenu.btnCreateNewCaption": "Crearea unui document nou",
|
||||
"DE.Views.FileMenu.btnDownloadCaption": "Descărcare ca...",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Ieșire",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Închidere",
|
||||
"DE.Views.FileMenu.btnFileOpenCaption": "Deschidere...",
|
||||
"DE.Views.FileMenu.btnHelpCaption": "Asistență...",
|
||||
"DE.Views.FileMenu.btnHistoryCaption": "Istoricul versiune",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Spațiere interlinie paragraf ",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Îmbinare corespondență",
|
||||
"DE.Views.Toolbar.tipMarkers": "Marcatori",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Listă cu marcatori săgeată",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Listă cu marcatori cu o liniuță",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Listă cu marcatori romb umplut",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Listă cu marcatori cerc umplut",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Listă cu marcatori pătrat umplut",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Listă cu marcatori cerc gol ",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Listă cu marcatori stele",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Listă multinivel numerotată",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Listă multinivel",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Listă multinivel cu marcatori",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Listă multinivel cu numerotare diversă ",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numerotare",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Inserare sfârșit de pagină sau secțiune",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Margini de pagină",
|
||||
|
|
|
@ -515,6 +515,7 @@
|
|||
"DE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, вcя функциональность, кроме текста, будет потеряна.<br>Вы действительно хотите продолжить?",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} будет сконвертирован в редактируемый формат. Это может занять некоторое время. Получившийся в результате документ будет оптимизирован для редактирования текста, поэтому он может отличаться от исходного {0}, особенно если исходный файл содержит много графических элементов.",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Если вы продолжите сохранение в этот формат, часть форматирования может быть потеряна.<br>Вы действительно хотите продолжить?",
|
||||
"DE.Controllers.LeftMenu.warnReplaceString": "{0} нельзя использовать как специальный символ в поле замены.",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Загрузка изменений...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Загрузка изменений",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
|
||||
|
@ -919,17 +920,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Символы",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Формы",
|
||||
"DE.Controllers.Toolbar.textWarning": "Предупреждение",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Маркеры-стрелки",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Маркеры-галочки",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Маркеры-тире",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Пустые круглые маркеры",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Маркеры-звездочки",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Многоуровневые нумерованные маркеры",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Многоуровневые маркеры-сивволы",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Многоуровневые разные нумерованные маркеры",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Ударение",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрелка вправо-влево сверху",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрелка влево сверху",
|
||||
|
@ -1532,14 +1522,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Обновить оглавление",
|
||||
"DE.Views.DocumentHolder.textWrap": "Стиль обтекания",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Этот элемент редактируется другим пользователем.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрелки",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Маркеры-галочки",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Маркеры-тире",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Заполненные ромбовидные маркеры",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Заполненные круглые маркеры",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Заполненные квадратные маркеры",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Пустые круглые маркеры",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Маркеры-звездочки",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Добавить в словарь",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Добавить нижнюю границу",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Добавить дробную черту",
|
||||
|
@ -1682,7 +1664,7 @@
|
|||
"DE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню",
|
||||
"DE.Views.FileMenu.btnCreateNewCaption": "Создать новый",
|
||||
"DE.Views.FileMenu.btnDownloadCaption": "Скачать как...",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Выйти",
|
||||
"DE.Views.FileMenu.btnExitCaption": "Закрыть",
|
||||
"DE.Views.FileMenu.btnFileOpenCaption": "Открыть...",
|
||||
"DE.Views.FileMenu.btnHelpCaption": "Справка...",
|
||||
"DE.Views.FileMenu.btnHistoryCaption": "История версий",
|
||||
|
@ -2772,7 +2754,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Междустрочный интервал в абзацах",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Слияние",
|
||||
"DE.Views.Toolbar.tipMarkers": "Маркированный список",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрелки",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Маркеры-галочки",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Маркеры-тире",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Пустые круглые маркеры",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Маркеры-звездочки",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Многоуровневые нумерованные маркеры",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Многоуровневый список",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Многоуровневые маркеры-сивволы",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Многоуровневые разные нумерованные маркеры",
|
||||
"DE.Views.Toolbar.tipNumbers": "Нумерованный список",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Вставить разрыв страницы или раздела",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Поля страницы",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Symboly",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formuláre",
|
||||
"DE.Controllers.Toolbar.textWarning": "Upozornenie",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Šípkové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Začiarknuteľné odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Kosoštvorcové odrážky s výplňou",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Vyplnené okrúhle odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Vyplnené štvorcové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Prázdne okrúhle odrážky",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Hviezdičkové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Viacúrovňové číslované odrážky",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Viacúrovňové symbolové odrážky",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Viacúrovňové rôzne číslované odrážky",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Dĺžeň",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Pravá-ľavá šípka nad",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Ľavá šípka nad",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Znovu načítať obsah",
|
||||
"DE.Views.DocumentHolder.textWrap": "Obtekanie textu",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Túto časť momentálne upravuje iný používateľ.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Šípkové odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Začiarknuteľné odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Kosoštvorcové odrážky s výplňou",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Vyplnené okrúhle odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Vyplnené štvorcové odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Prázdne okrúhle odrážky",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Hviezdičkové odrážky",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Pridať do slovníka",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Pridať spodné orámovanie",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Pridať lištu zlomkov",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Riadkovanie odstavcov",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Zlúčenie pošty",
|
||||
"DE.Views.Toolbar.tipMarkers": "Odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Šípkové odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Začiarknuteľné odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Kosoštvorcové odrážky s výplňou",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Vyplnené okrúhle odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Vyplnené štvorcové odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Prázdne okrúhle odrážky",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Hviezdičkové odrážky",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Viacúrovňové číslované odrážky",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Viacúrovňový zoznam",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Viacúrovňové symbolové odrážky",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Viacúrovňové rôzne číslované odrážky",
|
||||
"DE.Views.Toolbar.tipNumbers": "Číslovanie",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Vložiť zlom strany alebo sekcie",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Okraje stránky",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Symboler",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formulär",
|
||||
"DE.Controllers.Toolbar.textWarning": "Varning",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Pil punkter",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Bock punkt",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Sträck punkter",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Fyllda runda punkter",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Ofylld rund punkt",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Stjärn punkter",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Numrerade punkter på flera nivåer",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Symbol punkter på flera nivåer",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Olika numrerade punkter på flera nivåer",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Akut",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Höger-vänster pil ovanför",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Vänsterpil ovan",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Uppdatera innehållsförteckningen",
|
||||
"DE.Views.DocumentHolder.textWrap": "Figursättning",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Detta element redigeras för närvarande av en annan användare.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Pil punkter",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Bock punkt",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Sträck punkter",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Fyllda romb punkter",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Fyllda runda punkter",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Fyllda kvadratiska punkter",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Ofylld runda punkter",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Stjärnpunkter",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Lägg till i ordlista",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Lägg till nedre linje",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Lägg fraktion bar",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Styckets radavstånd",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Slå ihop e-post",
|
||||
"DE.Views.Toolbar.tipMarkers": "Punktlista",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Pil punkter",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Bock punkt",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Sträck punkter",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Fyllda runda punkter",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Ofyllda runda punkter",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Stjärn punkter",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Numrerade punkter på flera nivåer",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Flernivålista",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Symbol punkter på flera nivåer",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Olika numrerade punkter på flera nivåer",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numrering",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Infoga sida eller sektionsbrytning",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Sidmarginal",
|
||||
|
|
|
@ -915,17 +915,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Simgeler",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Formlar",
|
||||
"DE.Controllers.Toolbar.textWarning": "Dikkat",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Ok işaretleri",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Onay işaretleri",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Çizgi işaretleri",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Dolu kare işaretler",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "İçi boş daire işaretler",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Yıldız işaretleri",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Çok düzeyli numaralı işaretler",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Çok düzeyli sembol işaretleri",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Çok düzeyli çeşitli numaralı işaretler",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Akut",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Right-Left Arrow Above",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards Arrow Above",
|
||||
|
@ -1526,14 +1515,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "İçindekiler tablosunu yenile",
|
||||
"DE.Views.DocumentHolder.textWrap": "Kaydırma Stili",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Bu element şu an başka bir kullanıcı tarafından düzenleniyor.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Ok işaretleri",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Onay işaretleri",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Çizgi işaretleri",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Dolu yuvarlak işaretler",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Dolu kare işaretler",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "İçi boş daire işaretler",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Yıldız işaretleri",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Sözlüğe ekle",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Alt kenarlık ekle",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Kesir çubuğu ekle",
|
||||
|
@ -2764,7 +2745,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Paragraf satır aralığı",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Mail Merge",
|
||||
"DE.Views.Toolbar.tipMarkers": "Maddeler",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Ok işaretleri",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Onay işaretleri",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Çizgi işaretleri",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Dolu kare işaretler",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "İçi boş daire işaretler",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Yıldız işaretleri",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Çok düzeyli numaralı işaretler",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Çok düzeyli liste",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Çok düzeyli sembol işaretleri",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Çok düzeyli çeşitli numaralı işaretler",
|
||||
"DE.Views.Toolbar.tipNumbers": "Numaralandırma",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Sayfa yada Bölüm Kesmesi Ekle",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Sayfa kenar boşlukları",
|
||||
|
|
|
@ -916,17 +916,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "Символи",
|
||||
"DE.Controllers.Toolbar.textTabForms": "Форми",
|
||||
"DE.Controllers.Toolbar.textWarning": "Застереження",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "Маркери-стрілки",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "Маркери-галочки",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "Маркери-тире",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "Заповнені круглі маркери",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "Пусті круглі маркери",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "Маркери-зірочки",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "Багаторівневі нумеровані маркери",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "Багаторівневі маркери-символи",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "Багаторівневі різні нумеровані маркери",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "Гострий",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрілка праворуч вліво вище",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрілка вліво вгору",
|
||||
|
@ -1527,14 +1516,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "Оновити зміст",
|
||||
"DE.Views.DocumentHolder.textWrap": "Стиль упаковки",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "Цей елемент в даний час редагує інший користувач.",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "Маркери-стрілки",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "Маркери-галочки",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "Маркери-тире",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "Заповнені ромбоподібні маркери",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "Заповнені круглі маркери",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "Заповнені квадратні маркери",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "Пусті круглі маркери",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "Маркери-зірочки",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "Додати в словник",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "Додати нижню межу",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Додати фракційну панель",
|
||||
|
@ -2765,7 +2746,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "Розмітка міжрядкових інтервалів",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "Надіслати ел.поштою",
|
||||
"DE.Views.Toolbar.tipMarkers": "Кулі",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "Маркери-стрілки",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "Маркери-галочки",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "Маркери-тире",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "Заповнені круглі маркери",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "Пусті круглі маркери",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "Маркери-зірочки",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "Багаторівневі нумеровані маркери",
|
||||
"DE.Views.Toolbar.tipMultilevels": "Багаторівневий список",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "Багаторівневі маркери-символи",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "Багаторівневі різні нумеровані маркери",
|
||||
"DE.Views.Toolbar.tipNumbers": "Нумерація",
|
||||
"DE.Views.Toolbar.tipPageBreak": "Вставити розрив сторінки або розділу",
|
||||
"DE.Views.Toolbar.tipPageMargins": "Поля сторінки",
|
||||
|
|
|
@ -918,17 +918,6 @@
|
|||
"DE.Controllers.Toolbar.textSymbols": "符号",
|
||||
"DE.Controllers.Toolbar.textTabForms": "表单",
|
||||
"DE.Controllers.Toolbar.textWarning": "警告",
|
||||
"DE.Controllers.Toolbar.tipMarkersArrow": "箭头项目符号",
|
||||
"DE.Controllers.Toolbar.tipMarkersCheckmark": "选中标记项目符号",
|
||||
"DE.Controllers.Toolbar.tipMarkersDash": "划线项目符号",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRhombus": "实心菱形项目符号",
|
||||
"DE.Controllers.Toolbar.tipMarkersFRound": "实心圆形项目符号",
|
||||
"DE.Controllers.Toolbar.tipMarkersFSquare": "实心方形项目符号",
|
||||
"DE.Controllers.Toolbar.tipMarkersHRound": "空心圆形项目符号",
|
||||
"DE.Controllers.Toolbar.tipMarkersStar": "星形项目符号",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelNumbered": "多级编号",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelSymbols": "多级项目符号",
|
||||
"DE.Controllers.Toolbar.tipMultiLevelVarious": "多级各种编号",
|
||||
"DE.Controllers.Toolbar.txtAccent_Accent": "急性",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowD": "右上方的箭头在上方",
|
||||
"DE.Controllers.Toolbar.txtAccent_ArrowL": "向左箭头",
|
||||
|
@ -1531,14 +1520,6 @@
|
|||
"DE.Views.DocumentHolder.textUpdateTOC": "刷新目录",
|
||||
"DE.Views.DocumentHolder.textWrap": "包裹风格",
|
||||
"DE.Views.DocumentHolder.tipIsLocked": "此元素正在由其他用户编辑。",
|
||||
"DE.Views.DocumentHolder.tipMarkersArrow": "箭头项目符号",
|
||||
"DE.Views.DocumentHolder.tipMarkersCheckmark": "选中标记项目符号",
|
||||
"DE.Views.DocumentHolder.tipMarkersDash": "划线项目符号",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRhombus": "实心菱形项目符号",
|
||||
"DE.Views.DocumentHolder.tipMarkersFRound": "实心圆形项目符号",
|
||||
"DE.Views.DocumentHolder.tipMarkersFSquare": "实心方形项目符号",
|
||||
"DE.Views.DocumentHolder.tipMarkersHRound": "空心圆形项目符号",
|
||||
"DE.Views.DocumentHolder.tipMarkersStar": "星形项目符号",
|
||||
"DE.Views.DocumentHolder.toDictionaryText": "添加到词典",
|
||||
"DE.Views.DocumentHolder.txtAddBottom": "添加底部边框",
|
||||
"DE.Views.DocumentHolder.txtAddFractionBar": "添加分数栏",
|
||||
|
@ -1681,7 +1662,7 @@
|
|||
"DE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单",
|
||||
"DE.Views.FileMenu.btnCreateNewCaption": "新建",
|
||||
"DE.Views.FileMenu.btnDownloadCaption": "下载为...",
|
||||
"DE.Views.FileMenu.btnExitCaption": "退出",
|
||||
"DE.Views.FileMenu.btnExitCaption": "关闭",
|
||||
"DE.Views.FileMenu.btnFileOpenCaption": "打开...",
|
||||
"DE.Views.FileMenu.btnHelpCaption": "帮助",
|
||||
"DE.Views.FileMenu.btnHistoryCaption": "版本历史",
|
||||
|
@ -2771,7 +2752,18 @@
|
|||
"DE.Views.Toolbar.tipLineSpace": "段线间距",
|
||||
"DE.Views.Toolbar.tipMailRecepients": "邮件合并",
|
||||
"DE.Views.Toolbar.tipMarkers": "项目符号",
|
||||
"DE.Views.Toolbar.tipMarkersArrow": "箭头项目符号",
|
||||
"DE.Views.Toolbar.tipMarkersCheckmark": "选中标记项目符号",
|
||||
"DE.Views.Toolbar.tipMarkersDash": "划线项目符号",
|
||||
"DE.Views.Toolbar.tipMarkersFRhombus": "实心菱形项目符号",
|
||||
"DE.Views.Toolbar.tipMarkersFRound": "实心圆形项目符号",
|
||||
"DE.Views.Toolbar.tipMarkersFSquare": "实心方形项目符号",
|
||||
"DE.Views.Toolbar.tipMarkersHRound": "空心圆形项目符号",
|
||||
"DE.Views.Toolbar.tipMarkersStar": "星形项目符号",
|
||||
"DE.Views.Toolbar.tipMultiLevelNumbered": "多级编号",
|
||||
"DE.Views.Toolbar.tipMultilevels": "多级列表",
|
||||
"DE.Views.Toolbar.tipMultiLevelSymbols": "多级项目符号",
|
||||
"DE.Views.Toolbar.tipMultiLevelVarious": "多级各种编号",
|
||||
"DE.Views.Toolbar.tipNumbers": "编号",
|
||||
"DE.Views.Toolbar.tipPageBreak": "插入页面或分节符",
|
||||
"DE.Views.Toolbar.tipPageMargins": "页边距",
|
||||
|
|
|
@ -389,6 +389,7 @@
|
|||
"errorUserDrop": "K súboru momentálne nie je možné získať prístup.",
|
||||
"errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený",
|
||||
"errorViewerDisconnect": "Spojenie je stratené. Dokument si stále môžete prezerať,<br>ale nebudete si ho môcť stiahnuť ani vytlačiť, kým sa neobnoví pripojenie a stránka sa znova nenačíta.",
|
||||
"notcriticalErrorTitle": "Upozornenie",
|
||||
"openErrorText": "Pri otváraní súboru sa vyskytla chyba",
|
||||
"saveErrorText": "Pri ukladaní súboru sa vyskytla chyba",
|
||||
"scriptLoadError": "Pripojenie je príliš pomalé, niektoré komponenty sa nepodarilo načítať. Prosím, načítajte stránku znova.",
|
||||
|
@ -398,8 +399,7 @@
|
|||
"unknownErrorText": "Neznáma chyba.",
|
||||
"uploadImageExtMessage": "Neznámy formát obrázka.",
|
||||
"uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.",
|
||||
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.",
|
||||
"notcriticalErrorTitle": "Warning"
|
||||
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Načítavanie dát...",
|
||||
|
@ -590,6 +590,7 @@
|
|||
"textMargins": "Okraje",
|
||||
"textMarginsH": "Horné a spodné okraje sú pre danú výšku stránky príliš vysoké",
|
||||
"textMarginsW": "Ľavé a pravé okraje sú príliš široké pre danú šírku stránky",
|
||||
"textNoCharacters": "Formátovacie značky",
|
||||
"textNoTextFound": "Text nebol nájdený",
|
||||
"textOk": "OK",
|
||||
"textOpenFile": "Zadajte heslo na otvorenie súboru",
|
||||
|
@ -648,8 +649,7 @@
|
|||
"txtScheme6": "Hala",
|
||||
"txtScheme7": "Spravodlivosť",
|
||||
"txtScheme8": "Tok",
|
||||
"txtScheme9": "Zlieváreň",
|
||||
"textNoCharacters": "Nonprinting Characters"
|
||||
"txtScheme9": "Zlieváreň"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.",
|
||||
|
|
|
@ -9,9 +9,6 @@ class AddTableController extends Component {
|
|||
constructor (props) {
|
||||
super(props);
|
||||
this.onStyleClick = this.onStyleClick.bind(this);
|
||||
|
||||
const api = Common.EditorApi.get();
|
||||
api.asc_GetDefaultTableStyles();
|
||||
}
|
||||
|
||||
closeModal () {
|
||||
|
|
|
@ -11,6 +11,7 @@ class DocumentSettingsController extends Component {
|
|||
this.getMargins = this.getMargins.bind(this);
|
||||
this.applyMargins = this.applyMargins.bind(this);
|
||||
this.onFormatChange = this.onFormatChange.bind(this);
|
||||
this.onColorSchemeChange = this.onColorSchemeChange.bind(this);
|
||||
}
|
||||
|
||||
onPageOrientation (value){
|
||||
|
@ -107,6 +108,7 @@ class DocumentSettingsController extends Component {
|
|||
onColorSchemeChange(newScheme) {
|
||||
const api = Common.EditorApi.get();
|
||||
api.asc_ChangeColorSchemeByIdx(+newScheme);
|
||||
this.props.storeTableSettings.setStyles([], 'default');
|
||||
}
|
||||
|
||||
render () {
|
||||
|
@ -122,4 +124,4 @@ class DocumentSettingsController extends Component {
|
|||
}
|
||||
}
|
||||
|
||||
export default inject("storeDocumentSettings")(observer(withTranslation()(DocumentSettingsController)));
|
||||
export default inject("storeDocumentSettings", 'storeTableSettings')(observer(withTranslation()(DocumentSettingsController)));
|
|
@ -14,10 +14,12 @@ export class storeTableSettings {
|
|||
updateCellBorderColor: action,
|
||||
setAutoColor: action,
|
||||
colorAuto: observable,
|
||||
arrayStylesDefault: observable,
|
||||
});
|
||||
}
|
||||
|
||||
arrayStyles = [];
|
||||
arrayStylesDefault = [];
|
||||
colorAuto = 'auto';
|
||||
|
||||
setAutoColor(value) {
|
||||
|
@ -28,7 +30,7 @@ export class storeTableSettings {
|
|||
this.arrayStyles = [];
|
||||
}
|
||||
|
||||
setStyles (arrStyles) {
|
||||
setStyles (arrStyles, typeStyles) {
|
||||
let styles = [];
|
||||
for (let template of arrStyles) {
|
||||
styles.push({
|
||||
|
@ -36,6 +38,10 @@ export class storeTableSettings {
|
|||
templateId : template.asc_getId()
|
||||
});
|
||||
}
|
||||
|
||||
if(typeStyles === 'default') {
|
||||
return this.arrayStylesDefault = styles;
|
||||
}
|
||||
return this.arrayStyles = styles;
|
||||
}
|
||||
|
||||
|
|
|
@ -184,9 +184,12 @@ const AddTabs = inject("storeFocusObjects", "storeTableSettings")(observer(({sto
|
|||
component: <AddLinkController noNavbar={true}/>
|
||||
});
|
||||
}
|
||||
|
||||
const onGetTableStylesPreviews = () => {
|
||||
const api = Common.EditorApi.get();
|
||||
setTimeout(() => storeTableSettings.setStyles(api.asc_getTableStylesPreviews(true)), 1);
|
||||
if(storeTableSettings.arrayStylesDefault.length == 0) {
|
||||
const api = Common.EditorApi.get();
|
||||
setTimeout(() => storeTableSettings.setStyles(api.asc_getTableStylesPreviews(true), 'default'), 1);
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
|
@ -6,7 +6,7 @@ import {Device} from '../../../../../common/mobile/utils/device';
|
|||
|
||||
const AddTable = props => {
|
||||
const storeTableSettings = props.storeTableSettings;
|
||||
const styles = storeTableSettings.arrayStyles;
|
||||
const styles = storeTableSettings.arrayStylesDefault;
|
||||
|
||||
return (
|
||||
<div className={'table-styles dataview'}>
|
||||
|
|
|
@ -511,11 +511,14 @@ const EditShape = props => {
|
|||
const wrapType = props.storeShapeSettings.getWrapType(shapeObject);
|
||||
|
||||
const shapeType = shapeObject.get_ShapeProperties().asc_getType();
|
||||
const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3'
|
||||
const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeObject.get_ShapeProperties().get_FromSmartArt()
|
||||
|| shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3'
|
||||
|| shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2'
|
||||
|| shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5'
|
||||
|| shapeType=='straightConnector1';
|
||||
|
||||
const isSmartArtInternal = shapeObject.get_ShapeProperties().get_FromSmartArtInternal();
|
||||
const isFromGroup = shapeObject.get_ShapeProperties().get_FromGroup();
|
||||
const inControl = api.asc_IsContentControl();
|
||||
const controlProps = (api && inControl) ? api.asc_GetContentControlProperties() : null;
|
||||
const lockType = controlProps ? controlProps.get_Lock() : Asc.c_oAscSdtLockType.Unlocked;
|
||||
|
@ -545,19 +548,21 @@ const EditShape = props => {
|
|||
onBorderColor: props.onBorderColor
|
||||
}}></ListItem>
|
||||
: null}
|
||||
<ListItem title={_t.textWrap} link='/edit-shape-wrap/' routeProps={{
|
||||
onWrapType: props.onWrapType,
|
||||
onShapeAlign: props.onShapeAlign,
|
||||
onMoveText: props.onMoveText,
|
||||
onOverlap: props.onOverlap,
|
||||
onWrapDistance: props.onWrapDistance
|
||||
}}></ListItem>
|
||||
{ !isFromGroup &&
|
||||
<ListItem title={_t.textWrap} link='/edit-shape-wrap/' routeProps={{
|
||||
onWrapType: props.onWrapType,
|
||||
onShapeAlign: props.onShapeAlign,
|
||||
onMoveText: props.onMoveText,
|
||||
onOverlap: props.onOverlap,
|
||||
onWrapDistance: props.onWrapDistance
|
||||
}}></ListItem>
|
||||
}
|
||||
{(!hideChangeType && !fixedSize) &&
|
||||
<ListItem title={_t.textReplace} link='/edit-shape-replace/' routeProps={{
|
||||
onReplace: props.onReplace
|
||||
}}></ListItem>
|
||||
}
|
||||
{wrapType !== 'inline' && <ListItem title={_t.textReorder} link='/edit-shape-reorder/' routeProps={{
|
||||
{ (wrapType !== 'inline' && !isSmartArtInternal) && <ListItem title={_t.textReorder} link='/edit-shape-reorder/' routeProps={{
|
||||
onReorder: props.onReorder
|
||||
}}></ListItem> }
|
||||
</List>
|
||||
|
|
|
@ -226,11 +226,9 @@ const PageStyleOptions = props => {
|
|||
isBandVer = tableLook.get_BandVer();
|
||||
}
|
||||
|
||||
const openIndicator = () => props.onGetTableStylesPreviews();
|
||||
|
||||
return (
|
||||
<Page>
|
||||
<Navbar title={_t.textOptions} backLink={_t.textBack} onBackClick={openIndicator}>
|
||||
<Navbar title={_t.textOptions} backLink={_t.textBack} onBackClick={props.onGetTableStylesPreviews}>
|
||||
{Device.phone &&
|
||||
<NavRight>
|
||||
<Link sheetClose='#edit-sheet'>
|
||||
|
|
|
@ -174,7 +174,7 @@ define([
|
|||
handler : function(result, value) {
|
||||
if (result == 'ok') {
|
||||
if (me.api) {
|
||||
me.addNewEffect(value.activeEffect, value.activeGroupValue, value.activeGroup, replace);
|
||||
me.addNewEffect(value.activeEffect, value.activeGroupValue, value.activeGroup, replace, undefined, !Common.Utils.InternalSettings.get("pe-animation-no-preview"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -187,10 +187,11 @@ define([
|
|||
this.addNewEffect(type, group, record.get('group'), false);
|
||||
},
|
||||
|
||||
addNewEffect: function (type, group, groupName, replace, parametr) {
|
||||
if (this._state.Effect == type && this._state.EffectGroup == group && replace) return;
|
||||
addNewEffect: function (type, group, groupName, replace, parametr, preview) {
|
||||
if (this._state.Effect == type && this._state.EffectGroup == group && replace)
|
||||
parametr = this._state.EffectOption;
|
||||
var parameter = this.view.setMenuParameters(type, groupName, parametr);
|
||||
this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace, !Common.Utils.InternalSettings.get("pe-animation-no-preview"));
|
||||
this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace, preview);
|
||||
},
|
||||
|
||||
onDurationChange: function(before,combo, record, e) {
|
||||
|
@ -205,7 +206,7 @@ define([
|
|||
if (!item) {
|
||||
var expr = new RegExp('^\\s*(\\d*(\\.|,)?\\d+)\\s*(' + me.view.txtSec + ')?\\s*$');
|
||||
if (!expr.exec(record.value)) {
|
||||
combo.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : 1);
|
||||
combo.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : '');
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
@ -446,7 +447,7 @@ define([
|
|||
if (this._state.noAnimationDuration)
|
||||
view.cmbDuration.setValue('');
|
||||
else
|
||||
view.cmbDuration.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : 1);
|
||||
view.cmbDuration.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : '');
|
||||
|
||||
value = this.AnimationProperties.asc_getDelay();
|
||||
if (Math.abs(this._state.Delay - value) > 0.001 ||
|
||||
|
|
|
@ -84,7 +84,9 @@ define([
|
|||
|
||||
this.bindViewEvents(this.statusbar, this.events);
|
||||
|
||||
$('#status-label-zoom').css('min-width', 80);
|
||||
var lblzoom = $('#status-label-zoom');
|
||||
lblzoom.css('min-width', 80);
|
||||
lblzoom.text(Common.Utils.String.format(this.zoomText, 100));
|
||||
|
||||
this.statusbar.btnZoomToPage.on('click', _.bind(this.onBtnZoomTo, this, 'topage'));
|
||||
this.statusbar.btnZoomToWidth.on('click', _.bind(this.onBtnZoomTo, this, 'towidth'));
|
||||
|
|
|
@ -354,7 +354,8 @@ define([
|
|||
addEvent(me.el, eventname, handleDocumentWheel);
|
||||
}
|
||||
|
||||
$(document).on('mousewheel', handleDocumentWheel);
|
||||
!Common.Utils.isChrome ? $(document).on('mousewheel', handleDocumentWheel) :
|
||||
document.addEventListener('mousewheel', handleDocumentWheel, {passive: false});
|
||||
$(document).on('keydown', handleDocumentKeyDown);
|
||||
$(window).on('resize', onDocumentHolderResize);
|
||||
var viewport = PE.getController('Viewport').getView('Viewport');
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
"Common.define.effectData.textArcDown": "Arc cap avall",
|
||||
"Common.define.effectData.textArcLeft": "Arc cap a l'esquerra",
|
||||
"Common.define.effectData.textArcRight": "Arc cap a la dreta",
|
||||
"Common.define.effectData.textArcs": "Arcs",
|
||||
"Common.define.effectData.textArcUp": "Arc cap amunt",
|
||||
"Common.define.effectData.textBasic": "Bàsic",
|
||||
"Common.define.effectData.textBasicSwivel": "Gir bàsic",
|
||||
|
@ -98,11 +99,11 @@
|
|||
"Common.define.effectData.textDissolveOut": "Dissoldre per desaparèixer",
|
||||
"Common.define.effectData.textDown": "Avall",
|
||||
"Common.define.effectData.textDrop": "Gota",
|
||||
"Common.define.effectData.textEmphasis": " Efecte d'èmfasi",
|
||||
"Common.define.effectData.textEntrance": "Efecte d'entrada",
|
||||
"Common.define.effectData.textEmphasis": "Efectes d'èmfasi",
|
||||
"Common.define.effectData.textEntrance": "Efectes d'entrada",
|
||||
"Common.define.effectData.textEqualTriangle": "Triangle equilàter",
|
||||
"Common.define.effectData.textExciting": "Atrevits",
|
||||
"Common.define.effectData.textExit": " Efecte de sortida",
|
||||
"Common.define.effectData.textExit": "Efectes de sortida",
|
||||
"Common.define.effectData.textExpand": "Expandeix",
|
||||
"Common.define.effectData.textFade": "Esvaïment",
|
||||
"Common.define.effectData.textFigureFour": "Figura 8 quatre",
|
||||
|
@ -139,6 +140,7 @@
|
|||
"Common.define.effectData.textIn": "Entrant",
|
||||
"Common.define.effectData.textInFromScreenCenter": "Amplia des del centre de la pantalla",
|
||||
"Common.define.effectData.textInSlightly": "Amplia lleugerament",
|
||||
"Common.define.effectData.textInToScreenBottom": "A la Part Inferior de la Pantalla",
|
||||
"Common.define.effectData.textInvertedSquare": "Quadrat invertit",
|
||||
"Common.define.effectData.textInvertedTriangle": "Triangle invertit",
|
||||
"Common.define.effectData.textLeft": "Esquerra",
|
||||
|
@ -146,8 +148,10 @@
|
|||
"Common.define.effectData.textLeftUp": "Esquerra i amunt",
|
||||
"Common.define.effectData.textLighten": "Il·luminar",
|
||||
"Common.define.effectData.textLineColor": "Color de la línia",
|
||||
"Common.define.effectData.textLines": "Línies",
|
||||
"Common.define.effectData.textLinesCurves": "Línies i corbes",
|
||||
"Common.define.effectData.textLoopDeLoop": "Bucle",
|
||||
"Common.define.effectData.textLoops": "Bucles",
|
||||
"Common.define.effectData.textModerate": "Moderats",
|
||||
"Common.define.effectData.textNeutron": "Neutró",
|
||||
"Common.define.effectData.textObjectCenter": "Centre d'objectes",
|
||||
|
@ -156,8 +160,9 @@
|
|||
"Common.define.effectData.textOut": "Fora",
|
||||
"Common.define.effectData.textOutFromScreenBottom": "Redueix des de la part inferior de la pantalla",
|
||||
"Common.define.effectData.textOutSlightly": "Redueix lleugerament",
|
||||
"Common.define.effectData.textOutToScreenCenter": "Fora del centre de la pantalla",
|
||||
"Common.define.effectData.textParallelogram": "Paral·lelogram",
|
||||
"Common.define.effectData.textPath": "Recorregut",
|
||||
"Common.define.effectData.textPath": "Trajectòries de desplaçament",
|
||||
"Common.define.effectData.textPeanut": "Cacauet",
|
||||
"Common.define.effectData.textPeekIn": "Ullada endins",
|
||||
"Common.define.effectData.textPeekOut": "Ullada enfora",
|
||||
|
@ -179,6 +184,7 @@
|
|||
"Common.define.effectData.textSCurve1": "Corba S 1",
|
||||
"Common.define.effectData.textSCurve2": "Corba S 2",
|
||||
"Common.define.effectData.textShape": "Forma",
|
||||
"Common.define.effectData.textShapes": "Formes",
|
||||
"Common.define.effectData.textShimmer": "Resplendir",
|
||||
"Common.define.effectData.textShrinkTurn": "Encongir i girar",
|
||||
"Common.define.effectData.textSineWave": "Corba sinusoide",
|
||||
|
@ -219,6 +225,7 @@
|
|||
"Common.define.effectData.textTrapezoid": "Trapezi",
|
||||
"Common.define.effectData.textTurnDown": "Girar cap avall",
|
||||
"Common.define.effectData.textTurnDownRight": "Girar cap a la dreta i avall",
|
||||
"Common.define.effectData.textTurns": "Girar",
|
||||
"Common.define.effectData.textTurnUp": "Girar cap amunt",
|
||||
"Common.define.effectData.textTurnUpRight": "Girar cap a la dreta i amunt",
|
||||
"Common.define.effectData.textUnderline": "Subratlla",
|
||||
|
@ -293,6 +300,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics",
|
||||
"Common.Views.AutoCorrectDialog.textBy": "Per",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Suprimeix",
|
||||
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Afegir punt amb espai doble",
|
||||
"Common.Views.AutoCorrectDialog.textFLCells": "Posa en majúscula la primera lletra de les cel·les de la taula",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Camins de xarxa i d'Internet per enllaços",
|
||||
|
@ -1282,6 +1290,12 @@
|
|||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||
"PE.Controllers.Viewport.textFitPage": "Ajusta a la diapositiva",
|
||||
"PE.Controllers.Viewport.textFitWidth": "Ajusta-ho a l'amplària",
|
||||
"PE.Views.Animation.str0_5": "0.5 s (Molt ràpid)",
|
||||
"PE.Views.Animation.str1": "1 s (Ràpid)",
|
||||
"PE.Views.Animation.str2": "2 s (Mitjana)",
|
||||
"PE.Views.Animation.str20": "20 s (Extremament lent)",
|
||||
"PE.Views.Animation.str3": "3 s (Lent)",
|
||||
"PE.Views.Animation.str5": "5 s (Molt Lent)",
|
||||
"PE.Views.Animation.strDelay": "Retard",
|
||||
"PE.Views.Animation.strDuration": "Durada",
|
||||
"PE.Views.Animation.strRepeat": "Repeteix",
|
||||
|
@ -1293,11 +1307,14 @@
|
|||
"PE.Views.Animation.textMoveLater": "Després",
|
||||
"PE.Views.Animation.textMultiple": "múltiple",
|
||||
"PE.Views.Animation.textNone": "cap",
|
||||
"PE.Views.Animation.textNoRepeat": "(cap)",
|
||||
"PE.Views.Animation.textOnClickOf": "Al desclicar",
|
||||
"PE.Views.Animation.textOnClickSequence": "Al fer una Seqüència de clics",
|
||||
"PE.Views.Animation.textStartAfterPrevious": "Després de l'anterior",
|
||||
"PE.Views.Animation.textStartOnClick": "En clicar",
|
||||
"PE.Views.Animation.textStartWithPrevious": "Amb l'anterior",
|
||||
"PE.Views.Animation.textUntilEndOfSlide": "Fins al final de la diapositiva",
|
||||
"PE.Views.Animation.textUntilNextClick": "Fins al següent clic",
|
||||
"PE.Views.Animation.txtAddEffect": "Afegeix una animació",
|
||||
"PE.Views.Animation.txtAnimationPane": "Subfinestra d'animacions",
|
||||
"PE.Views.Animation.txtParameters": "Paràmetres",
|
||||
|
@ -1522,7 +1539,7 @@
|
|||
"PE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú",
|
||||
"PE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou",
|
||||
"PE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Surt",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Tancar",
|
||||
"PE.Views.FileMenu.btnFileOpenCaption": "Obre...",
|
||||
"PE.Views.FileMenu.btnHelpCaption": "Ajuda...",
|
||||
"PE.Views.FileMenu.btnHistoryCaption": "Historial de versions",
|
||||
|
@ -2168,6 +2185,15 @@
|
|||
"PE.Views.Toolbar.tipInsertVideo": "Insereix un vídeo",
|
||||
"PE.Views.Toolbar.tipLineSpace": "Interlineat",
|
||||
"PE.Views.Toolbar.tipMarkers": "Pics",
|
||||
"PE.Views.Toolbar.tipMarkersArrow": "Vinyetes de fletxa",
|
||||
"PE.Views.Toolbar.tipMarkersCheckmark": "Vinyetes de marca de selecció",
|
||||
"PE.Views.Toolbar.tipMarkersDash": "Vinyetes de guió",
|
||||
"PE.Views.Toolbar.tipMarkersFRhombus": "Vinyetes de rombes plenes",
|
||||
"PE.Views.Toolbar.tipMarkersFRound": "Vinyetes rodones plenes",
|
||||
"PE.Views.Toolbar.tipMarkersFSquare": "Vinyetes quadrades plenes",
|
||||
"PE.Views.Toolbar.tipMarkersHRound": "Vinyetes rodones buides",
|
||||
"PE.Views.Toolbar.tipMarkersStar": "Vinyetes d'estrella",
|
||||
"PE.Views.Toolbar.tipNone": "cap",
|
||||
"PE.Views.Toolbar.tipNumbers": "Numeració",
|
||||
"PE.Views.Toolbar.tipPaste": "Enganxar",
|
||||
"PE.Views.Toolbar.tipPreview": "Inicia la presentació de diapositives",
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
"Common.define.effectData.textArcDown": "Oblouk dole",
|
||||
"Common.define.effectData.textArcLeft": "Oblouk vlevo",
|
||||
"Common.define.effectData.textArcRight": "Oblouk vpravo",
|
||||
"Common.define.effectData.textArcs": "Oblouky",
|
||||
"Common.define.effectData.textArcUp": "Oblouk nahoře",
|
||||
"Common.define.effectData.textBasic": "Základní",
|
||||
"Common.define.effectData.textBasicSwivel": "Základní otočný",
|
||||
|
@ -139,6 +140,7 @@
|
|||
"Common.define.effectData.textIn": "Dovnitř",
|
||||
"Common.define.effectData.textInFromScreenCenter": "Dovnitř ze středu obrazovky",
|
||||
"Common.define.effectData.textInSlightly": "Dovnitř mírně",
|
||||
"Common.define.effectData.textInToScreenBottom": "Dovnitř na dolní část obrazovky",
|
||||
"Common.define.effectData.textInvertedSquare": "Převrácený čtverec",
|
||||
"Common.define.effectData.textInvertedTriangle": "Převrácený trojúhelník",
|
||||
"Common.define.effectData.textLeft": "Vlevo",
|
||||
|
@ -146,8 +148,10 @@
|
|||
"Common.define.effectData.textLeftUp": "Vlevo nahoru",
|
||||
"Common.define.effectData.textLighten": "Zesvětlit",
|
||||
"Common.define.effectData.textLineColor": "Barva ohraničení",
|
||||
"Common.define.effectData.textLines": "Čáry",
|
||||
"Common.define.effectData.textLinesCurves": "Křivky čar",
|
||||
"Common.define.effectData.textLoopDeLoop": "Smyčkovitě",
|
||||
"Common.define.effectData.textLoops": "Smyčky",
|
||||
"Common.define.effectData.textModerate": "Mírné",
|
||||
"Common.define.effectData.textNeutron": "Neutron",
|
||||
"Common.define.effectData.textObjectCenter": "Střed objektu",
|
||||
|
@ -156,8 +160,9 @@
|
|||
"Common.define.effectData.textOut": "Vně",
|
||||
"Common.define.effectData.textOutFromScreenBottom": "Pryč skrze dolní část obrazovky",
|
||||
"Common.define.effectData.textOutSlightly": "Vně mírně",
|
||||
"Common.define.effectData.textOutToScreenCenter": "Vně na střed obrazovky",
|
||||
"Common.define.effectData.textParallelogram": "Rovnoběžník",
|
||||
"Common.define.effectData.textPath": "Trasa pohybu",
|
||||
"Common.define.effectData.textPath": "Trasy pohybu",
|
||||
"Common.define.effectData.textPeanut": "Burský oříšek",
|
||||
"Common.define.effectData.textPeekIn": "Přilétnutí",
|
||||
"Common.define.effectData.textPeekOut": "Odlétnutí",
|
||||
|
@ -179,6 +184,7 @@
|
|||
"Common.define.effectData.textSCurve1": "Křivka 1",
|
||||
"Common.define.effectData.textSCurve2": "Křivka 2",
|
||||
"Common.define.effectData.textShape": "Tvar",
|
||||
"Common.define.effectData.textShapes": "Obrazce",
|
||||
"Common.define.effectData.textShimmer": "Třpit",
|
||||
"Common.define.effectData.textShrinkTurn": "Zmenšit a otočit",
|
||||
"Common.define.effectData.textSineWave": "Sinusová vlna",
|
||||
|
@ -219,6 +225,7 @@
|
|||
"Common.define.effectData.textTrapezoid": "Lichoběžník",
|
||||
"Common.define.effectData.textTurnDown": "Otočit dolů",
|
||||
"Common.define.effectData.textTurnDownRight": "Otočit vpravo dolů",
|
||||
"Common.define.effectData.textTurns": "Zatáčky",
|
||||
"Common.define.effectData.textTurnUp": "Převrátit nahoru",
|
||||
"Common.define.effectData.textTurnUpRight": "Převrátit vpravo",
|
||||
"Common.define.effectData.textUnderline": "Podtrhnout",
|
||||
|
@ -293,6 +300,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBulleted": "Automatické odrážkové seznamy",
|
||||
"Common.Views.AutoCorrectDialog.textBy": "Od",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Odstranit",
|
||||
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Přidat interval s dvojitou mezerou",
|
||||
"Common.Views.AutoCorrectDialog.textFLCells": "První písmeno v obsahu buněk tabulky měnit na velké",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "Velká na začátku věty",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a síťové přístupy s hypertextovými odkazy",
|
||||
|
@ -1282,6 +1290,12 @@
|
|||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||
"PE.Controllers.Viewport.textFitPage": "Přizpůsobit snímku",
|
||||
"PE.Controllers.Viewport.textFitWidth": "Přizpůsobit šířce",
|
||||
"PE.Views.Animation.str0_5": "0,5 s (Velmi rychle)",
|
||||
"PE.Views.Animation.str1": "1 s (Rychle)",
|
||||
"PE.Views.Animation.str2": "2 s (Střední)",
|
||||
"PE.Views.Animation.str20": "20 s (Extrémně pomalu)",
|
||||
"PE.Views.Animation.str3": "3s (Pomalu)",
|
||||
"PE.Views.Animation.str5": "5 s (Velmi pomalu)",
|
||||
"PE.Views.Animation.strDelay": "Prodleva",
|
||||
"PE.Views.Animation.strDuration": "Doba trvání",
|
||||
"PE.Views.Animation.strRepeat": "Zopakovat",
|
||||
|
@ -1293,11 +1307,14 @@
|
|||
"PE.Views.Animation.textMoveLater": "Přesunout pozdější",
|
||||
"PE.Views.Animation.textMultiple": "vícenásobný",
|
||||
"PE.Views.Animation.textNone": "Žádné",
|
||||
"PE.Views.Animation.textNoRepeat": "(žádné)",
|
||||
"PE.Views.Animation.textOnClickOf": "Při kliknutí na",
|
||||
"PE.Views.Animation.textOnClickSequence": "Při posloupnosti kliknutí",
|
||||
"PE.Views.Animation.textStartAfterPrevious": "Po předchozí",
|
||||
"PE.Views.Animation.textStartOnClick": "Při kliknutí",
|
||||
"PE.Views.Animation.textStartWithPrevious": "S předchozí",
|
||||
"PE.Views.Animation.textUntilEndOfSlide": "Do konce snímku",
|
||||
"PE.Views.Animation.textUntilNextClick": "Do příštího kliknutí",
|
||||
"PE.Views.Animation.txtAddEffect": "Přidat animaci",
|
||||
"PE.Views.Animation.txtAnimationPane": "Podokno animací",
|
||||
"PE.Views.Animation.txtParameters": "Parametry",
|
||||
|
@ -1522,7 +1539,7 @@
|
|||
"PE.Views.FileMenu.btnCloseMenuCaption": "Zavřít nabídku",
|
||||
"PE.Views.FileMenu.btnCreateNewCaption": "Vytvořit nový",
|
||||
"PE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako…",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Konec",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Zavřít",
|
||||
"PE.Views.FileMenu.btnFileOpenCaption": "Otevřít...",
|
||||
"PE.Views.FileMenu.btnHelpCaption": "Nápověda…",
|
||||
"PE.Views.FileMenu.btnHistoryCaption": "Historie verzí",
|
||||
|
@ -2168,6 +2185,15 @@
|
|||
"PE.Views.Toolbar.tipInsertVideo": "Vložit video",
|
||||
"PE.Views.Toolbar.tipLineSpace": "Řádkování",
|
||||
"PE.Views.Toolbar.tipMarkers": "Odrážky",
|
||||
"PE.Views.Toolbar.tipMarkersArrow": "Šipkové odrážky",
|
||||
"PE.Views.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky",
|
||||
"PE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"PE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní",
|
||||
"PE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky",
|
||||
"PE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky",
|
||||
"PE.Views.Toolbar.tipMarkersHRound": "Duté kulaté odrážky",
|
||||
"PE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky",
|
||||
"PE.Views.Toolbar.tipNone": "žádný",
|
||||
"PE.Views.Toolbar.tipNumbers": "Číslování",
|
||||
"PE.Views.Toolbar.tipPaste": "Vložit",
|
||||
"PE.Views.Toolbar.tipPreview": "Spustit prezentaci",
|
||||
|
|
|
@ -99,11 +99,11 @@
|
|||
"Common.define.effectData.textDissolveOut": "Dissolve Out",
|
||||
"Common.define.effectData.textDown": "Down",
|
||||
"Common.define.effectData.textDrop": "Drop",
|
||||
"Common.define.effectData.textEmphasis": "Emphasis Effect",
|
||||
"Common.define.effectData.textEntrance": "Entrance Effect",
|
||||
"Common.define.effectData.textEmphasis": "Emphasis Effects",
|
||||
"Common.define.effectData.textEntrance": "Entrance Effects",
|
||||
"Common.define.effectData.textEqualTriangle": "Equal Triangle",
|
||||
"Common.define.effectData.textExciting": "Exciting",
|
||||
"Common.define.effectData.textExit": "Exit Effect",
|
||||
"Common.define.effectData.textExit": "Exit Effects",
|
||||
"Common.define.effectData.textExpand": "Expand",
|
||||
"Common.define.effectData.textFade": "Fade",
|
||||
"Common.define.effectData.textFigureFour": "Figure 8 Four",
|
||||
|
@ -1553,7 +1553,7 @@
|
|||
"PE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
|
||||
"PE.Views.FileMenu.btnCreateNewCaption": "Create New",
|
||||
"PE.Views.FileMenu.btnDownloadCaption": "Download as...",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Exit",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Close",
|
||||
"PE.Views.FileMenu.btnFileOpenCaption": "Open...",
|
||||
"PE.Views.FileMenu.btnHelpCaption": "Help...",
|
||||
"PE.Views.FileMenu.btnHistoryCaption": "Version History",
|
||||
|
@ -2228,6 +2228,15 @@
|
|||
"PE.Views.Toolbar.tipInsertVideo": "Insert video",
|
||||
"PE.Views.Toolbar.tipLineSpace": "Line spacing",
|
||||
"PE.Views.Toolbar.tipMarkers": "Bullets",
|
||||
"PE.Views.Toolbar.tipMarkersArrow": "Arrow bullets",
|
||||
"PE.Views.Toolbar.tipMarkersCheckmark": "Checkmark bullets",
|
||||
"PE.Views.Toolbar.tipMarkersDash": "Dash bullets",
|
||||
"PE.Views.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets",
|
||||
"PE.Views.Toolbar.tipMarkersFRound": "Filled round bullets",
|
||||
"PE.Views.Toolbar.tipMarkersFSquare": "Filled square bullets",
|
||||
"PE.Views.Toolbar.tipMarkersHRound": "Hollow round bullets",
|
||||
"PE.Views.Toolbar.tipMarkersStar": "Star bullets",
|
||||
"PE.Views.Toolbar.tipNone": "None",
|
||||
"PE.Views.Toolbar.tipNumbers": "Numbering",
|
||||
"PE.Views.Toolbar.tipPaste": "Paste",
|
||||
"PE.Views.Toolbar.tipPreview": "Start slideshow",
|
||||
|
|
|
@ -98,11 +98,11 @@
|
|||
"Common.define.effectData.textDissolveOut": "Disolver hacia fuera",
|
||||
"Common.define.effectData.textDown": "Abajo",
|
||||
"Common.define.effectData.textDrop": "Colocar",
|
||||
"Common.define.effectData.textEmphasis": "Efecto de énfasis",
|
||||
"Common.define.effectData.textEntrance": "Efecto de entrada",
|
||||
"Common.define.effectData.textEmphasis": "Efectos de énfasis",
|
||||
"Common.define.effectData.textEntrance": "Efectos de entrada",
|
||||
"Common.define.effectData.textEqualTriangle": "Triángulo equilátero",
|
||||
"Common.define.effectData.textExciting": "Llamativo",
|
||||
"Common.define.effectData.textExit": "Efecto de salida",
|
||||
"Common.define.effectData.textExit": "Efectos de salida",
|
||||
"Common.define.effectData.textExpand": "Expandir",
|
||||
"Common.define.effectData.textFade": "Desvanecer",
|
||||
"Common.define.effectData.textFigureFour": "Figura 8 cuatro veces",
|
||||
|
@ -157,7 +157,7 @@
|
|||
"Common.define.effectData.textOutFromScreenBottom": "Alejar desde la zona inferior de la pantalla",
|
||||
"Common.define.effectData.textOutSlightly": "Alejar ligeramente",
|
||||
"Common.define.effectData.textParallelogram": "Paralelogramo",
|
||||
"Common.define.effectData.textPath": "Ruta de movimiento",
|
||||
"Common.define.effectData.textPath": "Rutas de movimiento",
|
||||
"Common.define.effectData.textPeanut": "Cacahuete",
|
||||
"Common.define.effectData.textPeekIn": "Desplegar hacia arriba",
|
||||
"Common.define.effectData.textPeekOut": "Desplegar hacia abajo",
|
||||
|
@ -1522,7 +1522,7 @@
|
|||
"PE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú",
|
||||
"PE.Views.FileMenu.btnCreateNewCaption": "Crear nuevo",
|
||||
"PE.Views.FileMenu.btnDownloadCaption": "Descargar como...",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Salir",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Cerrar",
|
||||
"PE.Views.FileMenu.btnFileOpenCaption": "Abrir...",
|
||||
"PE.Views.FileMenu.btnHelpCaption": "Ayuda...",
|
||||
"PE.Views.FileMenu.btnHistoryCaption": "Historial de versiones",
|
||||
|
|
|
@ -1295,7 +1295,7 @@
|
|||
"PE.Views.Animation.textNone": "Aucun",
|
||||
"PE.Views.Animation.textOnClickOf": "Au clic sur",
|
||||
"PE.Views.Animation.textOnClickSequence": "Séquence de clics",
|
||||
"PE.Views.Animation.textStartAfterPrevious": "Après le précédent",
|
||||
"PE.Views.Animation.textStartAfterPrevious": "Après la précédente",
|
||||
"PE.Views.Animation.textStartOnClick": "Au clic",
|
||||
"PE.Views.Animation.textStartWithPrevious": "Avec la précédente",
|
||||
"PE.Views.Animation.txtAddEffect": "Ajouter une animation",
|
||||
|
@ -1379,7 +1379,7 @@
|
|||
"PE.Views.DocumentHolder.textArrangeFront": "Mettre au premier plan",
|
||||
"PE.Views.DocumentHolder.textCopy": "Copier",
|
||||
"PE.Views.DocumentHolder.textCrop": "Rogner",
|
||||
"PE.Views.DocumentHolder.textCropFill": "Remplissage",
|
||||
"PE.Views.DocumentHolder.textCropFill": "Remplir",
|
||||
"PE.Views.DocumentHolder.textCropFit": "Ajuster",
|
||||
"PE.Views.DocumentHolder.textCut": "Couper",
|
||||
"PE.Views.DocumentHolder.textDistributeCols": "Distribuer les colonnes",
|
||||
|
@ -2131,7 +2131,7 @@
|
|||
"PE.Views.Toolbar.textTabInsert": "Insertion",
|
||||
"PE.Views.Toolbar.textTabProtect": "Protection",
|
||||
"PE.Views.Toolbar.textTabTransitions": "Transitions",
|
||||
"PE.Views.Toolbar.textTabView": "Afficher",
|
||||
"PE.Views.Toolbar.textTabView": "Affichage",
|
||||
"PE.Views.Toolbar.textTitleError": "Erreur",
|
||||
"PE.Views.Toolbar.textUnderline": "Souligné",
|
||||
"PE.Views.Toolbar.tipAddSlide": "Ajouter diapositive",
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
"Common.define.effectData.textArcDown": "Arcuire în jos",
|
||||
"Common.define.effectData.textArcLeft": "Arcuire spre stânga",
|
||||
"Common.define.effectData.textArcRight": "Arcuire spre dreapta",
|
||||
"Common.define.effectData.textArcs": "Arce",
|
||||
"Common.define.effectData.textArcUp": "Arcuire în sus",
|
||||
"Common.define.effectData.textBasic": "De bază",
|
||||
"Common.define.effectData.textBasicSwivel": "Învârtire simplă",
|
||||
|
@ -98,11 +99,11 @@
|
|||
"Common.define.effectData.textDissolveOut": "Dizolvare spre exterior",
|
||||
"Common.define.effectData.textDown": "În jos",
|
||||
"Common.define.effectData.textDrop": "Picătură",
|
||||
"Common.define.effectData.textEmphasis": "Efect de evidențiere",
|
||||
"Common.define.effectData.textEntrance": "Efect de intrare",
|
||||
"Common.define.effectData.textEmphasis": "Efecte de evidențiere",
|
||||
"Common.define.effectData.textEntrance": "Efecte de intrare",
|
||||
"Common.define.effectData.textEqualTriangle": "Triunghi echilateral",
|
||||
"Common.define.effectData.textExciting": "Emoționant",
|
||||
"Common.define.effectData.textExit": "Efect de ieșire",
|
||||
"Common.define.effectData.textExit": "Efecte de ieșire",
|
||||
"Common.define.effectData.textExpand": "Extindere",
|
||||
"Common.define.effectData.textFade": "Estompare",
|
||||
"Common.define.effectData.textFigureFour": "Cifra 8 de patru ori",
|
||||
|
@ -146,8 +147,10 @@
|
|||
"Common.define.effectData.textLeftUp": "În stânga sus",
|
||||
"Common.define.effectData.textLighten": "Luminare",
|
||||
"Common.define.effectData.textLineColor": "Culoare linie",
|
||||
"Common.define.effectData.textLines": "Linii",
|
||||
"Common.define.effectData.textLinesCurves": "Linii Curbe",
|
||||
"Common.define.effectData.textLoopDeLoop": "Bucle",
|
||||
"Common.define.effectData.textLoops": "Bucle",
|
||||
"Common.define.effectData.textModerate": "Moderat",
|
||||
"Common.define.effectData.textNeutron": "Neutron",
|
||||
"Common.define.effectData.textObjectCenter": "Centrul obiectului",
|
||||
|
@ -157,7 +160,7 @@
|
|||
"Common.define.effectData.textOutFromScreenBottom": "În exterior din josul ecranului",
|
||||
"Common.define.effectData.textOutSlightly": "Ușor în exterior",
|
||||
"Common.define.effectData.textParallelogram": "Paralelogram",
|
||||
"Common.define.effectData.textPath": "Cale de mișcare",
|
||||
"Common.define.effectData.textPath": "Căi de mișcare",
|
||||
"Common.define.effectData.textPeanut": "Alună",
|
||||
"Common.define.effectData.textPeekIn": "Glisare rapidă spre interior",
|
||||
"Common.define.effectData.textPeekOut": "Glisare rapidă spre exterior",
|
||||
|
@ -179,6 +182,7 @@
|
|||
"Common.define.effectData.textSCurve1": "Curbă S1",
|
||||
"Common.define.effectData.textSCurve2": "Curbă S2",
|
||||
"Common.define.effectData.textShape": "Forma",
|
||||
"Common.define.effectData.textShapes": "Forme",
|
||||
"Common.define.effectData.textShimmer": "Licărire",
|
||||
"Common.define.effectData.textShrinkTurn": "Micșorare și întoarcere",
|
||||
"Common.define.effectData.textSineWave": "Val sinusoidal",
|
||||
|
@ -219,6 +223,7 @@
|
|||
"Common.define.effectData.textTrapezoid": "Trapez",
|
||||
"Common.define.effectData.textTurnDown": "Întoarcere în jos",
|
||||
"Common.define.effectData.textTurnDownRight": "Întoarcere spre dreapta jos",
|
||||
"Common.define.effectData.textTurns": "Curbe",
|
||||
"Common.define.effectData.textTurnUp": "Întoarcere în sus",
|
||||
"Common.define.effectData.textTurnUpRight": "Întoarcere spre dreapta sus",
|
||||
"Common.define.effectData.textUnderline": "Subliniat",
|
||||
|
@ -293,6 +298,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBulleted": "Creare automată a listei cu marcatori",
|
||||
"Common.Views.AutoCorrectDialog.textBy": "După",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Ștergere",
|
||||
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adăugarea unui punct prin apăsarea dublă a barei de spațiu ",
|
||||
"Common.Views.AutoCorrectDialog.textFLCells": "Scrie cu majusculă prima litera din fiecare celulă de tabel",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "Scrie cu majusculă prima literă a propoziției",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Căi Internet și de rețea cu hyperlink-uri",
|
||||
|
@ -1282,6 +1288,12 @@
|
|||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||
"PE.Controllers.Viewport.textFitPage": "Se aliniază la diapozitiv",
|
||||
"PE.Controllers.Viewport.textFitWidth": "Potrivire lățime",
|
||||
"PE.Views.Animation.str0_5": "0.5 s (foarte repede)",
|
||||
"PE.Views.Animation.str1": "1 s (Repede)",
|
||||
"PE.Views.Animation.str2": "2 s (medie)",
|
||||
"PE.Views.Animation.str20": "20 s (extrem de lent)",
|
||||
"PE.Views.Animation.str3": "3 s (lent)",
|
||||
"PE.Views.Animation.str5": "5 s (foarte lent)",
|
||||
"PE.Views.Animation.strDelay": "Amânare",
|
||||
"PE.Views.Animation.strDuration": "Durată",
|
||||
"PE.Views.Animation.strRepeat": "Repetare",
|
||||
|
@ -1293,11 +1305,13 @@
|
|||
"PE.Views.Animation.textMoveLater": "Mutare mai târziu",
|
||||
"PE.Views.Animation.textMultiple": "Multiplu",
|
||||
"PE.Views.Animation.textNone": "Fără",
|
||||
"PE.Views.Animation.textNoRepeat": "(niciunul)",
|
||||
"PE.Views.Animation.textOnClickOf": "La clic pe",
|
||||
"PE.Views.Animation.textOnClickSequence": "Secvență în clicuri",
|
||||
"PE.Views.Animation.textStartAfterPrevious": "După anterioul",
|
||||
"PE.Views.Animation.textStartOnClick": "La clic",
|
||||
"PE.Views.Animation.textStartWithPrevious": "Cu anteriorul",
|
||||
"PE.Views.Animation.textUntilEndOfSlide": "Până la finalul diapositivului",
|
||||
"PE.Views.Animation.txtAddEffect": "Adăugare animație",
|
||||
"PE.Views.Animation.txtAnimationPane": "Panou de animație",
|
||||
"PE.Views.Animation.txtParameters": "Opțiuni",
|
||||
|
@ -1522,7 +1536,7 @@
|
|||
"PE.Views.FileMenu.btnCloseMenuCaption": "Închidere meniu",
|
||||
"PE.Views.FileMenu.btnCreateNewCaption": "Crearea unui document nou",
|
||||
"PE.Views.FileMenu.btnDownloadCaption": "Descărcare ca...",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Ieșire",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Închidere",
|
||||
"PE.Views.FileMenu.btnFileOpenCaption": "Deschidere...",
|
||||
"PE.Views.FileMenu.btnHelpCaption": "Asistență...",
|
||||
"PE.Views.FileMenu.btnHistoryCaption": "Istoricul versiune",
|
||||
|
@ -2168,6 +2182,15 @@
|
|||
"PE.Views.Toolbar.tipInsertVideo": "Inserare video",
|
||||
"PE.Views.Toolbar.tipLineSpace": "Interlinie",
|
||||
"PE.Views.Toolbar.tipMarkers": "Marcatori",
|
||||
"PE.Views.Toolbar.tipMarkersArrow": "Marcatori săgeată",
|
||||
"PE.Views.Toolbar.tipMarkersCheckmark": "Marcatori simbol de bifare",
|
||||
"PE.Views.Toolbar.tipMarkersDash": "Marcatori cu o liniuță",
|
||||
"PE.Views.Toolbar.tipMarkersFRhombus": "Marcatori romb umplut",
|
||||
"PE.Views.Toolbar.tipMarkersFRound": "Marcatori cerc umplut",
|
||||
"PE.Views.Toolbar.tipMarkersFSquare": "Marcatori pătrat umplut",
|
||||
"PE.Views.Toolbar.tipMarkersHRound": "Marcatori cerc gol ",
|
||||
"PE.Views.Toolbar.tipMarkersStar": "Marcatori stele",
|
||||
"PE.Views.Toolbar.tipNone": "Fără",
|
||||
"PE.Views.Toolbar.tipNumbers": "Numerotare",
|
||||
"PE.Views.Toolbar.tipPaste": "Lipire",
|
||||
"PE.Views.Toolbar.tipPreview": "Pornire expunere diapozitive",
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
"Common.define.effectData.textArcDown": "Вниз по дуге",
|
||||
"Common.define.effectData.textArcLeft": "Влево по дуге",
|
||||
"Common.define.effectData.textArcRight": "Вправо по дуге",
|
||||
"Common.define.effectData.textArcs": "Дуги",
|
||||
"Common.define.effectData.textArcUp": "Вверх по дуге",
|
||||
"Common.define.effectData.textBasic": "Базовые",
|
||||
"Common.define.effectData.textBasicSwivel": "Простое вращение",
|
||||
|
@ -98,11 +99,11 @@
|
|||
"Common.define.effectData.textDissolveOut": "Растворение",
|
||||
"Common.define.effectData.textDown": "Вниз",
|
||||
"Common.define.effectData.textDrop": "Падение",
|
||||
"Common.define.effectData.textEmphasis": "Эффект выделения",
|
||||
"Common.define.effectData.textEntrance": "Эффект входа",
|
||||
"Common.define.effectData.textEmphasis": "Эффекты выделения",
|
||||
"Common.define.effectData.textEntrance": "Эффекты входа",
|
||||
"Common.define.effectData.textEqualTriangle": "Равносторонний треугольник",
|
||||
"Common.define.effectData.textExciting": "Сложные",
|
||||
"Common.define.effectData.textExit": "Эффект выхода",
|
||||
"Common.define.effectData.textExit": "Эффекты выхода",
|
||||
"Common.define.effectData.textExpand": "Развертывание",
|
||||
"Common.define.effectData.textFade": "Выцветание",
|
||||
"Common.define.effectData.textFigureFour": "Удвоенный знак 8",
|
||||
|
@ -139,6 +140,7 @@
|
|||
"Common.define.effectData.textIn": "Внутрь",
|
||||
"Common.define.effectData.textInFromScreenCenter": "Увеличение из центра экрана",
|
||||
"Common.define.effectData.textInSlightly": "Небольшое увеличение",
|
||||
"Common.define.effectData.textInToScreenBottom": "Увеличение к нижней части экрана",
|
||||
"Common.define.effectData.textInvertedSquare": "Квадрат наизнанку",
|
||||
"Common.define.effectData.textInvertedTriangle": "Треугольник наизнанку",
|
||||
"Common.define.effectData.textLeft": "Влево",
|
||||
|
@ -146,8 +148,10 @@
|
|||
"Common.define.effectData.textLeftUp": "Влево и вверх",
|
||||
"Common.define.effectData.textLighten": "Высветление",
|
||||
"Common.define.effectData.textLineColor": "Цвет линии",
|
||||
"Common.define.effectData.textLines": "Линии",
|
||||
"Common.define.effectData.textLinesCurves": "Линии и кривые",
|
||||
"Common.define.effectData.textLoopDeLoop": "Петля",
|
||||
"Common.define.effectData.textLoops": "Петли",
|
||||
"Common.define.effectData.textModerate": "Средние",
|
||||
"Common.define.effectData.textNeutron": "Нейтрон",
|
||||
"Common.define.effectData.textObjectCenter": "Центр объекта",
|
||||
|
@ -156,6 +160,7 @@
|
|||
"Common.define.effectData.textOut": "Наружу",
|
||||
"Common.define.effectData.textOutFromScreenBottom": "Уменьшение из нижней части экрана",
|
||||
"Common.define.effectData.textOutSlightly": "Небольшое уменьшение",
|
||||
"Common.define.effectData.textOutToScreenCenter": "Уменьшение к центру экрана",
|
||||
"Common.define.effectData.textParallelogram": "Параллелограмм",
|
||||
"Common.define.effectData.textPath": "Пути перемещения",
|
||||
"Common.define.effectData.textPeanut": "Земляной орех",
|
||||
|
@ -179,6 +184,7 @@
|
|||
"Common.define.effectData.textSCurve1": "Синусоида 1",
|
||||
"Common.define.effectData.textSCurve2": "Синусоида 2",
|
||||
"Common.define.effectData.textShape": "Фигура",
|
||||
"Common.define.effectData.textShapes": "Фигуры",
|
||||
"Common.define.effectData.textShimmer": "Мерцание",
|
||||
"Common.define.effectData.textShrinkTurn": "Уменьшение с поворотом",
|
||||
"Common.define.effectData.textSineWave": "Частая синусоида",
|
||||
|
@ -219,6 +225,7 @@
|
|||
"Common.define.effectData.textTrapezoid": "Трапеция",
|
||||
"Common.define.effectData.textTurnDown": "Вправо и вниз",
|
||||
"Common.define.effectData.textTurnDownRight": "Вниз и вправо",
|
||||
"Common.define.effectData.textTurns": "Повороты",
|
||||
"Common.define.effectData.textTurnUp": "Вправо и вверх",
|
||||
"Common.define.effectData.textTurnUpRight": "Вверх и вправо",
|
||||
"Common.define.effectData.textUnderline": "Подчёркивание",
|
||||
|
@ -293,6 +300,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBulleted": "Стили маркированных списков",
|
||||
"Common.Views.AutoCorrectDialog.textBy": "На",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Удалить",
|
||||
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Добавлять точку двойным пробелом",
|
||||
"Common.Views.AutoCorrectDialog.textFLCells": "Делать первые буквы ячеек таблиц прописными",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "Делать первые буквы предложений прописными",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Адреса в Интернете и сетевые пути гиперссылками",
|
||||
|
@ -1282,6 +1290,12 @@
|
|||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Дзета",
|
||||
"PE.Controllers.Viewport.textFitPage": "По размеру слайда",
|
||||
"PE.Controllers.Viewport.textFitWidth": "По ширине",
|
||||
"PE.Views.Animation.str0_5": "0.5 с (очень быстро)",
|
||||
"PE.Views.Animation.str1": "1 s (быстро)",
|
||||
"PE.Views.Animation.str2": "2 c (средне)",
|
||||
"PE.Views.Animation.str20": "20 с (крайне медленно)",
|
||||
"PE.Views.Animation.str3": "3 с (медленно)",
|
||||
"PE.Views.Animation.str5": "5 c (очень медленно)",
|
||||
"PE.Views.Animation.strDelay": "Задержка",
|
||||
"PE.Views.Animation.strDuration": "Длит.",
|
||||
"PE.Views.Animation.strRepeat": "Повтор",
|
||||
|
@ -1293,11 +1307,14 @@
|
|||
"PE.Views.Animation.textMoveLater": "Переместить вперед",
|
||||
"PE.Views.Animation.textMultiple": "Несколько",
|
||||
"PE.Views.Animation.textNone": "Нет",
|
||||
"PE.Views.Animation.textNoRepeat": "(нет)",
|
||||
"PE.Views.Animation.textOnClickOf": "По щелчку на",
|
||||
"PE.Views.Animation.textOnClickSequence": "По последовательности щелчков",
|
||||
"PE.Views.Animation.textStartAfterPrevious": "После предыдущего",
|
||||
"PE.Views.Animation.textStartOnClick": "По щелчку",
|
||||
"PE.Views.Animation.textStartWithPrevious": "Вместе с предыдущим",
|
||||
"PE.Views.Animation.textUntilEndOfSlide": "До окончания слайда",
|
||||
"PE.Views.Animation.textUntilNextClick": "До следующего щелчка",
|
||||
"PE.Views.Animation.txtAddEffect": "Добавить анимацию",
|
||||
"PE.Views.Animation.txtAnimationPane": "Область анимации",
|
||||
"PE.Views.Animation.txtParameters": "Параметры",
|
||||
|
@ -1522,7 +1539,7 @@
|
|||
"PE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню",
|
||||
"PE.Views.FileMenu.btnCreateNewCaption": "Создать новую",
|
||||
"PE.Views.FileMenu.btnDownloadCaption": "Скачать как...",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Выйти",
|
||||
"PE.Views.FileMenu.btnExitCaption": "Закрыть",
|
||||
"PE.Views.FileMenu.btnFileOpenCaption": "Открыть...",
|
||||
"PE.Views.FileMenu.btnHelpCaption": "Справка...",
|
||||
"PE.Views.FileMenu.btnHistoryCaption": "История версий",
|
||||
|
@ -2168,6 +2185,15 @@
|
|||
"PE.Views.Toolbar.tipInsertVideo": "Вставить видео",
|
||||
"PE.Views.Toolbar.tipLineSpace": "Междустрочный интервал",
|
||||
"PE.Views.Toolbar.tipMarkers": "Маркированный список",
|
||||
"PE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрелки",
|
||||
"PE.Views.Toolbar.tipMarkersCheckmark": "Маркеры-галочки",
|
||||
"PE.Views.Toolbar.tipMarkersDash": "Маркеры-тире",
|
||||
"PE.Views.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры",
|
||||
"PE.Views.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры",
|
||||
"PE.Views.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры",
|
||||
"PE.Views.Toolbar.tipMarkersHRound": "Пустые круглые маркеры",
|
||||
"PE.Views.Toolbar.tipMarkersStar": "Маркеры-звездочки",
|
||||
"PE.Views.Toolbar.tipNone": "Нет",
|
||||
"PE.Views.Toolbar.tipNumbers": "Нумерованный список",
|
||||
"PE.Views.Toolbar.tipPaste": "Вставить",
|
||||
"PE.Views.Toolbar.tipPreview": "Начать показ слайдов",
|
||||
|
|
|
@ -1522,7 +1522,7 @@
|
|||
"PE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单",
|
||||
"PE.Views.FileMenu.btnCreateNewCaption": "新建",
|
||||
"PE.Views.FileMenu.btnDownloadCaption": "下载为...",
|
||||
"PE.Views.FileMenu.btnExitCaption": "退出",
|
||||
"PE.Views.FileMenu.btnExitCaption": "关闭",
|
||||
"PE.Views.FileMenu.btnFileOpenCaption": "打开...",
|
||||
"PE.Views.FileMenu.btnHelpCaption": "帮助",
|
||||
"PE.Views.FileMenu.btnHistoryCaption": "版本历史",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "Quant a...",
|
||||
"textAbout": "Quant a",
|
||||
"textAddress": "Adreça",
|
||||
"textBack": "Enrere",
|
||||
"textEmail": "Correu electrònic",
|
||||
|
@ -11,8 +11,8 @@
|
|||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "Advertiment",
|
||||
"textAddComment": "Afegeix un comentari",
|
||||
"textAddReply": "Afegeix una resposta",
|
||||
"textAddComment": "Afegir comentari",
|
||||
"textAddReply": "Afegir Resposta",
|
||||
"textBack": "Enrere",
|
||||
"textCancel": "Cancel·la",
|
||||
"textCollaboration": "Col·laboració",
|
||||
|
@ -44,8 +44,8 @@
|
|||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "Les accions de copiar, tallar i enganxar mitjançant el menú contextual només es realitzaran en el fitxer actual.",
|
||||
"menuAddComment": "Afegeix un comentari",
|
||||
"menuAddLink": "Afegeix un enllaç",
|
||||
"menuAddComment": "Afegir comentari",
|
||||
"menuAddLink": "Afegir Enllaç",
|
||||
"menuCancel": "Cancel·la",
|
||||
"menuDelete": "Suprimeix",
|
||||
"menuDeleteTable": "Suprimeix la taula",
|
||||
|
@ -207,7 +207,7 @@
|
|||
"View": {
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Advertiment",
|
||||
"textAddLink": "Afegeix un enllaç",
|
||||
"textAddLink": "Afegir Enllaç",
|
||||
"textAddress": "Adreça",
|
||||
"textBack": "Enrere",
|
||||
"textCancel": "Cancel·la",
|
||||
|
@ -246,20 +246,20 @@
|
|||
"Edit": {
|
||||
"notcriticalErrorTitle": "Advertiment",
|
||||
"textActualSize": "Mida real",
|
||||
"textAddCustomColor": "Afegeix un color personalitzat",
|
||||
"textAddCustomColor": "Afegir Color Personalitzat",
|
||||
"textAdditional": "Addicional",
|
||||
"textAdditionalFormatting": "Format addicional",
|
||||
"textAdditionalFormatting": "Format Addicional",
|
||||
"textAddress": "Adreça",
|
||||
"textAfter": "Després",
|
||||
"textAlign": "Alineació",
|
||||
"textAlignBottom": "Alineació inferior",
|
||||
"textAlignCenter": "Alineació al centre",
|
||||
"textAlignLeft": "Alineació a l'esquerra",
|
||||
"textAlignLeft": "Alineació esquerra",
|
||||
"textAlignMiddle": "Alineació al mig",
|
||||
"textAlignRight": "Alineació a la dreta",
|
||||
"textAlignTop": "Alineació a la part superior",
|
||||
"textAllCaps": "Tot en majúscules",
|
||||
"textApplyAll": "Aplica-ho a totes les diapositives",
|
||||
"textAlignRight": "Alineació dreta",
|
||||
"textAlignTop": "Alineació Superior",
|
||||
"textAllCaps": "Tot Majúscules",
|
||||
"textApplyAll": "Aplicar a totes les diapositives",
|
||||
"textAuto": "Automàtic",
|
||||
"textAutomatic": "Automàtic",
|
||||
"textBack": "Enrere",
|
||||
|
@ -272,7 +272,7 @@
|
|||
"textBottomLeft": "Part inferior-Esquerra",
|
||||
"textBottomRight": "Part inferior-dreta",
|
||||
"textBringToForeground": "Porta al primer pla",
|
||||
"textBullets": "Pics",
|
||||
"textBullets": "Vinyetes",
|
||||
"textBulletsAndNumbers": "Pics i números",
|
||||
"textCaseSensitive": "Sensible a majúscules i minúscules",
|
||||
"textCellMargins": "Marges de la cel·la",
|
||||
|
@ -397,10 +397,10 @@
|
|||
"Settings": {
|
||||
"mniSlideStandard": "Estàndard (4:3)",
|
||||
"mniSlideWide": "Pantalla panoràmica (16:9)",
|
||||
"textAbout": "Quant a...",
|
||||
"textAbout": "Quant a",
|
||||
"textAddress": "adreça:",
|
||||
"textApplication": "Aplicació",
|
||||
"textApplicationSettings": "Configuració de l'aplicació",
|
||||
"textApplicationSettings": "Configurar Aplicació",
|
||||
"textAuthor": "Autor",
|
||||
"textBack": "Enrere",
|
||||
"textCaseSensitive": "Sensible a majúscules i minúscules",
|
||||
|
@ -466,7 +466,7 @@
|
|||
"txtScheme20": "Urbà",
|
||||
"txtScheme21": "Inspiració",
|
||||
"txtScheme22": "Crea Office",
|
||||
"txtScheme3": "Vèrtex",
|
||||
"txtScheme3": "Àpex",
|
||||
"txtScheme4": "Aspecte",
|
||||
"txtScheme5": "Cívic",
|
||||
"txtScheme6": "Esplanada",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "Despre",
|
||||
"textAbout": "Informații",
|
||||
"textAddress": "Adresă",
|
||||
"textBack": "Înapoi",
|
||||
"textEmail": "Email",
|
||||
|
@ -397,7 +397,7 @@
|
|||
"Settings": {
|
||||
"mniSlideStandard": "Standard (4:3)",
|
||||
"mniSlideWide": "Ecran lat (16:9)",
|
||||
"textAbout": "Despre",
|
||||
"textAbout": "Informații",
|
||||
"textAddress": "adresă:",
|
||||
"textApplication": "Aplicația",
|
||||
"textApplicationSettings": "Setări Aplicație",
|
||||
|
|
|
@ -1,384 +1,113 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "O aplikácii",
|
||||
"textAddress": "Address",
|
||||
"textBack": "Back",
|
||||
"textAddress": "Adresa",
|
||||
"textBack": "Späť",
|
||||
"textEmail": "Email",
|
||||
"textPoweredBy": "Powered By",
|
||||
"textPoweredBy": "Poháňaný ",
|
||||
"textTel": "Tel",
|
||||
"textVersion": "Version"
|
||||
},
|
||||
"View": {
|
||||
"Settings": {
|
||||
"textAbout": "O aplikácii",
|
||||
"mniSlideStandard": "Standard (4:3)",
|
||||
"mniSlideWide": "Widescreen (16:9)",
|
||||
"textAddress": "address:",
|
||||
"textApplication": "Application",
|
||||
"textApplicationSettings": "Application Settings",
|
||||
"textAuthor": "Author",
|
||||
"textBack": "Back",
|
||||
"textCaseSensitive": "Case Sensitive",
|
||||
"textCentimeter": "Centimeter",
|
||||
"textCollaboration": "Collaboration",
|
||||
"textColorSchemes": "Color Schemes",
|
||||
"textComment": "Comment",
|
||||
"textCreated": "Created",
|
||||
"textDarkTheme": "Dark Theme",
|
||||
"textDisableAll": "Disable All",
|
||||
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
|
||||
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
|
||||
"textDone": "Done",
|
||||
"textDownload": "Download",
|
||||
"textDownloadAs": "Download As...",
|
||||
"textEmail": "email:",
|
||||
"textEnableAll": "Enable All",
|
||||
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
|
||||
"textFind": "Find",
|
||||
"textFindAndReplace": "Find and Replace",
|
||||
"textFindAndReplaceAll": "Find and Replace All",
|
||||
"textHelp": "Help",
|
||||
"textHighlight": "Highlight Results",
|
||||
"textInch": "Inch",
|
||||
"textLastModified": "Last Modified",
|
||||
"textLastModifiedBy": "Last Modified By",
|
||||
"textLoading": "Loading...",
|
||||
"textLocation": "Location",
|
||||
"textMacrosSettings": "Macros Settings",
|
||||
"textNoTextFound": "Text not found",
|
||||
"textOwner": "Owner",
|
||||
"textPoint": "Point",
|
||||
"textPoweredBy": "Powered By",
|
||||
"textPresentationInfo": "Presentation Info",
|
||||
"textPresentationSettings": "Presentation Settings",
|
||||
"textPresentationTitle": "Presentation Title",
|
||||
"textPrint": "Print",
|
||||
"textReplace": "Replace",
|
||||
"textReplaceAll": "Replace All",
|
||||
"textSearch": "Search",
|
||||
"textSettings": "Settings",
|
||||
"textShowNotification": "Show Notification",
|
||||
"textSlideSize": "Slide Size",
|
||||
"textSpellcheck": "Spell Checking",
|
||||
"textSubject": "Subject",
|
||||
"textTel": "tel:",
|
||||
"textTitle": "Title",
|
||||
"textUnitOfMeasurement": "Unit Of Measurement",
|
||||
"textUploaded": "Uploaded",
|
||||
"textVersion": "Version",
|
||||
"txtScheme1": "Office",
|
||||
"txtScheme10": "Median",
|
||||
"txtScheme11": "Metro",
|
||||
"txtScheme12": "Module",
|
||||
"txtScheme13": "Opulent",
|
||||
"txtScheme14": "Oriel",
|
||||
"txtScheme15": "Origin",
|
||||
"txtScheme16": "Paper",
|
||||
"txtScheme17": "Solstice",
|
||||
"txtScheme18": "Technic",
|
||||
"txtScheme19": "Trek",
|
||||
"txtScheme2": "Grayscale",
|
||||
"txtScheme20": "Urban",
|
||||
"txtScheme21": "Verve",
|
||||
"txtScheme22": "New Office",
|
||||
"txtScheme3": "Apex",
|
||||
"txtScheme4": "Aspect",
|
||||
"txtScheme5": "Civic",
|
||||
"txtScheme6": "Concourse",
|
||||
"txtScheme7": "Equity",
|
||||
"txtScheme8": "Flow",
|
||||
"txtScheme9": "Foundry"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textAddLink": "Add Link",
|
||||
"textAddress": "Address",
|
||||
"textBack": "Back",
|
||||
"textCancel": "Cancel",
|
||||
"textColumns": "Columns",
|
||||
"textComment": "Comment",
|
||||
"textDefault": "Selected text",
|
||||
"textDisplay": "Display",
|
||||
"textEmptyImgUrl": "You need to specify the image URL.",
|
||||
"textExternalLink": "External Link",
|
||||
"textFirstSlide": "First Slide",
|
||||
"textImage": "Image",
|
||||
"textImageURL": "Image URL",
|
||||
"textInsert": "Insert",
|
||||
"textInsertImage": "Insert Image",
|
||||
"textLastSlide": "Last Slide",
|
||||
"textLink": "Link",
|
||||
"textLinkSettings": "Link Settings",
|
||||
"textLinkTo": "Link to",
|
||||
"textLinkType": "Link Type",
|
||||
"textNextSlide": "Next Slide",
|
||||
"textOk": "Ok",
|
||||
"textOther": "Other",
|
||||
"textPictureFromLibrary": "Picture from Library",
|
||||
"textPictureFromURL": "Picture from URL",
|
||||
"textPreviousSlide": "Previous Slide",
|
||||
"textRows": "Rows",
|
||||
"textScreenTip": "Screen Tip",
|
||||
"textShape": "Shape",
|
||||
"textSlide": "Slide",
|
||||
"textSlideInThisPresentation": "Slide in this Presentation",
|
||||
"textSlideNumber": "Slide Number",
|
||||
"textTable": "Table",
|
||||
"textTableSize": "Table Size",
|
||||
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textActualSize": "Actual Size",
|
||||
"textAddCustomColor": "Add Custom Color",
|
||||
"textAdditional": "Additional",
|
||||
"textAdditionalFormatting": "Additional Formatting",
|
||||
"textAddress": "Address",
|
||||
"textAfter": "After",
|
||||
"textAlign": "Align",
|
||||
"textAlignBottom": "Align Bottom",
|
||||
"textAlignCenter": "Align Center",
|
||||
"textAlignLeft": "Align Left",
|
||||
"textAlignMiddle": "Align Middle",
|
||||
"textAlignRight": "Align Right",
|
||||
"textAlignTop": "Align Top",
|
||||
"textAllCaps": "All Caps",
|
||||
"textApplyAll": "Apply to All Slides",
|
||||
"textAuto": "Auto",
|
||||
"textAutomatic": "Automatic",
|
||||
"textBack": "Back",
|
||||
"textBandedColumn": "Banded Column",
|
||||
"textBandedRow": "Banded Row",
|
||||
"textBefore": "Before",
|
||||
"textBlack": "Through Black",
|
||||
"textBorder": "Border",
|
||||
"textBottom": "Bottom",
|
||||
"textBottomLeft": "Bottom-Left",
|
||||
"textBottomRight": "Bottom-Right",
|
||||
"textBringToForeground": "Bring to Foreground",
|
||||
"textBullets": "Bullets",
|
||||
"textBulletsAndNumbers": "Bullets & Numbers",
|
||||
"textCaseSensitive": "Case Sensitive",
|
||||
"textCellMargins": "Cell Margins",
|
||||
"textChart": "Chart",
|
||||
"textClock": "Clock",
|
||||
"textClockwise": "Clockwise",
|
||||
"textColor": "Color",
|
||||
"textCounterclockwise": "Counterclockwise",
|
||||
"textCover": "Cover",
|
||||
"textCustomColor": "Custom Color",
|
||||
"textDefault": "Selected text",
|
||||
"textDelay": "Delay",
|
||||
"textDeleteSlide": "Delete Slide",
|
||||
"textDesign": "Design",
|
||||
"textDisplay": "Display",
|
||||
"textDistanceFromText": "Distance From Text",
|
||||
"textDistributeHorizontally": "Distribute Horizontally",
|
||||
"textDistributeVertically": "Distribute Vertically",
|
||||
"textDone": "Done",
|
||||
"textDoubleStrikethrough": "Double Strikethrough",
|
||||
"textDuplicateSlide": "Duplicate Slide",
|
||||
"textDuration": "Duration",
|
||||
"textEditLink": "Edit Link",
|
||||
"textEffect": "Effect",
|
||||
"textEffects": "Effects",
|
||||
"textEmptyImgUrl": "You need to specify the image URL.",
|
||||
"textExternalLink": "External Link",
|
||||
"textFade": "Fade",
|
||||
"textFill": "Fill",
|
||||
"textFinalMessage": "The end of slide preview. Click to exit.",
|
||||
"textFind": "Find",
|
||||
"textFindAndReplace": "Find and Replace",
|
||||
"textFirstColumn": "First Column",
|
||||
"textFirstSlide": "First Slide",
|
||||
"textFontColor": "Font Color",
|
||||
"textFontColors": "Font Colors",
|
||||
"textFonts": "Fonts",
|
||||
"textFromLibrary": "Picture from Library",
|
||||
"textFromURL": "Picture from URL",
|
||||
"textHeaderRow": "Header Row",
|
||||
"textHighlight": "Highlight Results",
|
||||
"textHighlightColor": "Highlight Color",
|
||||
"textHorizontalIn": "Horizontal In",
|
||||
"textHorizontalOut": "Horizontal Out",
|
||||
"textHyperlink": "Hyperlink",
|
||||
"textImage": "Image",
|
||||
"textImageURL": "Image URL",
|
||||
"textLastColumn": "Last Column",
|
||||
"textLastSlide": "Last Slide",
|
||||
"textLayout": "Layout",
|
||||
"textLeft": "Left",
|
||||
"textLetterSpacing": "Letter Spacing",
|
||||
"textLineSpacing": "Line Spacing",
|
||||
"textLink": "Link",
|
||||
"textLinkSettings": "Link Settings",
|
||||
"textLinkTo": "Link to",
|
||||
"textLinkType": "Link Type",
|
||||
"textMoveBackward": "Move Backward",
|
||||
"textMoveForward": "Move Forward",
|
||||
"textNextSlide": "Next Slide",
|
||||
"textNone": "None",
|
||||
"textNoStyles": "No styles for this type of chart.",
|
||||
"textNoTextFound": "Text not found",
|
||||
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
|
||||
"textNumbers": "Numbers",
|
||||
"textOk": "Ok",
|
||||
"textOpacity": "Opacity",
|
||||
"textOptions": "Options",
|
||||
"textPictureFromLibrary": "Picture from Library",
|
||||
"textPictureFromURL": "Picture from URL",
|
||||
"textPreviousSlide": "Previous Slide",
|
||||
"textPt": "pt",
|
||||
"textPush": "Push",
|
||||
"textRemoveChart": "Remove Chart",
|
||||
"textRemoveImage": "Remove Image",
|
||||
"textRemoveLink": "Remove Link",
|
||||
"textRemoveShape": "Remove Shape",
|
||||
"textRemoveTable": "Remove Table",
|
||||
"textReorder": "Reorder",
|
||||
"textReplace": "Replace",
|
||||
"textReplaceAll": "Replace All",
|
||||
"textReplaceImage": "Replace Image",
|
||||
"textRight": "Right",
|
||||
"textScreenTip": "Screen Tip",
|
||||
"textSearch": "Search",
|
||||
"textSec": "s",
|
||||
"textSelectObjectToEdit": "Select object to edit",
|
||||
"textSendToBackground": "Send to Background",
|
||||
"textShape": "Shape",
|
||||
"textSize": "Size",
|
||||
"textSlide": "Slide",
|
||||
"textSlideInThisPresentation": "Slide in this Presentation",
|
||||
"textSlideNumber": "Slide Number",
|
||||
"textSmallCaps": "Small Caps",
|
||||
"textSmoothly": "Smoothly",
|
||||
"textSplit": "Split",
|
||||
"textStartOnClick": "Start On Click",
|
||||
"textStrikethrough": "Strikethrough",
|
||||
"textStyle": "Style",
|
||||
"textStyleOptions": "Style Options",
|
||||
"textSubscript": "Subscript",
|
||||
"textSuperscript": "Superscript",
|
||||
"textTable": "Table",
|
||||
"textText": "Text",
|
||||
"textTheme": "Theme",
|
||||
"textTop": "Top",
|
||||
"textTopLeft": "Top-Left",
|
||||
"textTopRight": "Top-Right",
|
||||
"textTotalRow": "Total Row",
|
||||
"textTransitions": "Transitions",
|
||||
"textType": "Type",
|
||||
"textUnCover": "UnCover",
|
||||
"textVerticalIn": "Vertical In",
|
||||
"textVerticalOut": "Vertical Out",
|
||||
"textWedge": "Wedge",
|
||||
"textWipe": "Wipe",
|
||||
"textZoom": "Zoom",
|
||||
"textZoomIn": "Zoom In",
|
||||
"textZoomOut": "Zoom Out",
|
||||
"textZoomRotate": "Zoom and Rotate"
|
||||
}
|
||||
"textVersion": "Verzia"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"textAddComment": "Add Comment",
|
||||
"textAddReply": "Add Reply",
|
||||
"textBack": "Back",
|
||||
"textCancel": "Cancel",
|
||||
"textCollaboration": "Collaboration",
|
||||
"textComments": "Comments",
|
||||
"textDeleteComment": "Delete Comment",
|
||||
"textDeleteReply": "Delete Reply",
|
||||
"textDone": "Done",
|
||||
"textEdit": "Edit",
|
||||
"textEditComment": "Edit Comment",
|
||||
"textEditReply": "Edit Reply",
|
||||
"textEditUser": "Users who are editing the file:",
|
||||
"textMessageDeleteComment": "Do you really want to delete this comment?",
|
||||
"textMessageDeleteReply": "Do you really want to delete this reply?",
|
||||
"textNoComments": "This document doesn't contain comments",
|
||||
"textOk": "Ok",
|
||||
"textReopen": "Reopen",
|
||||
"textResolve": "Resolve",
|
||||
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
|
||||
"textUsers": "Users"
|
||||
"notcriticalErrorTitle": "Upozornenie",
|
||||
"textAddComment": "Pridať komentár",
|
||||
"textAddReply": "Pridať odpoveď",
|
||||
"textBack": "Späť",
|
||||
"textCancel": "Zrušiť",
|
||||
"textCollaboration": "Spolupráca",
|
||||
"textComments": "Komentáre",
|
||||
"textDeleteComment": "Vymazať komentár",
|
||||
"textDeleteReply": "Vymazať odpoveď",
|
||||
"textDone": "Hotovo",
|
||||
"textEdit": "Upraviť",
|
||||
"textEditComment": "Upraviť komentár",
|
||||
"textEditReply": "Upraviť odpoveď",
|
||||
"textEditUser": "Používatelia, ktorí súbor práve upravujú:",
|
||||
"textMessageDeleteComment": "Naozaj chcete zmazať tento komentár?",
|
||||
"textMessageDeleteReply": "Naozaj chcete zmazať túto odpoveď?",
|
||||
"textNoComments": "Tento dokument neobsahuje komentáre",
|
||||
"textOk": "OK",
|
||||
"textReopen": "Znovu otvoriť",
|
||||
"textResolve": "Vyriešiť",
|
||||
"textTryUndoRedo": "Funkcia Späť/Znova sú vypnuté pre rýchli režim spolupráce. ",
|
||||
"textUsers": "Používatelia"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "No Fill"
|
||||
"textNoFill": "Bez výplne"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Custom Colors",
|
||||
"textStandartColors": "Standard Colors",
|
||||
"textThemeColors": "Theme Colors"
|
||||
"textCustomColors": "Vlastné farby",
|
||||
"textStandartColors": "Štandardné farby",
|
||||
"textThemeColors": "Farebné témy"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
|
||||
"menuAddComment": "Add Comment",
|
||||
"menuAddLink": "Add Link",
|
||||
"menuCancel": "Cancel",
|
||||
"menuDelete": "Delete",
|
||||
"menuDeleteTable": "Delete Table",
|
||||
"menuEdit": "Edit",
|
||||
"menuMerge": "Merge",
|
||||
"menuMore": "More",
|
||||
"menuOpenLink": "Open Link",
|
||||
"menuSplit": "Split",
|
||||
"menuViewComment": "View Comment",
|
||||
"textColumns": "Columns",
|
||||
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
|
||||
"textDoNotShowAgain": "Don't show again",
|
||||
"textRows": "Rows"
|
||||
"errorCopyCutPaste": "Akcie kopírovania, vystrihovania a vkladania pomocou kontextovej ponuky sa budú vykonávať iba v práve otvorenom súbore.",
|
||||
"menuAddComment": "Pridať komentár",
|
||||
"menuAddLink": "Pridať odkaz",
|
||||
"menuCancel": "Zrušiť",
|
||||
"menuDelete": "Odstrániť",
|
||||
"menuDeleteTable": "Odstrániť tabuľku",
|
||||
"menuEdit": "Upraviť",
|
||||
"menuMerge": "Zlúčiť",
|
||||
"menuMore": "Viac",
|
||||
"menuOpenLink": "Otvoriť odkaz",
|
||||
"menuSplit": "Rozdeliť",
|
||||
"menuViewComment": "Zobraziť komentár",
|
||||
"textColumns": "Stĺpce",
|
||||
"textCopyCutPasteActions": "Akcia kopírovať, vystrihnúť a prilepiť",
|
||||
"textDoNotShowAgain": "Nezobrazovať znova",
|
||||
"textRows": "Riadky"
|
||||
},
|
||||
"Controller": {
|
||||
"Main": {
|
||||
"advDRMOptions": "Protected File",
|
||||
"advDRMPassword": "Password",
|
||||
"closeButtonText": "Close File",
|
||||
"criticalErrorTitle": "Error",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
|
||||
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"errorProcessSaveResult": "Saving failed.",
|
||||
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"advDRMOptions": "Chránený súbor",
|
||||
"advDRMPassword": "Heslo",
|
||||
"closeButtonText": "Zatvoriť súbor",
|
||||
"criticalErrorTitle": "Chyba",
|
||||
"errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.<br>Kontaktujte svojho správcu.",
|
||||
"errorOpensource": "Pomocou bezplatnej komunitnej verzie môžete otvárať dokumenty len na prezeranie. Na prístup k editorom mobilného webu je potrebná komerčná licencia.",
|
||||
"errorProcessSaveResult": "Ukladanie zlyhalo.",
|
||||
"errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.",
|
||||
"errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.",
|
||||
"leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.",
|
||||
"notcriticalErrorTitle": "Upozornenie",
|
||||
"SDK": {
|
||||
"Chart": "Chart",
|
||||
"Click to add first slide": "Click to add first slide",
|
||||
"Click to add notes": "Click to add notes",
|
||||
"ClipArt": "Clip Art",
|
||||
"Date and time": "Date and time",
|
||||
"Chart": "Graf",
|
||||
"Click to add first slide": "Kliknutím pridáte prvú snímku",
|
||||
"Click to add notes": "Kliknutím pridáte poznámky",
|
||||
"ClipArt": "Klipart",
|
||||
"Date and time": "Dátum a čas",
|
||||
"Diagram": "Diagram",
|
||||
"Diagram Title": "Chart Title",
|
||||
"Footer": "Footer",
|
||||
"Header": "Header",
|
||||
"Image": "Image",
|
||||
"Loading": "Loading",
|
||||
"Media": "Media",
|
||||
"None": "None",
|
||||
"Picture": "Picture",
|
||||
"Series": "Series",
|
||||
"Slide number": "Slide number",
|
||||
"Slide subtitle": "Slide subtitle",
|
||||
"Slide text": "Slide text",
|
||||
"Slide title": "Slide title",
|
||||
"Table": "Table",
|
||||
"X Axis": "X Axis XAS",
|
||||
"Y Axis": "Y Axis",
|
||||
"Your text here": "Your text here"
|
||||
"Diagram Title": "Názov grafu",
|
||||
"Footer": "Päta stránky",
|
||||
"Header": "Hlavička",
|
||||
"Image": "Obrázok",
|
||||
"Loading": "Nahrávanie",
|
||||
"Media": "Médiá ",
|
||||
"None": "žiadne",
|
||||
"Picture": "Obrázok",
|
||||
"Series": "Rady",
|
||||
"Slide number": "Číslo snímky",
|
||||
"Slide subtitle": "Podtitul snímku",
|
||||
"Slide text": "Text snímku",
|
||||
"Slide title": "Názov snímku",
|
||||
"Table": "Tabuľka",
|
||||
"X Axis": "Os X (XAS)",
|
||||
"Y Axis": "Os Y",
|
||||
"Your text here": "Tu napíšte svoj text"
|
||||
},
|
||||
"textAnonymous": "Anonymous",
|
||||
"textBuyNow": "Visit website",
|
||||
"textClose": "Close",
|
||||
"textContactUs": "Contact sales",
|
||||
"textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.",
|
||||
"textGuest": "Guest",
|
||||
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
|
||||
"textNo": "No",
|
||||
"textNoLicenseTitle": "License limit reached",
|
||||
"textNoTextFound": "Text not found",
|
||||
"textAnonymous": "Anonymný",
|
||||
"textBuyNow": "Navštíviť webovú stránku",
|
||||
"textClose": "Zatvoriť",
|
||||
"textContactUs": "Kontaktujte predajcu",
|
||||
"textCustomLoader": "Ľutujeme, nemáte nárok na výmenu zavádzača. Pre získanie cenovej ponuky kontaktujte prosím naše obchodné oddelenie.",
|
||||
"textGuest": "Návštevník",
|
||||
"textHasMacros": "Súbor obsahuje automatické makrá.<br>Naozaj chcete makra spustiť?",
|
||||
"textNo": "Nie",
|
||||
"textNoLicenseTitle": "Bol dosiahnutý limit licencie",
|
||||
"textNoTextFound": "Text nebol nájdený",
|
||||
"textOwner": "Owner",
|
||||
"textPoint": "Point",
|
||||
"textPoweredBy": "Powered By",
|
||||
|
@ -423,100 +152,371 @@
|
|||
"txtScheme9": "Foundry",
|
||||
"textDarkTheme": "Dark Theme",
|
||||
"textFeedback": "Feedback & Support",
|
||||
"textOpenFile": "Enter a password to open the file",
|
||||
"textPaidFeature": "Paid feature",
|
||||
"textRemember": "Remember my choice",
|
||||
"textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.",
|
||||
"textReplaceSuccess": "The search has been done. Occurrences replaced: {0}",
|
||||
"textYes": "Yes",
|
||||
"titleLicenseExp": "License expired",
|
||||
"titleServerVersion": "Editor updated",
|
||||
"titleUpdateVersion": "Version changed",
|
||||
"txtIncorrectPwd": "Password is incorrect",
|
||||
"txtProtected": "Once you enter the password and open the file, the current password to the file will be reset",
|
||||
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
|
||||
"warnLicenseExp": "Your license has expired. Please, update it and refresh the page.",
|
||||
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.",
|
||||
"warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
|
||||
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
|
||||
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"warnProcessRightsChange": "You don't have permission to edit the file."
|
||||
"textOpenFile": "Zadajte heslo na otvorenie súboru",
|
||||
"textPaidFeature": "Platená funkcia",
|
||||
"textRemember": "Zapamätaj si moju voľbu",
|
||||
"textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.",
|
||||
"textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}",
|
||||
"textYes": "Áno",
|
||||
"titleLicenseExp": "Platnosť licencie uplynula",
|
||||
"titleServerVersion": "Editor bol aktualizovaný",
|
||||
"titleUpdateVersion": "Verzia bola zmenená",
|
||||
"txtIncorrectPwd": "Heslo je chybné ",
|
||||
"txtProtected": "Akonáhle vložíte heslo a otvoríte súbor, terajšie heslo sa zresetuje.",
|
||||
"warnLicenseExceeded": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Ak sa chcete dozvedieť viac, kontaktujte svojho správcu.",
|
||||
"warnLicenseExp": "Platnosť vašej licencie vypršala. Aktualizujte ho a obnovte stránku.",
|
||||
"warnLicenseLimitedNoAccess": "Platnosť licencie vypršala. Nemáte prístup k funkciám úpravy dokumentov. Kontaktujte svojho správcu.",
|
||||
"warnLicenseLimitedRenewed": "Licenciu je potrebné obnoviť. Máte obmedzený prístup k funkciám úpravy dokumentov.<br>Ak chcete získať úplný prístup, kontaktujte svojho správcu",
|
||||
"warnLicenseUsersExceeded": "Dosiahli ste limit %1 editora v režime spolupráce na úpravách. Ohľadne podrobnosti sa obráťte na svojho správcu. ",
|
||||
"warnNoLicense": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Kontaktujte predajný tím %1 pre osobné podmienky inovácie.",
|
||||
"warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.",
|
||||
"warnProcessRightsChange": "Nemáte povolenie na úpravu súboru."
|
||||
}
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Conversion timeout exceeded.",
|
||||
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
|
||||
"criticalErrorTitle": "Error",
|
||||
"downloadErrorText": "Download failed.",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your admin.",
|
||||
"errorBadImageUrl": "Image URL is incorrect",
|
||||
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.<br>When you click the 'OK' button, you will be prompted to download the document.",
|
||||
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
|
||||
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
|
||||
"errorDataRange": "Incorrect data range.",
|
||||
"errorDefaultMessage": "Error code: %1",
|
||||
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download' option to save the file backup copy locally.",
|
||||
"errorFilePassProtect": "The file is password protected and could not be opened.",
|
||||
"errorFileSizeExceed": "The file size exceeds your server limitation.<br>Please, contact your admin.",
|
||||
"errorKeyEncrypt": "Unknown key descriptor",
|
||||
"errorKeyExpire": "Key descriptor expired",
|
||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
|
||||
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
|
||||
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
|
||||
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
|
||||
"errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"errorUserDrop": "The file cannot be accessed right now.",
|
||||
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download or print it until the connection is restored and the page is reloaded.",
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
"openErrorText": "An error has occurred while opening the file",
|
||||
"saveErrorText": "An error has occurred while saving the file",
|
||||
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
|
||||
"splitDividerErrorText": "The number of rows must be a divisor of %1",
|
||||
"splitMaxColsErrorText": "The number of columns must be less than %1",
|
||||
"splitMaxRowsErrorText": "The number of rows must be less than %1",
|
||||
"unknownErrorText": "Unknown error.",
|
||||
"uploadImageExtMessage": "Unknown image format.",
|
||||
"uploadImageFileCountMessage": "No images uploaded.",
|
||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
||||
"convertationTimeoutText": "Prekročený čas konverzie.",
|
||||
"criticalErrorExtText": "Stlačením tlačidla „OK“ sa vrátite do zoznamu dokumentov.",
|
||||
"criticalErrorTitle": "Chyba",
|
||||
"downloadErrorText": "Sťahovanie zlyhalo.",
|
||||
"errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.<br>Kontaktujte svojho správcu.",
|
||||
"errorBadImageUrl": "Adresa URL obrázku je nesprávna",
|
||||
"errorConnectToServer": "Tento dokument nie je možné uložiť. Skontrolujte nastavenia pripojenia alebo kontaktujte svojho správcu.<br>Keď kliknete na tlačidlo 'OK', zobrazí sa výzva na stiahnutie dokumentu.",
|
||||
"errorDatabaseConnection": "Externá chyba.<br>Chyba spojenia databázy. Obráťte sa prosím na podporu.",
|
||||
"errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.",
|
||||
"errorDataRange": "Nesprávny rozsah údajov.",
|
||||
"errorDefaultMessage": "Kód chyby: %1",
|
||||
"errorEditingDownloadas": "Počas práce s dokumentom sa vyskytla chyba.<br>Na lokálne uloženie záložnej kópie súboru použite možnosť „Stiahnuť“.",
|
||||
"errorFilePassProtect": "Súbor je chránený heslom a nebolo možné ho otvoriť.",
|
||||
"errorFileSizeExceed": "Veľkosť súboru presahuje obmedzenie vášho servera.<br>Kontaktujte svojho správcu.",
|
||||
"errorKeyEncrypt": "Neznámy kľúč deskriptoru",
|
||||
"errorKeyExpire": "Kľúč deskriptora vypršal",
|
||||
"errorLoadingFont": "Fonty sa nenahrali.<br>Kontaktujte prosím svojho administrátora Servera dokumentov.",
|
||||
"errorSessionAbsolute": "Platnosť relácie úpravy dokumentu vypršala. Prosím, načítajte stránku znova.",
|
||||
"errorSessionIdle": "Dokument nebol dlhší čas upravovaný. Prosím, načítajte stránku znova.",
|
||||
"errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.",
|
||||
"errorStockChart": "Nesprávne poradie riadkov. Ak chcete zostaviť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> otváracia cena, maximálna cena, minimálna cena, záverečná cena.",
|
||||
"errorUpdateVersionOnDisconnect": "Internetové pripojenie bolo obnovené a verzia súboru bola zmenená.<br>Skôr ako budete môcť pokračovať v práci, stiahnite súbor alebo skopírujte jeho obsah, aby ste sa uistili, že sa nič nestratí, a potom znova načítajte túto stránku.",
|
||||
"errorUserDrop": "K súboru teraz nie je možné získať prístup.",
|
||||
"errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený",
|
||||
"errorViewerDisconnect": "Spojenie je stratené. Dokument si stále môžete prezerať,<br>ale nebudete si ho môcť stiahnuť ani vytlačiť, kým sa neobnoví pripojenie a stránka sa znova nenačíta.",
|
||||
"notcriticalErrorTitle": "Upozornenie",
|
||||
"openErrorText": "Pri otváraní súboru sa vyskytla chyba",
|
||||
"saveErrorText": "Pri ukladaní súboru sa vyskytla chyba",
|
||||
"scriptLoadError": "Pripojenie je príliš pomalé, niektoré komponenty sa nepodarilo načítať. Prosím, načítajte stránku znova.",
|
||||
"splitDividerErrorText": "Počet riadkov musí byť deliteľom %1",
|
||||
"splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1",
|
||||
"splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1",
|
||||
"unknownErrorText": "Neznáma chyba.",
|
||||
"uploadImageExtMessage": "Neznámy formát obrázka.",
|
||||
"uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.",
|
||||
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
"applyChangesTitleText": "Loading Data",
|
||||
"downloadTextText": "Downloading document...",
|
||||
"downloadTitleText": "Downloading Document",
|
||||
"loadFontsTextText": "Loading data...",
|
||||
"loadFontsTitleText": "Loading Data",
|
||||
"loadFontTextText": "Loading data...",
|
||||
"loadFontTitleText": "Loading Data",
|
||||
"loadImagesTextText": "Loading images...",
|
||||
"loadImagesTitleText": "Loading Images",
|
||||
"loadImageTextText": "Loading image...",
|
||||
"loadImageTitleText": "Loading Image",
|
||||
"loadingDocumentTextText": "Loading document...",
|
||||
"loadingDocumentTitleText": "Loading document",
|
||||
"loadThemeTextText": "Loading theme...",
|
||||
"loadThemeTitleText": "Loading Theme",
|
||||
"openTextText": "Opening document...",
|
||||
"openTitleText": "Opening Document",
|
||||
"printTextText": "Printing document...",
|
||||
"printTitleText": "Printing Document",
|
||||
"savePreparingText": "Preparing to save",
|
||||
"savePreparingTitle": "Preparing to save. Please wait...",
|
||||
"saveTextText": "Saving document...",
|
||||
"saveTitleText": "Saving Document",
|
||||
"textLoadingDocument": "Loading document",
|
||||
"txtEditingMode": "Set editing mode...",
|
||||
"uploadImageTextText": "Uploading image...",
|
||||
"uploadImageTitleText": "Uploading Image",
|
||||
"waitText": "Please, wait..."
|
||||
"applyChangesTextText": "Načítavanie dát...",
|
||||
"applyChangesTitleText": "Načítavanie dát",
|
||||
"downloadTextText": "Sťahovanie dokumentu...",
|
||||
"downloadTitleText": "Sťahovanie dokumentu",
|
||||
"loadFontsTextText": "Načítavanie dát...",
|
||||
"loadFontsTitleText": "Načítavanie dát",
|
||||
"loadFontTextText": "Načítavanie dát...",
|
||||
"loadFontTitleText": "Načítavanie dát",
|
||||
"loadImagesTextText": "Načítavanie obrázkov...",
|
||||
"loadImagesTitleText": "Načítanie obrázkov",
|
||||
"loadImageTextText": "Načítanie obrázku...",
|
||||
"loadImageTitleText": "Načítavanie obrázku",
|
||||
"loadingDocumentTextText": "Načítavanie dokumentu ...",
|
||||
"loadingDocumentTitleText": "Načítavanie dokumentu",
|
||||
"loadThemeTextText": "Načítavanie témy...",
|
||||
"loadThemeTitleText": "Načítavanie témy",
|
||||
"openTextText": "Otváranie dokumentu...",
|
||||
"openTitleText": "Otváranie dokumentu",
|
||||
"printTextText": "Tlač dokumentu...",
|
||||
"printTitleText": "Tlač dokumentu",
|
||||
"savePreparingText": "Príprava na uloženie",
|
||||
"savePreparingTitle": "Príprava na uloženie. Prosím čakajte...",
|
||||
"saveTextText": "Ukladanie dokumentu...",
|
||||
"saveTitleText": "Ukladanie dokumentu",
|
||||
"textLoadingDocument": "Načítavanie dokumentu",
|
||||
"txtEditingMode": "Nastaviť režim úprav ...",
|
||||
"uploadImageTextText": "Nahrávanie obrázku...",
|
||||
"uploadImageTitleText": "Nahrávanie obrázku",
|
||||
"waitText": "Prosím čakajte..."
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
"dlgLeaveTitleText": "You leave the application",
|
||||
"leaveButtonText": "Leave this page",
|
||||
"stayButtonText": "Stay on this Page"
|
||||
"dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.",
|
||||
"dlgLeaveTitleText": "Opúšťate aplikáciu",
|
||||
"leaveButtonText": "Opustiť túto stránku",
|
||||
"stayButtonText": "Zostať na tejto stránke"
|
||||
},
|
||||
"View": {
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Upozornenie",
|
||||
"textAddLink": "Pridať odkaz",
|
||||
"textAddress": "Adresa",
|
||||
"textBack": "Späť",
|
||||
"textCancel": "Zrušiť",
|
||||
"textColumns": "Stĺpce",
|
||||
"textComment": "Komentár",
|
||||
"textDefault": "Vybraný text",
|
||||
"textDisplay": "Zobraziť",
|
||||
"textEmptyImgUrl": "Musíte zadať adresu URL obrázka.",
|
||||
"textExternalLink": "Externý odkaz",
|
||||
"textFirstSlide": "Prvá snímka",
|
||||
"textImage": "Obrázok",
|
||||
"textImageURL": "URL obrázka",
|
||||
"textInsert": "Vložiť",
|
||||
"textInsertImage": "Vložiť obrázok",
|
||||
"textLastSlide": "Posledná snímka",
|
||||
"textLink": "Odkaz",
|
||||
"textLinkSettings": "Nastavenia odkazu",
|
||||
"textLinkTo": "Odkaz na",
|
||||
"textLinkType": "Typ odkazu",
|
||||
"textNextSlide": "Nasledujúca snímka",
|
||||
"textOk": "OK",
|
||||
"textOther": "Ostatné",
|
||||
"textPictureFromLibrary": "Obrázok z Knižnice",
|
||||
"textPictureFromURL": "Obrázok z URL adresy",
|
||||
"textPreviousSlide": "Predchádzajúca snímka",
|
||||
"textRows": "Riadky",
|
||||
"textScreenTip": "Nápoveda",
|
||||
"textShape": "Tvar",
|
||||
"textSlide": "Snímka",
|
||||
"textSlideInThisPresentation": "Snímok v tejto prezentácii",
|
||||
"textSlideNumber": "Číslo snímky",
|
||||
"textTable": "Tabuľka",
|
||||
"textTableSize": "Veľkosť tabuľky",
|
||||
"txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\""
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Upozornenie",
|
||||
"textActualSize": "Predvolená veľkosť",
|
||||
"textAddCustomColor": "Pridať vlastnú farbu",
|
||||
"textAdditional": "Ďalšie",
|
||||
"textAdditionalFormatting": "Ďalšie formátovanie",
|
||||
"textAddress": "Adresa",
|
||||
"textAfter": "Po",
|
||||
"textAlign": "Zarovnať",
|
||||
"textAlignBottom": "Zarovnať dole",
|
||||
"textAlignCenter": "Zarovnať na stred",
|
||||
"textAlignLeft": "Zarovnať doľava",
|
||||
"textAlignMiddle": "Zarovnať na stred",
|
||||
"textAlignRight": "Zarovnať doprava",
|
||||
"textAlignTop": "Zarovnať nahor",
|
||||
"textAllCaps": "Všetko veľkými",
|
||||
"textApplyAll": "Použiť na všetky snímky",
|
||||
"textAuto": "Automaticky",
|
||||
"textAutomatic": "Automaticky",
|
||||
"textBack": "Späť",
|
||||
"textBandedColumn": "Pruhovaný stĺpec",
|
||||
"textBandedRow": "Pruhovaný riadok",
|
||||
"textBefore": "Pred",
|
||||
"textBlack": "Prostredníctvom čiernej",
|
||||
"textBorder": "Orámovanie",
|
||||
"textBottom": "Dole",
|
||||
"textBottomLeft": "Dole-vľavo",
|
||||
"textBottomRight": "Dole-vpravo",
|
||||
"textBringToForeground": "Premiestniť do popredia",
|
||||
"textBullets": "Odrážky",
|
||||
"textBulletsAndNumbers": "Odrážky & Číslovanie",
|
||||
"textCaseSensitive": "Rozlišovať veľkosť písmen",
|
||||
"textCellMargins": "Okraje bunky",
|
||||
"textChart": "Graf",
|
||||
"textClock": "Hodiny",
|
||||
"textClockwise": "V smere hodinových ručičiek",
|
||||
"textColor": "Farba",
|
||||
"textCounterclockwise": "Proti smeru hodinových ručičiek",
|
||||
"textCover": "Zakryť",
|
||||
"textCustomColor": "Vlastná farba",
|
||||
"textDefault": "Vybraný text",
|
||||
"textDelay": "Oneskorenie",
|
||||
"textDeleteSlide": "Odstrániť snímku",
|
||||
"textDesign": "Dizajn/náčrt",
|
||||
"textDisplay": "Zobraziť",
|
||||
"textDistanceFromText": "Vzdialenosť od textu",
|
||||
"textDistributeHorizontally": "Rozložiť horizontálne",
|
||||
"textDistributeVertically": "Rozložiť vertikálne",
|
||||
"textDone": "Hotovo",
|
||||
"textDoubleStrikethrough": "Dvojité preškrtnutie",
|
||||
"textDuplicateSlide": "Kopírovať snímku",
|
||||
"textDuration": "Trvanie",
|
||||
"textEditLink": "Upraviť odkaz",
|
||||
"textEffect": "Efekt",
|
||||
"textEffects": "Efekty",
|
||||
"textEmptyImgUrl": "Musíte zadať adresu URL obrázka.",
|
||||
"textExternalLink": "Externý odkaz",
|
||||
"textFade": "Vyblednúť",
|
||||
"textFill": "Vyplniť",
|
||||
"textFinalMessage": "Koniec prezentácie. Kliknutím ukončite.",
|
||||
"textFind": "Nájsť",
|
||||
"textFindAndReplace": "Nájsť a nahradiť",
|
||||
"textFirstColumn": "Prvý stĺpec",
|
||||
"textFirstSlide": "Prvá snímka",
|
||||
"textFontColor": "Farba písma",
|
||||
"textFontColors": "Farby písma",
|
||||
"textFonts": "Písma",
|
||||
"textFromLibrary": "Obrázok z Knižnice",
|
||||
"textFromURL": "Obrázok z URL adresy",
|
||||
"textHeaderRow": "Riadok hlavičky",
|
||||
"textHighlight": "Zvýrazniť výsledky",
|
||||
"textHighlightColor": "Farba zvýraznenia",
|
||||
"textHorizontalIn": "Horizontálne dnu",
|
||||
"textHorizontalOut": "Horizontálne von",
|
||||
"textHyperlink": "Hypertextový odkaz",
|
||||
"textImage": "Obrázok",
|
||||
"textImageURL": "URL obrázka",
|
||||
"textLastColumn": "Posledný stĺpec",
|
||||
"textLastSlide": "Posledná snímka",
|
||||
"textLayout": "Rozloženie",
|
||||
"textLeft": "Vľavo",
|
||||
"textLetterSpacing": "Rozstup medzi písmenami",
|
||||
"textLineSpacing": "Riadkovanie",
|
||||
"textLink": "Odkaz",
|
||||
"textLinkSettings": "Nastavenia odkazu",
|
||||
"textLinkTo": "Odkaz na",
|
||||
"textLinkType": "Typ odkazu",
|
||||
"textMoveBackward": "Posunúť späť",
|
||||
"textMoveForward": "Posunúť vpred",
|
||||
"textNextSlide": "Nasledujúca snímka",
|
||||
"textNone": "žiadne",
|
||||
"textNoStyles": "Žiadne štýly pre tento typ grafu.",
|
||||
"textNoTextFound": "Text nebol nájdený",
|
||||
"textNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"",
|
||||
"textNumbers": "Čísla",
|
||||
"textOk": "OK",
|
||||
"textOpacity": "Priehľadnosť",
|
||||
"textOptions": "Možnosti",
|
||||
"textPictureFromLibrary": "Obrázok z Knižnice",
|
||||
"textPictureFromURL": "Obrázok z URL adresy",
|
||||
"textPreviousSlide": "Predchádzajúca snímka",
|
||||
"textPt": "pt",
|
||||
"textPush": "Posunúť",
|
||||
"textRemoveChart": "Odstrániť graf",
|
||||
"textRemoveImage": "Odstrániť obrázok",
|
||||
"textRemoveLink": "Odstrániť odkaz",
|
||||
"textRemoveShape": "Odstrániť tvar",
|
||||
"textRemoveTable": "Odstrániť tabuľku",
|
||||
"textReorder": "Znovu usporiadať/zmena poradia",
|
||||
"textReplace": "Nahradiť",
|
||||
"textReplaceAll": "Nahradiť všetko",
|
||||
"textReplaceImage": "Nahradiť obrázok",
|
||||
"textRight": "Vpravo",
|
||||
"textScreenTip": "Nápoveda",
|
||||
"textSearch": "Hľadať",
|
||||
"textSec": "s",
|
||||
"textSelectObjectToEdit": "Vyberte objekt, ktorý chcete upraviť",
|
||||
"textSendToBackground": "Presunúť do pozadia",
|
||||
"textShape": "Tvar",
|
||||
"textSize": "Veľkosť",
|
||||
"textSlide": "Snímka",
|
||||
"textSlideInThisPresentation": "Snímok v tejto prezentácii",
|
||||
"textSlideNumber": "Číslo snímky",
|
||||
"textSmallCaps": "Malé písmená",
|
||||
"textSmoothly": "Plynule",
|
||||
"textSplit": "Rozdeliť",
|
||||
"textStartOnClick": "Začať kliknutím",
|
||||
"textStrikethrough": "Preškrtnutie",
|
||||
"textStyle": "Štýl",
|
||||
"textStyleOptions": "Možnosti štýlu",
|
||||
"textSubscript": "Dolný index",
|
||||
"textSuperscript": "Horný index",
|
||||
"textTable": "Tabuľka",
|
||||
"textText": "Text",
|
||||
"textTheme": "Téma",
|
||||
"textTop": "Hore",
|
||||
"textTopLeft": "Hore-vľavo",
|
||||
"textTopRight": "Hore-vpravo",
|
||||
"textTotalRow": "Celkový riadok",
|
||||
"textTransitions": "Prechod",
|
||||
"textType": "Typ",
|
||||
"textUnCover": "Odkryť",
|
||||
"textVerticalIn": "Vertikálne dnu",
|
||||
"textVerticalOut": "Vertikálne von",
|
||||
"textWedge": "Konjunkcia",
|
||||
"textWipe": "Rozotrieť",
|
||||
"textZoom": "Priblíženie",
|
||||
"textZoomIn": "Priblížiť",
|
||||
"textZoomOut": "Oddialiť",
|
||||
"textZoomRotate": "Priblížiť a otáčať"
|
||||
},
|
||||
"Settings": {
|
||||
"mniSlideStandard": "Štandard (4:3)",
|
||||
"mniSlideWide": "Širokouhlý (16:9)",
|
||||
"textAbout": "O aplikácii",
|
||||
"textAddress": "adresa:",
|
||||
"textApplication": "Aplikácia",
|
||||
"textApplicationSettings": "Nastavenia aplikácie",
|
||||
"textAuthor": "Autor",
|
||||
"textBack": "Späť",
|
||||
"textCaseSensitive": "Rozlišovať veľkosť písmen",
|
||||
"textCentimeter": "Centimeter",
|
||||
"textCollaboration": "Spolupráca",
|
||||
"textColorSchemes": "Farebné schémy",
|
||||
"textComment": "Komentár",
|
||||
"textCreated": "Vytvorené",
|
||||
"textDarkTheme": "Tmavá téma",
|
||||
"textDisableAll": "Vypnúť všetko",
|
||||
"textDisableAllMacrosWithNotification": "Zakázať všetky makrá s upozornením",
|
||||
"textDisableAllMacrosWithoutNotification": "Zakázať všetky makrá bez upozornení",
|
||||
"textDone": "Hotovo",
|
||||
"textDownload": "Stiahnuť",
|
||||
"textDownloadAs": "Stiahnuť ako...",
|
||||
"textEmail": "e-mail: ",
|
||||
"textEnableAll": "Povoliť všetko",
|
||||
"textEnableAllMacrosWithoutNotification": "Povoliť všetky makrá bez upozornenia",
|
||||
"textFind": "Nájsť",
|
||||
"textFindAndReplace": "Nájsť a nahradiť",
|
||||
"textFindAndReplaceAll": "Hľadať a nahradiť všetko",
|
||||
"textHelp": "Pomoc",
|
||||
"textHighlight": "Zvýrazniť výsledky",
|
||||
"textInch": "Palec (miera 2,54 cm)",
|
||||
"textLastModified": "Naposledy upravené",
|
||||
"textLastModifiedBy": "Naposledy upravil(a) ",
|
||||
"textLoading": "Načítava sa.....",
|
||||
"textLocation": "Umiestnenie",
|
||||
"textMacrosSettings": "Nastavenia makier",
|
||||
"textNoTextFound": "Text nebol nájdený",
|
||||
"textOwner": "Vlastník",
|
||||
"textPoint": "Bod",
|
||||
"textPoweredBy": "Poháňaný ",
|
||||
"textPresentationInfo": "Informácie o prezentácii",
|
||||
"textPresentationSettings": "Nastavení prezentácie",
|
||||
"textPresentationTitle": "Názov prezentácie",
|
||||
"textPrint": "Tlačiť",
|
||||
"textReplace": "Nahradiť",
|
||||
"textReplaceAll": "Nahradiť všetko",
|
||||
"textSearch": "Hľadať",
|
||||
"textSettings": "Nastavenia",
|
||||
"textShowNotification": "Ukázať oznámenie",
|
||||
"textSlideSize": "Veľkosť snímku",
|
||||
"textSpellcheck": "Kontrola pravopisu",
|
||||
"textSubject": "Predmet",
|
||||
"textTel": "Telefón:",
|
||||
"textTitle": "Názov",
|
||||
"textUnitOfMeasurement": "Jednotka merania",
|
||||
"textUploaded": "Nahrané",
|
||||
"textVersion": "Verzia",
|
||||
"txtScheme1": "Kancelária",
|
||||
"txtScheme10": "Medián",
|
||||
"txtScheme11": "Metro",
|
||||
"txtScheme12": "Modul",
|
||||
"txtScheme13": "Opulentný",
|
||||
"txtScheme14": "Výklenok",
|
||||
"txtScheme15": "Pôvod",
|
||||
"txtScheme16": "Papier",
|
||||
"txtScheme17": "Slnovrat",
|
||||
"txtScheme18": "Technika",
|
||||
"txtScheme19": "Cestovanie",
|
||||
"txtScheme2": "Odtiene sivej",
|
||||
"txtScheme20": "Mestský",
|
||||
"txtScheme21": "Elán",
|
||||
"txtScheme22": "Nová kancelária",
|
||||
"txtScheme3": "Vrchol",
|
||||
"txtScheme4": "Aspekt",
|
||||
"txtScheme5": "Občiansky",
|
||||
"txtScheme6": "Hala",
|
||||
"txtScheme7": "Spravodlivosť",
|
||||
"txtScheme8": "Tok",
|
||||
"txtScheme9": "Zlieváreň"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -10,10 +10,7 @@ class AddOtherController extends Component {
|
|||
constructor (props) {
|
||||
super(props);
|
||||
this.onStyleClick = this.onStyleClick.bind(this);
|
||||
this.initStyleTable = this.initStyleTable.bind(this);
|
||||
this.onGetTableStylesPreviews = this.onGetTableStylesPreviews.bind(this);
|
||||
|
||||
this.initTable = false;
|
||||
}
|
||||
|
||||
closeModal () {
|
||||
|
@ -24,14 +21,6 @@ class AddOtherController extends Component {
|
|||
}
|
||||
}
|
||||
|
||||
initStyleTable () {
|
||||
if (!this.initTable) {
|
||||
const api = Common.EditorApi.get();
|
||||
api.asc_GetDefaultTableStyles();
|
||||
this.initTable = true;
|
||||
}
|
||||
}
|
||||
|
||||
onStyleClick (type) {
|
||||
const api = Common.EditorApi.get();
|
||||
|
||||
|
@ -93,8 +82,10 @@ class AddOtherController extends Component {
|
|||
}
|
||||
|
||||
onGetTableStylesPreviews = () => {
|
||||
const api = Common.EditorApi.get();
|
||||
setTimeout(() => this.props.storeTableSettings.setStyles(api.asc_getTableStylesPreviews(true)), 1);
|
||||
if(this.props.storeTableSettings.arrayStylesDefault.length == 0) {
|
||||
const api = Common.EditorApi.get();
|
||||
setTimeout(() => this.props.storeTableSettings.setStyles(api.asc_getTableStylesPreviews(true), 'default'), 1);
|
||||
}
|
||||
}
|
||||
|
||||
hideAddComment () {
|
||||
|
@ -127,7 +118,6 @@ class AddOtherController extends Component {
|
|||
return (
|
||||
<AddOther closeModal={this.closeModal}
|
||||
onStyleClick={this.onStyleClick}
|
||||
initStyleTable={this.initStyleTable}
|
||||
hideAddComment={this.hideAddComment}
|
||||
onGetTableStylesPreviews = {this.onGetTableStylesPreviews}
|
||||
/>
|
||||
|
|
|
@ -7,6 +7,7 @@ class PresentationSettingsController extends Component {
|
|||
super(props);
|
||||
this.initSlideSize = this.initSlideSize.bind(this);
|
||||
this.onSlideSize = this.onSlideSize.bind(this);
|
||||
this.onColorSchemeChange = this.onColorSchemeChange.bind(this);
|
||||
this.initSlideSize();
|
||||
}
|
||||
|
||||
|
@ -47,6 +48,7 @@ class PresentationSettingsController extends Component {
|
|||
onColorSchemeChange(newScheme) {
|
||||
const api = Common.EditorApi.get();
|
||||
api.asc_ChangeColorSchemeByIdx(newScheme);
|
||||
this.props.storeTableSettings.setStyles([], 'default');
|
||||
}
|
||||
|
||||
|
||||
|
@ -62,4 +64,4 @@ class PresentationSettingsController extends Component {
|
|||
}
|
||||
}
|
||||
|
||||
export default inject("storePresentationSettings")(observer(PresentationSettingsController));
|
||||
export default inject("storePresentationSettings", "storeTableSettings")(observer(PresentationSettingsController));
|
|
@ -14,10 +14,12 @@ export class storeTableSettings {
|
|||
updateCellBorderColor: action,
|
||||
setAutoColor: action,
|
||||
colorAuto: observable,
|
||||
arrayStylesDefault: observable,
|
||||
});
|
||||
}
|
||||
|
||||
arrayStyles = [];
|
||||
arrayStylesDefault = [];
|
||||
colorAuto = 'auto';
|
||||
|
||||
setAutoColor(value) {
|
||||
|
@ -28,7 +30,7 @@ export class storeTableSettings {
|
|||
this.arrayStyles = [];
|
||||
}
|
||||
|
||||
setStyles (arrStyles) {
|
||||
setStyles (arrStyles, typeStyles) {
|
||||
let styles = [];
|
||||
for (let template of arrStyles) {
|
||||
styles.push({
|
||||
|
@ -36,6 +38,10 @@ export class storeTableSettings {
|
|||
templateId : template.asc_getId()
|
||||
});
|
||||
}
|
||||
|
||||
if(typeStyles === 'default') {
|
||||
return this.arrayStylesDefault = styles;
|
||||
}
|
||||
return this.arrayStyles = styles;
|
||||
}
|
||||
|
||||
|
|
|
@ -5,11 +5,10 @@ import { useTranslation } from 'react-i18next';
|
|||
import {Device} from "../../../../../common/mobile/utils/device";
|
||||
|
||||
const PageTable = props => {
|
||||
props.initStyleTable();
|
||||
const { t } = useTranslation();
|
||||
const _t = t('View.Add', {returnObjects: true});
|
||||
const storeTableSettings = props.storeTableSettings;
|
||||
const styles = storeTableSettings.arrayStyles;
|
||||
const styles = storeTableSettings.arrayStylesDefault;
|
||||
|
||||
return (
|
||||
<Page id={'add-table'}>
|
||||
|
@ -50,7 +49,6 @@ const AddOther = props => {
|
|||
<List>
|
||||
<ListItem title={_t.textTable} link={'/add-table/'} onClick = {() => props.onGetTableStylesPreviews()} routeProps={{
|
||||
onStyleClick: props.onStyleClick,
|
||||
initStyleTable: props.initStyleTable
|
||||
}}>
|
||||
<Icon slot="media" icon="icon-add-table"></Icon>
|
||||
</ListItem>
|
||||
|
|
|
@ -13,11 +13,13 @@ const EditShape = props => {
|
|||
const canFill = shapeObject && shapeObject.get_CanFill();
|
||||
|
||||
const shapeType = shapeObject.asc_getType();
|
||||
const hideChangeType = shapeObject.get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3'
|
||||
const hideChangeType = shapeObject.get_FromChart() || shapeObject.get_FromSmartArt()
|
||||
|| shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3'
|
||||
|| shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2'
|
||||
|| shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5'
|
||||
|| shapeType=='straightConnector1';
|
||||
|
||||
const isSmartArtInternal = shapeObject.get_FromSmartArtInternal();
|
||||
let disableRemove = !!props.storeFocusObjects.paragraphObject;
|
||||
|
||||
return (
|
||||
|
@ -41,10 +43,11 @@ const EditShape = props => {
|
|||
onReplace: props.onReplace
|
||||
}}></ListItem>
|
||||
}
|
||||
|
||||
<ListItem title={_t.textReorder} link="/edit-reorder-shape/" routeProps={{
|
||||
onReorder: props.onReorder
|
||||
}}></ListItem>
|
||||
{ !isSmartArtInternal &&
|
||||
<ListItem title={_t.textReorder} link="/edit-reorder-shape/" routeProps={{
|
||||
onReorder: props.onReorder
|
||||
}}></ListItem>
|
||||
}
|
||||
<ListItem title={_t.textAlign} link="/edit-align-shape/" routeProps={{
|
||||
onAlign: props.onAlign
|
||||
}}></ListItem>
|
||||
|
|
|
@ -66,11 +66,9 @@ const PageStyleOptions = props => {
|
|||
isBandVer = tableLook.get_BandVer();
|
||||
}
|
||||
|
||||
const openIndicator = () => props.onGetTableStylesPreviews();
|
||||
|
||||
return (
|
||||
<Page>
|
||||
<Navbar title={_t.textOptions} backLink={_t.textBack} onBackClick={openIndicator}>
|
||||
<Navbar title={_t.textOptions} backLink={_t.textBack} onBackClick={props.onGetTableStylesPreviews}>
|
||||
{Device.phone &&
|
||||
<NavRight>
|
||||
<Link sheetClose='#edit-sheet'>
|
||||
|
|
|
@ -2347,10 +2347,12 @@ define([
|
|||
menu.cmpEl.attr({tabindex: "-1"});
|
||||
}
|
||||
|
||||
var coord = me.api.asc_getActiveCellCoord(),
|
||||
var coord = me.api.asc_getActiveCellCoord(validation), // get merged cell for validation
|
||||
offset = {left:0,top:0},
|
||||
showPoint = [coord.asc_getX() + offset.left, (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top];
|
||||
showPoint = [coord.asc_getX() + offset.left + (validation ? coord.asc_getWidth() : 0), (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top];
|
||||
|
||||
menuContainer.css({left: showPoint[0], top : showPoint[1]});
|
||||
menu.menuAlign = validation ? 'tr-br' : 'tl-bl';
|
||||
|
||||
me._preventClick = validation;
|
||||
validation && menuContainer.attr('data-value', 'prevent-canvas-click');
|
||||
|
@ -2405,7 +2407,7 @@ define([
|
|||
|
||||
var coord = me.api.asc_getActiveCellCoord(),
|
||||
offset = {left:0,top:0},
|
||||
showPoint = [coord.asc_getX() + offset.left, (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top];
|
||||
showPoint = [coord.asc_getX() + offset.left + coord.asc_getWidth(), (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top];
|
||||
menuContainer.css({left: showPoint[0], top : showPoint[1]});
|
||||
|
||||
me._preventClick = true;
|
||||
|
|
|
@ -86,6 +86,7 @@ define([
|
|||
this.statusbar = this.createView('Statusbar').render();
|
||||
this.statusbar.$el.css('z-index', 10);
|
||||
this.statusbar.labelZoom.css('min-width', 80);
|
||||
this.statusbar.labelZoom.text(Common.Utils.String.format(this.zoomText, 100));
|
||||
this.statusbar.zoomMenu.on('item:click', _.bind(this.menuZoomClick, this));
|
||||
|
||||
this.bindViewEvents(this.statusbar, this.events);
|
||||
|
|
|
@ -1103,6 +1103,7 @@ define([
|
|||
|
||||
this.tableTotalMenu = new Common.UI.Menu({
|
||||
maxHeight: 160,
|
||||
menuAlign: 'tr-br',
|
||||
cyclic: false,
|
||||
cls: 'lang-menu',
|
||||
items: [
|
||||
|
|
|
@ -1664,6 +1664,7 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Адрабіць",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Адмацаваць вобласці",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрэлкі",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Выраўнаваць па верхняму краю",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Фінансавы",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Дадаць каментар",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Desfés",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Mobilitza subfinestres",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Pics de fletxa",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Pics de marca de selecció",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Pics de guió",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Pics de rombes plens",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Pics rodons plens",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Pics quadrats plens",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Pics rodons buits",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Pics d'estrella",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Alineació a dalt",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Comptabilitat",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Afegeix un comentari",
|
||||
|
@ -2018,7 +2026,7 @@
|
|||
"SSE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú",
|
||||
"SSE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou",
|
||||
"SSE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Surt",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Tancar",
|
||||
"SSE.Views.FileMenu.btnFileOpenCaption": "Obre...",
|
||||
"SSE.Views.FileMenu.btnHelpCaption": "Ajuda...",
|
||||
"SSE.Views.FileMenu.btnHistoryCaption": "Historial de versions",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Insereix una taula",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Insereix un quadre de text",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Insereix Text Art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Pics de fletxa",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Pics de guió",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Pics de rombes plens",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Pics rodons plens",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Pics quadrats plens",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Pics rodons buits",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Pics d'estrella",
|
||||
"SSE.Views.Toolbar.tipMerge": "Combina i centra",
|
||||
"SSE.Views.Toolbar.tipNone": "cap",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Format de número",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Vrátit zpět",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Zrušit ukotvení příček",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Šipkové odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Zatržítkové odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Vyplněné kulaté odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Plné čtvercové odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Duté kulaté odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Hvězdičkové odrážky",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Zarovnat nahoru",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Účetnictví",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Přidat komentář",
|
||||
|
@ -2018,7 +2026,7 @@
|
|||
"SSE.Views.FileMenu.btnCloseMenuCaption": "Zavřít nabídku",
|
||||
"SSE.Views.FileMenu.btnCreateNewCaption": "Vytvořit nový",
|
||||
"SSE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako…",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Konec",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Zavřít",
|
||||
"SSE.Views.FileMenu.btnFileOpenCaption": "Otevřít...",
|
||||
"SSE.Views.FileMenu.btnHelpCaption": "Nápověda…",
|
||||
"SSE.Views.FileMenu.btnHistoryCaption": "Historie verzí",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Vložit tabulku",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Vložit textové pole",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Vložit Text art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Šipkové odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Duté kulaté odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky",
|
||||
"SSE.Views.Toolbar.tipMerge": "Sloučit a vystředit",
|
||||
"SSE.Views.Toolbar.tipNone": "Žádné",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Formát čísla",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Rückgängig machen",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Fixierung aufheben",
|
||||
"SSE.Views.DocumentHolder.textVar": "VARIANZ",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Häkchenaufzählungszeichen",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Aufzählungszeichen",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Leere runde Aufzählungszeichen",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Sternförmige Aufzählungszeichen",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Oben ausrichten",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Rechnungswesen",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Kommentar hinzufügen",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Textfeld einfügen",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "TextArt einfügen",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Aufzählungszeichen",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen",
|
||||
"SSE.Views.Toolbar.tipMerge": "Verbinden und zentrieren",
|
||||
"SSE.Views.Toolbar.tipNone": "Keine",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Zahlenformat",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Αναίρεση",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Απελευθέρωση Παραθύρων",
|
||||
"SSE.Views.DocumentHolder.textVar": "Διαφορά",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Κουκίδες βέλη",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Κουκίδες παύλας",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Κουκίδες αστέρια",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Στοίχιση Πάνω",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Λογιστική",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Προσθήκη Σχολίου",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Εισαγωγή πίνακα",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Εισαγωγή πλαισίου κειμένου",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Εισαγωγή Τεχνοκειμένου",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Βέλη",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Τικ",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Παύλες",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Κουκίδες",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Τετράγωνα",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Κουκίδες άδειες",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Αστέρια",
|
||||
"SSE.Views.Toolbar.tipMerge": "Συγχώνευση και κεντράρισμα",
|
||||
"SSE.Views.Toolbar.tipNone": "Κανένα",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Μορφή αριθμού",
|
||||
|
|
|
@ -1926,6 +1926,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Undo",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Arrow bullets",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Checkmark bullets",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Dash bullets",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Filled rhombus bullets",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Filled round bullets",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Filled square bullets",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Hollow round bullets",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Star bullets",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Align Top",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Accounting",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Add Comment",
|
||||
|
@ -2024,7 +2032,7 @@
|
|||
"SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
|
||||
"SSE.Views.FileMenu.btnCreateNewCaption": "Create New",
|
||||
"SSE.Views.FileMenu.btnDownloadCaption": "Download as...",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Exit",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Close",
|
||||
"SSE.Views.FileMenu.btnFileOpenCaption": "Open...",
|
||||
"SSE.Views.FileMenu.btnHelpCaption": "Help...",
|
||||
"SSE.Views.FileMenu.btnHistoryCaption": "Version History",
|
||||
|
@ -3449,14 +3457,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Insert table",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Insert text box",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Insert Text Art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Arrow bullets",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Checkmark bullets",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Dash bullets",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Filled round bullets",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Filled square bullets",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Hollow round bullets",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Star bullets",
|
||||
"SSE.Views.Toolbar.tipMerge": "Merge and center",
|
||||
"SSE.Views.Toolbar.tipNone": "None",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Number format",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Deshacer",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Descongelar Paneles",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Viñetas de flecha",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos rellenos",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas rellenas",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cuadradas rellenas",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas huecas",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrella",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Alinear en la parte superior",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Contabilidad",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Agregar comentario",
|
||||
|
@ -2018,7 +2026,7 @@
|
|||
"SSE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú",
|
||||
"SSE.Views.FileMenu.btnCreateNewCaption": "Crear nueva",
|
||||
"SSE.Views.FileMenu.btnDownloadCaption": "Descargar como...",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Salir",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Cerrar",
|
||||
"SSE.Views.FileMenu.btnFileOpenCaption": "Abrir...",
|
||||
"SSE.Views.FileMenu.btnHelpCaption": "Ayuda...",
|
||||
"SSE.Views.FileMenu.btnHistoryCaption": "Historial de versiones",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Insertar tabla",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Inserta Texto Arte",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Viñetas guión",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Rombos rellenos",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas huecas",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Viñetas de estrella",
|
||||
"SSE.Views.Toolbar.tipMerge": "Combinar y centrar",
|
||||
"SSE.Views.Toolbar.tipNone": "Ninguno",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Formato de número",
|
||||
|
|
|
@ -3429,14 +3429,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Insérer un tableau",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Insérez zone de texte",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Insérer Text Art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Puces fléchées",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Puces coches",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Tirets",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Losanges remplis",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Puces arrondies remplies",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Puces carrées remplies",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Puces rondes vides",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Puces en étoile",
|
||||
"SSE.Views.Toolbar.tipMerge": "Fusionner et centrer",
|
||||
"SSE.Views.Toolbar.tipNone": "Aucun",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Format de nombre",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Desfacer",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Mobilizar paneis",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Viñetas de flecha",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos recheos",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas recheas",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cadradas recheas",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas ocas",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrela",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Aliñar á parte superior",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Contabilidade",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Engadir comentario",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Inserir táboa",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Inserir caixa do texto",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Inserir arte do texto",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Viñetas guión",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Rombos recheos",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas recheas",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas ocas",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Viñetas de estrela",
|
||||
"SSE.Views.Toolbar.tipMerge": "Combinar e centrar",
|
||||
"SSE.Views.Toolbar.tipNone": "Ningún",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Formato numérico",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Vissza",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Rögzítés eltávolítása",
|
||||
"SSE.Views.DocumentHolder.textVar": "Variancia",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Nyíl felsorolásjelek",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Kötőjel felsorolásjelek",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Tömör kör felsorolásjelek",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Tömör szögletes felsorolásjelek",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Üreges kör felsorolásjelek",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Csillag felsorolásjelek",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Felfelé rendez",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Könyvelés",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Megjegyzés hozzáadása",
|
||||
|
@ -3428,14 +3436,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Táblázat beszúrása",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Szövegdoboz beszúrása",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "TextArt beszúrása",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Csillag felsorolásjelek",
|
||||
"SSE.Views.Toolbar.tipMerge": "Összevonás és középre",
|
||||
"SSE.Views.Toolbar.tipNone": "Egyik sem",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Számformátum",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Annulla",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Sblocca i riquadri",
|
||||
"SSE.Views.DocumentHolder.textVar": "Varianza",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Punti elenco a freccia",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Punti elenco a segno di spunta",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Punti elenco a trattino",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Punti elenco a rombo pieno",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Punti elenco rotondi pieni",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Punti elenco quadrati pieni",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Punti elenco rotondi vuoti",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Punti elenco a stella",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Allinea in alto",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Contabilità",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Aggiungi commento",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Inserisci tabella",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Inserisci casella di testo",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Inserisci Text Art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Punti elenco a freccia",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Punti elenco a trattino",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Punti elenco a stella",
|
||||
"SSE.Views.Toolbar.tipMerge": "Unisci e centra",
|
||||
"SSE.Views.Toolbar.tipNone": "Nessuno",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Formato numero",
|
||||
|
|
|
@ -3380,7 +3380,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "テーブルの挿入",
|
||||
"SSE.Views.Toolbar.tipInsertText": "テキストボックスを挿入する",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "ワードアートの挿入",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "箇条書き(矢印)",
|
||||
"SSE.Views.Toolbar.tipMerge": "結合して、中央に配置する",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "数値の書式",
|
||||
"SSE.Views.Toolbar.tipPageMargins": "余白",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Desfazer",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Descongelar painéis",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Balas de flecha",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Marcas de verificação",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Marcadores de roteiro",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Vinhetas rômbicas cheias",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Balas redondas cheias",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Balas quadradas cheias",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Balas redondas ocas",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Balas de estrelas",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Alinhar à parte superior",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Contabilidade",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Adicionar comentário",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Inserir tabela",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Inserir caixa de texto",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Inserir arte de texto",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "balas de flecha",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "marcas de verificação",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "marcadores de roteiro",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "vinhetas rômbicas cheias",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "balas redondas cheias",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "balas quadradas cheias",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "balas redondas ocas",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "balas de estrelas",
|
||||
"SSE.Views.Toolbar.tipMerge": "Mesclar e centralizar",
|
||||
"SSE.Views.Toolbar.tipNone": "Nenhum",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Formato de número",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Anulează",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Dezghețare panouri",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Marcatori săgeată",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Marcatori simbol de bifare",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Marcatori cu o liniuță",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Marcatori romb umplut",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Marcatori cerc umplut",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Marcatori pătrat umplut",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Marcatori cerc gol ",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Marcatori stele",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Aliniere sus",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Contabilitate",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Adaugă comentariu",
|
||||
|
@ -2018,7 +2026,7 @@
|
|||
"SSE.Views.FileMenu.btnCloseMenuCaption": "Închidere meniu",
|
||||
"SSE.Views.FileMenu.btnCreateNewCaption": "Crearea unui document nou",
|
||||
"SSE.Views.FileMenu.btnDownloadCaption": "Descărcare ca...",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Ieșire",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Închidere",
|
||||
"SSE.Views.FileMenu.btnFileOpenCaption": "Deschidere...",
|
||||
"SSE.Views.FileMenu.btnHelpCaption": "Asistență...",
|
||||
"SSE.Views.FileMenu.btnHistoryCaption": "Istoricul versiune",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Inserare tabel",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Inserare casetă text",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Inserare TextArt",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Listă cu marcatori săgeată",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Listă cu marcatori cu o liniuță",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Listă cu marcatori romb umplut",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Listă cu marcatori cerc umplut",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Listă cu marcatori pătrat umplut",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Listă cu marcatori cerc gol ",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Listă cu marcatori stele",
|
||||
"SSE.Views.Toolbar.tipMerge": "Îmbinare și centrare",
|
||||
"SSE.Views.Toolbar.tipNone": "Niciuna",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Formatul de număr",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Отменить",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Снять закрепление областей",
|
||||
"SSE.Views.DocumentHolder.textVar": "Дисп",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрелки",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Маркеры-галочки",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Маркеры-тире",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Заполненные ромбовидные маркеры",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Заполненные круглые маркеры",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Заполненные квадратные маркеры",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Пустые круглые маркеры",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Маркеры-звездочки",
|
||||
"SSE.Views.DocumentHolder.topCellText": "По верхнему краю",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Финансовый",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Добавить комментарий",
|
||||
|
@ -2018,7 +2026,7 @@
|
|||
"SSE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню",
|
||||
"SSE.Views.FileMenu.btnCreateNewCaption": "Создать новую",
|
||||
"SSE.Views.FileMenu.btnDownloadCaption": "Скачать как...",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Выйти",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "Закрыть",
|
||||
"SSE.Views.FileMenu.btnFileOpenCaption": "Открыть...",
|
||||
"SSE.Views.FileMenu.btnHelpCaption": "Справка...",
|
||||
"SSE.Views.FileMenu.btnHistoryCaption": "История версий",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Вставить надпись",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Вставить объект Text Art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрелки",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Маркеры-галочки",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Маркеры-тире",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Пустые круглые маркеры",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Маркеры-звездочки",
|
||||
"SSE.Views.Toolbar.tipMerge": "Объединить и поместить в центре",
|
||||
"SSE.Views.Toolbar.tipNone": "Нет",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Числовой формат",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Krok späť",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Zrušiť priečky",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Šípkové odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Začiarknuteľné odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Kosoštvorcové odrážky s výplňou",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Vyplnené okrúhle odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Vyplnené štvorcové odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Prázdne okrúhle odrážky",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Hviezdičkové odrážky",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Zarovnať nahor",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Účtovníctvo",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Pridať komentár",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Vložiť textové pole",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Vložiť Text Art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Šípkové odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Začiarknuteľné odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Kosoštvorcové odrážky s výplňou",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Vyplnené okrúhle odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Vyplnené štvorcové odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Prázdne okrúhle odrážky",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Hviezdičkové odrážky",
|
||||
"SSE.Views.Toolbar.tipMerge": "Zlúčiť a vycentrovať",
|
||||
"SSE.Views.Toolbar.tipNone": "Žiadny",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Formát čísla",
|
||||
|
@ -3575,6 +3575,7 @@
|
|||
"SSE.Views.ViewManagerDlg.textLongName": "Vložte meno, ktorého dĺžka je menej ako 128 znakov.",
|
||||
"SSE.Views.ViewManagerDlg.textNew": "Nový",
|
||||
"SSE.Views.ViewManagerDlg.textRename": "Premenovať",
|
||||
"SSE.Views.ViewManagerDlg.textRenameError": "Názov zobrazenia nesmie byť prázdny.",
|
||||
"SSE.Views.ViewManagerDlg.textRenameLabel": "Premenovať pohľad",
|
||||
"SSE.Views.ViewManagerDlg.textViews": "Zobrazenie zošitu",
|
||||
"SSE.Views.ViewManagerDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Ångra",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Lås upp paneler",
|
||||
"SSE.Views.DocumentHolder.textVar": "Var",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Pil punkter",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Bock punkt",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Sträck punkter",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Fyllda romb punkter",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Fyllda runda punkter",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Fyllda kvadratiska punkter",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Ofyllda runda punkter",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Stjärn punkter",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Justera till toppen",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Redovisning",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Lägg till kommentar",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Infoga tabell",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Infoga textruta",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Infoga Text Art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Pil punkter",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Bock punkt",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Sträck punkter",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Fyllda runda punkter",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Ofyllda runda punkter",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Stjärnpunkter",
|
||||
"SSE.Views.Toolbar.tipMerge": "Slå samman och centrera",
|
||||
"SSE.Views.Toolbar.tipNone": "Inga",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Sifferformat",
|
||||
|
|
|
@ -1910,6 +1910,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Geri Al",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes",
|
||||
"SSE.Views.DocumentHolder.textVar": "Varyans",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Ok işaretleri",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Onay işaretleri",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Çizgi işaretleri",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Dolu yuvarlak işaretler",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Dolu kare işaretler",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "İçi boş daire işaretler",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Yıldız işaretleri",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Üste Hizala",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Muhasebe",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Yorum Ekle",
|
||||
|
@ -3379,12 +3387,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Tablo ekle",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Metin kutusu ekle",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Yazı Sanatı Ekle",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Ok işaretleri",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Onay işaretleri",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Çizgi işaretleri",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Dolu kare işaretler",
|
||||
"SSE.Views.Toolbar.tipMerge": "Birleştir ve ortala",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Sayı Formatı",
|
||||
"SSE.Views.Toolbar.tipPageMargins": "Sayfa kenar boşlukları",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "Скасувати",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "Розморозити грані",
|
||||
"SSE.Views.DocumentHolder.textVar": "Дисп",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "Маркери-стрілки",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Маркери-галочки",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "Маркери-тире",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Заповнені ромбоподібні маркери",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "Заповнені круглі маркери",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Заповнені квадратні маркери",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "Пусті круглі маркери",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "Маркери-зірочки",
|
||||
"SSE.Views.DocumentHolder.topCellText": "Вирівняти догори",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "Фінансовий",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "Додати коментар",
|
||||
|
@ -3428,14 +3436,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "Вставити таблицю",
|
||||
"SSE.Views.Toolbar.tipInsertText": "Вставити напис",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "Вставити текст Art",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "Маркери-стрілки",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "Маркери-галочки",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "Маркери-тире",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "Заповнені круглі маркери",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "Пусті круглі маркери",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "Маркери-зірочки",
|
||||
"SSE.Views.Toolbar.tipMerge": "Об'єднати та помістити в центрі",
|
||||
"SSE.Views.Toolbar.tipNone": "Немає",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "Номер формату",
|
||||
|
|
|
@ -1920,6 +1920,14 @@
|
|||
"SSE.Views.DocumentHolder.textUndo": "复原",
|
||||
"SSE.Views.DocumentHolder.textUnFreezePanes": "解冻窗格",
|
||||
"SSE.Views.DocumentHolder.textVar": "方差",
|
||||
"SSE.Views.DocumentHolder.tipMarkersArrow": "箭头项目符号",
|
||||
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "选中标记项目符号",
|
||||
"SSE.Views.DocumentHolder.tipMarkersDash": "划线项目符号",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "实心菱形项目符号",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFRound": "实心圆形项目符号",
|
||||
"SSE.Views.DocumentHolder.tipMarkersFSquare": "实心方形项目符号",
|
||||
"SSE.Views.DocumentHolder.tipMarkersHRound": "空心圆形项目符号",
|
||||
"SSE.Views.DocumentHolder.tipMarkersStar": "星形项目符号",
|
||||
"SSE.Views.DocumentHolder.topCellText": "顶端对齐",
|
||||
"SSE.Views.DocumentHolder.txtAccounting": "统计",
|
||||
"SSE.Views.DocumentHolder.txtAddComment": "添加批注",
|
||||
|
@ -2018,7 +2026,7 @@
|
|||
"SSE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单",
|
||||
"SSE.Views.FileMenu.btnCreateNewCaption": "新建",
|
||||
"SSE.Views.FileMenu.btnDownloadCaption": "下载为...",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "退出",
|
||||
"SSE.Views.FileMenu.btnExitCaption": "关闭",
|
||||
"SSE.Views.FileMenu.btnFileOpenCaption": "打开...",
|
||||
"SSE.Views.FileMenu.btnHelpCaption": "帮助",
|
||||
"SSE.Views.FileMenu.btnHistoryCaption": "版本历史",
|
||||
|
@ -3429,14 +3437,6 @@
|
|||
"SSE.Views.Toolbar.tipInsertTable": "插入表",
|
||||
"SSE.Views.Toolbar.tipInsertText": "插入文字",
|
||||
"SSE.Views.Toolbar.tipInsertTextart": "插入文字艺术",
|
||||
"SSE.Views.Toolbar.tipMarkersArrow": "箭头项目符号",
|
||||
"SSE.Views.Toolbar.tipMarkersCheckmark": "选中标记项目符号",
|
||||
"SSE.Views.Toolbar.tipMarkersDash": "划线项目符号",
|
||||
"SSE.Views.Toolbar.tipMarkersFRhombus": "实心菱形项目符号",
|
||||
"SSE.Views.Toolbar.tipMarkersFRound": "实心圆形项目符号",
|
||||
"SSE.Views.Toolbar.tipMarkersFSquare": "实心方形项目符号",
|
||||
"SSE.Views.Toolbar.tipMarkersHRound": "空心圆形项目符号",
|
||||
"SSE.Views.Toolbar.tipMarkersStar": "星形项目符号",
|
||||
"SSE.Views.Toolbar.tipMerge": "合并且居中",
|
||||
"SSE.Views.Toolbar.tipNone": "无",
|
||||
"SSE.Views.Toolbar.tipNumFormat": "数字格式",
|
||||
|
|
|
@ -10,8 +10,6 @@
|
|||
}
|
||||
|
||||
#status-zoom-box {
|
||||
width: 160px;
|
||||
//float: right;
|
||||
padding-top: 3px;
|
||||
|
||||
position: absolute;
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "Advertiment",
|
||||
"textAddComment": "Afegeix un comentari",
|
||||
"textAddReply": "Afegeix una resposta",
|
||||
"textAddComment": "Afegir comentari",
|
||||
"textAddReply": "Afegir Resposta",
|
||||
"textBack": "Enrere",
|
||||
"textCancel": "Cancel·la",
|
||||
"textCollaboration": "Col·laboració",
|
||||
|
@ -42,8 +42,8 @@
|
|||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "Les accions copia, talla i enganxa que utilitzen el menú contextual només s'executaran en el fitxer actual.",
|
||||
"errorInvalidLink": "La referència d'enllaç no existeix. Corregiu l'enllaç o suprimiu-lo.",
|
||||
"menuAddComment": "Afegeix un comentari",
|
||||
"menuAddLink": "Afegeix un enllaç",
|
||||
"menuAddComment": "Afegir comentari",
|
||||
"menuAddLink": "Afegir Enllaç",
|
||||
"menuCancel": "Cancel·la",
|
||||
"menuCell": "Cel·la",
|
||||
"menuDelete": "Suprimeix",
|
||||
|
@ -79,7 +79,7 @@
|
|||
"txtAll": "(Tots)",
|
||||
"txtArt": "El vostre text aquí",
|
||||
"txtBlank": "(en blanc)",
|
||||
"txtByField": "%1 de %2",
|
||||
"txtByField": "%1 del %2",
|
||||
"txtClearFilter": "Suprimeix el filtre (Alt + C)",
|
||||
"txtColLbls": "Etiquetes de la columna",
|
||||
"txtColumn": "Columna",
|
||||
|
@ -224,7 +224,7 @@
|
|||
"errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla",
|
||||
"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.",
|
||||
"errorWrongBracketsCount": "Hi ha un error en la fórmula. <br>El nombre de parèntesis no és correcte.",
|
||||
"errorWrongOperator": "S'ha produït un error en la fórmula. L'operador que s'utilitza no és correcte. <br>Corregiu l'error.",
|
||||
"errorWrongOperator": "\nS'ha produït un error en la fórmula introduïda. S'utilitza un operador incorrecte.<br>Corregiu l'error.",
|
||||
"notcriticalErrorTitle": "Advertiment",
|
||||
"openErrorText": "S'ha produït un error en obrir el fitxer",
|
||||
"pastInMergeAreaError": "No es pot canviar una part d'una cel·la combinada",
|
||||
|
@ -322,7 +322,7 @@
|
|||
"sCatMathematic": "Matemàtiques i trigonometria",
|
||||
"sCatStatistical": "Estadístiques",
|
||||
"sCatTextAndData": "Text i dades",
|
||||
"textAddLink": "Afegeix un enllaç",
|
||||
"textAddLink": "Afegir Enllaç",
|
||||
"textAddress": "Adreça",
|
||||
"textBack": "Enrere",
|
||||
"textCancel": "Cancel·la",
|
||||
|
@ -372,15 +372,15 @@
|
|||
"notcriticalErrorTitle": "Advertiment",
|
||||
"textAccounting": "Comptabilitat",
|
||||
"textActualSize": "Mida real",
|
||||
"textAddCustomColor": "Afegeix un color personalitzat",
|
||||
"textAddCustomColor": "Afegir Color Personalitzat",
|
||||
"textAddress": "Adreça",
|
||||
"textAlign": "Alineació",
|
||||
"textAlign": "Alinear",
|
||||
"textAlignBottom": "Alineació Inferior",
|
||||
"textAlignCenter": "Alineació al centre",
|
||||
"textAlignLeft": "Alineació a l'esquerra",
|
||||
"textAlignMiddle": "Alineació al mig",
|
||||
"textAlignRight": "Alineació a la dreta",
|
||||
"textAlignTop": "Alineació a dalt",
|
||||
"textAlignRight": "Alineació dreta",
|
||||
"textAlignTop": "Alineació superior",
|
||||
"textAllBorders": "Totes les vores",
|
||||
"textAngleClockwise": "Angle en sentit horari",
|
||||
"textAngleCounterclockwise": "Angle en sentit antihorari",
|
||||
|
|
|
@ -422,7 +422,7 @@
|
|||
"textEditLink": "Modifier le lien",
|
||||
"textEffects": "Effets",
|
||||
"textEmptyImgUrl": "Spécifiez l'URL de l'image",
|
||||
"textEmptyItem": "{Blancs}",
|
||||
"textEmptyItem": "{Vides}",
|
||||
"textErrorMsg": "Vous devez choisir au moins une valeur",
|
||||
"textErrorTitle": "Avertissement",
|
||||
"textEuro": "Euro",
|
||||
|
@ -524,8 +524,8 @@
|
|||
"textSheet": "Feuille",
|
||||
"textSize": "Taille",
|
||||
"textStyle": "Style",
|
||||
"textTenMillions": "10000000",
|
||||
"textTenThousands": "10000",
|
||||
"textTenMillions": "10 000 000",
|
||||
"textTenThousands": "10 000",
|
||||
"textText": "Texte",
|
||||
"textTextColor": "Couleur du texte",
|
||||
"textTextFormat": "Format du texte",
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -79,7 +79,7 @@
|
|||
"txtAll": "(全部)",
|
||||
"txtArt": "你的文本在此",
|
||||
"txtBlank": "(空白)",
|
||||
"txtByField": "%2的%1 ",
|
||||
"txtByField": "%1/%2",
|
||||
"txtClearFilter": "清除筛选器(Alt+C)",
|
||||
"txtColLbls": "列标签",
|
||||
"txtColumn": "列",
|
||||
|
|
|
@ -448,9 +448,9 @@ class MainController extends Component {
|
|||
boxSdk.append(dropdownListTarget);
|
||||
}
|
||||
|
||||
let coord = this.api.asc_getActiveCellCoord(),
|
||||
let coord = this.api.asc_getActiveCellCoord(validation),
|
||||
offset = {left: 0, top: 0},
|
||||
showPoint = [coord.asc_getX() + offset.left, (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top];
|
||||
showPoint = [coord.asc_getX() + offset.left + (validation ? coord.asc_getWidth() : 0), (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top];
|
||||
|
||||
dropdownListTarget.css({left: `${showPoint[0]}px`, top: `${showPoint[1]}px`});
|
||||
}
|
||||
|
|
|
@ -13,11 +13,13 @@ const EditShape = props => {
|
|||
const canFill = shapeObject && shapeObject.get_ShapeProperties().asc_getCanFill();
|
||||
|
||||
const shapeType = shapeObject.get_ShapeProperties().asc_getType();
|
||||
const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3'
|
||||
const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeObject.get_ShapeProperties().get_FromSmartArt()
|
||||
|| shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3'
|
||||
|| shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2'
|
||||
|| shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5'
|
||||
|| shapeType=='straightConnector1';
|
||||
|
||||
const isSmartArtInternal = shapeObject.get_ShapeProperties().get_FromSmartArtInternal();
|
||||
let disableRemove = storeFocusObjects.selections.indexOf('text') > -1;
|
||||
|
||||
return (
|
||||
|
@ -41,9 +43,11 @@ const EditShape = props => {
|
|||
onReplace: props.onReplace
|
||||
}}></ListItem>
|
||||
}
|
||||
<ListItem title={_t.textReorder} link="/edit-reorder-shape/" routeProps={{
|
||||
onReorder: props.onReorder
|
||||
}}></ListItem>
|
||||
{ !isSmartArtInternal &&
|
||||
<ListItem title={_t.textReorder} link="/edit-reorder-shape/" routeProps={{
|
||||
onReorder: props.onReorder
|
||||
}}></ListItem>
|
||||
}
|
||||
</List>
|
||||
<List className="buttons-list">
|
||||
<ListButton className={`button-red button-fill button-raised${disableRemove ? ' disabled' : ''}`} onClick={props.onRemoveShape}>{_t.textRemoveShape}</ListButton>
|
||||
|
|
17787
build/package-lock.json
generated
Normal file
17787
build/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "common",
|
||||
"version": "0.0.0",
|
||||
"version": "1.0.1",
|
||||
"homepage": "http://www.onlyoffice.com",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
|
|
1900
build/sprites/package-lock.json
generated
Normal file
1900
build/sprites/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
25964
vendor/framework7-react/npm-shrinkwrap.json
generated
vendored
Normal file
25964
vendor/framework7-react/npm-shrinkwrap.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
5
vendor/framework7-react/package.json
vendored
5
vendor/framework7-react/package.json
vendored
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "documenteditor",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "DocumentEditor",
|
||||
"repository": "",
|
||||
"license": "UNLICENSED",
|
||||
|
@ -75,5 +75,8 @@
|
|||
"webpack-cli": "^4.5.0",
|
||||
"webpack-dev-server": "^3.11.2",
|
||||
"workbox-webpack-plugin": "^6.1.2"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"fsevents": "~2.3.2"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue