Merge branch 'develop' into feature/de-settings

This commit is contained in:
Julia Svinareva 2019-08-07 10:34:47 +03:00
commit 4ac912188b
175 changed files with 2916 additions and 782 deletions

View file

@ -198,6 +198,10 @@
.btn.small;
&.bg-white {
background-color: #fff;
}
&:before,
&:after {
content: "";

View file

@ -542,6 +542,10 @@
}
}
.img-toolbarmenu.btn-ic-docspell {
.background-ximage('@{common-image-path}/controls/toolbar-menu-ru.png', '@{common-image-path}/controls/toolbar-menu-ru@2x.png', 60px);
}
.button-normal-icon(btn-notes, 77, @toolbar-big-icon-size);
.button-normal-icon(btn-controls, 78, @toolbar-big-icon-size);

View file

@ -1,6 +1,10 @@
{
"common.view.modals.txtCopy": "Másolás a vágólapra",
"common.view.modals.txtEmbed": "Beágyaz",
"common.view.modals.txtHeight": "Magasság",
"common.view.modals.txtShare": "Hivatkozás megosztása",
"common.view.modals.txtWidth": "Szélesség",
"DE.ApplicationController.convertationErrorText": "Az átalakítás nem sikerült.",
"DE.ApplicationController.convertationTimeoutText": "Időtúllépés az átalakítás során.",
"DE.ApplicationController.criticalErrorTitle": "Hiba",
"DE.ApplicationController.downloadErrorText": "Sikertelen letöltés.",
@ -12,10 +16,13 @@
"DE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés",
"DE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.",
"DE.ApplicationController.textLoadingDocument": "Dokumentum betöltése",
"DE.ApplicationController.textOf": "of",
"DE.ApplicationController.txtClose": "Bezár",
"DE.ApplicationController.unknownErrorText": "Ismeretlen hiba.",
"DE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.",
"DE.ApplicationController.waitText": "Kérjük várjon...",
"DE.ApplicationView.txtDownload": "Letöltés",
"DE.ApplicationView.txtEmbed": "Beágyaz",
"DE.ApplicationView.txtFullScreen": "Teljes képernyő",
"DE.ApplicationView.txtShare": "Megosztás"
}

View file

@ -1,6 +1,8 @@
{
"common.view.modals.txtCopy": "Panoya kopyala",
"common.view.modals.txtEmbed": "Gömülü",
"common.view.modals.txtHeight": "Yükseklik",
"common.view.modals.txtShare": "Bağlantıyı Paylaş",
"common.view.modals.txtWidth": "Genişlik",
"DE.ApplicationController.convertationErrorText": "Değişim başarısız oldu.",
"DE.ApplicationController.convertationTimeoutText": "Değişim süresi aşıldı.",
@ -12,11 +14,15 @@
"DE.ApplicationController.errorFilePassProtect": "Döküman şifre korumalı ve açılamadı",
"DE.ApplicationController.errorUserDrop": "Belgeye şu an erişilemiyor.",
"DE.ApplicationController.notcriticalErrorTitle": "Uyarı",
"DE.ApplicationController.scriptLoadError": "Bağlantı çok yavaş, bileşenlerin bazıları yüklenemedi. Lütfen sayfayı yenileyin.",
"DE.ApplicationController.textLoadingDocument": "Döküman yükleniyor",
"DE.ApplicationController.textOf": "'in",
"DE.ApplicationController.txtClose": "Kapat",
"DE.ApplicationController.unknownErrorText": "Bilinmeyen hata.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Tarayıcınız desteklenmiyor.",
"DE.ApplicationController.waitText": "Lütfen bekleyin...",
"DE.ApplicationView.txtDownload": "İndir",
"DE.ApplicationView.txtEmbed": "Gömülü",
"DE.ApplicationView.txtFullScreen": "Tam Ekran",
"DE.ApplicationView.txtShare": "Paylaş"
}

View file

@ -302,7 +302,10 @@ define([
buttons: ['ok', 'cancel'],
callback: _.bind(function(btn){
if (btn == 'ok') {
Common.NotificationCenter.trigger('download:advanced', Asc.c_oAscAdvancedOptionsID.TXT, this.api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format));
if (format == Asc.c_oAscFileType.TXT)
Common.NotificationCenter.trigger('download:advanced', Asc.c_oAscAdvancedOptionsID.TXT, this.api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format));
else
this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format));
menu.hide();
}
}, this)
@ -328,6 +331,7 @@ define([
var opts = new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.DOCX);
opts.asc_setCompatible(!!Common.Utils.InternalSettings.get("de-settings-compatible"));
this.api.asc_DownloadAs(opts);
menu.hide();
}
} else {
this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format));
@ -348,7 +352,10 @@ define([
callback: _.bind(function(btn){
if (btn == 'ok') {
this.isFromFileDownloadAs = ext;
Common.NotificationCenter.trigger('download:advanced', Asc.c_oAscAdvancedOptionsID.TXT, this.api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format, true));
if (format == Asc.c_oAscFileType.TXT)
Common.NotificationCenter.trigger('download:advanced', Asc.c_oAscAdvancedOptionsID.TXT, this.api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format, true));
else
this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format, true));
menu.hide();
}
}, this)
@ -376,6 +383,7 @@ define([
var opts = new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.DOCX, true);
opts.asc_setCompatible(!!Common.Utils.InternalSettings.get("de-settings-compatible"));
this.api.asc_DownloadAs(opts);
menu.hide();
}
} else {
this.isFromFileDownloadAs = ext;

View file

@ -317,7 +317,7 @@ define([
});
}
me.defaultTitleText = me.defaultTitleText || '{{APP_TITLE_TEXT}}';
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');

View file

@ -177,6 +177,16 @@
<div id="shape-btn-change" style="display: inline-block; float:right;"></div>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<div class="separator horizontal"></div>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<div id="shape-checkbox-shadow"></div>
</td>
</tr>
<tr class="shape-only">
<td class="padding-small">
<div class="separator horizontal"></div>

View file

@ -2746,6 +2746,13 @@ define([
}
});
var menuToDictionaryTable = new Common.UI.MenuItem({
caption : me.toDictionaryText
}).on('click', function(item, e) {
me.api.asc_spellCheckAddToDictionary(me._currentSpellObj);
me.fireEvent('editcomplete', me);
});
var menuIgnoreSpellTableSeparator = new Common.UI.MenuItem({
caption : '--'
});
@ -2764,6 +2771,7 @@ define([
menuIgnoreSpellTableSeparator,
menuIgnoreSpellTable,
menuIgnoreAllSpellTable,
menuToDictionaryTable,
{ caption: '--' },
me.langTableMenu
]
@ -2987,6 +2995,7 @@ define([
menuParagraphAdvancedInTable.setDisabled(disabled);
me.menuSpellCheckTable.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuToDictionaryTable.setVisible(me.mode.isDesktopApp);
menuSpellcheckTableSeparator.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
me.langTableMenu.setDisabled(disabled);
@ -3366,6 +3375,13 @@ define([
me.fireEvent('editcomplete', me);
});
var menuToDictionaryPara = new Common.UI.MenuItem({
caption : me.toDictionaryText
}).on('click', function(item, e) {
me.api.asc_spellCheckAddToDictionary(me._currentSpellObj);
me.fireEvent('editcomplete', me);
});
var menuIgnoreSpellParaSeparator = new Common.UI.MenuItem({
caption : '--'
});
@ -3553,15 +3569,17 @@ define([
menuParaPaste.setDisabled(disabled);
// spellCheck
me.menuSpellPara.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuSpellcheckParaSeparator.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuIgnoreSpellPara.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuIgnoreAllSpellPara.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
me.langParaMenu.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
var spell = (value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
me.menuSpellPara.setVisible(spell);
menuSpellcheckParaSeparator.setVisible(spell);
menuIgnoreSpellPara.setVisible(spell);
menuIgnoreAllSpellPara.setVisible(spell);
menuToDictionaryPara.setVisible(spell && me.mode.isDesktopApp);
me.langParaMenu.setVisible(spell);
me.langParaMenu.setDisabled(disabled);
menuIgnoreSpellParaSeparator.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuIgnoreSpellParaSeparator.setVisible(spell);
if (value.spellProps!==undefined && value.spellProps.value.get_Checked()===false && value.spellProps.value.get_Variants() !== null && value.spellProps.value.get_Variants() !== undefined) {
if (spell && value.spellProps.value.get_Variants() !== null && value.spellProps.value.get_Variants() !== undefined) {
me.addWordVariants(true);
} else {
me.menuSpellPara.setCaption(me.loadSpellText, true);
@ -3576,9 +3594,9 @@ define([
//equation menu
var eqlen = 0;
if (isEquation) {
eqlen = me.addEquationMenu(true, 11);
eqlen = me.addEquationMenu(true, 12);
} else
me.clearEquationMenu(true, 11);
me.clearEquationMenu(true, 12);
menuEquationSeparator.setVisible(isEquation && eqlen>0);
menuFrameAdvanced.setVisible(value.paraProps.value.get_FramePr() !== undefined);
@ -3635,6 +3653,7 @@ define([
menuSpellcheckParaSeparator,
menuIgnoreSpellPara,
menuIgnoreAllSpellPara,
menuToDictionaryPara,
me.langParaMenu,
menuIgnoreSpellParaSeparator,
menuParaCut,
@ -4055,7 +4074,8 @@ define([
textCrop: 'Crop',
textCropFill: 'Fill',
textCropFit: 'Fit',
textFollow: 'Follow move'
textFollow: 'Follow move',
toDictionaryText: 'Add to Dictionary'
}, DE.Views.DocumentHolder || {}));
});

View file

@ -123,7 +123,7 @@ define([
'</div>',
'<div class="footer center">',
'<button class="btn normal dlg-btn primary" result="insert" style="margin-right: 10px; width: 86px;">' + me.textInsert + '</button>',
'<button id="note-settings-btn-apply" class="btn normal dlg-btn primary" result="apply" style="margin-right: 10px; width: 86px;">' + me.textApply + '</button>',
'<button id="note-settings-btn-apply" class="btn normal dlg-btn" result="apply" style="margin-right: 10px; width: 86px;">' + me.textApply + '</button>',
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + me.textCancel + '</button>',
'</div>'
].join('')
@ -271,17 +271,17 @@ define([
},
onDlgBtnClick: function(event) {
var me = this;
var state = (typeof(event) == 'object') ? event.currentTarget.attributes['result'].value : event;
if (state == 'insert' || state == 'apply') {
this.handler && this.handler.call(this, state, (state == 'insert' || state == 'apply') ? this.getSettings() : undefined);
}
this.close();
this._handleInput((typeof(event) == 'object') ? event.currentTarget.attributes['result'].value : event);
},
onPrimary: function() {
return true;
this._handleInput('insert');
return false;
},
_handleInput: function(state) {
this.handler && this.handler.call(this, state, (state == 'insert' || state == 'apply') ? this.getSettings() : undefined);
this.close();
},
onFormatSelect: function(combo, record) {

View file

@ -1156,6 +1156,8 @@ define([
this._state.GradColor = color;
}
this.chShadow.setValue(!!shapeprops.asc_getShadow(), true);
this._noApply = false;
}
},
@ -1466,6 +1468,13 @@ define([
this.btnChangeShape.render( $('#shape-btn-change')) ;
this.lockedControls.push(this.btnChangeShape);
this.chShadow = new Common.UI.CheckBox({
el: $('#shape-checkbox-shadow'),
labelText: this.strShadow
});
this.chShadow.on('change', _.bind(this.onCheckShadow, this));
this.lockedControls.push(this.chShadow);
this.linkAdvanced = $('#shape-advanced-link');
$(this.el).on('click', '#shape-advanced-link', _.bind(this.openAdvancedSettings, this));
},
@ -1591,6 +1600,16 @@ define([
this.fireEvent('editcomplete', this);
},
onCheckShadow: function(field, newValue, oldValue, eOpts) {
if (this.api) {
var props = new Asc.asc_CShapeProperty();
props.asc_putShadow((field.getValue()=='checked') ? new Asc.asc_CShadowProperty() : null);
this.imgprops.put_ShapeProperties(props);
this.api.ImgApply(this.imgprops);
}
this.fireEvent('editcomplete', this);
},
fillAutoShapes: function() {
var me = this,
shapesStore = this.application.getCollection('ShapeGroups');
@ -1854,6 +1873,7 @@ define([
textHint270: 'Rotate 90° Counterclockwise',
textHint90: 'Rotate 90° Clockwise',
textHintFlipV: 'Flip Vertically',
textHintFlipH: 'Flip Horizontally'
textHintFlipH: 'Flip Horizontally',
strShadow: 'Show shadow'
}, DE.Views.ShapeSettings || {}));
});

View file

@ -2278,7 +2278,7 @@ define([
textTitleError: 'Error',
textInsertPageNumber: 'Insert page number',
textToCurrent: 'To Current Position',
tipEditHeader: 'Edit Document Header or Footer',
tipEditHeader: 'Edit header or footer',
mniEditHeader: 'Edit Document Header',
mniEditFooter: 'Edit Document Footer',
mniHiddenChars: 'Nonprinting Characters',

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Внимание",
"Common.Controllers.Chat.textEnterMessage": "Въведете съобщението си тук",
"Common.Controllers.Chat.textUserLimit": "Използвате ONLYOFFICE Free Edition. <br> Само двама потребители могат да редактират документа едновременно. <br> Искате ли повече? Помислете за закупуване на ONLYOFFICE Enterprise Edition. <br> <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\"> Прочетете повече </a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Анонимен",
"Common.Controllers.ExternalDiagramEditor.textClose": "Затвори",
"Common.Controllers.ExternalDiagramEditor.warningText": "Обектът е деактивиран, защото се редактира от друг потребител.",
@ -333,7 +332,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализация. ",
"DE.Controllers.Main.criticalErrorExtText": "Натиснете \"OK\", за да се върнете към списъка с документи.",
"DE.Controllers.Main.criticalErrorTitle": "Грешка",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Редактор на документи",
"DE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.",
"DE.Controllers.Main.downloadMergeText": "Изтегля се ...",
"DE.Controllers.Main.downloadMergeTitle": "Изтеглянето",
@ -1346,7 +1344,6 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Промяна на правото за достъп",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата на създаването",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Зареждане...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Страници",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Параграфи",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Varování",
"Common.Controllers.Chat.textEnterMessage": "Zde napište svou zprávu",
"Common.Controllers.Chat.textUserLimit": "Používáte ONLYOFFICE bezplatnou edici.<br>Pouze dva uživatelé mohou zároveň upravovat dokument.<br>Chcete více? Zvažte zakoupení ONLYOFFICE Enterprise edice.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Více informací</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymní",
"Common.Controllers.ExternalDiagramEditor.textClose": "Zavřít",
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je vypnut, protože je upravován jiným uživatelem.",
@ -243,7 +242,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.",
"DE.Controllers.Main.criticalErrorExtText": "Kliněte na \"OK\" pro návrat k seznamu dokumentů",
"DE.Controllers.Main.criticalErrorTitle": "Chyba",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor dokumentů",
"DE.Controllers.Main.downloadErrorText": "Stahování selhalo.",
"DE.Controllers.Main.downloadMergeText": "Stahování...",
"DE.Controllers.Main.downloadMergeTitle": "Stahuji",
@ -969,7 +967,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nejsou zde žádné šablony.",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Změnit přístupová práva",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum vytvoření",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Nahrávám ...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Stránky",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odstavce",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Achtung",
"Common.Controllers.Chat.textEnterMessage": "Geben Sie Ihre Nachricht hier ein",
"Common.Controllers.Chat.textUserLimit": "Sie benutzen ONLYOFFICE Free Edition.<br>Nur zwei Benutzer können das Dokument gleichzeitig bearbeiten.<br>Möchten Sie mehr? Erwerben Sie kommerzielle Version von ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Lesen Sie mehr davon</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonym",
"Common.Controllers.ExternalDiagramEditor.textClose": "Schließen",
"Common.Controllers.ExternalDiagramEditor.warningText": "Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.",
@ -333,7 +332,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
"DE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf \"OK\", um in die Dokumentenliste zu gelangen.",
"DE.Controllers.Main.criticalErrorTitle": "Fehler",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
"DE.Controllers.Main.downloadMergeText": "Wird heruntergeladen...",
"DE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen",
@ -1346,7 +1344,6 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Anwendung",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Verfasser",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zugriffsrechte ändern",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Erstellungsdatum",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ladevorgang...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Seiten",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Absätze",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Enter your message here",
"del_Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalDiagramEditor.textClose": "Close",
"Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.",
@ -163,11 +162,11 @@
"Common.Views.Header.tipRedo": "Redo",
"Common.Views.Header.tipSave": "Save",
"Common.Views.Header.tipUndo": "Undo",
"Common.Views.Header.tipUndock": "Undock into separate window",
"Common.Views.Header.tipViewSettings": "View settings",
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
"Common.Views.Header.txtAccessRights": "Change access rights",
"Common.Views.Header.txtRename": "Rename",
"Common.Views.Header.tipUndock": "Undock into separate window",
"Common.Views.History.textCloseHistory": "Close History",
"Common.Views.History.textHide": "Collapse",
"Common.Views.History.textHideAll": "Hide detailed changes",
@ -336,7 +335,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
"DE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.",
"DE.Controllers.Main.criticalErrorTitle": "Error",
"del_DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Download failed.",
"DE.Controllers.Main.downloadMergeText": "Downloading...",
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
@ -1102,6 +1100,7 @@
"DE.Views.DocumentHolder.hyperlinkText": "Hyperlink",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Ignore All",
"DE.Views.DocumentHolder.ignoreSpellText": "Ignore",
"DE.Views.DocumentHolder.toDictionaryText": "Add to Dictionary",
"DE.Views.DocumentHolder.imageText": "Image Advanced Settings",
"DE.Views.DocumentHolder.insertColumnLeftText": "Column Left",
"DE.Views.DocumentHolder.insertColumnRightText": "Column Right",
@ -1346,17 +1345,16 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Create a new blank text document which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a document of a certain type or purpose where some styles have already been pre-applied.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "New Text Document",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "There are no templates",
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text",
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment",
"del_DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Creation Date",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Loading...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphs",
@ -1844,6 +1842,7 @@
"DE.Views.ShapeSettings.txtTight": "Tight",
"DE.Views.ShapeSettings.txtTopAndBottom": "Top and bottom",
"DE.Views.ShapeSettings.txtWood": "Wood",
"DE.Views.ShapeSettings.strShadow": "Show shadow",
"DE.Views.SignatureSettings.notcriticalErrorTitle": "Warning",
"DE.Views.SignatureSettings.strDelete": "Remove Signature",
"DE.Views.SignatureSettings.strDetails": "Signature Details",
@ -2062,6 +2061,7 @@
"DE.Views.Toolbar.capBtnMargins": "Margins",
"DE.Views.Toolbar.capBtnPageOrient": "Orientation",
"DE.Views.Toolbar.capBtnPageSize": "Size",
"DE.Views.Toolbar.capBtnWatermark": "Watermark",
"DE.Views.Toolbar.capImgAlign": "Align",
"DE.Views.Toolbar.capImgBackward": "Send Backward",
"DE.Views.Toolbar.capImgForward": "Bring Forward",
@ -2093,6 +2093,7 @@
"DE.Views.Toolbar.textColumnsThree": "Three",
"DE.Views.Toolbar.textColumnsTwo": "Two",
"DE.Views.Toolbar.textContPage": "Continuous Page",
"DE.Views.Toolbar.textEditWatermark": "Custom Watermark",
"DE.Views.Toolbar.textEvenPage": "Even Page",
"DE.Views.Toolbar.textInMargin": "In Margin",
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
@ -2123,6 +2124,7 @@
"DE.Views.Toolbar.textPoint": "XY (Scatter)",
"DE.Views.Toolbar.textPortrait": "Portrait",
"DE.Views.Toolbar.textRemoveControl": "Remove content control",
"DE.Views.Toolbar.textRemWatermark": "Remove Watermark",
"DE.Views.Toolbar.textRichControl": "Insert rich text content control",
"DE.Views.Toolbar.textRight": "Right: ",
"DE.Views.Toolbar.textStock": "Stock",
@ -2204,6 +2206,7 @@
"DE.Views.Toolbar.tipShowHiddenChars": "Nonprinting characters",
"DE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.",
"DE.Views.Toolbar.tipUndo": "Undo",
"DE.Views.Toolbar.tipWatermark": "Edit watermark",
"DE.Views.Toolbar.txtDistribHor": "Distribute Horizontally",
"DE.Views.Toolbar.txtDistribVert": "Distribute Vertically",
"DE.Views.Toolbar.txtMarginAlign": "Align to Margin",
@ -2230,33 +2233,29 @@
"DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Foundry",
"DE.Views.Toolbar.capBtnWatermark": "Watermark",
"DE.Views.Toolbar.textEditWatermark": "Custom Watermark",
"DE.Views.Toolbar.textRemWatermark": "Remove Watermark",
"DE.Views.Toolbar.tipWatermark": "Edit watermark",
"DE.Views.WatermarkSettingsDialog.textTitle": "Watermark Settings",
"DE.Views.WatermarkSettingsDialog.textNone": "None",
"DE.Views.WatermarkSettingsDialog.textImageW": "Image watermark",
"DE.Views.WatermarkSettingsDialog.textTextW": "Text watermark",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "From URL",
"DE.Views.WatermarkSettingsDialog.textFromFile": "From File",
"DE.Views.WatermarkSettingsDialog.textScale": "Scale",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textText": "Text",
"DE.Views.WatermarkSettingsDialog.textFont": "Font",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Font Name",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Font Size",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textItalic": "Italic",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Strikeout",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Cancel",
"DE.Views.WatermarkSettingsDialog.okButtonText": "Ok",
"DE.Views.WatermarkSettingsDialog.okButtonText": "OK",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textFont": "Font",
"DE.Views.WatermarkSettingsDialog.textFromFile": "From File",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "From URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
"DE.Views.WatermarkSettingsDialog.textImageW": "Image watermark",
"DE.Views.WatermarkSettingsDialog.textItalic": "Italic",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Language",
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
"DE.Views.WatermarkSettingsDialog.textNewColor": "Add New Custom Color",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Language"
"DE.Views.WatermarkSettingsDialog.textNone": "None",
"DE.Views.WatermarkSettingsDialog.textScale": "Scale",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Strikeout",
"DE.Views.WatermarkSettingsDialog.textText": "Text",
"DE.Views.WatermarkSettingsDialog.textTextW": "Text watermark",
"DE.Views.WatermarkSettingsDialog.textTitle": "Watermark Settings",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Font Name",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Font Size"
}

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
"Common.Controllers.Chat.textEnterMessage": "Introduzca su mensaje aquí",
"Common.Controllers.Chat.textUserLimit": "Usted está usando la edición ONLYOFFICE gratuita.<br>Sólo dos usuarios pueden editar el documento simultáneamente.<br>¿Quiere más? Compre ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Saber más</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anónimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Cerrar",
"Common.Controllers.ExternalDiagramEditor.warningText": "El objeto está desactivado porque se está editando por otro usuario.",
@ -163,6 +162,7 @@
"Common.Views.Header.tipRedo": "Rehacer",
"Common.Views.Header.tipSave": "Guardar",
"Common.Views.Header.tipUndo": "Deshacer",
"Common.Views.Header.tipUndock": "Desacoplar en una ventana independiente",
"Common.Views.Header.tipViewSettings": "Mostrar ajustes",
"Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
@ -333,7 +333,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.",
"DE.Controllers.Main.criticalErrorExtText": "Pulse \"OK\" para regresar al documento.",
"DE.Controllers.Main.criticalErrorTitle": "Error",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Error de descarga.",
"DE.Controllers.Main.downloadMergeText": "Descargando...",
"DE.Controllers.Main.downloadMergeTitle": "Descargando",
@ -342,7 +341,7 @@
"DE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con el Administrador del Servidor de Documentos.",
"DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.",
"DE.Controllers.Main.errorConnectToServer": "No se pudo guardar el documento. Por favor, compruebe la configuración de conexión o póngase en contacto con el administrador.<br>Al hacer clic en el botón \"Aceptar\", se le pedirá que descargue el documento.<br> Encuentre más información acerca de la conexión Servidor de Documentos<a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">aquí</a>",
"DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de la conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de conexión de Servidor de Documentos <a href=\"%1\" target=\"_blank\">aquí</a>",
"DE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión de base de datos. Por favor póngase en contacto con soporte si el error se mantiene.",
"DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
@ -409,7 +408,7 @@
"DE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
"DE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.<br>Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"DE.Controllers.Main.textLoadingDocument": "Cargando documento",
"DE.Controllers.Main.textNoLicenseTitle": "Conexión ONLYOFFICE",
"DE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones",
"DE.Controllers.Main.textPaidFeature": "Función de pago",
"DE.Controllers.Main.textShape": "Forma",
"DE.Controllers.Main.textStrict": "Modo estricto",
@ -661,8 +660,8 @@
"DE.Controllers.Main.warnLicenseExceeded": "Se ha excedido el número permitido de las conexiones simultáneas al servidor de documentos, y el documento se abrirá para sólo lectura.<br>Por favor, contacte con su administrador para recibir más información.",
"DE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.<br>Por favor, actualice su licencia y después recargue la página.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.<br>Por favor, contacte con su administrador para recibir más información.",
"DE.Controllers.Main.warnNoLicense": "Esta versión de los Editores de ONLYOFFICE tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.<br>Si se requiere más, por favor, considere comprar una licencia comercial.",
"DE.Controllers.Main.warnNoLicenseUsers": "Esta versión de Editores de ONLYOFFICE tiene ciertas limitaciones para usuarios simultáneos.<br>Si se requiere más, por favor, considere comprar una licencia comercial.",
"DE.Controllers.Main.warnNoLicense": "Esta versión de los editores %1 tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.<br>Si necesita más, por favor, considere comprar una licencia comercial.",
"DE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.<br>Si necesita más, por favor, considere comprar una licencia comercial.",
"DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado",
"DE.Controllers.Navigation.txtBeginning": "Principio del documento",
"DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de",
@ -1343,19 +1342,27 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Cree un nuevo documento de texto en blanco para trabajar con el estilo y el formato y editarlo según sus necesidades. O seleccione una de las plantillas para iniciar documento de cierto tipo o propósito donde algunos estilos se han aplicado ya.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nuevo documento de texto",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "No hay ningunas plantillas",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Añadir autor",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Añadir texto",
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicación",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambiar derechos de acceso",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Fecha de creación",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentario",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creado",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Cargando...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificación por",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificación",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietario",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Páginas",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Párrafos",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos con espacios",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título de documento",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palabras",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar derechos de acceso",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personas que tienen derechos",
@ -2028,6 +2035,7 @@
"DE.Views.Toolbar.capBtnMargins": "Márgenes",
"DE.Views.Toolbar.capBtnPageOrient": "Orientación",
"DE.Views.Toolbar.capBtnPageSize": "Tamaño",
"DE.Views.Toolbar.capBtnWatermark": "Marca de agua",
"DE.Views.Toolbar.capImgAlign": "Alinear",
"DE.Views.Toolbar.capImgBackward": "Enviar atrás",
"DE.Views.Toolbar.capImgForward": "Una capa adelante",
@ -2059,6 +2067,7 @@
"DE.Views.Toolbar.textColumnsThree": "Tres",
"DE.Views.Toolbar.textColumnsTwo": "Dos",
"DE.Views.Toolbar.textContPage": "Página continua",
"DE.Views.Toolbar.textEditWatermark": "Marca de agua personalizada",
"DE.Views.Toolbar.textEvenPage": "Página par",
"DE.Views.Toolbar.textInMargin": "En margen",
"DE.Views.Toolbar.textInsColumnBreak": "Insertar Grieta de Columna",
@ -2089,6 +2098,7 @@
"DE.Views.Toolbar.textPoint": "XY (Dispersión)",
"DE.Views.Toolbar.textPortrait": "Vertical",
"DE.Views.Toolbar.textRemoveControl": "Elimine el control de contenido",
"DE.Views.Toolbar.textRemWatermark": "Quitar marca de agua",
"DE.Views.Toolbar.textRichControl": "Introducir contenido de texto rico",
"DE.Views.Toolbar.textRight": "Derecho: ",
"DE.Views.Toolbar.textStock": "De cotizaciones",
@ -2170,6 +2180,7 @@
"DE.Views.Toolbar.tipShowHiddenChars": "Caracteres no imprimibles",
"DE.Views.Toolbar.tipSynchronize": "El documento ha sido cambiado por otro usuario. Por favor haga clic para guardar sus cambios y recargue las actualizaciones.",
"DE.Views.Toolbar.tipUndo": "Deshacer",
"DE.Views.Toolbar.tipWatermark": "Editar marca de agua",
"DE.Views.Toolbar.txtDistribHor": "Distribuir horizontalmente",
"DE.Views.Toolbar.txtDistribVert": "Distribuir verticalmente",
"DE.Views.Toolbar.txtMarginAlign": "Alinear al margen",
@ -2195,5 +2206,30 @@
"DE.Views.Toolbar.txtScheme6": "Concurrencia",
"DE.Views.Toolbar.txtScheme7": "Equidad ",
"DE.Views.Toolbar.txtScheme8": "Flujo",
"DE.Views.Toolbar.txtScheme9": "Fundición"
"DE.Views.Toolbar.txtScheme9": "Fundición",
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Cancelar",
"DE.Views.WatermarkSettingsDialog.okButtonText": "OK",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Negrita",
"DE.Views.WatermarkSettingsDialog.textColor": "Color de texto",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textFont": "Fuente",
"DE.Views.WatermarkSettingsDialog.textFromFile": "De archivo",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "De URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal ",
"DE.Views.WatermarkSettingsDialog.textImageW": "Marca de agua de imagen",
"DE.Views.WatermarkSettingsDialog.textItalic": "Cursiva",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Idioma",
"DE.Views.WatermarkSettingsDialog.textLayout": "Disposición",
"DE.Views.WatermarkSettingsDialog.textNewColor": "Añadir nuevo color personalizado",
"DE.Views.WatermarkSettingsDialog.textNone": "Ninguno",
"DE.Views.WatermarkSettingsDialog.textScale": "Escala",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Tachado",
"DE.Views.WatermarkSettingsDialog.textText": "Texto",
"DE.Views.WatermarkSettingsDialog.textTextW": "Marca de agua de texto",
"DE.Views.WatermarkSettingsDialog.textTitle": "Ajustes de Marca de agua",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Subrayado",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nombre de fuente",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño de fuente"
}

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Avertissement",
"Common.Controllers.Chat.textEnterMessage": "Entrez votre message ici",
"Common.Controllers.Chat.textUserLimit": "Vous êtes en train d'utiliser ONLYOFFICE Free Edition.<br>Ce ne sont que deux utilisateurs qui peuvent éditer le document simultanément.<br>Voulez plus ? Envisagez d'acheter ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">En savoir plus</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonyme",
"Common.Controllers.ExternalDiagramEditor.textClose": "Fermer",
"Common.Controllers.ExternalDiagramEditor.warningText": "L'objet est désactivé car il est en cours de modification par un autre utilisateur.",
@ -334,7 +333,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.",
"DE.Controllers.Main.criticalErrorExtText": "Cliquez sur \"OK\" pour revenir à la liste des documents.",
"DE.Controllers.Main.criticalErrorTitle": "Erreur",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Échec du téléchargement.",
"DE.Controllers.Main.downloadMergeText": "Téléchargement en cours...",
"DE.Controllers.Main.downloadMergeTitle": "Téléchargement en cours",
@ -1344,10 +1342,13 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Créez un nouveau document texte vierge que vous serez en mesure de styliser et de formater après sa création au cours de la modification. Ou choisissez un des modèles où certains styles sont déjà pré-appliqués pour commencer un document d'un certain type ou objectif.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nouveau document texte ",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Pas de modèles",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Ajouter un auteur",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Ajouter du texte",
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Changer les droits d'accès",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Date de création",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commentaire",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Créé",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Chargement en cours...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphes",
@ -1357,6 +1358,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiques",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboles",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre du document",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Chargé",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Mots",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Changer les droits d'accès",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personnes qui ont des droits",
@ -2029,6 +2031,7 @@
"DE.Views.Toolbar.capBtnMargins": "Marges",
"DE.Views.Toolbar.capBtnPageOrient": "Orientation",
"DE.Views.Toolbar.capBtnPageSize": "Taille",
"DE.Views.Toolbar.capBtnWatermark": "Filigrane",
"DE.Views.Toolbar.capImgAlign": "Aligner",
"DE.Views.Toolbar.capImgBackward": "Reculer",
"DE.Views.Toolbar.capImgForward": "Déplacer vers l'avant",
@ -2060,6 +2063,7 @@
"DE.Views.Toolbar.textColumnsThree": "Trois",
"DE.Views.Toolbar.textColumnsTwo": "Deux",
"DE.Views.Toolbar.textContPage": "Page continue",
"DE.Views.Toolbar.textEditWatermark": "Filigrane personnalisé",
"DE.Views.Toolbar.textEvenPage": "Page paire",
"DE.Views.Toolbar.textInMargin": "Dans la Marge",
"DE.Views.Toolbar.textInsColumnBreak": "Insérer un saut de colonne",
@ -2196,5 +2200,14 @@
"DE.Views.Toolbar.txtScheme6": "Rotonde",
"DE.Views.Toolbar.txtScheme7": "Capitaux",
"DE.Views.Toolbar.txtScheme8": "Flux",
"DE.Views.Toolbar.txtScheme9": "Fonderie"
"DE.Views.Toolbar.txtScheme9": "Fonderie",
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Annuler",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Gras",
"DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte",
"DE.Views.WatermarkSettingsDialog.textNewColor": "Ajouter une nouvelle couleur personnalisée",
"DE.Views.WatermarkSettingsDialog.textText": "Texte",
"DE.Views.WatermarkSettingsDialog.textTextW": "Filigrane de texte",
"DE.Views.WatermarkSettingsDialog.textTitle": "Paramètres de filigrane",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Souligné"
}

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Figyelmeztetés",
"Common.Controllers.Chat.textEnterMessage": "Írja be ide az üzenetet",
"Common.Controllers.Chat.textUserLimit": "Ön az ONLYOFFICE Ingyenes Kiadást használja.<br>Csak két felhasználó szerkesztheti egyszerre a dokumentumot.<br>Többet szeretne? Fontolja meg az ONLYOFFICE Vállalati Kiadás megvásárlását<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Tudjon meg többet</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Névtelen",
"Common.Controllers.ExternalDiagramEditor.textClose": "Bezár",
"Common.Controllers.ExternalDiagramEditor.warningText": "Az objektum le van tiltva, mert azt egy másik felhasználó szerkeszti.",
@ -326,7 +325,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.",
"DE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\" gombot a dokumentumlistához való visszatéréshez.",
"DE.Controllers.Main.criticalErrorTitle": "Hiba",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Dokumentum Szerkesztő",
"DE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.",
"DE.Controllers.Main.downloadMergeText": "Letöltés...",
"DE.Controllers.Main.downloadMergeTitle": "Letöltés",
@ -1266,7 +1264,6 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikáció",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Szerző",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Hozzáférési jogok módosítása",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Létrehozás dátuma",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Betöltés...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Oldalak",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Bekezdések",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Avviso",
"Common.Controllers.Chat.textEnterMessage": "Scrivi il tuo messaggio qui",
"Common.Controllers.Chat.textUserLimit": "Stai usando ONLYOFFICE Free Edition.<br>Solo due utenti possono modificare il documento contemporaneamente.<br>Si desidera di più? Considera l'acquisto di ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Ulteriori informazioni</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Chiudi",
"Common.Controllers.ExternalDiagramEditor.warningText": "L'oggetto è disabilitato perché si sta modificando da un altro utente.",
@ -50,6 +49,9 @@
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Paragrafo Eliminato</b>",
"Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted",
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Paragrafo Inserito</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Spostato in basso:</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Spostato in alto:</b>",
"Common.Controllers.ReviewChanges.textParaMoveTo": "<b>Spostato:</b>",
"Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Align right",
"Common.Controllers.ReviewChanges.textShape": "Shape",
@ -61,7 +63,10 @@
"Common.Controllers.ReviewChanges.textStrikeout": "Strikeout",
"Common.Controllers.ReviewChanges.textSubScript": "Subscript",
"Common.Controllers.ReviewChanges.textSuperScript": "Superscript",
"Common.Controllers.ReviewChanges.textTabs": "Modifica tabelle",
"Common.Controllers.ReviewChanges.textTableChanged": "<b>Impostazioni tabella modificate</b>",
"Common.Controllers.ReviewChanges.textTableRowsAdd": "<b>Righe tabella aggiunte</b>",
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Righe tabella eliminate</b>",
"Common.Controllers.ReviewChanges.textTabs": "Modifica Schede",
"Common.Controllers.ReviewChanges.textUnderline": "Sottolineato",
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
@ -157,6 +162,7 @@
"Common.Views.Header.tipRedo": "Ripristina",
"Common.Views.Header.tipSave": "Salva",
"Common.Views.Header.tipUndo": "Annulla",
"Common.Views.Header.tipUndock": "Sgancia in una finestra separata",
"Common.Views.Header.tipViewSettings": "Mostra impostazioni",
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
@ -255,13 +261,13 @@
"Common.Views.ReviewChanges.txtOriginalCap": "Originale",
"Common.Views.ReviewChanges.txtPrev": "Precedente",
"Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes",
"Common.Views.ReviewChanges.txtRejectAll": "Annulla tutte le modifiche",
"Common.Views.ReviewChanges.txtRejectChanges": "Rifiuta modifiche",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes",
"Common.Views.ReviewChanges.txtRejectCurrent": "Annulla le modifiche attuali",
"Common.Views.ReviewChanges.txtSharing": "Condivisione",
"Common.Views.ReviewChanges.txtSpelling": "Controllo ortografia",
"Common.Views.ReviewChanges.txtTurnon": "Traccia cambiamenti",
"Common.Views.ReviewChanges.txtView": "Modalità display",
"Common.Views.ReviewChanges.txtView": "Modalità Visualizzazione",
"Common.Views.ReviewChangesDialog.textTitle": "Cambi di Revisione",
"Common.Views.ReviewChangesDialog.txtAccept": "Accetta",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accetta tutte le modifiche",
@ -276,6 +282,8 @@
"Common.Views.ReviewPopover.textCancel": "Annulla",
"Common.Views.ReviewPopover.textClose": "Chiudi",
"Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textFollowMove": "Segui mossa",
"Common.Views.ReviewPopover.textMention": "+mention fornirà l'accesso al documento e invierà un'e-mail",
"Common.Views.ReviewPopover.textOpenAgain": "Apri di nuovo",
"Common.Views.ReviewPopover.textReply": "Rispondi",
"Common.Views.ReviewPopover.textResolve": "Risolvere",
@ -326,7 +334,6 @@
"DE.Controllers.Main.convertationTimeoutText": "E' stato superato il tempo limite della conversione.",
"DE.Controllers.Main.criticalErrorExtText": "Clicca su \"OK\" per ritornare all'elenco dei documenti",
"DE.Controllers.Main.criticalErrorTitle": "Errore",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Download fallito.",
"DE.Controllers.Main.downloadMergeText": "Downloading...",
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
@ -402,21 +409,21 @@
"DE.Controllers.Main.textContactUs": "Contatta il team di vendite",
"DE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
"DE.Controllers.Main.textLoadingDocument": "Caricamento del documento",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE® limite connessione",
"DE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
"DE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
"DE.Controllers.Main.textShape": "Forma",
"DE.Controllers.Main.textStrict": "Modalità Rigorosa",
"DE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce.<br>Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.",
"DE.Controllers.Main.titleLicenseExp": "La licenza è scaduta",
"DE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato",
"DE.Controllers.Main.titleUpdateVersion": "Version changed",
"DE.Controllers.Main.titleUpdateVersion": "Versione Modificata",
"DE.Controllers.Main.txtAbove": "Sopra",
"DE.Controllers.Main.txtArt": "Il tuo testo qui",
"DE.Controllers.Main.txtBasicShapes": "Figure di base",
"DE.Controllers.Main.txtBelow": "sotto",
"DE.Controllers.Main.txtBookmarkError": "Errore! Segnalibro non definito.",
"DE.Controllers.Main.txtButtons": "Bottoni",
"DE.Controllers.Main.txtCallouts": "Chiamate",
"DE.Controllers.Main.txtCallouts": "Callout",
"DE.Controllers.Main.txtCharts": "Grafici",
"DE.Controllers.Main.txtCurrentDocument": "Documento Corrente",
"DE.Controllers.Main.txtDiagramTitle": "Titolo diagramma",
@ -430,6 +437,7 @@
"DE.Controllers.Main.txtFormulaNotInTable": "La formula non in tabella",
"DE.Controllers.Main.txtHeader": "Intestazione",
"DE.Controllers.Main.txtHyperlink": "Collegamento ipertestuale",
"DE.Controllers.Main.txtIndTooLarge": "Indice troppo grande",
"DE.Controllers.Main.txtLines": "Linee",
"DE.Controllers.Main.txtMath": "Matematica",
"DE.Controllers.Main.txtMissArg": "Argomento mancante",
@ -443,6 +451,12 @@
"DE.Controllers.Main.txtSameAsPrev": "come in precedenza",
"DE.Controllers.Main.txtSection": "-Sezione",
"DE.Controllers.Main.txtSeries": "Serie",
"DE.Controllers.Main.txtShape_accentBorderCallout1": "Callout Linea con bordo e barra in risalto",
"DE.Controllers.Main.txtShape_accentBorderCallout2": "Callout Linea piegata con bordo e barra in risalto",
"DE.Controllers.Main.txtShape_accentBorderCallout3": "Callout Doppia linea piegata con barra e bordo in risalto",
"DE.Controllers.Main.txtShape_accentCallout1": "Callout Linea con barra in risalto",
"DE.Controllers.Main.txtShape_accentCallout2": "Callout Linea piegata con barra in risalto",
"DE.Controllers.Main.txtShape_accentCallout3": "Callout Doppia linea piegata con barra in risalto",
"DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Indietro o Pulsante Precedente",
"DE.Controllers.Main.txtShape_actionButtonBeginning": "Pulsante di Inizio",
"DE.Controllers.Main.txtShape_actionButtonBlank": "Pulsante Vuoto",
@ -452,19 +466,39 @@
"DE.Controllers.Main.txtShape_actionButtonHelp": "Pulsante Aiuto",
"DE.Controllers.Main.txtShape_actionButtonHome": "Pulsante Home",
"DE.Controllers.Main.txtShape_actionButtonInformation": "Pulsante Informazioni",
"DE.Controllers.Main.txtShape_actionButtonMovie": "Pulsante Film",
"DE.Controllers.Main.txtShape_actionButtonReturn": "Pulsante Invio",
"DE.Controllers.Main.txtShape_actionButtonSound": "Pulsante Suono",
"DE.Controllers.Main.txtShape_arc": "Arco",
"DE.Controllers.Main.txtShape_bentArrow": "Freccia piegata",
"DE.Controllers.Main.txtShape_bentConnector5": "Connettore a gomito",
"DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connettore freccia a gomito",
"DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connettore doppia freccia a gomito",
"DE.Controllers.Main.txtShape_bentUpArrow": "Freccia curva in alto",
"DE.Controllers.Main.txtShape_bevel": "Smussato",
"DE.Controllers.Main.txtShape_blockArc": "Arco a tutto sesto",
"DE.Controllers.Main.txtShape_chevron": "Gallone",
"DE.Controllers.Main.txtShape_borderCallout1": "Callout Linea",
"DE.Controllers.Main.txtShape_borderCallout2": "Callout Linea piegata",
"DE.Controllers.Main.txtShape_borderCallout3": "Callout Doppia linea piegata",
"DE.Controllers.Main.txtShape_bracePair": "Doppia parentesi graffa",
"DE.Controllers.Main.txtShape_callout1": "Callout Linea senza bordo",
"DE.Controllers.Main.txtShape_callout2": "Callout Linea piegata senza bordo ",
"DE.Controllers.Main.txtShape_callout3": "Callout Doppia linea piegata senza bordo",
"DE.Controllers.Main.txtShape_can": "Cilindro",
"DE.Controllers.Main.txtShape_chevron": "freccia a Gallone",
"DE.Controllers.Main.txtShape_chord": "Corda",
"DE.Controllers.Main.txtShape_circularArrow": "Freccia circolare",
"DE.Controllers.Main.txtShape_cloud": "Nuvola",
"DE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout",
"DE.Controllers.Main.txtShape_corner": "Angolo",
"DE.Controllers.Main.txtShape_cube": "Cubo",
"DE.Controllers.Main.txtShape_curvedConnector3": "Connettore curvo",
"DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Connettore a freccia curva",
"DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connettore a doppia freccia curva",
"DE.Controllers.Main.txtShape_curvedDownArrow": "Freccia curva in basso",
"DE.Controllers.Main.txtShape_curvedLeftArrow": "Freccia curva a sinistra",
"DE.Controllers.Main.txtShape_curvedRightArrow": "Freccia curva a destra",
"DE.Controllers.Main.txtShape_curvedUpArrow": "Freccia curva in su",
"DE.Controllers.Main.txtShape_decagon": "Decagono",
"DE.Controllers.Main.txtShape_diagStripe": "Striscia diagonale",
"DE.Controllers.Main.txtShape_diamond": "Diamante",
@ -472,7 +506,10 @@
"DE.Controllers.Main.txtShape_donut": "Ciambella",
"DE.Controllers.Main.txtShape_doubleWave": "Onda doppia",
"DE.Controllers.Main.txtShape_downArrow": "Freccia in giù",
"DE.Controllers.Main.txtShape_downArrowCallout": "Callout Freccia in basso",
"DE.Controllers.Main.txtShape_ellipse": "Ellisse",
"DE.Controllers.Main.txtShape_ellipseRibbon": "Nastro curvo e inclinato in basso",
"DE.Controllers.Main.txtShape_ellipseRibbon2": "Nastro curvato in alto",
"DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagramma di flusso: processo alternativo",
"DE.Controllers.Main.txtShape_flowChartCollate": "Diagramma di flusso: Fascicolazione",
"DE.Controllers.Main.txtShape_flowChartConnector": "Diagramma di flusso: Connettore",
@ -501,7 +538,9 @@
"DE.Controllers.Main.txtShape_flowChartSort": "Diagramma di flusso: Ordinamento",
"DE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagramma di flusso: Giunzione di somma",
"DE.Controllers.Main.txtShape_flowChartTerminator": "Diagramma di flusso: Terminatore",
"DE.Controllers.Main.txtShape_foldedCorner": "angolo ripiegato",
"DE.Controllers.Main.txtShape_frame": "Cornice",
"DE.Controllers.Main.txtShape_halfFrame": "Mezza Cornice",
"DE.Controllers.Main.txtShape_heart": "Cuore",
"DE.Controllers.Main.txtShape_heptagon": "Ettagono",
"DE.Controllers.Main.txtShape_hexagon": "Esagono",
@ -510,16 +549,26 @@
"DE.Controllers.Main.txtShape_irregularSeal1": "Esplosione 1",
"DE.Controllers.Main.txtShape_irregularSeal2": "Esplosione 2",
"DE.Controllers.Main.txtShape_leftArrow": "Freccia Sinistra",
"DE.Controllers.Main.txtShape_leftArrowCallout": "Callout Freccia a sinistra",
"DE.Controllers.Main.txtShape_leftBrace": "Parentesi graffa aperta",
"DE.Controllers.Main.txtShape_leftBracket": "Parentesi quadra aperta",
"DE.Controllers.Main.txtShape_leftRightArrow": "Freccia bidirezionale sinistra destra",
"DE.Controllers.Main.txtShape_leftRightArrowCallout": "Callout Freccia bidirezionane sinistra destra",
"DE.Controllers.Main.txtShape_leftRightUpArrow": "Freccia tridirezionale sinistra destra alto",
"DE.Controllers.Main.txtShape_leftUpArrow": "Freccia bidirezionale sinistra alto",
"DE.Controllers.Main.txtShape_lightningBolt": "Fulmine",
"DE.Controllers.Main.txtShape_line": "Linea",
"DE.Controllers.Main.txtShape_lineWithArrow": "Freccia",
"DE.Controllers.Main.txtShape_lineWithTwoArrows": "Freccia doppia",
"DE.Controllers.Main.txtShape_mathDivide": "Divisione",
"DE.Controllers.Main.txtShape_mathEqual": "Uguale",
"DE.Controllers.Main.txtShape_mathMinus": "Meno",
"DE.Controllers.Main.txtShape_mathMultiply": "Moltiplicazione",
"DE.Controllers.Main.txtShape_mathNotEqual": "Non uguale",
"DE.Controllers.Main.txtShape_mathPlus": "Più",
"DE.Controllers.Main.txtShape_moon": "Luna",
"DE.Controllers.Main.txtShape_noSmoking": "Simbolo \"No\"",
"DE.Controllers.Main.txtShape_notchedRightArrow": "Freccia dentellata a destra ",
"DE.Controllers.Main.txtShape_octagon": "Ottagono",
"DE.Controllers.Main.txtShape_parallelogram": "Parallelogramma",
"DE.Controllers.Main.txtShape_pentagon": "Pentagono",
@ -528,9 +577,25 @@
"DE.Controllers.Main.txtShape_plus": "Più",
"DE.Controllers.Main.txtShape_polyline1": "Bozza",
"DE.Controllers.Main.txtShape_polyline2": "Forma libera",
"DE.Controllers.Main.txtShape_quadArrow": "Freccia a incrocio",
"DE.Controllers.Main.txtShape_quadArrowCallout": "Callout Freccia a incrocio",
"DE.Controllers.Main.txtShape_rect": "Rettangolo",
"DE.Controllers.Main.txtShape_ribbon": "Nastro inclinato in basso",
"DE.Controllers.Main.txtShape_ribbon2": "Nastro inclinato in alto",
"DE.Controllers.Main.txtShape_rightArrow": "Freccia destra",
"DE.Controllers.Main.txtShape_rightArrowCallout": "Callout Freccia a destra",
"DE.Controllers.Main.txtShape_rightBrace": "Parentesi graffa chiusa",
"DE.Controllers.Main.txtShape_rightBracket": "Parentesi quadra chiusa",
"DE.Controllers.Main.txtShape_round1Rect": "Rettangolo ad angolo singolo smussato",
"DE.Controllers.Main.txtShape_round2DiagRect": "Rettangolo ad angolo diagonale smussato",
"DE.Controllers.Main.txtShape_round2SameRect": "Rettangolo smussato dallo stesso lato",
"DE.Controllers.Main.txtShape_roundRect": "Rettangolo ad angoli smussati",
"DE.Controllers.Main.txtShape_rtTriangle": "Triangolo rettangolo",
"DE.Controllers.Main.txtShape_smileyFace": "Faccia sorridente",
"DE.Controllers.Main.txtShape_snip1Rect": "Ritaglia rettangolo ad angolo singolo",
"DE.Controllers.Main.txtShape_snip2DiagRect": "Ritaglia rettangolo ad angolo diagonale",
"DE.Controllers.Main.txtShape_snip2SameRect": "Ritaglia Rettangolo smussato dallo stesso lato",
"DE.Controllers.Main.txtShape_snipRoundRect": "Ritaglia e smussa singolo angolo rettangolo",
"DE.Controllers.Main.txtShape_spline": "Curva",
"DE.Controllers.Main.txtShape_star10": "Stella a 10 punte",
"DE.Controllers.Main.txtShape_star12": "Stella a 12 punte",
@ -542,14 +607,21 @@
"DE.Controllers.Main.txtShape_star6": "Stella a 6 punte",
"DE.Controllers.Main.txtShape_star7": "Stella a 7 punte",
"DE.Controllers.Main.txtShape_star8": "Stella a 8 punte",
"DE.Controllers.Main.txtShape_stripedRightArrow": "Freccia a strisce verso destra ",
"DE.Controllers.Main.txtShape_sun": "Sole",
"DE.Controllers.Main.txtShape_teardrop": "Goccia",
"DE.Controllers.Main.txtShape_textRect": "Casella di testo",
"DE.Controllers.Main.txtShape_trapezoid": "Trapezio",
"DE.Controllers.Main.txtShape_triangle": "Triangolo",
"DE.Controllers.Main.txtShape_triangle": "Triangolo isoscele",
"DE.Controllers.Main.txtShape_upArrow": "Freccia su",
"DE.Controllers.Main.txtShape_upArrowCallout": "Callout Freccia in alto",
"DE.Controllers.Main.txtShape_upDownArrow": "Freccia bidirezionale su giù",
"DE.Controllers.Main.txtShape_uturnArrow": "Freccia a inversione",
"DE.Controllers.Main.txtShape_verticalScroll": "Scorrimento verticale",
"DE.Controllers.Main.txtShape_wave": "Onda",
"DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Callout Ovale",
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Callout Rettangolare",
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Rettangolare arrotondato",
"DE.Controllers.Main.txtStarsRibbons": "Stelle e nastri",
"DE.Controllers.Main.txtStyle_footnote_text": "Nota a piè di pagina",
"DE.Controllers.Main.txtStyle_Heading_1": "Titolo 1",
@ -571,9 +643,11 @@
"DE.Controllers.Main.txtSyntaxError": "Errore di sintassi",
"DE.Controllers.Main.txtTableInd": "L'indice della tabella non può essere zero",
"DE.Controllers.Main.txtTableOfContents": "Sommario",
"DE.Controllers.Main.txtTooLarge": "Numero troppo grande per essere formattato",
"DE.Controllers.Main.txtUndefBookmark": "Segnalibro indefinito",
"DE.Controllers.Main.txtXAxis": "Asse X",
"DE.Controllers.Main.txtYAxis": "Asse Y",
"DE.Controllers.Main.txtZeroDivide": "Diviso Zero",
"DE.Controllers.Main.unknownErrorText": "Errore sconosciuto.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Il tuo browser non è supportato.",
"DE.Controllers.Main.uploadImageExtMessage": "Formato immagine sconosciuto.",
@ -592,7 +666,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Ci stato negato il diritto alla modifica del file.",
"DE.Controllers.Navigation.txtBeginning": "Inizio del documento",
"DE.Controllers.Navigation.txtGotoBeginning": "Vai all'inizio del documento",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textHasChanges": "Sono state tracciate nuove modifiche",
"DE.Controllers.Statusbar.textTrackChanges": "Il documento è aperto in modalità Traccia Revisioni attivata",
"DE.Controllers.Statusbar.tipReview": "Traccia cambiamenti",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
@ -1080,6 +1154,7 @@
"DE.Views.DocumentHolder.textEditWrapBoundary": "Modifica bordi disposizione testo",
"DE.Views.DocumentHolder.textFlipH": "Capovolgi orizzontalmente",
"DE.Views.DocumentHolder.textFlipV": "Capovolgi verticalmente",
"DE.Views.DocumentHolder.textFollow": "Segui mossa",
"DE.Views.DocumentHolder.textFromFile": "Da file",
"DE.Views.DocumentHolder.textFromUrl": "Da URL",
"DE.Views.DocumentHolder.textJoinList": "Iscriviti alla lista precedente",
@ -1268,19 +1343,27 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Crea un nuovo documento di testo vuoto che potrai formattare in seguito durante la modifica. Oppure scegli uno dei modelli per creare un documento di un certo tipo al quale sono già applicati certi stili.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nuovo documento di testo",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nessun modello",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Aggiungi Autore",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Aggiungi testo",
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicazione",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autore",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambia diritti di accesso",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data di creazione",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commento",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creato",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Caricamento in corso...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Ultima modifica di",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Ultima modifica",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Proprietario",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pagine",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragrafi",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone con diritti",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simboli con spazi",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiche",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboli",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Parole",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambia diritti di accesso",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone con diritti",
@ -1300,7 +1383,7 @@
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Attiva il ripristino automatico",
"DE.Views.FileMenuPanels.Settings.strAutosave": "Attiva salvataggio automatico",
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modalità di co-editing",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Gli altri utenti vedranno immediatamente i tuoi cambiamenti",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Dovrai accettare i cambiamenti prima di poterli visualizzare.",
"DE.Views.FileMenuPanels.Settings.strFast": "Fast",
"DE.Views.FileMenuPanels.Settings.strFontRender": "Hinting dei caratteri",
@ -1953,6 +2036,7 @@
"DE.Views.Toolbar.capBtnMargins": "Margini",
"DE.Views.Toolbar.capBtnPageOrient": "Orientamento",
"DE.Views.Toolbar.capBtnPageSize": "Dimensione",
"DE.Views.Toolbar.capBtnWatermark": "Filigrana",
"DE.Views.Toolbar.capImgAlign": "Allinea",
"DE.Views.Toolbar.capImgBackward": "Porta indietro",
"DE.Views.Toolbar.capImgForward": "Porta avanti",
@ -1984,6 +2068,7 @@
"DE.Views.Toolbar.textColumnsThree": "Tre",
"DE.Views.Toolbar.textColumnsTwo": "Two",
"DE.Views.Toolbar.textContPage": "Pagina continua",
"DE.Views.Toolbar.textEditWatermark": "Filigrana personalizzata",
"DE.Views.Toolbar.textEvenPage": "Pagina pari",
"DE.Views.Toolbar.textInMargin": "Nel margine",
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
@ -2014,6 +2099,7 @@
"DE.Views.Toolbar.textPoint": "XY (A dispersione)",
"DE.Views.Toolbar.textPortrait": "Verticale",
"DE.Views.Toolbar.textRemoveControl": "Rimuovi il controllo del contenuto",
"DE.Views.Toolbar.textRemWatermark": "Rimuovi filigrana",
"DE.Views.Toolbar.textRichControl": "Inserisci il controllo del contenuto RTF",
"DE.Views.Toolbar.textRight": "Right: ",
"DE.Views.Toolbar.textStock": "Azionario",
@ -2089,12 +2175,13 @@
"DE.Views.Toolbar.tipPrint": "Stampa",
"DE.Views.Toolbar.tipRedo": "Ripristina",
"DE.Views.Toolbar.tipSave": "Salva",
"DE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.",
"DE.Views.Toolbar.tipSaveCoauth": "Salva i tuoi cambiamenti per renderli disponibili agli altri utenti.",
"DE.Views.Toolbar.tipSendBackward": "Porta indietro",
"DE.Views.Toolbar.tipSendForward": "Porta avanti",
"DE.Views.Toolbar.tipShowHiddenChars": "Caratteri non stampabili",
"DE.Views.Toolbar.tipSynchronize": "Il documento è stato modificato da un altro utente. Clicca per salvare le modifiche e ricaricare gli aggiornamenti.",
"DE.Views.Toolbar.tipUndo": "Annulla",
"DE.Views.Toolbar.tipWatermark": "Modifica filigrana",
"DE.Views.Toolbar.txtDistribHor": "Distribuisci orizzontalmente",
"DE.Views.Toolbar.txtDistribVert": "Distribuisci verticalmente",
"DE.Views.Toolbar.txtMarginAlign": "Allinea al margine",
@ -2120,5 +2207,30 @@
"DE.Views.Toolbar.txtScheme6": "Viale",
"DE.Views.Toolbar.txtScheme7": "Universo",
"DE.Views.Toolbar.txtScheme8": "Flusso",
"DE.Views.Toolbar.txtScheme9": "Galassia"
"DE.Views.Toolbar.txtScheme9": "Galassia",
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Annulla",
"DE.Views.WatermarkSettingsDialog.okButtonText": "OK",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Grassetto",
"DE.Views.WatermarkSettingsDialog.textColor": "Colore del testo",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonale",
"DE.Views.WatermarkSettingsDialog.textFont": "Carattere",
"DE.Views.WatermarkSettingsDialog.textFromFile": "Da file",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "Da URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Orizzontale",
"DE.Views.WatermarkSettingsDialog.textImageW": "Immagine filigrana",
"DE.Views.WatermarkSettingsDialog.textItalic": "Corsivo",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Lingua",
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
"DE.Views.WatermarkSettingsDialog.textNewColor": "Colore personalizzato",
"DE.Views.WatermarkSettingsDialog.textNone": "Nessuno",
"DE.Views.WatermarkSettingsDialog.textScale": "Ridimensiona",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Barrato",
"DE.Views.WatermarkSettingsDialog.textText": "Testo",
"DE.Views.WatermarkSettingsDialog.textTextW": "Testo filigrana",
"DE.Views.WatermarkSettingsDialog.textTitle": "Impostazioni Filigrana",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitrasparente",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Sottolineato",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nome carattere",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Dimensione carattere"
}

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "メッセージをここに挿入する",
"Common.Controllers.Chat.textUserLimit": "ONLYOFFICE無料版を使用しています。<br>同時に2人のユーザのみは文書を編集することができます。<br>もっとが必要ですか。ONLYOFFICEエンタープライズ版の購入を検討してください。<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名",
"Common.Controllers.ExternalDiagramEditor.textClose": "閉じる",
"Common.Controllers.ExternalDiagramEditor.warningText": "他のユーザは編集しているのためオブジェクトが無効になります。",
@ -177,7 +176,6 @@
"DE.Controllers.Main.convertationTimeoutText": "変換のタイムアウトを超過しました。",
"DE.Controllers.Main.criticalErrorExtText": "OKボタンを押すと文書リストに戻ることができます。",
"DE.Controllers.Main.criticalErrorTitle": "エラー",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "ダウンロード失敗",
"DE.Controllers.Main.downloadMergeText": "ダウンロード中...",
"DE.Controllers.Main.downloadMergeTitle": "ダウンロード中",
@ -854,7 +852,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "テンプレートなし",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作成者",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "アクセス許可の変更",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "作成日時",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "読み込み中...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "ページ",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "경고",
"Common.Controllers.Chat.textEnterMessage": "여기에 메시지를 입력하십시오",
"Common.Controllers.Chat.textUserLimit": "ONLYOFFICE 무료 버전을 사용하고 있습니다. <br> 두 명의 사용자 만이 문서를 동시에 편집 할 수 있습니다. <br> ONLYOFFICE Enterprise Edition 구입 고려하십시오. <br> <a href =\"http://www.onlyoffice.com/free-edition.aspx \"target=\"_blank\"> 자세히보기 </a> ",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "익명",
"Common.Controllers.ExternalDiagramEditor.textClose": "닫기",
"Common.Controllers.ExternalDiagramEditor.warningText": "다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.",
@ -310,7 +309,6 @@
"DE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.",
"DE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 \"OK\"를 누르십시오.",
"DE.Controllers.Main.criticalErrorTitle": "오류",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE 문서 편집기",
"DE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.",
"DE.Controllers.Main.downloadMergeText": "다운로드 중 ...",
"DE.Controllers.Main.downloadMergeTitle": "다운로드 중",
@ -1095,7 +1093,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "템플릿이 없습니다",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "작성자",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "액세스 권한 변경",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Creation Date",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "로드 중 ...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "단락",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Ievadiet savu ziņu šeit",
"Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalDiagramEditor.textClose": "Close",
"Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.",
@ -307,7 +306,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.",
"DE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.",
"DE.Controllers.Main.criticalErrorTitle": "Kļūda",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Dokumentu Redaktors",
"DE.Controllers.Main.downloadErrorText": "Lejuplāde neizdevās.",
"DE.Controllers.Main.downloadMergeText": "Downloading...",
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
@ -1092,7 +1090,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nav veidnes",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autors",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Izveides datums",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ielādē...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Lapas",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Rindkopu",
@ -1385,7 +1382,7 @@
"DE.Views.NoteSettingsDialog.textTitle": "Piezīmju uzstādījumi",
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
"DE.Views.PageMarginsDialog.okButtonText": "OK",
"DE.Views.PageMarginsDialog.okButtonText": "Ok",
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
"DE.Views.PageMarginsDialog.textLeft": "Left",
"DE.Views.PageMarginsDialog.textRight": "Right",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Waarschuwing",
"Common.Controllers.Chat.textEnterMessage": "Voer hier uw bericht in",
"Common.Controllers.Chat.textUserLimit": "U gebruikt ONLYOFFICE Free Edition.<br>Er kunnen maar twee gebruikers tegelijk het document bewerken.<br>U wilt meer? Overweeg ONLYOFFICE Enterprise Edition aan te schaffen.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Meer informatie</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anoniem",
"Common.Controllers.ExternalDiagramEditor.textClose": "Sluiten",
"Common.Controllers.ExternalDiagramEditor.warningText": "Het object is gedeactiveerd omdat het wordt bewerkt door een andere gebruiker.",
@ -329,7 +328,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.",
"DE.Controllers.Main.criticalErrorExtText": "Klik op \"OK\" om terug te keren naar de lijst met documenten.",
"DE.Controllers.Main.criticalErrorTitle": "Fout",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE-documenteditor",
"DE.Controllers.Main.downloadErrorText": "Download mislukt.",
"DE.Controllers.Main.downloadMergeText": "Downloaden...",
"DE.Controllers.Main.downloadMergeTitle": "Downloaden",
@ -1212,7 +1210,6 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicatie",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Toegangsrechten wijzigen",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum gemaakt",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Laden...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pagina's",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Alinea's",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Ostrzeżenie",
"Common.Controllers.Chat.textEnterMessage": "Wprowadź swoją wiadomość tutaj",
"Common.Controllers.Chat.textUserLimit": "Używasz ONLYOFFICE Free Edition. <br> Tylko dwóch użytkowników może jednocześnie edytować dokument. Chcesz więcej? Zastanów się nad zakupem ONLYOFFICE Enterprise Edition. <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\"> Czytaj więcej </a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Gość",
"Common.Controllers.ExternalDiagramEditor.textClose": "Zamknij",
"Common.Controllers.ExternalDiagramEditor.warningText": "Obiekt jest wyłączony, ponieważ jest edytowany przez innego użytkownika.",
@ -272,7 +271,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.",
"DE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\", aby powrócić do listy dokumentów.",
"DE.Controllers.Main.criticalErrorTitle": "Błąd",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor dokumentów",
"DE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.",
"DE.Controllers.Main.downloadMergeText": "Pobieranie...",
"DE.Controllers.Main.downloadMergeTitle": "Pobieranie",
@ -1060,7 +1058,6 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikacja",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmień prawa dostępu",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data utworzenia",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ładowanie...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Strony",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Akapity",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
"Common.Controllers.Chat.textEnterMessage": "Insira sua mensagem aqui",
"Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anônimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Fechar",
"Common.Controllers.ExternalDiagramEditor.warningText": "O objeto está desabilitado por que está sendo editado por outro usuário.",
@ -280,7 +279,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
"DE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.",
"DE.Controllers.Main.criticalErrorTitle": "Erro",
"DE.Controllers.Main.defaultTitleText": "Editor de documento ONLYOFFICE",
"DE.Controllers.Main.downloadErrorText": "Download falhou.",
"DE.Controllers.Main.downloadMergeText": "Downloading...",
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
@ -1044,7 +1042,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Não há modelos",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Alterar direitos de acesso",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data de criação",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Carregando...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Páginas",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Parágrafos",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Предупреждение",
"Common.Controllers.Chat.textEnterMessage": "Введите здесь своё сообщение",
"Common.Controllers.Chat.textUserLimit": "Вы используете бесплатную версию ONLYOFFICE.<br>Только два пользователя одновременно могут совместно редактировать документ.<br>Требуется больше? Рекомендуем приобрести корпоративную версию ONLYOFFICE.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Читать дальше</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Аноним",
"Common.Controllers.ExternalDiagramEditor.textClose": "Закрыть",
"Common.Controllers.ExternalDiagramEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.",
@ -23,7 +22,7 @@
"Common.Controllers.ReviewChanges.textContextual": "Не добавлять интервал между абзацами одного стиля",
"Common.Controllers.ReviewChanges.textDeleted": "<b>Удалено:</b>",
"Common.Controllers.ReviewChanges.textDStrikeout": "Двойное зачеркивание",
"Common.Controllers.ReviewChanges.textEquation": "Формула",
"Common.Controllers.ReviewChanges.textEquation": "Уравнение",
"Common.Controllers.ReviewChanges.textExact": "Точно",
"Common.Controllers.ReviewChanges.textFirstLine": "Первая строка",
"Common.Controllers.ReviewChanges.textFontSize": "Размер шрифта",
@ -284,6 +283,7 @@
"Common.Views.ReviewPopover.textClose": "Закрыть",
"Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textFollowMove": "Перейти на прежнее место",
"Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте",
"Common.Views.ReviewPopover.textOpenAgain": "Открыть снова",
"Common.Views.ReviewPopover.textReply": "Ответить",
"Common.Views.ReviewPopover.textResolve": "Решить",
@ -334,7 +334,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
"DE.Controllers.Main.criticalErrorExtText": "Нажмите \"OK\", чтобы вернуться к списку документов.",
"DE.Controllers.Main.criticalErrorTitle": "Ошибка",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Загрузка не удалась.",
"DE.Controllers.Main.downloadMergeText": "Загрузка...",
"DE.Controllers.Main.downloadMergeTitle": "Загрузка",
@ -343,7 +342,7 @@
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.<br><br>Дополнительную информацию о подключении Сервера документов можно найти <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">здесь</a>",
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.<br><br>Дополнительную информацию о подключении Сервера документов можно найти <a href=\"%1\" target=\"_blank\">здесь</a>",
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
@ -410,7 +409,7 @@
"DE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"DE.Controllers.Main.textLoadingDocument": "Загрузка документа",
"DE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений ONLYOFFICE",
"DE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
"DE.Controllers.Main.textPaidFeature": "Платная функция",
"DE.Controllers.Main.textShape": "Фигура",
"DE.Controllers.Main.textStrict": "Строгий режим",
@ -662,8 +661,8 @@
"DE.Controllers.Main.warnLicenseExceeded": "Превышено допустимое число одновременных подключений к серверу документов, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
"DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"DE.Controllers.Navigation.txtBeginning": "Начало документа",
"DE.Controllers.Navigation.txtGotoBeginning": "Перейти в начало документа",
@ -1100,6 +1099,7 @@
"DE.Views.DocumentHolder.hyperlinkText": "Гиперссылка",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Пропустить все",
"DE.Views.DocumentHolder.ignoreSpellText": "Пропустить",
"DE.Views.DocumentHolder.toDictionaryText": "Добавить в словарь",
"DE.Views.DocumentHolder.imageText": "Дополнительные параметры изображения",
"DE.Views.DocumentHolder.insertColumnLeftText": "Столбец слева",
"DE.Views.DocumentHolder.insertColumnRightText": "Столбец справа",
@ -1344,19 +1344,27 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Создайте новый пустой текстовый документ, к которому Вы сможете применить стили и отформатировать при редактировании после того, как он создан. Или выберите один из шаблонов, чтобы создать документ определенного типа или предназначения, где уже предварительно применены некоторые стили.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Новый текстовый документ",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Шаблоны отсутствуют",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Добавить автора",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Добавить текст",
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Изменить права доступа",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата создания",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Комментарий",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Создан",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Загрузка...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Автор последнего изменения",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Последнее изменение",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Владелец",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Страницы",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Абзацы",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Размещение",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Люди, имеющие права",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Символы с пробелами",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символы",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название документа",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружен",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Слова",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Изменить права доступа",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Люди, имеющие права",
@ -1811,6 +1819,7 @@
"DE.Views.ShapeSettings.txtTight": "По контуру",
"DE.Views.ShapeSettings.txtTopAndBottom": "Сверху и снизу",
"DE.Views.ShapeSettings.txtWood": "Дерево",
"DE.Views.ShapeSettings.strShadow": "Отображать тень",
"DE.Views.SignatureSettings.notcriticalErrorTitle": "Внимание",
"DE.Views.SignatureSettings.strDelete": "Удалить подпись",
"DE.Views.SignatureSettings.strDetails": "Состав подписи",
@ -2018,7 +2027,7 @@
"DE.Views.Toolbar.capBtnInsChart": "Диаграмма",
"DE.Views.Toolbar.capBtnInsControls": "Элементы управления содержимым",
"DE.Views.Toolbar.capBtnInsDropcap": "Буквица",
"DE.Views.Toolbar.capBtnInsEquation": "Формула",
"DE.Views.Toolbar.capBtnInsEquation": "Уравнение",
"DE.Views.Toolbar.capBtnInsHeader": "Колонтитулы",
"DE.Views.Toolbar.capBtnInsImage": "Изображение",
"DE.Views.Toolbar.capBtnInsPagebreak": "Разрывы",
@ -2029,6 +2038,7 @@
"DE.Views.Toolbar.capBtnMargins": "Поля",
"DE.Views.Toolbar.capBtnPageOrient": "Ориентация",
"DE.Views.Toolbar.capBtnPageSize": "Размер",
"DE.Views.Toolbar.capBtnWatermark": "Подложка",
"DE.Views.Toolbar.capImgAlign": "Выравнивание",
"DE.Views.Toolbar.capImgBackward": "Перенести назад",
"DE.Views.Toolbar.capImgForward": "Перенести вперед",
@ -2060,6 +2070,7 @@
"DE.Views.Toolbar.textColumnsThree": "Три",
"DE.Views.Toolbar.textColumnsTwo": "Две",
"DE.Views.Toolbar.textContPage": "На текущей странице",
"DE.Views.Toolbar.textEditWatermark": "Настраиваемая подложка",
"DE.Views.Toolbar.textEvenPage": "С четной страницы",
"DE.Views.Toolbar.textInMargin": "На поле",
"DE.Views.Toolbar.textInsColumnBreak": "Вставить разрыв колонки",
@ -2090,6 +2101,7 @@
"DE.Views.Toolbar.textPoint": "Точечная",
"DE.Views.Toolbar.textPortrait": "Книжная",
"DE.Views.Toolbar.textRemoveControl": "Удалить элемент управления содержимым",
"DE.Views.Toolbar.textRemWatermark": "Удалить подложку",
"DE.Views.Toolbar.textRichControl": "Вставить элемент управления \"Форматированный текст\"",
"DE.Views.Toolbar.textRight": "Правое: ",
"DE.Views.Toolbar.textStock": "Биржевая",
@ -2143,7 +2155,7 @@
"DE.Views.Toolbar.tipIncFont": "Увеличить размер шрифта",
"DE.Views.Toolbar.tipIncPrLeft": "Увеличить отступ",
"DE.Views.Toolbar.tipInsertChart": "Вставить диаграмму",
"DE.Views.Toolbar.tipInsertEquation": "Вставить формулу",
"DE.Views.Toolbar.tipInsertEquation": "Вставить уравнение",
"DE.Views.Toolbar.tipInsertImage": "Вставить изображение",
"DE.Views.Toolbar.tipInsertNum": "Вставить номер страницы",
"DE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
@ -2171,6 +2183,7 @@
"DE.Views.Toolbar.tipShowHiddenChars": "Непечатаемые символы",
"DE.Views.Toolbar.tipSynchronize": "Документ изменен другим пользователем. Нажмите, чтобы сохранить свои изменения и загрузить обновления.",
"DE.Views.Toolbar.tipUndo": "Отменить",
"DE.Views.Toolbar.tipWatermark": "Изменить подложку",
"DE.Views.Toolbar.txtDistribHor": "Распределить по горизонтали",
"DE.Views.Toolbar.txtDistribVert": "Распределить по вертикали",
"DE.Views.Toolbar.txtMarginAlign": "Выровнять относительно поля",
@ -2196,5 +2209,30 @@
"DE.Views.Toolbar.txtScheme6": "Открытая",
"DE.Views.Toolbar.txtScheme7": "Справедливость",
"DE.Views.Toolbar.txtScheme8": "Поток",
"DE.Views.Toolbar.txtScheme9": "Литейная"
"DE.Views.Toolbar.txtScheme9": "Литейная",
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Отмена",
"DE.Views.WatermarkSettingsDialog.okButtonText": "OK",
"DE.Views.WatermarkSettingsDialog.textAuto": "Авто",
"DE.Views.WatermarkSettingsDialog.textBold": "Жирный",
"DE.Views.WatermarkSettingsDialog.textColor": "Цвет текста",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "По диагонали",
"DE.Views.WatermarkSettingsDialog.textFont": "Шрифт",
"DE.Views.WatermarkSettingsDialog.textFromFile": "Из файла",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "По URL",
"DE.Views.WatermarkSettingsDialog.textHor": "По горизонтали",
"DE.Views.WatermarkSettingsDialog.textImageW": "Графическая подложка",
"DE.Views.WatermarkSettingsDialog.textItalic": "Курсив",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Язык",
"DE.Views.WatermarkSettingsDialog.textLayout": "Расположение",
"DE.Views.WatermarkSettingsDialog.textNewColor": "Пользовательский цвет",
"DE.Views.WatermarkSettingsDialog.textNone": "Нет",
"DE.Views.WatermarkSettingsDialog.textScale": "Масштаб",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Зачеркнутый",
"DE.Views.WatermarkSettingsDialog.textText": "Текст",
"DE.Views.WatermarkSettingsDialog.textTextW": "Текстовая подложка",
"DE.Views.WatermarkSettingsDialog.textTitle": "Параметры подложки",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Полупрозрачный",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Подчёркнутый",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Шрифт",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Размер шрифта"
}

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie",
"Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu",
"Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo.<br>Iba dvaja používatelia dokážu spolueditovať dokument súčasne.<br>Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymný",
"Common.Controllers.ExternalDiagramEditor.textClose": "Zatvoriť",
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.",
@ -288,7 +287,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.",
"DE.Controllers.Main.criticalErrorExtText": "Stlačte \"OK\" pre návrat do zoznamu dokumentov.",
"DE.Controllers.Main.criticalErrorTitle": "Chyba",
"DE.Controllers.Main.defaultTitleText": "Dokumentový editor ONLYOFFICE ",
"DE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.",
"DE.Controllers.Main.downloadMergeText": "Sťahovanie...",
"DE.Controllers.Main.downloadMergeTitle": "Sťahovanie",
@ -1041,7 +1039,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Neexistujú žiadne šablóny",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmeniť prístupové práva",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Dátum vytvorenia",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Nahrávanie...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Strany",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odseky",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Opozorilo",
"Common.Controllers.Chat.textEnterMessage": "Svoje sporočilo vnesite tu",
"Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonimno",
"Common.Controllers.ExternalDiagramEditor.textClose": "Zapri",
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je onemogočen, saj ga ureja drug uporabnik.",
@ -174,7 +173,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.",
"DE.Controllers.Main.criticalErrorExtText": "Pritisnite \"OK\" za vrnitev na seznam dokumentov.",
"DE.Controllers.Main.criticalErrorTitle": "Napaka",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE urejevalec dokumentov",
"DE.Controllers.Main.downloadErrorText": "Prenos ni uspel.",
"DE.Controllers.Main.downloadMergeText": "Downloading...",
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
@ -851,7 +849,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Ni predlog",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Avtor",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Spremeni pravice dostopa",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum nastanka",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Nalaganje...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Strani",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odstavki",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Dikkat",
"Common.Controllers.Chat.textEnterMessage": "Mesajınızı buraya giriniz",
"Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonim",
"Common.Controllers.ExternalDiagramEditor.textClose": "Kapat",
"Common.Controllers.ExternalDiagramEditor.warningText": "Obje devre dışı bırakıldı, çünkü başka kullanıcı tarafından düzenleniyor.",
@ -145,10 +144,13 @@
"Common.Views.Header.textSaveChanged": "Modifiyeli",
"Common.Views.Header.textSaveEnd": "Tüm değişiklikler kaydedildi",
"Common.Views.Header.textSaveExpander": "Tüm değişiklikler kaydedildi",
"Common.Views.Header.textZoom": "Büyüt",
"Common.Views.Header.tipAccessRights": "Belge erişim haklarını yönet",
"Common.Views.Header.tipDownload": "Dosyayı indir",
"Common.Views.Header.tipGoEdit": "Mevcut belgeyi düzenle",
"Common.Views.Header.tipPrint": "Sayfayı yazdır",
"Common.Views.Header.tipSave": "Kaydet",
"Common.Views.Header.tipUndo": "Geri Al",
"Common.Views.Header.tipViewUsers": "Kullanıcıları görüntüle ve belge erişim haklarını yönet",
"Common.Views.Header.txtAccessRights": "Erişim haklarını değiştir",
"Common.Views.Header.txtRename": "Yeniden adlandır",
@ -176,12 +178,16 @@
"Common.Views.LanguageDialog.btnOk": "Tamam",
"Common.Views.LanguageDialog.labelSelect": "Belge dilini seçin",
"Common.Views.OpenDialog.cancelButtonText": "Cancel",
"Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat",
"Common.Views.OpenDialog.okButtonText": "OK",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.",
"Common.Views.OpenDialog.txtPassword": "Şifre",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya",
"Common.Views.PasswordDialog.cancelButtonText": "İptal",
"Common.Views.PasswordDialog.okButtonText": "Tamam",
"Common.Views.PasswordDialog.txtPassword": "Parola",
"Common.Views.PluginDlg.textLoading": "Yükleniyor",
"Common.Views.Plugins.groupCaption": "Eklentiler",
"Common.Views.Plugins.strPlugins": "Plugin",
@ -227,6 +233,21 @@
"Common.Views.ReviewChangesDialog.txtReject": "Reddet",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Tüm Değişiklikleri Reddet",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Mevcut Değişiklikleri Reddet",
"Common.Views.ReviewPopover.textAdd": "Ekle",
"Common.Views.ReviewPopover.textCancel": "İptal",
"Common.Views.ReviewPopover.textClose": "Kapat",
"Common.Views.ReviewPopover.textEdit": "Tamam",
"Common.Views.ReviewPopover.textReply": "Yanıtla",
"Common.Views.SignDialog.cancelButtonText": "İptal",
"Common.Views.SignDialog.okButtonText": "Tamam",
"Common.Views.SignDialog.textBold": "Kalın",
"Common.Views.SignDialog.textCertificate": "Sertifika",
"Common.Views.SignDialog.textChange": "Değiştir",
"Common.Views.SignDialog.textItalic": "İtalik",
"Common.Views.SignSettingsDialog.cancelButtonText": "İptal",
"Common.Views.SignSettingsDialog.okButtonText": "Tamam",
"Common.Views.SignSettingsDialog.textInfoEmail": "E-posta",
"Common.Views.SignSettingsDialog.textInfoName": "İsim",
"DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
"DE.Controllers.LeftMenu.newDocumentTitle": "İsimlendirilmemiş döküman",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
@ -241,7 +262,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Değişim süresi geçti.",
"DE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın",
"DE.Controllers.Main.criticalErrorTitle": "Hata",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Döküman Editörü",
"DE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.",
"DE.Controllers.Main.downloadMergeText": "Downloading...",
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
@ -306,6 +326,7 @@
"DE.Controllers.Main.textAnonymous": "Anonim",
"DE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin",
"DE.Controllers.Main.textChangesSaved": "Tüm değişiklikler kaydedildi",
"DE.Controllers.Main.textClose": "Kapat",
"DE.Controllers.Main.textCloseTip": "Ucu kapamak için tıklayın",
"DE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin",
"DE.Controllers.Main.textLoadingDocument": "Döküman yükleniyor",
@ -330,6 +351,21 @@
"DE.Controllers.Main.txtNeedSynchronize": "Güncellemeleriniz var",
"DE.Controllers.Main.txtRectangles": "Dikdörtgenler",
"DE.Controllers.Main.txtSeries": "Seriler",
"DE.Controllers.Main.txtShape_actionButtonHome": "Ev Tuşu",
"DE.Controllers.Main.txtShape_cloud": "Bulut",
"DE.Controllers.Main.txtShape_leftArrow": "Sol Ok",
"DE.Controllers.Main.txtShape_lineWithArrow": "Ok",
"DE.Controllers.Main.txtShape_noSmoking": "Simge \"Yok\"",
"DE.Controllers.Main.txtShape_star10": "10-Numara Yıldız",
"DE.Controllers.Main.txtShape_star12": "12-Numara Yıldız",
"DE.Controllers.Main.txtShape_star16": "16-Numara Yıldız",
"DE.Controllers.Main.txtShape_star24": "24-Numara Yıldız",
"DE.Controllers.Main.txtShape_star32": "32-Numara Yıldız",
"DE.Controllers.Main.txtShape_star4": "4-Numara Yıldız",
"DE.Controllers.Main.txtShape_star5": "5-Numara Yıldız",
"DE.Controllers.Main.txtShape_star6": "6-Numara Yıldız",
"DE.Controllers.Main.txtShape_star7": "7-Numara Yıldız",
"DE.Controllers.Main.txtShape_star8": "8-Numara Yıldız",
"DE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler",
"DE.Controllers.Main.txtStyle_Heading_1": "Başlık 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Başlık 2",
@ -700,6 +736,10 @@
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis",
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"DE.Views.BookmarksDialog.textAdd": "Ekle",
"DE.Views.BookmarksDialog.textClose": "Kapat",
"DE.Views.BookmarksDialog.textDelete": "Sil",
"DE.Views.BookmarksDialog.textName": "İsim",
"DE.Views.ChartSettings.textAdvanced": "Gelişmiş ayarları göster",
"DE.Views.ChartSettings.textArea": "Bölge Grafiği",
"DE.Views.ChartSettings.textBar": "Çubuk grafik",
@ -726,6 +766,11 @@
"DE.Views.ChartSettings.txtTight": "Sıkı",
"DE.Views.ChartSettings.txtTitle": "Grafik",
"DE.Views.ChartSettings.txtTopAndBottom": "Üst ve alt",
"DE.Views.ControlSettingsDialog.cancelButtonText": "İptal",
"DE.Views.ControlSettingsDialog.okButtonText": "Tamam",
"DE.Views.ControlSettingsDialog.textColor": "Renk",
"DE.Views.ControlSettingsDialog.textName": "Başlık",
"DE.Views.ControlSettingsDialog.textTag": "Etiket",
"DE.Views.CustomColumnsDialog.cancelButtonText": "İptal",
"DE.Views.CustomColumnsDialog.okButtonText": "Tamam",
"DE.Views.CustomColumnsDialog.textColumns": "Sütun sayısı",
@ -806,6 +851,9 @@
"DE.Views.DocumentHolder.textNextPage": "Sonraki Sayfa",
"DE.Views.DocumentHolder.textPaste": "Yapıştır",
"DE.Views.DocumentHolder.textPrevPage": "Önceki Sayfa",
"DE.Views.DocumentHolder.textRotate": "Döndür",
"DE.Views.DocumentHolder.textRotate270": "Döndür 90° Saatyönütersi",
"DE.Views.DocumentHolder.textRotate90": "Döndür 90° Saatyönü",
"DE.Views.DocumentHolder.textShapeAlignBottom": "Alta Hizala",
"DE.Views.DocumentHolder.textShapeAlignCenter": "Ortaya Hizala",
"DE.Views.DocumentHolder.textShapeAlignLeft": "Sola Hizala",
@ -950,6 +998,7 @@
"DE.Views.FileMenu.btnHistoryCaption": "Version History",
"DE.Views.FileMenu.btnInfoCaption": "Döküman Bilgisi...",
"DE.Views.FileMenu.btnPrintCaption": "Yazdır",
"DE.Views.FileMenu.btnProtectCaption": "Koru",
"DE.Views.FileMenu.btnRecentFilesCaption": "En sonunucuyu aç...",
"DE.Views.FileMenu.btnRenameCaption": "Yeniden adlandır...",
"DE.Views.FileMenu.btnReturnCaption": "Dökümana Geri Dön",
@ -964,10 +1013,11 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Oluşturulduktan sonra düzenleme sırasında stil ve format verebileceğiniz yeni boş metin dosyası oluşturun. Yada belli tipte yada amaçta dökümana başlamak için şablonlardan birini seçin, bu şablonlar önceden düzenlenmiştir.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Yeni Metin Dökümanı",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Şablon yok",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Yazar Ekle",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yayıncı",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Erişim haklarını değiştir",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Oluşturulma tarihi",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Yükleniyor...",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Sahip",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Sayfalar",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraflar",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasyon",
@ -1051,8 +1101,11 @@
"DE.Views.ImageSettings.textFromFile": "Dosyadan",
"DE.Views.ImageSettings.textFromUrl": "URL'den",
"DE.Views.ImageSettings.textHeight": "Yükseklik",
"DE.Views.ImageSettings.textHint270": "Döndür 90° Saatyönütersi",
"DE.Views.ImageSettings.textHint90": "Döndür 90° Saatyönü",
"DE.Views.ImageSettings.textInsert": "Resimi Değiştir",
"DE.Views.ImageSettings.textOriginalSize": "Varsayılan Boyut",
"DE.Views.ImageSettings.textRotate90": "Döndür 90°",
"DE.Views.ImageSettings.textSize": "Boyut",
"DE.Views.ImageSettings.textWidth": "Genişlik",
"DE.Views.ImageSettings.textWrap": "Kaydırma Stili",
@ -1072,6 +1125,7 @@
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Açıklama",
"DE.Views.ImageSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Başlık",
"DE.Views.ImageSettingsAdvanced.textAngle": "Açı",
"DE.Views.ImageSettingsAdvanced.textArrows": "Oklar",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "En-boy oranını kilitle",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Başlama Boyutu",
@ -1188,6 +1242,7 @@
"DE.Views.MailMergeSettings.txtPrev": "To previous record",
"DE.Views.MailMergeSettings.txtUntitled": "Untitled",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
"DE.Views.Navigation.txtCollapse": "Hepsini daralt",
"DE.Views.NoteSettingsDialog.textApply": "Uygula",
"DE.Views.NoteSettingsDialog.textApplyTo": "Değişiklikleri uygula",
"DE.Views.NoteSettingsDialog.textCancel": "İptal",
@ -1207,6 +1262,8 @@
"DE.Views.NoteSettingsDialog.textStart": "Başlatma zamanı",
"DE.Views.NoteSettingsDialog.textTextBottom": "Aşağıdaki metin",
"DE.Views.NoteSettingsDialog.textTitle": "Not ayarları",
"DE.Views.NumberingValueDialog.cancelButtonText": "İptal",
"DE.Views.NumberingValueDialog.okButtonText": "Tamam",
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
"DE.Views.PageMarginsDialog.okButtonText": "OK",
@ -1266,6 +1323,7 @@
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Karakter aralığı",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Varsayılan Sekme",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efektler",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Lider",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Sol",
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozisyon",
@ -1316,12 +1374,15 @@
"DE.Views.ShapeSettings.textFromUrl": "URL'den",
"DE.Views.ShapeSettings.textGradient": "Gradyan",
"DE.Views.ShapeSettings.textGradientFill": "Gradyan Dolgu",
"DE.Views.ShapeSettings.textHint270": "Döndür 90° Saatyönütersi",
"DE.Views.ShapeSettings.textHint90": "Döndür 90° Saatyönü",
"DE.Views.ShapeSettings.textImageTexture": "Resim yada Doldurma Deseni",
"DE.Views.ShapeSettings.textLinear": "Doğrusal",
"DE.Views.ShapeSettings.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.ShapeSettings.textNoFill": "Dolgu Yok",
"DE.Views.ShapeSettings.textPatternFill": "Desen",
"DE.Views.ShapeSettings.textRadial": "Radyal",
"DE.Views.ShapeSettings.textRotate90": "Döndür 90°",
"DE.Views.ShapeSettings.textSelectTexture": "Seç",
"DE.Views.ShapeSettings.textStretch": "Esnet",
"DE.Views.ShapeSettings.textStyle": "Stil",
@ -1361,6 +1422,14 @@
"DE.Views.StyleTitleDialog.textTitle": "Title",
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
"DE.Views.TableFormulaDialog.cancelButtonText": "İptal",
"DE.Views.TableFormulaDialog.okButtonText": "Tamam",
"DE.Views.TableOfContentsSettings.cancelButtonText": "İptal",
"DE.Views.TableOfContentsSettings.okButtonText": "Tamam",
"DE.Views.TableOfContentsSettings.textLeader": "Lider",
"DE.Views.TableOfContentsSettings.textLevel": "Seviye",
"DE.Views.TableOfContentsSettings.textLevels": "Seviyeler",
"DE.Views.TableOfContentsSettings.txtModern": "Modern",
"DE.Views.TableSettings.deleteColumnText": "Sütunu Sil",
"DE.Views.TableSettings.deleteRowText": "Satırı Sil",
"DE.Views.TableSettings.deleteTableText": "Tabloyu Sil",
@ -1382,6 +1451,7 @@
"DE.Views.TableSettings.textBorderColor": "Renk",
"DE.Views.TableSettings.textBorders": "Sınır Stili",
"DE.Views.TableSettings.textCancel": "İptal Et",
"DE.Views.TableSettings.textCellSize": "Hücre boyutu",
"DE.Views.TableSettings.textColumns": "Sütunlar",
"DE.Views.TableSettings.textEdit": "Satırlar & Sütunlar",
"DE.Views.TableSettings.textEmptyTemplate": "Şablon yok",
@ -1394,6 +1464,7 @@
"DE.Views.TableSettings.textSelectBorders": "Yukarıda seçilen stili uygulayarak değiştirmek istediğiniz sınırları seçin",
"DE.Views.TableSettings.textTemplate": "Şablondan Seç",
"DE.Views.TableSettings.textTotal": "Toplam",
"DE.Views.TableSettings.textWidth": "Genişlik",
"DE.Views.TableSettings.tipAll": "Dış Sınır ve Tüm İç Satırları Belirle",
"DE.Views.TableSettings.tipBottom": "Sadece Dış Alt Sınırı Belirle",
"DE.Views.TableSettings.tipInner": "Sadece İç Satırları Belirle",
@ -1586,6 +1657,7 @@
"DE.Views.Toolbar.textTabHome": "Ana Sayfa",
"DE.Views.Toolbar.textTabInsert": "Ekle",
"DE.Views.Toolbar.textTabLayout": "Tasarım",
"DE.Views.Toolbar.textTabProtect": "Koruma",
"DE.Views.Toolbar.textTabReview": "İnceleme",
"DE.Views.Toolbar.textTitleError": "Hata",
"DE.Views.Toolbar.textToCurrent": "Mevcut pozisyona",
@ -1596,6 +1668,7 @@
"DE.Views.Toolbar.tipAlignLeft": "Sola Hizala",
"DE.Views.Toolbar.tipAlignRight": "Sağa Hizla",
"DE.Views.Toolbar.tipBack": "Geri",
"DE.Views.Toolbar.tipBlankPage": "Boş sayfa ekle",
"DE.Views.Toolbar.tipChangeChart": "Grafik tipini değiştir",
"DE.Views.Toolbar.tipClearStyle": "Stili Temizle",
"DE.Views.Toolbar.tipColorSchemas": "Renk Şemasını Değiştir",
@ -1665,5 +1738,13 @@
"DE.Views.Toolbar.txtScheme6": "Toplama",
"DE.Views.Toolbar.txtScheme7": "Net Değer",
"DE.Views.Toolbar.txtScheme8": "Yayılma",
"DE.Views.Toolbar.txtScheme9": "Döküm"
"DE.Views.Toolbar.txtScheme9": "Döküm",
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "İptal",
"DE.Views.WatermarkSettingsDialog.okButtonText": "Tamam",
"DE.Views.WatermarkSettingsDialog.textAuto": "Otomatik",
"DE.Views.WatermarkSettingsDialog.textBold": "Kalın",
"DE.Views.WatermarkSettingsDialog.textHor": "Yatay",
"DE.Views.WatermarkSettingsDialog.textItalic": "İtalik",
"DE.Views.WatermarkSettingsDialog.textText": "Metin",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Altı çizili"
}

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Застереження",
"Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут",
"Common.Controllers.Chat.textUserLimit": "Ви використовуюєте ONLYOFFICE Free Edition. <br> Тільки два користувачі можуть одночасно редагувати документ одночасно. <br> Хочете більше? Подумайте про придбання версії ONLYOFFICE Enterprise Edition. <br> <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\"> Докладніше </a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Гість",
"Common.Controllers.ExternalDiagramEditor.textClose": "Закрити",
"Common.Controllers.ExternalDiagramEditor.warningText": "Об'єкт вимкнено, оскільки його редагує інший користувач.",
@ -240,7 +239,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.",
"DE.Controllers.Main.criticalErrorExtText": "Натисніть \"OK\", щоб повернутися до списку документів.",
"DE.Controllers.Main.criticalErrorTitle": "Помилка",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Завантаження не вдалося",
"DE.Controllers.Main.downloadMergeText": "Завантаження...",
"DE.Controllers.Main.downloadMergeTitle": "Завантаження",
@ -965,7 +963,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Немає шаблонів",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата створення",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Завантаження...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Сторінки",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Параграфи",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Cảnh báo",
"Common.Controllers.Chat.textEnterMessage": "Nhập tin nhắn của bạn ở đây",
"Common.Controllers.Chat.textUserLimit": "Bạn đang sử dụng ONLYOFFICE Free Edition.<br>Chỉ hai người dùng có thể đồng thời cùng chỉnh sửa tài liệu.<br>Bạn muốn nhiều hơn? Cân nhắc mua ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Đọc thêm</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Nặc danh",
"Common.Controllers.ExternalDiagramEditor.textClose": "Đóng",
"Common.Controllers.ExternalDiagramEditor.warningText": "Đối tượng bị vô hiệu vì nó đang được chỉnh sửa bởi một người dùng khác.",
@ -241,7 +240,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.",
"DE.Controllers.Main.criticalErrorExtText": "Nhấp \"OK\" để trở lại danh sách tài liệu.",
"DE.Controllers.Main.criticalErrorTitle": "Lỗi",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Tải về không thành công.",
"DE.Controllers.Main.downloadMergeText": "Đang tải...",
"DE.Controllers.Main.downloadMergeTitle": "Đang tải về",
@ -966,7 +964,6 @@
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Không có template",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Tác giả",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Thay đổi quyền truy cập",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Ngày tạo",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Đang tải...",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Trang",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Đoạn văn bản",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "在这里输入你的信息",
"Common.Controllers.Chat.textUserLimit": "您正在使用ONLYOFFICE免费版。<br>只有两个用户可以同时共同编辑文档。<br>想要更多考虑购买ONLYOFFICE企业版。<br> <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">阅读更多内容</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名",
"Common.Controllers.ExternalDiagramEditor.textClose": "关闭",
"Common.Controllers.ExternalDiagramEditor.warningText": "该对象被禁用,因为它被另一个用户编辑。",
@ -333,7 +332,6 @@
"DE.Controllers.Main.convertationTimeoutText": "转换超时",
"DE.Controllers.Main.criticalErrorExtText": "按“确定”返回该文件列表。",
"DE.Controllers.Main.criticalErrorTitle": "错误:",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE文档编辑器",
"DE.Controllers.Main.downloadErrorText": "下载失败",
"DE.Controllers.Main.downloadMergeText": "下载中…",
"DE.Controllers.Main.downloadMergeTitle": "下载中",
@ -1346,7 +1344,6 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "应用",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改访问权限",
"DE.Views.FileMenuPanels.DocumentInfo.txtDate": "创建日期",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "载入中……",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "页面",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落",

View file

@ -153,6 +153,7 @@ define([
Common.NotificationCenter.on('api:disconnect', _.bind(me.onCoAuthoringDisconnect, me));
Common.NotificationCenter.on('goback', _.bind(me.goBack, me));
Common.NotificationCenter.on('download:advanced', _.bind(me.onAdvancedOptions, me));
// Initialize descendants
_.each(me.getApplication().controllers, function(controller) {
@ -184,7 +185,7 @@ define([
Common.Gateway.internalMessage('listenHardBack');
}
me.defaultTitleText = me.defaultTitleText || '{{APP_TITLE_TEXT}}';
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
@ -1117,7 +1118,7 @@ define([
Common.Utils.ThemeColor.setColors(colors, standart_colors);
},
onAdvancedOptions: function(type, advOptions) {
onAdvancedOptions: function(type, advOptions, mode, formatOptions) {
if (this._state.openDlg) return;
var me = this;
@ -1135,6 +1136,37 @@ define([
me.onLongActionEnd(Asc.c_oAscAsyncActionType.BlockInteraction, LoadingDocument);
var buttons = [];
if (mode === 2) {
buttons.push({
text: me.textCancel,
onClick: function () {
me._state.openDlg = null;
}
});
}
buttons.push({
text: 'OK',
bold: true,
onClick: function() {
var encoding = picker.value;
if (me.api) {
if (mode==2) {
formatOptions && formatOptions.asc_setAdvancedOptions(new Asc.asc_CTextOptions(encoding));
me.api.asc_DownloadAs(formatOptions);
} else {
me.api.asc_setAdvancedOptions(type, new Asc.asc_CTextOptions(encoding));
}
if (!me._isDocReady) {
me.onLongActionBegin(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);
}
}
me._state.openDlg = null;
}
});
me._state.openDlg = uiApp.modal({
title: me.advTxtOptions,
text: '',
@ -1145,24 +1177,7 @@ define([
'</div>' +
'<div id="txt-encoding"></div>' +
'</div>',
buttons: [
{
text: 'OK',
bold: true,
onClick: function() {
var encoding = picker.value;
if (me.api) {
me.api.asc_setAdvancedOptions(type, new Asc.asc_CTextOptions(encoding));
if (!me._isDocReady) {
me.onLongActionBegin(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);
}
}
me._state.openDlg = null;
}
}
]
buttons: buttons
});
picker = uiApp.picker({

View file

@ -562,13 +562,16 @@ define([
format = $(e.currentTarget).data('format');
if (format) {
if (format == Asc.c_oAscFileType.TXT) {
if (format == Asc.c_oAscFileType.TXT || format == Asc.c_oAscFileType.RTF) {
_.defer(function () {
uiApp.confirm(
me.warnDownloadAs,
(format === Asc.c_oAscFileType.TXT) ? me.warnDownloadAs : me.warnDownloadAsRTF,
me.notcriticalErrorTitle,
function () {
me.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format));
if (format == Asc.c_oAscFileType.TXT)
Common.NotificationCenter.trigger('download:advanced', Asc.c_oAscAdvancedOptionsID.TXT, me.api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format));
else
me.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format));
}
);
});
@ -747,7 +750,8 @@ define([
unknownText: 'Unknown',
txtLoading : 'Loading...',
notcriticalErrorTitle : 'Warning',
warnDownloadAs : 'If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?'
warnDownloadAs : 'If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?',
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.Settings || {}))
});

View file

@ -55,7 +55,7 @@
</a>
</li>
<% } %>
<% if(phone) {%>
<% if(width < 360) {%>
<li>
<div id="settings-collaboration" class="item-content" style="display: none;">
<div class="item-media">
@ -519,6 +519,18 @@
</div>
</a>
</li>
<li>
<a data-format="68" class="item-link no-indicator">
<div class="item-content">
<div class="item-media">
<i class="icon icon-format-rtf"></i>
</div>
<div class="item-inner">
<div class="item-title">RTF</div>
</div>
</div>
</a>
</li>
<li>
<a data-format="67" class="item-link no-indicator">
<div class="item-content">

View file

@ -42,7 +42,7 @@
<i class="icon icon-search"></i>
</a>
<% } %>
<% if (!phone) { %>
<% if (width >= 360) { %>
<a href="#" id="toolbar-collaboration" class="link icon-only disabled" style="display: none;">
<i class="icon icon-collaboration"></i>
</a>

View file

@ -90,7 +90,8 @@ define([
android : Common.SharedSettings.get('android'),
phone : Common.SharedSettings.get('phone'),
orthography: Common.SharedSettings.get('sailfish'),
scope : this
scope : this,
width : $(window).width()
}));
return this;

View file

@ -90,7 +90,8 @@ define([
android : Common.SharedSettings.get('android'),
phone : Common.SharedSettings.get('phone'),
backTitle : Common.SharedSettings.get('android') ? '' : me.textBack,
scope : me
scope : me,
width : $(window).width()
}));
$('.view-main .navbar').on('addClass removeClass', _.bind(me.onDisplayMainNavbar, me));

View file

@ -54,7 +54,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализация.",
"DE.Controllers.Main.criticalErrorExtText": "Натиснете 'OK', за да се върнете към списъка с документи.",
"DE.Controllers.Main.criticalErrorTitle": "Грешка",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Редактор на документи",
"DE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.",
"DE.Controllers.Main.downloadMergeText": "Изтегля се ...",
"DE.Controllers.Main.downloadMergeTitle": "Изтеглянето",

View file

@ -50,7 +50,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.",
"DE.Controllers.Main.criticalErrorExtText": "Stisknutím tlačítka \"OK\" se vrátíte do seznamu dokumentů.",
"DE.Controllers.Main.criticalErrorTitle": "Chyba",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor dokumentů",
"DE.Controllers.Main.downloadErrorText": "Stahování selhalo.",
"DE.Controllers.Main.downloadMergeText": "Stahování...",
"DE.Controllers.Main.downloadMergeTitle": "Stahuji",

View file

@ -54,7 +54,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
"DE.Controllers.Main.criticalErrorExtText": "Drücken Sie \"OK\", um zur Dokumentenliste zurückzukehren.",
"DE.Controllers.Main.criticalErrorTitle": "Fehler",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
"DE.Controllers.Main.downloadMergeText": "Wird heruntergeladen...",
"DE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen",

View file

@ -68,31 +68,94 @@
"DE.Controllers.AddContainer.textTable": "Table",
"DE.Controllers.AddImage.textEmptyImgUrl": "You need to specify image URL.",
"DE.Controllers.AddImage.txtNotUrl": "This field should be a URL in the 'http://www.example.com' format",
"DE.Controllers.AddOther.txtNotUrl": "This field should be a URL in the 'http://www.example.com' format",
"DE.Controllers.AddOther.textBottomOfPage": "Bottom Of Page",
"DE.Controllers.AddOther.textBelowText": "Below Text",
"DE.Controllers.AddOther.textBottomOfPage": "Bottom Of Page",
"DE.Controllers.AddOther.txtNotUrl": "This field should be a URL in the 'http://www.example.com' format",
"DE.Controllers.AddTable.textCancel": "Cancel",
"DE.Controllers.AddTable.textColumns": "Columns",
"DE.Controllers.AddTable.textRows": "Rows",
"DE.Controllers.AddTable.textTableSize": "Table Size",
"del_DE.Controllers.Collaboration.textAtLeast": "at least",
"del_DE.Controllers.Collaboration.textAuto": "auto",
"del_DE.Controllers.Collaboration.textBaseline": "Baseline",
"del_DE.Controllers.Collaboration.textBold": "Bold",
"del_DE.Controllers.Collaboration.textBreakBefore": "Page break before",
"del_DE.Controllers.Collaboration.textCaps": "All caps",
"del_DE.Controllers.Collaboration.textCenter": "Align center",
"del_DE.Controllers.Collaboration.textChart": "Chart",
"del_DE.Controllers.Collaboration.textColor": "Font color",
"del_DE.Controllers.Collaboration.textContextual": "Don't add interval between paragraphs of the same style",
"del_DE.Controllers.Collaboration.textDeleted": "<b>Deleted:</b>",
"del_DE.Controllers.Collaboration.textDStrikeout": "Double strikeout",
"del_DE.Controllers.Collaboration.textEditUser": "Document is currently being edited by several users.",
"del_DE.Controllers.Collaboration.textEquation": "Equation",
"del_DE.Controllers.Collaboration.textExact": "exactly",
"del_DE.Controllers.Collaboration.textFirstLine": "First line",
"del_DE.Controllers.Collaboration.textFormatted": "Formatted",
"del_DE.Controllers.Collaboration.textHighlight": "Highlight color",
"del_DE.Controllers.Collaboration.textImage": "Image",
"del_DE.Controllers.Collaboration.textIndentLeft": "Indent left",
"del_DE.Controllers.Collaboration.textIndentRight": "Indent right",
"del_DE.Controllers.Collaboration.textInserted": "<b>Inserted:</b>",
"del_DE.Controllers.Collaboration.textItalic": "Italic",
"del_DE.Controllers.Collaboration.textJustify": "Align justify",
"del_DE.Controllers.Collaboration.textKeepLines": "Keep lines together",
"del_DE.Controllers.Collaboration.textKeepNext": "Keep with next",
"del_DE.Controllers.Collaboration.textLeft": "Align left",
"del_DE.Controllers.Collaboration.textLineSpacing": "Line Spacing: ",
"del_DE.Controllers.Collaboration.textMultiple": "multiple",
"del_DE.Controllers.Collaboration.textNoBreakBefore": "No page break before",
"del_DE.Controllers.Collaboration.textNoContextual": "Add interval between paragraphs of the same style",
"del_DE.Controllers.Collaboration.textNoKeepLines": "Don't keep lines together",
"del_DE.Controllers.Collaboration.textNoKeepNext": "Don't keep with next",
"del_DE.Controllers.Collaboration.textNot": "Not",
"del_DE.Controllers.Collaboration.textNoWidow": "No widow control",
"del_DE.Controllers.Collaboration.textNum": "Change numbering",
"del_DE.Controllers.Collaboration.textParaDeleted": "<b>Paragraph Deleted</b>",
"del_DE.Controllers.Collaboration.textParaFormatted": "<b>Paragraph Formatted</b>",
"del_DE.Controllers.Collaboration.textParaInserted": "<b>Paragraph Inserted</b>",
"del_DE.Controllers.Collaboration.textParaMoveFromDown": "<b>Moved Down:</b>",
"del_DE.Controllers.Collaboration.textParaMoveFromUp": "<b>Moved Up:</b>",
"del_DE.Controllers.Collaboration.textParaMoveTo": "<b>Moved:</b>",
"del_DE.Controllers.Collaboration.textPosition": "Position",
"del_DE.Controllers.Collaboration.textRight": "Align right",
"del_DE.Controllers.Collaboration.textShape": "Shape",
"del_DE.Controllers.Collaboration.textShd": "Background color",
"del_DE.Controllers.Collaboration.textSmallCaps": "Small caps",
"del_DE.Controllers.Collaboration.textSpacing": "Spacing",
"del_DE.Controllers.Collaboration.textSpacingAfter": "Spacing after",
"del_DE.Controllers.Collaboration.textSpacingBefore": "Spacing before",
"del_DE.Controllers.Collaboration.textStrikeout": "Strikeout",
"del_DE.Controllers.Collaboration.textSubScript": "Subscript",
"del_DE.Controllers.Collaboration.textSuperScript": "Superscript",
"del_DE.Controllers.Collaboration.textTableChanged": "<b>Table Settings Changed</b>",
"del_DE.Controllers.Collaboration.textTableRowsAdd": "<b>Table Rows Added<b/>",
"del_DE.Controllers.Collaboration.textTableRowsDel": "<b>Table Rows Deleted<b/>",
"del_DE.Controllers.Collaboration.textTabs": "Change tabs",
"del_DE.Controllers.Collaboration.textUnderline": "Underline",
"del_DE.Controllers.Collaboration.textWidow": "Widow control",
"del_DE.Controllers.DocumentHolder.menuAccept": "Accept",
"del_DE.Controllers.DocumentHolder.menuAcceptAll": "Accept All",
"DE.Controllers.DocumentHolder.menuAddLink": "Add Link",
"DE.Controllers.DocumentHolder.menuCopy": "Copy",
"DE.Controllers.DocumentHolder.menuCut": "Cut",
"DE.Controllers.DocumentHolder.menuDelete": "Delete",
"DE.Controllers.DocumentHolder.menuDeleteTable": "Delete Table",
"DE.Controllers.DocumentHolder.menuEdit": "Edit",
"DE.Controllers.DocumentHolder.menuMerge": "Merge Cells",
"DE.Controllers.DocumentHolder.menuMore": "More",
"DE.Controllers.DocumentHolder.menuOpenLink": "Open Link",
"DE.Controllers.DocumentHolder.menuPaste": "Paste",
"del_DE.Controllers.DocumentHolder.menuReject": "Reject",
"del_DE.Controllers.DocumentHolder.menuRejectAll": "Reject All",
"DE.Controllers.DocumentHolder.menuReview": "Review",
"DE.Controllers.DocumentHolder.sheetCancel": "Cancel",
"DE.Controllers.DocumentHolder.textGuest": "Guest",
"DE.Controllers.DocumentHolder.menuMerge": "Merge Cells",
"DE.Controllers.DocumentHolder.menuReviewChange": "Review Change",
"DE.Controllers.DocumentHolder.menuSplit": "Split Cell",
"DE.Controllers.DocumentHolder.sheetCancel": "Cancel",
"DE.Controllers.DocumentHolder.textCancel": "Cancel",
"DE.Controllers.DocumentHolder.textColumns": "Columns",
"DE.Controllers.DocumentHolder.textGuest": "Guest",
"DE.Controllers.DocumentHolder.textRows": "Rows",
"DE.Controllers.DocumentHolder.menuDeleteTable": "Delete Table",
"DE.Controllers.DocumentHolder.menuReviewChange": "Review Change",
"DE.Controllers.EditContainer.textChart": "Chart",
"DE.Controllers.EditContainer.textFooter": "Footer",
"DE.Controllers.EditContainer.textHeader": "Header",
@ -118,7 +181,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
"DE.Controllers.Main.criticalErrorExtText": "Press 'OK' to return to document list.",
"DE.Controllers.Main.criticalErrorTitle": "Error",
"del_DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Download failed.",
"DE.Controllers.Main.downloadMergeText": "Downloading...",
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
@ -231,8 +293,8 @@
"DE.Controllers.Main.warnLicenseExceeded": "The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
"DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
"DE.Controllers.Main.warnNoLicense": "This version of %1 Editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 Editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"DE.Controllers.Search.textNoTextFound": "Text not Found",
"DE.Controllers.Search.textReplaceAll": "Replace All",
@ -240,6 +302,7 @@
"DE.Controllers.Settings.txtLoading": "Loading...",
"DE.Controllers.Settings.unknownText": "Unknown",
"DE.Controllers.Settings.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.Settings.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.Toolbar.dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "You leave the application",
"DE.Controllers.Toolbar.leaveButtonText": "Leave this Page",
@ -260,10 +323,14 @@
"DE.Views.AddOther.textCurrentPos": "Current Position",
"DE.Views.AddOther.textDisplay": "Display",
"DE.Views.AddOther.textEvenPage": "Even Page",
"DE.Views.AddOther.textFootnote": "Footnote",
"DE.Views.AddOther.textFormat": "Format",
"DE.Views.AddOther.textInsert": "Insert",
"DE.Views.AddOther.textInsertFootnote": "Insert Footnote",
"DE.Views.AddOther.textLeftBottom": "Left Bottom",
"DE.Views.AddOther.textLeftTop": "Left Top",
"DE.Views.AddOther.textLink": "Link",
"DE.Views.AddOther.textLocation": "Location",
"DE.Views.AddOther.textNextPage": "Next Page",
"DE.Views.AddOther.textOddPage": "Odd Page",
"DE.Views.AddOther.textPageBreak": "Page Break",
@ -272,12 +339,21 @@
"DE.Views.AddOther.textRightBottom": "Right Bottom",
"DE.Views.AddOther.textRightTop": "Right Top",
"DE.Views.AddOther.textSectionBreak": "Section Break",
"DE.Views.AddOther.textTip": "Screen Tip",
"DE.Views.AddOther.textFootnote": "Footnote",
"DE.Views.AddOther.textInsertFootnote": "Insert Footnote",
"DE.Views.AddOther.textFormat": "Format",
"DE.Views.AddOther.textStartFrom": "Start At",
"DE.Views.AddOther.textLocation": "Location",
"DE.Views.AddOther.textTip": "Screen Tip",
"del_DE.Views.Collaboration.textAcceptAllChanges": "Accept All Changes",
"del_DE.Views.Collaboration.textBack": "Back",
"del_DE.Views.Collaboration.textChange": "Review Change",
"del_DE.Views.Collaboration.textCollaboration": "Collaboration",
"del_DE.Views.Collaboration.textDisplayMode": "Display Mode",
"del_DE.Views.Collaboration.textEditUsers": "Users",
"del_DE.Views.Collaboration.textFinal": "Final",
"del_DE.Views.Collaboration.textMarkup": "Markup",
"del_DE.Views.Collaboration.textOriginal": "Original",
"del_DE.Views.Collaboration.textRejectAllChanges": "Reject All Changes",
"del_DE.Views.Collaboration.textReview": "Track Changes",
"del_DE.Views.Collaboration.textReviewing": "Review",
"del_DE.Views.Collaboration.textСomments": "Сomments",
"DE.Views.EditChart.textAlign": "Align",
"DE.Views.EditChart.textBack": "Back",
"DE.Views.EditChart.textBackward": "Move Backward",
@ -442,9 +518,12 @@
"DE.Views.Search.textSearch": "Search",
"DE.Views.Settings.textAbout": "About",
"DE.Views.Settings.textAddress": "address",
"DE.Views.Settings.textAdvancedSettings": "Application Settings",
"DE.Views.Settings.textAuthor": "Author",
"DE.Views.Settings.textBack": "Back",
"DE.Views.Settings.textBottom": "Bottom",
"DE.Views.Settings.textCentimeter": "Centimeter",
"DE.Views.Settings.textColorSchemes": "Color Schemes",
"DE.Views.Settings.textCreateDate": "Creation date",
"DE.Views.Settings.textCustom": "Custom",
"DE.Views.Settings.textCustomSize": "Custom Size",
@ -461,13 +540,17 @@
"DE.Views.Settings.textFindAndReplace": "Find and Replace",
"DE.Views.Settings.textFormat": "Format",
"DE.Views.Settings.textHelp": "Help",
"DE.Views.Settings.textHiddenTableBorders": "Hidden Table Borders",
"DE.Views.Settings.textInch": "Inch",
"DE.Views.Settings.textLandscape": "Landscape",
"DE.Views.Settings.textLeft": "Left",
"DE.Views.Settings.textLoading": "Loading...",
"DE.Views.Settings.textMargins": "Margins",
"DE.Views.Settings.textNoCharacters": "Nonprinting Characters",
"DE.Views.Settings.textOrientation": "Orientation",
"DE.Views.Settings.textPages": "Pages",
"DE.Views.Settings.textParagraphs": "Paragraphs",
"DE.Views.Settings.textPoint": "Point",
"DE.Views.Settings.textPortrait": "Portrait",
"DE.Views.Settings.textPoweredBy": "Powered by",
"DE.Views.Settings.textPrint": "Print",
@ -481,17 +564,10 @@
"DE.Views.Settings.textSymbols": "Symbols",
"DE.Views.Settings.textTel": "tel",
"DE.Views.Settings.textTop": "Top",
"DE.Views.Settings.textUnitOfMeasurement": "Unit of Measurement",
"DE.Views.Settings.textVersion": "Version",
"DE.Views.Settings.textWords": "Words",
"DE.Views.Settings.unknownText": "Unknown",
"DE.Views.Settings.textAdvancedSettings": "Application Settings",
"DE.Views.Settings.textUnitOfMeasurement": "Unit of Measurement",
"DE.Views.Settings.textCentimeter": "Centimeter",
"DE.Views.Settings.textPoint": "Point",
"DE.Views.Settings.textInch": "Inch",
"DE.Views.Settings.textColorSchemes": "Color Schemes",
"DE.Views.Settings.textNoCharacters": "Nonprinting Characters",
"DE.Views.Settings.textHiddenTableBorders": "Hidden Table Borders",
"DE.Views.Settings.textCommentingDisplay": "Commenting Display",
"DE.Views.Settings.textDisplayComments": "Comments",
"DE.Views.Settings.textDisplayResolvedComments": "Resolved Comments",

View file

@ -9,26 +9,94 @@
"DE.Controllers.AddContainer.textTable": "Tabla",
"DE.Controllers.AddImage.textEmptyImgUrl": "Hay que especificar URL de imagen.",
"DE.Controllers.AddImage.txtNotUrl": "Este campo debe ser URL-dirección en el formato 'http://www.example.com'",
"DE.Controllers.AddOther.textBelowText": "Bajo el texto",
"DE.Controllers.AddOther.textBottomOfPage": "Al pie de la página",
"DE.Controllers.AddOther.txtNotUrl": "Este campo debe ser URL-dirección en el formato 'http://www.example.com'",
"DE.Controllers.AddTable.textCancel": "Cancelar",
"DE.Controllers.AddTable.textColumns": "Columnas",
"DE.Controllers.AddTable.textRows": "Filas",
"DE.Controllers.AddTable.textTableSize": "Tamaño de tabla",
"Common.Controllers.Collaboration.textAtLeast": "al menos",
"Common.Controllers.Collaboration.textAuto": "auto",
"Common.Controllers.Collaboration.textBaseline": "Línea de base",
"Common.Controllers.Collaboration.textBold": "Negrita",
"Common.Controllers.Collaboration.textBreakBefore": "Salto de página anterior",
"Common.Controllers.Collaboration.textCaps": "Mayúsculas",
"Common.Controllers.Collaboration.textCenter": "Alinear al centro",
"Common.Controllers.Collaboration.textChart": "Gráfico",
"Common.Controllers.Collaboration.textColor": "Color de fuente",
"Common.Controllers.Collaboration.textContextual": "No añadir intervalo entre párrafos del mismo estilo",
"Common.Controllers.Collaboration.textDeleted": "<b>Eliminado:</b>",
"Common.Controllers.Collaboration.textDStrikeout": "Doble tachado",
"Common.Controllers.Collaboration.textEditUser": "El documento está siendo editado por múltiples usuarios.",
"Common.Controllers.Collaboration.textEquation": "Ecuación",
"Common.Controllers.Collaboration.textExact": "exactamente",
"Common.Controllers.Collaboration.textFirstLine": "Primera línea",
"Common.Controllers.Collaboration.textFormatted": "Formateado",
"Common.Controllers.Collaboration.textHighlight": "Color de resaltado",
"Common.Controllers.Collaboration.textImage": "Imagen",
"Common.Controllers.Collaboration.textIndentLeft": "Sangría izquierda",
"Common.Controllers.Collaboration.textIndentRight": "Sangría derecha",
"Common.Controllers.Collaboration.textInserted": "<b>Insertado:</b>",
"Common.Controllers.Collaboration.textItalic": "Cursiva",
"Common.Controllers.Collaboration.textJustify": "Alinear al ancho",
"Common.Controllers.Collaboration.textKeepLines": "Mantener líneas juntas",
"Common.Controllers.Collaboration.textKeepNext": "Mantener con el siguiente",
"Common.Controllers.Collaboration.textLeft": "Alinear a la izquierda",
"Common.Controllers.Collaboration.textLineSpacing": "Espaciado de línea: ",
"Common.Controllers.Collaboration.textMultiple": "Multiplicador",
"Common.Controllers.Collaboration.textNoBreakBefore": "Sin salto de página anterior",
"Common.Controllers.Collaboration.textNoContextual": "Añadir intervalo entre párrafos del mismo estilo",
"Common.Controllers.Collaboration.textNoKeepLines": "No mantener líneas juntas",
"Common.Controllers.Collaboration.textNoKeepNext": "No mantener con el siguiente",
"Common.Controllers.Collaboration.textNot": "No",
"Common.Controllers.Collaboration.textNoWidow": "Sin widow control",
"Common.Controllers.Collaboration.textNum": "Cambiar numeración",
"Common.Controllers.Collaboration.textParaDeleted": "<b>Párrafo Eliminado</b> ",
"Common.Controllers.Collaboration.textParaFormatted": "<b>Párrafo formateado</b>",
"Common.Controllers.Collaboration.textParaInserted": "<b>Párrafo Insertado</b> ",
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Bajado:</b>",
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Subido:</b>",
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Movido:</b>",
"Common.Controllers.Collaboration.textPosition": "Posición",
"Common.Controllers.Collaboration.textRight": "Alinear a la derecha",
"Common.Controllers.Collaboration.textShape": "Forma",
"Common.Controllers.Collaboration.textShd": "Color del fondo",
"Common.Controllers.Collaboration.textSmallCaps": "Versalitas",
"Common.Controllers.Collaboration.textSpacing": "Espaciado",
"Common.Controllers.Collaboration.textSpacingAfter": "Espaciado después",
"Common.Controllers.Collaboration.textSpacingBefore": "Espaciado antes",
"Common.Controllers.Collaboration.textStrikeout": "Tachado",
"Common.Controllers.Collaboration.textSubScript": "Subíndice",
"Common.Controllers.Collaboration.textSuperScript": "Superíndice",
"Common.Controllers.Collaboration.textTableChanged": "<b>Se cambió configuración de la tabla</b>",
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Se añadieron filas de la tabla<b/>",
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Se eliminaron filas de la tabla<b/>",
"Common.Controllers.Collaboration.textTabs": "Cambiar tabuladores",
"Common.Controllers.Collaboration.textUnderline": "Subrayado",
"Common.Controllers.Collaboration.textWidow": "Widow control",
"DE.Controllers.DocumentHolder.menuAccept": "Aceptar",
"DE.Controllers.DocumentHolder.menuAcceptAll": "Aceptar todo",
"DE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ",
"DE.Controllers.DocumentHolder.menuCopy": "Copiar ",
"DE.Controllers.DocumentHolder.menuCut": "Cortar",
"DE.Controllers.DocumentHolder.menuDelete": "Eliminar",
"DE.Controllers.DocumentHolder.menuDeleteTable": "Borrar tabla",
"DE.Controllers.DocumentHolder.menuEdit": "Editar",
"DE.Controllers.DocumentHolder.menuMerge": "Combinar celdas",
"DE.Controllers.DocumentHolder.menuMore": "Más",
"DE.Controllers.DocumentHolder.menuOpenLink": "Abrir enlace",
"DE.Controllers.DocumentHolder.menuPaste": "Pegar",
"DE.Controllers.DocumentHolder.menuReject": "Rechazar",
"DE.Controllers.DocumentHolder.menuRejectAll": "Rechazar todo",
"DE.Controllers.DocumentHolder.menuReview": "Revista",
"DE.Controllers.DocumentHolder.menuReviewChange": "Revisar cambios",
"DE.Controllers.DocumentHolder.menuSplit": "Dividir celda",
"DE.Controllers.DocumentHolder.sheetCancel": "Cancelar",
"DE.Controllers.DocumentHolder.textCancel": "Cancelar",
"DE.Controllers.DocumentHolder.textColumns": "Columnas",
"DE.Controllers.DocumentHolder.textGuest": "Visitante",
"DE.Controllers.DocumentHolder.textRows": "Filas",
"DE.Controllers.EditContainer.textChart": "Gráfico",
"DE.Controllers.EditContainer.textFooter": "Pie de página",
"DE.Controllers.EditContainer.textHeader": "Encabezado",
@ -54,7 +122,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.",
"DE.Controllers.Main.criticalErrorExtText": "Pulse 'OK' para volver a la lista de documentos.",
"DE.Controllers.Main.criticalErrorTitle": "Error",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Fallo en descarga ",
"DE.Controllers.Main.downloadMergeText": "Descargando...",
"DE.Controllers.Main.downloadMergeTitle": "Descargando",
@ -63,7 +130,7 @@
"DE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con su Administrador del Servidor de Documentos.",
"DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "La conexión al servidor se ha perdido. Usted ya no puede editar.",
"DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, verifique los ajustes de conexión o contacte con su administrador.<br>Cuando pulsa el botón 'OK', se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de la conexión de Servidor de Documentos <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">aquí</a>",
"DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de la conexión de Servidor de Documentos <a href=\"%1\" target=\"_blank\">aquí</a>",
"DE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión a la base de datos. Por favor, contacte con el equipo de soporte técnico.",
"DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
@ -120,7 +187,7 @@
"DE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.<br>Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"DE.Controllers.Main.textDone": "Listo",
"DE.Controllers.Main.textLoadingDocument": "Cargando documento",
"DE.Controllers.Main.textNoLicenseTitle": "Limitación de conexiones ONLYOFFICE",
"DE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones",
"DE.Controllers.Main.textOK": "OK",
"DE.Controllers.Main.textPaidFeature": "Función de pago",
"DE.Controllers.Main.textPassword": "Contraseña",
@ -168,7 +235,7 @@
"DE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.<br>Por favor, actualice su licencia y después recargue la página.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.<br>Por favor, contacte con su administrador para recibir más información.",
"DE.Controllers.Main.warnNoLicense": "Esta versión de los Editores de ONLYOFFICE tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.<br>Si se requiere más, por favor, considere comprar una licencia comercial.",
"DE.Controllers.Main.warnNoLicenseUsers": "Esta versión de Editores de ONLYOFFICE tiene ciertas limitaciones para usuarios simultáneos.<br>Si se requiere más, por favor, considere comprar una licencia comercial.",
"DE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.<br>Si necesita más, por favor, considere comprar una licencia comercial.",
"DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
"DE.Controllers.Search.textNoTextFound": "Texto no es encontrado",
"DE.Controllers.Search.textReplaceAll": "Reemplazar todo",
@ -196,10 +263,14 @@
"DE.Views.AddOther.textCurrentPos": "Posición actual",
"DE.Views.AddOther.textDisplay": "Mostrar",
"DE.Views.AddOther.textEvenPage": "Página par",
"DE.Views.AddOther.textFootnote": "Nota al pie",
"DE.Views.AddOther.textFormat": "Formato",
"DE.Views.AddOther.textInsert": "Insertar",
"DE.Views.AddOther.textInsertFootnote": "Insertar nota al pie",
"DE.Views.AddOther.textLeftBottom": "Abajo a la izquierda",
"DE.Views.AddOther.textLeftTop": "Arriba a la izquierda",
"DE.Views.AddOther.textLink": "Enlace",
"DE.Views.AddOther.textLocation": "Ubicación",
"DE.Views.AddOther.textNextPage": "Página siguiente",
"DE.Views.AddOther.textOddPage": "Página impar",
"DE.Views.AddOther.textPageBreak": "Salto de página ",
@ -208,7 +279,21 @@
"DE.Views.AddOther.textRightBottom": "Abajo a la derecha",
"DE.Views.AddOther.textRightTop": "Arriba a la derecha",
"DE.Views.AddOther.textSectionBreak": "Salto de sección",
"DE.Views.AddOther.textStartFrom": "Empezar con",
"DE.Views.AddOther.textTip": "Consejos de pantalla",
"Common.Views.Collaboration.textAcceptAllChanges": "Aceptar todos los cambios",
"Common.Views.Collaboration.textBack": "Atrás",
"Common.Views.Collaboration.textChange": "Revisar cambios",
"Common.Views.Collaboration.textCollaboration": "Colaboración",
"Common.Views.Collaboration.textDisplayMode": "Modo de visualización",
"Common.Views.Collaboration.textEditUsers": "Usuarios",
"Common.Views.Collaboration.textFinal": "Final",
"Common.Views.Collaboration.textMarkup": "Cambios",
"Common.Views.Collaboration.textOriginal": "Original",
"Common.Views.Collaboration.textRejectAllChanges": "Rechazar todos los cambios",
"Common.Views.Collaboration.textReview": "Seguimiento de cambios",
"Common.Views.Collaboration.textReviewing": "Revisión",
"Common.Views.Collaboration.textСomments": "Comentarios",
"DE.Views.EditChart.textAlign": "Alineación",
"DE.Views.EditChart.textBack": "Atrás",
"DE.Views.EditChart.textBackward": "Mover atrás",
@ -373,9 +458,12 @@
"DE.Views.Search.textSearch": "Buscar",
"DE.Views.Settings.textAbout": "Acerca",
"DE.Views.Settings.textAddress": "dirección",
"DE.Views.Settings.textAdvancedSettings": "Ajustes de aplicación",
"DE.Views.Settings.textAuthor": "Autor",
"DE.Views.Settings.textBack": "Atrás",
"DE.Views.Settings.textBottom": "Abajo ",
"DE.Views.Settings.textCentimeter": "Centímetro",
"DE.Views.Settings.textColorSchemes": "Esquemas de color",
"DE.Views.Settings.textCreateDate": "Fecha de creación",
"DE.Views.Settings.textCustom": "Personalizado",
"DE.Views.Settings.textCustomSize": "Tamaño personalizado",
@ -392,13 +480,17 @@
"DE.Views.Settings.textFindAndReplace": "Encontrar y reemplazar",
"DE.Views.Settings.textFormat": "Formato",
"DE.Views.Settings.textHelp": "Ayuda",
"DE.Views.Settings.textHiddenTableBorders": "Bordes de tabla escondidos",
"DE.Views.Settings.textInch": "Pulgada",
"DE.Views.Settings.textLandscape": "Horizontal",
"DE.Views.Settings.textLeft": "A la izquierda",
"DE.Views.Settings.textLoading": "Cargando...",
"DE.Views.Settings.textMargins": "Márgenes",
"DE.Views.Settings.textNoCharacters": "Caracteres no imprimibles",
"DE.Views.Settings.textOrientation": "Orientación ",
"DE.Views.Settings.textPages": "Páginas",
"DE.Views.Settings.textParagraphs": "Párrafos",
"DE.Views.Settings.textPoint": "Punto",
"DE.Views.Settings.textPortrait": "Vertical",
"DE.Views.Settings.textPoweredBy": "Desarrollado por",
"DE.Views.Settings.textPrint": "Imprimir",
@ -412,6 +504,7 @@
"DE.Views.Settings.textSymbols": "Símbolos",
"DE.Views.Settings.textTel": "Tel.",
"DE.Views.Settings.textTop": "Superior",
"DE.Views.Settings.textUnitOfMeasurement": "Unidad de medida",
"DE.Views.Settings.textVersion": "Versión ",
"DE.Views.Settings.textWords": "Palabras",
"DE.Views.Settings.unknownText": "Desconocido",

View file

@ -9,26 +9,94 @@
"DE.Controllers.AddContainer.textTable": "Tableau",
"DE.Controllers.AddImage.textEmptyImgUrl": "Spécifiez URL de l'image",
"DE.Controllers.AddImage.txtNotUrl": "Ce champ doit être une URL de la forme suivante: 'http://www.example.com'",
"DE.Controllers.AddOther.textBelowText": "Sous le texte",
"DE.Controllers.AddOther.textBottomOfPage": "Bas de page",
"DE.Controllers.AddOther.txtNotUrl": "Ce champ doit être une URL de la forme suivante: 'http://www.example.com'",
"DE.Controllers.AddTable.textCancel": "Annuler",
"DE.Controllers.AddTable.textColumns": "Colonnes",
"DE.Controllers.AddTable.textRows": "Lignes",
"DE.Controllers.AddTable.textTableSize": "Taille du tableau",
"Common.Controllers.Collaboration.textAtLeast": "au moins ",
"Common.Controllers.Collaboration.textAuto": "auto",
"Common.Controllers.Collaboration.textBaseline": "Ligne de base",
"Common.Controllers.Collaboration.textBold": "Gras",
"Common.Controllers.Collaboration.textBreakBefore": "Saut de page avant",
"Common.Controllers.Collaboration.textCaps": "Tout en majuscules",
"Common.Controllers.Collaboration.textCenter": "Aligner au centre",
"Common.Controllers.Collaboration.textChart": "Graphique",
"Common.Controllers.Collaboration.textColor": "Couleur de police",
"Common.Controllers.Collaboration.textContextual": "Ne pas ajouter d'intervalle entre paragraphes du même style",
"Common.Controllers.Collaboration.textDeleted": "<b>Supprimé:</b>",
"Common.Controllers.Collaboration.textDStrikeout": "Double-barré",
"Common.Controllers.Collaboration.textEditUser": "Document est en cours de modification par plusieurs utilisateurs.",
"Common.Controllers.Collaboration.textEquation": "Équation",
"Common.Controllers.Collaboration.textExact": "exactement",
"Common.Controllers.Collaboration.textFirstLine": "Première ligne",
"Common.Controllers.Collaboration.textFormatted": "Formaté",
"Common.Controllers.Collaboration.textHighlight": "Couleur de surlignage",
"Common.Controllers.Collaboration.textImage": "Image",
"Common.Controllers.Collaboration.textIndentLeft": "Retrait à gauche",
"Common.Controllers.Collaboration.textIndentRight": "Retrait à droite",
"Common.Controllers.Collaboration.textInserted": "<b>Inséré:</b>",
"Common.Controllers.Collaboration.textItalic": "Italique",
"Common.Controllers.Collaboration.textJustify": "Justifier ",
"Common.Controllers.Collaboration.textKeepLines": "Lignes solidaires",
"Common.Controllers.Collaboration.textKeepNext": "Paragraphes solidaires",
"Common.Controllers.Collaboration.textLeft": "Aligner à gauche",
"Common.Controllers.Collaboration.textLineSpacing": "Interligne:",
"Common.Controllers.Collaboration.textMultiple": "multiple ",
"Common.Controllers.Collaboration.textNoBreakBefore": "Pas de saut de page avant",
"Common.Controllers.Collaboration.textNoContextual": "Ajouter un intervalle entre les paragraphes du même style",
"Common.Controllers.Collaboration.textNoKeepLines": "Ne gardez pas de lignes ensemble",
"Common.Controllers.Collaboration.textNoKeepNext": "Ne gardez pas avec la prochaine",
"Common.Controllers.Collaboration.textNot": "Non",
"Common.Controllers.Collaboration.textNoWidow": "Pas de contrôle des veuves",
"Common.Controllers.Collaboration.textNum": "Changer la numérotation",
"Common.Controllers.Collaboration.textParaDeleted": "<b>Paragraphe supprimé</b> ",
"Common.Controllers.Collaboration.textParaFormatted": "<b>Paragraphe Formaté</b>",
"Common.Controllers.Collaboration.textParaInserted": "<b>Paragraphe inséré</b> ",
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Déplacé vers le bas:</b>",
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Déplacé vers le haut:</b>",
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Déplacé:</b>",
"Common.Controllers.Collaboration.textPosition": "Position",
"Common.Controllers.Collaboration.textRight": "Aligner à droite",
"Common.Controllers.Collaboration.textShape": "Forme",
"Common.Controllers.Collaboration.textShd": "Couleur d'arrière-plan",
"Common.Controllers.Collaboration.textSmallCaps": "Petites majuscules",
"Common.Controllers.Collaboration.textSpacing": "Espacement",
"Common.Controllers.Collaboration.textSpacingAfter": "Espacement après",
"Common.Controllers.Collaboration.textSpacingBefore": "Espacement avant",
"Common.Controllers.Collaboration.textStrikeout": "Barré",
"Common.Controllers.Collaboration.textSubScript": "Indice",
"Common.Controllers.Collaboration.textSuperScript": "Exposant",
"Common.Controllers.Collaboration.textTableChanged": "<b>Paramètres du tableau modifiés</b>",
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Lignes de tableau ajoutées<b/>",
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Lignes de tableau supprimées<b/>",
"Common.Controllers.Collaboration.textTabs": "Changer les tabulations",
"Common.Controllers.Collaboration.textUnderline": "Souligné",
"Common.Controllers.Collaboration.textWidow": "Contrôle des veuves",
"DE.Controllers.DocumentHolder.menuAccept": "Accepter",
"DE.Controllers.DocumentHolder.menuAcceptAll": "Accepter tout",
"DE.Controllers.DocumentHolder.menuAddLink": "Ajouter le lien",
"DE.Controllers.DocumentHolder.menuCopy": "Copier",
"DE.Controllers.DocumentHolder.menuCut": "Couper",
"DE.Controllers.DocumentHolder.menuDelete": "Supprimer",
"DE.Controllers.DocumentHolder.menuDeleteTable": "Supprimer le tableau",
"DE.Controllers.DocumentHolder.menuEdit": "Modifier",
"DE.Controllers.DocumentHolder.menuMerge": "Fusionner les cellules",
"DE.Controllers.DocumentHolder.menuMore": "Plus",
"DE.Controllers.DocumentHolder.menuOpenLink": "Ouvrir le lien",
"DE.Controllers.DocumentHolder.menuPaste": "Coller",
"DE.Controllers.DocumentHolder.menuReject": "Rejeter",
"DE.Controllers.DocumentHolder.menuRejectAll": "Rejeter tout",
"DE.Controllers.DocumentHolder.menuReview": "Révision",
"DE.Controllers.DocumentHolder.menuReviewChange": "Réviser modifications",
"DE.Controllers.DocumentHolder.menuSplit": "Fractionner la cellule",
"DE.Controllers.DocumentHolder.sheetCancel": "Annuler",
"DE.Controllers.DocumentHolder.textCancel": "Annuler",
"DE.Controllers.DocumentHolder.textColumns": "Colonnes",
"DE.Controllers.DocumentHolder.textGuest": "Invité",
"DE.Controllers.DocumentHolder.textRows": "Lignes",
"DE.Controllers.EditContainer.textChart": "Graphique",
"DE.Controllers.EditContainer.textFooter": "Pied de page",
"DE.Controllers.EditContainer.textHeader": "En-tête",
@ -54,7 +122,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.",
"DE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.",
"DE.Controllers.Main.criticalErrorTitle": "Erreur",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Échec du téléchargement.",
"DE.Controllers.Main.downloadMergeText": "Téléchargement en cours...",
"DE.Controllers.Main.downloadMergeTitle": "Téléchargement en cours",
@ -196,10 +263,14 @@
"DE.Views.AddOther.textCurrentPos": "Position actuelle",
"DE.Views.AddOther.textDisplay": "Afficher",
"DE.Views.AddOther.textEvenPage": "Page paire",
"DE.Views.AddOther.textFootnote": "Note de bas de page",
"DE.Views.AddOther.textFormat": "Format",
"DE.Views.AddOther.textInsert": "Insérer",
"DE.Views.AddOther.textInsertFootnote": "Insérer une note de bas de page",
"DE.Views.AddOther.textLeftBottom": "À gauche en bas",
"DE.Views.AddOther.textLeftTop": "À gauche en haut",
"DE.Views.AddOther.textLink": "Lien",
"DE.Views.AddOther.textLocation": "Emplacement",
"DE.Views.AddOther.textNextPage": "Page suivante",
"DE.Views.AddOther.textOddPage": "Page impaire",
"DE.Views.AddOther.textPageBreak": "Saut de page",
@ -208,7 +279,21 @@
"DE.Views.AddOther.textRightBottom": "À droite en bas",
"DE.Views.AddOther.textRightTop": "À droite en haut",
"DE.Views.AddOther.textSectionBreak": "Saut de section",
"DE.Views.AddOther.textStartFrom": "À partir de",
"DE.Views.AddOther.textTip": "Info-bulle",
"Common.Views.Collaboration.textAcceptAllChanges": "Accepter toutes les modifications",
"Common.Views.Collaboration.textBack": "Retour",
"Common.Views.Collaboration.textChange": "Réviser modifications",
"Common.Views.Collaboration.textCollaboration": "Collaboration",
"Common.Views.Collaboration.textDisplayMode": "Mode d'affichage",
"Common.Views.Collaboration.textEditUsers": "Utilisateurs",
"Common.Views.Collaboration.textFinal": "Final",
"Common.Views.Collaboration.textMarkup": "Balisage",
"Common.Views.Collaboration.textOriginal": "Original",
"Common.Views.Collaboration.textRejectAllChanges": "Refuser toutes les modifications ",
"Common.Views.Collaboration.textReview": "Suivi des modifications",
"Common.Views.Collaboration.textReviewing": "Révision",
"Common.Views.Collaboration.textСomments": "Commentaires",
"DE.Views.EditChart.textAlign": "Aligner",
"DE.Views.EditChart.textBack": "Retour",
"DE.Views.EditChart.textBackward": "Déplacer vers l'arrière",
@ -373,9 +458,12 @@
"DE.Views.Search.textSearch": "Rechercher",
"DE.Views.Settings.textAbout": "A propos",
"DE.Views.Settings.textAddress": "adresse",
"DE.Views.Settings.textAdvancedSettings": "Paramètres de l'application",
"DE.Views.Settings.textAuthor": "Auteur",
"DE.Views.Settings.textBack": "Retour",
"DE.Views.Settings.textBottom": "En bas",
"DE.Views.Settings.textCentimeter": "Centimètre",
"DE.Views.Settings.textColorSchemes": "Jeux de couleurs",
"DE.Views.Settings.textCreateDate": "Date de création",
"DE.Views.Settings.textCustom": "Personnalisé",
"DE.Views.Settings.textCustomSize": "Taille personnalisée",
@ -392,13 +480,17 @@
"DE.Views.Settings.textFindAndReplace": "Rechercher et remplacer",
"DE.Views.Settings.textFormat": "Format",
"DE.Views.Settings.textHelp": "Aide",
"DE.Views.Settings.textHiddenTableBorders": "Bordures du tableau cachées",
"DE.Views.Settings.textInch": "Pouce",
"DE.Views.Settings.textLandscape": "Paysage",
"DE.Views.Settings.textLeft": "A gauche",
"DE.Views.Settings.textLoading": "Chargement en cours...",
"DE.Views.Settings.textMargins": "Marges",
"DE.Views.Settings.textNoCharacters": "Caractères non imprimables",
"DE.Views.Settings.textOrientation": "Orientation",
"DE.Views.Settings.textPages": "Pages",
"DE.Views.Settings.textParagraphs": "Paragraphes",
"DE.Views.Settings.textPoint": "Point",
"DE.Views.Settings.textPortrait": "Portrait",
"DE.Views.Settings.textPoweredBy": "Propulsé par ",
"DE.Views.Settings.textPrint": "Imprimer",
@ -412,6 +504,7 @@
"DE.Views.Settings.textSymbols": "Symboles",
"DE.Views.Settings.textTel": "Tél.",
"DE.Views.Settings.textTop": "En haut",
"DE.Views.Settings.textUnitOfMeasurement": "Unité de mesure",
"DE.Views.Settings.textVersion": "Version",
"DE.Views.Settings.textWords": "Mots",
"DE.Views.Settings.unknownText": "Inconnu",

View file

@ -54,7 +54,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.",
"DE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\"-t a dokumentumok listájához.",
"DE.Controllers.Main.criticalErrorTitle": "Hiba",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Dokumentum Szerkesztő",
"DE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.",
"DE.Controllers.Main.downloadMergeText": "Letöltés...",
"DE.Controllers.Main.downloadMergeTitle": "Letöltés",

View file

@ -9,26 +9,92 @@
"DE.Controllers.AddContainer.textTable": "Tabella",
"DE.Controllers.AddImage.textEmptyImgUrl": "Specifica URL immagine.",
"DE.Controllers.AddImage.txtNotUrl": "Questo campo dovrebbe contenere un URL nel formato 'http://www.example.com'",
"DE.Controllers.AddOther.textBelowText": "Sotto al testo",
"DE.Controllers.AddOther.textBottomOfPage": "Fondo pagina",
"DE.Controllers.AddOther.txtNotUrl": "Questo campo dovrebbe contenere un URL nel formato 'http://www.example.com'",
"DE.Controllers.AddTable.textCancel": "Annulla",
"DE.Controllers.AddTable.textColumns": "Colonne",
"DE.Controllers.AddTable.textRows": "Righe",
"DE.Controllers.AddTable.textTableSize": "Dimensioni tabella",
"Common.Controllers.Collaboration.textAtLeast": "Minima",
"Common.Controllers.Collaboration.textAuto": "auto",
"Common.Controllers.Collaboration.textBaseline": "Linea guida",
"Common.Controllers.Collaboration.textBold": "Grassetto",
"Common.Controllers.Collaboration.textBreakBefore": "Anteponi interruzione",
"Common.Controllers.Collaboration.textCaps": "Tutto maiuscolo",
"Common.Controllers.Collaboration.textCenter": "Allinea al centro",
"Common.Controllers.Collaboration.textChart": "Grafico",
"Common.Controllers.Collaboration.textColor": "Colore del carattere",
"Common.Controllers.Collaboration.textContextual": "Non aggiungere intervallo tra paragrafi dello stesso stile",
"Common.Controllers.Collaboration.textDeleted": "<b>Eliminato:</b>",
"Common.Controllers.Collaboration.textDStrikeout": "Doppio barrato",
"Common.Controllers.Collaboration.textEditUser": "È in corso la modifica del documento da parte di più utenti.",
"Common.Controllers.Collaboration.textEquation": "Equazione",
"Common.Controllers.Collaboration.textExact": "Esatto",
"Common.Controllers.Collaboration.textFirstLine": "Prima riga",
"Common.Controllers.Collaboration.textFormatted": "Formattato",
"Common.Controllers.Collaboration.textHighlight": "Colore evidenziatore",
"Common.Controllers.Collaboration.textImage": "Immagine",
"Common.Controllers.Collaboration.textIndentLeft": "Rientro a sinistra",
"Common.Controllers.Collaboration.textIndentRight": "Rientro a destra",
"Common.Controllers.Collaboration.textInserted": "<b>Inserito:</b>",
"Common.Controllers.Collaboration.textItalic": "Corsivo",
"Common.Controllers.Collaboration.textJustify": "Giustificato",
"Common.Controllers.Collaboration.textKeepLines": "Mantieni assieme le righe",
"Common.Controllers.Collaboration.textKeepNext": "Mantieni con il successivo",
"Common.Controllers.Collaboration.textLeft": "Allinea a sinistra",
"Common.Controllers.Collaboration.textLineSpacing": "Interlinea:",
"Common.Controllers.Collaboration.textMultiple": "multiplo",
"Common.Controllers.Collaboration.textNoBreakBefore": "Nessuna interruzione di pagina prima",
"Common.Controllers.Collaboration.textNoContextual": "Aggiungi intervallo tra paragrafi dello stesso stile",
"Common.Controllers.Collaboration.textNoKeepLines": "Non tenere insieme le linee",
"Common.Controllers.Collaboration.textNoKeepNext": "Non tenere dal prossimo",
"Common.Controllers.Collaboration.textNot": "Not ",
"Common.Controllers.Collaboration.textNum": "Modifica numerazione",
"Common.Controllers.Collaboration.textParaDeleted": "<b>Paragrafo eliminato</b> ",
"Common.Controllers.Collaboration.textParaFormatted": "<b>Paragrafo formattato</b> ",
"Common.Controllers.Collaboration.textParaInserted": "<b>Paragrafo inserito</b> ",
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Spostato in basso:</b>",
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Spostato in alto:</b>",
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Spostato:</b>",
"Common.Controllers.Collaboration.textPosition": "Posizione",
"Common.Controllers.Collaboration.textRight": "Allinea a destra",
"Common.Controllers.Collaboration.textShape": "Forma",
"Common.Controllers.Collaboration.textShd": "Colore sfondo",
"Common.Controllers.Collaboration.textSmallCaps": "Maiuscoletto",
"Common.Controllers.Collaboration.textSpacing": "Spaziatura",
"Common.Controllers.Collaboration.textSpacingAfter": "Spaziatura dopo",
"Common.Controllers.Collaboration.textSpacingBefore": "Spaziatura prima",
"Common.Controllers.Collaboration.textStrikeout": "Barrato",
"Common.Controllers.Collaboration.textSubScript": "Pedice",
"Common.Controllers.Collaboration.textSuperScript": "Apice",
"Common.Controllers.Collaboration.textTableChanged": "<b>Impostazioni tabella modificate</b>",
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Righe tabella aggiunte</b>",
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Righe tabella eliminate</b>",
"Common.Controllers.Collaboration.textTabs": "Modifica Schede",
"Common.Controllers.Collaboration.textUnderline": "Sottolineato",
"DE.Controllers.DocumentHolder.menuAccept": "Accetta",
"DE.Controllers.DocumentHolder.menuAcceptAll": "Accetta tutto",
"DE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento",
"DE.Controllers.DocumentHolder.menuCopy": "Copia",
"DE.Controllers.DocumentHolder.menuCut": "Taglia",
"DE.Controllers.DocumentHolder.menuDelete": "Elimina",
"DE.Controllers.DocumentHolder.menuDeleteTable": "Elimina tabella",
"DE.Controllers.DocumentHolder.menuEdit": "Modifica",
"DE.Controllers.DocumentHolder.menuMerge": "Unisci celle",
"DE.Controllers.DocumentHolder.menuMore": "Altro",
"DE.Controllers.DocumentHolder.menuOpenLink": "Apri collegamento",
"DE.Controllers.DocumentHolder.menuPaste": "Incolla",
"DE.Controllers.DocumentHolder.menuReject": "Respingi",
"DE.Controllers.DocumentHolder.menuRejectAll": "Respingi tutti",
"DE.Controllers.DocumentHolder.menuReview": "Revisione",
"DE.Controllers.DocumentHolder.menuReviewChange": "Modifica revisione",
"DE.Controllers.DocumentHolder.menuSplit": "Dividi cella",
"DE.Controllers.DocumentHolder.sheetCancel": "Annulla",
"DE.Controllers.DocumentHolder.textCancel": "Annulla",
"DE.Controllers.DocumentHolder.textColumns": "Colonne",
"DE.Controllers.DocumentHolder.textGuest": "Ospite",
"DE.Controllers.DocumentHolder.textRows": "Righe",
"DE.Controllers.EditContainer.textChart": "Grafico",
"DE.Controllers.EditContainer.textFooter": "Piè di pagina",
"DE.Controllers.EditContainer.textHeader": "Intestazione",
@ -54,7 +120,6 @@
"DE.Controllers.Main.convertationTimeoutText": "È stato superato il tempo limite della conversione.",
"DE.Controllers.Main.criticalErrorExtText": "Clicca 'OK' per tornare alla lista documento",
"DE.Controllers.Main.criticalErrorTitle": "Errore",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Scaricamento fallito",
"DE.Controllers.Main.downloadMergeText": "Scaricamento in corso...",
"DE.Controllers.Main.downloadMergeTitle": "Scaricamento",
@ -120,7 +185,7 @@
"DE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
"DE.Controllers.Main.textDone": "Fatto",
"DE.Controllers.Main.textLoadingDocument": "Caricamento del documento",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE® limite connessione",
"DE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
"DE.Controllers.Main.textOK": "OK",
"DE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
"DE.Controllers.Main.textPassword": "Password",
@ -168,7 +233,7 @@
"DE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.<br>Si prega di aggiornare la licenza e ricaricare la pagina.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Per ulteriori informazioni, contattare l'amministratore.",
"DE.Controllers.Main.warnNoLicense": "Questa versione di ONLYOFFICE® Editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
"DE.Controllers.Main.warnNoLicenseUsers": "Questa versione di ONLYOFFICE Editors presenta alcune limitazioni per gli utenti simultanei. <br> Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
"DE.Controllers.Main.warnNoLicenseUsers": "Questa versione di ONLYOFFICE® Editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
"DE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.",
"DE.Controllers.Search.textNoTextFound": "Testo non trovato",
"DE.Controllers.Search.textReplaceAll": "Sostituisci tutto",
@ -196,10 +261,14 @@
"DE.Views.AddOther.textCurrentPos": "Posizione attuale",
"DE.Views.AddOther.textDisplay": "Visualizza",
"DE.Views.AddOther.textEvenPage": "Pagina pari",
"DE.Views.AddOther.textFootnote": "Note a piè di pagina",
"DE.Views.AddOther.textFormat": "Formato",
"DE.Views.AddOther.textInsert": "Inserisci",
"DE.Views.AddOther.textInsertFootnote": "Inserisci nota a piè di pagina",
"DE.Views.AddOther.textLeftBottom": "In basso a sinistra",
"DE.Views.AddOther.textLeftTop": "In alto a sinistra",
"DE.Views.AddOther.textLink": "Collegamento",
"DE.Views.AddOther.textLocation": "Posizione",
"DE.Views.AddOther.textNextPage": "Pagina successiva",
"DE.Views.AddOther.textOddPage": "Pagina dispari",
"DE.Views.AddOther.textPageBreak": "Dividi pagina",
@ -208,7 +277,21 @@
"DE.Views.AddOther.textRightBottom": "In basso a destra",
"DE.Views.AddOther.textRightTop": "In alto a destra",
"DE.Views.AddOther.textSectionBreak": "Interrompi sezione",
"DE.Views.AddOther.textStartFrom": "Inizia da",
"DE.Views.AddOther.textTip": "Suggerimento ",
"Common.Views.Collaboration.textAcceptAllChanges": "Accetta tutte le modifiche",
"Common.Views.Collaboration.textBack": "Indietro",
"Common.Views.Collaboration.textChange": "Modifica revisione",
"Common.Views.Collaboration.textCollaboration": "Collaborazione",
"Common.Views.Collaboration.textDisplayMode": "Modalità Visualizzazione",
"Common.Views.Collaboration.textEditUsers": "Utenti",
"Common.Views.Collaboration.textFinal": "Finale",
"Common.Views.Collaboration.textMarkup": "Marcatura",
"Common.Views.Collaboration.textOriginal": "Originale",
"Common.Views.Collaboration.textRejectAllChanges": "Annulla tutte le modifiche",
"Common.Views.Collaboration.textReview": "Traccia cambiamenti",
"Common.Views.Collaboration.textReviewing": "Revisione",
"Common.Views.Collaboration.textСomments": "Сommenti",
"DE.Views.EditChart.textAlign": "Allinea",
"DE.Views.EditChart.textBack": "Indietro",
"DE.Views.EditChart.textBackward": "Sposta indietro",
@ -373,9 +456,12 @@
"DE.Views.Search.textSearch": "Cerca",
"DE.Views.Settings.textAbout": "Informazioni su",
"DE.Views.Settings.textAddress": "indirizzo",
"DE.Views.Settings.textAdvancedSettings": "Impostazioni Applicazione",
"DE.Views.Settings.textAuthor": "Autore",
"DE.Views.Settings.textBack": "Indietro",
"DE.Views.Settings.textBottom": "In basso",
"DE.Views.Settings.textCentimeter": "Centimetro",
"DE.Views.Settings.textColorSchemes": "Schemi di colore",
"DE.Views.Settings.textCreateDate": "Data di creazione",
"DE.Views.Settings.textCustom": "Personalizzato",
"DE.Views.Settings.textCustomSize": "Dimensione personalizzata",
@ -392,13 +478,17 @@
"DE.Views.Settings.textFindAndReplace": "Trova e sostituisci",
"DE.Views.Settings.textFormat": "Formato",
"DE.Views.Settings.textHelp": "Guida",
"DE.Views.Settings.textHiddenTableBorders": "Bordi tabella nascosti",
"DE.Views.Settings.textInch": "Pollice",
"DE.Views.Settings.textLandscape": "Orizzontale",
"DE.Views.Settings.textLeft": "A sinistra",
"DE.Views.Settings.textLoading": "Caricamento in corso...",
"DE.Views.Settings.textMargins": "Margini",
"DE.Views.Settings.textNoCharacters": "Caratteri non stampabili",
"DE.Views.Settings.textOrientation": "Orientamento",
"DE.Views.Settings.textPages": "Pagine",
"DE.Views.Settings.textParagraphs": "Paragrafi",
"DE.Views.Settings.textPoint": "Punto",
"DE.Views.Settings.textPortrait": "Verticale",
"DE.Views.Settings.textPoweredBy": "Con tecnologia",
"DE.Views.Settings.textPrint": "Stampa",
@ -412,6 +502,7 @@
"DE.Views.Settings.textSymbols": "Simboli",
"DE.Views.Settings.textTel": "Tel.",
"DE.Views.Settings.textTop": "In alto",
"DE.Views.Settings.textUnitOfMeasurement": "Unità di misura",
"DE.Views.Settings.textVersion": "Versione",
"DE.Views.Settings.textWords": "Parole",
"DE.Views.Settings.unknownText": "Sconosciuto",

View file

@ -54,7 +54,6 @@
"DE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.",
"DE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 '확인'을 누르십시오.",
"DE.Controllers.Main.criticalErrorTitle": "오류",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE 문서 편집기",
"DE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.",
"DE.Controllers.Main.downloadMergeText": "다운로드 중 ...",
"DE.Controllers.Main.downloadMergeTitle": "다운로드 중",

View file

@ -46,7 +46,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.",
"DE.Controllers.Main.criticalErrorExtText": "Nospiediet \"OK\", lai atgrieztos dokumentu sarakstā.",
"DE.Controllers.Main.criticalErrorTitle": "Kļūda",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Dokumentu Redaktors",
"DE.Controllers.Main.downloadErrorText": "Lejuplāde neizdevās.",
"DE.Controllers.Main.downloadMergeText": "Lejupielādē...",
"DE.Controllers.Main.downloadMergeTitle": "Lejupielāde",

View file

@ -54,7 +54,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.",
"DE.Controllers.Main.criticalErrorExtText": "Druk op \"OK\" om terug te gaan naar de lijst met documenten.",
"DE.Controllers.Main.criticalErrorTitle": "Fout",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE-documenteditor",
"DE.Controllers.Main.downloadErrorText": "Download mislukt.",
"DE.Controllers.Main.downloadMergeText": "Downloaden...",
"DE.Controllers.Main.downloadMergeTitle": "Downloaden",

View file

@ -49,7 +49,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.",
"DE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\" aby powrócić do listy dokumentów.",
"DE.Controllers.Main.criticalErrorTitle": "Błąd",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor dokumentów",
"DE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.",
"DE.Controllers.Main.downloadMergeText": "Pobieranie...",
"DE.Controllers.Main.downloadMergeTitle": "Pobieranie",

View file

@ -46,7 +46,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
"DE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documento.",
"DE.Controllers.Main.criticalErrorTitle": "Erro",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Falha ao Baixar",
"DE.Controllers.Main.downloadMergeText": "Baixando...",
"DE.Controllers.Main.downloadMergeTitle": "Baixando",

View file

@ -9,26 +9,94 @@
"DE.Controllers.AddContainer.textTable": "Таблица",
"DE.Controllers.AddImage.textEmptyImgUrl": "Необходимо указать URL изображения.",
"DE.Controllers.AddImage.txtNotUrl": "Это поле должно быть URL-адресом в формате 'http://www.example.com'",
"DE.Controllers.AddOther.textBelowText": "Под текстом",
"DE.Controllers.AddOther.textBottomOfPage": "Внизу страницы",
"DE.Controllers.AddOther.txtNotUrl": "Это поле должно быть URL-адресом в формате 'http://www.example.com'",
"DE.Controllers.AddTable.textCancel": "Отмена",
"DE.Controllers.AddTable.textColumns": "Столбцы",
"DE.Controllers.AddTable.textRows": "Строки",
"DE.Controllers.AddTable.textTableSize": "Размер таблицы",
"Common.Controllers.Collaboration.textAtLeast": "минимум",
"Common.Controllers.Collaboration.textAuto": "авто",
"Common.Controllers.Collaboration.textBaseline": "Базовая линия",
"Common.Controllers.Collaboration.textBold": "Жирный",
"Common.Controllers.Collaboration.textBreakBefore": "С новой страницы",
"Common.Controllers.Collaboration.textCaps": "Все прописные",
"Common.Controllers.Collaboration.textCenter": "Выравнивание по центру",
"Common.Controllers.Collaboration.textChart": "Диаграмма",
"Common.Controllers.Collaboration.textColor": "Цвет шрифта",
"Common.Controllers.Collaboration.textContextual": "Не добавлять интервал между абзацами одного стиля",
"Common.Controllers.Collaboration.textDeleted": "<b>Удалено:</b>",
"Common.Controllers.Collaboration.textDStrikeout": "Двойное зачеркивание",
"Common.Controllers.Collaboration.textEditUser": "Документ редактируется несколькими пользователями.",
"Common.Controllers.Collaboration.textEquation": "Уравнение",
"Common.Controllers.Collaboration.textExact": "точно",
"Common.Controllers.Collaboration.textFirstLine": "Первая строка",
"Common.Controllers.Collaboration.textFormatted": "Отформатировано",
"Common.Controllers.Collaboration.textHighlight": "Цвет выделения",
"Common.Controllers.Collaboration.textImage": "Изображение",
"Common.Controllers.Collaboration.textIndentLeft": "Отступ слева",
"Common.Controllers.Collaboration.textIndentRight": "Отступ справа",
"Common.Controllers.Collaboration.textInserted": "<b>Добавлено:</b>",
"Common.Controllers.Collaboration.textItalic": "Курсив",
"Common.Controllers.Collaboration.textJustify": "Выравнивание по ширине",
"Common.Controllers.Collaboration.textKeepLines": "Не разрывать абзац",
"Common.Controllers.Collaboration.textKeepNext": "Не отрывать от следующего",
"Common.Controllers.Collaboration.textLeft": "Выравнивание по левому краю",
"Common.Controllers.Collaboration.textLineSpacing": "Междустрочный интервал: ",
"Common.Controllers.Collaboration.textMultiple": "множитель",
"Common.Controllers.Collaboration.textNoBreakBefore": "Не с новой страницы",
"Common.Controllers.Collaboration.textNoContextual": "Добавлять интервал между абзацами одного стиля",
"Common.Controllers.Collaboration.textNoKeepLines": "Разрешить разрывать абзац",
"Common.Controllers.Collaboration.textNoKeepNext": "Разрешить отрывать от следующего",
"Common.Controllers.Collaboration.textNot": "Не",
"Common.Controllers.Collaboration.textNoWidow": "Без запрета висячих строк",
"Common.Controllers.Collaboration.textNum": "Изменение нумерации",
"Common.Controllers.Collaboration.textParaDeleted": "<b>Абзац удален</b> ",
"Common.Controllers.Collaboration.textParaFormatted": "<b>Абзац отформатирован</b>",
"Common.Controllers.Collaboration.textParaInserted": "<b>Абзац добавлен</b> ",
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Перемещено вниз:</b>",
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Перемещено вверх:</b>",
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Перемещено:</b>",
"Common.Controllers.Collaboration.textPosition": "Положение",
"Common.Controllers.Collaboration.textRight": "Выравнивание по правому краю",
"Common.Controllers.Collaboration.textShape": "Фигура",
"Common.Controllers.Collaboration.textShd": "Цвет фона",
"Common.Controllers.Collaboration.textSmallCaps": "Малые прописные",
"Common.Controllers.Collaboration.textSpacing": "Интервал",
"Common.Controllers.Collaboration.textSpacingAfter": "Интервал после абзаца",
"Common.Controllers.Collaboration.textSpacingBefore": "Интервал перед абзацем",
"Common.Controllers.Collaboration.textStrikeout": "Зачеркнутый",
"Common.Controllers.Collaboration.textSubScript": "Подстрочный",
"Common.Controllers.Collaboration.textSuperScript": "Надстрочный",
"Common.Controllers.Collaboration.textTableChanged": "<b>Изменены настройки таблицы</b>",
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Добавлены строки таблицы</b>",
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Удалены строки таблицы</b>",
"Common.Controllers.Collaboration.textTabs": "Изменение табуляции",
"Common.Controllers.Collaboration.textUnderline": "Подчёркнутый",
"Common.Controllers.Collaboration.textWidow": "Запрет висячих строк",
"DE.Controllers.DocumentHolder.menuAccept": "Принять",
"DE.Controllers.DocumentHolder.menuAcceptAll": "Принять все",
"DE.Controllers.DocumentHolder.menuAddLink": "Добавить ссылку",
"DE.Controllers.DocumentHolder.menuCopy": "Копировать",
"DE.Controllers.DocumentHolder.menuCut": "Вырезать",
"DE.Controllers.DocumentHolder.menuDelete": "Удалить",
"DE.Controllers.DocumentHolder.menuDeleteTable": "Удалить таблицу",
"DE.Controllers.DocumentHolder.menuEdit": "Редактировать",
"DE.Controllers.DocumentHolder.menuMerge": "Объединить ячейки",
"DE.Controllers.DocumentHolder.menuMore": "Ещё",
"DE.Controllers.DocumentHolder.menuOpenLink": "Перейти",
"DE.Controllers.DocumentHolder.menuPaste": "Вставить",
"DE.Controllers.DocumentHolder.menuReject": "Отклонить",
"DE.Controllers.DocumentHolder.menuRejectAll": "Отклонить все",
"DE.Controllers.DocumentHolder.menuReview": "Рецензирование",
"DE.Controllers.DocumentHolder.menuReviewChange": "Просмотр изменений",
"DE.Controllers.DocumentHolder.menuSplit": "Разделить ячейку",
"DE.Controllers.DocumentHolder.sheetCancel": "Отмена",
"DE.Controllers.DocumentHolder.textCancel": "Отмена",
"DE.Controllers.DocumentHolder.textColumns": "Колонки",
"DE.Controllers.DocumentHolder.textGuest": "Гость",
"DE.Controllers.DocumentHolder.textRows": "Строки",
"DE.Controllers.EditContainer.textChart": "Диаграмма",
"DE.Controllers.EditContainer.textFooter": "Колонтитул",
"DE.Controllers.EditContainer.textHeader": "Колонтитул",
@ -54,7 +122,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
"DE.Controllers.Main.criticalErrorExtText": "Нажмите 'OK' для возврата к списку документов.",
"DE.Controllers.Main.criticalErrorTitle": "Ошибка",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Загрузка не удалась.",
"DE.Controllers.Main.downloadMergeText": "Загрузка...",
"DE.Controllers.Main.downloadMergeTitle": "Загрузка",
@ -63,7 +130,7 @@
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Подключение к серверу прервано. Редактирование недоступно.",
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.<br><br>Дополнительную информацию о подключении Сервера документов можно найти <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">здесь</a>",
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.<br><br>Дополнительную информацию о подключении Сервера документов можно найти <a href=\"%1\" target=\"_blank\">здесь</a>",
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Пожалуйста, обратитесь в службу технической поддержки.",
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
@ -120,7 +187,7 @@
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"DE.Controllers.Main.textDone": "Готово",
"DE.Controllers.Main.textLoadingDocument": "Загрузка документа",
"DE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений ONLYOFFICE",
"DE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
"DE.Controllers.Main.textOK": "OK",
"DE.Controllers.Main.textPaidFeature": "Платная функция",
"DE.Controllers.Main.textPassword": "Пароль",
@ -168,7 +235,7 @@
"DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"DE.Controllers.Search.textNoTextFound": "Текст не найден",
"DE.Controllers.Search.textReplaceAll": "Заменить все",
@ -196,10 +263,14 @@
"DE.Views.AddOther.textCurrentPos": "Текущая позиция",
"DE.Views.AddOther.textDisplay": "Отобразить",
"DE.Views.AddOther.textEvenPage": "С четной страницы",
"DE.Views.AddOther.textFootnote": "Сноска",
"DE.Views.AddOther.textFormat": "Формат",
"DE.Views.AddOther.textInsert": "Вставить",
"DE.Views.AddOther.textInsertFootnote": "Вставить сноску",
"DE.Views.AddOther.textLeftBottom": "Слева снизу",
"DE.Views.AddOther.textLeftTop": "Слева сверху",
"DE.Views.AddOther.textLink": "Ссылка",
"DE.Views.AddOther.textLocation": "Положение",
"DE.Views.AddOther.textNextPage": "Со следующей страницы",
"DE.Views.AddOther.textOddPage": "С нечетной страницы",
"DE.Views.AddOther.textPageBreak": "Разрыв страницы",
@ -208,7 +279,21 @@
"DE.Views.AddOther.textRightBottom": "Снизу справа",
"DE.Views.AddOther.textRightTop": "Справа сверху",
"DE.Views.AddOther.textSectionBreak": "Разрыв раздела",
"DE.Views.AddOther.textStartFrom": "Начать с",
"DE.Views.AddOther.textTip": "Подсказка",
"Common.Views.Collaboration.textAcceptAllChanges": "Принять все изменения",
"Common.Views.Collaboration.textBack": "Назад",
"Common.Views.Collaboration.textChange": "Просмотр изменений",
"Common.Views.Collaboration.textCollaboration": "Совместная работа",
"Common.Views.Collaboration.textDisplayMode": "Отображение",
"Common.Views.Collaboration.textEditUsers": "Пользователи",
"Common.Views.Collaboration.textFinal": "Измененный документ",
"Common.Views.Collaboration.textMarkup": "Изменения",
"Common.Views.Collaboration.textOriginal": "Исходный документ",
"Common.Views.Collaboration.textRejectAllChanges": "Отклонить все изменения",
"Common.Views.Collaboration.textReview": "Отслеживание изменений",
"Common.Views.Collaboration.textReviewing": "Рецензирование",
"Common.Views.Collaboration.textСomments": "Комментарии",
"DE.Views.EditChart.textAlign": "Выравнивание",
"DE.Views.EditChart.textBack": "Назад",
"DE.Views.EditChart.textBackward": "Перенести назад",
@ -373,9 +458,12 @@
"DE.Views.Search.textSearch": "Найти",
"DE.Views.Settings.textAbout": "О программе",
"DE.Views.Settings.textAddress": "адрес",
"DE.Views.Settings.textAdvancedSettings": "Настройки приложения",
"DE.Views.Settings.textAuthor": "Автор",
"DE.Views.Settings.textBack": "Назад",
"DE.Views.Settings.textBottom": "Нижнее",
"DE.Views.Settings.textCentimeter": "Сантиметр",
"DE.Views.Settings.textColorSchemes": "Цветовые схемы",
"DE.Views.Settings.textCreateDate": "Дата создания",
"DE.Views.Settings.textCustom": "Особый",
"DE.Views.Settings.textCustomSize": "Особый размер",
@ -392,13 +480,17 @@
"DE.Views.Settings.textFindAndReplace": "Поиск и замена",
"DE.Views.Settings.textFormat": "Формат",
"DE.Views.Settings.textHelp": "Справка",
"DE.Views.Settings.textHiddenTableBorders": "Скрытые границы таблиц",
"DE.Views.Settings.textInch": "Дюйм",
"DE.Views.Settings.textLandscape": "Альбомная",
"DE.Views.Settings.textLeft": "Левое",
"DE.Views.Settings.textLoading": "Загрузка...",
"DE.Views.Settings.textMargins": "Поля",
"DE.Views.Settings.textNoCharacters": "Непечатаемые символы",
"DE.Views.Settings.textOrientation": "Ориентация страницы",
"DE.Views.Settings.textPages": "Страницы",
"DE.Views.Settings.textParagraphs": "Абзацы",
"DE.Views.Settings.textPoint": "Пункт",
"DE.Views.Settings.textPortrait": "Книжная",
"DE.Views.Settings.textPoweredBy": "Разработано",
"DE.Views.Settings.textPrint": "Печать",
@ -412,6 +504,7 @@
"DE.Views.Settings.textSymbols": "Символы",
"DE.Views.Settings.textTel": "Телефон",
"DE.Views.Settings.textTop": "Верхнее",
"DE.Views.Settings.textUnitOfMeasurement": "Единица измерения",
"DE.Views.Settings.textVersion": "Версия",
"DE.Views.Settings.textWords": "Слова",
"DE.Views.Settings.unknownText": "Неизвестно",

View file

@ -47,7 +47,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.",
"DE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.",
"DE.Controllers.Main.criticalErrorTitle": "Chyba",
"DE.Controllers.Main.defaultTitleText": "Dokumentový editor ONLYOFFICE ",
"DE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.",
"DE.Controllers.Main.downloadMergeText": "Sťahovanie...",
"DE.Controllers.Main.downloadMergeTitle": "Sťahovanie",

View file

@ -46,7 +46,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.",
"DE.Controllers.Main.criticalErrorExtText": "Belge listesine dönmek için 'TAMAM' tuşuna tıklayın.",
"DE.Controllers.Main.criticalErrorTitle": "Hata",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Belge Editörü",
"DE.Controllers.Main.downloadErrorText": "İndirme başarısız oldu.",
"DE.Controllers.Main.downloadMergeText": "İndiriliyor...",
"DE.Controllers.Main.downloadMergeTitle": "İndiriliyor",

View file

@ -46,7 +46,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.",
"DE.Controllers.Main.criticalErrorExtText": "Натисніть \"ОК\", щоб повернутися до списку документів.",
"DE.Controllers.Main.criticalErrorTitle": "Помилка",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Завантаження не вдалося",
"DE.Controllers.Main.downloadMergeText": "Завантаження...",
"DE.Controllers.Main.downloadMergeTitle": "Завантаження",

View file

@ -46,7 +46,6 @@
"DE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.",
"DE.Controllers.Main.criticalErrorExtText": "Ấn 'OK' để trở lại danh sách tài liệu.",
"DE.Controllers.Main.criticalErrorTitle": "Lỗi",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
"DE.Controllers.Main.downloadErrorText": "Tải về không thành công.",
"DE.Controllers.Main.downloadMergeText": "Đang tải...",
"DE.Controllers.Main.downloadMergeTitle": "Đang tải về",

View file

@ -54,7 +54,6 @@
"DE.Controllers.Main.convertationTimeoutText": "转换超时",
"DE.Controllers.Main.criticalErrorExtText": "按“确定”返回文件列表",
"DE.Controllers.Main.criticalErrorTitle": "错误:",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE文档编辑器",
"DE.Controllers.Main.downloadErrorText": "下载失败",
"DE.Controllers.Main.downloadMergeText": "下载中…",
"DE.Controllers.Main.downloadMergeTitle": "下载中",

View file

@ -6872,9 +6872,9 @@ i.icon.icon-format-dotx {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D.cls-2%7Bfill%3A%23fff%3B%7D.cls-3%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_38%22%20data-name%3D%22Path%2038%22%20d%3D%22M12.223%2C119.714c1.251-.066%2C2.5-.115%2C3.752-.177.875%2C4.123%2C1.771%2C8.239%2C2.718%2C12.343.744-4.239%2C1.567-8.464%2C2.363-12.7%2C1.317-.042%2C2.633-.109%2C3.944-.183-1.488%2C5.917-2.792%2C11.886-4.417%2C17.767-1.1.531-2.745-.026-4.049.06-.876-4.042-1.9-8.061-2.679-12.123-.77%2C3.945-1.771%2C7.854-2.653%2C11.775-1.264-.06-2.535-.134-3.805-.213C6.3%2C130.892%2C5.02%2C125.553%2C4%2C120.167c1.125-.049%2C2.258-.093%2C3.384-.129.678%2C3.889%2C1.448%2C7.762%2C2.041%2C11.659C10.353%2C127.7%2C11.3%2C123.708%2C12.223%2C119.714Z%22%20transform%3D%22translate(-2%20-117)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20class%3D%22cls-2%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
i.icon.icon-format-txt {
width: 30px;
height: 30px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-14.47%20-14.5%2058%2058%22%20height%3D%2258px%22%20width%3D%2258px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2228%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2224%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2220%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2216%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2212%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%228%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%224%22%20%2F%3E%3Crect%20class%3D%22cls-1%22%20height%3D%221%22%20width%3D%2229.063%22%20%2F%3E%3C%2Fsvg%3E");
width: 24px;
height: 24px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M22%2017H2V18H22V17Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2020H2V21H22V20Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2014H2V15H22V14Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2011H2V12H22V11Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%208H2V9H22V8Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%205H2V6H22V5Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%202H2V3H22V2Z%22%20fill%3D%22%23446995%22%2F%3E%3C%2Fsvg%3E");
}
i.icon.icon-format-pdf {
width: 30px;
@ -6901,6 +6901,11 @@ i.icon.icon-format-html {
height: 30px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2262px%22%20height%3D%2262px%22%20viewBox%3D%220%200%2062%2062%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M24.993%2C38.689L11.34%2C32.753v-3.288l13.653-5.91v3.872l-9.523%2C3.641l9.523%2C3.777V38.689z%22%20%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M27.09%2C41.298l4.931-20.596h2.867l-4.986%2C20.596H27.09z%22%20%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M36.986%2C38.703v-3.845l9.536-3.75L36.986%2C27.4v-3.817l13.666%2C5.91v3.261L36.986%2C38.703z%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
i.icon.icon-format-rtf {
width: 24px;
height: 24px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%227%22%20height%3D%227%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2011H2V12H22V11Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2014H2V15H22V14Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2017H2V18H22V17Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2020H2V21H22V20Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%202H11V3H22V2Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%205H11V6H22V5Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%208H11V9H22V8Z%22%20fill%3D%22%23446995%22%2F%3E%3C%2Fsvg%3E");
}
i.icon.icon-collaboration {
width: 24px;
height: 24px;

View file

@ -6352,9 +6352,9 @@ i.icon.icon-format-dotx {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D.cls-2%7Bfill%3A%23fff%3B%7D.cls-3%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3CclipPath%20id%3D%22clip-dotx%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20id%3D%22dotx%22%20clip-path%3D%22url(%23clip-dotx)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_38%22%20data-name%3D%22Path%2038%22%20d%3D%22M12.223%2C119.714c1.251-.066%2C2.5-.115%2C3.752-.177.875%2C4.123%2C1.771%2C8.239%2C2.718%2C12.343.744-4.239%2C1.567-8.464%2C2.363-12.7%2C1.317-.042%2C2.633-.109%2C3.944-.183-1.488%2C5.917-2.792%2C11.886-4.417%2C17.767-1.1.531-2.745-.026-4.049.06-.876-4.042-1.9-8.061-2.679-12.123-.77%2C3.945-1.771%2C7.854-2.653%2C11.775-1.264-.06-2.535-.134-3.805-.213C6.3%2C130.892%2C5.02%2C125.553%2C4%2C120.167c1.125-.049%2C2.258-.093%2C3.384-.129.678%2C3.889%2C1.448%2C7.762%2C2.041%2C11.659C10.353%2C127.7%2C11.3%2C123.708%2C12.223%2C119.714Z%22%20transform%3D%22translate(-2%20-117)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20class%3D%22cls-2%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
i.icon.icon-format-txt {
width: 30px;
height: 30px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-14.47%20-14.5%2058%2058%22%20height%3D%2258px%22%20width%3D%2258px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2228%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2224%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2220%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2216%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%2212%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%228%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%2229.063%22%20class%3D%22cls-1%22%20y%3D%224%22%20%2F%3E%3Crect%20class%3D%22cls-1%22%20height%3D%221%22%20width%3D%2229.063%22%20%2F%3E%3C%2Fsvg%3E");
width: 24px;
height: 24px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M22%2017H2V18H22V17Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2020H2V21H22V20Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2014H2V15H22V14Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2011H2V12H22V11Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%208H2V9H22V8Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%205H2V6H22V5Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%202H2V3H22V2Z%22%20fill%3D%22%23446995%22%2F%3E%3C%2Fsvg%3E");
}
i.icon.icon-format-pdf {
width: 30px;
@ -6381,6 +6381,11 @@ i.icon.icon-format-html {
height: 30px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2262px%22%20height%3D%2262px%22%20viewBox%3D%220%200%2062%2062%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M24.993%2C38.689L11.34%2C32.753v-3.288l13.653-5.91v3.872l-9.523%2C3.641l9.523%2C3.777V38.689z%22%20%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M27.09%2C41.298l4.931-20.596h2.867l-4.986%2C20.596H27.09z%22%20%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M36.986%2C38.703v-3.845l9.536-3.75L36.986%2C27.4v-3.817l13.666%2C5.91v3.261L36.986%2C38.703z%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
i.icon.icon-format-rtf {
width: 24px;
height: 24px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%227%22%20height%3D%227%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2011H2V12H22V11Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2014H2V15H22V14Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2017H2V18H22V17Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%2020H2V21H22V20Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%202H11V3H22V2Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%205H11V6H22V5Z%22%20fill%3D%22%23446995%22%2F%3E%3Cpath%20d%3D%22M22%208H11V9H22V8Z%22%20fill%3D%22%23446995%22%2F%3E%3C%2Fsvg%3E");
}
i.icon.icon-collaboration {
width: 24px;
height: 24px;

View file

@ -381,9 +381,9 @@ i.icon {
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="33" height="33" viewBox="0 0 33 33"><defs><style>.cls-1{fill:@{themeColor};}.cls-2{fill:#fff;}.cls-3{fill:@{themeColor};}</style></defs><g><rect id="Rectangle_20" data-name="Rectangle 20" width="33" height="33" fill="none"/><path id="Path_38" data-name="Path 38" d="M12.223,119.714c1.251-.066,2.5-.115,3.752-.177.875,4.123,1.771,8.239,2.718,12.343.744-4.239,1.567-8.464,2.363-12.7,1.317-.042,2.633-.109,3.944-.183-1.488,5.917-2.792,11.886-4.417,17.767-1.1.531-2.745-.026-4.049.06-.876-4.042-1.9-8.061-2.679-12.123-.77,3.945-1.771,7.854-2.653,11.775-1.264-.06-2.535-.134-3.805-.213C6.3,130.892,5.02,125.553,4,120.167c1.125-.049,2.258-.093,3.384-.129.678,3.889,1.448,7.762,2.041,11.659C10.353,127.7,11.3,123.708,12.223,119.714Z" transform="translate(-2 -117)" class="cls-1"/><g id="Group_5" data-name="Group 5" transform="translate(16 16)"><path id="Path_44" data-name="Path 44" d="M1.011,0H13.989A1.011,1.011,0,0,1,15,1.011V13.989A1.011,1.011,0,0,1,13.989,15H1.011A1.011,1.011,0,0,1,0,13.989V1.011A1.011,1.011,0,0,1,1.011,0Z" class="cls-1"/><path id="Path_39" data-name="Path 39" d="M5.794,13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z" transform="translate(2.742 -0.25)" class="cls-2"/></g></g></svg>');
}
&.icon-format-txt {
width: 30px;
height: 30px;
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-14.47 -14.5 58 58" height="58px" width="58px" y="0px" x="0px"><defs><style>.cls-1{fill:@{themeColor};}</style></defs><rect height="1" width="29.063" class="cls-1" y="28" /><rect height="1" width="29.063" class="cls-1" y="24" /><rect height="1" width="29.063" class="cls-1" y="20" /><rect height="1" width="29.063" class="cls-1" y="16" /><rect height="1" width="29.063" class="cls-1" y="12" /><rect height="1" width="29.063" class="cls-1" y="8" /><rect height="1" width="29.063" class="cls-1" y="4" /><rect class="cls-1" height="1" width="29.063" /></svg>');
width: 24px;
height: 24px;
.encoded-svg-background('<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22 17H2V18H22V17Z" fill="@{themeColor}"/><path d="M22 20H2V21H22V20Z" fill="@{themeColor}"/><path d="M22 14H2V15H22V14Z" fill="@{themeColor}"/><path d="M22 11H2V12H22V11Z" fill="@{themeColor}"/><path d="M22 8H2V9H22V8Z" fill="@{themeColor}"/><path d="M22 5H2V6H22V5Z" fill="@{themeColor}"/><path d="M22 2H2V3H22V2Z" fill="@{themeColor}"/></svg>');
}
&.icon-format-pdf {
width: 30px;
@ -410,6 +410,11 @@ i.icon {
height: 30px;
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="62px" height="62px" viewBox="0 0 62 62"><defs><style>.cls-1{fill:@{themeColor};}</style></defs><g><path class="cls-1" d="M24.993,38.689L11.34,32.753v-3.288l13.653-5.91v3.872l-9.523,3.641l9.523,3.777V38.689z" /><path class="cls-1" d="M27.09,41.298l4.931-20.596h2.867l-4.986,20.596H27.09z" /><path class="cls-1" d="M36.986,38.703v-3.845l9.536-3.75L36.986,27.4v-3.817l13.666,5.91v3.261L36.986,38.703z" /></g></svg>');
}
&.icon-format-rtf {
width: 24px;
height: 24px;
.encoded-svg-background('<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="7" height="7" fill="@{themeColor}"/><path d="M22 11H2V12H22V11Z" fill="@{themeColor}"/><path d="M22 14H2V15H22V14Z" fill="@{themeColor}"/><path d="M22 17H2V18H22V17Z" fill="@{themeColor}"/><path d="M22 20H2V21H22V20Z" fill="@{themeColor}"/><path d="M22 2H11V3H22V2Z" fill="@{themeColor}"/><path d="M22 5H11V6H22V5Z" fill="@{themeColor}"/><path d="M22 8H11V9H22V8Z" fill="@{themeColor}"/></svg>');
}
// Collaboration
&.icon-collaboration {
width: 24px;

View file

@ -308,9 +308,9 @@ i.icon {
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="33" height="33" viewBox="0 0 33 33"><defs><style>.cls-1{fill:@{themeColor};}.cls-2{fill:#fff;}.cls-3{fill:@{themeColor};}</style><clipPath id="clip-dotx"><rect width="33" height="33"/></clipPath></defs><g id="dotx" clip-path="url(#clip-dotx)"><rect id="Rectangle_20" data-name="Rectangle 20" width="33" height="33" fill="none"/><path id="Path_38" data-name="Path 38" d="M12.223,119.714c1.251-.066,2.5-.115,3.752-.177.875,4.123,1.771,8.239,2.718,12.343.744-4.239,1.567-8.464,2.363-12.7,1.317-.042,2.633-.109,3.944-.183-1.488,5.917-2.792,11.886-4.417,17.767-1.1.531-2.745-.026-4.049.06-.876-4.042-1.9-8.061-2.679-12.123-.77,3.945-1.771,7.854-2.653,11.775-1.264-.06-2.535-.134-3.805-.213C6.3,130.892,5.02,125.553,4,120.167c1.125-.049,2.258-.093,3.384-.129.678,3.889,1.448,7.762,2.041,11.659C10.353,127.7,11.3,123.708,12.223,119.714Z" transform="translate(-2 -117)" class="cls-1"/><g id="Group_5" data-name="Group 5" transform="translate(16 16)"><path id="Path_44" data-name="Path 44" d="M1.011,0H13.989A1.011,1.011,0,0,1,15,1.011V13.989A1.011,1.011,0,0,1,13.989,15H1.011A1.011,1.011,0,0,1,0,13.989V1.011A1.011,1.011,0,0,1,1.011,0Z" class="cls-1"/><path id="Path_39" data-name="Path 39" d="M5.794,13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z" transform="translate(2.742 -0.25)" class="cls-2"/></g></g></svg>');
}
&.icon-format-txt {
width: 30px;
height: 30px;
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-14.47 -14.5 58 58" height="58px" width="58px" y="0px" x="0px"><defs><style>.cls-1{fill:@{themeColor};}</style></defs><rect height="1" width="29.063" class="cls-1" y="28" /><rect height="1" width="29.063" class="cls-1" y="24" /><rect height="1" width="29.063" class="cls-1" y="20" /><rect height="1" width="29.063" class="cls-1" y="16" /><rect height="1" width="29.063" class="cls-1" y="12" /><rect height="1" width="29.063" class="cls-1" y="8" /><rect height="1" width="29.063" class="cls-1" y="4" /><rect class="cls-1" height="1" width="29.063" /></svg>');
width: 24px;
height: 24px;
.encoded-svg-background('<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22 17H2V18H22V17Z" fill="@{themeColor}"/><path d="M22 20H2V21H22V20Z" fill="@{themeColor}"/><path d="M22 14H2V15H22V14Z" fill="@{themeColor}"/><path d="M22 11H2V12H22V11Z" fill="@{themeColor}"/><path d="M22 8H2V9H22V8Z" fill="@{themeColor}"/><path d="M22 5H2V6H22V5Z" fill="@{themeColor}"/><path d="M22 2H2V3H22V2Z" fill="@{themeColor}"/></svg>');
}
&.icon-format-pdf {
width: 30px;
@ -337,6 +337,12 @@ i.icon {
height: 30px;
.encoded-svg-background('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="62px" height="62px" viewBox="0 0 62 62"><defs><style>.cls-1{fill:@{themeColor};}</style></defs><g><path class="cls-1" d="M24.993,38.689L11.34,32.753v-3.288l13.653-5.91v3.872l-9.523,3.641l9.523,3.777V38.689z" /><path class="cls-1" d="M27.09,41.298l4.931-20.596h2.867l-4.986,20.596H27.09z" /><path class="cls-1" d="M36.986,38.703v-3.845l9.536-3.75L36.986,27.4v-3.817l13.666,5.91v3.261L36.986,38.703z" /></g></svg>');
}
&.icon-format-rtf {
width: 24px;
height: 24px;
.encoded-svg-background('<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="7" height="7" fill="@{themeColor}"/><path d="M22 11H2V12H22V11Z" fill="@{themeColor}"/><path d="M22 14H2V15H22V14Z" fill="@{themeColor}"/><path d="M22 17H2V18H22V17Z" fill="@{themeColor}"/><path d="M22 20H2V21H22V20Z" fill="@{themeColor}"/><path d="M22 2H11V3H22V2Z" fill="@{themeColor}"/><path d="M22 5H11V6H22V5Z" fill="@{themeColor}"/><path d="M22 8H11V9H22V8Z" fill="@{themeColor}"/></svg>');
}
// Collaboration
&.icon-collaboration {
width: 24px;

View file

@ -1,6 +1,10 @@
{
"common.view.modals.txtCopy": "Másolás a vágólapra",
"common.view.modals.txtEmbed": "Beágyaz",
"common.view.modals.txtHeight": "Magasság",
"common.view.modals.txtShare": "Hivatkozás megosztása",
"common.view.modals.txtWidth": "Szélesség",
"PE.ApplicationController.convertationErrorText": "Az átalakítás nem sikerült.",
"PE.ApplicationController.convertationTimeoutText": "Időtúllépés az átalakítás során.",
"PE.ApplicationController.criticalErrorTitle": "Hiba",
"PE.ApplicationController.downloadErrorText": "Sikertelen letöltés.",
@ -12,10 +16,13 @@
"PE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés",
"PE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.",
"PE.ApplicationController.textLoadingDocument": "Prezentáció betöltése",
"PE.ApplicationController.textOf": "of",
"PE.ApplicationController.txtClose": "Bezár",
"PE.ApplicationController.unknownErrorText": "Ismeretlen hiba.",
"PE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.",
"PE.ApplicationController.waitText": "Kérjük várjon...",
"PE.ApplicationView.txtDownload": "Letöltés",
"PE.ApplicationView.txtEmbed": "Beágyaz",
"PE.ApplicationView.txtFullScreen": "Teljes képernyő",
"PE.ApplicationView.txtShare": "Megosztás"
}

View file

@ -1,6 +1,8 @@
{
"common.view.modals.txtCopy": "Panoya kopyala",
"common.view.modals.txtEmbed": "Gömülü",
"common.view.modals.txtHeight": "Yükseklik",
"common.view.modals.txtShare": "Bağlantıyı Paylaş",
"common.view.modals.txtWidth": "Genişlik",
"PE.ApplicationController.convertationErrorText": "Değişim başarısız oldu.",
"PE.ApplicationController.convertationTimeoutText": "Değişim süresi aşıldı.",
@ -12,11 +14,15 @@
"PE.ApplicationController.errorFilePassProtect": "Döküman şifre korumalı ve açılamadı",
"PE.ApplicationController.errorUserDrop": "Belgeye şu an erişilemiyor.",
"PE.ApplicationController.notcriticalErrorTitle": "Uyarı",
"PE.ApplicationController.scriptLoadError": "Bağlantı çok yavaş, bileşenlerin bazıları yüklenemedi. Lütfen sayfayı yenileyin.",
"PE.ApplicationController.textLoadingDocument": "Sunum yükleniyor",
"PE.ApplicationController.textOf": "'in",
"PE.ApplicationController.txtClose": "Kapat",
"PE.ApplicationController.unknownErrorText": "Bilinmeyen hata.",
"PE.ApplicationController.unsupportedBrowserErrorText": "Tarayıcınız desteklenmiyor.",
"PE.ApplicationController.waitText": "Lütfen bekleyin...",
"PE.ApplicationView.txtDownload": "İndir",
"PE.ApplicationView.txtEmbed": "Gömülü",
"PE.ApplicationView.txtFullScreen": "Tam Ekran",
"PE.ApplicationView.txtShare": "Paylaş"
}

View file

@ -286,7 +286,7 @@ define([
});
}
me.defaultTitleText = me.defaultTitleText || '{{APP_TITLE_TEXT}}';
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');

View file

@ -159,6 +159,16 @@
<div id="shape-btn-change" style="display: inline-block; float:right;"></div>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<div class="separator horizontal"></div>
</td>
</tr>
<tr>
<td class="padding-small" colspan=2>
<div id="shape-checkbox-shadow"></div>
</td>
</tr>
<tr class="shape-only">
<td class="padding-small">
<div class="separator horizontal"></div>

View file

@ -2181,6 +2181,13 @@ define([
}
});
var menuToDictionaryTable = new Common.UI.MenuItem({
caption : me.toDictionaryText
}).on('click', function(item, e) {
me.api.asc_spellCheckAddToDictionary(me._currentSpellObj);
me.fireEvent('editcomplete', me);
});
var menuIgnoreSpellTableSeparator = new Common.UI.MenuItem({
caption : '--'
});
@ -2199,6 +2206,7 @@ define([
menuIgnoreSpellTableSeparator,
menuIgnoreSpellTable,
menuIgnoreAllSpellTable,
menuToDictionaryTable,
{ caption: '--' },
me.langTableMenu
]
@ -2244,6 +2252,13 @@ define([
me.fireEvent('editcomplete', me);
});
var menuToDictionaryPara = new Common.UI.MenuItem({
caption : me.toDictionaryText
}).on('click', function(item, e) {
me.api.asc_spellCheckAddToDictionary(me._currentSpellObj);
me.fireEvent('editcomplete', me);
});
var menuIgnoreSpellParaSeparator = new Common.UI.MenuItem({
caption : '--'
});
@ -2971,15 +2986,17 @@ define([
menuParaPaste.setDisabled(disabled);
// spellCheck
me.menuSpellPara.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuSpellcheckParaSeparator.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuIgnoreSpellPara.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuIgnoreAllSpellPara.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
me.langParaMenu.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
var spell = (value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
me.menuSpellPara.setVisible(spell);
menuSpellcheckParaSeparator.setVisible(spell);
menuIgnoreSpellPara.setVisible(spell);
menuIgnoreAllSpellPara.setVisible(spell);
menuToDictionaryPara.setVisible(spell && me.mode.isDesktopApp);
me.langParaMenu.setVisible(spell);
me.langParaMenu.setDisabled(disabled);
menuIgnoreSpellParaSeparator.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuIgnoreSpellParaSeparator.setVisible(spell);
if (value.spellProps!==undefined && value.spellProps.value.get_Checked()===false && value.spellProps.value.get_Variants() !== null && value.spellProps.value.get_Variants() !== undefined) {
if (spell && value.spellProps.value.get_Variants() !== null && value.spellProps.value.get_Variants() !== undefined) {
me.addWordVariants(true);
} else {
me.menuSpellPara.setCaption(me.loadSpellText, true);
@ -2994,9 +3011,9 @@ define([
//equation menu
var eqlen = 0;
if (isEquation) {
eqlen = me.addEquationMenu(true, 11);
eqlen = me.addEquationMenu(true, 12);
} else
me.clearEquationMenu(true, 11);
me.clearEquationMenu(true, 12);
menuEquationSeparator.setVisible(isEquation && eqlen>0);
},
items: [
@ -3005,6 +3022,7 @@ define([
menuSpellcheckParaSeparator,
menuIgnoreSpellPara,
menuIgnoreAllSpellPara,
menuToDictionaryPara,
me.langParaMenu,
menuIgnoreSpellParaSeparator,
menuParaCut,
@ -3094,6 +3112,7 @@ define([
menuHyperlinkSeparator.setVisible(menuAddHyperlinkTable.isVisible() || menuHyperlinkTable.isVisible() /** coauthoring begin **/|| menuAddCommentTable.isVisible()/** coauthoring end **/);
me.menuSpellCheckTable.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
menuToDictionaryTable.setVisible(me.mode.isDesktopApp);
menuSpellcheckTableSeparator.setVisible(value.spellProps!==undefined && value.spellProps.value.get_Checked()===false);
me.langTableMenu.setDisabled(disabled);
@ -3557,7 +3576,8 @@ define([
textRotate: 'Rotate',
textCrop: 'Crop',
textCropFill: 'Fill',
textCropFit: 'Fit'
textCropFit: 'Fit',
toDictionaryText: 'Add to Dictionary'
}, PE.Views.DocumentHolder || {}));
});

View file

@ -75,7 +75,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
'<div class="separator horizontal"/>',
'<div class="footer center">',
'<button class="btn normal dlg-btn primary" result="all" style="margin-right: 10px;width: auto; min-width: 86px;">' + me.applyAllText + '</button>',
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;width: auto; min-width: 86px;">' + me.applyText + '</button>',
'<button class="btn normal dlg-btn" result="ok" style="margin-right: 10px;width: auto; min-width: 86px;">' + me.applyText + '</button>',
'<button class="btn normal dlg-btn" result="cancel">' + me.cancelButtonText + '</button>',
'</div>'
].join('')
@ -196,6 +196,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
},
setType: function(type, field, newValue) {
var me = this;
newValue = (newValue=='checked');
if (type == 'date') {
_.each(this.dateControls, function(item) {
@ -208,11 +209,14 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
} else if (type == 'footer') {
this.inputFooter.setDisabled(!newValue);
this.props.put_ShowFooter(newValue);
newValue && setTimeout(function(){
me.inputFooter.cmpEl.find('input').focus();
},50);
}
this.props.updateView();
},
updateFormats: function(lang) {
updateFormats: function(lang, format) {
var props = new AscCommonSlide.CAscDateTime();
props.put_Lang(lang);
var data = props.get_DateTimeExamples(),
@ -226,15 +230,20 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
}
}
this.cmbFormat.setData(arr);
var format = this.defaultFormats[lang];
format = format || this.defaultFormats[lang];
this.cmbFormat.setValue(format ? format : arr[0].value);
},
setDateTimeType: function(type, field, newValue) {
if (newValue) {
var me = this;
this.cmbLang.setDisabled(type == 'fixed');
this.cmbFormat.setDisabled(type == 'fixed');
this.inputFixed.setDisabled(type == 'update');
(type == 'fixed') && setTimeout(function(){
me.inputFixed.cmpEl.find('input').focus();
},50);
}
},
@ -258,7 +267,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
item.setDisabled(!val);
});
var format,
var format, fixed,
datetime = slideprops.get_DateTime(),
item = this.cmbLang.store.findWhere({value: datetime ? (datetime.get_Lang() || this.lang) : this.lang});
this._originalLang = item ? item.get('value') : 0x0409;
@ -267,10 +276,11 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
if (val) {
format = datetime.get_DateTime();
!format ? this.radioFixed.setValue(true) : this.radioUpdate.setValue(true);
!format && (this.inputFixed.setValue(datetime.get_CustomDateTime() || ''));
!format && (fixed = datetime.get_CustomDateTime() || '');
this.setDateTimeType(!format ? 'fixed' : 'update', null, true);
}
this.updateFormats(this.cmbLang.getValue());
this.updateFormats(this.cmbLang.getValue(), format);
this.inputFixed.setValue((fixed!==undefined) ? fixed : this.cmbFormat.getRawValue());
val = slideprops.get_ShowSlideNum();
this.chSlide.setValue(val, true);
@ -313,7 +323,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
},
onPrimary: function() {
this._handleInput('ok');
this._handleInput('all');
return false;
},

View file

@ -1069,6 +1069,8 @@ define([
this._state.GradColor = color;
}
this.chShadow.setValue(!!props.asc_getShadow(), true);
this._noApply = false;
}
},
@ -1341,6 +1343,13 @@ define([
this.btnFlipH.on('click', _.bind(this.onBtnFlipClick, this));
this.lockedControls.push(this.btnFlipH);
this.chShadow = new Common.UI.CheckBox({
el: $('#shape-checkbox-shadow'),
labelText: this.strShadow
});
this.chShadow.on('change', _.bind(this.onCheckShadow, this));
this.lockedControls.push(this.chShadow);
this.linkAdvanced = $('#shape-advanced-link');
$(this.el).on('click', '#shape-advanced-link', _.bind(this.openAdvancedSettings, this));
},
@ -1447,6 +1456,15 @@ define([
this.fireEvent('editcomplete', this);
},
onCheckShadow: function(field, newValue, oldValue, eOpts) {
if (this.api) {
var props = new Asc.asc_CShapeProperty();
props.asc_putShadow((field.getValue()=='checked') ? new Asc.asc_CShadowProperty() : null);
this.api.ShapeApply(props);
}
this.fireEvent('editcomplete', this);
},
fillAutoShapes: function() {
var me = this,
shapesStore = this.application.getCollection('ShapeGroups');
@ -1718,6 +1736,7 @@ define([
textHint270: 'Rotate 90° Counterclockwise',
textHint90: 'Rotate 90° Clockwise',
textHintFlipV: 'Flip Vertically',
textHintFlipH: 'Flip Horizontally'
textHintFlipH: 'Flip Horizontally',
strShadow: 'Show shadow'
}, PE.Views.ShapeSettings || {}));
});

View file

@ -1678,7 +1678,7 @@ define([
mniImageFromStorage: 'Image from Storage',
txtSlideAlign: 'Align to Slide',
txtObjectsAlign: 'Align Selected Objects',
tipEditHeader: 'Edit Header or Footer',
tipEditHeader: 'Edit header or footer',
tipSlideNum: 'Insert slide number',
tipDateTime: 'Insert current date and time',
capBtnInsHeader: 'Header/Footer',

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Внимание",
"Common.Controllers.Chat.textEnterMessage": "Въведете съобщението си тук",
"Common.Controllers.Chat.textUserLimit": "Използвате ONLYOFFICE Free Edition. <br> Само двама потребители могат да редактират документа едновременно. <br> Искате ли повече? Помислете за закупуване на ONLYOFFICE Enterprise Edition. <br> <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\"> Прочетете повече </a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Анонимен",
"Common.Controllers.ExternalDiagramEditor.textClose": "Затвори",
"Common.Controllers.ExternalDiagramEditor.warningText": "Обектът е деактивиран, а кой е редактиран от друг потребител.",
@ -244,7 +243,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализациите.",
"PE.Controllers.Main.criticalErrorExtText": "Натиснете \"OK\", за да се върнете към списъка с документи.",
"PE.Controllers.Main.criticalErrorTitle": "Грешка",
"PE.Controllers.Main.defaultTitleText": "Редактор на презентации ONLYOFFICE",
"PE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.",
"PE.Controllers.Main.downloadTextText": "Представянето се изтегля ...",
"PE.Controllers.Main.downloadTitleText": "Изтегляне на презентация",
@ -1153,7 +1151,6 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Промяна на правата за достъп",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата на създаване",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Местоположение",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Лица, които имат права",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Заглавие на презентацията",
@ -1527,9 +1524,7 @@
"PE.Views.Statusbar.tipFitPage": "Плъзгайте се",
"PE.Views.Statusbar.tipFitWidth": "Поставя се в ширина",
"PE.Views.Statusbar.tipPreview": "Започнете слайдшоуто",
"PE.Views.Statusbar.tipSetDocLang": "Задайте език на документа",
"PE.Views.Statusbar.tipSetLang": "Задаване на език на текст",
"PE.Views.Statusbar.tipSetSpelling": "Проверка на правописа",
"PE.Views.Statusbar.tipZoomFactor": "Мащаб",
"PE.Views.Statusbar.tipZoomIn": "Увеличавам ",
"PE.Views.Statusbar.tipZoomOut": "Отдалечавам",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Varování",
"Common.Controllers.Chat.textEnterMessage": "Zde napište svou zprávu",
"Common.Controllers.Chat.textUserLimit": "Používáte ONLYOFFICE bezplatnou edici.<br>Pouze dva uživatelé mohou zároveň upravovat dokument.<br>Chcete více? Zvažte zakoupení ONLYOFFICE Enterprise edice.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Více informací</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymní",
"Common.Controllers.ExternalDiagramEditor.textClose": "Zavřít",
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je vypnut, protože je upravován jiným uživatelem.",
@ -135,7 +134,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.",
"PE.Controllers.Main.criticalErrorExtText": "Kliněte na \"OK\" pro návrat k seznamu dokumentů",
"PE.Controllers.Main.criticalErrorTitle": "Chyba",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Stahování selhalo.",
"PE.Controllers.Main.downloadTextText": "Stahování prezentace...",
"PE.Controllers.Main.downloadTitleText": "Stahování prezentace",
@ -826,7 +824,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nejsou zde žádné šablony.",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Změnit přístupová práva",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum vytvoření",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umístění",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, které mají práva",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Nadpis prezentace",
@ -1143,9 +1140,7 @@
"PE.Views.Statusbar.tipFitPage": "Přizpůsobit snímku",
"PE.Views.Statusbar.tipFitWidth": "Přizpůsobit šířce",
"PE.Views.Statusbar.tipPreview": "Spustit náhled",
"PE.Views.Statusbar.tipSetDocLang": "Nastavit jazyk dokumentu",
"PE.Views.Statusbar.tipSetLang": "Nastavit jazyk psaní",
"PE.Views.Statusbar.tipSetSpelling": "Kontrola pravopisu",
"PE.Views.Statusbar.tipZoomFactor": "Přiblížit",
"PE.Views.Statusbar.tipZoomIn": "Přiblížit",
"PE.Views.Statusbar.tipZoomOut": "Oddálit",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Achtung",
"Common.Controllers.Chat.textEnterMessage": "Geben Sie Ihre Nachricht hier ein",
"Common.Controllers.Chat.textUserLimit": "Sie benutzen ONLYOFFICE Free Edition.<br>Nur zwei Benutzer können das Dokument gleichzeitig bearbeiten.<br>Möchten Sie mehr? Erwerben Sie kommerzielle Version von ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Lesen Sie mehr davon</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonym",
"Common.Controllers.ExternalDiagramEditor.textClose": "Schließen",
"Common.Controllers.ExternalDiagramEditor.warningText": "Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.",
@ -244,7 +243,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
"PE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf \"OK\", um zur Dokumentenliste zu übergehen.",
"PE.Controllers.Main.criticalErrorTitle": "Fehler",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
"PE.Controllers.Main.downloadTextText": "Präsentation wird heruntergeladen...",
"PE.Controllers.Main.downloadTitleText": "Präsentation wird heruntergeladen",
@ -1153,7 +1151,6 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Anwendung",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zugriffsrechte ändern",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Erstellungsdatum",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Speicherort",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen mit Berechtigungen",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel der Präsentation",
@ -1527,9 +1524,7 @@
"PE.Views.Statusbar.tipFitPage": "Folie anpassen",
"PE.Views.Statusbar.tipFitWidth": "Breite anpassen",
"PE.Views.Statusbar.tipPreview": "Vorschau starten",
"PE.Views.Statusbar.tipSetDocLang": "Sprache des Dokumentes festlegen",
"PE.Views.Statusbar.tipSetLang": "Textsprache wählen",
"PE.Views.Statusbar.tipSetSpelling": "Rechtschreibprüfung",
"PE.Views.Statusbar.tipZoomFactor": "Zoommodus",
"PE.Views.Statusbar.tipZoomIn": "Vergrößern",
"PE.Views.Statusbar.tipZoomOut": "Verkleinern",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Enter your message here",
"del_Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalDiagramEditor.textClose": "Close",
"Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.",
@ -96,11 +95,11 @@
"Common.Views.Header.tipRedo": "Redo",
"Common.Views.Header.tipSave": "Save",
"Common.Views.Header.tipUndo": "Undo",
"Common.Views.Header.tipUndock": "Undock into separate window",
"Common.Views.Header.tipViewSettings": "View settings",
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
"Common.Views.Header.txtAccessRights": "Change access rights",
"Common.Views.Header.txtRename": "Rename",
"Common.Views.Header.tipUndock": "Undock into separate window",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
"Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:",
@ -246,7 +245,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
"PE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.",
"PE.Controllers.Main.criticalErrorTitle": "Error",
"del_PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Download failed.",
"PE.Controllers.Main.downloadTextText": "Downloading presentation...",
"PE.Controllers.Main.downloadTitleText": "Downloading Presentation",
@ -947,13 +945,13 @@
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Title",
"PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings",
"PE.Views.DateTimeDialog.cancelButtonText": "Cancel",
"PE.Views.DateTimeDialog.okButtonText": "OK",
"PE.Views.DateTimeDialog.txtTitle": "Date & Time",
"PE.Views.DateTimeDialog.textLang": "Language",
"PE.Views.DateTimeDialog.textFormat": "Formats",
"PE.Views.DateTimeDialog.textUpdate": "Update automatically",
"PE.Views.DateTimeDialog.textDefault": "Set as default",
"PE.Views.DateTimeDialog.confirmDefault": "Set default format for {0}: \"{1}\"",
"PE.Views.DateTimeDialog.okButtonText": "OK",
"PE.Views.DateTimeDialog.textDefault": "Set as default",
"PE.Views.DateTimeDialog.textFormat": "Formats",
"PE.Views.DateTimeDialog.textLang": "Language",
"PE.Views.DateTimeDialog.textUpdate": "Update automatically",
"PE.Views.DateTimeDialog.txtTitle": "Date & Time",
"PE.Views.DocumentHolder.aboveText": "Above",
"PE.Views.DocumentHolder.addCommentText": "Add Comment",
"PE.Views.DocumentHolder.advancedImageText": "Image Advanced Settings",
@ -979,6 +977,7 @@
"PE.Views.DocumentHolder.hyperlinkText": "Hyperlink",
"PE.Views.DocumentHolder.ignoreAllSpellText": "Ignore All",
"PE.Views.DocumentHolder.ignoreSpellText": "Ignore",
"PE.Views.DocumentHolder.toDictionaryText": "Add to Dictionary",
"PE.Views.DocumentHolder.insertColumnLeftText": "Column Left",
"PE.Views.DocumentHolder.insertColumnRightText": "Column Right",
"PE.Views.DocumentHolder.insertColumnText": "Insert Column",
@ -1160,16 +1159,15 @@
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Create a new blank presentation which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a presentation of a certain type or purpose where some styles have already been pre-applied.",
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "New Presentation",
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "There are no templates",
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text",
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights",
"PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment",
"del_PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Creation Date",
"PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights",
@ -1226,20 +1224,20 @@
"PE.Views.FileMenuPanels.Settings.txtPt": "Point",
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking",
"PE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
"PE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings",
"PE.Views.HeaderFooterDialog.cancelButtonText": "Cancel",
"PE.Views.HeaderFooterDialog.applyAllText": "Apply to all",
"PE.Views.HeaderFooterDialog.applyText": "Apply",
"PE.Views.HeaderFooterDialog.textLang": "Language",
"PE.Views.HeaderFooterDialog.textFormat": "Formats",
"PE.Views.HeaderFooterDialog.textUpdate": "Update automatically",
"PE.Views.HeaderFooterDialog.textDateTime": "Date and time",
"PE.Views.HeaderFooterDialog.textSlideNum": "Slide number",
"PE.Views.HeaderFooterDialog.textFooter": "Text in footer",
"PE.Views.HeaderFooterDialog.textNotTitle": "Don't show on title slide",
"PE.Views.HeaderFooterDialog.textPreview": "Preview",
"PE.Views.HeaderFooterDialog.cancelButtonText": "Cancel",
"PE.Views.HeaderFooterDialog.diffLanguage": "You cant use a date format in a different language than the slide master.<br>To change the master, click 'Apply to all' instead of 'Apply'",
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Warning",
"PE.Views.HeaderFooterDialog.textDateTime": "Date and time",
"PE.Views.HeaderFooterDialog.textFooter": "Text in footer",
"PE.Views.HeaderFooterDialog.textFormat": "Formats",
"PE.Views.HeaderFooterDialog.textLang": "Language",
"PE.Views.HeaderFooterDialog.textNotTitle": "Don't show on title slide",
"PE.Views.HeaderFooterDialog.textPreview": "Preview",
"PE.Views.HeaderFooterDialog.textSlideNum": "Slide number",
"PE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings",
"PE.Views.HeaderFooterDialog.textUpdate": "Update automatically",
"PE.Views.HeaderFooterDialog.textFixed": "Fixed",
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel",
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
@ -1421,6 +1419,7 @@
"PE.Views.ShapeSettings.txtNoBorders": "No Line",
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"PE.Views.ShapeSettings.txtWood": "Wood",
"PE.Views.ShapeSettings.strShadow": "Show shadow",
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancel",
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
"PE.Views.ShapeSettingsAdvanced.strColumns": "Columns",
@ -1473,12 +1472,14 @@
"PE.Views.SignatureSettings.txtSignedInvalid": "Some of the digital signatures in presentation are invalid or could not be verified. The presentation is protected from editing.",
"PE.Views.SlideSettings.strBackground": "Background color",
"PE.Views.SlideSettings.strColor": "Color",
"PE.Views.SlideSettings.strDateTime": "Show Date and Time",
"PE.Views.SlideSettings.strDelay": "Delay",
"PE.Views.SlideSettings.strDuration": "Duration",
"PE.Views.SlideSettings.strEffect": "Effect",
"PE.Views.SlideSettings.strFill": "Background",
"PE.Views.SlideSettings.strForeground": "Foreground color",
"PE.Views.SlideSettings.strPattern": "Pattern",
"PE.Views.SlideSettings.strSlideNum": "Show Slide Number",
"PE.Views.SlideSettings.strStartOnClick": "Start On Click",
"PE.Views.SlideSettings.textAdvanced": "Show advanced settings",
"PE.Views.SlideSettings.textApplyAll": "Apply to All Slides",
@ -1543,8 +1544,6 @@
"PE.Views.SlideSettings.txtLeather": "Leather",
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
"PE.Views.SlideSettings.txtWood": "Wood",
"PE.Views.SlideSettings.strSlideNum": "Show Slide Number",
"PE.Views.SlideSettings.strDateTime": "Show Date and Time",
"PE.Views.SlideshowSettings.cancelButtonText": "Cancel",
"PE.Views.SlideshowSettings.okButtonText": "OK",
"PE.Views.SlideshowSettings.textLoop": "Loop continuously until 'Esc' is pressed",
@ -1580,9 +1579,7 @@
"PE.Views.Statusbar.tipFitPage": "Fit to slide",
"PE.Views.Statusbar.tipFitWidth": "Fit to width",
"PE.Views.Statusbar.tipPreview": "Start slideshow",
"del_PE.Views.Statusbar.tipSetDocLang": "Set document language",
"PE.Views.Statusbar.tipSetLang": "Set text language",
"del_PE.Views.Statusbar.tipSetSpelling": "Spell checking",
"PE.Views.Statusbar.tipZoomFactor": "Zoom",
"PE.Views.Statusbar.tipZoomIn": "Zoom in",
"PE.Views.Statusbar.tipZoomOut": "Zoom out",
@ -1818,5 +1815,12 @@
"PE.Views.Toolbar.txtScheme8": "Flow",
"PE.Views.Toolbar.txtScheme9": "Foundry",
"PE.Views.Toolbar.txtSlideAlign": "Align to Slide",
"PE.Views.Toolbar.txtUngroup": "Ungroup"
"PE.Views.Toolbar.txtUngroup": "Ungroup",
"PE.Views.Toolbar.tipEditHeader": "Edit header or footer",
"PE.Views.Toolbar.tipSlideNum": "Insert slide number",
"PE.Views.Toolbar.tipDateTime": "Insert current date and time",
"PE.Views.Toolbar.capBtnInsHeader": "Header/Footer",
"PE.Views.Toolbar.capBtnSlideNum": "Slide Number",
"PE.Views.Toolbar.capBtnDateTime": "Date & Time"
}

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
"Common.Controllers.Chat.textEnterMessage": "Introduzca su mensaje aquí",
"Common.Controllers.Chat.textUserLimit": "Usted está usando ONLYOFFICE Free Edition.<br>Sólo dos usuarios pueden editar el documento simultáneamente.<br>¿Quiere más? Compre ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Saber más</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anónimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Cerrar",
"Common.Controllers.ExternalDiagramEditor.warningText": "El objeto está desactivado porque se está editando por otro usuario.",
@ -96,6 +95,7 @@
"Common.Views.Header.tipRedo": "Rehacer",
"Common.Views.Header.tipSave": "Guardar",
"Common.Views.Header.tipUndo": "Deshacer",
"Common.Views.Header.tipUndock": "Desacoplar en una ventana independiente",
"Common.Views.Header.tipViewSettings": "Mostrar ajustes",
"Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
@ -244,14 +244,13 @@
"PE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.",
"PE.Controllers.Main.criticalErrorExtText": "Pulse \"OK\" para regresar a la lista de documentos.",
"PE.Controllers.Main.criticalErrorTitle": "Error",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Error de descarga.",
"PE.Controllers.Main.downloadTextText": "Descargando presentación...",
"PE.Controllers.Main.downloadTitleText": "Descargando presentación",
"PE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con el Administrador del Servidor de Documentos.",
"PE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.",
"PE.Controllers.Main.errorConnectToServer": "No se pudo guardar el documento. Por favor, compruebe la configuración de conexión o póngase en contacto con el administrador.<br>Al hacer clic en el botón \"Aceptar\", se le pedirá que descargue el documento.<br> Encuentre más información acerca de la conexión con Servidor de Documentos<a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">aquí</a>",
"PE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de la conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de conexión de Servidor de Documentos <a href=\"%1\" target=\"_blank\">aquí</a>",
"PE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión de base de datos. Por favor póngase en contacto con soporte si el error se mantiene.",
"PE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
"PE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
@ -314,7 +313,7 @@
"PE.Controllers.Main.textContactUs": "Contactar con equipo de ventas",
"PE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.<br>Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"PE.Controllers.Main.textLoadingDocument": "Cargando presentación",
"PE.Controllers.Main.textNoLicenseTitle": "Límite de conexión de ONLYOFFICE",
"PE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones",
"PE.Controllers.Main.textPaidFeature": "Función de pago",
"PE.Controllers.Main.textShape": "Forma",
"PE.Controllers.Main.textStrict": "Modo estricto",
@ -584,7 +583,7 @@
"PE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.<br>Por favor, actualice su licencia y después recargue la página.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.<br>Por favor, contacte con su administrador para recibir más información.",
"PE.Controllers.Main.warnNoLicense": "Esta versión de Editores de ONLYOFFICE tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.<br>Si se requiere más, por favor, considere comprar una licencia comercial.",
"PE.Controllers.Main.warnNoLicenseUsers": "Esta versión de Editores de ONLYOFFICE tiene ciertas limitaciones para usuarios simultáneos.<br>Si se requiere más, por favor, considere comprar una licencia comercial.",
"PE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.<br>Si necesita más, por favor, considere comprar una licencia comercial.",
"PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"PE.Controllers.Toolbar.confirmAddFontName": "El tipo de letra que usted va a guardar no está disponible en este dispositivo.<br>El estilo de letra se mostrará usando uno de los tipos de letra del dispositivo, el tipo de letra guardado va a usarse cuando esté disponible.<br>¿Desea continuar?",
@ -944,6 +943,14 @@
"PE.Views.ChartSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.",
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Título",
"PE.Views.ChartSettingsAdvanced.textTitle": "Gráfico - Ajustes avanzados",
"PE.Views.DateTimeDialog.cancelButtonText": "Cancelar",
"PE.Views.DateTimeDialog.confirmDefault": "Establecer formato predeterminado para {0}: \"{1}\"",
"PE.Views.DateTimeDialog.okButtonText": "OK",
"PE.Views.DateTimeDialog.textDefault": "Establecer como el valor predeterminado",
"PE.Views.DateTimeDialog.textFormat": "Formatos",
"PE.Views.DateTimeDialog.textLang": "Idioma",
"PE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente",
"PE.Views.DateTimeDialog.txtTitle": "Fecha y hora",
"PE.Views.DocumentHolder.aboveText": "Arriba",
"PE.Views.DocumentHolder.addCommentText": "Añadir comentario",
"PE.Views.DocumentHolder.advancedImageText": "Ajustes avanzados de imagen",
@ -1150,13 +1157,21 @@
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Cree una presentación en blanco nueva para trabajar con estilo y formato y editarla según sus necesidades. O seleccione una de las plantillas para iniciar la presentación de cierto tipo o propósito donde algunos estilos se han aplicado ya.",
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Presentación nueva",
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "No hay ningunas plantillas",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Añadir autor",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Añadir texto",
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicación",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambiar derechos de acceso",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Fecha de creación",
"PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentario",
"PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creada",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificación por",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificación",
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietario",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título de presentación",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar derechos de acceso",
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Personas que tienen derechos",
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso",
@ -1207,6 +1222,20 @@
"PE.Views.FileMenuPanels.Settings.txtPt": "Punto",
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Сorrección ortográfica",
"PE.Views.FileMenuPanels.Settings.txtWin": "como Windows",
"PE.Views.HeaderFooterDialog.applyAllText": "Aplicar a todo",
"PE.Views.HeaderFooterDialog.applyText": "Aplicar",
"PE.Views.HeaderFooterDialog.cancelButtonText": "Cancelar",
"PE.Views.HeaderFooterDialog.diffLanguage": "No se puede usar un formato de fecha en un idioma diferente del patrón de diapositivas.<br> Para cambiar el patrón pulse \"Aplicar a todo\" en vez de \"Aplicar\"",
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Aviso",
"PE.Views.HeaderFooterDialog.textDateTime": "Fecha y hora",
"PE.Views.HeaderFooterDialog.textFooter": "Texto en pie de página",
"PE.Views.HeaderFooterDialog.textFormat": "Formatos",
"PE.Views.HeaderFooterDialog.textLang": "Idioma",
"PE.Views.HeaderFooterDialog.textNotTitle": "No mostrar en diapositiva de título",
"PE.Views.HeaderFooterDialog.textPreview": "Vista previa",
"PE.Views.HeaderFooterDialog.textSlideNum": "Número de diapositiva",
"PE.Views.HeaderFooterDialog.textTitle": "Ajustes de encabezado / pie de página",
"PE.Views.HeaderFooterDialog.textUpdate": "Actualizar automáticamente",
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancelar",
"PE.Views.HyperlinkSettingsDialog.okButtonText": "Aceptar",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Mostrar",
@ -1422,12 +1451,14 @@
"PE.Views.SignatureSettings.txtSignedInvalid": "Algunas de las firmas digitales en la presentación son inválidas o no se pudieron verificar. La presentación está protegida y no se puede editar.",
"PE.Views.SlideSettings.strBackground": "Color de fondo",
"PE.Views.SlideSettings.strColor": "Color",
"PE.Views.SlideSettings.strDateTime": "Mostrar Fecha y Hora",
"PE.Views.SlideSettings.strDelay": "Retraso",
"PE.Views.SlideSettings.strDuration": "Duración ",
"PE.Views.SlideSettings.strEffect": "Efecto",
"PE.Views.SlideSettings.strFill": "Fondo",
"PE.Views.SlideSettings.strForeground": "Color de primer plano",
"PE.Views.SlideSettings.strPattern": "Patrón",
"PE.Views.SlideSettings.strSlideNum": "Mostrar número de diapositiva",
"PE.Views.SlideSettings.strStartOnClick": "Iniciar al hacer clic",
"PE.Views.SlideSettings.textAdvanced": "Mostrar ajustes avanzados",
"PE.Views.SlideSettings.textApplyAll": "Aplicar a todas diapositivas",
@ -1527,9 +1558,7 @@
"PE.Views.Statusbar.tipFitPage": "Ajustar a la diapositiva",
"PE.Views.Statusbar.tipFitWidth": "Ajustar a ancho",
"PE.Views.Statusbar.tipPreview": "Iniciar presentación",
"PE.Views.Statusbar.tipSetDocLang": "Establecer el idioma de documento",
"PE.Views.Statusbar.tipSetLang": "Establecer idioma de texto",
"PE.Views.Statusbar.tipSetSpelling": "Сorrección ortográfica",
"PE.Views.Statusbar.tipZoomFactor": "Ampliación",
"PE.Views.Statusbar.tipZoomIn": "Acercar",
"PE.Views.Statusbar.tipZoomOut": "Alejar",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Avertissement",
"Common.Controllers.Chat.textEnterMessage": "Entrez votre message ici",
"Common.Controllers.Chat.textUserLimit": "Vous êtes en train d'utiliser ONLYOFFICE Free Edition.<br>Ce ne sont que deux utilisateurs qui peuvent éditer le document simultanément.<br>Voulez plus ? Envisagez d'acheter ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">En savoir plus</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonyme",
"Common.Controllers.ExternalDiagramEditor.textClose": "Fermer",
"Common.Controllers.ExternalDiagramEditor.warningText": "L'objet est désactivé car il est en cours d'être modifié par un autre utilisateur.",
@ -245,7 +244,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.",
"PE.Controllers.Main.criticalErrorExtText": "Cliquez sur \"OK\" pour revenir à la liste des documents.",
"PE.Controllers.Main.criticalErrorTitle": "Erreur",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Échec du téléchargement.",
"PE.Controllers.Main.downloadTextText": "Téléchargement de la présentation...",
"PE.Controllers.Main.downloadTitleText": "Téléchargement de la présentation",
@ -945,6 +943,13 @@
"PE.Views.ChartSettingsAdvanced.textAltTip": "La représentation textuelle alternative des informations sur lobjet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de limage, de la forme automatique, du graphique ou du tableau.",
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Titre",
"PE.Views.ChartSettingsAdvanced.textTitle": "Graphique - Paramètres avancés",
"PE.Views.DateTimeDialog.cancelButtonText": "Annuler",
"PE.Views.DateTimeDialog.confirmDefault": "Définir le format par défaut pour {0}: \"{1}\"",
"PE.Views.DateTimeDialog.textDefault": "Définir par défaut",
"PE.Views.DateTimeDialog.textFormat": "Formats",
"PE.Views.DateTimeDialog.textLang": "Langue",
"PE.Views.DateTimeDialog.textUpdate": "Mettre à jour automatiquement",
"PE.Views.DateTimeDialog.txtTitle": "Date & heure",
"PE.Views.DocumentHolder.aboveText": "Au-dessus",
"PE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire",
"PE.Views.DocumentHolder.advancedImageText": "Paramètres avancés de l'image",
@ -1151,13 +1156,21 @@
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Créez une nouvelle présentation vièrge que vous serez en mesure de styliser et de formater après sa création au cours de la modification. Ou choisissez un des modèles où certains styles sont déjà pré-appliqués pour commencer une présentation d'un certain type ou objectif.",
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nouvelle présentation",
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Pas de modèles",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Ajouter un auteur",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Ajouter du texte",
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Changer les droits d'accès",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Date de création",
"PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commentaire",
"PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Créé",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Dernière modification par",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Date de dernière modification",
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propriétaire",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Emplacement",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personnes qui ont des droits",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Objet",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre de la présentation",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Chargé",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Changer les droits d'accès",
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Personnes qui ont des droits",
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avertissement",
@ -1208,6 +1221,19 @@
"PE.Views.FileMenuPanels.Settings.txtPt": "Point",
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Vérification de l'orthographe",
"PE.Views.FileMenuPanels.Settings.txtWin": "comme Windows",
"PE.Views.HeaderFooterDialog.applyAllText": "Appliquer à tous",
"PE.Views.HeaderFooterDialog.applyText": "Appliquer",
"PE.Views.HeaderFooterDialog.cancelButtonText": "Annuler",
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avertissement",
"PE.Views.HeaderFooterDialog.textDateTime": "Date et heure",
"PE.Views.HeaderFooterDialog.textFooter": "Texte en pied de page",
"PE.Views.HeaderFooterDialog.textFormat": "Formats",
"PE.Views.HeaderFooterDialog.textLang": "Langue",
"PE.Views.HeaderFooterDialog.textNotTitle": "Ne pas afficher sur la diapositive titre",
"PE.Views.HeaderFooterDialog.textPreview": "Aperçu",
"PE.Views.HeaderFooterDialog.textSlideNum": "Numéro de diapositive",
"PE.Views.HeaderFooterDialog.textTitle": "Paramètres des en-têtes/pieds de page",
"PE.Views.HeaderFooterDialog.textUpdate": "Mettre à jour automatiquement",
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annuler",
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Afficher",
@ -1423,12 +1449,14 @@
"PE.Views.SignatureSettings.txtSignedInvalid": "Des signatures électroniques sont non valides ou n'ont pas pu être vérifiées. Le document est protégé contre la modification.",
"PE.Views.SlideSettings.strBackground": "Couleur d'arrière-plan",
"PE.Views.SlideSettings.strColor": "Couleur",
"PE.Views.SlideSettings.strDateTime": "Afficher la date et l'heure",
"PE.Views.SlideSettings.strDelay": "Retard",
"PE.Views.SlideSettings.strDuration": "Durée",
"PE.Views.SlideSettings.strEffect": "Effet",
"PE.Views.SlideSettings.strFill": "Arrière-plan",
"PE.Views.SlideSettings.strForeground": "Couleur de premier plan",
"PE.Views.SlideSettings.strPattern": "Modèle",
"PE.Views.SlideSettings.strSlideNum": "Afficher le numéro de diapositive",
"PE.Views.SlideSettings.strStartOnClick": "Démarrer en cliquant",
"PE.Views.SlideSettings.textAdvanced": "Afficher les paramètres avancés",
"PE.Views.SlideSettings.textApplyAll": "Appliquer à toutes les diapositives",
@ -1528,9 +1556,7 @@
"PE.Views.Statusbar.tipFitPage": "Ajuster à la diapositive",
"PE.Views.Statusbar.tipFitWidth": "Ajuster à la largeur",
"PE.Views.Statusbar.tipPreview": "Démarrer le diaporama",
"PE.Views.Statusbar.tipSetDocLang": "Définir la langue du document",
"PE.Views.Statusbar.tipSetLang": "Définir la langue du texte",
"PE.Views.Statusbar.tipSetSpelling": "Vérification de l'orthographe",
"PE.Views.Statusbar.tipZoomFactor": "Zoom",
"PE.Views.Statusbar.tipZoomIn": "Zoom avant",
"PE.Views.Statusbar.tipZoomOut": "Zoom arrière",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Figyelmeztetés",
"Common.Controllers.Chat.textEnterMessage": "Írja be ide az üzenetet",
"Common.Controllers.Chat.textUserLimit": "Ön az ONLYOFFICE Ingyenes Kiadást használja.<br>Csak két felhasználó szerkesztheti egyszerre a dokumentumot.<br>Többet szeretne? Fontolja meg az ONLYOFFICE Vállalati Kiadás megvásárlását<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Tudjon meg többet</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Névtelen",
"Common.Controllers.ExternalDiagramEditor.textClose": "Bezár",
"Common.Controllers.ExternalDiagramEditor.warningText": "Az objektum le van tiltva, mert azt egy másik felhasználó szerkeszti.",
@ -244,7 +243,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.",
"PE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\" gombot a dokumentumlistához való visszatéréshez.",
"PE.Controllers.Main.criticalErrorTitle": "Hiba",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Prezentáció Szerkesztő",
"PE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.",
"PE.Controllers.Main.downloadTextText": "Prezentáció letöltése...",
"PE.Controllers.Main.downloadTitleText": "Prezentáció letöltése",
@ -1092,7 +1090,6 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikáció",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Szerző",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Hozzáférési jogok módosítása",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Létrehozás dátuma",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Hely",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Jogosult személyek",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Prezentáció címe",
@ -1464,9 +1461,7 @@
"PE.Views.Statusbar.tipFitPage": "A diához igazít",
"PE.Views.Statusbar.tipFitWidth": "Szélességhez igazít",
"PE.Views.Statusbar.tipPreview": "Diavetítés elindítása",
"PE.Views.Statusbar.tipSetDocLang": "Dokumentumnyelv beállítása",
"PE.Views.Statusbar.tipSetLang": "Szöveg nyelvének beállítása",
"PE.Views.Statusbar.tipSetSpelling": "Helyesírás-ellenőrzés",
"PE.Views.Statusbar.tipZoomFactor": "Zoom",
"PE.Views.Statusbar.tipZoomIn": "Zoom be",
"PE.Views.Statusbar.tipZoomOut": "Zoom ki",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Avviso",
"Common.Controllers.Chat.textEnterMessage": "Scrivi il tuo messaggio qui",
"Common.Controllers.Chat.textUserLimit": "Stai usando ONLYOFFICE Free Edition.<br>Solo due utenti possono modificare il documento contemporaneamente.<br>Si desidera di più? Considera l'acquisto di ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Ulteriori informazioni</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Chiudi",
"Common.Controllers.ExternalDiagramEditor.warningText": "L'oggetto è disabilitato perché si sta modificando da un altro utente.",
@ -96,6 +95,7 @@
"Common.Views.Header.tipRedo": "Ripristina",
"Common.Views.Header.tipSave": "Salva",
"Common.Views.Header.tipUndo": "Annulla",
"Common.Views.Header.tipUndock": "Sgancia in una finestra separata",
"Common.Views.Header.tipViewSettings": "Mostra impostazioni",
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
@ -192,12 +192,13 @@
"Common.Views.ReviewChanges.txtSharing": "Condivisione",
"Common.Views.ReviewChanges.txtSpelling": "Controllo ortografia",
"Common.Views.ReviewChanges.txtTurnon": "Traccia cambiamenti",
"Common.Views.ReviewChanges.txtView": "Modalità display",
"Common.Views.ReviewChanges.txtView": "Modalità Visualizzazione",
"Common.Views.ReviewPopover.textAdd": "Aggiungi",
"Common.Views.ReviewPopover.textAddReply": "Aggiungi risposta",
"Common.Views.ReviewPopover.textCancel": "Annulla",
"Common.Views.ReviewPopover.textClose": "Chiudi",
"Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textMention": "+mention fornirà l'accesso al documento e invierà un'e-mail",
"Common.Views.ReviewPopover.textOpenAgain": "Apri di nuovo",
"Common.Views.ReviewPopover.textReply": "Rispondi",
"Common.Views.ReviewPopover.textResolve": "Risolvere",
@ -244,14 +245,13 @@
"PE.Controllers.Main.convertationTimeoutText": "E' stato superato il tempo limite della conversione.",
"PE.Controllers.Main.criticalErrorExtText": "Clicca su \"OK\" per ritornare all'elenco dei documenti.",
"PE.Controllers.Main.criticalErrorTitle": "Errore",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Download fallito.",
"PE.Controllers.Main.downloadTextText": "Download della presentazione in corso...",
"PE.Controllers.Main.downloadTitleText": "Download della presentazione",
"PE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
"PE.Controllers.Main.errorBadImageUrl": "URL dell'immagine errato",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Connessione al server persa. Impossibile modificare il documento.",
"PE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.<br>Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.<br><br>Per maggiori dettagli sulla connessione al Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">clicca qui</a>",
"PE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.<br>Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.<br><br>Per maggiori dettagli sulla connessione al Document Server <a href=\"%1\" target=\"_blank\">here</a>",
"PE.Controllers.Main.errorDatabaseConnection": "Errore esterno.<br>Errore di connessione a banca dati. Si prega di contattare l'assistenza tecnica nel caso in cui l'errore persiste.",
"PE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
"PE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.",
@ -314,7 +314,7 @@
"PE.Controllers.Main.textContactUs": "Contatta il reparto vendite.",
"PE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
"PE.Controllers.Main.textLoadingDocument": "Caricamento della presentazione",
"PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE® limite connessione",
"PE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
"PE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
"PE.Controllers.Main.textShape": "Forma",
"PE.Controllers.Main.textStrict": "Modalità Rigorosa",
@ -345,6 +345,12 @@
"PE.Controllers.Main.txtPicture": "Foto",
"PE.Controllers.Main.txtRectangles": "Rettangoli",
"PE.Controllers.Main.txtSeries": "Serie",
"PE.Controllers.Main.txtShape_accentBorderCallout1": "Callout Linea con bordo e barra in risalto",
"PE.Controllers.Main.txtShape_accentBorderCallout2": "Callout Linea piegata con bordo e barra in risalto",
"PE.Controllers.Main.txtShape_accentBorderCallout3": "Callout Doppia linea piegata con barra e bordo in risalto",
"PE.Controllers.Main.txtShape_accentCallout1": "Callout Linea con barra in risalto",
"PE.Controllers.Main.txtShape_accentCallout2": "Callout Linea piegata con barra in risalto",
"PE.Controllers.Main.txtShape_accentCallout3": "Callout Doppia linea piegata con barra in risalto",
"PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Indietro o Pulsante Precedente",
"PE.Controllers.Main.txtShape_actionButtonBeginning": "Pulsante di Inizio",
"PE.Controllers.Main.txtShape_actionButtonBlank": "Pulsante Vuoto",
@ -354,18 +360,39 @@
"PE.Controllers.Main.txtShape_actionButtonHelp": "Pulsante Aiuto",
"PE.Controllers.Main.txtShape_actionButtonHome": "Pulsante Home",
"PE.Controllers.Main.txtShape_actionButtonInformation": "Pulsante Informazioni",
"PE.Controllers.Main.txtShape_actionButtonMovie": "Pulsante Film",
"PE.Controllers.Main.txtShape_actionButtonReturn": "Pulsante Invio",
"PE.Controllers.Main.txtShape_actionButtonSound": "Pulsante Suono",
"PE.Controllers.Main.txtShape_arc": "Arco",
"PE.Controllers.Main.txtShape_bentArrow": "Freccia piegata",
"PE.Controllers.Main.txtShape_bentConnector5": "Connettore a gomito",
"PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connettore freccia a gomito",
"PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connettore doppia freccia a gomito",
"PE.Controllers.Main.txtShape_bentUpArrow": "Freccia curva in alto",
"PE.Controllers.Main.txtShape_bevel": "Smussato",
"PE.Controllers.Main.txtShape_blockArc": "Arco a tutto sesto",
"PE.Controllers.Main.txtShape_chevron": "Gallone",
"PE.Controllers.Main.txtShape_borderCallout1": "Callout Linea",
"PE.Controllers.Main.txtShape_borderCallout2": "Callout Linea piegata",
"PE.Controllers.Main.txtShape_borderCallout3": "Callout Doppia linea piegata",
"PE.Controllers.Main.txtShape_bracePair": "Doppia parentesi graffa",
"PE.Controllers.Main.txtShape_callout1": "Callout Linea senza bordo",
"PE.Controllers.Main.txtShape_callout2": "Callout Linea piegata senza bordo ",
"PE.Controllers.Main.txtShape_callout3": "Callout Doppia linea piegata senza bordo",
"PE.Controllers.Main.txtShape_can": "Cilindro",
"PE.Controllers.Main.txtShape_chevron": "freccia a Gallone",
"PE.Controllers.Main.txtShape_chord": "Corda",
"PE.Controllers.Main.txtShape_circularArrow": "Freccia circolare",
"PE.Controllers.Main.txtShape_cloud": "Nuvola",
"PE.Controllers.Main.txtShape_cloudCallout": "Callout Nuvola",
"PE.Controllers.Main.txtShape_corner": "Angolo",
"PE.Controllers.Main.txtShape_cube": "Cubo",
"PE.Controllers.Main.txtShape_curvedConnector3": "Connettore curvo",
"PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Connettore a freccia curva",
"PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connettore a doppia freccia curva",
"PE.Controllers.Main.txtShape_curvedDownArrow": "Freccia curva in basso",
"PE.Controllers.Main.txtShape_curvedLeftArrow": "Freccia curva a sinistra",
"PE.Controllers.Main.txtShape_curvedRightArrow": "Freccia curva a destra",
"PE.Controllers.Main.txtShape_curvedUpArrow": "Freccia curva in su",
"PE.Controllers.Main.txtShape_decagon": "Decagono",
"PE.Controllers.Main.txtShape_diagStripe": "Striscia diagonale",
"PE.Controllers.Main.txtShape_diamond": "Diamante",
@ -373,7 +400,10 @@
"PE.Controllers.Main.txtShape_donut": "Ciambella",
"PE.Controllers.Main.txtShape_doubleWave": "Onda doppia",
"PE.Controllers.Main.txtShape_downArrow": "Freccia in giù",
"PE.Controllers.Main.txtShape_downArrowCallout": "Callout Freccia in basso",
"PE.Controllers.Main.txtShape_ellipse": "Ellisse",
"PE.Controllers.Main.txtShape_ellipseRibbon": "Nastro curvo e inclinato in basso",
"PE.Controllers.Main.txtShape_ellipseRibbon2": "Nastro curvato in alto",
"PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagramma di flusso: processo alternativo",
"PE.Controllers.Main.txtShape_flowChartCollate": "Diagramma di flusso: Fascicolazione",
"PE.Controllers.Main.txtShape_flowChartConnector": "Diagramma di flusso: Connettore",
@ -402,7 +432,9 @@
"PE.Controllers.Main.txtShape_flowChartSort": "Diagramma di flusso: Ordinamento",
"PE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagramma di flusso: Giunzione di somma",
"PE.Controllers.Main.txtShape_flowChartTerminator": "Diagramma di flusso: Terminatore",
"PE.Controllers.Main.txtShape_foldedCorner": "angolo ripiegato",
"PE.Controllers.Main.txtShape_frame": "Cornice",
"PE.Controllers.Main.txtShape_halfFrame": "Mezza Cornice",
"PE.Controllers.Main.txtShape_heart": "Cuore",
"PE.Controllers.Main.txtShape_heptagon": "Ettagono",
"PE.Controllers.Main.txtShape_hexagon": "Esagono",
@ -411,16 +443,26 @@
"PE.Controllers.Main.txtShape_irregularSeal1": "Esplosione 1",
"PE.Controllers.Main.txtShape_irregularSeal2": "Esplosione 2",
"PE.Controllers.Main.txtShape_leftArrow": "Freccia Sinistra",
"PE.Controllers.Main.txtShape_leftArrowCallout": "Callout Freccia a sinistra",
"PE.Controllers.Main.txtShape_leftBrace": "Parentesi graffa aperta",
"PE.Controllers.Main.txtShape_leftBracket": "Parentesi quadra aperta",
"PE.Controllers.Main.txtShape_leftRightArrow": "Freccia bidirezionale sinistra destra",
"PE.Controllers.Main.txtShape_leftRightArrowCallout": "Callout Freccia bidirezionane sinistra destra",
"PE.Controllers.Main.txtShape_leftRightUpArrow": "Freccia tridirezionale sinistra destra alto",
"PE.Controllers.Main.txtShape_leftUpArrow": "Freccia bidirezionale sinistra alto",
"PE.Controllers.Main.txtShape_lightningBolt": "Fulmine",
"PE.Controllers.Main.txtShape_line": "Linea",
"PE.Controllers.Main.txtShape_lineWithArrow": "Freccia",
"PE.Controllers.Main.txtShape_lineWithTwoArrows": "Freccia doppia",
"PE.Controllers.Main.txtShape_mathDivide": "Divisione",
"PE.Controllers.Main.txtShape_mathEqual": "Uguale",
"PE.Controllers.Main.txtShape_mathMinus": "Meno",
"PE.Controllers.Main.txtShape_mathMultiply": "Moltiplicazione",
"PE.Controllers.Main.txtShape_mathNotEqual": "Non uguale",
"PE.Controllers.Main.txtShape_mathPlus": "Più",
"PE.Controllers.Main.txtShape_moon": "Luna",
"PE.Controllers.Main.txtShape_noSmoking": "Simbolo \"No\"",
"PE.Controllers.Main.txtShape_notchedRightArrow": "Freccia dentellata a destra ",
"PE.Controllers.Main.txtShape_octagon": "Ottagono",
"PE.Controllers.Main.txtShape_parallelogram": "Parallelogramma",
"PE.Controllers.Main.txtShape_pentagon": "Pentagono",
@ -429,9 +471,25 @@
"PE.Controllers.Main.txtShape_plus": "Più",
"PE.Controllers.Main.txtShape_polyline1": "Bozza",
"PE.Controllers.Main.txtShape_polyline2": "Forma libera",
"PE.Controllers.Main.txtShape_quadArrow": "Freccia a incrocio",
"PE.Controllers.Main.txtShape_quadArrowCallout": "Callout Freccia a incrocio",
"PE.Controllers.Main.txtShape_rect": "Rettangolo",
"PE.Controllers.Main.txtShape_ribbon": "Nastro inclinato in basso",
"PE.Controllers.Main.txtShape_ribbon2": "Nastro inclinato in alto",
"PE.Controllers.Main.txtShape_rightArrow": "Freccia destra",
"PE.Controllers.Main.txtShape_rightArrowCallout": "Callout Freccia a destra",
"PE.Controllers.Main.txtShape_rightBrace": "Parentesi graffa chiusa",
"PE.Controllers.Main.txtShape_rightBracket": "Parentesi quadra chiusa",
"PE.Controllers.Main.txtShape_round1Rect": "Rettangolo ad angolo singolo smussato",
"PE.Controllers.Main.txtShape_round2DiagRect": "Rettangolo ad angolo diagonale smussato",
"PE.Controllers.Main.txtShape_round2SameRect": "Rettangolo smussato dallo stesso lato",
"PE.Controllers.Main.txtShape_roundRect": "Rettangolo ad angoli smussati",
"PE.Controllers.Main.txtShape_rtTriangle": "Triangolo rettangolo",
"PE.Controllers.Main.txtShape_smileyFace": "Faccia sorridente",
"PE.Controllers.Main.txtShape_snip1Rect": "Ritaglia rettangolo ad angolo singolo",
"PE.Controllers.Main.txtShape_snip2DiagRect": "Ritaglia rettangolo ad angolo diagonale",
"PE.Controllers.Main.txtShape_snip2SameRect": "Ritaglia Rettangolo smussato dallo stesso lato",
"PE.Controllers.Main.txtShape_snipRoundRect": "Ritaglia e smussa singolo angolo rettangolo",
"PE.Controllers.Main.txtShape_spline": "Curva",
"PE.Controllers.Main.txtShape_star10": "Stella a 10 punte",
"PE.Controllers.Main.txtShape_star12": "Stella a 12 punte",
@ -443,14 +501,21 @@
"PE.Controllers.Main.txtShape_star6": "Stella a 6 punte",
"PE.Controllers.Main.txtShape_star7": "Stella a 7 punte",
"PE.Controllers.Main.txtShape_star8": "Stella a 8 punte",
"PE.Controllers.Main.txtShape_stripedRightArrow": "Freccia a strisce verso destra ",
"PE.Controllers.Main.txtShape_sun": "Sole",
"PE.Controllers.Main.txtShape_teardrop": "Goccia",
"PE.Controllers.Main.txtShape_textRect": "Casella di testo",
"PE.Controllers.Main.txtShape_trapezoid": "Trapezio",
"PE.Controllers.Main.txtShape_triangle": "Triangolo",
"PE.Controllers.Main.txtShape_triangle": "Triangolo isoscele",
"PE.Controllers.Main.txtShape_upArrow": "Freccia su",
"PE.Controllers.Main.txtShape_upArrowCallout": "Callout Freccia in alto",
"PE.Controllers.Main.txtShape_upDownArrow": "Freccia bidirezionale su giù",
"PE.Controllers.Main.txtShape_uturnArrow": "Freccia a inversione",
"PE.Controllers.Main.txtShape_verticalScroll": "Scorrimento verticale",
"PE.Controllers.Main.txtShape_wave": "Onda",
"PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Callout Ovale",
"PE.Controllers.Main.txtShape_wedgeRectCallout": "Callout Rettangolare",
"PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Rettangolare arrotondato",
"PE.Controllers.Main.txtSldLtTBlank": "Vuoto",
"PE.Controllers.Main.txtSldLtTChart": "Grafico",
"PE.Controllers.Main.txtSldLtTChartAndTx": "Grafico e testo",
@ -519,7 +584,7 @@
"PE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.<br>Si prega di aggiornare la licenza e ricaricare la pagina.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Per ulteriori informazioni, contattare l'amministratore.",
"PE.Controllers.Main.warnNoLicense": "Questa versione di ONLYOFFICE® Editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
"PE.Controllers.Main.warnNoLicenseUsers": "Questa versione di ONLYOFFICE® Editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
"PE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 presenta alcune limitazioni per gli utenti simultanei.<br> Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
"PE.Controllers.Main.warnProcessRightsChange": "Ci stato negato il diritto alla modifica del file.",
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"PE.Controllers.Toolbar.confirmAddFontName": "Il carattere che vuoi salvare non è accessibile su questo dispositivo.<br>Lo stile di testo sarà visualizzato usando uno dei caratteri di sistema, il carattere salvato sarà usato quando accessibile.<br>Vuoi continuare?",
@ -879,6 +944,14 @@
"PE.Views.ChartSettingsAdvanced.textAltTip": "La rappresentazione alternativa del testo delle informazioni riguardanti gli oggetti visivi, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.",
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Titolo",
"PE.Views.ChartSettingsAdvanced.textTitle": "Grafico - Impostazioni avanzate",
"PE.Views.DateTimeDialog.cancelButtonText": "Annulla",
"PE.Views.DateTimeDialog.confirmDefault": "Imposta formato definitivo per {0}: \"{1}\"",
"PE.Views.DateTimeDialog.okButtonText": "OK",
"PE.Views.DateTimeDialog.textDefault": "Imposta come predefinito",
"PE.Views.DateTimeDialog.textFormat": "Formati",
"PE.Views.DateTimeDialog.textLang": "Lingua",
"PE.Views.DateTimeDialog.textUpdate": "Aggiorna automaticamente",
"PE.Views.DateTimeDialog.txtTitle": "Data e ora",
"PE.Views.DocumentHolder.aboveText": "Al di sopra",
"PE.Views.DocumentHolder.addCommentText": "Aggiungi commento",
"PE.Views.DocumentHolder.advancedImageText": "Impostazioni avanzate dell'immagine",
@ -1085,13 +1158,21 @@
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Crea una nuova presentazione vuota che potrai formattare durante la modifica. O scegli uno dei modelli per creare una presentazione di un certo tipo a quale sono già applicati certi stili.",
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nuova presentazione",
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nessun modello",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Aggiungi Autore",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Aggiungi testo",
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicazione",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autore",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambia diritti di accesso",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data di creazione",
"PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commento",
"PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creato",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Ultima modifica di",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Ultima modifica",
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Proprietario",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone con diritti",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo presentazione",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambia diritti di accesso",
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone con diritti",
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso",
@ -1109,7 +1190,7 @@
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "Attiva il ripristino automatico",
"PE.Views.FileMenuPanels.Settings.strAutosave": "Attiva salvataggio automatico",
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modalità di co-editing",
"PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once",
"PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Gli altri utenti vedranno immediatamente i tuoi cambiamenti",
"PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Dovrai accettare i cambiamenti prima di poterli visualizzare.",
"PE.Views.FileMenuPanels.Settings.strFast": "Fast",
"PE.Views.FileMenuPanels.Settings.strFontRender": "Suggerimento per i caratteri",
@ -1142,6 +1223,20 @@
"PE.Views.FileMenuPanels.Settings.txtPt": "Punto",
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Controllo ortografia",
"PE.Views.FileMenuPanels.Settings.txtWin": "come Windows",
"PE.Views.HeaderFooterDialog.applyAllText": "Applica a tutti",
"PE.Views.HeaderFooterDialog.applyText": "Applica",
"PE.Views.HeaderFooterDialog.cancelButtonText": "Annulla",
"PE.Views.HeaderFooterDialog.diffLanguage": "Non è possibile utilizzare un formato data in una lingua diversa da quella della diapositiva.<br>Per cambiare il master, fare clic su \"Applica a tutto\" anziché \"Applica\"",
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avviso",
"PE.Views.HeaderFooterDialog.textDateTime": "Data e ora",
"PE.Views.HeaderFooterDialog.textFooter": "Testo a piè di pagina",
"PE.Views.HeaderFooterDialog.textFormat": "Formati",
"PE.Views.HeaderFooterDialog.textLang": "Lingua",
"PE.Views.HeaderFooterDialog.textNotTitle": "Non mostrare sul titolo della diapositiva",
"PE.Views.HeaderFooterDialog.textPreview": "Anteprima",
"PE.Views.HeaderFooterDialog.textSlideNum": "Numero Diapositiva",
"PE.Views.HeaderFooterDialog.textTitle": "Impostazioni intestazione / piè di pagina",
"PE.Views.HeaderFooterDialog.textUpdate": "Aggiorna automaticamente",
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annulla",
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Visualizza",
@ -1357,12 +1452,14 @@
"PE.Views.SignatureSettings.txtSignedInvalid": "Alcune delle firme digitali in presentazione non sono valide o non possono essere verificate. La presentazione è protetta dalla modifica.",
"PE.Views.SlideSettings.strBackground": "Colore sfondo",
"PE.Views.SlideSettings.strColor": "Colore",
"PE.Views.SlideSettings.strDateTime": "Visualizza Data e Ora",
"PE.Views.SlideSettings.strDelay": "Ritardo",
"PE.Views.SlideSettings.strDuration": "Durata",
"PE.Views.SlideSettings.strEffect": "Effetto",
"PE.Views.SlideSettings.strFill": "Sfondo",
"PE.Views.SlideSettings.strForeground": "Colore primo piano",
"PE.Views.SlideSettings.strPattern": "Modello",
"PE.Views.SlideSettings.strSlideNum": "Mostra numero diapositiva",
"PE.Views.SlideSettings.strStartOnClick": "Inizia al clic del mouse",
"PE.Views.SlideSettings.textAdvanced": "Mostra impostazioni avanzate",
"PE.Views.SlideSettings.textApplyAll": "Applica a tutte le diapositive",
@ -1462,9 +1559,7 @@
"PE.Views.Statusbar.tipFitPage": "Adatta alla diapositiva",
"PE.Views.Statusbar.tipFitWidth": "Adatta alla larghezza",
"PE.Views.Statusbar.tipPreview": "Avvia presentazione",
"PE.Views.Statusbar.tipSetDocLang": "Imposta lingua del documento",
"PE.Views.Statusbar.tipSetLang": "Seleziona lingua del testo",
"PE.Views.Statusbar.tipSetSpelling": "Controllo ortografia",
"PE.Views.Statusbar.tipZoomFactor": "Ingrandimento",
"PE.Views.Statusbar.tipZoomIn": "Zoom avanti",
"PE.Views.Statusbar.tipZoomOut": "Zoom indietro",
@ -1666,7 +1761,7 @@
"PE.Views.Toolbar.tipPrint": "Stampa",
"PE.Views.Toolbar.tipRedo": "Ripristina",
"PE.Views.Toolbar.tipSave": "Salva",
"PE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.",
"PE.Views.Toolbar.tipSaveCoauth": "Salva i tuoi cambiamenti per renderli disponibili agli altri utenti.",
"PE.Views.Toolbar.tipShapeAlign": "Allinea forma",
"PE.Views.Toolbar.tipShapeArrange": "Disponi forma",
"PE.Views.Toolbar.tipSlideSize": "Seleziona dimensione diapositiva",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": " 警告",
"Common.Controllers.Chat.textEnterMessage": "ここでメッセージを挿入してください。",
"Common.Controllers.Chat.textUserLimit": "ONLYOFFICE無料版を使用しています。<br>同時に2人のユーザのみは文書を編集することができます。<br>もっとが必要ですか。ONLYOFFICEエンタープライズ版の購入を検討してください。<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名",
"Common.Controllers.ExternalDiagramEditor.textClose": "閉じる",
"Common.Controllers.ExternalDiagramEditor.warningText": "他のユーザは編集しているのためオブジェクトが無効になります。",
@ -97,7 +96,6 @@
"PE.Controllers.Main.convertationTimeoutText": "変換のタイムアウトを超過しました。",
"PE.Controllers.Main.criticalErrorExtText": "OKボタンを押すと文書リストに戻ることができます。",
"PE.Controllers.Main.criticalErrorTitle": "エラー",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "ダウンロードに失敗しました",
"PE.Controllers.Main.downloadTextText": "プレゼンテーションのダウンロード中...",
"PE.Controllers.Main.downloadTitleText": "プレゼンテーションのダウンロード中",
@ -331,7 +329,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "テンプレートなし",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作成者",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "アクセス許可の変更",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "作成日",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "場所",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "権利を持っている者",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "プレゼンテーションのタイトル",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "경고",
"Common.Controllers.Chat.textEnterMessage": "여기에 메시지를 입력하십시오",
"Common.Controllers.Chat.textUserLimit": "ONLYOFFICE 무료 버전을 사용하고 있습니다. <br> 두 명의 사용자 만이 문서를 동시에 편집 할 수 있습니다. <br> ONLYOFFICE Enterprise Edition 구입 고려하십시오. <br> <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\"> 자세히보기 </a> ",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "익명",
"Common.Controllers.ExternalDiagramEditor.textClose": "닫기",
"Common.Controllers.ExternalDiagramEditor.warningText": "다른 사용자가 편집 중이므로 개체를 사용할 수 없습니다.",
@ -227,7 +226,6 @@
"PE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.",
"PE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 \"OK\"를 누르십시오.",
"PE.Controllers.Main.criticalErrorTitle": "오류",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE 프레젠테이션 편집기",
"PE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.",
"PE.Controllers.Main.downloadTextText": "프리젠 테이션 다운로드 중 ...",
"PE.Controllers.Main.downloadTitleText": "프레젠테이션 다운로드",
@ -938,7 +936,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "템플릿이 없습니다",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "작성자",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "액세스 권한 변경",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "생성 날짜",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "위치",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "권한이있는 사람",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "프레젠테이션 제목",
@ -1278,9 +1275,7 @@
"PE.Views.Statusbar.tipFitPage": "슬라이드에 맞추기",
"PE.Views.Statusbar.tipFitWidth": "너비에 맞춤",
"PE.Views.Statusbar.tipPreview": "슬라이드 쇼 시작",
"PE.Views.Statusbar.tipSetDocLang": "문서 언어 설정",
"PE.Views.Statusbar.tipSetLang": "텍스트 언어 설정",
"PE.Views.Statusbar.tipSetSpelling": "맞춤법 검사",
"PE.Views.Statusbar.tipZoomFactor": "확대 / 축소",
"PE.Views.Statusbar.tipZoomIn": "확대",
"PE.Views.Statusbar.tipZoomOut": "축소",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Enter your message here",
"Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalDiagramEditor.textClose": "Close",
"Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.",
@ -224,7 +223,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
"PE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.",
"PE.Controllers.Main.criticalErrorTitle": "Error",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Download failed.",
"PE.Controllers.Main.downloadTextText": "Downloading presentation...",
"PE.Controllers.Main.downloadTitleText": "Downloading Presentation",
@ -935,7 +933,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "There are no templates",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Creation Date",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Presentation Title",
@ -1275,9 +1272,7 @@
"PE.Views.Statusbar.tipFitPage": "Fit Slide",
"PE.Views.Statusbar.tipFitWidth": "Fit Width",
"PE.Views.Statusbar.tipPreview": "Start Preview",
"PE.Views.Statusbar.tipSetDocLang": "Uzstādīt dokumenta valodu",
"PE.Views.Statusbar.tipSetLang": "Uzstādīt teksta valodu",
"PE.Views.Statusbar.tipSetSpelling": "Pareizrakstības pārbaude",
"PE.Views.Statusbar.tipZoomFactor": "Palielināšana",
"PE.Views.Statusbar.tipZoomIn": "Zoom In",
"PE.Views.Statusbar.tipZoomOut": "Zoom Out",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Waarschuwing",
"Common.Controllers.Chat.textEnterMessage": "Voer hier uw bericht in",
"Common.Controllers.Chat.textUserLimit": "U gebruikt ONLYOFFICE Free Edition.<br>Er kunnen maar twee gebruikers tegelijk het document bewerken.<br>U wilt meer? Overweeg ONLYOFFICE Enterprise Edition aan te schaffen.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Meer informatie</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anoniem",
"Common.Controllers.ExternalDiagramEditor.textClose": "Sluiten",
"Common.Controllers.ExternalDiagramEditor.warningText": "Het object is gedeactiveerd omdat het wordt bewerkt door een andere gebruiker.",
@ -227,7 +226,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.",
"PE.Controllers.Main.criticalErrorExtText": "Klik op \"OK\" om terug te keren naar de lijst met documenten.",
"PE.Controllers.Main.criticalErrorTitle": "Fout",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Download mislukt.",
"PE.Controllers.Main.downloadTextText": "Presentatie wordt gedownload...",
"PE.Controllers.Main.downloadTitleText": "Presentatie wordt gedownload",
@ -944,7 +942,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Er zijn geen sjablonen",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Toegangsrechten wijzigen",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum gemaakt",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locatie",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen met rechten",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Presentatietitel",
@ -1284,9 +1281,7 @@
"PE.Views.Statusbar.tipFitPage": "Aanpassen aan dia",
"PE.Views.Statusbar.tipFitWidth": "Aan breedte aanpassen",
"PE.Views.Statusbar.tipPreview": "Diavoorstelling starten",
"PE.Views.Statusbar.tipSetDocLang": "Taal van document instellen",
"PE.Views.Statusbar.tipSetLang": "Taal van tekst instellen",
"PE.Views.Statusbar.tipSetSpelling": "Spellingcontrole",
"PE.Views.Statusbar.tipZoomFactor": "Zoomen",
"PE.Views.Statusbar.tipZoomIn": "Inzoomen",
"PE.Views.Statusbar.tipZoomOut": "Uitzoomen",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Ostrzeżenie",
"Common.Controllers.Chat.textEnterMessage": "Wprowadź swoją wiadomość tutaj",
"Common.Controllers.Chat.textUserLimit": "Używasz ONLYOFFICE Free Edition. <br> Tylko dwóch użytkowników może jednocześnie edytować dokument. Chcesz więcej? Zastanów się nad zakupem ONLYOFFICE Enterprise Edition. <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\"> Czytaj więcej </a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonimowy użytkownik ",
"Common.Controllers.ExternalDiagramEditor.textClose": "Zamknąć",
"Common.Controllers.ExternalDiagramEditor.warningText": "Obiekt jest wyłączony, ponieważ jest edytowany przez innego użytkownika.",
@ -133,7 +132,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.",
"PE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\", aby powrócić do listy dokumentów.",
"PE.Controllers.Main.criticalErrorTitle": "Błąd",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor prezentacji",
"PE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.",
"PE.Controllers.Main.downloadTextText": "Pobieranie prezentacji...",
"PE.Controllers.Main.downloadTitleText": "Pobieranie prezentacji",
@ -824,7 +822,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Tam nie ma żadnych szablonów",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmień prawa dostępu",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data utworzenia",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokalizacja",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, które mają prawa",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tytuł prezentacji",
@ -1141,9 +1138,7 @@
"PE.Views.Statusbar.tipFitPage": "Dopasuj do slajdu",
"PE.Views.Statusbar.tipFitWidth": "Dopasuj do szerokości",
"PE.Views.Statusbar.tipPreview": "Rozpocznij pokaz slajdów",
"PE.Views.Statusbar.tipSetDocLang": "Ustaw język dokumentu",
"PE.Views.Statusbar.tipSetLang": "Ustaw język tekstu",
"PE.Views.Statusbar.tipSetSpelling": "Sprawdzanie pisowni",
"PE.Views.Statusbar.tipZoomFactor": "Powiększenie",
"PE.Views.Statusbar.tipZoomIn": "Powiększ",
"PE.Views.Statusbar.tipZoomOut": "Pomniejsz",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
"Common.Controllers.Chat.textEnterMessage": "Inserir sua mensagem aqui",
"Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anônimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Fechar",
"Common.Controllers.ExternalDiagramEditor.warningText": "O objeto está desabilitado por que está sendo editado por outro usuário.",
@ -132,7 +131,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
"PE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.",
"PE.Controllers.Main.criticalErrorTitle": "Erro",
"PE.Controllers.Main.defaultTitleText": "Editor de apresentação ONLYOFFICE",
"PE.Controllers.Main.downloadErrorText": "Download falhou.",
"PE.Controllers.Main.downloadTextText": "Baixando apresentação...",
"PE.Controllers.Main.downloadTitleText": "Baixando apresentação",
@ -823,7 +821,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Não há modelos",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Alterar direitos de acesso",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data de criação",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título de apresentação",
@ -1140,9 +1137,7 @@
"PE.Views.Statusbar.tipFitPage": "Ajustar slide",
"PE.Views.Statusbar.tipFitWidth": "Ajustar largura",
"PE.Views.Statusbar.tipPreview": "Start Preview",
"PE.Views.Statusbar.tipSetDocLang": "Definir idioma do documento",
"PE.Views.Statusbar.tipSetLang": "Definir idioma do texto",
"PE.Views.Statusbar.tipSetSpelling": "Verificação ortográfica",
"PE.Views.Statusbar.tipZoomFactor": "Zoom",
"PE.Views.Statusbar.tipZoomIn": "Ampliar",
"PE.Views.Statusbar.tipZoomOut": "Reduzir",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Предупреждение",
"Common.Controllers.Chat.textEnterMessage": "Введите здесь своё сообщение",
"Common.Controllers.Chat.textUserLimit": "Вы используете бесплатную версию ONLYOFFICE.<br>Только два пользователя одновременно могут совместно редактировать документ.<br>Требуется больше? Рекомендуем приобрести корпоративную версию ONLYOFFICE.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Читать дальше</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Аноним",
"Common.Controllers.ExternalDiagramEditor.textClose": "Закрыть",
"Common.Controllers.ExternalDiagramEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.",
@ -199,6 +198,7 @@
"Common.Views.ReviewPopover.textCancel": "Отмена",
"Common.Views.ReviewPopover.textClose": "Закрыть",
"Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте",
"Common.Views.ReviewPopover.textOpenAgain": "Открыть снова",
"Common.Views.ReviewPopover.textReply": "Ответить",
"Common.Views.ReviewPopover.textResolve": "Решить",
@ -245,14 +245,13 @@
"PE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
"PE.Controllers.Main.criticalErrorExtText": "Нажмите \"OK\", чтобы вернуться к списку документов.",
"PE.Controllers.Main.criticalErrorTitle": "Ошибка",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Загрузка не удалась.",
"PE.Controllers.Main.downloadTextText": "Загрузка презентации...",
"PE.Controllers.Main.downloadTitleText": "Загрузка презентации",
"PE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
"PE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
"PE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.<br><br>Дополнительную информацию о подключении Сервера документов можно найти <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">здесь</a>",
"PE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.<br><br>Дополнительную информацию о подключении Сервера документов можно найти <a href=\"%1\" target=\"_blank\">здесь</a>",
"PE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
"PE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
"PE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
@ -315,7 +314,7 @@
"PE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
"PE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"PE.Controllers.Main.textLoadingDocument": "Загрузка презентации",
"PE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений ONLYOFFICE",
"PE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
"PE.Controllers.Main.textPaidFeature": "Платная функция",
"PE.Controllers.Main.textShape": "Фигура",
"PE.Controllers.Main.textStrict": "Строгий режим",
@ -585,7 +584,7 @@
"PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
"PE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"PE.Controllers.Statusbar.zoomText": "Масштаб {0}%",
"PE.Controllers.Toolbar.confirmAddFontName": "Шрифт, который вы хотите сохранить, недоступен на этом устройстве.<br>Стиль текста будет отображаться с помощью одного из системных шрифтов. Сохраненный шрифт будет использоваться, когда он станет доступен.<br>Вы хотите продолжить?",
@ -945,6 +944,14 @@
"PE.Views.ChartSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Заголовок",
"PE.Views.ChartSettingsAdvanced.textTitle": "Диаграмма - дополнительные параметры",
"PE.Views.DateTimeDialog.cancelButtonText": "Отмена",
"PE.Views.DateTimeDialog.confirmDefault": "Задать формат по умолчанию для {0}: \"{1}\"",
"PE.Views.DateTimeDialog.okButtonText": "Ок",
"PE.Views.DateTimeDialog.textDefault": "Установить по умолчанию",
"PE.Views.DateTimeDialog.textFormat": "Форматы",
"PE.Views.DateTimeDialog.textLang": "Язык",
"PE.Views.DateTimeDialog.textUpdate": "Обновлять автоматически",
"PE.Views.DateTimeDialog.txtTitle": "Дата и время",
"PE.Views.DocumentHolder.aboveText": "Выше",
"PE.Views.DocumentHolder.addCommentText": "Добавить комментарий",
"PE.Views.DocumentHolder.advancedImageText": "Дополнительные параметры изображения",
@ -970,6 +977,7 @@
"PE.Views.DocumentHolder.hyperlinkText": "Гиперссылка",
"PE.Views.DocumentHolder.ignoreAllSpellText": "Пропустить все",
"PE.Views.DocumentHolder.ignoreSpellText": "Пропустить",
"PE.Views.DocumentHolder.toDictionaryText": "Добавить в словарь",
"PE.Views.DocumentHolder.insertColumnLeftText": "Столбец слева",
"PE.Views.DocumentHolder.insertColumnRightText": "Столбец справа",
"PE.Views.DocumentHolder.insertColumnText": "Вставить столбец",
@ -1151,13 +1159,21 @@
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Создайте новую пустую презентацию, к которой Вы сможете применить стили и отформатировать при редактировании после того, как она будет создана. Или выберите один из шаблонов, чтобы создать презентацию определенного типа или предназначения, где уже предварительно применены некоторые стили.",
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Новая презентация",
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Шаблоны отсутствуют",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Добавить автора",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Добавить текст",
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Изменить права доступа",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата создания",
"PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Комментарий",
"PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Создана",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Автор последнего изменения",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Последнее изменение",
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Владелец",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Размещение",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Люди, имеющие права",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название презентации",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружена",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Изменить права доступа",
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Люди, имеющие права",
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Внимание",
@ -1208,6 +1224,20 @@
"PE.Views.FileMenuPanels.Settings.txtPt": "Пункт",
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка орфографии",
"PE.Views.FileMenuPanels.Settings.txtWin": "как Windows",
"PE.Views.HeaderFooterDialog.applyAllText": "Применить ко всем",
"PE.Views.HeaderFooterDialog.applyText": "Применить",
"PE.Views.HeaderFooterDialog.cancelButtonText": "Отмена",
"PE.Views.HeaderFooterDialog.diffLanguage": "Формат даты должен использовать тот же язык, что и образец слайдов.<br>Чтобы изменить образец, вместо кнопки 'Применить' нажмите кнопку 'Применить ко всем'",
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Внимание",
"PE.Views.HeaderFooterDialog.textDateTime": "Дата и время",
"PE.Views.HeaderFooterDialog.textFooter": "Текст в нижнем колонтитуле",
"PE.Views.HeaderFooterDialog.textFormat": "Форматы",
"PE.Views.HeaderFooterDialog.textLang": "Язык",
"PE.Views.HeaderFooterDialog.textNotTitle": "Не показывать на титульном слайде",
"PE.Views.HeaderFooterDialog.textPreview": "Просмотр",
"PE.Views.HeaderFooterDialog.textSlideNum": "Номер слайда",
"PE.Views.HeaderFooterDialog.textTitle": "Параметры верхнего и нижнего колонтитулов",
"PE.Views.HeaderFooterDialog.textUpdate": "Обновлять автоматически",
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Отмена",
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Отображать",
@ -1371,6 +1401,7 @@
"PE.Views.ShapeSettings.txtNoBorders": "Без обводки",
"PE.Views.ShapeSettings.txtPapyrus": "Папирус",
"PE.Views.ShapeSettings.txtWood": "Дерево",
"PE.Views.ShapeSettings.strShadow": "Отображать тень",
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Отмена",
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
"PE.Views.ShapeSettingsAdvanced.strColumns": "Колонки",
@ -1423,12 +1454,14 @@
"PE.Views.SignatureSettings.txtSignedInvalid": "Некоторые из цифровых подписей в презентации недействительны или их нельзя проверить. Презентация защищена от редактирования.",
"PE.Views.SlideSettings.strBackground": "Цвет фона",
"PE.Views.SlideSettings.strColor": "Цвет",
"PE.Views.SlideSettings.strDateTime": "Показывать дату и время",
"PE.Views.SlideSettings.strDelay": "Задержка",
"PE.Views.SlideSettings.strDuration": "Длит.",
"PE.Views.SlideSettings.strEffect": "Эффект",
"PE.Views.SlideSettings.strFill": "Фон",
"PE.Views.SlideSettings.strForeground": "Цвет переднего плана",
"PE.Views.SlideSettings.strPattern": "Узор",
"PE.Views.SlideSettings.strSlideNum": "Показывать номер слайда",
"PE.Views.SlideSettings.strStartOnClick": "Запускать щелчком",
"PE.Views.SlideSettings.textAdvanced": "Дополнительные параметры",
"PE.Views.SlideSettings.textApplyAll": "Применить ко всем слайдам",
@ -1528,9 +1561,7 @@
"PE.Views.Statusbar.tipFitPage": "По размеру слайда",
"PE.Views.Statusbar.tipFitWidth": "По ширине",
"PE.Views.Statusbar.tipPreview": "Начать показ слайдов",
"PE.Views.Statusbar.tipSetDocLang": "Задать язык документа",
"PE.Views.Statusbar.tipSetLang": "Выбрать язык текста",
"PE.Views.Statusbar.tipSetSpelling": "Проверка орфографии",
"PE.Views.Statusbar.tipZoomFactor": "Масштаб",
"PE.Views.Statusbar.tipZoomIn": "Увеличить",
"PE.Views.Statusbar.tipZoomOut": "Уменьшить",
@ -1641,7 +1672,7 @@
"PE.Views.Toolbar.capAddSlide": "Добавить слайд",
"PE.Views.Toolbar.capBtnComment": "Комментарий",
"PE.Views.Toolbar.capInsertChart": "Диаграмма",
"PE.Views.Toolbar.capInsertEquation": "Формула",
"PE.Views.Toolbar.capInsertEquation": "Уравнение",
"PE.Views.Toolbar.capInsertHyperlink": "Гиперссылка",
"PE.Views.Toolbar.capInsertImage": "Изображение",
"PE.Views.Toolbar.capInsertShape": "Фигура",
@ -1717,7 +1748,7 @@
"PE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание",
"PE.Views.Toolbar.tipIncPrLeft": "Увеличить отступ",
"PE.Views.Toolbar.tipInsertChart": "Вставить диаграмму",
"PE.Views.Toolbar.tipInsertEquation": "Вставить формулу",
"PE.Views.Toolbar.tipInsertEquation": "Вставить уравнение",
"PE.Views.Toolbar.tipInsertHyperlink": "Добавить гиперссылку",
"PE.Views.Toolbar.tipInsertImage": "Вставить изображение",
"PE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie",
"Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu",
"Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo.<br>Iba dvaja používatelia dokážu spolueditovať dokument súčasne.<br>Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymný",
"Common.Controllers.ExternalDiagramEditor.textClose": "Zatvoriť",
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.",
@ -190,7 +189,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.",
"PE.Controllers.Main.criticalErrorExtText": "Stlačte \"OK\" pre návrat do zoznamu dokumentov.",
"PE.Controllers.Main.criticalErrorTitle": "Chyba",
"PE.Controllers.Main.defaultTitleText": "Editor ONLYOFFICE Prezentácia",
"PE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.",
"PE.Controllers.Main.downloadTextText": "Sťahovanie prezentácie...",
"PE.Controllers.Main.downloadTitleText": "Sťahovanie prezentácie",
@ -893,7 +891,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Neexistujú žiadne šablóny",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmeniť prístupové práva",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Dátum vytvorenia",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov prezentácie",
@ -1217,9 +1214,7 @@
"PE.Views.Statusbar.tipFitPage": "Prispôsobiť snímke",
"PE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku",
"PE.Views.Statusbar.tipPreview": "Spustiť prezentáciu",
"PE.Views.Statusbar.tipSetDocLang": "Nastaviť jazyk dokumentov",
"PE.Views.Statusbar.tipSetLang": "Nastaviť jazyk textu",
"PE.Views.Statusbar.tipSetSpelling": "Kontrola pravopisu",
"PE.Views.Statusbar.tipZoomFactor": "Priblíženie",
"PE.Views.Statusbar.tipZoomIn": "Priblížiť",
"PE.Views.Statusbar.tipZoomOut": "Oddialiť",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Opozorilo",
"Common.Controllers.Chat.textEnterMessage": "Svoje sporočilo vnesite tu",
"Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonimno",
"Common.Controllers.ExternalDiagramEditor.textClose": "Zapri",
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je onemogočen, saj ga ureja drug uporabnik.",
@ -94,7 +93,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.",
"PE.Controllers.Main.criticalErrorExtText": "Pritisnite \"OK\" za vrnitev na seznam dokumentov.",
"PE.Controllers.Main.criticalErrorTitle": "Napaka",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Urejevalnik predstavitev",
"PE.Controllers.Main.downloadErrorText": "Prenos ni uspel.",
"PE.Controllers.Main.downloadTextText": "Prenašanje predstavitve...",
"PE.Controllers.Main.downloadTitleText": "Prenašanje predstavitve",
@ -327,7 +325,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Ni predlog",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Avtor",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Spremeni pravice dostopa",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum nastanka",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokacija",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osebe, ki imajo pravice",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Naslov predstavitve",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Dikkat",
"Common.Controllers.Chat.textEnterMessage": "Mesajınızı buraya giriniz",
"Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition.<br>Only two users can co-edit the document simultaneously.<br>Want more? Consider buying ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Read more</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonim",
"Common.Controllers.ExternalDiagramEditor.textClose": "Kapat",
"Common.Controllers.ExternalDiagramEditor.warningText": "Obje devre dışı bırakıldı, çünkü başka kullanıcı tarafından düzenleniyor.",
@ -109,6 +108,7 @@
"Common.Views.LanguageDialog.btnOk": "Tamam",
"Common.Views.LanguageDialog.labelSelect": "Belge dilini seçin",
"Common.Views.OpenDialog.cancelButtonText": "İptal",
"Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat",
"Common.Views.OpenDialog.okButtonText": "TAMAM",
"Common.Views.OpenDialog.txtEncoding": "Kodlama",
"Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.",
@ -125,6 +125,19 @@
"Common.Views.RenameDialog.okButtonText": "Tamam",
"Common.Views.RenameDialog.textName": "Dosya adı",
"Common.Views.RenameDialog.txtInvalidName": "Dosya adı aşağıdaki karakterlerden herhangi birini içeremez:",
"Common.Views.ReviewChanges.strFast": "Hızlı",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Mevcut değişiklikleri kabul et",
"Common.Views.ReviewChanges.txtAccept": "Onayla",
"Common.Views.ReviewChanges.txtAcceptAll": "Tüm Değişiklikleri Kabul Et",
"Common.Views.ReviewChanges.txtAcceptChanges": "Değişiklikleri Kabul Et",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Mevcut Değişiklikleri Kabul Et",
"Common.Views.ReviewChanges.txtChat": "Sohbet",
"Common.Views.ReviewChanges.txtClose": "Kapat",
"Common.Views.ReviewPopover.textAdd": "Ekle",
"Common.Views.ReviewPopover.textClose": "Kapat",
"Common.Views.SignDialog.textBold": "Kalın",
"Common.Views.SignDialog.textChange": "Değiştir",
"Common.Views.SignSettingsDialog.textInfoEmail": "E-posta",
"PE.Controllers.LeftMenu.newDocumentTitle": "İsim verilmemiş sunum",
"PE.Controllers.LeftMenu.requestEditRightsText": "Düzenleme hakları isteniyor...",
"PE.Controllers.LeftMenu.textNoTextFound": "Aradığınız veri bulunamadı. Lütfen arama seçeneklerinizi ayarlayınız.",
@ -133,7 +146,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.",
"PE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın",
"PE.Controllers.Main.criticalErrorTitle": "Hata",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Sunum Editörü",
"PE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.",
"PE.Controllers.Main.downloadTextText": "Sunum yükleniyor...",
"PE.Controllers.Main.downloadTitleText": "Sunum Yükleniyor",
@ -192,6 +204,7 @@
"PE.Controllers.Main.textAnonymous": "Anonim",
"PE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin",
"PE.Controllers.Main.textChangesSaved": "Tüm değişiklikler kaydedildi",
"PE.Controllers.Main.textClose": "Kapat",
"PE.Controllers.Main.textCloseTip": "Ucu kapamak için tıklayın",
"PE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin",
"PE.Controllers.Main.textLoadingDocument": "Sunum yükleniyor",
@ -223,6 +236,18 @@
"PE.Controllers.Main.txtPicture": "Resim",
"PE.Controllers.Main.txtRectangles": "Dikdörtgenler",
"PE.Controllers.Main.txtSeries": "Seriler",
"PE.Controllers.Main.txtShape_cloud": "Bulut",
"PE.Controllers.Main.txtShape_noSmoking": "Simge \"Yok\"",
"PE.Controllers.Main.txtShape_star10": "10-Numara Yıldız",
"PE.Controllers.Main.txtShape_star12": "12-Numara Yıldız",
"PE.Controllers.Main.txtShape_star16": "16-Numara Yıldız",
"PE.Controllers.Main.txtShape_star24": "24-Numara Yıldız",
"PE.Controllers.Main.txtShape_star32": "32-Numara Yıldız",
"PE.Controllers.Main.txtShape_star4": "4-Numara Yıldız",
"PE.Controllers.Main.txtShape_star5": "5-Numara Yıldız",
"PE.Controllers.Main.txtShape_star6": "6-Numara Yıldız",
"PE.Controllers.Main.txtShape_star7": "7-Numara Yıldız",
"PE.Controllers.Main.txtShape_star8": "8-Numara Yıldız",
"PE.Controllers.Main.txtSldLtTBlank": "Boş",
"PE.Controllers.Main.txtSldLtTChart": "Grafik",
"PE.Controllers.Main.txtSldLtTChartAndTx": "Grafik ve Metin",
@ -686,6 +711,7 @@
"PE.Views.DocumentHolder.textArrangeForward": "İleri Taşı",
"PE.Views.DocumentHolder.textArrangeFront": "Önplana Getir",
"PE.Views.DocumentHolder.textCopy": "Kopyala",
"PE.Views.DocumentHolder.textCropFill": "Doldur",
"PE.Views.DocumentHolder.textCut": "Kes",
"PE.Views.DocumentHolder.textNextPage": "Sonraki slayt",
"PE.Views.DocumentHolder.textPaste": "Yapıştır",
@ -821,9 +847,11 @@
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Oluşturulduktan sonra düzenleme sırasında stil ve format verebileceğiniz yeni boş bir sunum oluşturun. Yada şablonlardan birini seçerek belli tipte yada amaç için sunum başlatın.",
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Yeni Sunum",
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Şablon yok",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Yazar Ekle",
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Uygulama",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yayıncı",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Erişim haklarını değiştir",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Oluşturulma tarihi",
"PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Oluşturuldu",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasyon",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Hakkı olan kişiler",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Sunum Başlığı",
@ -884,6 +912,7 @@
"PE.Views.HyperlinkSettingsDialog.txtPrev": "Önceki slayt",
"PE.Views.HyperlinkSettingsDialog.txtSlide": "Slayt",
"PE.Views.ImageSettings.textAdvanced": "Gelişmiş ayarları göster",
"PE.Views.ImageSettings.textCropFill": "Doldur",
"PE.Views.ImageSettings.textEdit": "Düzenle",
"PE.Views.ImageSettings.textEditObject": "Obje Düzenle",
"PE.Views.ImageSettings.textFromFile": "Dosyadan",
@ -1140,9 +1169,7 @@
"PE.Views.Statusbar.tipFitPage": "Slaytı sığdır",
"PE.Views.Statusbar.tipFitWidth": "Genişliğe Sığdır",
"PE.Views.Statusbar.tipPreview": "Start Preview",
"PE.Views.Statusbar.tipSetDocLang": "Belge dilini belirle",
"PE.Views.Statusbar.tipSetLang": "Metin Dili Belirle",
"PE.Views.Statusbar.tipSetSpelling": "Yazım denetimi",
"PE.Views.Statusbar.tipZoomFactor": "Büyüt",
"PE.Views.Statusbar.tipZoomIn": "Yakınlaştır",
"PE.Views.Statusbar.tipZoomOut": "Uzaklaştır",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Застереження",
"Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут",
"Common.Controllers.Chat.textUserLimit": "Ви використовуюєте ONLYOFFICE Free Edition. <br> Тільки два користувачі можуть одночасно редагувати документ одночасно. <br> Хочете більше? Подумайте про придбання версії ONLYOFFICE Enterprise Edition. <br> <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\"> Докладніше </a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Aнонім",
"Common.Controllers.ExternalDiagramEditor.textClose": "Закрити",
"Common.Controllers.ExternalDiagramEditor.warningText": "Об'єкт вимкнено, оскільки його редагує інший користувач.",
@ -132,7 +131,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.",
"PE.Controllers.Main.criticalErrorExtText": "Натисніть \"OK\", щоб повернутися до списку документів.",
"PE.Controllers.Main.criticalErrorTitle": "Помилка",
"PE.Controllers.Main.defaultTitleText": "Редактор презентацій ONLYOFFICE",
"PE.Controllers.Main.downloadErrorText": "Завантаження не вдалося",
"PE.Controllers.Main.downloadTextText": "Завантаження презентації...",
"PE.Controllers.Main.downloadTitleText": "Завантаження презентації",
@ -822,7 +820,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Немає шаблонів",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата створення",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Особи, які мають права",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва презентації",
@ -1139,9 +1136,7 @@
"PE.Views.Statusbar.tipFitPage": "Пристосувати до слайду",
"PE.Views.Statusbar.tipFitWidth": "Придатний до ширини",
"PE.Views.Statusbar.tipPreview": "Розпочати слайдшоу",
"PE.Views.Statusbar.tipSetDocLang": "Виберіть мову документу",
"PE.Views.Statusbar.tipSetLang": "вибрати мову тексту",
"PE.Views.Statusbar.tipSetSpelling": "Перевірка орфографії",
"PE.Views.Statusbar.tipZoomFactor": "Збільшити",
"PE.Views.Statusbar.tipZoomIn": "Збільшити зображення",
"PE.Views.Statusbar.tipZoomOut": "Зменшити зображення",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Cảnh báo",
"Common.Controllers.Chat.textEnterMessage": "Nhập tin nhắn của bạn ở đây",
"Common.Controllers.Chat.textUserLimit": "Bạn đang sử dụng ONLYOFFICE Free Edition.<br>Chỉ hai người dùng có thể đồng thời cùng chỉnh sửa tài liệu.<br>Bạn muốn nhiều hơn? Cân nhắc mua ONLYOFFICE Enterprise Edition.<br><a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">Đọc thêm</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Nặc danh",
"Common.Controllers.ExternalDiagramEditor.textClose": "Đóng",
"Common.Controllers.ExternalDiagramEditor.warningText": "Đối tượng bị vô hiệu vì nó đang được chỉnh sửa bởi một người dùng khác.",
@ -133,7 +132,6 @@
"PE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.",
"PE.Controllers.Main.criticalErrorExtText": "Nhấp \"OK\" để trở lại danh sách tài liệu.",
"PE.Controllers.Main.criticalErrorTitle": "Lỗi",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Tải về không thành công.",
"PE.Controllers.Main.downloadTextText": "Đang tải trình chiếu...",
"PE.Controllers.Main.downloadTitleText": "Đang tải Trình chiếu",
@ -823,7 +821,6 @@
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Không có template",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Tác giả",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Thay đổi quyền truy cập",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Ngày tạo",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Địa điểm",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Những cá nhân có quyền",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tiêu đề bản trình chiếu",
@ -1140,9 +1137,7 @@
"PE.Views.Statusbar.tipFitPage": "Vừa với Slide",
"PE.Views.Statusbar.tipFitWidth": "Vừa với Chiều rộng",
"PE.Views.Statusbar.tipPreview": "Bắt đầu trình chiếu",
"PE.Views.Statusbar.tipSetDocLang": "Đặt Ngôn ngữ Tài liệu",
"PE.Views.Statusbar.tipSetLang": "Đặt ngôn ngữ văn bản",
"PE.Views.Statusbar.tipSetSpelling": "Kiểm tra chính tả",
"PE.Views.Statusbar.tipZoomFactor": "Thu phóng",
"PE.Views.Statusbar.tipZoomIn": "Phóng to",
"PE.Views.Statusbar.tipZoomOut": "Thu nhỏ",

View file

@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "在这里输入你的信息",
"Common.Controllers.Chat.textUserLimit": "您正在使用ONLYOFFICE免费版。<br>只有两个用户可以同时共同编辑文档。<br>想要更多考虑购买ONLYOFFICE企业版。<br> <a href=\"http://www.onlyoffice.com/free-edition.aspx\" target=\"_blank\">阅读更多内容</a>",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名",
"Common.Controllers.ExternalDiagramEditor.textClose": "关闭",
"Common.Controllers.ExternalDiagramEditor.warningText": "该对象被禁用,因为它被另一个用户编辑。",
@ -244,7 +243,6 @@
"PE.Controllers.Main.convertationTimeoutText": "转换超时",
"PE.Controllers.Main.criticalErrorExtText": "按“确定”返回该文件列表。",
"PE.Controllers.Main.criticalErrorTitle": "错误:",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE演示编辑器",
"PE.Controllers.Main.downloadErrorText": "下载失败",
"PE.Controllers.Main.downloadTextText": "正在下载演示文稿...",
"PE.Controllers.Main.downloadTitleText": "下载文件",
@ -1153,7 +1151,6 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "应用",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改访问权限",
"PE.Views.FileMenuPanels.DocumentInfo.txtDate": "创建日期",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "地址",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "演讲题目",
@ -1527,9 +1524,7 @@
"PE.Views.Statusbar.tipFitPage": "适合幻灯片",
"PE.Views.Statusbar.tipFitWidth": "适合宽度",
"PE.Views.Statusbar.tipPreview": "开始幻灯片放映",
"PE.Views.Statusbar.tipSetDocLang": "设置文档语言",
"PE.Views.Statusbar.tipSetLang": "设置文本语言",
"PE.Views.Statusbar.tipSetSpelling": "拼写检查",
"PE.Views.Statusbar.tipZoomFactor": "放大",
"PE.Views.Statusbar.tipZoomIn": "放大",
"PE.Views.Statusbar.tipZoomOut": "缩小",

View file

@ -184,7 +184,7 @@ define([
}
me.initNames();
me.defaultTitleText = me.defaultTitleText || '{{APP_TITLE_TEXT}}';
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');

View file

@ -25,7 +25,7 @@
</a>
</li>
<% } %>
<% if(phone) {%>
<% if(width < 390) {%>
<li>
<div id="settings-collaboration" class="item-content" style="display: none;">
<div class="item-media">

View file

@ -45,7 +45,7 @@
<i class="icon icon-search"></i>
</a>
<% } %>
<% if (!phone) { %>
<% if (width >= 390) { %>
<a href="#" id="toolbar-collaboration" class="link icon-only disabled" style="display: none;">
<i class="icon icon-collaboration"></i>
</a>

View file

@ -91,7 +91,8 @@ define([
this.layout = $('<div/>').append(this.template({
android: Common.SharedSettings.get('android'),
phone: Common.SharedSettings.get('phone'),
scope: this
scope: this,
width: $(window).width()
}));
return this;

View file

@ -91,7 +91,8 @@ define([
android : Common.SharedSettings.get('android'),
phone : Common.SharedSettings.get('phone'),
backTitle : Common.SharedSettings.get('android') ? '' : me.textBack,
scope : me
scope : me,
width : $(window).width()
}));
$('.view-main .navbar').on('addClass removeClass', _.bind(me.onDisplayMainNavbar, me));

View file

@ -23,6 +23,7 @@
"PE.Controllers.AddTable.textColumns": "Columns",
"PE.Controllers.AddTable.textRows": "Rows",
"PE.Controllers.AddTable.textTableSize": "Table Size",
"del_PE.Controllers.Collaboration.textEditUser": "Document is currently being edited by several users.",
"PE.Controllers.DocumentHolder.menuAddLink": "Add Link",
"PE.Controllers.DocumentHolder.menuCopy": "Copy",
"PE.Controllers.DocumentHolder.menuCut": "Cut",
@ -65,14 +66,14 @@
"PE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
"PE.Controllers.Main.criticalErrorExtText": "Press 'OK' to return to document list.",
"PE.Controllers.Main.criticalErrorTitle": "Error",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"del_PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
"PE.Controllers.Main.downloadErrorText": "Download failed.",
"PE.Controllers.Main.downloadTextText": "Downloading presentation...",
"PE.Controllers.Main.downloadTitleText": "Downloading Presentation",
"PE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
"PE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. You can't edit anymore.",
"PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
"PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"%1\" target=\"_blank\">here</a>",
"PE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"PE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"PE.Controllers.Main.errorDataRange": "Incorrect data range.",
@ -129,7 +130,7 @@
"PE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
"PE.Controllers.Main.textDone": "Done",
"PE.Controllers.Main.textLoadingDocument": "Loading presentation",
"PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE connection limitation",
"PE.Controllers.Main.textNoLicenseTitle": "%1 connection limitation",
"PE.Controllers.Main.textOK": "OK",
"PE.Controllers.Main.textPaidFeature": "Paid feature",
"PE.Controllers.Main.textPassword": "Password",
@ -216,7 +217,7 @@
"PE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
"PE.Controllers.Main.warnNoLicense": "This version of ONLYOFFICE Editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
"PE.Controllers.Main.warnNoLicenseUsers": "This version of ONLYOFFICE Editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
"PE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"PE.Controllers.Search.textNoTextFound": "Text not Found",
"PE.Controllers.Search.textReplaceAll": "Replace All",
@ -248,6 +249,10 @@
"PE.Views.AddLink.textNumber": "Slide Number",
"PE.Views.AddLink.textPrev": "Previous Slide",
"PE.Views.AddLink.textTip": "Screen Tip",
"del_PE.Views.Collaboration.textBack": "Back",
"del_PE.Views.Collaboration.textCollaboration": "Collaboration",
"del_PE.Views.Collaboration.textEditUsers": "Users",
"del_PE.Views.Collaboration.textСomments": "Сomments",
"PE.Views.EditChart.textAlign": "Align",
"PE.Views.EditChart.textAlignBottom": "Align Bottom",
"PE.Views.EditChart.textAlignCenter": "Align Center",
@ -445,8 +450,12 @@
"PE.Views.Settings.mniSlideWide": "Widescreen (16:9)",
"PE.Views.Settings.textAbout": "About",
"PE.Views.Settings.textAddress": "address",
"PE.Views.Settings.textApplicationSettings": "Application Settings",
"PE.Views.Settings.textAuthor": "Author",
"PE.Views.Settings.textBack": "Back",
"PE.Views.Settings.textCentimeter": "Centimeter",
"PE.Views.Settings.textCollaboration": "Collaboration",
"PE.Views.Settings.textColorSchemes": "Color Schemes",
"PE.Views.Settings.textCreateDate": "Creation date",
"PE.Views.Settings.textDone": "Done",
"PE.Views.Settings.textDownload": "Download",
@ -456,9 +465,12 @@
"PE.Views.Settings.textFind": "Find",
"PE.Views.Settings.textFindAndReplace": "Find and Replace",
"PE.Views.Settings.textHelp": "Help",
"PE.Views.Settings.textInch": "Inch",
"PE.Views.Settings.textLoading": "Loading...",
"PE.Views.Settings.textPoint": "Point",
"PE.Views.Settings.textPoweredBy": "Powered by",
"PE.Views.Settings.textPresentInfo": "Presentation Info",
"PE.Views.Settings.textPresentSettings": "Presentation Settings",
"PE.Views.Settings.textPresentSetup": "Presentation Setup",
"PE.Views.Settings.textPresentTitle": "Presentation title",
"PE.Views.Settings.textPrint": "Print",
@ -466,16 +478,9 @@
"PE.Views.Settings.textSlideSize": "Slide Size",
"PE.Views.Settings.textSpellcheck": "Spell Checking",
"PE.Views.Settings.textTel": "tel",
"PE.Views.Settings.textVersion": "Version",
"PE.Views.Settings.textApplicationSettings": "Application Settings",
"PE.Views.Settings.textUnitOfMeasurement": "Unit of Measurement",
"PE.Views.Settings.textCentimeter": "Centimeter",
"PE.Views.Settings.textPoint": "Point",
"PE.Views.Settings.textInch": "Inch",
"PE.Views.Settings.textPresentSettings": "Presentation Settings",
"PE.Views.Settings.textColorSchemes": "Color Schemes",
"PE.Views.Settings.textVersion": "Version",
"PE.Views.Settings.unknownText": "Unknown",
"PE.Views.Settings.textCollaboration": "Collaboration",
"PE.Views.Settings.textSubject": "Subject",
"PE.Views.Settings.textTitle": "Title",
"PE.Views.Settings. textComment": "Comment",
@ -487,8 +492,8 @@
"PE.Views.Settings.textUploaded": "Uploaded",
"PE.Views.Settings.textLocation": "Location",
"PE.Views.Toolbar.textBack": "Back",
"Common.Views.Collaboration.textCollaboration": "Collaboration",
"Common.Views.Collaboration.textСomments": "Сomments",
"Common.Views.Collaboration.textBack": "Back",
"Common.Views.Collaboration.textEditUsers": "Users"
"Common.Views.Collaboration.textCollaboration": "Collaboration",
"Common.Views.Collaboration.textEditUsers": "Users",
"Common.Views.Collaboration.textСomments": "Сomments"
}

View file

@ -23,6 +23,7 @@
"PE.Controllers.AddTable.textColumns": "Columnas",
"PE.Controllers.AddTable.textRows": "Filas",
"PE.Controllers.AddTable.textTableSize": "Tamaño de tabla",
"Common.Controllers.Collaboration.textEditUser": "Actualmente el documento está siendo editado por múltiples usuarios.",
"PE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ",
"PE.Controllers.DocumentHolder.menuCopy": "Copiar ",
"PE.Controllers.DocumentHolder.menuCut": "Cortar",
@ -72,7 +73,7 @@
"PE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con su Administrador del Servidor de Documentos.",
"PE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "La conexión al servidor se ha perdido. Usted ya no puede editar.",
"PE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, verifique los ajustes de conexión o contacte con su administrador.<br>Cuando pulsa el botón 'OK', se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de conexión de Servidor de Documentos <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">aquí</a>",
"PE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de la conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de conexión de Servidor de Documentos <a href=\"%1\" target=\"_blank\">aquí</a>",
"PE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión a la base de datos. Por favor, contacte con el equipo de soporte técnico.",
"PE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
"PE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
@ -129,7 +130,7 @@
"PE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.<br>Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"PE.Controllers.Main.textDone": "Listo",
"PE.Controllers.Main.textLoadingDocument": "Cargando presentación",
"PE.Controllers.Main.textNoLicenseTitle": "Limitación de conexiones a ONLYOFFICE",
"PE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones",
"PE.Controllers.Main.textOK": "OK",
"PE.Controllers.Main.textPaidFeature": "Función de pago",
"PE.Controllers.Main.textPassword": "Contraseña",
@ -216,7 +217,7 @@
"PE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.<br>Por favor, actualice su licencia y después recargue la página.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura.<br>Por favor, contacte con su administrador para recibir más información.",
"PE.Controllers.Main.warnNoLicense": "Esta versión de los Editores de ONLYOFFICE tiene ciertas limitaciones para el número de conexiones simultáneas al servidor de documentos.<br>Si se requiere más, por favor, considere comprar una licencia comercial.",
"PE.Controllers.Main.warnNoLicenseUsers": "Esta versión de Editores de ONLYOFFICE tiene ciertas limitaciones para usuarios simultáneos.<br>Si se requiere más, por favor, considere comprar una licencia comercial.",
"PE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos.<br>Si necesita más, por favor, considere comprar una licencia comercial.",
"PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
"PE.Controllers.Search.textNoTextFound": "Texto no es encontrado",
"PE.Controllers.Search.textReplaceAll": "Reemplazar todo",
@ -247,6 +248,10 @@
"PE.Views.AddLink.textNumber": "Número de diapositiva",
"PE.Views.AddLink.textPrev": "Diapositiva anterior",
"PE.Views.AddLink.textTip": "Consejo de pantalla",
"Common.Views.Collaboration.textBack": "Atrás",
"Common.Views.Collaboration.textCollaboration": "Colaboración",
"Common.Views.Collaboration.textEditUsers": "Usuarios",
"Common.Views.Collaboration.textСomments": "Comentarios",
"PE.Views.EditChart.textAlign": "Alineación",
"PE.Views.EditChart.textAlignBottom": "Alinear en la parte inferior",
"PE.Views.EditChart.textAlignCenter": "Alinear al centro",
@ -444,8 +449,12 @@
"PE.Views.Settings.mniSlideWide": "Panorámico (16:9)",
"PE.Views.Settings.textAbout": "Acerca de programa",
"PE.Views.Settings.textAddress": "dirección",
"PE.Views.Settings.textApplicationSettings": "Ajustes de aplicación",
"PE.Views.Settings.textAuthor": "Autor",
"PE.Views.Settings.textBack": "Atrás",
"PE.Views.Settings.textCentimeter": "Centímetro",
"PE.Views.Settings.textCollaboration": "Colaboración",
"PE.Views.Settings.textColorSchemes": "Esquemas de color",
"PE.Views.Settings.textCreateDate": "Fecha de creación",
"PE.Views.Settings.textDone": "Listo",
"PE.Views.Settings.textDownload": "Descargar",
@ -455,9 +464,12 @@
"PE.Views.Settings.textFind": "Buscar",
"PE.Views.Settings.textFindAndReplace": "Encontrar y reemplazar",
"PE.Views.Settings.textHelp": "Ayuda",
"PE.Views.Settings.textInch": "Pulgada",
"PE.Views.Settings.textLoading": "Cargando...",
"PE.Views.Settings.textPoint": "Punto",
"PE.Views.Settings.textPoweredBy": "Desarrollado por",
"PE.Views.Settings.textPresentInfo": "Información sobre presentación",
"PE.Views.Settings.textPresentSettings": "Ajustes de presentación",
"PE.Views.Settings.textPresentSetup": "Ajustes de presentación",
"PE.Views.Settings.textPresentTitle": "Título de presentación",
"PE.Views.Settings.textPrint": "Imprimir",
@ -465,6 +477,7 @@
"PE.Views.Settings.textSlideSize": "Tamaño de diapositiva",
"PE.Views.Settings.textSpellcheck": "Сorrección ortográfica",
"PE.Views.Settings.textTel": "Tel.",
"PE.Views.Settings.textUnitOfMeasurement": "Unidad de medida",
"PE.Views.Settings.textVersion": "Versión ",
"PE.Views.Settings.unknownText": "Desconocido",
"PE.Views.Toolbar.textBack": "Atrás"

View file

@ -23,6 +23,7 @@
"PE.Controllers.AddTable.textColumns": "Colonnes",
"PE.Controllers.AddTable.textRows": "Lignes",
"PE.Controllers.AddTable.textTableSize": "Taille du tableau",
"Common.Controllers.Collaboration.textEditUser": "Document est en cours de modification par plusieurs utilisateurs.",
"PE.Controllers.DocumentHolder.menuAddLink": "Ajouter le lien",
"PE.Controllers.DocumentHolder.menuCopy": "Copier",
"PE.Controllers.DocumentHolder.menuCut": "Couper",
@ -247,6 +248,10 @@
"PE.Views.AddLink.textNumber": "Numéro de diapositive",
"PE.Views.AddLink.textPrev": "Diapositive précédente",
"PE.Views.AddLink.textTip": "Info-bulle",
"Common.Views.Collaboration.textBack": "Retour",
"Common.Views.Collaboration.textCollaboration": "Collaboration",
"Common.Views.Collaboration.textEditUsers": "Utilisateurs",
"Common.Views.Collaboration.textСomments": "Commentaires",
"PE.Views.EditChart.textAlign": "Aligner",
"PE.Views.EditChart.textAlignBottom": "Aligner en bas",
"PE.Views.EditChart.textAlignCenter": "Aligner au centre",
@ -444,8 +449,12 @@
"PE.Views.Settings.mniSlideWide": "Écran large (16:9)",
"PE.Views.Settings.textAbout": "A propos",
"PE.Views.Settings.textAddress": "adresse",
"PE.Views.Settings.textApplicationSettings": "Paramètres de l'application",
"PE.Views.Settings.textAuthor": "Auteur",
"PE.Views.Settings.textBack": "Retour",
"PE.Views.Settings.textCentimeter": "Centimètre",
"PE.Views.Settings.textCollaboration": "Collaboration",
"PE.Views.Settings.textColorSchemes": "Jeux de couleurs",
"PE.Views.Settings.textCreateDate": "Date de création",
"PE.Views.Settings.textDone": "Terminé",
"PE.Views.Settings.textDownload": "Télécharger",
@ -455,9 +464,12 @@
"PE.Views.Settings.textFind": "Trouver",
"PE.Views.Settings.textFindAndReplace": "Rechercher et remplacer",
"PE.Views.Settings.textHelp": "Aide",
"PE.Views.Settings.textInch": "Pouce",
"PE.Views.Settings.textLoading": "Chargement en cours...",
"PE.Views.Settings.textPoint": "Point",
"PE.Views.Settings.textPoweredBy": "Motorisé par",
"PE.Views.Settings.textPresentInfo": "Infos sur présentation",
"PE.Views.Settings.textPresentSettings": "Paramètres de Présentation",
"PE.Views.Settings.textPresentSetup": "Paramètres de la présentation",
"PE.Views.Settings.textPresentTitle": "Titre de la présentation",
"PE.Views.Settings.textPrint": "Imprimer",
@ -465,6 +477,7 @@
"PE.Views.Settings.textSlideSize": "Taille de la diapositive",
"PE.Views.Settings.textSpellcheck": "Vérification de l'orthographe",
"PE.Views.Settings.textTel": "Tél.",
"PE.Views.Settings.textUnitOfMeasurement": "Unité de mesure",
"PE.Views.Settings.textVersion": "Version",
"PE.Views.Settings.unknownText": "Inconnu",
"PE.Views.Toolbar.textBack": "Retour"

View file

@ -23,6 +23,7 @@
"PE.Controllers.AddTable.textColumns": "Oszlopok",
"PE.Controllers.AddTable.textRows": "Sorok",
"PE.Controllers.AddTable.textTableSize": "Táblázat méret",
"Common.Controllers.Collaboration.textEditUser": "A dokumentumot jelenleg több felhasználó szerkeszti.",
"PE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása",
"PE.Controllers.DocumentHolder.menuCopy": "Másol",
"PE.Controllers.DocumentHolder.menuCut": "Kivág",
@ -72,7 +73,7 @@
"PE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
"PE.Controllers.Main.errorBadImageUrl": "Hibás kép URL",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "A szerver elveszítette a kapcsolatot. A további szerkesztés nem lehetséges.",
"PE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.<br>Ha az 'OK'-ra kattint letöltheti a dokumentumot.<br><br>Bővebb információk a Dokumentum Szerverhez kapcsolódásról <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">itt</a> találhat.",
"PE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.<br>Ha az 'OK'-ra kattint letöltheti a dokumentumot.<br><br>Bővebb információk a Dokumentum Szerverhez kapcsolódásról <a href=\"%1\" target=\"_blank\">itt</a> találhat.",
"PE.Controllers.Main.errorDatabaseConnection": "Külső hiba.<br>Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.",
"PE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.",
"PE.Controllers.Main.errorDataRange": "Hibás adattartomány.",
@ -129,7 +130,7 @@
"PE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.<br>Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.",
"PE.Controllers.Main.textDone": "Kész",
"PE.Controllers.Main.textLoadingDocument": "Prezentáció betöltése",
"PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE kapcsolódási limitáció",
"PE.Controllers.Main.textNoLicenseTitle": "%1 kapcsoat limit",
"PE.Controllers.Main.textOK": "OK",
"PE.Controllers.Main.textPaidFeature": "Fizetett funkció",
"PE.Controllers.Main.textPassword": "Jelszó",
@ -211,11 +212,12 @@
"PE.Controllers.Main.uploadImageSizeMessage": "Elérte a maximum kép méret limitet.",
"PE.Controllers.Main.uploadImageTextText": "Kép feltöltése...",
"PE.Controllers.Main.uploadImageTitleText": "Kép feltöltése",
"PE.Controllers.Main.waitText": "Kérjük várjon...",
"PE.Controllers.Main.warnLicenseExceeded": "A párhuzamos kapcsolódások száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.<br>Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
"PE.Controllers.Main.warnLicenseExp": "A licence lejárt.<br>Kérem frissítse a licencét, majd az oldalt.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "A párhuzamos felhasználók száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.<br>Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
"PE.Controllers.Main.warnNoLicense": "Ez a verziója az ONLYOFFICE Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamos kapcsolódások terén a dokumentum szerverhez.<br>Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.",
"PE.Controllers.Main.warnNoLicenseUsers": "Ez a verziója az ONLYOFFICE Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamosan kapcsolódott felhasználók terén.<br>Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.",
"PE.Controllers.Main.warnNoLicenseUsers": "Ez a verziója az %1 Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamosan kapcsolódott felhasználók terén.<br>Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.",
"PE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.",
"PE.Controllers.Search.textNoTextFound": "A szöveg nem található",
"PE.Controllers.Search.textReplaceAll": "Mindent cserél",
@ -246,6 +248,10 @@
"PE.Views.AddLink.textNumber": "Dia száma",
"PE.Views.AddLink.textPrev": "Korábbi dia",
"PE.Views.AddLink.textTip": "Gyorstipp",
"Common.Views.Collaboration.textBack": "Vissza",
"Common.Views.Collaboration.textCollaboration": "Együttműködés",
"Common.Views.Collaboration.textEditUsers": "Felhasználók",
"Common.Views.Collaboration.textСomments": "Hozzászólások",
"PE.Views.EditChart.textAlign": "Rendez",
"PE.Views.EditChart.textAlignBottom": "Alulra rendez",
"PE.Views.EditChart.textAlignCenter": "Középre rendez",
@ -443,8 +449,12 @@
"PE.Views.Settings.mniSlideWide": "Szélesvásznú (16:9)",
"PE.Views.Settings.textAbout": "Névjegy",
"PE.Views.Settings.textAddress": "Cím",
"PE.Views.Settings.textApplicationSettings": "Alkalmazás beállítások",
"PE.Views.Settings.textAuthor": "Szerző",
"PE.Views.Settings.textBack": "Vissza",
"PE.Views.Settings.textCentimeter": "Centiméter",
"PE.Views.Settings.textCollaboration": "Együttműködés",
"PE.Views.Settings.textColorSchemes": "Szín sémák",
"PE.Views.Settings.textCreateDate": "Létrehozás dátuma",
"PE.Views.Settings.textDone": "Kész",
"PE.Views.Settings.textDownload": "Letöltés",
@ -454,9 +464,12 @@
"PE.Views.Settings.textFind": "Keres",
"PE.Views.Settings.textFindAndReplace": "Keres és cserél",
"PE.Views.Settings.textHelp": "Súgó",
"PE.Views.Settings.textInch": "Hüvelyk",
"PE.Views.Settings.textLoading": "Betöltés...",
"PE.Views.Settings.textPoint": "Pont",
"PE.Views.Settings.textPoweredBy": "Powered by",
"PE.Views.Settings.textPresentInfo": "Prezentáció infó",
"PE.Views.Settings.textPresentSettings": "Bemutató beállításai",
"PE.Views.Settings.textPresentSetup": "Prezentáció beállítások",
"PE.Views.Settings.textPresentTitle": "Prezentáció címe",
"PE.Views.Settings.textPrint": "Nyomtat",
@ -464,6 +477,7 @@
"PE.Views.Settings.textSlideSize": "Dia mérete",
"PE.Views.Settings.textSpellcheck": "Helyesírás-ellenőrzés",
"PE.Views.Settings.textTel": "Tel.",
"PE.Views.Settings.textUnitOfMeasurement": "Mérési egység",
"PE.Views.Settings.textVersion": "Verzió",
"PE.Views.Settings.unknownText": "Ismeretlen",
"PE.Views.Toolbar.textBack": "Vissza"

View file

@ -23,6 +23,7 @@
"PE.Controllers.AddTable.textColumns": "Colonne",
"PE.Controllers.AddTable.textRows": "Righe",
"PE.Controllers.AddTable.textTableSize": "Dimensioni tabella",
"Common.Controllers.Collaboration.textEditUser": "È in corso la modifica del documento da parte di più utenti.",
"PE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento",
"PE.Controllers.DocumentHolder.menuCopy": "Copia",
"PE.Controllers.DocumentHolder.menuCut": "Taglia",
@ -129,7 +130,7 @@
"PE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
"PE.Controllers.Main.textDone": "Fatto",
"PE.Controllers.Main.textLoadingDocument": "Caricamento della presentazione",
"PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE® limite connessione",
"PE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
"PE.Controllers.Main.textOK": "OK",
"PE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
"PE.Controllers.Main.textPassword": "Password",
@ -142,7 +143,7 @@
"PE.Controllers.Main.txtArt": "Il tuo testo qui",
"PE.Controllers.Main.txtBasicShapes": "Forme di base",
"PE.Controllers.Main.txtButtons": "Bottoni",
"PE.Controllers.Main.txtCallouts": "Chiamate",
"PE.Controllers.Main.txtCallouts": "Callout",
"PE.Controllers.Main.txtCharts": "Grafici",
"PE.Controllers.Main.txtClipArt": "Clip Art",
"PE.Controllers.Main.txtDateTime": "Data e ora",
@ -247,6 +248,10 @@
"PE.Views.AddLink.textNumber": "Numero Diapositiva",
"PE.Views.AddLink.textPrev": "Diapositiva precedente",
"PE.Views.AddLink.textTip": "Suggerimento ",
"Common.Views.Collaboration.textBack": "Indietro",
"Common.Views.Collaboration.textCollaboration": "Collaborazione",
"Common.Views.Collaboration.textEditUsers": "Utenti",
"Common.Views.Collaboration.textСomments": "Сommenti",
"PE.Views.EditChart.textAlign": "Allinea",
"PE.Views.EditChart.textAlignBottom": "Allinea in basso",
"PE.Views.EditChart.textAlignCenter": "Allinea al centro",
@ -444,8 +449,12 @@
"PE.Views.Settings.mniSlideWide": "Widescreen (16:9)",
"PE.Views.Settings.textAbout": "Informazioni su",
"PE.Views.Settings.textAddress": "Indirizzo",
"PE.Views.Settings.textApplicationSettings": "Impostazioni Applicazione",
"PE.Views.Settings.textAuthor": "Autore",
"PE.Views.Settings.textBack": "Indietro",
"PE.Views.Settings.textCentimeter": "Centimetro",
"PE.Views.Settings.textCollaboration": "Collaborazione",
"PE.Views.Settings.textColorSchemes": "Schemi di colore",
"PE.Views.Settings.textCreateDate": "Data di creazione",
"PE.Views.Settings.textDone": "Fatto",
"PE.Views.Settings.textDownload": "Scarica",
@ -455,9 +464,12 @@
"PE.Views.Settings.textFind": "Trova",
"PE.Views.Settings.textFindAndReplace": "Trova e sostituisci",
"PE.Views.Settings.textHelp": "Guida",
"PE.Views.Settings.textInch": "Pollice",
"PE.Views.Settings.textLoading": "Caricamento in corso...",
"PE.Views.Settings.textPoint": "Punto",
"PE.Views.Settings.textPoweredBy": "Con tecnologia",
"PE.Views.Settings.textPresentInfo": "Informazioni Presentazione",
"PE.Views.Settings.textPresentSettings": "Impostazioni Presentazione",
"PE.Views.Settings.textPresentSetup": "Imposta Presentazione",
"PE.Views.Settings.textPresentTitle": "Titolo presentazione",
"PE.Views.Settings.textPrint": "Stampa",
@ -465,6 +477,7 @@
"PE.Views.Settings.textSlideSize": "Dimensione diapositiva",
"PE.Views.Settings.textSpellcheck": "Controllo ortografia",
"PE.Views.Settings.textTel": "Tel.",
"PE.Views.Settings.textUnitOfMeasurement": "Unità di misura",
"PE.Views.Settings.textVersion": "Versione",
"PE.Views.Settings.unknownText": "Sconosciuto",
"PE.Views.Toolbar.textBack": "Indietro"

Some files were not shown because too many files have changed in this diff Show more