diff --git a/apps/common/main/resources/less/buttons.less b/apps/common/main/resources/less/buttons.less
index 3a57c3225..e85961ac6 100644
--- a/apps/common/main/resources/less/buttons.less
+++ b/apps/common/main/resources/less/buttons.less
@@ -198,6 +198,10 @@
.btn.small;
+ &.bg-white {
+ background-color: #fff;
+ }
+
&:before,
&:after {
content: "";
diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less
index 1d6cc32fc..76220cbc1 100644
--- a/apps/common/main/resources/less/toolbar.less
+++ b/apps/common/main/resources/less/toolbar.less
@@ -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);
diff --git a/apps/documenteditor/embed/locale/hu.json b/apps/documenteditor/embed/locale/hu.json
index e20d00001..ee0f1b332 100644
--- a/apps/documenteditor/embed/locale/hu.json
+++ b/apps/documenteditor/embed/locale/hu.json
@@ -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"
}
\ No newline at end of file
diff --git a/apps/documenteditor/embed/locale/tr.json b/apps/documenteditor/embed/locale/tr.json
index 7e4f5129b..709222c29 100644
--- a/apps/documenteditor/embed/locale/tr.json
+++ b/apps/documenteditor/embed/locale/tr.json
@@ -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ş"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js
index e361dca68..fd86037ef 100644
--- a/apps/documenteditor/main/app/controller/LeftMenu.js
+++ b/apps/documenteditor/main/app/controller/LeftMenu.js
@@ -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;
diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js
index cb4904416..f1ffffc78 100644
--- a/apps/documenteditor/main/app/controller/Main.js
+++ b/apps/documenteditor/main/app/controller/Main.js
@@ -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}}');
diff --git a/apps/documenteditor/main/app/template/ShapeSettings.template b/apps/documenteditor/main/app/template/ShapeSettings.template
index e6169facb..d080de792 100644
--- a/apps/documenteditor/main/app/template/ShapeSettings.template
+++ b/apps/documenteditor/main/app/template/ShapeSettings.template
@@ -177,6 +177,16 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js
index df1935404..de4b997ba 100644
--- a/apps/documenteditor/main/app/view/DocumentHolder.js
+++ b/apps/documenteditor/main/app/view/DocumentHolder.js
@@ -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 || {}));
});
\ No newline at end of file
diff --git a/apps/documenteditor/main/app/view/NoteSettingsDialog.js b/apps/documenteditor/main/app/view/NoteSettingsDialog.js
index 9a3f841b4..e5571e63e 100644
--- a/apps/documenteditor/main/app/view/NoteSettingsDialog.js
+++ b/apps/documenteditor/main/app/view/NoteSettingsDialog.js
@@ -123,7 +123,7 @@ define([
'',
''
].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) {
diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js
index af23eb131..b856e4a8c 100644
--- a/apps/documenteditor/main/app/view/ShapeSettings.js
+++ b/apps/documenteditor/main/app/view/ShapeSettings.js
@@ -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 || {}));
});
diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js
index f6efa669c..6a1ee4caa 100644
--- a/apps/documenteditor/main/app/view/Toolbar.js
+++ b/apps/documenteditor/main/app/view/Toolbar.js
@@ -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',
diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json
index 43e375ca8..41b950d64 100644
--- a/apps/documenteditor/main/locale/bg.json
+++ b/apps/documenteditor/main/locale/bg.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Внимание",
"Common.Controllers.Chat.textEnterMessage": "Въведете съобщението си тук",
- "Common.Controllers.Chat.textUserLimit": "Използвате ONLYOFFICE Free Edition. Само двама потребители могат да редактират документа едновременно. Искате ли повече? Помислете за закупуване на ONLYOFFICE Enterprise Edition. Прочетете повече ",
"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": "Параграфи",
diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json
index bcffb8c29..41a4f5484 100644
--- a/apps/documenteditor/main/locale/cs.json
+++ b/apps/documenteditor/main/locale/cs.json
@@ -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. Pouze dva uživatelé mohou zároveň upravovat dokument. Chcete více? Zvažte zakoupení ONLYOFFICE Enterprise edice. Více informací",
"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",
diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json
index fab5f7340..5f6a5875d 100644
--- a/apps/documenteditor/main/locale/de.json
+++ b/apps/documenteditor/main/locale/de.json
@@ -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. Nur zwei Benutzer können das Dokument gleichzeitig bearbeiten. Möchten Sie mehr? Erwerben Sie kommerzielle Version von ONLYOFFICE Enterprise Edition. Lesen Sie mehr davon",
"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",
diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json
index 084bd5696..65899a20d 100644
--- a/apps/documenteditor/main/locale/en.json
+++ b/apps/documenteditor/main/locale/en.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json
index f505b86b1..2c1af89a4 100644
--- a/apps/documenteditor/main/locale/es.json
+++ b/apps/documenteditor/main/locale/es.json
@@ -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. Sólo dos usuarios pueden editar el documento simultáneamente. ¿Quiere más? Compre ONLYOFFICE Enterprise Edition. Saber más",
"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. 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. Al hacer clic en el botón \"Aceptar\", se le pedirá que descargue el documento. Encuentre más información acerca de la conexión Servidor de Documentosaquí",
+ "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. Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.
Encuentre más información acerca de conexión de Servidor de Documentos aquí",
"DE.Controllers.Main.errorDatabaseConnection": "Error externo. 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. 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. Por favor, contacte con su administrador para recibir más información.",
"DE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado. 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. 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. 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. 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. 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. 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"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json
index d4ac52217..7c5841b12 100644
--- a/apps/documenteditor/main/locale/fr.json
+++ b/apps/documenteditor/main/locale/fr.json
@@ -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. Ce ne sont que deux utilisateurs qui peuvent éditer le document simultanément. Voulez plus ? Envisagez d'acheter ONLYOFFICE Enterprise Edition. En savoir plus",
"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é"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json
index ead830265..55a3f56f1 100644
--- a/apps/documenteditor/main/locale/hu.json
+++ b/apps/documenteditor/main/locale/hu.json
@@ -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. Csak két felhasználó szerkesztheti egyszerre a dokumentumot. Többet szeretne? Fontolja meg az ONLYOFFICE Vállalati Kiadás megvásárlását Tudjon meg többet",
"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",
diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json
index 7b7e95976..819144a4d 100644
--- a/apps/documenteditor/main/locale/it.json
+++ b/apps/documenteditor/main/locale/it.json
@@ -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. Solo due utenti possono modificare il documento contemporaneamente. Si desidera di più? Considera l'acquisto di ONLYOFFICE Enterprise Edition. Ulteriori informazioni",
"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": "Paragrafo Eliminato",
"Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted",
"Common.Controllers.ReviewChanges.textParaInserted": "Paragrafo Inserito",
+ "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Spostato in basso:",
+ "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Spostato in alto:",
+ "Common.Controllers.ReviewChanges.textParaMoveTo": "Spostato:",
"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": "Impostazioni tabella modificate",
+ "Common.Controllers.ReviewChanges.textTableRowsAdd": "Righe tabella aggiunte",
+ "Common.Controllers.ReviewChanges.textTableRowsDel": "Righe tabella eliminate",
+ "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. 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. 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"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json
index 757eb077f..0387defbc 100644
--- a/apps/documenteditor/main/locale/ja.json
+++ b/apps/documenteditor/main/locale/ja.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "メッセージをここに挿入する",
- "Common.Controllers.Chat.textUserLimit": "ONLYOFFICE無料版を使用しています。 同時に2人のユーザのみは文書を編集することができます。 もっとが必要ですか。ONLYOFFICEエンタープライズ版の購入を検討してください。 Read more",
"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": "段落",
diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json
index d7441b33f..400b4e02a 100644
--- a/apps/documenteditor/main/locale/ko.json
+++ b/apps/documenteditor/main/locale/ko.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "경고",
"Common.Controllers.Chat.textEnterMessage": "여기에 메시지를 입력하십시오",
- "Common.Controllers.Chat.textUserLimit": "ONLYOFFICE 무료 버전을 사용하고 있습니다. 두 명의 사용자 만이 문서를 동시에 편집 할 수 있습니다. ONLYOFFICE Enterprise Edition 구입 고려하십시오. 자세히보기 ",
"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": "단락",
diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json
index d806618c9..546d48e5b 100644
--- a/apps/documenteditor/main/locale/lv.json
+++ b/apps/documenteditor/main/locale/lv.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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",
diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json
index 7f99a4e22..830e1bd1e 100644
--- a/apps/documenteditor/main/locale/nl.json
+++ b/apps/documenteditor/main/locale/nl.json
@@ -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. Er kunnen maar twee gebruikers tegelijk het document bewerken. U wilt meer? Overweeg ONLYOFFICE Enterprise Edition aan te schaffen. Meer informatie",
"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",
diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json
index 1b4750dcd..786d20748 100644
--- a/apps/documenteditor/main/locale/pl.json
+++ b/apps/documenteditor/main/locale/pl.json
@@ -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. Tylko dwóch użytkowników może jednocześnie edytować dokument. Chcesz więcej? Zastanów się nad zakupem ONLYOFFICE Enterprise Edition. Czytaj więcej ",
"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",
diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json
index a51fb836d..8c562559f 100644
--- a/apps/documenteditor/main/locale/pt.json
+++ b/apps/documenteditor/main/locale/pt.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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",
diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json
index 2df404243..0e7a5ed34 100644
--- a/apps/documenteditor/main/locale/ru.json
+++ b/apps/documenteditor/main/locale/ru.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Предупреждение",
"Common.Controllers.Chat.textEnterMessage": "Введите здесь своё сообщение",
- "Common.Controllers.Chat.textUserLimit": "Вы используете бесплатную версию ONLYOFFICE. Только два пользователя одновременно могут совместно редактировать документ. Требуется больше? Рекомендуем приобрести корпоративную версию ONLYOFFICE. Читать дальше",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Аноним",
"Common.Controllers.ExternalDiagramEditor.textClose": "Закрыть",
"Common.Controllers.ExternalDiagramEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.",
@@ -23,7 +22,7 @@
"Common.Controllers.ReviewChanges.textContextual": "Не добавлять интервал между абзацами одного стиля",
"Common.Controllers.ReviewChanges.textDeleted": "Удалено:",
"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": "Вы пытаетесь выполнить действие, на которое у вас нет прав. Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
- "DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
+ "DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка. Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
@@ -410,7 +409,7 @@
"DE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"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": "Превышено допустимое число одновременных подключений к серверу документов, и документ откроется только на просмотр. Обратитесь к администратору за дополнительной информацией.",
"DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии. Обновите лицензию, а затем обновите страницу.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр. Обратитесь к администратору за дополнительной информацией.",
- "DE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
- "DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
+ "DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
+ "DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"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": "Размер шрифта"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json
index 9146b753f..1ba94377d 100644
--- a/apps/documenteditor/main/locale/sk.json
+++ b/apps/documenteditor/main/locale/sk.json
@@ -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. Iba dvaja používatelia dokážu spolueditovať dokument súčasne. Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie. Read more",
"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",
diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json
index bcc45f5b9..2a214f389 100644
--- a/apps/documenteditor/main/locale/sl.json
+++ b/apps/documenteditor/main/locale/sl.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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",
diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json
index a2906a75b..6024da206 100644
--- a/apps/documenteditor/main/locale/tr.json
+++ b/apps/documenteditor/main/locale/tr.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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. 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"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json
index d09828683..06763b6a1 100644
--- a/apps/documenteditor/main/locale/uk.json
+++ b/apps/documenteditor/main/locale/uk.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Застереження",
"Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут",
- "Common.Controllers.Chat.textUserLimit": "Ви використовуюєте ONLYOFFICE Free Edition. Тільки два користувачі можуть одночасно редагувати документ одночасно. Хочете більше? Подумайте про придбання версії ONLYOFFICE Enterprise Edition. Докладніше ",
"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": "Параграфи",
diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json
index 7308324ae..1ff353aff 100644
--- a/apps/documenteditor/main/locale/vi.json
+++ b/apps/documenteditor/main/locale/vi.json
@@ -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. Chỉ hai người dùng có thể đồng thời cùng chỉnh sửa tài liệu. Bạn muốn nhiều hơn? Cân nhắc mua ONLYOFFICE Enterprise Edition. Đọc thêm",
"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",
diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json
index 4c20c9a4c..30ca0c38b 100644
--- a/apps/documenteditor/main/locale/zh.json
+++ b/apps/documenteditor/main/locale/zh.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "在这里输入你的信息",
- "Common.Controllers.Chat.textUserLimit": "您正在使用ONLYOFFICE免费版。 只有两个用户可以同时共同编辑文档。 想要更多?考虑购买ONLYOFFICE企业版。 阅读更多内容",
"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": "段落",
diff --git a/apps/documenteditor/mobile/app/controller/Main.js b/apps/documenteditor/mobile/app/controller/Main.js
index ceae90000..09a87a897 100644
--- a/apps/documenteditor/mobile/app/controller/Main.js
+++ b/apps/documenteditor/mobile/app/controller/Main.js
@@ -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([
'' +
'' +
'',
- 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({
diff --git a/apps/documenteditor/mobile/app/controller/Settings.js b/apps/documenteditor/mobile/app/controller/Settings.js
index 7ac6b5702..d122f1bf6 100644
--- a/apps/documenteditor/mobile/app/controller/Settings.js
+++ b/apps/documenteditor/mobile/app/controller/Settings.js
@@ -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. Are you sure you want to continue?'
+ warnDownloadAs : 'If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?',
+ warnDownloadAsRTF : 'If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?'
}
})(), DE.Controllers.Settings || {}))
});
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/app/template/Settings.template b/apps/documenteditor/mobile/app/template/Settings.template
index 9fd27d6be..129b99184 100644
--- a/apps/documenteditor/mobile/app/template/Settings.template
+++ b/apps/documenteditor/mobile/app/template/Settings.template
@@ -55,7 +55,7 @@
<% } %>
- <% if(phone) {%>
+ <% if(width < 360) {%>
diff --git a/apps/documenteditor/mobile/app/template/Toolbar.template b/apps/documenteditor/mobile/app/template/Toolbar.template
index 345205710..a1238415a 100644
--- a/apps/documenteditor/mobile/app/template/Toolbar.template
+++ b/apps/documenteditor/mobile/app/template/Toolbar.template
@@ -42,7 +42,7 @@
<% } %>
- <% if (!phone) { %>
+ <% if (width >= 360) { %>
diff --git a/apps/documenteditor/mobile/app/view/Settings.js b/apps/documenteditor/mobile/app/view/Settings.js
index f640eaecb..84dbd7bcb 100644
--- a/apps/documenteditor/mobile/app/view/Settings.js
+++ b/apps/documenteditor/mobile/app/view/Settings.js
@@ -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;
diff --git a/apps/documenteditor/mobile/app/view/Toolbar.js b/apps/documenteditor/mobile/app/view/Toolbar.js
index c941d416c..5bfdd6df8 100644
--- a/apps/documenteditor/mobile/app/view/Toolbar.js
+++ b/apps/documenteditor/mobile/app/view/Toolbar.js
@@ -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));
diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json
index d040e107c..42c66944f 100644
--- a/apps/documenteditor/mobile/locale/bg.json
+++ b/apps/documenteditor/mobile/locale/bg.json
@@ -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": "Изтеглянето",
diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json
index c64e57e6f..71f1a3008 100644
--- a/apps/documenteditor/mobile/locale/cs.json
+++ b/apps/documenteditor/mobile/locale/cs.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json
index d5af67d55..9a6639a3b 100644
--- a/apps/documenteditor/mobile/locale/de.json
+++ b/apps/documenteditor/mobile/locale/de.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json
index 268d3347f..3bea8bf46 100644
--- a/apps/documenteditor/mobile/locale/en.json
+++ b/apps/documenteditor/mobile/locale/en.json
@@ -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": "Deleted:",
+ "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": "Inserted:",
+ "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": "Paragraph Deleted",
+ "del_DE.Controllers.Collaboration.textParaFormatted": "Paragraph Formatted",
+ "del_DE.Controllers.Collaboration.textParaInserted": "Paragraph Inserted",
+ "del_DE.Controllers.Collaboration.textParaMoveFromDown": "Moved Down:",
+ "del_DE.Controllers.Collaboration.textParaMoveFromUp": "Moved Up:",
+ "del_DE.Controllers.Collaboration.textParaMoveTo": "Moved:",
+ "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": "Table Settings Changed",
+ "del_DE.Controllers.Collaboration.textTableRowsAdd": "Table Rows Added",
+ "del_DE.Controllers.Collaboration.textTableRowsDel": "Table Rows Deleted",
+ "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. Please contact your administrator for more information.",
"DE.Controllers.Main.warnLicenseExp": "Your license has expired. 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. 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. 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. 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. 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. 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. 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. 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",
diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json
index 2ecb227a5..ad8458828 100644
--- a/apps/documenteditor/mobile/locale/es.json
+++ b/apps/documenteditor/mobile/locale/es.json
@@ -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": "Eliminado:",
+ "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": "Insertado:",
+ "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": "Párrafo Eliminado ",
+ "Common.Controllers.Collaboration.textParaFormatted": "Párrafo formateado",
+ "Common.Controllers.Collaboration.textParaInserted": "Párrafo Insertado ",
+ "Common.Controllers.Collaboration.textParaMoveFromDown": "Bajado:",
+ "Common.Controllers.Collaboration.textParaMoveFromUp": "Subido:",
+ "Common.Controllers.Collaboration.textParaMoveTo": "Movido:",
+ "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": "Se cambió configuración de la tabla",
+ "Common.Controllers.Collaboration.textTableRowsAdd": "Se añadieron filas de la tabla",
+ "Common.Controllers.Collaboration.textTableRowsDel": "Se eliminaron filas de la tabla",
+ "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. 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. Cuando pulsa el botón 'OK', se le solicitará que descargue el documento.
Encuentre más información acerca de la conexión de Servidor de Documentos aquí",
+ "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. Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.
Encuentre más información acerca de la conexión de Servidor de Documentos aquí",
"DE.Controllers.Main.errorDatabaseConnection": "Error externo. 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. 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. 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. 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. 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. 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. 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",
diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json
index 689e3de1e..e72ec618b 100644
--- a/apps/documenteditor/mobile/locale/fr.json
+++ b/apps/documenteditor/mobile/locale/fr.json
@@ -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": "Supprimé:",
+ "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": "Inséré:",
+ "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": "Paragraphe supprimé ",
+ "Common.Controllers.Collaboration.textParaFormatted": "Paragraphe Formaté",
+ "Common.Controllers.Collaboration.textParaInserted": "Paragraphe inséré ",
+ "Common.Controllers.Collaboration.textParaMoveFromDown": "Déplacé vers le bas:",
+ "Common.Controllers.Collaboration.textParaMoveFromUp": "Déplacé vers le haut:",
+ "Common.Controllers.Collaboration.textParaMoveTo": "Déplacé:",
+ "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": "Paramètres du tableau modifiés",
+ "Common.Controllers.Collaboration.textTableRowsAdd": "Lignes de tableau ajoutées",
+ "Common.Controllers.Collaboration.textTableRowsDel": "Lignes de tableau supprimées",
+ "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",
diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json
index adba17967..2376826b7 100644
--- a/apps/documenteditor/mobile/locale/hu.json
+++ b/apps/documenteditor/mobile/locale/hu.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json
index 20640b972..10a577114 100644
--- a/apps/documenteditor/mobile/locale/it.json
+++ b/apps/documenteditor/mobile/locale/it.json
@@ -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": "Eliminato:",
+ "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": "Inserito:",
+ "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": "Paragrafo eliminato ",
+ "Common.Controllers.Collaboration.textParaFormatted": "Paragrafo formattato ",
+ "Common.Controllers.Collaboration.textParaInserted": "Paragrafo inserito ",
+ "Common.Controllers.Collaboration.textParaMoveFromDown": "Spostato in basso:",
+ "Common.Controllers.Collaboration.textParaMoveFromUp": "Spostato in alto:",
+ "Common.Controllers.Collaboration.textParaMoveTo": "Spostato:",
+ "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": "Impostazioni tabella modificate",
+ "Common.Controllers.Collaboration.textTableRowsAdd": "Righe tabella aggiunte",
+ "Common.Controllers.Collaboration.textTableRowsDel": "Righe tabella eliminate",
+ "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. 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. 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. 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. 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. 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. 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",
diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json
index 49b20f2ff..2f1bd102b 100644
--- a/apps/documenteditor/mobile/locale/ko.json
+++ b/apps/documenteditor/mobile/locale/ko.json
@@ -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": "다운로드 중",
diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json
index 34f36ae5f..6d122bbf9 100644
--- a/apps/documenteditor/mobile/locale/lv.json
+++ b/apps/documenteditor/mobile/locale/lv.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json
index cf34e4296..f0711ea76 100644
--- a/apps/documenteditor/mobile/locale/nl.json
+++ b/apps/documenteditor/mobile/locale/nl.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json
index 4b13b1b69..5325886f1 100644
--- a/apps/documenteditor/mobile/locale/pl.json
+++ b/apps/documenteditor/mobile/locale/pl.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json
index 28e296601..b4cd28d6f 100644
--- a/apps/documenteditor/mobile/locale/pt.json
+++ b/apps/documenteditor/mobile/locale/pt.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json
index 1728813b3..f8cc0ca83 100644
--- a/apps/documenteditor/mobile/locale/ru.json
+++ b/apps/documenteditor/mobile/locale/ru.json
@@ -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": "Удалено:",
+ "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": "Добавлено:",
+ "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": "Абзац удален ",
+ "Common.Controllers.Collaboration.textParaFormatted": "Абзац отформатирован",
+ "Common.Controllers.Collaboration.textParaInserted": "Абзац добавлен ",
+ "Common.Controllers.Collaboration.textParaMoveFromDown": "Перемещено вниз:",
+ "Common.Controllers.Collaboration.textParaMoveFromUp": "Перемещено вверх:",
+ "Common.Controllers.Collaboration.textParaMoveTo": "Перемещено:",
+ "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": "Изменены настройки таблицы",
+ "Common.Controllers.Collaboration.textTableRowsAdd": "Добавлены строки таблицы",
+ "Common.Controllers.Collaboration.textTableRowsDel": "Удалены строки таблицы",
+ "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": "Вы пытаетесь выполнить действие, на которое у вас нет прав. Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Подключение к серверу прервано. Редактирование недоступно.",
- "DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
+ "DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка. Ошибка подключения к базе данных. Пожалуйста, обратитесь в службу технической поддержки.",
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
@@ -120,7 +187,7 @@
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"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": "Истек срок действия лицензии. Обновите лицензию, а затем обновите страницу.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр. Обратитесь к администратору за дополнительной информацией.",
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
- "DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
+ "DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"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": "Неизвестно",
diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json
index a57efcb96..ea7c8892b 100644
--- a/apps/documenteditor/mobile/locale/sk.json
+++ b/apps/documenteditor/mobile/locale/sk.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json
index 4acd5b213..79f71c133 100644
--- a/apps/documenteditor/mobile/locale/tr.json
+++ b/apps/documenteditor/mobile/locale/tr.json
@@ -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",
diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json
index 9128fb4d2..a5cb1c52a 100644
--- a/apps/documenteditor/mobile/locale/uk.json
+++ b/apps/documenteditor/mobile/locale/uk.json
@@ -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": "Завантаження",
diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json
index 3a3cf3e4d..fbe9b851d 100644
--- a/apps/documenteditor/mobile/locale/vi.json
+++ b/apps/documenteditor/mobile/locale/vi.json
@@ -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ề",
diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json
index 8675162ea..5eea8d2ce 100644
--- a/apps/documenteditor/mobile/locale/zh.json
+++ b/apps/documenteditor/mobile/locale/zh.json
@@ -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": "下载中",
diff --git a/apps/documenteditor/mobile/resources/css/app-ios.css b/apps/documenteditor/mobile/resources/css/app-ios.css
index 54cf0486a..36046fb2f 100644
--- a/apps/documenteditor/mobile/resources/css/app-ios.css
+++ b/apps/documenteditor/mobile/resources/css/app-ios.css
@@ -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;
diff --git a/apps/documenteditor/mobile/resources/css/app-material.css b/apps/documenteditor/mobile/resources/css/app-material.css
index 5cb814b39..c6c7d000c 100644
--- a/apps/documenteditor/mobile/resources/css/app-material.css
+++ b/apps/documenteditor/mobile/resources/css/app-material.css
@@ -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;
diff --git a/apps/documenteditor/mobile/resources/less/ios/_icons.less b/apps/documenteditor/mobile/resources/less/ios/_icons.less
index 1d044a02a..b5c848064 100644
--- a/apps/documenteditor/mobile/resources/less/ios/_icons.less
+++ b/apps/documenteditor/mobile/resources/less/ios/_icons.less
@@ -381,9 +381,9 @@ i.icon {
.encoded-svg-background('');
}
&.icon-format-txt {
- width: 30px;
- height: 30px;
- .encoded-svg-background('');
+ width: 24px;
+ height: 24px;
+ .encoded-svg-background('');
}
&.icon-format-pdf {
width: 30px;
@@ -410,6 +410,11 @@ i.icon {
height: 30px;
.encoded-svg-background('');
}
+ &.icon-format-rtf {
+ width: 24px;
+ height: 24px;
+ .encoded-svg-background('');
+ }
// Collaboration
&.icon-collaboration {
width: 24px;
diff --git a/apps/documenteditor/mobile/resources/less/material/_icons.less b/apps/documenteditor/mobile/resources/less/material/_icons.less
index 0bea41658..681503ddb 100644
--- a/apps/documenteditor/mobile/resources/less/material/_icons.less
+++ b/apps/documenteditor/mobile/resources/less/material/_icons.less
@@ -308,9 +308,9 @@ i.icon {
.encoded-svg-background('');
}
&.icon-format-txt {
- width: 30px;
- height: 30px;
- .encoded-svg-background('');
+ width: 24px;
+ height: 24px;
+ .encoded-svg-background('');
}
&.icon-format-pdf {
width: 30px;
@@ -337,6 +337,12 @@ i.icon {
height: 30px;
.encoded-svg-background('');
}
+ &.icon-format-rtf {
+ width: 24px;
+ height: 24px;
+ .encoded-svg-background('');
+ }
+
// Collaboration
&.icon-collaboration {
width: 24px;
diff --git a/apps/presentationeditor/embed/locale/hu.json b/apps/presentationeditor/embed/locale/hu.json
index c178d8383..be9e100fe 100644
--- a/apps/presentationeditor/embed/locale/hu.json
+++ b/apps/presentationeditor/embed/locale/hu.json
@@ -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"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/embed/locale/tr.json b/apps/presentationeditor/embed/locale/tr.json
index 79c1d1686..98287a3ff 100644
--- a/apps/presentationeditor/embed/locale/tr.json
+++ b/apps/presentationeditor/embed/locale/tr.json
@@ -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ş"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js
index eadff86e7..41cba028d 100644
--- a/apps/presentationeditor/main/app/controller/Main.js
+++ b/apps/presentationeditor/main/app/controller/Main.js
@@ -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}}');
diff --git a/apps/presentationeditor/main/app/template/ShapeSettings.template b/apps/presentationeditor/main/app/template/ShapeSettings.template
index f97d33753..85bab47b8 100644
--- a/apps/presentationeditor/main/app/template/ShapeSettings.template
+++ b/apps/presentationeditor/main/app/template/ShapeSettings.template
@@ -159,6 +159,16 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js
index ce8338258..a553691a4 100644
--- a/apps/presentationeditor/main/app/view/DocumentHolder.js
+++ b/apps/presentationeditor/main/app/view/DocumentHolder.js
@@ -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 || {}));
});
\ No newline at end of file
diff --git a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js
index 3ec376033..1f41f68c4 100644
--- a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js
+++ b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js
@@ -75,7 +75,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
'',
''
].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;
},
diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js
index c58ab3773..29335a3dc 100644
--- a/apps/presentationeditor/main/app/view/ShapeSettings.js
+++ b/apps/presentationeditor/main/app/view/ShapeSettings.js
@@ -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 || {}));
});
diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js
index cd366f3aa..b0e1a4f69 100644
--- a/apps/presentationeditor/main/app/view/Toolbar.js
+++ b/apps/presentationeditor/main/app/view/Toolbar.js
@@ -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',
diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json
index ef8922f07..b49cb725a 100644
--- a/apps/presentationeditor/main/locale/bg.json
+++ b/apps/presentationeditor/main/locale/bg.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Внимание",
"Common.Controllers.Chat.textEnterMessage": "Въведете съобщението си тук",
- "Common.Controllers.Chat.textUserLimit": "Използвате ONLYOFFICE Free Edition. Само двама потребители могат да редактират документа едновременно. Искате ли повече? Помислете за закупуване на ONLYOFFICE Enterprise Edition. Прочетете повече ",
"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": "Отдалечавам",
diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json
index 33f5f5593..274d64279 100644
--- a/apps/presentationeditor/main/locale/cs.json
+++ b/apps/presentationeditor/main/locale/cs.json
@@ -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. Pouze dva uživatelé mohou zároveň upravovat dokument. Chcete více? Zvažte zakoupení ONLYOFFICE Enterprise edice. Více informací",
"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",
diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json
index d3a0eadb3..80f1b1c78 100644
--- a/apps/presentationeditor/main/locale/de.json
+++ b/apps/presentationeditor/main/locale/de.json
@@ -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. Nur zwei Benutzer können das Dokument gleichzeitig bearbeiten. Möchten Sie mehr? Erwerben Sie kommerzielle Version von ONLYOFFICE Enterprise Edition. Lesen Sie mehr davon",
"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",
diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json
index 893cae7f1..5251c44b1 100644
--- a/apps/presentationeditor/main/locale/en.json
+++ b/apps/presentationeditor/main/locale/en.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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 can’t use a date format in a different language than the slide master. 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"
+
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json
index 7dd4842a1..c3f82212a 100644
--- a/apps/presentationeditor/main/locale/es.json
+++ b/apps/presentationeditor/main/locale/es.json
@@ -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. Sólo dos usuarios pueden editar el documento simultáneamente. ¿Quiere más? Compre ONLYOFFICE Enterprise Edition. Saber más",
"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. 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. Al hacer clic en el botón \"Aceptar\", se le pedirá que descargue el documento. Encuentre más información acerca de la conexión con Servidor de Documentosaquí",
+ "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. Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.
Encuentre más información acerca de conexión de Servidor de Documentos aquí",
"PE.Controllers.Main.errorDatabaseConnection": "Error externo. 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. 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. 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. 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. 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. 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. 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. 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. ¿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. 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",
diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json
index 595cad745..48df16012 100644
--- a/apps/presentationeditor/main/locale/fr.json
+++ b/apps/presentationeditor/main/locale/fr.json
@@ -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. Ce ne sont que deux utilisateurs qui peuvent éditer le document simultanément. Voulez plus ? Envisagez d'acheter ONLYOFFICE Enterprise Edition. En savoir plus",
"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 l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, 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",
diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json
index 1da381194..2cf2e8325 100644
--- a/apps/presentationeditor/main/locale/hu.json
+++ b/apps/presentationeditor/main/locale/hu.json
@@ -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. Csak két felhasználó szerkesztheti egyszerre a dokumentumot. Többet szeretne? Fontolja meg az ONLYOFFICE Vállalati Kiadás megvásárlását Tudjon meg többet",
"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",
diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json
index dcdaaa931..476a7f1ca 100644
--- a/apps/presentationeditor/main/locale/it.json
+++ b/apps/presentationeditor/main/locale/it.json
@@ -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. Solo due utenti possono modificare il documento contemporaneamente. Si desidera di più? Considera l'acquisto di ONLYOFFICE Enterprise Edition. Ulteriori informazioni",
"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. 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. Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.
Per maggiori dettagli sulla connessione al Document Server clicca qui",
+ "PE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore. Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.
Per maggiori dettagli sulla connessione al Document Server here",
"PE.Controllers.Main.errorDatabaseConnection": "Errore esterno. 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. 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. 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. 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. 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. 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. 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. Lo stile di testo sarà visualizzato usando uno dei caratteri di sistema, il carattere salvato sarà usato quando accessibile. 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. 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",
diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json
index f3bfe79de..8dfc16a5e 100644
--- a/apps/presentationeditor/main/locale/ja.json
+++ b/apps/presentationeditor/main/locale/ja.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": " 警告",
"Common.Controllers.Chat.textEnterMessage": "ここでメッセージを挿入してください。",
- "Common.Controllers.Chat.textUserLimit": "ONLYOFFICE無料版を使用しています。 同時に2人のユーザのみは文書を編集することができます。 もっとが必要ですか。ONLYOFFICEエンタープライズ版の購入を検討してください。 Read more",
"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": "プレゼンテーションのタイトル",
diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json
index 3893a8961..fd0181d5f 100644
--- a/apps/presentationeditor/main/locale/ko.json
+++ b/apps/presentationeditor/main/locale/ko.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "경고",
"Common.Controllers.Chat.textEnterMessage": "여기에 메시지를 입력하십시오",
- "Common.Controllers.Chat.textUserLimit": "ONLYOFFICE 무료 버전을 사용하고 있습니다. 두 명의 사용자 만이 문서를 동시에 편집 할 수 있습니다. ONLYOFFICE Enterprise Edition 구입 고려하십시오. 자세히보기 ",
"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": "축소",
diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json
index 7e1eb99bd..095865db0 100644
--- a/apps/presentationeditor/main/locale/lv.json
+++ b/apps/presentationeditor/main/locale/lv.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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",
diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json
index 837ddccc5..391635b8f 100644
--- a/apps/presentationeditor/main/locale/nl.json
+++ b/apps/presentationeditor/main/locale/nl.json
@@ -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. Er kunnen maar twee gebruikers tegelijk het document bewerken. U wilt meer? Overweeg ONLYOFFICE Enterprise Edition aan te schaffen. Meer informatie",
"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",
diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json
index 778bd6287..18542e458 100644
--- a/apps/presentationeditor/main/locale/pl.json
+++ b/apps/presentationeditor/main/locale/pl.json
@@ -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. Tylko dwóch użytkowników może jednocześnie edytować dokument. Chcesz więcej? Zastanów się nad zakupem ONLYOFFICE Enterprise Edition. Czytaj więcej ",
"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",
diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json
index 9485398bd..deca19b47 100644
--- a/apps/presentationeditor/main/locale/pt.json
+++ b/apps/presentationeditor/main/locale/pt.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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",
diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json
index a0c0e1b76..61bac2210 100644
--- a/apps/presentationeditor/main/locale/ru.json
+++ b/apps/presentationeditor/main/locale/ru.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Предупреждение",
"Common.Controllers.Chat.textEnterMessage": "Введите здесь своё сообщение",
- "Common.Controllers.Chat.textUserLimit": "Вы используете бесплатную версию ONLYOFFICE. Только два пользователя одновременно могут совместно редактировать документ. Требуется больше? Рекомендуем приобрести корпоративную версию ONLYOFFICE. Читать дальше",
"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": "Вы пытаетесь выполнить действие, на которое у вас нет прав. Пожалуйста, обратитесь к администратору Сервера документов.",
"PE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
- "PE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
+ "PE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
"PE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка. Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
"PE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
"PE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
@@ -315,7 +314,7 @@
"PE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
"PE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"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": "Истек срок действия лицензии. Обновите лицензию, а затем обновите страницу.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр. Обратитесь к администратору за дополнительной информацией.",
"PE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
- "PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
+ "PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"PE.Controllers.Statusbar.zoomText": "Масштаб {0}%",
"PE.Controllers.Toolbar.confirmAddFontName": "Шрифт, который вы хотите сохранить, недоступен на этом устройстве. Стиль текста будет отображаться с помощью одного из системных шрифтов. Сохраненный шрифт будет использоваться, когда он станет доступен. Вы хотите продолжить?",
@@ -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": "Формат даты должен использовать тот же язык, что и образец слайдов. Чтобы изменить образец, вместо кнопки 'Применить' нажмите кнопку 'Применить ко всем'",
+ "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": "Вставить автофигуру",
diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json
index c667cdf2a..b728dc62b 100644
--- a/apps/presentationeditor/main/locale/sk.json
+++ b/apps/presentationeditor/main/locale/sk.json
@@ -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. Iba dvaja používatelia dokážu spolueditovať dokument súčasne. Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie. Read more",
"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ť",
diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json
index a8e57af30..c791b40d0 100644
--- a/apps/presentationeditor/main/locale/sl.json
+++ b/apps/presentationeditor/main/locale/sl.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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",
diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json
index a49a113bc..1a8414a64 100644
--- a/apps/presentationeditor/main/locale/tr.json
+++ b/apps/presentationeditor/main/locale/tr.json
@@ -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. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"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",
diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json
index 947ca1671..8ff130ec3 100644
--- a/apps/presentationeditor/main/locale/uk.json
+++ b/apps/presentationeditor/main/locale/uk.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Застереження",
"Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут",
- "Common.Controllers.Chat.textUserLimit": "Ви використовуюєте ONLYOFFICE Free Edition. Тільки два користувачі можуть одночасно редагувати документ одночасно. Хочете більше? Подумайте про придбання версії ONLYOFFICE Enterprise Edition. Докладніше ",
"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": "Зменшити зображення",
diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json
index d4cd2a0f6..a704956ec 100644
--- a/apps/presentationeditor/main/locale/vi.json
+++ b/apps/presentationeditor/main/locale/vi.json
@@ -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. Chỉ hai người dùng có thể đồng thời cùng chỉnh sửa tài liệu. Bạn muốn nhiều hơn? Cân nhắc mua ONLYOFFICE Enterprise Edition. Đọc thêm",
"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ỏ",
diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json
index 04dc07fb5..76b36854e 100644
--- a/apps/presentationeditor/main/locale/zh.json
+++ b/apps/presentationeditor/main/locale/zh.json
@@ -1,7 +1,6 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "在这里输入你的信息",
- "Common.Controllers.Chat.textUserLimit": "您正在使用ONLYOFFICE免费版。 只有两个用户可以同时共同编辑文档。 想要更多?考虑购买ONLYOFFICE企业版。 阅读更多内容",
"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": "缩小",
diff --git a/apps/presentationeditor/mobile/app/controller/Main.js b/apps/presentationeditor/mobile/app/controller/Main.js
index 6be231f16..cafc6e266 100644
--- a/apps/presentationeditor/mobile/app/controller/Main.js
+++ b/apps/presentationeditor/mobile/app/controller/Main.js
@@ -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}}');
diff --git a/apps/presentationeditor/mobile/app/template/Settings.template b/apps/presentationeditor/mobile/app/template/Settings.template
index eeb815f61..bcb316596 100644
--- a/apps/presentationeditor/mobile/app/template/Settings.template
+++ b/apps/presentationeditor/mobile/app/template/Settings.template
@@ -25,7 +25,7 @@
<% } %>
- <% if(phone) {%>
+ <% if(width < 390) {%>
diff --git a/apps/presentationeditor/mobile/app/template/Toolbar.template b/apps/presentationeditor/mobile/app/template/Toolbar.template
index 4df183978..c222b4186 100644
--- a/apps/presentationeditor/mobile/app/template/Toolbar.template
+++ b/apps/presentationeditor/mobile/app/template/Toolbar.template
@@ -45,7 +45,7 @@
<% } %>
- <% if (!phone) { %>
+ <% if (width >= 390) { %>
diff --git a/apps/presentationeditor/mobile/app/view/Settings.js b/apps/presentationeditor/mobile/app/view/Settings.js
index 8663b54b5..11b654716 100644
--- a/apps/presentationeditor/mobile/app/view/Settings.js
+++ b/apps/presentationeditor/mobile/app/view/Settings.js
@@ -91,7 +91,8 @@ define([
this.layout = $('').append(this.template({
android: Common.SharedSettings.get('android'),
phone: Common.SharedSettings.get('phone'),
- scope: this
+ scope: this,
+ width: $(window).width()
}));
return this;
diff --git a/apps/presentationeditor/mobile/app/view/Toolbar.js b/apps/presentationeditor/mobile/app/view/Toolbar.js
index 6e7c74ded..641b593a8 100644
--- a/apps/presentationeditor/mobile/app/view/Toolbar.js
+++ b/apps/presentationeditor/mobile/app/view/Toolbar.js
@@ -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));
diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json
index b3b914dde..7a1efc21a 100644
--- a/apps/presentationeditor/mobile/locale/en.json
+++ b/apps/presentationeditor/mobile/locale/en.json
@@ -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. 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. When you click the 'OK' button, you will be prompted to download the document.
Find more information about connecting Document Server here",
+ "PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator. When you click the 'OK' button, you will be prompted to download the document.
Find more information about connecting Document Server here",
"PE.Controllers.Main.errorDatabaseConnection": "External error. 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. 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. 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. 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. 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. 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. 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"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json
index 8721734d4..665348324 100644
--- a/apps/presentationeditor/mobile/locale/es.json
+++ b/apps/presentationeditor/mobile/locale/es.json
@@ -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. 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. Cuando pulsa el botón 'OK', se le solicitará que descargue el documento.
Encuentre más información acerca de conexión de Servidor de Documentos aquí",
+ "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. Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.
Encuentre más información acerca de conexión de Servidor de Documentos aquí",
"PE.Controllers.Main.errorDatabaseConnection": "Error externo. 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. 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. 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. 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. 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. 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. 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"
diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json
index 31e6fdc37..c677685a8 100644
--- a/apps/presentationeditor/mobile/locale/fr.json
+++ b/apps/presentationeditor/mobile/locale/fr.json
@@ -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"
diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json
index a2cf4424b..d7b66b433 100644
--- a/apps/presentationeditor/mobile/locale/hu.json
+++ b/apps/presentationeditor/mobile/locale/hu.json
@@ -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. 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. Ha az 'OK'-ra kattint letöltheti a dokumentumot.
Bővebb információk a Dokumentum Szerverhez kapcsolódásról itt 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. Ha az 'OK'-ra kattint letöltheti a dokumentumot.
Bővebb információk a Dokumentum Szerverhez kapcsolódásról itt találhat.",
"PE.Controllers.Main.errorDatabaseConnection": "Külső hiba. 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. 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. Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
"PE.Controllers.Main.warnLicenseExp": "A licence lejárt. 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. 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. 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. 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. 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"
diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json
index 1becf51a4..eeaf759c4 100644
--- a/apps/presentationeditor/mobile/locale/it.json
+++ b/apps/presentationeditor/mobile/locale/it.json
@@ -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. 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"
diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json
index 1cd1dc787..0dda1b2d9 100644
--- a/apps/presentationeditor/mobile/locale/ru.json
+++ b/apps/presentationeditor/mobile/locale/ru.json
@@ -23,6 +23,7 @@
"PE.Controllers.AddTable.textColumns": "Столбцы",
"PE.Controllers.AddTable.textRows": "Строки",
"PE.Controllers.AddTable.textTableSize": "Размер таблицы",
+ "Common.Controllers.Collaboration.textEditUser": "Документ редактируется несколькими пользователями.",
"PE.Controllers.DocumentHolder.menuAddLink": "Добавить ссылку",
"PE.Controllers.DocumentHolder.menuCopy": "Копировать",
"PE.Controllers.DocumentHolder.menuCut": "Вырезать",
@@ -72,7 +73,7 @@
"PE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав. Пожалуйста, обратитесь к администратору Сервера документов.",
"PE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Подключение к серверу прервано. Редактирование недоступно.",
- "PE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
+ "PE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
"PE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка. Ошибка подключения к базе данных. Пожалуйста, обратитесь в службу технической поддержки.",
"PE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
"PE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
@@ -129,7 +130,7 @@
"PE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"PE.Controllers.Main.textDone": "Готово",
"PE.Controllers.Main.textLoadingDocument": "Загрузка презентации",
- "PE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений ONLYOFFICE",
+ "PE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
"PE.Controllers.Main.textOK": "OK",
"PE.Controllers.Main.textPaidFeature": "Платная функция",
"PE.Controllers.Main.textPassword": "Пароль",
@@ -216,7 +217,7 @@
"PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии. Обновите лицензию, а затем обновите страницу.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр. Обратитесь к администратору за дополнительной информацией.",
"PE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
- "PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
+ "PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"PE.Controllers.Search.textNoTextFound": "Текст не найден",
"PE.Controllers.Search.textReplaceAll": "Заменить все",
@@ -247,6 +248,10 @@
"PE.Views.AddLink.textNumber": "Номер слайда",
"PE.Views.AddLink.textPrev": "Предыдущий слайд",
"PE.Views.AddLink.textTip": "Подсказка",
+ "Common.Views.Collaboration.textBack": "Назад",
+ "Common.Views.Collaboration.textCollaboration": "Совместная работа",
+ "Common.Views.Collaboration.textEditUsers": "Пользователи",
+ "Common.Views.Collaboration.textСomments": "Комментарии",
"PE.Views.EditChart.textAlign": "Выравнивание",
"PE.Views.EditChart.textAlignBottom": "По нижнему краю",
"PE.Views.EditChart.textAlignCenter": "По центру",
@@ -444,8 +449,12 @@
"PE.Views.Settings.mniSlideWide": "Широкоэкранный (16:9)",
"PE.Views.Settings.textAbout": "О программе",
"PE.Views.Settings.textAddress": "адрес",
+ "PE.Views.Settings.textApplicationSettings": "Настройки приложения",
"PE.Views.Settings.textAuthor": "Автор",
"PE.Views.Settings.textBack": "Назад",
+ "PE.Views.Settings.textCentimeter": "Сантиметр",
+ "PE.Views.Settings.textCollaboration": "Совместная работа",
+ "PE.Views.Settings.textColorSchemes": "Цветовые схемы",
"PE.Views.Settings.textCreateDate": "Дата создания",
"PE.Views.Settings.textDone": "Готово",
"PE.Views.Settings.textDownload": "Скачать",
@@ -455,9 +464,12 @@
"PE.Views.Settings.textFind": "Поиск",
"PE.Views.Settings.textFindAndReplace": "Поиск и замена",
"PE.Views.Settings.textHelp": "Справка",
+ "PE.Views.Settings.textInch": "Дюйм",
"PE.Views.Settings.textLoading": "Загрузка...",
+ "PE.Views.Settings.textPoint": "Пункт",
"PE.Views.Settings.textPoweredBy": "Разработано",
"PE.Views.Settings.textPresentInfo": "Информация о презентации",
+ "PE.Views.Settings.textPresentSettings": "Настройки презентации",
"PE.Views.Settings.textPresentSetup": "Настройка презентации",
"PE.Views.Settings.textPresentTitle": "Название презентации",
"PE.Views.Settings.textPrint": "Печать",
@@ -465,6 +477,7 @@
"PE.Views.Settings.textSlideSize": "Размер слайда",
"PE.Views.Settings.textSpellcheck": "Проверка орфографии",
"PE.Views.Settings.textTel": "Телефон",
+ "PE.Views.Settings.textUnitOfMeasurement": "Единица измерения",
"PE.Views.Settings.textVersion": "Версия",
"PE.Views.Settings.unknownText": "Неизвестно",
"PE.Views.Toolbar.textBack": "Назад"
diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json
index 1f7f51559..1a0900142 100644
--- a/apps/presentationeditor/mobile/locale/tr.json
+++ b/apps/presentationeditor/mobile/locale/tr.json
@@ -233,6 +233,7 @@
"PE.Views.AddLink.textNumber": "Slayt Numarası",
"PE.Views.AddLink.textPrev": "Önceki slayt",
"PE.Views.AddLink.textTip": "Ekran İpucu",
+ "Common.Views.Collaboration.textBack": "Geri",
"PE.Views.EditChart.textAlign": "Hizala",
"PE.Views.EditChart.textAlignBottom": "Alta Hizala",
"PE.Views.EditChart.textAlignCenter": "Ortaya Hizala",
@@ -402,6 +403,7 @@
"PE.Views.EditText.textBack": "Geri",
"PE.Views.EditText.textBefore": "Önce",
"PE.Views.EditText.textBullets": "İmler",
+ "PE.Views.EditText.textCharacterBold": "B",
"PE.Views.EditText.textDblStrikethrough": "Üstü çift çizili",
"PE.Views.EditText.textDblSuperscript": "Üstsimge",
"PE.Views.EditText.textFontColor": "Yazı Tipi Rengi",
diff --git a/apps/spreadsheeteditor/embed/locale/hu.json b/apps/spreadsheeteditor/embed/locale/hu.json
index 43fd34d68..32809bdc7 100644
--- a/apps/spreadsheeteditor/embed/locale/hu.json
+++ b/apps/spreadsheeteditor/embed/locale/hu.json
@@ -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",
+ "SSE.ApplicationController.convertationErrorText": "Az átalakítás nem sikerült.",
"SSE.ApplicationController.convertationTimeoutText": "Időtúllépés az átalakítás során.",
"SSE.ApplicationController.criticalErrorTitle": "Hiba",
"SSE.ApplicationController.downloadErrorText": "Sikertelen letöltés.",
@@ -12,8 +16,13 @@
"SSE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés",
"SSE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.",
"SSE.ApplicationController.textLoadingDocument": "Munkafüzet betöltése",
+ "SSE.ApplicationController.textOf": "of",
"SSE.ApplicationController.txtClose": "Bezár",
"SSE.ApplicationController.unknownErrorText": "Ismeretlen hiba.",
"SSE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.",
- "SSE.ApplicationView.txtDownload": "Letöltés"
+ "SSE.ApplicationController.waitText": "Kérjük várjon...",
+ "SSE.ApplicationView.txtDownload": "Letöltés",
+ "SSE.ApplicationView.txtEmbed": "Beágyaz",
+ "SSE.ApplicationView.txtFullScreen": "Teljes képernyő",
+ "SSE.ApplicationView.txtShare": "Megosztás"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/embed/locale/tr.json b/apps/spreadsheeteditor/embed/locale/tr.json
index ba9ae7e81..e48cbdeab 100644
--- a/apps/spreadsheeteditor/embed/locale/tr.json
+++ b/apps/spreadsheeteditor/embed/locale/tr.json
@@ -1,5 +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",
"SSE.ApplicationController.convertationErrorText": "Değişim başarısız oldu.",
"SSE.ApplicationController.convertationTimeoutText": "Değişim süresi aşıldı.",
@@ -11,11 +14,15 @@
"SSE.ApplicationController.errorFilePassProtect": "Döküman şifre korumalı ve açılamadı",
"SSE.ApplicationController.errorUserDrop": "Belgeye şu an erişilemiyor.",
"SSE.ApplicationController.notcriticalErrorTitle": "Uyarı",
+ "SSE.ApplicationController.scriptLoadError": "Bağlantı çok yavaş, bileşenlerin bazıları yüklenemedi. Lütfen sayfayı yenileyin.",
"SSE.ApplicationController.textLoadingDocument": "Spreadsheet yükleniyor",
"SSE.ApplicationController.textOf": "'in",
"SSE.ApplicationController.txtClose": "Kapat",
"SSE.ApplicationController.unknownErrorText": "Bilinmeyen hata.",
"SSE.ApplicationController.unsupportedBrowserErrorText": "Tarayıcınız desteklenmiyor.",
+ "SSE.ApplicationController.waitText": "Lütfen bekleyin...",
"SSE.ApplicationView.txtDownload": "İndir",
+ "SSE.ApplicationView.txtEmbed": "Gömülü",
+ "SSE.ApplicationView.txtFullScreen": "Tam Ekran",
"SSE.ApplicationView.txtShare": "Paylaş"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/app.js b/apps/spreadsheeteditor/main/app.js
index 18e1393c6..f68d2b4f7 100644
--- a/apps/spreadsheeteditor/main/app.js
+++ b/apps/spreadsheeteditor/main/app.js
@@ -152,6 +152,7 @@ require([
'Print',
'Toolbar',
'Statusbar',
+ 'Spellcheck',
'RightMenu',
'LeftMenu',
'Main',
@@ -174,6 +175,7 @@ require([
'spreadsheeteditor/main/app/controller/CellEditor',
'spreadsheeteditor/main/app/controller/Toolbar',
'spreadsheeteditor/main/app/controller/Statusbar',
+ 'spreadsheeteditor/main/app/controller/Spellcheck',
'spreadsheeteditor/main/app/controller/RightMenu',
'spreadsheeteditor/main/app/controller/LeftMenu',
'spreadsheeteditor/main/app/controller/Main',
diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js
index 3f967f4ad..d1875df19 100644
--- a/apps/spreadsheeteditor/main/app/controller/DataTab.js
+++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js
@@ -78,6 +78,7 @@ define([
if (api) {
this.api = api;
this.api.asc_registerCallback('asc_onSelectionChanged', _.bind(this.onSelectionChanged, this));
+ this.api.asc_registerCallback('asc_onWorksheetLocked', _.bind(this.onWorksheetLocked, this));
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this));
Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this));
}
@@ -192,6 +193,12 @@ define([
this.api.asc_changeGroupDetails(false);
},
+ onWorksheetLocked: function(index,locked) {
+ if (index == this.api.asc_getActiveWorksheetIndex()) {
+ Common.Utils.lockControls(SSE.enumLock.sheetLock, locked, {array: [this.view.btnGroup, this.view.btnUngroup]});
+ }
+ },
+
textWizard: 'Text to Columns Wizard'
}, SSE.Controllers.DataTab || {}));
diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js
index 4667170d1..340faedd8 100644
--- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js
+++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js
@@ -202,6 +202,12 @@ define([
this.leftMenu.btnChat.hide();
this.leftMenu.btnComments.hide();
}
+
+ if (this.mode.isEdit) {
+ this.leftMenu.btnSpellcheck.show();
+ this.leftMenu.setOptionsPanel('spellcheck', this.getApplication().getController('Spellcheck').getView('Spellcheck'));
+ }
+
this.mode.trialMode && this.leftMenu.setDeveloperMode(this.mode.trialMode);
/** coauthoring end **/
Common.util.Shortcuts.resumeEvents();
@@ -646,6 +652,7 @@ define([
this.leftMenu.btnChat.setDisabled(true);
/** coauthoring end **/
this.leftMenu.btnPlugins.setDisabled(true);
+ this.leftMenu.btnSpellcheck.setDisabled(true);
this.leftMenu.getMenu('file').setMode({isDisconnected: true, enableDownload: !!enableDownload});
if ( this.dlgSearch ) {
@@ -844,6 +851,7 @@ define([
this.leftMenu.btnAbout.setDisabled(isRangeSelection);
this.leftMenu.btnSearch.setDisabled(isRangeSelection);
+ this.leftMenu.btnSpellcheck.setDisabled(isRangeSelection);
if (this.mode.canPlugins && this.leftMenu.panelPlugins) {
this.leftMenu.panelPlugins.setLocked(isRangeSelection);
this.leftMenu.panelPlugins.disableControls(isRangeSelection);
@@ -855,6 +863,7 @@ define([
this.leftMenu.btnAbout.setDisabled(isEditFormula);
this.leftMenu.btnSearch.setDisabled(isEditFormula);
+ this.leftMenu.btnSpellcheck.setDisabled(isEditFormula);
if (this.mode.canPlugins && this.leftMenu.panelPlugins) {
this.leftMenu.panelPlugins.setLocked(isEditFormula);
this.leftMenu.panelPlugins.disableControls(isEditFormula);
diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js
index 8686c02eb..941fc455e 100644
--- a/apps/spreadsheeteditor/main/app/controller/Main.js
+++ b/apps/spreadsheeteditor/main/app/controller/Main.js
@@ -132,7 +132,10 @@ define([
'Y Axis': this.txtYAxis,
'Your text here': this.txtArt,
'Table': this.txtTable,
- 'Print_Area': this.txtPrintArea
+ 'Print_Area': this.txtPrintArea,
+ 'Confidential': this.txtConfidential,
+ 'Prepared by': this.txtPreparedBy,
+ 'Page': this.txtPage
};
styleNames.forEach(function(item){
translate[item] = me.translationTable[item] = me['txtStyle_' + item.replace(/ /g, '_')] || item;
@@ -164,6 +167,7 @@ define([
this.api.asc_registerCallback('asc_onDocumentName', _.bind(this.onDocumentName, this));
this.api.asc_registerCallback('asc_onPrintUrl', _.bind(this.onPrintUrl, this));
this.api.asc_registerCallback('asc_onMeta', _.bind(this.onMeta, this));
+ this.api.asc_registerCallback('asc_onSpellCheckInit', _.bind(this.loadLanguages, this));
Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this));
Common.NotificationCenter.on('goback', _.bind(this.goBack, this));
Common.NotificationCenter.on('namedrange:locked', _.bind(this.onNamedRangeLocked, this));
@@ -287,7 +291,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}}');
@@ -683,7 +687,8 @@ define([
leftMenuView = leftmenuController.getView('LeftMenu'),
documentHolderView = documentHolderController.getView('DocumentHolder'),
chatController = application.getController('Common.Controllers.Chat'),
- pluginsController = application.getController('Common.Controllers.Plugins');
+ pluginsController = application.getController('Common.Controllers.Plugins'),
+ spellcheckController = application.getController('Spellcheck');
leftMenuView.getMenu('file').loadDocument({doc:me.appOptions.spreadsheet});
leftmenuController.setMode(me.appOptions).createDelayedElements().setApi(me.api);
@@ -710,6 +715,8 @@ define([
this.formulaInput = celleditorController.getView('CellEditor').$el.find('textarea');
if (me.appOptions.isEdit) {
+ spellcheckController.setApi(me.api).setMode(me.appOptions);
+
if (me.appOptions.canAutosave) {
value = Common.localStorage.getItem("sse-settings-autosave");
if (value===null && me.appOptions.customization && me.appOptions.customization.autosave===false)
@@ -740,6 +747,7 @@ define([
documentHolderView.createDelayedElements();
toolbarController.createDelayedElements();
+ me.setLanguages();
if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram) {
var shapes = me.api.asc_getPropertyEditorShapes();
@@ -1368,8 +1376,8 @@ define([
break;
case Asc.c_oAscError.ID.DataValidate:
- var icon = errData ? errData.asc_getErrorStyle() : null;
- if (icon) {
+ var icon = errData ? errData.asc_getErrorStyle() : undefined;
+ if (icon!==undefined) {
config.iconCls = (icon==Asc.c_oAscEDataValidationErrorStyle.Stop) ? 'error' : ((icon==Asc.c_oAscEDataValidationErrorStyle.Information) ? 'info' : 'warn');
}
errData && errData.asc_getErrorTitle() && (config.title = errData.asc_getErrorTitle());
@@ -1417,7 +1425,7 @@ define([
this.disableEditing(true);
Common.NotificationCenter.trigger('api:disconnect', true); // enable download and print
} else if (id == Asc.c_oAscError.ID.DataValidate && btn !== 'ok') {
- this.api.asc_closeCellEditor();
+ this.api.asc_closeCellEditor(true);
}
this._state.lostEditingRights = false;
this.onEditComplete();
@@ -1828,6 +1836,15 @@ define([
}
},
+ loadLanguages: function(apiLangs) {
+ this.languages = apiLangs;
+ window.styles_loaded && this.setLanguages();
+ },
+
+ setLanguages: function() {
+ this.getApplication().getController('Spellcheck').setLanguages(this.languages);
+ },
+
onInternalCommand: function(data) {
if (data) {
switch (data.command) {
@@ -2390,7 +2407,10 @@ define([
errorCannotUngroup: 'Cannot ungroup. To start an outline, select the detail rows or columns and group them.',
errorFrmlMaxTextLength: 'Text values in formulas are limited to 255 characters. Use the CONCATENATE function or concatenation operator (&)',
waitText: 'Please, wait...',
- errorDataValidate: 'The value you entered is not valid. A user has restricted values that can be entered into this cell.'
+ errorDataValidate: 'The value you entered is not valid. A user has restricted values that can be entered into this cell.',
+ txtConfidential: 'Confidential',
+ txtPreparedBy: 'Prepared by',
+ txtPage: 'Page'
}
})(), SSE.Controllers.Main || {}))
});
diff --git a/apps/spreadsheeteditor/main/app/controller/Spellcheck.js b/apps/spreadsheeteditor/main/app/controller/Spellcheck.js
new file mode 100644
index 000000000..74f2efa60
--- /dev/null
+++ b/apps/spreadsheeteditor/main/app/controller/Spellcheck.js
@@ -0,0 +1,253 @@
+/*
+ *
+ * (c) Copyright Ascensio System SIA 2010-2019
+ *
+ * This program is a free software product. You can redistribute it and/or
+ * modify it under the terms of the GNU Affero General Public License (AGPL)
+ * version 3 as published by the Free Software Foundation. In accordance with
+ * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
+ * that Ascensio System SIA expressly excludes the warranty of non-infringement
+ * of any third-party rights.
+ *
+ * This program is distributed WITHOUT ANY WARRANTY; without even the implied
+ * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
+ * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
+ *
+ * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
+ * street, Riga, Latvia, EU, LV-1050.
+ *
+ * The interactive user interfaces in modified source and object code versions
+ * of the Program must display Appropriate Legal Notices, as required under
+ * Section 5 of the GNU AGPL version 3.
+ *
+ * Pursuant to Section 7(b) of the License you must retain the original Product
+ * logo when distributing the program. Pursuant to Section 7(e) we decline to
+ * grant you any rights under trademark law for use of our trademarks.
+ *
+ * All the Product's GUI elements, including illustrations and icon sets, as
+ * well as technical writing content are licensed under the terms of the
+ * Creative Commons Attribution-ShareAlike 4.0 International. See the License
+ * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
+ *
+*/
+/**
+ * User: Julia.Radzhabova
+ * Date: 30.07.19
+ */
+
+define([
+ 'core',
+ 'spreadsheeteditor/main/app/view/Spellcheck'
+], function () {
+ 'use strict';
+
+ SSE.Controllers.Spellcheck = Backbone.Controller.extend(_.extend({
+ models: [],
+ collections: [
+ ],
+ views: [
+ 'Spellcheck'
+ ],
+
+ initialize: function() {
+ var me = this;
+ this.addListeners({
+ 'Spellcheck': {
+ 'show': function() {
+ me._initSettings && me.loadLanguages();
+ me.onClickNext();
+ },
+ 'hide': function() {
+ }
+ }
+ });
+ },
+
+ events: function() {
+ },
+
+ onLaunch: function() {
+ this.panelSpellcheck= this.createView('Spellcheck', {
+ });
+ this.panelSpellcheck.on('render:after', _.bind(this.onAfterRender, this));
+ this._isDisabled = false;
+ this._initSettings = true;
+ },
+
+ setApi: function(api) {
+ this.api = api;
+ this.api.asc_registerCallback('asc_onSpellCheckVariantsFound', _.bind(this.onSpellCheckVariantsFound, this));
+ this.api.asc_registerCallback('asc_onEditCell', _.bind(this.onApiEditCell, this));
+ return this;
+ },
+
+ setMode: function(mode) {
+ this.mode = mode;
+ if (this.panelSpellcheck) {
+ this.panelSpellcheck.btnToDictionary.setVisible(mode.isDesktopApp);
+ }
+ return this;
+ },
+
+ onAfterRender: function(panelSpellcheck) {
+ panelSpellcheck.buttonNext.on('click', _.bind(this.onClickNext, this));
+ panelSpellcheck.btnToDictionary.on('click', _.bind(this.onDictionary, this));
+ panelSpellcheck.cmbDictionaryLanguage.on('selected', _.bind(this.onSelectLanguage, this));
+ panelSpellcheck.btnChange.on('click', _.bind(this.onClickChange, this));
+ panelSpellcheck.btnIgnore.on('click', _.bind(this.onClickIgnore, this));
+ panelSpellcheck.btnChange.menu.on('item:click', _.bind(this.onClickChangeMenu, this));
+ panelSpellcheck.btnIgnore.menu.on('item:click', _.bind(this.onClickIgnoreMenu, this));
+ },
+
+ onClickNext: function() {
+ if (this.api) {
+ this.api.asc_nextWord();
+ }
+ },
+
+ onDictionary: function() {
+ if (this.api) {
+ var str = this.panelSpellcheck.currentWord.getValue();
+ str && this.api.asc_spellCheckAddToDictionary(str);
+ }
+ },
+
+ SetDisabled: function(state) {
+ this._isDisabled = state;
+ },
+
+ setLanguages: function (array) {
+ this.languages = array;
+ this._initSettings = true;
+ },
+
+ loadLanguages: function () {
+ var value = Common.localStorage.getItem("sse-spellcheck-locale");
+ if (value)
+ value = parseInt(value);
+ else
+ value = this.mode.lang ? parseInt(Common.util.LanguageInfo.getLocalLanguageCode(this.mode.lang)) : 0x0409;
+
+ var combo = this.panelSpellcheck.cmbDictionaryLanguage;
+ if (this.languages && this.languages.length>0) {
+ var langs = [], info,
+ allLangs = Common.util.LanguageInfo.getLanguages();
+ this.languages.forEach(function (code) {
+ code = parseInt(code);
+ if (allLangs.hasOwnProperty(code)) {
+ info = allLangs[code];
+ langs.push({
+ displayValue: info[1],
+ shortName: info[0],
+ value: code
+ });
+ }
+ });
+ langs.sort(function(a, b){
+ if (a.shortName < b.shortName) return -1;
+ if (a.shortName > b.shortName) return 1;
+ return 0;
+ });
+ combo.setData(langs);
+ var item = combo.store.findWhere({value: value});
+ if (!item && allLangs[value]) {
+ value = allLangs[value][0].split(/[\-\_]/)[0];
+ item = combo.store.find(function(model){
+ return model.get('shortName').indexOf(value)==0;
+ });
+ }
+ combo.setValue(item ? item.get('value') : langs[0].value);
+ value = combo.getValue();
+ } else {
+ combo.setValue(Common.util.LanguageInfo.getLocalLanguageName(value)[1]);
+ combo.setDisabled(true);
+ }
+ this.api.asc_setDefaultLanguage(value);
+ this._initSettings = false;
+ },
+
+ onSelectLanguage: function (combo, record) {
+ var lang = record.value;
+ if (this.api && lang) {
+ this.api.asc_setDefaultLanguage(lang);
+ Common.localStorage.setItem("sse-spellcheck-locale", this.panelSpellcheck.cmbDictionaryLanguage.getValue());
+ }
+ },
+
+ onClickChange: function (btn, e) {
+ if (this.api) {
+ var rec = this.panelSpellcheck.suggestionList.getSelectedRec();
+ rec && this.api.asc_replaceMisspelledWord(rec.get('value'), this._currentSpellObj);
+ }
+ },
+
+ onClickChangeMenu: function (menu, item) {
+ if (this.api) {
+ var rec = this.panelSpellcheck.suggestionList.getSelectedRec();
+ if (item.value == 0) {
+ rec && this.api.asc_replaceMisspelledWord(rec.get('value'), this._currentSpellObj);
+ } else if (item.value == 1) {
+ rec && this.api.asc_replaceMisspelledWord(rec.get('value'), this._currentSpellObj, true);
+ }
+ }
+ },
+
+ onClickIgnore: function () {
+ if (this.api) {
+ this.api.asc_ignoreMisspelledWord(this._currentSpellObj, false)
+ }
+ },
+
+ onClickIgnoreMenu: function (menu, item) {
+ if (this.api) {
+ if (item.value == 0) {
+ this.api.asc_ignoreMisspelledWord(this._currentSpellObj, false);
+ } else if (item.value == 1) {
+ this.api.asc_ignoreMisspelledWord(this._currentSpellObj, true);
+ }
+ }
+ },
+
+ onSpellCheckVariantsFound: function (property) {
+ this._currentSpellObj = property;
+
+ var arr = [],
+ word;
+ if (property) {
+ word = property.get_Word();
+ var variants = property.get_Variants();
+ variants && variants.forEach(function (item) {
+ var rec = new Common.UI.DataViewModel();
+ rec.set({
+ value: item
+ });
+ arr.push(rec);
+ });
+ }
+ var disabled = this.api.isCellEdited;
+ this.panelSpellcheck.currentWord.setValue(word || '');
+ this.panelSpellcheck.suggestionList.store.reset(arr);
+ (arr.length>0) && this.panelSpellcheck.suggestionList.selectByIndex(0);
+ this.panelSpellcheck.currentWord.setDisabled(!word || disabled);
+ this.panelSpellcheck.btnChange.setDisabled(arr.length<1 || disabled);
+ this.panelSpellcheck.btnIgnore.setDisabled(!word || disabled);
+ this.panelSpellcheck.btnToDictionary.setDisabled(!word || disabled);
+ this.panelSpellcheck.lblComplete.toggleClass('hidden', !property || !!word);
+ },
+
+ onApiEditCell: function(state) {
+ if (state == Asc.c_oAscCellEditorState.editEnd) {
+ this.panelSpellcheck.buttonNext.setDisabled(false);
+ this.panelSpellcheck.cmbDictionaryLanguage.setDisabled(false);
+ } else {
+ this.panelSpellcheck.buttonNext.setDisabled(true);
+ this.panelSpellcheck.currentWord.setDisabled(true);
+ this.panelSpellcheck.btnChange.setDisabled(true);
+ this.panelSpellcheck.btnIgnore.setDisabled(true);
+ this.panelSpellcheck.btnToDictionary.setDisabled(true);
+ this.panelSpellcheck.cmbDictionaryLanguage.setDisabled(true);
+ }
+ }
+
+ }, SSE.Controllers.Spellcheck || {}));
+});
diff --git a/apps/spreadsheeteditor/main/app/template/LeftMenu.template b/apps/spreadsheeteditor/main/app/template/LeftMenu.template
index 95335821c..a5ff8e732 100644
--- a/apps/spreadsheeteditor/main/app/template/LeftMenu.template
+++ b/apps/spreadsheeteditor/main/app/template/LeftMenu.template
@@ -6,6 +6,7 @@
+
',
@@ -1374,7 +1374,7 @@ define([
txtComment: 'Comment',
txtModifyDate: 'Last Modified',
txtModifyBy: 'Last Modified By',
- txtDate: 'Created',
+ txtCreated: 'Created',
txtAuthor: 'Author',
txtAddAuthor: 'Add Author',
txtAddText: 'Add Text',
diff --git a/apps/spreadsheeteditor/main/app/view/LeftMenu.js b/apps/spreadsheeteditor/main/app/view/LeftMenu.js
index c88ea99fd..503ff62ca 100644
--- a/apps/spreadsheeteditor/main/app/view/LeftMenu.js
+++ b/apps/spreadsheeteditor/main/app/view/LeftMenu.js
@@ -63,6 +63,7 @@ define([
'click #left-btn-chat': _.bind(this.onCoauthOptions, this),
/** coauthoring end **/
'click #left-btn-plugins': _.bind(this.onCoauthOptions, this),
+ 'click #left-btn-spellcheck': _.bind(this.onCoauthOptions, this),
'click #left-btn-support': function() {
var config = this.mode.customization;
config && !!config.feedback && !!config.feedback.url ?
@@ -141,6 +142,16 @@ define([
this.btnPlugins.hide();
this.btnPlugins.on('click', _.bind(this.onBtnMenuClick, this));
+ this.btnSpellcheck = new Common.UI.Button({
+ el: $('#left-btn-spellcheck'),
+ hint: this.tipSpellcheck,
+ enableToggle: true,
+ disabled: true,
+ toggleGroup: 'leftMenuGroup'
+ });
+ this.btnSpellcheck.hide();
+ this.btnSpellcheck.on('click', _.bind(this.onBtnMenuClick, this));
+
this.btnSearch.on('click', _.bind(this.onBtnMenuClick, this));
this.btnAbout.on('toggle', _.bind(this.onBtnMenuToggle, this));
@@ -210,6 +221,12 @@ define([
this.panelChat['hide']();
}
}
+ if (this.panelSpellcheck) {
+ if (this.btnSpellcheck.pressed) {
+ this.panelSpellcheck.show();
+ } else
+ this.panelSpellcheck['hide']();
+ }
// if (this.mode.canPlugins && this.panelPlugins) {
// if (this.btnPlugins.pressed) {
// this.panelPlugins.show();
@@ -226,6 +243,9 @@ define([
} else
if (name == 'plugins' && !this.panelPlugins) {
this.panelPlugins = panel.render('#left-panel-plugins');
+ } else
+ if (name == 'spellcheck' && !this.panelSpellcheck) {
+ this.panelSpellcheck = panel.render('#left-panel-spellcheck');
}
},
@@ -263,6 +283,10 @@ define([
this.panelPlugins['hide']();
this.btnPlugins.toggle(false, true);
}
+ if (this.panelSpellcheck) {
+ this.panelSpellcheck['hide']();
+ this.btnSpellcheck.toggle(false, true);
+ }
},
isOpened: function() {
@@ -282,6 +306,7 @@ define([
this.btnChat.setDisabled(false);
/** coauthoring end **/
this.btnPlugins.setDisabled(false);
+ this.btnSpellcheck.setDisabled(false);
},
showMenu: function(menu) {
@@ -356,6 +381,7 @@ define([
tipSearch : 'Search',
tipPlugins : 'Plugins',
txtDeveloper: 'DEVELOPER MODE',
- txtTrial: 'TRIAL MODE'
+ txtTrial: 'TRIAL MODE',
+ tipSpellcheck: 'Spell Checking'
}, SSE.Views.LeftMenu || {}));
});
diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js
index 285b9ea7e..f95f2bb96 100644
--- a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js
+++ b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js
@@ -1093,6 +1093,8 @@ define([
this._state.GradColor = color;
}
+ this.chShadow.setValue(!!shapeprops.asc_getShadow(), true);
+
this._noApply = false;
}
},
@@ -1365,6 +1367,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.el).on('click', '#shape-advanced-link', _.bind(this.openAdvancedSettings, this));
this.linkAdvanced = $('#shape-advanced-link');
},
@@ -1533,6 +1542,16 @@ define([
Common.NotificationCenter.trigger('edit:complete', 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.asc_putShapeProperties(props);
+ this.api.asc_setGraphicObjectProps(this.imgprops);
+ }
+ Common.NotificationCenter.trigger('edit:complete', this);
+ },
+
UpdateThemeColors: function() {
if (!this.btnBackColor) {
this.btnBackColor = new Common.UI.ColorButton({
@@ -1745,6 +1764,7 @@ define([
textHint270: 'Rotate 90° Counterclockwise',
textHint90: 'Rotate 90° Clockwise',
textHintFlipV: 'Flip Vertically',
- textHintFlipH: 'Flip Horizontally'
+ textHintFlipH: 'Flip Horizontally',
+ strShadow: 'Show shadow'
}, SSE.Views.ShapeSettings || {}));
});
diff --git a/apps/spreadsheeteditor/main/app/view/Spellcheck.js b/apps/spreadsheeteditor/main/app/view/Spellcheck.js
new file mode 100644
index 000000000..7c40d07ce
--- /dev/null
+++ b/apps/spreadsheeteditor/main/app/view/Spellcheck.js
@@ -0,0 +1,197 @@
+/*
+ *
+ * (c) Copyright Ascensio System SIA 2010-2019
+ *
+ * This program is a free software product. You can redistribute it and/or
+ * modify it under the terms of the GNU Affero General Public License (AGPL)
+ * version 3 as published by the Free Software Foundation. In accordance with
+ * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
+ * that Ascensio System SIA expressly excludes the warranty of non-infringement
+ * of any third-party rights.
+ *
+ * This program is distributed WITHOUT ANY WARRANTY; without even the implied
+ * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
+ * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
+ *
+ * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
+ * street, Riga, Latvia, EU, LV-1050.
+ *
+ * The interactive user interfaces in modified source and object code versions
+ * of the Program must display Appropriate Legal Notices, as required under
+ * Section 5 of the GNU AGPL version 3.
+ *
+ * Pursuant to Section 7(b) of the License you must retain the original Product
+ * logo when distributing the program. Pursuant to Section 7(e) we decline to
+ * grant you any rights under trademark law for use of our trademarks.
+ *
+ * All the Product's GUI elements, including illustrations and icon sets, as
+ * well as technical writing content are licensed under the terms of the
+ * Creative Commons Attribution-ShareAlike 4.0 International. See the License
+ * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
+ *
+*/
+/**
+ * User: Julia.Radzhabova
+ * Date: 30.07.19
+ */
+
+define([
+ 'common/main/lib/util/utils',
+ 'common/main/lib/component/BaseView',
+ 'common/main/lib/component/Layout',
+ 'common/main/lib/component/Button',
+ 'common/main/lib/component/ListView',
+ 'common/main/lib/component/InputField',
+ 'common/main/lib/component/ComboBox',
+ 'common/main/lib/component/ComboDataView'
+], function (template) {
+ 'use strict';
+
+ SSE.Views.Spellcheck = Common.UI.BaseView.extend(_.extend({
+ el: '#left-panel-spellcheck',
+
+ template: _.template([
+ '
',
+ '
<%= scope.txtSpelling %>
',
+ '
',
+ '',
+ '',
+ '',
+ '',
+ '
<%= scope.txtComplete %>
',
+ '
'
+ ].join('')),
+
+ initialize: function(options) {
+ _.extend(this, options);
+ Common.UI.BaseView.prototype.initialize.call(this, arguments);
+ },
+
+ render: function(el) {
+ el = el || this.el;
+ this.$el = $(el);
+ this.$el.html(this.template({scope: this}));
+
+ this.currentWord = new Common.UI.InputField({
+ el : $('#spellcheck-current-word'),
+ allowBlank : true,
+ validateOnBlur: false,
+ disabled: true
+ });
+
+ this.buttonNext = new Common.UI.Button({
+ style: 'margin-left: 5px; width: 22px; height: 22px; border: 1px solid #cfcfcf;',
+ cls: 'btn-toolbar bg-white',
+ iconCls: 'btn-spellcheck-next',
+ hint: this.txtNextTip
+ });
+ this.buttonNext.render($('#spellcheck-next'));
+
+ this.suggestionList = new Common.UI.ListView({
+ el: $('#spellcheck-suggestions-list'),
+ emptyText: this.noSuggestions,
+ store: new Common.UI.DataViewStore(),
+ scrollAlwaysVisible: true
+ });
+
+ this.btnChange = new Common.UI.Button({
+ cls: 'btn-text-split-default',
+ caption: this.textChange,
+ split: true,
+ width: 110,
+ disabled: true,
+ menu : new Common.UI.Menu({
+ style : 'min-width: 110px',
+ items: [
+ {
+ caption: this.textChange,
+ value: 0
+ },
+ {
+ caption: this.textChangeAll,
+ value: 1,
+ disabled: true
+ }
+ ]
+ })
+ });
+ this.btnChange.render( $('#spellcheck-change')) ;
+
+ this.btnIgnore = new Common.UI.Button({
+ cls: 'btn-text-split-default',
+ caption: this.textIgnore,
+ split: true,
+ width: 110,
+ disabled: true,
+ menu : new Common.UI.Menu({
+ style : 'min-width: 110px;',
+ items: [
+ {
+ caption: this.textIgnore,
+ value: 0
+ },
+ {
+ caption: this.textIgnoreAll,
+ value: 1,
+ disabled: true
+ }
+ ]
+ })
+ });
+ this.btnIgnore.render( $('#spellcheck-ignore')) ;
+
+ this.cmbDictionaryLanguage = new Common.UI.ComboBox({
+ el : $('#spellcheck-dictionary-language'),
+ style : 'width: 100%',
+ menuStyle : 'width: 100%;max-height: 163px;',
+ editable : false,
+ cls : 'input-group-nr',
+ scroller : {
+ suppressScrollX: true
+ }
+ });
+
+ this.btnToDictionary = new Common.UI.Button({
+ el: $('#spellcheck-add-to-dictionary'),
+ disabled : true
+ });
+
+ this.lblComplete = this.$el.find('#spellcheck-complete');
+ this.trigger('render:after', this);
+
+ if (_.isUndefined(this.scroller)) {
+ this.scroller = new Common.UI.Scroller({
+ el: this.$el.find('#spellcheck-box'),
+ suppressScrollX: true
+ });
+ }
+
+ return this;
+ },
+
+ show: function () {
+ Common.UI.BaseView.prototype.show.call(this,arguments);
+ this.fireEvent('show', this );
+ },
+
+ hide: function () {
+ Common.UI.BaseView.prototype.hide.call(this,arguments);
+ this.fireEvent('hide', this );
+ },
+
+ ChangeSettings: function(props) {
+ },
+
+ txtSpelling: 'Spelling',
+ noSuggestions: 'No spelling suggestions',
+ textChange: 'Change',
+ textChangeAll: 'Change All',
+ textIgnore: 'Ignore',
+ textIgnoreAll: 'Ignore All',
+ txtAddToDictionary: 'Add To Dictionary',
+ txtDictionaryLanguage: 'Dictionary Language',
+ txtComplete: 'Spellcheck has been complete',
+ txtNextTip: 'Go to the next word'
+
+ }, SSE.Views.Spellcheck || {}));
+});
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js
index 32cc23def..0e7bb6053 100644
--- a/apps/spreadsheeteditor/main/app/view/Toolbar.js
+++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js
@@ -89,7 +89,8 @@ define([
printAreaLock: 'print-area-lock',
namedRangeLock: 'named-range-lock',
multiselectCols:'is-multiselect-cols',
- headerLock: 'header-lock'
+ headerLock: 'header-lock',
+ sheetLock: 'sheet-lock'
};
SSE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend({
diff --git a/apps/spreadsheeteditor/main/app_dev.js b/apps/spreadsheeteditor/main/app_dev.js
index 882239a0f..f2feab9a3 100644
--- a/apps/spreadsheeteditor/main/app_dev.js
+++ b/apps/spreadsheeteditor/main/app_dev.js
@@ -142,6 +142,7 @@ require([
'Print',
'Toolbar',
'Statusbar',
+ 'Spellcheck',
'RightMenu',
'LeftMenu',
'Main',
@@ -164,6 +165,7 @@ require([
'spreadsheeteditor/main/app/controller/CellEditor',
'spreadsheeteditor/main/app/controller/Toolbar',
'spreadsheeteditor/main/app/controller/Statusbar',
+ 'spreadsheeteditor/main/app/controller/Spellcheck',
'spreadsheeteditor/main/app/controller/RightMenu',
'spreadsheeteditor/main/app/controller/LeftMenu',
'spreadsheeteditor/main/app/controller/Main',
diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json
index 9ada7a17d..83de12428 100644
--- a/apps/spreadsheeteditor/main/locale/bg.json
+++ b/apps/spreadsheeteditor/main/locale/bg.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Отказ",
"Common.Controllers.Chat.notcriticalErrorTitle": "Внимание",
"Common.Controllers.Chat.textEnterMessage": "Въведете съобщението си тук",
- "Common.Controllers.Chat.textUserLimit": "Използвате ONLYOFFICE Free Edition. Само двама потребители могат да редактират документа едновременно. Искате ли повече? Помислете за закупуване на ONLYOFFICE Enterprise Edition. Прочетете повече ",
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
@@ -391,7 +390,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализациите.",
"SSE.Controllers.Main.criticalErrorExtText": "Натиснете \"OK\", за да се върнете към списъка с документи.",
"SSE.Controllers.Main.criticalErrorTitle": "Грешка",
- "SSE.Controllers.Main.defaultTitleText": "Редактор на електронни таблици ONLYOFFICE",
"SSE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.",
"SSE.Controllers.Main.downloadTextText": "Електронната таблица се изтегли ...",
"SSE.Controllers.Main.downloadTitleText": "Изтегляне на електронна таблица",
@@ -1133,8 +1131,6 @@
"SSE.Views.CellSettings.textNewColor": "Нов потребителски цвят",
"SSE.Views.CellSettings.textOrientation": "Ориентация на текста",
"SSE.Views.CellSettings.textSelectBorders": "Изберете граници, които искате да промените, като използвате избрания по-горе стил",
- "SSE.Views.CellSettings.textTextToColumn": "Текст в колони",
- "SSE.Views.CellSettings.textWizard": "Съветник за преобразуване на текст в колони",
"SSE.Views.CellSettings.tipAll": "Задайте външната граница и всички вътрешни линии",
"SSE.Views.CellSettings.tipBottom": "Задайте само външната долна граница",
"SSE.Views.CellSettings.tipDiagD": "Задайте диагонална надолу граница",
@@ -1483,7 +1479,6 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Промяна на правата за достъп",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата на създаване",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Местоположение",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Лица, които имат права",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Заглавие на електронната таблица",
diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json
index 2d5e3524c..c2d6f7a33 100644
--- a/apps/spreadsheeteditor/main/locale/cs.json
+++ b/apps/spreadsheeteditor/main/locale/cs.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Zrušit",
"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. Pouze dva uživatelé mohou zároveň upravovat dokument. Chcete více? Zvažte zakoupení ONLYOFFICE Enterprise edice. Více informací",
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
@@ -251,7 +250,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.",
"SSE.Controllers.Main.criticalErrorExtText": "Kliněte na \"OK\" pro návrat k seznamu dokumentů",
"SSE.Controllers.Main.criticalErrorTitle": "Chyba",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Tabulkový editor",
"SSE.Controllers.Main.downloadErrorText": "Stahování selhalo.",
"SSE.Controllers.Main.downloadTextText": "Stahování sešitu...",
"SSE.Controllers.Main.downloadTitleText": "Stahování sešitu",
@@ -1085,7 +1083,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nový sešit",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Změnit přístupová práva",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum vytvoření",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umístění",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, které mají práva",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Nadpis sešitu",
diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json
index 4d15b4bd5..ef0e20cda 100644
--- a/apps/spreadsheeteditor/main/locale/de.json
+++ b/apps/spreadsheeteditor/main/locale/de.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Abbrechen",
"Common.Controllers.Chat.notcriticalErrorTitle": "Achtung",
"Common.Controllers.Chat.textEnterMessage": "Geben Sie Ihre Nachricht hier ein",
- "Common.Controllers.Chat.textUserLimit": "Sie benutzen ONLYOFFICE Free Edition. Nur zwei Benutzer können das Dokument gleichzeitig bearbeiten. Möchten Sie mehr? Erwerben Sie kommerzielle Version von ONLYOFFICE Enterprise Edition. Lesen Sie mehr davon",
"Common.UI.ComboBorderSize.txtNoBorders": "Keine Rahmen",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
"Common.UI.ComboDataView.emptyComboText": "Keine Formate",
@@ -404,7 +403,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
"SSE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf 'OK', um zur Dokumentenliste zu übergehen.",
"SSE.Controllers.Main.criticalErrorTitle": "Fehler",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
"SSE.Controllers.Main.downloadTextText": "Kalkulationstabelle wird heruntergeladen...",
"SSE.Controllers.Main.downloadTitleText": "Herunterladen der Kalkulationstabelle",
@@ -1146,8 +1144,6 @@
"SSE.Views.CellSettings.textNewColor": "Benutzerdefinierte Farbe",
"SSE.Views.CellSettings.textOrientation": "Textausrichtung",
"SSE.Views.CellSettings.textSelectBorders": "Wählen Sie Rahmen, die Sie ändern möchten, indem Sie den oben ausgewählten Stil anwenden",
- "SSE.Views.CellSettings.textTextToColumn": "Text in Spalten",
- "SSE.Views.CellSettings.textWizard": "Textkonvertierungs-Assistent",
"SSE.Views.CellSettings.tipAll": "Äußere Rahmenlinie und alle inneren Linien festlegen",
"SSE.Views.CellSettings.tipBottom": "Nur äußere untere Rahmenlinie festlegen",
"SSE.Views.CellSettings.tipDiagD": "Stellen Sie den diagonalen unteren Rand ein",
@@ -1496,7 +1492,6 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Anwendung",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zugriffsrechte ändern",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Erstellungsdatum",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Speicherort",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen mit Berechtigungen",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel der Tabelle",
diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json
index 9c87eab7c..a4aeae5b8 100644
--- a/apps/spreadsheeteditor/main/locale/en.json
+++ b/apps/spreadsheeteditor/main/locale/en.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Cancel",
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Enter your message here",
- "del_Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"Common.UI.ComboBorderSize.txtNoBorders": "No borders",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
"Common.UI.ComboDataView.emptyComboText": "No styles",
@@ -373,14 +372,14 @@
"SSE.Controllers.DocumentHolder.txtUseTextImport": "Use text import wizard",
"SSE.Controllers.DocumentHolder.txtWidth": "Width",
"SSE.Controllers.FormulaDialog.sCategoryAll": "All",
- "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 last used",
- "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logical",
"SSE.Controllers.FormulaDialog.sCategoryCube": "Cube",
"SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database",
"SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Date and time",
"SSE.Controllers.FormulaDialog.sCategoryEngineering": "Engineering",
"SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financial",
"SSE.Controllers.FormulaDialog.sCategoryInformation": "Information",
+ "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 last used",
+ "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logical",
"SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Lookup and reference",
"SSE.Controllers.FormulaDialog.sCategoryMathematic": "Math and trigonometry",
"SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistical",
@@ -407,7 +406,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
"SSE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.",
"SSE.Controllers.Main.criticalErrorTitle": "Error",
- "del_SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Download failed.",
"SSE.Controllers.Main.downloadTextText": "Downloading spreadsheet...",
"SSE.Controllers.Main.downloadTitleText": "Downloading Spreadsheet",
@@ -440,6 +438,7 @@
"SSE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
"SSE.Controllers.Main.errorFormulaName": "An error in the entered formula. Incorrect formula name is used.",
"SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters. Use the CONCATENATE function or concatenation operator (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist. Please check the data and try again.",
"SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
@@ -470,8 +469,6 @@
"SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document, but will not be able to download or print until the connection is restored.",
"SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula. Wrong number of brackets is used.",
"SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used. Please correct the error.",
- "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters. Use the CONCATENATE function or concatenation operator (&).",
- "SSE.Controllers.Main.errorDataValidate": "The value you entered is not valid. A user has restricted values that can be entered into this cell.",
"SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.",
"SSE.Controllers.Main.loadFontsTextText": "Loading data...",
"SSE.Controllers.Main.loadFontsTitleText": "Loading Data",
@@ -741,9 +738,13 @@
"SSE.Controllers.Main.warnLicenseExceeded": "The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only. Please contact your administrator for more information.",
"SSE.Controllers.Main.warnLicenseExp": "Your license has expired. Please update your license and refresh the page.",
"SSE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only. Please contact your administrator for more information.",
- "SSE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server. If you need more please consider purchasing a commercial license.",
+ "SSE.Controllers.Main.warnNoLicense": "This version of ONLYOFFICE Editors has certain limitations for concurrent connections to the document server. If you need more please consider purchasing a commercial license.",
"SSE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users. If you need more please consider purchasing a commercial license.",
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
+ "SSE.Controllers.Main.errorDataValidate": "The value you entered is not valid. A user has restricted values that can be entered into this cell.",
+ "SSE.Controllers.Main.txtConfidential": "Confidential",
+ "SSE.Controllers.Main.txtPreparedBy": "Prepared by",
+ "SSE.Controllers.Main.txtPage": "Page",
"SSE.Controllers.Print.strAllSheets": "All Sheets",
"SSE.Controllers.Print.textWarning": "Warning",
"SSE.Controllers.Print.txtCustom": "Custom",
@@ -770,8 +771,8 @@
"SSE.Controllers.Toolbar.textOperator": "Operators",
"SSE.Controllers.Toolbar.textPivot": "Pivot Table",
"SSE.Controllers.Toolbar.textRadical": "Radicals",
- "SSE.Controllers.Toolbar.textSymbols": "Symbols",
"SSE.Controllers.Toolbar.textScript": "Scripts",
+ "SSE.Controllers.Toolbar.textSymbols": "Symbols",
"SSE.Controllers.Toolbar.textWarning": "Warning",
"SSE.Controllers.Toolbar.txtAccent_Accent": "Acute",
"SSE.Controllers.Toolbar.txtAccent_ArrowD": "Right-left arrow above",
@@ -1152,8 +1153,6 @@
"SSE.Views.CellSettings.textNewColor": "Add New Custom Color",
"SSE.Views.CellSettings.textOrientation": "Text Orientation",
"SSE.Views.CellSettings.textSelectBorders": "Select borders you want to change applying style chosen above",
- "del_SSE.Views.CellSettings.textTextToColumn": "Text to Columns",
- "del_SSE.Views.CellSettings.textWizard": "Text to Columns Wizard",
"SSE.Views.CellSettings.tipAll": "Set outer border and all inner lines",
"SSE.Views.CellSettings.tipBottom": "Set outer bottom border only",
"SSE.Views.CellSettings.tipDiagD": "Set Diagonal Down Border",
@@ -1508,16 +1507,15 @@
"SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "From Template",
"SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Create a new blank spreadsheet 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 spreadsheet of a certain type or purpose where some styles have already been pre-applied.",
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "New Spreadsheet",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights",
"SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment",
- "del_SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Creation Date",
"SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights",
@@ -1618,51 +1616,51 @@
"SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group",
"SSE.Views.FormulaDialog.textListDescription": "Select Function",
"SSE.Views.FormulaDialog.txtTitle": "Insert Function",
- "SSE.Views.FormulaTab.txtRecent": "Recently used",
+ "SSE.Views.FormulaTab.txtAdditional": "Additional",
"SSE.Views.FormulaTab.txtAutosum": "Autosum",
"SSE.Views.FormulaTab.txtAutosumTip": "Summation",
- "SSE.Views.FormulaTab.txtAdditional": "Additional",
"SSE.Views.FormulaTab.txtFormula": "Function",
"SSE.Views.FormulaTab.txtFormulaTip": "Insert function",
"SSE.Views.FormulaTab.txtMore": "More functions",
+ "SSE.Views.FormulaTab.txtRecent": "Recently used",
"SSE.Views.GroupDialog.cancelButtonText": "Cancel",
- "SSE.Views.GroupDialog.okButtonText": "Ok",
- "SSE.Views.GroupDialog.textRows": "Rows",
+ "SSE.Views.GroupDialog.okButtonText": "OK",
"SSE.Views.GroupDialog.textColumns": "Columns",
+ "SSE.Views.GroupDialog.textRows": "Rows",
"SSE.Views.HeaderFooterDialog.cancelButtonText": "Cancel",
- "SSE.Views.HeaderFooterDialog.okButtonText": "Ok",
- "SSE.Views.HeaderFooterDialog.tipFontName": "Font",
- "SSE.Views.HeaderFooterDialog.tipFontSize": "Font size",
+ "SSE.Views.HeaderFooterDialog.okButtonText": "OK",
+ "SSE.Views.HeaderFooterDialog.textAlign": "Align with page margins",
+ "SSE.Views.HeaderFooterDialog.textAll": "All pages",
"SSE.Views.HeaderFooterDialog.textBold": "Bold",
- "SSE.Views.HeaderFooterDialog.textItalic": "Italic",
- "SSE.Views.HeaderFooterDialog.textUnderline": "Underline",
- "SSE.Views.HeaderFooterDialog.textStrikeout": "Strikeout",
- "SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript",
- "SSE.Views.HeaderFooterDialog.textSubscript": "Subscript",
- "SSE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings",
- "SSE.Views.HeaderFooterDialog.textHeader": "Header",
- "SSE.Views.HeaderFooterDialog.textFooter": "Footer",
- "SSE.Views.HeaderFooterDialog.textLeft": "Left",
"SSE.Views.HeaderFooterDialog.textCenter": "Center",
- "SSE.Views.HeaderFooterDialog.textRight": "Right",
- "SSE.Views.HeaderFooterDialog.textPageNum": "Page number",
- "SSE.Views.HeaderFooterDialog.textPageCount": "Page count",
- "SSE.Views.HeaderFooterDialog.textDate": "Date",
- "SSE.Views.HeaderFooterDialog.textTime": "Time",
- "SSE.Views.HeaderFooterDialog.textFileName": "File name",
- "SSE.Views.HeaderFooterDialog.textSheet": "Sheet name",
"SSE.Views.HeaderFooterDialog.textColor": "Text color",
- "SSE.Views.HeaderFooterDialog.textNewColor": "Add New Custom Color",
- "SSE.Views.HeaderFooterDialog.textInsert": "Insert",
- "SSE.Views.HeaderFooterDialog.textPresets": "Presets",
+ "SSE.Views.HeaderFooterDialog.textDate": "Date",
"SSE.Views.HeaderFooterDialog.textDiffFirst": "Different first page",
"SSE.Views.HeaderFooterDialog.textDiffOdd": "Different odd and even pages",
- "SSE.Views.HeaderFooterDialog.textScale": "Scale with document",
- "SSE.Views.HeaderFooterDialog.textAlign": "Align with page margins",
- "SSE.Views.HeaderFooterDialog.textFirst": "First page",
- "SSE.Views.HeaderFooterDialog.textOdd": "Odd page",
"SSE.Views.HeaderFooterDialog.textEven": "Even page",
- "SSE.Views.HeaderFooterDialog.textAll": "All pages",
+ "SSE.Views.HeaderFooterDialog.textFileName": "File name",
+ "SSE.Views.HeaderFooterDialog.textFirst": "First page",
+ "SSE.Views.HeaderFooterDialog.textFooter": "Footer",
+ "SSE.Views.HeaderFooterDialog.textHeader": "Header",
+ "SSE.Views.HeaderFooterDialog.textInsert": "Insert",
+ "SSE.Views.HeaderFooterDialog.textItalic": "Italic",
+ "SSE.Views.HeaderFooterDialog.textLeft": "Left",
+ "SSE.Views.HeaderFooterDialog.textNewColor": "Add New Custom Color",
+ "SSE.Views.HeaderFooterDialog.textOdd": "Odd page",
+ "SSE.Views.HeaderFooterDialog.textPageCount": "Page count",
+ "SSE.Views.HeaderFooterDialog.textPageNum": "Page number",
+ "SSE.Views.HeaderFooterDialog.textPresets": "Presets",
+ "SSE.Views.HeaderFooterDialog.textRight": "Right",
+ "SSE.Views.HeaderFooterDialog.textScale": "Scale with document",
+ "SSE.Views.HeaderFooterDialog.textSheet": "Sheet name",
+ "SSE.Views.HeaderFooterDialog.textStrikeout": "Strikeout",
+ "SSE.Views.HeaderFooterDialog.textSubscript": "Subscript",
+ "SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript",
+ "SSE.Views.HeaderFooterDialog.textTime": "Time",
+ "SSE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings",
+ "SSE.Views.HeaderFooterDialog.textUnderline": "Underline",
+ "SSE.Views.HeaderFooterDialog.tipFontName": "Font",
+ "SSE.Views.HeaderFooterDialog.tipFontSize": "Font size",
"SSE.Views.HeaderFooterDialog.textMaxError": "The text string you entered is too long. Reduce the number of characters used.",
"SSE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel",
"SSE.Views.HyperlinkSettingsDialog.strDisplay": "Display",
@@ -1722,6 +1720,7 @@
"SSE.Views.LeftMenu.tipSupport": "Feedback & Support",
"SSE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
"SSE.Views.LeftMenu.txtTrial": "TRIAL MODE",
+ "SSE.Views.LeftMenu.tipSpellcheck": "Spell Checking",
"SSE.Views.MainSettingsPrint.okButtonText": "Save",
"SSE.Views.MainSettingsPrint.strBottom": "Bottom",
"SSE.Views.MainSettingsPrint.strLandscape": "Landscape",
@@ -1980,6 +1979,7 @@
"SSE.Views.ShapeSettings.txtNoBorders": "No Line",
"SSE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"SSE.Views.ShapeSettings.txtWood": "Wood",
+ "SSE.Views.ShapeSettings.strShadow": "Show shadow",
"SSE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancel",
"SSE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
"SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns",
@@ -2161,6 +2161,7 @@
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Wood",
"SSE.Views.Toolbar.capBtnComment": "Comment",
+ "SSE.Views.Toolbar.capBtnInsHeader": "Header/Footer",
"SSE.Views.Toolbar.capBtnMargins": "Margins",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientation",
"SSE.Views.Toolbar.capBtnPageSize": "Size",
@@ -2246,7 +2247,9 @@
"SSE.Views.Toolbar.textSuperscript": "Superscript",
"SSE.Views.Toolbar.textSurface": "Surface",
"SSE.Views.Toolbar.textTabCollaboration": "Collaboration",
+ "SSE.Views.Toolbar.textTabData": "Data",
"SSE.Views.Toolbar.textTabFile": "File",
+ "SSE.Views.Toolbar.textTabFormula": "Formula",
"SSE.Views.Toolbar.textTabHome": "Home",
"SSE.Views.Toolbar.textTabInsert": "Insert",
"SSE.Views.Toolbar.textTabLayout": "Layout",
@@ -2279,6 +2282,7 @@
"SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style",
"SSE.Views.Toolbar.tipDigStylePercent": "Percent style",
"SSE.Views.Toolbar.tipEditChart": "Edit Chart",
+ "SSE.Views.Toolbar.tipEditHeader": "Edit header or footer",
"SSE.Views.Toolbar.tipFontColor": "Font color",
"SSE.Views.Toolbar.tipFontName": "Font",
"SSE.Views.Toolbar.tipFontSize": "Font size",
@@ -2384,10 +2388,6 @@
"SSE.Views.Toolbar.txtTime": "Time",
"SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells",
"SSE.Views.Toolbar.txtYen": "¥ Yen",
- "SSE.Views.Toolbar.capBtnInsHeader": "Header/Footer",
- "SSE.Views.Toolbar.tipEditHeader": "Edit header or footer",
- "SSE.Views.Toolbar.textTabData": "Data",
- "SSE.Views.Toolbar.textTabFormula": "Formula",
"SSE.Views.Top10FilterDialog.cancelButtonText": "Cancel",
"SSE.Views.Top10FilterDialog.okButtonText": "OK",
"SSE.Views.Top10FilterDialog.textType": "Show",
@@ -2395,5 +2395,15 @@
"SSE.Views.Top10FilterDialog.txtItems": "Item",
"SSE.Views.Top10FilterDialog.txtPercent": "Percent",
"SSE.Views.Top10FilterDialog.txtTitle": "Top 10 AutoFilter",
- "SSE.Views.Top10FilterDialog.txtTop": "Top"
+ "SSE.Views.Top10FilterDialog.txtTop": "Top",
+ "SSE.Views.Spellcheck.txtSpelling": "Spelling",
+ "SSE.Views.Spellcheck.noSuggestions": "No spelling suggestions",
+ "SSE.Views.Spellcheck.textChange": "Change",
+ "SSE.Views.Spellcheck.textChangeAll": "Change All",
+ "SSE.Views.Spellcheck.textIgnore": "Ignore",
+ "SSE.Views.Spellcheck.textIgnoreAll": "Ignore All",
+ "SSE.Views.Spellcheck.txtAddToDictionary": "Add To Dictionary",
+ "SSE.Views.Spellcheck.txtDictionaryLanguage": "Dictionary Language",
+ "SSE.Views.Spellcheck.txtComplete": "Spellcheck has been complete",
+ "SSE.Views.Spellcheck.txtNextTip": "Go to the next word"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json
index 36f8ef606..494fc02c7 100644
--- a/apps/spreadsheeteditor/main/locale/es.json
+++ b/apps/spreadsheeteditor/main/locale/es.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Cancelar",
"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. Sólo dos usuarios pueden editar el documento simultáneamente. ¿Quiere más? Compre la edición Empresa ONLYOFFICE. Saber más",
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
@@ -90,6 +89,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 gestionar derechos de acceso a documentos",
"Common.Views.Header.txtAccessRights": "Cambir derechos de acceso",
@@ -222,6 +222,7 @@
"Common.Views.SignSettingsDialog.textShowDate": "Presentar fecha de la firma",
"Common.Views.SignSettingsDialog.textTitle": "Preparación de la firma",
"Common.Views.SignSettingsDialog.txtEmpty": "Este campo es obligatorio",
+ "SSE.Controllers.DataTab.textWizard": "Asistente para convertir texto en columnas",
"SSE.Controllers.DocumentHolder.alignmentText": "Alineación",
"SSE.Controllers.DocumentHolder.centerText": "Al centro",
"SSE.Controllers.DocumentHolder.deleteColumnText": "Eliminar columna",
@@ -370,15 +371,15 @@
"SSE.Controllers.DocumentHolder.txtUseTextImport": "Usar el Asistente para importar texto",
"SSE.Controllers.DocumentHolder.txtWidth": "Ancho",
"SSE.Controllers.FormulaDialog.sCategoryAll": "Todo",
- "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 últimas utilizadas",
- "SSE.Controllers.FormulaDialog.sCategoryLogical": "Lógico",
"SSE.Controllers.FormulaDialog.sCategoryCube": "Cubo",
- "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Base de Datos",
+ "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Base de datos",
"SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Fecha y hora",
- "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Ingenería",
- "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financial",
+ "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Ingeniería",
+ "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financiero",
"SSE.Controllers.FormulaDialog.sCategoryInformation": "Información",
- "SSE.Controllers.FormulaDialog.sCategoryLookupAndReferences": "Búsqueda y referencia",
+ "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 usados por última vez",
+ "SSE.Controllers.FormulaDialog.sCategoryLogical": "Lógico",
+ "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Búsqueda y Referencia",
"SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matemáticas y trigonometría",
"SSE.Controllers.FormulaDialog.sCategoryStatistical": "Estadístico",
"SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Texto y datos",
@@ -404,7 +405,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión superado.",
"SSE.Controllers.Main.criticalErrorExtText": "Pulse \"OK\" para regresar a la lista de documentos.",
"SSE.Controllers.Main.criticalErrorTitle": "Error",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Error de descarga.",
"SSE.Controllers.Main.downloadTextText": "Cargando hoja de cálculo...",
"SSE.Controllers.Main.downloadTitleText": "Cargando hoja de cálculo",
@@ -415,9 +415,10 @@
"SSE.Controllers.Main.errorAutoFilterDataRange": "No se puede realizar la operación para el rango de celdas seleccionado. Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.",
"SSE.Controllers.Main.errorAutoFilterHiddenRange": "No se puede realizar la operación porque el área contiene celdas filtradas. Por favor muestre los elementos filtrados y vuelva a intentarlo.",
"SSE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
+ "SSE.Controllers.Main.errorCannotUngroup": "No se puede desagrupar. Para crear un esquema de documento seleccione filas o columnas y agrúpelas.",
"SSE.Controllers.Main.errorChangeArray": "No se puede cambiar parte de una matriz.",
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.",
- "SSE.Controllers.Main.errorConnectToServer": "No se pudo guardar el documento. Por favor, compruebe la configuración de conexión o póngase en contacto con el administrador. Al hacer clic en el botón \"Aceptar\", se le pedirá que descargue el documento. Encuentre más información acerca de la conexión Servidor de Documentosaquí",
+ "SSE.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. Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.
Encuentre más información acerca de la conexión de Servidor de Documentos aquí",
"SSE.Controllers.Main.errorCopyMultiselectArea": "No se puede usar este comando con varias selecciones. Seleccione un solo rango y intente de nuevo.",
"SSE.Controllers.Main.errorCountArg": "Un error en la fórmula introducida. Número de argumentos incorrecto es usado.",
"SSE.Controllers.Main.errorCountArgExceed": "Un error en la fórmula introducida. Número de argumentos es excedido.",
@@ -436,6 +437,7 @@
"SSE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras guardaba el archivo. Por favor use la opción \"Descargar\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.",
"SSE.Controllers.Main.errorFormulaName": "Un error en la fórmula introducida. Nombre de fórmula incorrecto.",
"SSE.Controllers.Main.errorFormulaParsing": "Error interno mientras analizando la fórmula.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "Valores de texto en fórmulas son limitados al número de caracteres - 255. Use la función CONCATENAR u operador de concatenación (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "La función se refiere a una hoja que no existe. Por favor, compruebe los datos e inténtelo de nuevo.",
"SSE.Controllers.Main.errorInvalidRef": "Introducir un nombre correcto para la selección o una referencia válida para ir a.",
"SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
@@ -501,7 +503,7 @@
"SSE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador. Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"SSE.Controllers.Main.textLoadingDocument": "Cargando hoja de cálculo",
"SSE.Controllers.Main.textNo": "No",
- "SSE.Controllers.Main.textNoLicenseTitle": "Límite de conexión de ONLYOFFICE",
+ "SSE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones",
"SSE.Controllers.Main.textPaidFeature": "Función de pago",
"SSE.Controllers.Main.textPleaseWait": "El proceso puede durar un buen rato. Espere por favor...",
"SSE.Controllers.Main.textRecalcFormulas": "Calculando formulas...",
@@ -736,7 +738,7 @@
"SSE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado. Por favor, actualice su licencia y después recargue la página.",
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura. Por favor, contacte con su administrador para recibir más información.",
"SSE.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. Si se requiere más, por favor, considere comprar una licencia comercial.",
- "SSE.Controllers.Main.warnNoLicenseUsers": "Esta versión de Editores de ONLYOFFICE tiene ciertas limitaciones para usuarios simultáneos. Si se requiere más, por favor, considere comprar una licencia comercial.",
+ "SSE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos. Si necesita más, por favor, considere comprar una licencia comercial.",
"SSE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
"SSE.Controllers.Print.strAllSheets": "Todas las hojas",
"SSE.Controllers.Print.textWarning": "Aviso",
@@ -1146,8 +1148,6 @@
"SSE.Views.CellSettings.textNewColor": "Color personalizado",
"SSE.Views.CellSettings.textOrientation": "Orientación del texto",
"SSE.Views.CellSettings.textSelectBorders": "Seleccione bordes que desea cambiar aplicando estilo seleccionado",
- "SSE.Views.CellSettings.textTextToColumn": "Texto en columnas",
- "SSE.Views.CellSettings.textWizard": "Asistente para convertir texto en columnas",
"SSE.Views.CellSettings.tipAll": "Establecer borde exterior y todas las líneas interiores ",
"SSE.Views.CellSettings.tipBottom": "Establecer sólo borde exterior inferior",
"SSE.Views.CellSettings.tipDiagD": "Establecer borde diagonal abajo",
@@ -1329,6 +1329,15 @@
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Título del eje Y",
"SSE.Views.ChartSettingsDlg.textZero": "Cero",
"SSE.Views.ChartSettingsDlg.txtEmpty": "Este campo es obligatorio",
+ "SSE.Views.DataTab.capBtnGroup": "Agrupar",
+ "SSE.Views.DataTab.capBtnTextToCol": "Texto en columnas",
+ "SSE.Views.DataTab.capBtnUngroup": "Desagrupar",
+ "SSE.Views.DataTab.textClear": "Borrar esquema",
+ "SSE.Views.DataTab.textColumns": "Desagrupar columnas",
+ "SSE.Views.DataTab.textRows": "Desagrupar filas",
+ "SSE.Views.DataTab.tipGroup": "Agrupar rango de celdas",
+ "SSE.Views.DataTab.tipToColumns": "Dividir texto de celda en columnas",
+ "SSE.Views.DataTab.tipUngroup": "Desagrupar rango de celdas",
"SSE.Views.DigitalFilterDialog.cancelButtonText": "Cancelar",
"SSE.Views.DigitalFilterDialog.capAnd": "Y",
"SSE.Views.DigitalFilterDialog.capCondition1": "iguales",
@@ -1493,13 +1502,21 @@
"SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "De plantilla",
"SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Cree nueva hoja de cálculo en blanco para poder ajustar sus estilos y el formato. O seleccione una de las plantillas para iniciar hoja de cálculo de cierto tipo o motivo donde algunos estilos se han aplicado antes.",
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nueva hoja de cálculo",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Añadir autor",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Añadir texto",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicación",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambiar derechos de acceso",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Fecha de creación",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentario",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creada",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificación por",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificación",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietario",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título de hoja de cálculo",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar derechos de acceso",
"SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Personas que tienen derechos",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar",
@@ -1594,6 +1611,51 @@
"SSE.Views.FormulaDialog.textGroupDescription": "Seleccionar grupo de función",
"SSE.Views.FormulaDialog.textListDescription": "Seleccionar función",
"SSE.Views.FormulaDialog.txtTitle": "Insertar función",
+ "SSE.Views.FormulaTab.txtAdditional": "Adicional",
+ "SSE.Views.FormulaTab.txtAutosum": "Autosuma",
+ "SSE.Views.FormulaTab.txtAutosumTip": "Suma",
+ "SSE.Views.FormulaTab.txtFormula": "Función",
+ "SSE.Views.FormulaTab.txtFormulaTip": "Insertar función",
+ "SSE.Views.FormulaTab.txtMore": "Más funciones",
+ "SSE.Views.FormulaTab.txtRecent": "Usados recientemente",
+ "SSE.Views.GroupDialog.cancelButtonText": "Cancelar",
+ "SSE.Views.GroupDialog.okButtonText": "OK",
+ "SSE.Views.GroupDialog.textColumns": "Columnas",
+ "SSE.Views.GroupDialog.textRows": "Filas",
+ "SSE.Views.HeaderFooterDialog.cancelButtonText": "Cancelar",
+ "SSE.Views.HeaderFooterDialog.okButtonText": "OK",
+ "SSE.Views.HeaderFooterDialog.textAlign": "Alinear con márgenes de página",
+ "SSE.Views.HeaderFooterDialog.textAll": "Todas las páginas",
+ "SSE.Views.HeaderFooterDialog.textBold": "Negrita",
+ "SSE.Views.HeaderFooterDialog.textCenter": "Al centro",
+ "SSE.Views.HeaderFooterDialog.textColor": "Color de texto",
+ "SSE.Views.HeaderFooterDialog.textDate": "Fecha",
+ "SSE.Views.HeaderFooterDialog.textDiffFirst": "Primera página diferente",
+ "SSE.Views.HeaderFooterDialog.textDiffOdd": "Páginas impares y pares diferentes",
+ "SSE.Views.HeaderFooterDialog.textEven": "Página par",
+ "SSE.Views.HeaderFooterDialog.textFileName": "Nombre de archivo",
+ "SSE.Views.HeaderFooterDialog.textFirst": "Primera página",
+ "SSE.Views.HeaderFooterDialog.textFooter": "Pie de página",
+ "SSE.Views.HeaderFooterDialog.textHeader": "Encabezado",
+ "SSE.Views.HeaderFooterDialog.textInsert": "Insertar",
+ "SSE.Views.HeaderFooterDialog.textItalic": "Cursiva",
+ "SSE.Views.HeaderFooterDialog.textLeft": "A la izquierda",
+ "SSE.Views.HeaderFooterDialog.textNewColor": "Añadir nuevo color personalizado",
+ "SSE.Views.HeaderFooterDialog.textOdd": "Página impar",
+ "SSE.Views.HeaderFooterDialog.textPageCount": "Número de páginas",
+ "SSE.Views.HeaderFooterDialog.textPageNum": "Número de página",
+ "SSE.Views.HeaderFooterDialog.textPresets": "Preestablecidos",
+ "SSE.Views.HeaderFooterDialog.textRight": "A la derecha",
+ "SSE.Views.HeaderFooterDialog.textScale": "Escalar con documento",
+ "SSE.Views.HeaderFooterDialog.textSheet": "Nombre de hoja",
+ "SSE.Views.HeaderFooterDialog.textStrikeout": "Tachado",
+ "SSE.Views.HeaderFooterDialog.textSubscript": "Subíndice",
+ "SSE.Views.HeaderFooterDialog.textSuperscript": "Superíndice",
+ "SSE.Views.HeaderFooterDialog.textTime": "Hora",
+ "SSE.Views.HeaderFooterDialog.textTitle": "Ajustes de encabezado / pie de página",
+ "SSE.Views.HeaderFooterDialog.textUnderline": "Subrayado",
+ "SSE.Views.HeaderFooterDialog.tipFontName": "Fuente",
+ "SSE.Views.HeaderFooterDialog.tipFontSize": "Tamaño de fuente",
"SSE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancelar",
"SSE.Views.HyperlinkSettingsDialog.strDisplay": "Mostrar",
"SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Enlace a",
@@ -2091,6 +2153,7 @@
"SSE.Views.TextArtSettings.txtPapyrus": "Papiro",
"SSE.Views.TextArtSettings.txtWood": "Madera",
"SSE.Views.Toolbar.capBtnComment": "Comentario",
+ "SSE.Views.Toolbar.capBtnInsHeader": "Encabezado/Pie de página",
"SSE.Views.Toolbar.capBtnMargins": "Márgenes",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientación ",
"SSE.Views.Toolbar.capBtnPageSize": "Tamaño",
@@ -2176,7 +2239,9 @@
"SSE.Views.Toolbar.textSuperscript": "Sobreíndice",
"SSE.Views.Toolbar.textSurface": "Superficie",
"SSE.Views.Toolbar.textTabCollaboration": "Colaboración",
+ "SSE.Views.Toolbar.textTabData": "Datos",
"SSE.Views.Toolbar.textTabFile": "Archivo",
+ "SSE.Views.Toolbar.textTabFormula": "Fórmula",
"SSE.Views.Toolbar.textTabHome": "Inicio",
"SSE.Views.Toolbar.textTabInsert": "Insertar",
"SSE.Views.Toolbar.textTabLayout": "Diseño",
@@ -2209,6 +2274,7 @@
"SSE.Views.Toolbar.tipDigStyleCurrency": "Estilo de moneda",
"SSE.Views.Toolbar.tipDigStylePercent": "Estilo por ciento",
"SSE.Views.Toolbar.tipEditChart": "Editar gráfico",
+ "SSE.Views.Toolbar.tipEditHeader": "Editar encabezado o pie de página",
"SSE.Views.Toolbar.tipFontColor": "Color de letra",
"SSE.Views.Toolbar.tipFontName": "Letra ",
"SSE.Views.Toolbar.tipFontSize": "Tamaño de letra",
@@ -2224,6 +2290,7 @@
"SSE.Views.Toolbar.tipInsertImage": "Insertar imagen",
"SSE.Views.Toolbar.tipInsertOpt": "Insertar celdas",
"SSE.Views.Toolbar.tipInsertShape": "Insertar autoforma",
+ "SSE.Views.Toolbar.tipInsertTable": "Insertar tabla",
"SSE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
"SSE.Views.Toolbar.tipInsertTextart": "Inserta Texto Arte",
"SSE.Views.Toolbar.tipMerge": "Unir",
diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json
index fce8d994f..925dbb76e 100644
--- a/apps/spreadsheeteditor/main/locale/fr.json
+++ b/apps/spreadsheeteditor/main/locale/fr.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Annuler",
"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. Ce ne sont que deux utilisateurs qui peuvent éditer le document simultanément. Voulez plus ? Envisagez d'acheter ONLYOFFICE Enterprise Edition. En savoir plus",
"Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
@@ -236,6 +235,7 @@
"SSE.Controllers.FormulaDialog.sCategoryMathematic": "Maths et trigonométrie",
"SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistiques",
"SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Texte et données",
+ "SSE.Controllers.DataTab.textWizard": "Assistant conversion de texte en colonnes",
"SSE.Controllers.DocumentHolder.alignmentText": "Alignement",
"SSE.Controllers.DocumentHolder.centerText": "Au centre",
"SSE.Controllers.DocumentHolder.deleteColumnText": "Supprimer la colonne",
@@ -405,7 +405,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.",
"SSE.Controllers.Main.criticalErrorExtText": "Cliquez sur \"OK\" pour revenir à la liste des documents.",
"SSE.Controllers.Main.criticalErrorTitle": "Erreur",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Échec du téléchargement.",
"SSE.Controllers.Main.downloadTextText": "Téléchargement de la feuille de calcul en cours...",
"SSE.Controllers.Main.downloadTitleText": "Téléchargement de la feuille de calcul",
@@ -1147,8 +1146,6 @@
"SSE.Views.CellSettings.textNewColor": "Couleur personnalisée",
"SSE.Views.CellSettings.textOrientation": "Orientation du texte",
"SSE.Views.CellSettings.textSelectBorders": "Sélectionnez les bordures à modifier en appliquant le style choisi ci-dessus",
- "SSE.Views.CellSettings.textTextToColumn": "Texte en colonnes",
- "SSE.Views.CellSettings.textWizard": "Assistant conversion de texte en colonnes",
"SSE.Views.CellSettings.tipAll": "Fixer bordure extérieure et la toutes lignes intérieures",
"SSE.Views.CellSettings.tipBottom": "Fixer seulement bordure extérieure inférieure",
"SSE.Views.CellSettings.tipDiagD": "Fixer Bordure Diagonale Basse",
@@ -1330,6 +1327,7 @@
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titre de l'axe Y",
"SSE.Views.ChartSettingsDlg.textZero": "Valeur nulle",
"SSE.Views.ChartSettingsDlg.txtEmpty": "Ce champ est obligatoire",
+ "SSE.Views.DataTab.capBtnTextToCol": "Texte en colonnes",
"SSE.Views.DigitalFilterDialog.cancelButtonText": "Annuler",
"SSE.Views.DigitalFilterDialog.capAnd": "Et",
"SSE.Views.DigitalFilterDialog.capCondition1": "est égal",
@@ -1497,7 +1495,7 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Changer les droits d'accès",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Date de création",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propriétaire",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Emplacement",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personnes qui ont des droits",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre du classeur",
@@ -1595,6 +1593,10 @@
"SSE.Views.FormulaDialog.textGroupDescription": "Sélectionner un groupe de fonctions",
"SSE.Views.FormulaDialog.textListDescription": "Sélectionner une fonction",
"SSE.Views.FormulaDialog.txtTitle": "Insérer une fonction",
+ "SSE.Views.HeaderFooterDialog.okButtonText": "OK",
+ "SSE.Views.HeaderFooterDialog.textColor": "Couleur du texte",
+ "SSE.Views.HeaderFooterDialog.textSheet": "Nom de feuille",
+ "SSE.Views.HeaderFooterDialog.textSuperscript": "Exposant",
"SSE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annuler",
"SSE.Views.HyperlinkSettingsDialog.strDisplay": "Afficher",
"SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Lier à",
diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json
index f64b1aa5f..99076bd1a 100644
--- a/apps/spreadsheeteditor/main/locale/hu.json
+++ b/apps/spreadsheeteditor/main/locale/hu.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Mégse",
"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. Csak két felhasználó szerkesztheti egyszerre a dokumentumot. Többet szeretne? Fontolja meg az ONLYOFFICE Vállalati Kiadás megvásárlását Tudjon meg többet",
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
@@ -389,7 +388,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.",
"SSE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\" gombot a dokumentumlistához való visszatéréshez.",
"SSE.Controllers.Main.criticalErrorTitle": "Hiba",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Táblázatkezelő",
"SSE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.",
"SSE.Controllers.Main.downloadTextText": "Munkafüzet letöltése...",
"SSE.Controllers.Main.downloadTitleText": "Munkafüzet letöltése",
@@ -1415,7 +1413,6 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikáció",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Szerző",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Hozzáférési jogok módosítása",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Létrehozás dátuma",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Hely",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Jogosult személyek",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Munkafüzet cím",
diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json
index a1ed53063..4a84e34f7 100644
--- a/apps/spreadsheeteditor/main/locale/it.json
+++ b/apps/spreadsheeteditor/main/locale/it.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Annulla",
"Common.Controllers.Chat.notcriticalErrorTitle": "Avviso",
"Common.Controllers.Chat.textEnterMessage": "Scrivi il tuo messaggio qui",
- "Common.Controllers.Chat.textUserLimit": "Stai usando ONLYOFFICE Free Edition. Solo due utenti possono modificare il documento contemporaneamente. Si desidera di più? Considera l'acquisto di ONLYOFFICE Enterprise Edition. Ulteriori informazioni",
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
@@ -90,6 +89,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",
@@ -182,12 +182,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",
@@ -222,19 +223,7 @@
"Common.Views.SignSettingsDialog.textShowDate": "Mostra la data nella riga di Firma",
"Common.Views.SignSettingsDialog.textTitle": "Impostazioni firma",
"Common.Views.SignSettingsDialog.txtEmpty": "Campo obbligatorio",
- "SSE.Controllers.FormulaDialog.sCategoryAll": "Tutto",
- "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 ultime utilizzate",
- "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logico",
- "SSE.Controllers.FormulaDialog.sCategoryCube": "Cubo",
- "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Banca dati",
- "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Data e ora",
- "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Ingegneria",
- "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Finanziario",
- "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informazioni",
- "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Ricerca e Riferimento",
- "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matematiche e trigonometriche",
- "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistico",
- "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Testo e dati",
+ "SSE.Controllers.DataTab.textWizard": "Procedura guidata da testo a colonne",
"SSE.Controllers.DocumentHolder.alignmentText": "Allineamento",
"SSE.Controllers.DocumentHolder.centerText": "Al centro",
"SSE.Controllers.DocumentHolder.deleteColumnText": "Elimina colonna",
@@ -316,6 +305,7 @@
"SSE.Controllers.DocumentHolder.txtHideTop": "Nascondi bordo superiore",
"SSE.Controllers.DocumentHolder.txtHideTopLimit": "Nascondi limite superiore",
"SSE.Controllers.DocumentHolder.txtHideVer": "Nascondi linea verticale",
+ "SSE.Controllers.DocumentHolder.txtImportWizard": "Procedura guidata di importazione del testo",
"SSE.Controllers.DocumentHolder.txtIncreaseArg": "Aumenta dimensione argomento",
"SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Inserisci argomento dopo",
"SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Inserisci argomento prima",
@@ -379,7 +369,21 @@
"SSE.Controllers.DocumentHolder.txtTop": "In cima",
"SSE.Controllers.DocumentHolder.txtUnderbar": "Barra sotto al testo",
"SSE.Controllers.DocumentHolder.txtUndoExpansion": "Annulla l'espansione automatica della tabella",
+ "SSE.Controllers.DocumentHolder.txtUseTextImport": "Usa la procedura guidata di importazione del testo",
"SSE.Controllers.DocumentHolder.txtWidth": "Larghezza",
+ "SSE.Controllers.FormulaDialog.sCategoryAll": "Tutti",
+ "SSE.Controllers.FormulaDialog.sCategoryCube": "Cubo",
+ "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database",
+ "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Data e ora",
+ "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Ingegneria",
+ "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Finanziario",
+ "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informazioni",
+ "SSE.Controllers.FormulaDialog.sCategoryLast10": "Gli ultimi 10 utilizzati",
+ "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logico",
+ "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Ricerca e Riferimento",
+ "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matematica e trigonometria",
+ "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistico",
+ "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Testo e dati",
"SSE.Controllers.LeftMenu.newDocumentTitle": "Foglio elettronico senza nome",
"SSE.Controllers.LeftMenu.textByColumns": "Per colonne",
"SSE.Controllers.LeftMenu.textByRows": "Per righe",
@@ -402,7 +406,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "E' stato superato il tempo limite della conversione.",
"SSE.Controllers.Main.criticalErrorExtText": "Clicca su \"OK\" per ritornare all'elenco dei documenti.",
"SSE.Controllers.Main.criticalErrorTitle": "Errore",
- "SSE.Controllers.Main.defaultTitleText": "Editor dei fogli di calcolo ONLYOFFICE® ",
"SSE.Controllers.Main.downloadErrorText": "Download fallito.",
"SSE.Controllers.Main.downloadTextText": "Download del foglio di calcolo in corso...",
"SSE.Controllers.Main.downloadTitleText": "Download del foglio di calcolo",
@@ -413,9 +416,10 @@
"SSE.Controllers.Main.errorAutoFilterDataRange": "Impossibile eseguire l'operazione per l'intervallo celle selezionato. Seleziona un intervallo di celle uniforme all'interno o all'esterno della tabella e riprova.",
"SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'operazione non può essere eseguita perché l'area contiene celle filtrate Scopri gli elementi filtrati e riprova.",
"SSE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto",
+ "SSE.Controllers.Main.errorCannotUngroup": "Impossibile separare. Per iniziare una struttura, seleziona le righe o le colonne interessate e raggruppale.",
"SSE.Controllers.Main.errorChangeArray": "Non è possibile modificare parte di un array.",
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Connessione al server persa. Impossibile modificare il documento.",
- "SSE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore. Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.
Per maggiori dettagli sulla connessione al Document Server clicca qui",
+ "SSE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore. Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.
Per maggiori dettagli sulla connessione al Document Server here",
"SSE.Controllers.Main.errorCopyMultiselectArea": "Questo comando non può essere applicato a selezioni multiple. Seleziona un intervallo singolo e riprova.",
"SSE.Controllers.Main.errorCountArg": "Un errore nella formula inserita. E' stato utilizzato un numero di argomento scorretto.",
"SSE.Controllers.Main.errorCountArgExceed": "Un errore nella formula inserita. E' stato superato il numero di argomenti.",
@@ -434,6 +438,7 @@
"SSE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.",
"SSE.Controllers.Main.errorFormulaName": "Un errore nella formula inserita. E' stato il nome formula scorretto.",
"SSE.Controllers.Main.errorFormulaParsing": "Si è verificato un errore durante l'analisi della formula.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "I valori di testo nelle formule sono limitati a 255 caratteri. Utilizzare la funzione CONCATENATE o l'operatore di concatenazione (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "La funzione si riferisce a un foglio inesistente. Verifica i dati e riprova.",
"SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"SSE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
@@ -444,6 +449,7 @@
"SSE.Controllers.Main.errorMaxPoints": "Il numero massimo di punti in serie per grafico è di 4096.",
"SSE.Controllers.Main.errorMoveRange": "Impossibile modificare una parte della cella unita",
"SSE.Controllers.Main.errorMultiCellFormula": "Le formule di matrice multicellulare non sono consentite nelle tabelle.",
+ "SSE.Controllers.Main.errorNoDataToParse": "Nessun dato selezionato per l'analisi.",
"SSE.Controllers.Main.errorOpenWarning": "La lunghezza di una delle formule nel file ha superato il numero consentito di caratteri ed è stato rimosso.",
"SSE.Controllers.Main.errorOperandExpected": "La sintassi per la funzione inserita non è corretta. Controlla se hai dimenticato una delle parentesi - '(' oppure ')'",
"SSE.Controllers.Main.errorPasteMaxRange": "l'area di copia-incolla non coincide. Selezionare un'area con le stesse dimensioni o fare click sulla prima cella in una riga per incollare le celle copiate.",
@@ -498,7 +504,7 @@
"SSE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
"SSE.Controllers.Main.textLoadingDocument": "Caricamento del foglio di calcolo",
"SSE.Controllers.Main.textNo": "No",
- "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE® limite connessione",
+ "SSE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
"SSE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
"SSE.Controllers.Main.textPleaseWait": "L'operazione può richiedere più tempo. Per favore, attendi...",
"SSE.Controllers.Main.textRecalcFormulas": "Calcolo delle formule in corso...",
@@ -523,6 +529,12 @@
"SSE.Controllers.Main.txtPrintArea": "Area di stampa",
"SSE.Controllers.Main.txtRectangles": "Rettangoli",
"SSE.Controllers.Main.txtSeries": "Serie",
+ "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Callout Linea con bordo e barra in risalto",
+ "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Callout Linea piegata con bordo e barra in risalto",
+ "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Callout Doppia linea piegata con barra e bordo in risalto",
+ "SSE.Controllers.Main.txtShape_accentCallout1": "Callout Linea con barra in risalto",
+ "SSE.Controllers.Main.txtShape_accentCallout2": "Callout Linea piegata con barra in risalto",
+ "SSE.Controllers.Main.txtShape_accentCallout3": "Callout Doppia linea piegata con barra in risalto",
"SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Indietro o Pulsante Precedente",
"SSE.Controllers.Main.txtShape_actionButtonBeginning": "Pulsante di Inizio",
"SSE.Controllers.Main.txtShape_actionButtonBlank": "Pulsante Vuoto",
@@ -532,25 +544,50 @@
"SSE.Controllers.Main.txtShape_actionButtonHelp": "Pulsante Aiuto",
"SSE.Controllers.Main.txtShape_actionButtonHome": "Pulsante Home",
"SSE.Controllers.Main.txtShape_actionButtonInformation": "Pulsante Informazioni",
+ "SSE.Controllers.Main.txtShape_actionButtonMovie": "Pulsante Film",
"SSE.Controllers.Main.txtShape_actionButtonReturn": "Pulsante Invio",
"SSE.Controllers.Main.txtShape_actionButtonSound": "Pulsante Suono",
"SSE.Controllers.Main.txtShape_arc": "Arco",
"SSE.Controllers.Main.txtShape_bentArrow": "Freccia piegata",
+ "SSE.Controllers.Main.txtShape_bentConnector5": "Connettore a gomito",
+ "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connettore freccia a gomito",
+ "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connettore doppia freccia a gomito",
"SSE.Controllers.Main.txtShape_bentUpArrow": "Freccia curva in alto",
"SSE.Controllers.Main.txtShape_bevel": "Smussato",
"SSE.Controllers.Main.txtShape_blockArc": "Arco a tutto sesto",
- "SSE.Controllers.Main.txtShape_chevron": "Gallone",
+ "SSE.Controllers.Main.txtShape_borderCallout1": "Callout Linea",
+ "SSE.Controllers.Main.txtShape_borderCallout2": "Callout Linea piegata",
+ "SSE.Controllers.Main.txtShape_borderCallout3": "Callout Doppia linea piegata",
+ "SSE.Controllers.Main.txtShape_bracePair": "Doppia parentesi graffa",
+ "SSE.Controllers.Main.txtShape_callout1": "Callout Linea senza bordo",
+ "SSE.Controllers.Main.txtShape_callout2": "Callout Linea piegata senza bordo ",
+ "SSE.Controllers.Main.txtShape_callout3": "Callout Doppia linea piegata senza bordo",
+ "SSE.Controllers.Main.txtShape_can": "Cilindro",
+ "SSE.Controllers.Main.txtShape_chevron": "freccia a Gallone",
+ "SSE.Controllers.Main.txtShape_chord": "Corda",
"SSE.Controllers.Main.txtShape_circularArrow": "Freccia circolare",
"SSE.Controllers.Main.txtShape_cloud": "Nuvola",
+ "SSE.Controllers.Main.txtShape_cloudCallout": "Callout Nuvola",
"SSE.Controllers.Main.txtShape_corner": "Angolo",
"SSE.Controllers.Main.txtShape_cube": "Cubo",
+ "SSE.Controllers.Main.txtShape_curvedConnector3": "Connettore curvo",
+ "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Connettore a freccia curva",
+ "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connettore a doppia freccia curva",
+ "SSE.Controllers.Main.txtShape_curvedDownArrow": "Freccia curva in basso",
+ "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Freccia curva a sinistra",
+ "SSE.Controllers.Main.txtShape_curvedRightArrow": "Freccia curva a destra",
+ "SSE.Controllers.Main.txtShape_curvedUpArrow": "Freccia curva in su",
"SSE.Controllers.Main.txtShape_decagon": "Decagono",
"SSE.Controllers.Main.txtShape_diagStripe": "Striscia diagonale",
"SSE.Controllers.Main.txtShape_diamond": "Diamante",
"SSE.Controllers.Main.txtShape_dodecagon": "Dodecagono",
"SSE.Controllers.Main.txtShape_donut": "Ciambella",
"SSE.Controllers.Main.txtShape_doubleWave": "Onda doppia",
+ "SSE.Controllers.Main.txtShape_downArrow": "Freccia in giù",
+ "SSE.Controllers.Main.txtShape_downArrowCallout": "Callout Freccia in basso",
"SSE.Controllers.Main.txtShape_ellipse": "Ellisse",
+ "SSE.Controllers.Main.txtShape_ellipseRibbon": "Nastro curvo e inclinato in basso",
+ "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Nastro curvato in alto",
"SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagramma di flusso: processo alternativo",
"SSE.Controllers.Main.txtShape_flowChartCollate": "Diagramma di flusso: Fascicolazione",
"SSE.Controllers.Main.txtShape_flowChartConnector": "Diagramma di flusso: Connettore",
@@ -579,7 +616,9 @@
"SSE.Controllers.Main.txtShape_flowChartSort": "Diagramma di flusso: Ordinamento",
"SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagramma di flusso: Giunzione di somma",
"SSE.Controllers.Main.txtShape_flowChartTerminator": "Diagramma di flusso: Terminatore",
+ "SSE.Controllers.Main.txtShape_foldedCorner": "angolo ripiegato",
"SSE.Controllers.Main.txtShape_frame": "Cornice",
+ "SSE.Controllers.Main.txtShape_halfFrame": "Mezza Cornice",
"SSE.Controllers.Main.txtShape_heart": "Cuore",
"SSE.Controllers.Main.txtShape_heptagon": "Ettagono",
"SSE.Controllers.Main.txtShape_hexagon": "Esagono",
@@ -588,16 +627,26 @@
"SSE.Controllers.Main.txtShape_irregularSeal1": "Esplosione 1",
"SSE.Controllers.Main.txtShape_irregularSeal2": "Esplosione 2",
"SSE.Controllers.Main.txtShape_leftArrow": "Freccia Sinistra",
+ "SSE.Controllers.Main.txtShape_leftArrowCallout": "Callout Freccia a sinistra",
+ "SSE.Controllers.Main.txtShape_leftBrace": "Parentesi graffa aperta",
+ "SSE.Controllers.Main.txtShape_leftBracket": "Parentesi quadra aperta",
+ "SSE.Controllers.Main.txtShape_leftRightArrow": "Freccia bidirezionale sinistra destra",
+ "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Callout Freccia bidirezionane sinistra destra",
+ "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Freccia tridirezionale sinistra destra alto",
+ "SSE.Controllers.Main.txtShape_leftUpArrow": "Freccia bidirezionale sinistra alto",
+ "SSE.Controllers.Main.txtShape_lightningBolt": "Fulmine",
"SSE.Controllers.Main.txtShape_line": "Linea",
"SSE.Controllers.Main.txtShape_lineWithArrow": "Freccia",
"SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Freccia doppia",
"SSE.Controllers.Main.txtShape_mathDivide": "Divisione",
"SSE.Controllers.Main.txtShape_mathEqual": "Uguale",
"SSE.Controllers.Main.txtShape_mathMinus": "Meno",
+ "SSE.Controllers.Main.txtShape_mathMultiply": "Moltiplicazione",
"SSE.Controllers.Main.txtShape_mathNotEqual": "Non uguale",
"SSE.Controllers.Main.txtShape_mathPlus": "Più",
"SSE.Controllers.Main.txtShape_moon": "Luna",
"SSE.Controllers.Main.txtShape_noSmoking": "Simbolo \"No\"",
+ "SSE.Controllers.Main.txtShape_notchedRightArrow": "Freccia dentellata a destra ",
"SSE.Controllers.Main.txtShape_octagon": "Ottagono",
"SSE.Controllers.Main.txtShape_parallelogram": "Parallelogramma",
"SSE.Controllers.Main.txtShape_pentagon": "Pentagono",
@@ -606,9 +655,25 @@
"SSE.Controllers.Main.txtShape_plus": "Più",
"SSE.Controllers.Main.txtShape_polyline1": "Bozza",
"SSE.Controllers.Main.txtShape_polyline2": "Forma libera",
+ "SSE.Controllers.Main.txtShape_quadArrow": "Freccia a incrocio",
+ "SSE.Controllers.Main.txtShape_quadArrowCallout": "Callout Freccia a incrocio",
"SSE.Controllers.Main.txtShape_rect": "Rettangolo",
+ "SSE.Controllers.Main.txtShape_ribbon": "Nastro inclinato in basso",
+ "SSE.Controllers.Main.txtShape_ribbon2": "Nastro inclinato in alto",
"SSE.Controllers.Main.txtShape_rightArrow": "Freccia destra",
+ "SSE.Controllers.Main.txtShape_rightArrowCallout": "Callout Freccia a destra",
+ "SSE.Controllers.Main.txtShape_rightBrace": "Parentesi graffa chiusa",
+ "SSE.Controllers.Main.txtShape_rightBracket": "Parentesi quadra chiusa",
+ "SSE.Controllers.Main.txtShape_round1Rect": "Rettangolo ad angolo singolo smussato",
+ "SSE.Controllers.Main.txtShape_round2DiagRect": "Rettangolo ad angolo diagonale smussato",
+ "SSE.Controllers.Main.txtShape_round2SameRect": "Rettangolo smussato dallo stesso lato",
+ "SSE.Controllers.Main.txtShape_roundRect": "Rettangolo ad angoli smussati",
+ "SSE.Controllers.Main.txtShape_rtTriangle": "Triangolo rettangolo",
"SSE.Controllers.Main.txtShape_smileyFace": "Faccia sorridente",
+ "SSE.Controllers.Main.txtShape_snip1Rect": "Ritaglia rettangolo ad angolo singolo",
+ "SSE.Controllers.Main.txtShape_snip2DiagRect": "Ritaglia rettangolo ad angolo diagonale",
+ "SSE.Controllers.Main.txtShape_snip2SameRect": "Ritaglia Rettangolo smussato dallo stesso lato",
+ "SSE.Controllers.Main.txtShape_snipRoundRect": "Ritaglia e smussa singolo angolo rettangolo",
"SSE.Controllers.Main.txtShape_spline": "Curva",
"SSE.Controllers.Main.txtShape_star10": "Stella a 10 punte",
"SSE.Controllers.Main.txtShape_star12": "Stella a 12 punte",
@@ -620,14 +685,21 @@
"SSE.Controllers.Main.txtShape_star6": "Stella a 6 punte",
"SSE.Controllers.Main.txtShape_star7": "Stella a 7 punte",
"SSE.Controllers.Main.txtShape_star8": "Stella a 8 punte",
+ "SSE.Controllers.Main.txtShape_stripedRightArrow": "Freccia a strisce verso destra ",
"SSE.Controllers.Main.txtShape_sun": "Sole",
"SSE.Controllers.Main.txtShape_teardrop": "Goccia",
"SSE.Controllers.Main.txtShape_textRect": "Casella di testo",
"SSE.Controllers.Main.txtShape_trapezoid": "Trapezio",
- "SSE.Controllers.Main.txtShape_triangle": "Triangolo",
+ "SSE.Controllers.Main.txtShape_triangle": "Triangolo isoscele",
"SSE.Controllers.Main.txtShape_upArrow": "Freccia su",
+ "SSE.Controllers.Main.txtShape_upArrowCallout": "Callout Freccia in alto",
+ "SSE.Controllers.Main.txtShape_upDownArrow": "Freccia bidirezionale su giù",
+ "SSE.Controllers.Main.txtShape_uturnArrow": "Freccia a inversione",
"SSE.Controllers.Main.txtShape_verticalScroll": "Scorrimento verticale",
"SSE.Controllers.Main.txtShape_wave": "Onda",
+ "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Callout Ovale",
+ "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Callout Rettangolare",
+ "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Rettangolare arrotondato",
"SSE.Controllers.Main.txtStarsRibbons": "Stelle e nastri",
"SSE.Controllers.Main.txtStyle_Bad": "rovinato",
"SSE.Controllers.Main.txtStyle_Calculation": "Calcolo",
@@ -667,7 +739,7 @@
"SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta. Si prega di aggiornare la licenza e ricaricare la pagina.",
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. Per ulteriori informazioni, contattare l'amministratore.",
"SSE.Controllers.Main.warnNoLicense": "Questa versione di ONLYOFFICE® Editors presenta delle limitazioni per le connessioni simultanee al server dei documenti. Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
- "SSE.Controllers.Main.warnNoLicenseUsers": "Questa versione di ONLYOFFICE® Editors presenta delle limitazioni per le connessioni simultanee al server dei documenti. Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
+ "SSE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 presenta alcune limitazioni per gli utenti simultanei. Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
"SSE.Controllers.Main.warnProcessRightsChange": "Ci stato negato il diritto alla modifica del file.",
"SSE.Controllers.Print.strAllSheets": "Tutti i fogli",
"SSE.Controllers.Print.textWarning": "Avviso",
@@ -1258,6 +1330,15 @@
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titolo di asse Y",
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
"SSE.Views.ChartSettingsDlg.txtEmpty": "Questo campo è richiesto",
+ "SSE.Views.DataTab.capBtnGroup": "Raggruppa",
+ "SSE.Views.DataTab.capBtnTextToCol": "Testo in colonne",
+ "SSE.Views.DataTab.capBtnUngroup": "Separa",
+ "SSE.Views.DataTab.textClear": "Elimina contorno",
+ "SSE.Views.DataTab.textColumns": "Separare le colonne",
+ "SSE.Views.DataTab.textRows": "Separare le righe",
+ "SSE.Views.DataTab.tipGroup": "Raggruppa una gamma di celle",
+ "SSE.Views.DataTab.tipToColumns": "Separa il testo della cella in colonne",
+ "SSE.Views.DataTab.tipUngroup": "Separare l'intervallo di celle",
"SSE.Views.DigitalFilterDialog.cancelButtonText": "Annulla",
"SSE.Views.DigitalFilterDialog.capAnd": "E",
"SSE.Views.DigitalFilterDialog.capCondition1": "uguali",
@@ -1422,20 +1503,28 @@
"SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Da modello",
"SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Crea un nuovo foglio di calcolo vuoto che potrai formattare durante la modifica. O scegli uno dei modelli per creare un foglio di calcolo di un certo tipo a quale sono già applicati certi stili.",
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nuovo foglio di calcolo",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Aggiungi Autore",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Aggiungi testo",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicazione",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autore",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambia diritti di accesso",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data di creazione",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commento",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creato",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Ultima modifica di",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Ultima modifica",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Proprietario",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone con diritti",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo foglio di calcolo",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambia diritti di accesso",
"SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone con diritti",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Applica",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Attiva il ripristino automatico",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Attiva salvataggio automatico",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modalità di co-editing",
- "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once",
+ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Gli altri utenti vedranno immediatamente i tuoi cambiamenti",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Dovrai accettare i cambiamenti prima di poterli visualizzare.",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hinting dei caratteri",
@@ -1443,6 +1532,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Lingua della Formula",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Esempio: SUM; MIN; MAX; COUNT",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Attivare visualizzazione dei commenti",
+ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Abilita lo stile R1C1",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Impostazioni Regionali",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Esempio: ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Attiva la visualizzazione dei commenti risolti",
@@ -1458,6 +1548,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Disattivato",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Salva sul server",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Ogni minuto",
+ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Stile di riferimento",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimetro",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Tedesco",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Inglese",
@@ -1521,6 +1612,51 @@
"SSE.Views.FormulaDialog.textGroupDescription": "Seleziona gruppo di funzioni",
"SSE.Views.FormulaDialog.textListDescription": "Seleziona funzione",
"SSE.Views.FormulaDialog.txtTitle": "Inserisci funzione",
+ "SSE.Views.FormulaTab.txtAdditional": "Più...",
+ "SSE.Views.FormulaTab.txtAutosum": "Somma automatica",
+ "SSE.Views.FormulaTab.txtAutosumTip": "Somma",
+ "SSE.Views.FormulaTab.txtFormula": "Funzione",
+ "SSE.Views.FormulaTab.txtFormulaTip": "Inserisci funzione",
+ "SSE.Views.FormulaTab.txtMore": "Altre funzioni",
+ "SSE.Views.FormulaTab.txtRecent": "Usati di recente",
+ "SSE.Views.GroupDialog.cancelButtonText": "Annulla",
+ "SSE.Views.GroupDialog.okButtonText": "OK",
+ "SSE.Views.GroupDialog.textColumns": "Colonne",
+ "SSE.Views.GroupDialog.textRows": "Righe",
+ "SSE.Views.HeaderFooterDialog.cancelButtonText": "Annulla",
+ "SSE.Views.HeaderFooterDialog.okButtonText": "OK",
+ "SSE.Views.HeaderFooterDialog.textAlign": "Allinea con i margini della pagina",
+ "SSE.Views.HeaderFooterDialog.textAll": "Tutte le pagine",
+ "SSE.Views.HeaderFooterDialog.textBold": "Grassetto",
+ "SSE.Views.HeaderFooterDialog.textCenter": "Centrato",
+ "SSE.Views.HeaderFooterDialog.textColor": "Colore del testo",
+ "SSE.Views.HeaderFooterDialog.textDate": "Data",
+ "SSE.Views.HeaderFooterDialog.textDiffFirst": "Diverso per la prima pagina",
+ "SSE.Views.HeaderFooterDialog.textDiffOdd": "Diversi per pagine pari e dispari",
+ "SSE.Views.HeaderFooterDialog.textEven": "Pagina pari",
+ "SSE.Views.HeaderFooterDialog.textFileName": "Nome file",
+ "SSE.Views.HeaderFooterDialog.textFirst": "Prima Pagina",
+ "SSE.Views.HeaderFooterDialog.textFooter": "Piè di pagina",
+ "SSE.Views.HeaderFooterDialog.textHeader": "Intestazione",
+ "SSE.Views.HeaderFooterDialog.textInsert": "Inserisci",
+ "SSE.Views.HeaderFooterDialog.textItalic": "Corsivo",
+ "SSE.Views.HeaderFooterDialog.textLeft": "A sinistra",
+ "SSE.Views.HeaderFooterDialog.textNewColor": "Colore personalizzato",
+ "SSE.Views.HeaderFooterDialog.textOdd": "Pagina dispari",
+ "SSE.Views.HeaderFooterDialog.textPageCount": "Conteggio pagine",
+ "SSE.Views.HeaderFooterDialog.textPageNum": "Numero di Pagina",
+ "SSE.Views.HeaderFooterDialog.textPresets": "Preimpostati",
+ "SSE.Views.HeaderFooterDialog.textRight": "A destra",
+ "SSE.Views.HeaderFooterDialog.textScale": "Scala con il documento",
+ "SSE.Views.HeaderFooterDialog.textSheet": "Nome foglio",
+ "SSE.Views.HeaderFooterDialog.textStrikeout": "Barrato",
+ "SSE.Views.HeaderFooterDialog.textSubscript": "Pedice",
+ "SSE.Views.HeaderFooterDialog.textSuperscript": "Apice",
+ "SSE.Views.HeaderFooterDialog.textTime": "Ora",
+ "SSE.Views.HeaderFooterDialog.textTitle": "Impostazioni intestazione / piè di pagina",
+ "SSE.Views.HeaderFooterDialog.textUnderline": "Sottolineato",
+ "SSE.Views.HeaderFooterDialog.tipFontName": "Carattere",
+ "SSE.Views.HeaderFooterDialog.tipFontSize": "Dimensione carattere",
"SSE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annulla",
"SSE.Views.HyperlinkSettingsDialog.strDisplay": "Visualizza",
"SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Collega a",
@@ -2018,6 +2154,7 @@
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Legno",
"SSE.Views.Toolbar.capBtnComment": "Commento",
+ "SSE.Views.Toolbar.capBtnInsHeader": "Inntestazioni/Piè di pagina",
"SSE.Views.Toolbar.capBtnMargins": "Margini",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientamento",
"SSE.Views.Toolbar.capBtnPageSize": "Dimensione",
@@ -2054,6 +2191,7 @@
"SSE.Views.Toolbar.textBottomBorders": "Bordi inferiori",
"SSE.Views.Toolbar.textCenterBorders": "Bordi verticali interni",
"SSE.Views.Toolbar.textCharts": "Grafici",
+ "SSE.Views.Toolbar.textClearPrintArea": "Pulisci area di stampa",
"SSE.Views.Toolbar.textClockwise": "Angolo in senso orario",
"SSE.Views.Toolbar.textColumn": "Colonna",
"SSE.Views.Toolbar.textColumnSpark": "Colonna",
@@ -2102,7 +2240,9 @@
"SSE.Views.Toolbar.textSuperscript": "Apice",
"SSE.Views.Toolbar.textSurface": "Superficie",
"SSE.Views.Toolbar.textTabCollaboration": "Collaborazione",
+ "SSE.Views.Toolbar.textTabData": "Dati",
"SSE.Views.Toolbar.textTabFile": "File",
+ "SSE.Views.Toolbar.textTabFormula": "Formula",
"SSE.Views.Toolbar.textTabHome": "Home",
"SSE.Views.Toolbar.textTabInsert": "Inserisci",
"SSE.Views.Toolbar.textTabLayout": "Layout",
@@ -2135,6 +2275,7 @@
"SSE.Views.Toolbar.tipDigStyleCurrency": "Stile valuta",
"SSE.Views.Toolbar.tipDigStylePercent": "Stile percentuale",
"SSE.Views.Toolbar.tipEditChart": "Modifica grafico",
+ "SSE.Views.Toolbar.tipEditHeader": "Modifica intestazione o piè di pagina",
"SSE.Views.Toolbar.tipFontColor": "Colore caratteri",
"SSE.Views.Toolbar.tipFontName": "Tipo di carattere",
"SSE.Views.Toolbar.tipFontSize": "Dimensione carattere",
@@ -2150,6 +2291,7 @@
"SSE.Views.Toolbar.tipInsertImage": "Inserisci immagine",
"SSE.Views.Toolbar.tipInsertOpt": "Inserisci celle",
"SSE.Views.Toolbar.tipInsertShape": "Inserisci forma",
+ "SSE.Views.Toolbar.tipInsertTable": "Inserisci tabella",
"SSE.Views.Toolbar.tipInsertText": "Inserisci casella di testo",
"SSE.Views.Toolbar.tipInsertTextart": "Inserisci Text Art",
"SSE.Views.Toolbar.tipMerge": "Unisci",
@@ -2163,7 +2305,7 @@
"SSE.Views.Toolbar.tipPrintArea": "Area di Stampa",
"SSE.Views.Toolbar.tipRedo": "Ripristina",
"SSE.Views.Toolbar.tipSave": "Salva",
- "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.",
+ "SSE.Views.Toolbar.tipSaveCoauth": "Salva i tuoi cambiamenti per renderli disponibili agli altri utenti.",
"SSE.Views.Toolbar.tipSendBackward": "Porta indietro",
"SSE.Views.Toolbar.tipSendForward": "Porta avanti",
"SSE.Views.Toolbar.tipSynchronize": "Il documento è stato modificato da un altro utente. Clicca per salvare le modifiche e ricaricare gli aggiornamenti.",
diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json
index b1b625731..58108df2b 100644
--- a/apps/spreadsheeteditor/main/locale/ja.json
+++ b/apps/spreadsheeteditor/main/locale/ja.json
@@ -2,7 +2,6 @@
"cancelButtonText": "キャンセル",
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "ここでメッセージを挿入してください。",
- "Common.Controllers.Chat.textUserLimit": "ONLYOFFICE無料版を使用しています。 同時に2人のユーザのみは文書を編集することができます。 もっとが必要ですか。ONLYOFFICEエンタープライズ版の購入を検討してください。 Read more",
"Common.UI.ComboBorderSize.txtNoBorders": "枠線なし",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "枠線なし",
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
@@ -114,7 +113,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "変換のタイムアウトを超過しました。",
"SSE.Controllers.Main.criticalErrorExtText": "OKボタンを押すと文書リストに戻ることができます。",
"SSE.Controllers.Main.criticalErrorTitle": "エラー",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "ダウンロードに失敗しました",
"SSE.Controllers.Main.downloadTextText": "スプレッドシートのダウンロード中...",
"SSE.Controllers.Main.downloadTitleText": "スプレッドシートのダウンロード中",
@@ -507,7 +505,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "新しいスプレッドシート",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作成者",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "アクセス許可の変更",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "作成日",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "場所",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "権利を持っている者",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "スプレッドシートのタイトル",
diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json
index 692f1d241..c2d4d9211 100644
--- a/apps/spreadsheeteditor/main/locale/ko.json
+++ b/apps/spreadsheeteditor/main/locale/ko.json
@@ -2,7 +2,6 @@
"cancelButtonText": "취소",
"Common.Controllers.Chat.notcriticalErrorTitle": "경고",
"Common.Controllers.Chat.textEnterMessage": "여기에 메시지를 입력하십시오",
- "Common.Controllers.Chat.textUserLimit": "ONLYOFFICE 무료 버전을 사용하고 있습니다. 두 명의 사용자 만이 문서를 동시에 편집 할 수 있습니다. ONLYOFFICE Enterprise Edition 구입 고려하십시오. 자세히보기 ",
"Common.UI.ComboBorderSize.txtNoBorders": "테두리 없음",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "테두리 없음",
"Common.UI.ComboDataView.emptyComboText": "스타일 없음",
@@ -349,7 +348,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.",
"SSE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 \"OK\"를 누르십시오.",
"SSE.Controllers.Main.criticalErrorTitle": "오류",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE 스프레드 시트 편집기",
"SSE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.",
"SSE.Controllers.Main.downloadTextText": "스프레드 시트 다운로드 중 ...",
"SSE.Controllers.Main.downloadTitleText": "스프레드 시트 다운로드 중",
@@ -1210,7 +1208,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "새 스프레드 시트",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "작성자",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "액세스 권한 변경",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "생성 날짜",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "위치",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "권한이있는 사람",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "스프레드 시트 제목",
diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json
index 27abdec7c..68ae17351 100644
--- a/apps/spreadsheeteditor/main/locale/lv.json
+++ b/apps/spreadsheeteditor/main/locale/lv.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Atcelt",
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Ievadiet savu ziņu šeit",
- "Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"Common.UI.ComboBorderSize.txtNoBorders": "No borders",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
"Common.UI.ComboDataView.emptyComboText": "No styles",
@@ -346,7 +345,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.",
"SSE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.",
"SSE.Controllers.Main.criticalErrorTitle": "Kļūda",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Lejuplāde neizdevās.",
"SSE.Controllers.Main.downloadTextText": "Lejuplādē izklājlapu...",
"SSE.Controllers.Main.downloadTitleText": "Lejuplādē izklājlapu",
@@ -1205,7 +1203,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Jauna Izklājlapa",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autors",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Izveides datums",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Vieta",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas kuriem ir tiesības",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Izklājlapas Nosaukums",
diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json
index eea9aada0..62cec577f 100644
--- a/apps/spreadsheeteditor/main/locale/nl.json
+++ b/apps/spreadsheeteditor/main/locale/nl.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Annuleren",
"Common.Controllers.Chat.notcriticalErrorTitle": "Waarschuwing",
"Common.Controllers.Chat.textEnterMessage": "Voer hier uw bericht in",
- "Common.Controllers.Chat.textUserLimit": "U gebruikt ONLYOFFICE Free Edition. Er kunnen maar twee gebruikers tegelijk het document bewerken. U wilt meer? Overweeg ONLYOFFICE Enterprise Edition aan te schaffen. Meer informatie",
"Common.UI.ComboBorderSize.txtNoBorders": "Geen randen",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
@@ -349,7 +348,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.",
"SSE.Controllers.Main.criticalErrorExtText": "Klik op \"OK\" om terug te keren naar de lijst met documenten.",
"SSE.Controllers.Main.criticalErrorTitle": "Fout",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Download mislukt.",
"SSE.Controllers.Main.downloadTextText": "Spreadsheet downloaden...",
"SSE.Controllers.Main.downloadTitleText": "Spreadsheet wordt gedownload",
@@ -1211,7 +1209,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nieuwe spreadsheet",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Auteur",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Toegangsrechten wijzigen",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum gemaakt",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locatie",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen met rechten",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel spreadsheet",
diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json
index 5d6942550..7fa9ef64a 100644
--- a/apps/spreadsheeteditor/main/locale/pl.json
+++ b/apps/spreadsheeteditor/main/locale/pl.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Anuluj",
"Common.Controllers.Chat.notcriticalErrorTitle": "Ostrzeżenie",
"Common.Controllers.Chat.textEnterMessage": "Wprowadź swoją wiadomość tutaj",
- "Common.Controllers.Chat.textUserLimit": "Używasz ONLYOFFICE Free Edition. Tylko dwóch użytkowników może jednocześnie edytować dokument. Chcesz więcej? Zastanów się nad zakupem ONLYOFFICE Enterprise Edition. Czytaj więcej ",
"Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
@@ -262,7 +261,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.",
"SSE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\", aby powrócić do listy dokumentów.",
"SSE.Controllers.Main.criticalErrorTitle": "Błąd",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor arkusza kalkulacyjnego",
"SSE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.",
"SSE.Controllers.Main.downloadTextText": "Pobieranie arkusza kalkulacyjnego...",
"SSE.Controllers.Main.downloadTitleText": "Pobierz arkusz kalkulacyjny",
@@ -1097,7 +1095,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nowy arkusz kalkulacyjny",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmień prawa dostępu",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data utworzenia",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokalizacja",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, które mają prawa",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tytuł arkusza kalkulacyjnego",
diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json
index 912bd82db..083cdec6c 100644
--- a/apps/spreadsheeteditor/main/locale/pt.json
+++ b/apps/spreadsheeteditor/main/locale/pt.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Cancelar",
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
"Common.Controllers.Chat.textEnterMessage": "Inserir sua mensagem aqui",
- "Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
@@ -248,7 +247,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
"SSE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.",
"SSE.Controllers.Main.criticalErrorTitle": "Erro",
- "SSE.Controllers.Main.defaultTitleText": "Editor de planilha ONLYOFFICE",
"SSE.Controllers.Main.downloadErrorText": "Download falhou.",
"SSE.Controllers.Main.downloadTextText": "Baixando planilha...",
"SSE.Controllers.Main.downloadTitleText": "Baixando planilha",
@@ -1082,7 +1080,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nova planilha",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Alterar direitos de acesso",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data de criação",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título da planilha",
diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json
index adc39ba89..751136989 100644
--- a/apps/spreadsheeteditor/main/locale/ru.json
+++ b/apps/spreadsheeteditor/main/locale/ru.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Отмена",
"Common.Controllers.Chat.notcriticalErrorTitle": "Предупреждение",
"Common.Controllers.Chat.textEnterMessage": "Введите здесь своё сообщение",
- "Common.Controllers.Chat.textUserLimit": "Вы используете бесплатную версию ONLYOFFICE. Только два пользователя одновременно могут совместно редактировать документ. Требуется больше? Рекомендуем приобрести корпоративную версию ONLYOFFICE. Читать дальше",
"Common.UI.ComboBorderSize.txtNoBorders": "Без границ",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ",
"Common.UI.ComboDataView.emptyComboText": "Без стилей",
@@ -189,6 +188,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": "Решить",
@@ -223,19 +223,7 @@
"Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи",
"Common.Views.SignSettingsDialog.textTitle": "Настройка подписи",
"Common.Views.SignSettingsDialog.txtEmpty": "Это поле необходимо заполнить",
- "SSE.Controllers.FormulaDialog.sCategoryAll": "Все",
- "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 недавно использовавшихся",
- "SSE.Controllers.FormulaDialog.sCategoryCube": "Кубические",
- "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Базы данных",
- "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Дата и время",
- "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Инженерные",
- "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Финансовые",
- "SSE.Controllers.FormulaDialog.sCategoryInformation": "Информационные",
- "SSE.Controllers.FormulaDialog.sCategoryLogical": "Логические",
- "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Поиск и ссылки",
- "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Математические",
- "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Статистические",
- "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Текст и данные",
+ "SSE.Controllers.DataTab.textWizard": "Мастер распределения текста по столбцам",
"SSE.Controllers.DocumentHolder.alignmentText": "Выравнивание",
"SSE.Controllers.DocumentHolder.centerText": "По центру",
"SSE.Controllers.DocumentHolder.deleteColumnText": "Удалить столбец",
@@ -383,6 +371,19 @@
"SSE.Controllers.DocumentHolder.txtUndoExpansion": "Отменить авторазвертывание таблицы",
"SSE.Controllers.DocumentHolder.txtUseTextImport": "Использовать мастер импорта текста",
"SSE.Controllers.DocumentHolder.txtWidth": "Ширина",
+ "SSE.Controllers.FormulaDialog.sCategoryAll": "Все",
+ "SSE.Controllers.FormulaDialog.sCategoryCube": "Аналитические",
+ "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Базы данных",
+ "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Дата и время",
+ "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Инженерные",
+ "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Финансовые",
+ "SSE.Controllers.FormulaDialog.sCategoryInformation": "Информационные",
+ "SSE.Controllers.FormulaDialog.sCategoryLast10": "Последние 10 использованных",
+ "SSE.Controllers.FormulaDialog.sCategoryLogical": "Логические",
+ "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Поиск и ссылки",
+ "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Математические",
+ "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Статистические",
+ "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Текст и данные",
"SSE.Controllers.LeftMenu.newDocumentTitle": "Электронная таблица без имени",
"SSE.Controllers.LeftMenu.textByColumns": "По столбцам",
"SSE.Controllers.LeftMenu.textByRows": "По строкам",
@@ -405,7 +406,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
"SSE.Controllers.Main.criticalErrorExtText": "Нажмите \"OK\", чтобы вернуться к списку документов.",
"SSE.Controllers.Main.criticalErrorTitle": "Ошибка",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Загрузка не удалась.",
"SSE.Controllers.Main.downloadTextText": "Загрузка электронной таблицы...",
"SSE.Controllers.Main.downloadTitleText": "Загрузка электронной таблицы",
@@ -416,9 +416,10 @@
"SSE.Controllers.Main.errorAutoFilterDataRange": "Операция не может быть произведена для выбранного диапазона ячеек. Выделите однородный диапазон данных, отличный от существующего, и повторите попытку.",
"SSE.Controllers.Main.errorAutoFilterHiddenRange": "Операция не может быть произведена, так как область содержит отфильтрованные ячейки. Выведите на экран скрытые фильтром элементы и повторите попытку.",
"SSE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
+ "SSE.Controllers.Main.errorCannotUngroup": "Невозможно разгруппировать. Чтобы создать структуру документа, выделите столбцы или строки и сгруппируйте их.",
"SSE.Controllers.Main.errorChangeArray": "Нельзя изменить часть массива.",
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
- "SSE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
+ "SSE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
"SSE.Controllers.Main.errorCopyMultiselectArea": "Данная команда неприменима для несвязных диапазонов. Выберите один диапазон и повторите попытку.",
"SSE.Controllers.Main.errorCountArg": "Ошибка во введенной формуле. Использовано неверное количество аргументов.",
"SSE.Controllers.Main.errorCountArgExceed": "Ошибка во введенной формуле. Превышено количество аргументов.",
@@ -437,6 +438,7 @@
"SSE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
"SSE.Controllers.Main.errorFormulaName": "Ошибка во введенной формуле. Использовано неверное имя формулы.",
"SSE.Controllers.Main.errorFormulaParsing": "Внутренняя ошибка при синтаксическом анализе формулы.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "Длина текстовых значений в формулах не может превышать 255 символов. Используйте функцию СЦЕПИТЬ или оператор сцепления (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "Функция ссылается на лист, который не существует. Проверьте данные и повторите попытку.",
"SSE.Controllers.Main.errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.",
"SSE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
@@ -502,7 +504,7 @@
"SSE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"SSE.Controllers.Main.textLoadingDocument": "Загрузка таблицы",
"SSE.Controllers.Main.textNo": "Нет",
- "SSE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений ONLYOFFICE",
+ "SSE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
"SSE.Controllers.Main.textPaidFeature": "Платная функция",
"SSE.Controllers.Main.textPleaseWait": "Операция может занять больше времени, чем предполагалось. Пожалуйста, подождите...",
"SSE.Controllers.Main.textRecalcFormulas": "Вычисление формул...",
@@ -737,7 +739,7 @@
"SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии. Обновите лицензию, а затем обновите страницу.",
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр. Обратитесь к администратору за дополнительной информацией.",
"SSE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
- "SSE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
+ "SSE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"SSE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"SSE.Controllers.Print.strAllSheets": "Все листы",
"SSE.Controllers.Print.textWarning": "Предупреждение",
@@ -1147,8 +1149,6 @@
"SSE.Views.CellSettings.textNewColor": "Пользовательский цвет",
"SSE.Views.CellSettings.textOrientation": "Ориентация текста",
"SSE.Views.CellSettings.textSelectBorders": "Выберите границы, к которым надо применить выбранный стиль",
- "SSE.Views.CellSettings.textTextToColumn": "Текст по столбцам",
- "SSE.Views.CellSettings.textWizard": "Мастер распределения текста по столбцам",
"SSE.Views.CellSettings.tipAll": "Задать внешнюю границу и все внутренние линии",
"SSE.Views.CellSettings.tipBottom": "Задать только внешнюю нижнюю границу",
"SSE.Views.CellSettings.tipDiagD": "Задать диагональную границу сверху вниз",
@@ -1330,6 +1330,15 @@
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Название оси Y",
"SSE.Views.ChartSettingsDlg.textZero": "Нулевые значения",
"SSE.Views.ChartSettingsDlg.txtEmpty": "Это поле необходимо заполнить",
+ "SSE.Views.DataTab.capBtnGroup": "Сгруппировать",
+ "SSE.Views.DataTab.capBtnTextToCol": "Текст по столбцам",
+ "SSE.Views.DataTab.capBtnUngroup": "Разгруппировать",
+ "SSE.Views.DataTab.textClear": "Удалить структуру",
+ "SSE.Views.DataTab.textColumns": "Разгруппировать столбцы",
+ "SSE.Views.DataTab.textRows": "Разгруппировать строки",
+ "SSE.Views.DataTab.tipGroup": "Сгруппировать диапазон ячеек",
+ "SSE.Views.DataTab.tipToColumns": "Разделить текст ячейки по столбцам",
+ "SSE.Views.DataTab.tipUngroup": "Разгруппировать диапазон ячеек",
"SSE.Views.DigitalFilterDialog.cancelButtonText": "Отмена",
"SSE.Views.DigitalFilterDialog.capAnd": "И",
"SSE.Views.DigitalFilterDialog.capCondition1": "равно",
@@ -1494,13 +1503,21 @@
"SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "По шаблону",
"SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Создайте новую пустую электронную таблицу, к которой Вы сможете применить стили и отформатировать при редактировании после того, как она создана. Или выберите один из шаблонов, чтобы создать электронную таблицу определенного типа или предназначения, где уже предварительно применены некоторые стили.",
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Новая электронная таблица",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Добавить автора",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Добавить текст",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Изменить права доступа",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата создания",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Комментарий",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Создана",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Автор последнего изменения",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Последнее изменение",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Владелец",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Размещение",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Люди, имеющие права",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название электронной таблицы",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название",
+ "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружена",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Изменить права доступа",
"SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Люди, имеющие права",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Применить",
@@ -1595,6 +1612,51 @@
"SSE.Views.FormulaDialog.textGroupDescription": "Выберите группу функций",
"SSE.Views.FormulaDialog.textListDescription": "Выберите функцию",
"SSE.Views.FormulaDialog.txtTitle": "Вставить функцию",
+ "SSE.Views.FormulaTab.txtAdditional": "Дополнительно",
+ "SSE.Views.FormulaTab.txtAutosum": "Автосумма",
+ "SSE.Views.FormulaTab.txtAutosumTip": "Суммирование",
+ "SSE.Views.FormulaTab.txtFormula": "Функция",
+ "SSE.Views.FormulaTab.txtFormulaTip": "Вставить функцию",
+ "SSE.Views.FormulaTab.txtMore": "Другие функции",
+ "SSE.Views.FormulaTab.txtRecent": "Последние использованные",
+ "SSE.Views.GroupDialog.cancelButtonText": "Отмена",
+ "SSE.Views.GroupDialog.okButtonText": "OK",
+ "SSE.Views.GroupDialog.textColumns": "Столбцы",
+ "SSE.Views.GroupDialog.textRows": "Строки",
+ "SSE.Views.HeaderFooterDialog.cancelButtonText": "Отмена",
+ "SSE.Views.HeaderFooterDialog.okButtonText": "OK",
+ "SSE.Views.HeaderFooterDialog.textAlign": "Выровнять относительно полей страницы",
+ "SSE.Views.HeaderFooterDialog.textAll": "Все страницы",
+ "SSE.Views.HeaderFooterDialog.textBold": "Жирный",
+ "SSE.Views.HeaderFooterDialog.textCenter": "В центре",
+ "SSE.Views.HeaderFooterDialog.textColor": "Цвет текста",
+ "SSE.Views.HeaderFooterDialog.textDate": "Дата",
+ "SSE.Views.HeaderFooterDialog.textDiffFirst": "Особый для первой страницы",
+ "SSE.Views.HeaderFooterDialog.textDiffOdd": "Разные для четных и нечетных",
+ "SSE.Views.HeaderFooterDialog.textEven": "Четная страница",
+ "SSE.Views.HeaderFooterDialog.textFileName": "Имя файла",
+ "SSE.Views.HeaderFooterDialog.textFirst": "Первая страница",
+ "SSE.Views.HeaderFooterDialog.textFooter": "Нижний колонтитул",
+ "SSE.Views.HeaderFooterDialog.textHeader": "Верхний колонтитул",
+ "SSE.Views.HeaderFooterDialog.textInsert": "Вставить",
+ "SSE.Views.HeaderFooterDialog.textItalic": "Курсив",
+ "SSE.Views.HeaderFooterDialog.textLeft": "Слева",
+ "SSE.Views.HeaderFooterDialog.textNewColor": "Пользовательский цвет",
+ "SSE.Views.HeaderFooterDialog.textOdd": "Нечетная страница",
+ "SSE.Views.HeaderFooterDialog.textPageCount": "Число страниц",
+ "SSE.Views.HeaderFooterDialog.textPageNum": "Номер страницы",
+ "SSE.Views.HeaderFooterDialog.textPresets": "Предустановки",
+ "SSE.Views.HeaderFooterDialog.textRight": "Справа",
+ "SSE.Views.HeaderFooterDialog.textScale": "Изменять масштаб вместе с документом",
+ "SSE.Views.HeaderFooterDialog.textSheet": "Имя листа",
+ "SSE.Views.HeaderFooterDialog.textStrikeout": "Зачеркнутый",
+ "SSE.Views.HeaderFooterDialog.textSubscript": "Подстрочный",
+ "SSE.Views.HeaderFooterDialog.textSuperscript": "Надстрочный",
+ "SSE.Views.HeaderFooterDialog.textTime": "Время",
+ "SSE.Views.HeaderFooterDialog.textTitle": "Параметры верхнего и нижнего колонтитулов",
+ "SSE.Views.HeaderFooterDialog.textUnderline": "Подчёркнутый",
+ "SSE.Views.HeaderFooterDialog.tipFontName": "Шрифт",
+ "SSE.Views.HeaderFooterDialog.tipFontSize": "Размер шрифта",
"SSE.Views.HyperlinkSettingsDialog.cancelButtonText": "Отмена",
"SSE.Views.HyperlinkSettingsDialog.strDisplay": "Отображать",
"SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Связать с",
@@ -1653,6 +1715,7 @@
"SSE.Views.LeftMenu.tipSupport": "Обратная связь и поддержка",
"SSE.Views.LeftMenu.txtDeveloper": "РЕЖИМ РАЗРАБОТЧИКА",
"SSE.Views.LeftMenu.txtTrial": "ПРОБНЫЙ РЕЖИМ",
+ "SSE.Views.LeftMenu.tipSpellcheck": "Проверка орфографии",
"SSE.Views.MainSettingsPrint.okButtonText": "Сохранить",
"SSE.Views.MainSettingsPrint.strBottom": "Снизу",
"SSE.Views.MainSettingsPrint.strLandscape": "Альбомная",
@@ -1911,6 +1974,7 @@
"SSE.Views.ShapeSettings.txtNoBorders": "Без обводки",
"SSE.Views.ShapeSettings.txtPapyrus": "Папирус",
"SSE.Views.ShapeSettings.txtWood": "Дерево",
+ "SSE.Views.ShapeSettings.strShadow": "Отображать тень",
"SSE.Views.ShapeSettingsAdvanced.cancelButtonText": "Отмена",
"SSE.Views.ShapeSettingsAdvanced.okButtonText": "ОК",
"SSE.Views.ShapeSettingsAdvanced.strColumns": "Колонки",
@@ -2092,6 +2156,7 @@
"SSE.Views.TextArtSettings.txtPapyrus": "Папирус",
"SSE.Views.TextArtSettings.txtWood": "Дерево",
"SSE.Views.Toolbar.capBtnComment": "Комментарий",
+ "SSE.Views.Toolbar.capBtnInsHeader": "Колонтитулы",
"SSE.Views.Toolbar.capBtnMargins": "Поля",
"SSE.Views.Toolbar.capBtnPageOrient": "Ориентация",
"SSE.Views.Toolbar.capBtnPageSize": "Размер",
@@ -2101,7 +2166,7 @@
"SSE.Views.Toolbar.capImgForward": "Перенести вперед",
"SSE.Views.Toolbar.capImgGroup": "Группировка",
"SSE.Views.Toolbar.capInsertChart": "Диаграмма",
- "SSE.Views.Toolbar.capInsertEquation": "Формула",
+ "SSE.Views.Toolbar.capInsertEquation": "Уравнение",
"SSE.Views.Toolbar.capInsertHyperlink": "Гиперссылка",
"SSE.Views.Toolbar.capInsertImage": "Изображение",
"SSE.Views.Toolbar.capInsertShape": "Фигура",
@@ -2177,7 +2242,9 @@
"SSE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
"SSE.Views.Toolbar.textSurface": "Поверхность",
"SSE.Views.Toolbar.textTabCollaboration": "Совместная работа",
+ "SSE.Views.Toolbar.textTabData": "Данные",
"SSE.Views.Toolbar.textTabFile": "Файл",
+ "SSE.Views.Toolbar.textTabFormula": "Формула",
"SSE.Views.Toolbar.textTabHome": "Главная",
"SSE.Views.Toolbar.textTabInsert": "Вставка",
"SSE.Views.Toolbar.textTabLayout": "Макет",
@@ -2210,6 +2277,7 @@
"SSE.Views.Toolbar.tipDigStyleCurrency": "Денежный формат",
"SSE.Views.Toolbar.tipDigStylePercent": "Процентный формат",
"SSE.Views.Toolbar.tipEditChart": "Изменить диаграмму",
+ "SSE.Views.Toolbar.tipEditHeader": "Изменить колонтитулы",
"SSE.Views.Toolbar.tipFontColor": "Цвет шрифта",
"SSE.Views.Toolbar.tipFontName": "Шрифт",
"SSE.Views.Toolbar.tipFontSize": "Размер шрифта",
@@ -2220,11 +2288,12 @@
"SSE.Views.Toolbar.tipIncFont": "Увеличить размер шрифта",
"SSE.Views.Toolbar.tipInsertChart": "Вставить диаграмму",
"SSE.Views.Toolbar.tipInsertChartSpark": "Вставить диаграмму",
- "SSE.Views.Toolbar.tipInsertEquation": "Вставить формулу",
+ "SSE.Views.Toolbar.tipInsertEquation": "Вставить уравнение",
"SSE.Views.Toolbar.tipInsertHyperlink": "Добавить гиперссылку",
"SSE.Views.Toolbar.tipInsertImage": "Вставить изображение",
"SSE.Views.Toolbar.tipInsertOpt": "Вставить ячейки",
"SSE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
+ "SSE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
"SSE.Views.Toolbar.tipInsertText": "Вставить надпись",
"SSE.Views.Toolbar.tipInsertTextart": "Вставить объект Text Art",
"SSE.Views.Toolbar.tipMerge": "Объединить",
@@ -2314,7 +2383,6 @@
"SSE.Views.Toolbar.txtTime": "Время",
"SSE.Views.Toolbar.txtUnmerge": "Отменить объединение ячеек",
"SSE.Views.Toolbar.txtYen": "¥ Иена",
- "SSE.Views.Toolbar.capBtnInsHeader": "Колонтитулы",
"SSE.Views.Top10FilterDialog.cancelButtonText": "Отмена",
"SSE.Views.Top10FilterDialog.okButtonText": "OK",
"SSE.Views.Top10FilterDialog.textType": "Показать",
@@ -2322,5 +2390,15 @@
"SSE.Views.Top10FilterDialog.txtItems": "Элемент",
"SSE.Views.Top10FilterDialog.txtPercent": "Процент",
"SSE.Views.Top10FilterDialog.txtTitle": "Наложение условия по списку",
- "SSE.Views.Top10FilterDialog.txtTop": "Наибольшие"
+ "SSE.Views.Top10FilterDialog.txtTop": "Наибольшие",
+ "SSE.Views.Spellcheck.txtSpelling": "Орфография",
+ "SSE.Views.Spellcheck.noSuggestions": "Вариантов не найдено",
+ "SSE.Views.Spellcheck.textChange": "Заменить",
+ "SSE.Views.Spellcheck.textChangeAll": "Заменить все",
+ "SSE.Views.Spellcheck.textIgnore": "Пропустить",
+ "SSE.Views.Spellcheck.textIgnoreAll": "Пропустить все",
+ "SSE.Views.Spellcheck.txtAddToDictionary": "Добавить в словарь",
+ "SSE.Views.Spellcheck.txtDictionaryLanguage": "Язык словаря",
+ "SSE.Views.Spellcheck.txtComplete": "Проверка орфографии закончена",
+ "SSE.Views.Spellcheck.txtNextTip": "Перейти к следующему слову"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json
index 8ccad9d31..a719be3cc 100644
--- a/apps/spreadsheeteditor/main/locale/sk.json
+++ b/apps/spreadsheeteditor/main/locale/sk.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Zrušiť",
"Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie",
"Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu",
- "Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo. Iba dvaja používatelia dokážu spolueditovať dokument súčasne. Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie. Read more",
"Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
@@ -270,7 +269,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.",
"SSE.Controllers.Main.criticalErrorExtText": "Stlačte \"OK\" pre návrat do zoznamu dokumentov.",
"SSE.Controllers.Main.criticalErrorTitle": "Chyba",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor tabuliek",
"SSE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.",
"SSE.Controllers.Main.downloadTextText": "Načítavanie tabuľky...",
"SSE.Controllers.Main.downloadTitleText": "Načítavanie tabuľky",
@@ -1107,7 +1105,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nový zošit",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmeniť prístupové práva",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Dátum vytvorenia",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov zošitu",
diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json
index 3dc88aa4e..329c2bc90 100644
--- a/apps/spreadsheeteditor/main/locale/sl.json
+++ b/apps/spreadsheeteditor/main/locale/sl.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Prekliči",
"Common.Controllers.Chat.notcriticalErrorTitle": "Opozorilo",
"Common.Controllers.Chat.textEnterMessage": "Svoje sporočilo vnesite tu",
- "Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"Common.UI.ComboBorderSize.txtNoBorders": "Ni mej",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
@@ -109,7 +108,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.",
"SSE.Controllers.Main.criticalErrorExtText": "Pritisnite \"OK\" za vrnitev na seznam dokumentov.",
"SSE.Controllers.Main.criticalErrorTitle": "Napaka",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Urejevalnik razpredelnice",
"SSE.Controllers.Main.downloadErrorText": "Prenos ni uspel.",
"SSE.Controllers.Main.downloadTextText": "Prenašanje razpredelnice...",
"SSE.Controllers.Main.downloadTitleText": "Prenašanje razpredelnice",
@@ -452,7 +450,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nova razpredelnica",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Avtor",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Spremeni pravice dostopa",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Datum nastanka",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokacija",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osebe, ki imajo pravice",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Naslov razpredelnice",
diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json
index 039863040..63f46deed 100644
--- a/apps/spreadsheeteditor/main/locale/tr.json
+++ b/apps/spreadsheeteditor/main/locale/tr.json
@@ -2,7 +2,6 @@
"cancelButtonText": "İptal Et",
"Common.Controllers.Chat.notcriticalErrorTitle": "Dikkat",
"Common.Controllers.Chat.textEnterMessage": "Mesajınızı buraya giriniz",
- "Common.Controllers.Chat.textUserLimit": "You are using ONLYOFFICE Free Edition. Only two users can co-edit the document simultaneously. Want more? Consider buying ONLYOFFICE Enterprise Edition. Read more",
"Common.UI.ComboBorderSize.txtNoBorders": "Sınır yok",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
@@ -249,7 +248,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.",
"SSE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın",
"SSE.Controllers.Main.criticalErrorTitle": "Hata",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editör",
"SSE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.",
"SSE.Controllers.Main.downloadTextText": "Spreadsheet yükleniyor...",
"SSE.Controllers.Main.downloadTitleText": "Spreadsheet Yükleniyor",
@@ -1082,7 +1080,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Yeni Spreadsheet",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Yayıncı",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Erişim haklarını değiştir",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Oluşturulma tarihi",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasyon",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Hakkı olan kişiler",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Spreadsheet Başlığı",
diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json
index 301916abe..b5ebc5ab9 100644
--- a/apps/spreadsheeteditor/main/locale/uk.json
+++ b/apps/spreadsheeteditor/main/locale/uk.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Скасувати",
"Common.Controllers.Chat.notcriticalErrorTitle": "Застереження",
"Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут",
- "Common.Controllers.Chat.textUserLimit": "Ви використовуюєте ONLYOFFICE Free Edition. Тільки два користувачі можуть одночасно редагувати документ одночасно. Хочете більше? Подумайте про придбання версії ONLYOFFICE Enterprise Edition. Докладніше ",
"Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
@@ -248,7 +247,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.",
"SSE.Controllers.Main.criticalErrorExtText": "Натисніть \"OK\", щоб повернутися до списку документів.",
"SSE.Controllers.Main.criticalErrorTitle": "Помилка",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Редактор електронних таблиць",
"SSE.Controllers.Main.downloadErrorText": "Завантаження не вдалося",
"SSE.Controllers.Main.downloadTextText": "Завантаження електронної таблиці...",
"SSE.Controllers.Main.downloadTitleText": "Завантаження електронної таблиці",
@@ -1081,7 +1079,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Нова таблиця",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Дата створення",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Особи, які мають права",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва електронної таблиці",
diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json
index 94248e4f6..296aed066 100644
--- a/apps/spreadsheeteditor/main/locale/vi.json
+++ b/apps/spreadsheeteditor/main/locale/vi.json
@@ -2,7 +2,6 @@
"cancelButtonText": "Hủy",
"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. Chỉ hai người dùng có thể đồng thời cùng chỉnh sửa tài liệu. Bạn muốn nhiều hơn? Cân nhắc mua ONLYOFFICE Enterprise Edition. Đọc thêm",
"Common.UI.ComboBorderSize.txtNoBorders": "Không viền",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
@@ -248,7 +247,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.",
"SSE.Controllers.Main.criticalErrorExtText": "Nhấp \"OK\" để trở lại danh sách tài liệu.",
"SSE.Controllers.Main.criticalErrorTitle": "Lỗi",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Tải về không thành công.",
"SSE.Controllers.Main.downloadTextText": "Đang tải về bảng tính...",
"SSE.Controllers.Main.downloadTitleText": "Đang tải về Bảng tính",
@@ -1081,7 +1079,6 @@
"SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Bảng tính mới",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Tác giả",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Thay đổi quyền truy cập",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Ngày tạo",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Địa điểm",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Những cá nhân có quyền",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tiêu đề Bảng tính",
diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json
index 912cc86bf..b2c5b2a21 100644
--- a/apps/spreadsheeteditor/main/locale/zh.json
+++ b/apps/spreadsheeteditor/main/locale/zh.json
@@ -2,7 +2,6 @@
"cancelButtonText": "取消",
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "在这里输入你的信息",
- "Common.Controllers.Chat.textUserLimit": "您正在使用ONLYOFFICE免费版。 只有两个用户可以同时共同编辑文档。 想要更多?考虑购买ONLYOFFICE企业版。 阅读更多内容",
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
"Common.UI.ComboDataView.emptyComboText": "没有风格",
@@ -391,7 +390,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "转换超时",
"SSE.Controllers.Main.criticalErrorExtText": "按“确定”返回该文件列表。",
"SSE.Controllers.Main.criticalErrorTitle": "错误:",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE电子表格编辑器",
"SSE.Controllers.Main.downloadErrorText": "下载失败",
"SSE.Controllers.Main.downloadTextText": "正在下载试算表...",
"SSE.Controllers.Main.downloadTitleText": "下载电子表格",
@@ -1133,8 +1131,6 @@
"SSE.Views.CellSettings.textNewColor": "添加新的自定义颜色",
"SSE.Views.CellSettings.textOrientation": "文字方向",
"SSE.Views.CellSettings.textSelectBorders": "选择您要更改应用样式的边框",
- "SSE.Views.CellSettings.textTextToColumn": "分列",
- "SSE.Views.CellSettings.textWizard": "文本分列向导",
"SSE.Views.CellSettings.tipAll": "设置外边框和所有内线",
"SSE.Views.CellSettings.tipBottom": "仅设置外底边框",
"SSE.Views.CellSettings.tipDiagD": "设置对角下边框",
@@ -1483,7 +1479,6 @@
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "应用",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改访问权限",
- "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "创建日期",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "地址",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "电子表格标题",
diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar-menu.png b/apps/spreadsheeteditor/main/resources/img/toolbar-menu.png
index edd5e028c..0f0670bc8 100644
Binary files a/apps/spreadsheeteditor/main/resources/img/toolbar-menu.png and b/apps/spreadsheeteditor/main/resources/img/toolbar-menu.png differ
diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar-menu@2x.png b/apps/spreadsheeteditor/main/resources/img/toolbar-menu@2x.png
index da77e65d6..ad9dd1399 100644
Binary files a/apps/spreadsheeteditor/main/resources/img/toolbar-menu@2x.png and b/apps/spreadsheeteditor/main/resources/img/toolbar-menu@2x.png differ
diff --git a/apps/spreadsheeteditor/main/resources/less/leftmenu.less b/apps/spreadsheeteditor/main/resources/less/leftmenu.less
index 021ce8f9f..7a666f012 100644
--- a/apps/spreadsheeteditor/main/resources/less/leftmenu.less
+++ b/apps/spreadsheeteditor/main/resources/less/leftmenu.less
@@ -7,28 +7,22 @@
.tool-menu-btns {
border-right: 1px solid @gray-dark;
-
- .toolbar-btn-icon(btn-menu-file, 61, @toolbar-icon-size);
- .toolbar-btn-icon(btn-menu-search, 62, @toolbar-icon-size);
- .toolbar-btn-icon(btn-menu-comments, 63, @toolbar-icon-size);
- .toolbar-btn-icon(btn-menu-chat, 59, @toolbar-icon-size);
- .toolbar-btn-icon(btn-menu-about, 58, @toolbar-icon-size);
- .toolbar-btn-icon(btn-menu-support, 75, @toolbar-icon-size);
- .toolbar-btn-icon(btn-menu-plugin, 81, @toolbar-icon-size);
-
- button.notify .btn-menu-chat,
- button.notify.over > .btn-menu-chat {background-position: -0*@toolbar-icon-size -60*@toolbar-icon-size;}
- button.notify:active > .btn-menu-chat {background-position: -1*@toolbar-icon-size -60*@toolbar-icon-size;}
- button.notify.disabled > .btn-menu-chat {background-position: -2*@toolbar-icon-size -60*@toolbar-icon-size;}
-
- button.notify .btn-menu-comments,
- button.notify.over > .btn-menu-comments {background-position: -0*@toolbar-icon-size -2*@toolbar-icon-size;}
- button.notify:active > .btn-menu-comments {background-position: -1*@toolbar-icon-size -2*@toolbar-icon-size;}
- button.notify.disabled > .btn-menu-comments {background-position: -2*@toolbar-icon-size -2*@toolbar-icon-size;}
}
}
}
+button.notify .btn-menu-chat {background-position: -0*@toolbar-icon-size -63*@toolbar-icon-size;}
+button.notify .btn-menu-comments {background-position: -0*@toolbar-icon-size -60*@toolbar-icon-size;}
+
+.button-normal-icon(btn-menu-file, 61, @toolbar-icon-size);
+.button-normal-icon(btn-menu-search, 62, @toolbar-icon-size);
+.button-normal-icon(btn-menu-comments, 63, @toolbar-icon-size);
+.button-normal-icon(btn-menu-chat, 59, @toolbar-icon-size);
+.button-normal-icon(btn-menu-about, 58, @toolbar-icon-size);
+.button-normal-icon(btn-menu-support, 75, @toolbar-icon-size);
+.button-normal-icon(btn-menu-plugin, 81, @toolbar-icon-size);
+.button-normal-icon(btn-ic-docspell, 93, @toolbar-icon-size);
+
#left-menu {
&+.layout-resizer {
border-left: 0 none;
@@ -560,3 +554,9 @@
transform: rotate(180deg);
cursor: default;
}
+
+.img-complete {
+ background-position: -42px -234px;
+ height: 16px;
+ width: 16px;
+}
diff --git a/apps/spreadsheeteditor/main/resources/less/rightmenu.less b/apps/spreadsheeteditor/main/resources/less/rightmenu.less
index 6b939e5dd..2d16d42e1 100644
--- a/apps/spreadsheeteditor/main/resources/less/rightmenu.less
+++ b/apps/spreadsheeteditor/main/resources/less/rightmenu.less
@@ -5,33 +5,6 @@
border-left: 1px solid @gray-dark;
background-color: @gray-light;
right: 0;
-
- /*menuText*/
- .toolbar-btn-icon(btn-menu-text, 64, @toolbar-icon-size);
-
- /*menuImage*/
- .toolbar-btn-icon(btn-menu-image, 34, @toolbar-icon-size);
-
- /*menuChart*/
- .toolbar-btn-icon(btn-menu-chart, 36, @toolbar-icon-size);
-
- /*menuShape*/
- .toolbar-btn-icon(btn-menu-shape, 47, @toolbar-icon-size);
-
- /*menuTextArt*/
- .toolbar-btn-icon(btn-menu-textart, 66, @toolbar-icon-size);
-
- /*menuTable*/
- .toolbar-btn-icon(btn-menu-table, 80, @toolbar-icon-size);
-
- /**menuSignature*/
- .toolbar-btn-icon(btn-menu-signature, 83, @toolbar-icon-size);
-
- /*menuPivot*/
- .toolbar-btn-icon(btn-menu-pivot, 87, @toolbar-icon-size);
-
- /*menuCell*/
- .toolbar-btn-icon(btn-menu-cell, 88, @toolbar-icon-size);
}
}
@@ -105,6 +78,27 @@
}
}
+/*menuText*/
+.button-normal-icon(btn-menu-text, 64, @toolbar-icon-size);
+/*menuImage*/
+.button-normal-icon(btn-menu-image, 34, @toolbar-icon-size);
+/*menuChart*/
+.button-normal-icon(btn-menu-chart, 36, @toolbar-icon-size);
+/*menuShape*/
+.button-normal-icon(btn-menu-shape, 47, @toolbar-icon-size);
+/*menuTextArt*/
+.button-normal-icon(btn-menu-textart, 66, @toolbar-icon-size);
+/*menuTable*/
+.button-normal-icon(btn-menu-table, 80, @toolbar-icon-size);
+/**menuSignature*/
+.button-normal-icon(btn-menu-signature, 83, @toolbar-icon-size);
+/*menuPivot*/
+.button-normal-icon(btn-menu-pivot, 87, @toolbar-icon-size);
+/*menuCell*/
+.button-normal-icon(btn-menu-cell, 88, @toolbar-icon-size);
+
+.button-otherstates-icon2(btn-category, @toolbar-icon-size);
+
.btn-toolbar:not(.x-huge) .icon:not(svg).btn-borders-small {
.background-ximage('@{common-image-path}/right-panels/SmallBorders.png', '@{common-image-path}/right-panels/SmallBorders@2x.png', 84px);
}
diff --git a/apps/spreadsheeteditor/main/resources/less/toolbar.less b/apps/spreadsheeteditor/main/resources/less/toolbar.less
index 859290c2b..ae498bc86 100644
--- a/apps/spreadsheeteditor/main/resources/less/toolbar.less
+++ b/apps/spreadsheeteditor/main/resources/less/toolbar.less
@@ -146,6 +146,9 @@
.button-normal-icon(btn-border-diagup, 42, @toolbar-icon-size);
.button-normal-icon(btn-border-diagdown, 43, @toolbar-icon-size);
+.button-normal-icon(btn-spellcheck-next, 70, @toolbar-icon-size);
+.button-normal-icon(btn-spellcheck-preview, 72, @toolbar-icon-size);
+
.button-normal-icon(btn-named-range, 77, @toolbar-icon-size);
.button-normal-icon(btn-strikeout, 84, @toolbar-icon-size);
.button-normal-icon(btn-subscript, 85, @toolbar-icon-size);
diff --git a/apps/spreadsheeteditor/mobile/app/controller/Main.js b/apps/spreadsheeteditor/mobile/app/controller/Main.js
index 869842c5e..751b3ec95 100644
--- a/apps/spreadsheeteditor/mobile/app/controller/Main.js
+++ b/apps/spreadsheeteditor/mobile/app/controller/Main.js
@@ -158,6 +158,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) {
@@ -189,7 +190,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}}');
@@ -1216,7 +1217,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;
@@ -1234,6 +1235,38 @@ 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.cols[0].value,
+ delimiter = picker.cols[1].value;
+
+ if (me.api) {
+ if (mode==2) {
+ formatOptions && formatOptions.asc_setAdvancedOptions(new Asc.asc_CTextOptions(encoding, delimiter));
+ me.api.asc_DownloadAs(formatOptions);
+ } else {
+ me.api.asc_setAdvancedOptions(type, new Asc.asc_CTextOptions(encoding, delimiter));
+ }
+
+ if (!me._isDocReady) {
+ me.onLongActionBegin(Asc.c_oAscAsyncActionType.BlockInteraction, LoadingDocument);
+ }
+ }
+ me._state.openDlg = null;
+ }
+ });
+
me._state.openDlg = uiApp.modal({
title: me.advCSVOptions,
text: '',
@@ -1245,25 +1278,7 @@ define([
'' +
'' +
'',
- buttons: [
- {
- text: 'OK',
- bold: true,
- onClick: function() {
- var encoding = picker.cols[0].value,
- delimiter = picker.cols[1].value;
-
- if (me.api) {
- me.api.asc_setAdvancedOptions(type, new Asc.asc_CTextOptions(encoding, delimiter));
-
- if (!me._isDocReady) {
- me.onLongActionBegin(Asc.c_oAscAsyncActionType.BlockInteraction, LoadingDocument);
- }
- }
- me._state.openDlg = null;
- }
- }
- ]
+ buttons: buttons
});
var recommendedSettings = advOptions.asc_getRecommendedSettings();
diff --git a/apps/spreadsheeteditor/mobile/app/controller/Settings.js b/apps/spreadsheeteditor/mobile/app/controller/Settings.js
index 0057a3114..f9fc62925 100644
--- a/apps/spreadsheeteditor/mobile/app/controller/Settings.js
+++ b/apps/spreadsheeteditor/mobile/app/controller/Settings.js
@@ -200,7 +200,6 @@ define([
});
}).on('close', function () {
$overlay.off('removeClass');
- $overlay.removeClass('modal-overlay-visible')
});
}
@@ -672,12 +671,12 @@ define([
format = $(e.currentTarget).data('format');
if (format) {
- if (format == Asc.c_oAscFileType.TXT) {
+ if (format == Asc.c_oAscFileType.CSV) {
uiApp.confirm(
me.warnDownloadAs,
me.notcriticalErrorTitle,
function () {
- me.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format));
+ Common.NotificationCenter.trigger('download:advanced', Asc.c_oAscAdvancedOptionsID.CSV, me.api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format));
}
);
} else {
diff --git a/apps/spreadsheeteditor/mobile/app/template/Settings.template b/apps/spreadsheeteditor/mobile/app/template/Settings.template
index 3eb255369..96803a72f 100644
--- a/apps/spreadsheeteditor/mobile/app/template/Settings.template
+++ b/apps/spreadsheeteditor/mobile/app/template/Settings.template
@@ -25,7 +25,7 @@
<% } %>
- <% if(phone) {%>
+ <% if(width < 360) {%>
diff --git a/apps/spreadsheeteditor/mobile/app/template/Toolbar.template b/apps/spreadsheeteditor/mobile/app/template/Toolbar.template
index 345205710..a1238415a 100644
--- a/apps/spreadsheeteditor/mobile/app/template/Toolbar.template
+++ b/apps/spreadsheeteditor/mobile/app/template/Toolbar.template
@@ -42,7 +42,7 @@
<% } %>
- <% if (!phone) { %>
+ <% if (width >= 360) { %>
diff --git a/apps/spreadsheeteditor/mobile/app/view/Settings.js b/apps/spreadsheeteditor/mobile/app/view/Settings.js
index d64bd089b..a385fcaaf 100644
--- a/apps/spreadsheeteditor/mobile/app/view/Settings.js
+++ b/apps/spreadsheeteditor/mobile/app/view/Settings.js
@@ -100,7 +100,8 @@ define([
csv: Asc.c_oAscFileType.CSV,
xltx: Asc.c_oAscFileType.XLTX,
ots: Asc.c_oAscFileType.OTS
- }
+ },
+ width : $(window).width()
}));
return this;
diff --git a/apps/spreadsheeteditor/mobile/app/view/Toolbar.js b/apps/spreadsheeteditor/mobile/app/view/Toolbar.js
index 00bfacc15..0eb8ba308 100644
--- a/apps/spreadsheeteditor/mobile/app/view/Toolbar.js
+++ b/apps/spreadsheeteditor/mobile/app/view/Toolbar.js
@@ -80,7 +80,8 @@ define([
$el.prepend(me.template({
android : Common.SharedSettings.get('android'),
phone : Common.SharedSettings.get('phone'),
- backTitle : Common.SharedSettings.get('android') ? '' : me.textBack
+ backTitle : Common.SharedSettings.get('android') ? '' : me.textBack,
+ width : $(window).width()
}));
$('.view-main .navbar').on('addClass removeClass', _.bind(me.onDisplayMainNavbar, me));
diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json
index 6c1ec3d64..de0669b71 100644
--- a/apps/spreadsheeteditor/mobile/locale/bg.json
+++ b/apps/spreadsheeteditor/mobile/locale/bg.json
@@ -102,7 +102,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализациите.",
"SSE.Controllers.Main.criticalErrorExtText": "Натиснете 'OK', за да се върнете към списъка с документи.",
"SSE.Controllers.Main.criticalErrorTitle": "Грешка",
- "SSE.Controllers.Main.defaultTitleText": "Редактор на електронни таблици ONLYOFFICE",
"SSE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.",
"SSE.Controllers.Main.downloadMergeText": "Изтегля се ...",
"SSE.Controllers.Main.downloadMergeTitle": "Изтеглянето",
diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json
index 616b07c96..444e46b87 100644
--- a/apps/spreadsheeteditor/mobile/locale/cs.json
+++ b/apps/spreadsheeteditor/mobile/locale/cs.json
@@ -101,7 +101,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.",
"SSE.Controllers.Main.criticalErrorExtText": "Stisknutím tlačítka \"OK\" se vrátíte do seznamu dokumentů.",
"SSE.Controllers.Main.criticalErrorTitle": "Chyba",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Tabulkový editor",
"SSE.Controllers.Main.downloadErrorText": "Stahování selhalo.",
"SSE.Controllers.Main.downloadMergeText": "Stahování...",
"SSE.Controllers.Main.downloadMergeTitle": "Stahuji",
diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json
index bd2f2fdd9..ede922e95 100644
--- a/apps/spreadsheeteditor/mobile/locale/de.json
+++ b/apps/spreadsheeteditor/mobile/locale/de.json
@@ -102,7 +102,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
"SSE.Controllers.Main.criticalErrorExtText": "Drücken Sie \"OK\", um zur Dokumentenliste zurückzukehren.",
"SSE.Controllers.Main.criticalErrorTitle": "Fehler",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
"SSE.Controllers.Main.downloadMergeText": "Wird heruntergeladen...",
"SSE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen",
diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json
index f77ee5d68..1b6cc3d52 100644
--- a/apps/spreadsheeteditor/mobile/locale/en.json
+++ b/apps/spreadsheeteditor/mobile/locale/en.json
@@ -16,25 +16,26 @@
"SSE.Controllers.AddLink.txtNotUrl": "This field should be a URL in the format 'http://www.example.com'",
"SSE.Controllers.AddOther.textEmptyImgUrl": "You need to specify image URL.",
"SSE.Controllers.AddOther.txtNotUrl": "This field should be a URL in the format 'http://www.example.com'",
+ "del_SSE.Controllers.Collaboration.textEditUser": "Document is currently being edited by several users.",
"SSE.Controllers.DocumentHolder.menuAddLink": "Add Link",
"SSE.Controllers.DocumentHolder.menuCell": "Cell",
"SSE.Controllers.DocumentHolder.menuCopy": "Copy",
"SSE.Controllers.DocumentHolder.menuCut": "Cut",
"SSE.Controllers.DocumentHolder.menuDelete": "Delete",
"SSE.Controllers.DocumentHolder.menuEdit": "Edit",
+ "SSE.Controllers.DocumentHolder.menuFreezePanes": "Freeze Panes",
"SSE.Controllers.DocumentHolder.menuHide": "Hide",
"SSE.Controllers.DocumentHolder.menuMerge": "Merge",
"SSE.Controllers.DocumentHolder.menuMore": "More",
"SSE.Controllers.DocumentHolder.menuOpenLink": "Open Link",
"SSE.Controllers.DocumentHolder.menuPaste": "Paste",
"SSE.Controllers.DocumentHolder.menuShow": "Show",
+ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Unfreeze Panes",
"SSE.Controllers.DocumentHolder.menuUnmerge": "Unmerge",
"SSE.Controllers.DocumentHolder.menuUnwrap": "Unwrap",
"SSE.Controllers.DocumentHolder.menuWrap": "Wrap",
"SSE.Controllers.DocumentHolder.sheetCancel": "Cancel",
"SSE.Controllers.DocumentHolder.warnMergeLostData": "Operation can destroy data in the selected cells. Continue?",
- "SSE.Controllers.DocumentHolder.menuFreezePanes": "Freeze Panes",
- "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Unfreeze Panes",
"SSE.Controllers.EditCell.textAuto": "Auto",
"SSE.Controllers.EditCell.textFonts": "Fonts",
"SSE.Controllers.EditCell.textPt": "pt",
@@ -94,6 +95,10 @@
"SSE.Controllers.EditHyperlink.textInternalLink": "Internal Data Range",
"SSE.Controllers.EditHyperlink.textInvalidRange": "Invalid cells range",
"SSE.Controllers.EditHyperlink.txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
+ "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}",
+ "SSE.Controllers.FilterOptions.textErrorMsg": "You must choose at least one value",
+ "SSE.Controllers.FilterOptions.textErrorTitle": "Warning",
+ "SSE.Controllers.FilterOptions.textSelectAll": "Select All",
"SSE.Controllers.Main.advCSVOptions": "Choose CSV Options",
"SSE.Controllers.Main.advDRMEnterPassword": "Enter your password:",
"SSE.Controllers.Main.advDRMOptions": "Protected File",
@@ -104,7 +109,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
"SSE.Controllers.Main.criticalErrorExtText": "Press 'OK' to return to document list.",
"SSE.Controllers.Main.criticalErrorTitle": "Error",
- "del_SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Download failed.",
"SSE.Controllers.Main.downloadMergeText": "Downloading...",
"SSE.Controllers.Main.downloadMergeTitle": "Downloading",
@@ -135,6 +139,7 @@
"SSE.Controllers.Main.errorFillRange": "Could not fill the selected range of cells. All the merged cells need to be the same size.",
"SSE.Controllers.Main.errorFormulaName": "An error in the entered formula. Incorrect formula name is used.",
"SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters. Use the CONCATENATE function or concatenation operator (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist. Please check the data and try again.",
"SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.",
"SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
@@ -165,7 +170,6 @@
"SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document, but will not be able to download until the connection is restored.",
"SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula. Wrong number of brackets is used.",
"SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used. Please correct the error.",
- "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters. Use the CONCATENATE function or concatenation operator (&).",
"SSE.Controllers.Main.leavePageText": "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.",
"SSE.Controllers.Main.loadFontsTextText": "Loading data...",
"SSE.Controllers.Main.loadFontsTitleText": "Loading Data",
@@ -301,10 +305,6 @@
"SSE.Controllers.Toolbar.leaveButtonText": "Leave this Page",
"SSE.Controllers.Toolbar.stayButtonText": "Stay on this Page",
"Common.Controllers.Collaboration.textEditUser": "Document is currently being edited by several users.",
- "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}",
- "SSE.Controllers.FilterOptions.textSelectAll": "Select All",
- "SSE.Controllers.FilterOptions.textErrorTitle": "Warning",
- "SSE.Controllers.FilterOptions.textErrorMsg": "You must choose at least one value",
"SSE.Views.AddFunction.sCatDateAndTime": "Date and time",
"SSE.Views.AddFunction.sCatEngineering": "Engineering",
"SSE.Views.AddFunction.sCatFinancial": "Financial",
@@ -339,6 +339,10 @@
"SSE.Views.AddOther.textInsertImage": "Insert Image",
"SSE.Views.AddOther.textLink": "Link",
"SSE.Views.AddOther.textSort": "Sort and Filter",
+ "del_SSE.Views.Collaboration.textBack": "Back",
+ "del_SSE.Views.Collaboration.textCollaboration": "Collaboration",
+ "del_SSE.Views.Collaboration.textEditUsers": "Users",
+ "del_SSE.Views.Collaboration.textСomments": "Сomments",
"SSE.Views.EditCell.textAccounting": "Accounting",
"SSE.Views.EditCell.textAlignBottom": "Align Bottom",
"SSE.Views.EditCell.textAlignCenter": "Align Center",
@@ -490,28 +494,38 @@
"SSE.Views.EditText.textFonts": "Fonts",
"SSE.Views.EditText.textSize": "Size",
"SSE.Views.EditText.textTextColor": "Text Color",
+ "SSE.Views.FilterOptions.textClearFilter": "Clear Filter",
+ "SSE.Views.FilterOptions.textDeleteFilter": "Delete Filter",
+ "SSE.Views.FilterOptions.textFilter": "Filter Options",
+ "SSE.Views.Search.textByColumns": "By columns",
+ "SSE.Views.Search.textByRows": "By rows",
"SSE.Views.Search.textDone": "Done",
"SSE.Views.Search.textFind": "Find",
"SSE.Views.Search.textFindAndReplace": "Find and Replace",
+ "SSE.Views.Search.textFormulas": "Formulas",
+ "SSE.Views.Search.textHighlightRes": "Highlight results",
+ "SSE.Views.Search.textLookIn": "Look In",
"SSE.Views.Search.textMatchCase": "Match Case",
"SSE.Views.Search.textMatchCell": "Match Cell",
"SSE.Views.Search.textReplace": "Replace",
"SSE.Views.Search.textSearch": "Search",
+ "SSE.Views.Search.textSearchBy": "Search",
"SSE.Views.Search.textSearchIn": "Search In",
"SSE.Views.Search.textSheet": "Sheet",
- "SSE.Views.Search.textWorkbook": "Workbook",
- "SSE.Views.Search.textLookIn": "Look In",
- "SSE.Views.Search.textFormulas": "Formulas",
"SSE.Views.Search.textValues": "Values",
- "SSE.Views.Search.textByColumns": "By columns",
- "SSE.Views.Search.textByRows": "By rows",
- "SSE.Views.Search.textSearchBy": "Search",
- "SSE.Views.Search.textHighlightRes": "Highlight results",
+ "SSE.Views.Search.textWorkbook": "Workbook",
"SSE.Views.Settings.textAbout": "About",
"SSE.Views.Settings.textAddress": "address",
+ "SSE.Views.Settings.textApplicationSettings": "Application Settings",
"SSE.Views.Settings.textAuthor": "Author",
"SSE.Views.Settings.textBack": "Back",
+ "SSE.Views.Settings.textBottom": "Bottom",
+ "SSE.Views.Settings.textCentimeter": "Centimeter",
+ "SSE.Views.Settings.textCollaboration": "Collaboration",
+ "SSE.Views.Settings.textColorSchemes": "Color Schemes",
"SSE.Views.Settings.textCreateDate": "Creation date",
+ "SSE.Views.Settings.textCustom": "Custom",
+ "SSE.Views.Settings.textCustomSize": "Custom Size",
"SSE.Views.Settings.textDocInfo": "Spreadsheet Info",
"SSE.Views.Settings.textDocTitle": "Spreadsheet title",
"SSE.Views.Settings.textDone": "Done",
@@ -519,42 +533,35 @@
"SSE.Views.Settings.textDownloadAs": "Download As...",
"SSE.Views.Settings.textEditDoc": "Edit Document",
"SSE.Views.Settings.textEmail": "email",
+ "SSE.Views.Settings.textExample": "Example",
"SSE.Views.Settings.textFind": "Find",
"SSE.Views.Settings.textFindAndReplace": "Find and Replace",
+ "SSE.Views.Settings.textFormat": "Format",
+ "SSE.Views.Settings.textFormulaLanguage": "Formula Language",
"SSE.Views.Settings.textHelp": "Help",
+ "SSE.Views.Settings.textHideGridlines": "Hide Gridlines",
+ "SSE.Views.Settings.textHideHeadings": "Hide Headings",
+ "SSE.Views.Settings.textInch": "Inch",
+ "SSE.Views.Settings.textLandscape": "Landscape",
+ "SSE.Views.Settings.textLeft": "Left",
"SSE.Views.Settings.textLoading": "Loading...",
+ "SSE.Views.Settings.textMargins": "Margins",
+ "SSE.Views.Settings.textOrientation": "Orientation",
+ "SSE.Views.Settings.textPoint": "Point",
+ "SSE.Views.Settings.textPortrait": "Portrait",
"SSE.Views.Settings.textPoweredBy": "Powered by",
"SSE.Views.Settings.textPrint": "Print",
- "SSE.Views.Settings.textSettings": "Settings",
- "SSE.Views.Settings.textTel": "tel",
- "SSE.Views.Settings.textVersion": "Version",
- "SSE.Views.Settings.textApplicationSettings": "Application Settings",
- "SSE.Views.Settings.textUnitOfMeasurement": "Unit of Measurement",
- "SSE.Views.Settings.textCentimeter": "Centimeter",
- "SSE.Views.Settings.textPoint": "Point",
- "SSE.Views.Settings.textInch": "Inch",
- "SSE.Views.Settings.textColorSchemes": "Color Schemes",
- "SSE.Views.Settings.textSpreadsheetSettings": "Spreadsheet Settings",
- "SSE.Views.Settings.textHideHeadings": "Hide Headings",
- "SSE.Views.Settings.textHideGridlines": "Hide Gridlines",
- "SSE.Views.Settings.textOrientation": "Orientation",
- "SSE.Views.Settings.textPortrait": "Portrait",
- "SSE.Views.Settings.textLandscape": "Landscape",
- "SSE.Views.Settings.textFormat": "Format",
- "SSE.Views.Settings.textSpreadsheetFormats": "Spreadsheet Formats",
- "SSE.Views.Settings.textCustom": "Custom",
- "SSE.Views.Settings.textCustomSize": "Custom Size",
- "SSE.Views.Settings.textMargins": "Margins",
- "SSE.Views.Settings.textTop": "Top",
- "SSE.Views.Settings.textLeft": "Left",
- "SSE.Views.Settings.textBottom": "Bottom",
- "SSE.Views.Settings.textRight": "Right",
- "SSE.Views.Settings.unknownText": "Unknown",
- "SSE.Views.Settings.textFormulaLanguage": "Formula Language",
- "SSE.Views.Settings.textExample": "Example",
- "SSE.Views.Settings.textCollaboration": "Collaboration",
"SSE.Views.Settings.textR1C1Style": "R1C1 Reference Style",
"SSE.Views.Settings.textRegionalSettings": "Regional Settings",
+ "SSE.Views.Settings.textRight": "Right",
+ "SSE.Views.Settings.textSettings": "Settings",
+ "SSE.Views.Settings.textSpreadsheetFormats": "Spreadsheet Formats",
+ "SSE.Views.Settings.textSpreadsheetSettings": "Spreadsheet Settings",
+ "SSE.Views.Settings.textTel": "tel",
+ "SSE.Views.Settings.textTop": "Top",
+ "SSE.Views.Settings.textUnitOfMeasurement": "Unit of Measurement",
+ "SSE.Views.Settings.textVersion": "Version",
+ "SSE.Views.Settings.unknownText": "Unknown",
"SSE.Views.Settings.textCommentingDisplay": "Commenting Display",
"SSE.Views.Settings.textDisplayComments": "Comments",
"SSE.Views.Settings.textDisplayResolvedComments": "Resolved Comments",
@@ -569,11 +576,8 @@
"SSE.Views.Settings.textUploaded": "Uploaded",
"SSE.Views.Settings. textLocation": "Location",
"SSE.Views.Toolbar.textBack": "Back",
- "Common.Views.Collaboration.textCollaboration": "Collaboration",
- "Common.Views.Collaboration.textСomments": "Сomments",
"Common.Views.Collaboration.textBack": "Back",
+ "Common.Views.Collaboration.textCollaboration": "Collaboration",
"Common.Views.Collaboration.textEditUsers": "Users",
- "SSE.Views.FilterOptions.textFilter": "Filter Options",
- "SSE.Views.FilterOptions.textClearFilter": "Clear Filter",
- "SSE.Views.FilterOptions.textDeleteFilter": "Delete Filter"
+ "Common.Views.Collaboration.textСomments": "Сomments"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json
index f362126a4..3988cf8f8 100644
--- a/apps/spreadsheeteditor/mobile/locale/es.json
+++ b/apps/spreadsheeteditor/mobile/locale/es.json
@@ -16,18 +16,21 @@
"SSE.Controllers.AddLink.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'",
"SSE.Controllers.AddOther.textEmptyImgUrl": "Hay que especificar URL de imagen",
"SSE.Controllers.AddOther.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'",
+ "Common.Controllers.Collaboration.textEditUser": "Actualmente el documento está siendo editado por múltiples usuarios.",
"SSE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ",
"SSE.Controllers.DocumentHolder.menuCell": "Celda",
"SSE.Controllers.DocumentHolder.menuCopy": "Copiar ",
"SSE.Controllers.DocumentHolder.menuCut": "Cortar",
"SSE.Controllers.DocumentHolder.menuDelete": "Eliminar",
"SSE.Controllers.DocumentHolder.menuEdit": "Editar",
+ "SSE.Controllers.DocumentHolder.menuFreezePanes": "Inmovilizar paneles",
"SSE.Controllers.DocumentHolder.menuHide": "Ocultar",
"SSE.Controllers.DocumentHolder.menuMerge": "Unir",
"SSE.Controllers.DocumentHolder.menuMore": "Más",
"SSE.Controllers.DocumentHolder.menuOpenLink": "Abrir enlace",
"SSE.Controllers.DocumentHolder.menuPaste": "Pegar",
"SSE.Controllers.DocumentHolder.menuShow": "Mostrar",
+ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Movilizar paneles",
"SSE.Controllers.DocumentHolder.menuUnmerge": "Anular combinación",
"SSE.Controllers.DocumentHolder.menuUnwrap": "Desenvolver",
"SSE.Controllers.DocumentHolder.menuWrap": "Envoltura",
@@ -92,6 +95,10 @@
"SSE.Controllers.EditHyperlink.textInternalLink": "Rango de datos interno",
"SSE.Controllers.EditHyperlink.textInvalidRange": "Rango de celdas inválido",
"SSE.Controllers.EditHyperlink.txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"",
+ "SSE.Controllers.FilterOptions.textEmptyItem": "{Vacíos}",
+ "SSE.Controllers.FilterOptions.textErrorMsg": "Usted debe seleccionar al menos un valor",
+ "SSE.Controllers.FilterOptions.textErrorTitle": "Aviso",
+ "SSE.Controllers.FilterOptions.textSelectAll": "Seleccionar todo",
"SSE.Controllers.Main.advCSVOptions": "Elegir los parámetros de CSV",
"SSE.Controllers.Main.advDRMEnterPassword": "Introduzca su contraseña:",
"SSE.Controllers.Main.advDRMOptions": "Archivo protegido",
@@ -102,7 +109,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.",
"SSE.Controllers.Main.criticalErrorExtText": "Pulse 'OK' para volver a la lista de documentos.",
"SSE.Controllers.Main.criticalErrorTitle": "Error",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Error en la descarga",
"SSE.Controllers.Main.downloadMergeText": "Descargando...",
"SSE.Controllers.Main.downloadMergeTitle": "Descargando",
@@ -117,7 +123,7 @@
"SSE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
"SSE.Controllers.Main.errorChangeArray": "No se puede cambiar parte de una matriz.",
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. No se puede editar el documento ahora.",
- "SSE.Controllers.Main.errorConnectToServer": "No se pudo guardar el documento. Por favor, verifique la configuración de conexión o póngase en contacto con el administrador. Al hacer clic en el botón \"Aceptar\", se le pedirá que descargue el documento. Encuentre más información acerca de la conexión Servidor de Documentosaquí",
+ "SSE.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. Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.
Encuentre más información acerca de conexión de Servidor de Documentos aquí",
"SSE.Controllers.Main.errorCopyMultiselectArea": "No se puede usar este comando con varias selecciones. Seleccione un solo rango y intente de nuevo.",
"SSE.Controllers.Main.errorCountArg": "Hay un error en la fórmula introducida. Se usa un número de argumentos incorrecto.",
"SSE.Controllers.Main.errorCountArgExceed": "Un error en la fórmula introducida. Número de argumentos es excedido.",
@@ -133,6 +139,7 @@
"SSE.Controllers.Main.errorFillRange": "No se puede rellenar el rango de celdas seleccionado. Todas las celdas seleccionadas deben tener el mismo tamaño.",
"SSE.Controllers.Main.errorFormulaName": "Hay un error en la fórmula introducida. Se usa un nombre de fórmula incorrecto.",
"SSE.Controllers.Main.errorFormulaParsing": "Error interno mientras analizando la fórmula.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "Valores de texto en fórmulas son limitados al número de caracteres - 255. Use la función CONCATENAR u operador de concatenación (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "La función se refiere a una hoja que no existe. Por favor, verifique los datos e inténtelo de nuevo.",
"SSE.Controllers.Main.errorInvalidRef": "Introducir un nombre correcto para la selección o una referencia válida para pasar.",
"SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
@@ -203,7 +210,7 @@
"SSE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador. Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.",
"SSE.Controllers.Main.textDone": "Listo",
"SSE.Controllers.Main.textLoadingDocument": "Cargando hoja de cálculo",
- "SSE.Controllers.Main.textNoLicenseTitle": "Limitación en conexiones a ONLYOFFICE",
+ "SSE.Controllers.Main.textNoLicenseTitle": "%1 limitación de conexiones",
"SSE.Controllers.Main.textOK": "OK",
"SSE.Controllers.Main.textPaidFeature": "Función de pago",
"SSE.Controllers.Main.textPassword": "Contraseña",
@@ -270,7 +277,7 @@
"SSE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado. Por favor, actualice su licencia y después recargue la página.",
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Se ha excedido el número permitido de los usuarios simultáneos, y el documento se abrirá para sólo lectura. Por favor, contacte con su administrador para recibir más información.",
"SSE.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. Si se requiere más, por favor, considere comprar una licencia comercial.",
- "SSE.Controllers.Main.warnNoLicenseUsers": "Esta versión de Editores de ONLYOFFICE tiene ciertas limitaciones para usuarios simultáneos. Si se requiere más, por favor, considere comprar una licencia comercial.",
+ "SSE.Controllers.Main.warnNoLicenseUsers": "Esta versión de editores %1 tiene ciertas limitaciones para usuarios simultáneos. Si necesita más, por favor, considere comprar una licencia comercial.",
"SSE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.",
"SSE.Controllers.Search.textNoTextFound": "Texto no encontrado",
"SSE.Controllers.Search.textReplaceAll": "Reemplazar todo",
@@ -331,6 +338,10 @@
"SSE.Views.AddOther.textInsertImage": "Insertar imagen",
"SSE.Views.AddOther.textLink": "Enlace",
"SSE.Views.AddOther.textSort": "Ordenar y filtrar",
+ "Common.Views.Collaboration.textBack": "Atrás",
+ "Common.Views.Collaboration.textCollaboration": "Colaboración",
+ "Common.Views.Collaboration.textEditUsers": "Usuarios",
+ "Common.Views.Collaboration.textСomments": "Comentarios",
"SSE.Views.EditCell.textAccounting": "Contabilidad",
"SSE.Views.EditCell.textAlignBottom": "Alinear en la parte inferior",
"SSE.Views.EditCell.textAlignCenter": "Alinear al centro",
@@ -482,21 +493,38 @@
"SSE.Views.EditText.textFonts": "Fuentes",
"SSE.Views.EditText.textSize": "Tamaño",
"SSE.Views.EditText.textTextColor": "Color de texto",
+ "SSE.Views.FilterOptions.textClearFilter": "Borrar filtro",
+ "SSE.Views.FilterOptions.textDeleteFilter": "Eliminar filtro",
+ "SSE.Views.FilterOptions.textFilter": "Opciones de filtro",
+ "SSE.Views.Search.textByColumns": "Por columnas",
+ "SSE.Views.Search.textByRows": "Por filas",
"SSE.Views.Search.textDone": "Listo",
"SSE.Views.Search.textFind": "Buscar",
"SSE.Views.Search.textFindAndReplace": "Buscar y reemplazar",
+ "SSE.Views.Search.textFormulas": "Fórmulas ",
+ "SSE.Views.Search.textHighlightRes": "Resaltar resultados",
+ "SSE.Views.Search.textLookIn": "Buscar en",
"SSE.Views.Search.textMatchCase": "Coincidir mayúsculas y minúsculas",
"SSE.Views.Search.textMatchCell": "Coincidir celda",
"SSE.Views.Search.textReplace": "Reemplazar",
"SSE.Views.Search.textSearch": "Búsqueda",
+ "SSE.Views.Search.textSearchBy": "Búsqueda",
"SSE.Views.Search.textSearchIn": "Buscar en",
"SSE.Views.Search.textSheet": "Hoja",
+ "SSE.Views.Search.textValues": "Valores",
"SSE.Views.Search.textWorkbook": "Libro de trabajo",
"SSE.Views.Settings.textAbout": "Acerca de producto",
"SSE.Views.Settings.textAddress": "dirección",
+ "SSE.Views.Settings.textApplicationSettings": "Ajustes de aplicación",
"SSE.Views.Settings.textAuthor": "Autor",
"SSE.Views.Settings.textBack": "Atrás",
+ "SSE.Views.Settings.textBottom": "Abajo ",
+ "SSE.Views.Settings.textCentimeter": "Centímetro",
+ "SSE.Views.Settings.textCollaboration": "Colaboración",
+ "SSE.Views.Settings.textColorSchemes": "Esquemas de color",
"SSE.Views.Settings.textCreateDate": "Fecha de creación",
+ "SSE.Views.Settings.textCustom": "Personalizado",
+ "SSE.Views.Settings.textCustomSize": "Tamaño personalizado",
"SSE.Views.Settings.textDocInfo": "Información sobre hoja de cálculo",
"SSE.Views.Settings.textDocTitle": "Título de hoja de cálculo",
"SSE.Views.Settings.textDone": "Listo",
@@ -504,14 +532,33 @@
"SSE.Views.Settings.textDownloadAs": "Descargar como...",
"SSE.Views.Settings.textEditDoc": "Editar documento",
"SSE.Views.Settings.textEmail": "email",
+ "SSE.Views.Settings.textExample": "Ejemplo",
"SSE.Views.Settings.textFind": "Buscar",
"SSE.Views.Settings.textFindAndReplace": "Buscar y reemplazar",
+ "SSE.Views.Settings.textFormat": "Formato",
+ "SSE.Views.Settings.textFormulaLanguage": "Idioma de fórmulas",
"SSE.Views.Settings.textHelp": "Ayuda",
+ "SSE.Views.Settings.textHideGridlines": "Ocultar líneas de la cuadrícula",
+ "SSE.Views.Settings.textHideHeadings": "Ocultar encabezados",
+ "SSE.Views.Settings.textInch": "Pulgada",
+ "SSE.Views.Settings.textLandscape": "Horizontal",
+ "SSE.Views.Settings.textLeft": "A la izquierda",
"SSE.Views.Settings.textLoading": "Cargando...",
+ "SSE.Views.Settings.textMargins": "Márgenes",
+ "SSE.Views.Settings.textOrientation": "Orientación",
+ "SSE.Views.Settings.textPoint": "Punto",
+ "SSE.Views.Settings.textPortrait": "Vertical",
"SSE.Views.Settings.textPoweredBy": "Desarrollado por",
"SSE.Views.Settings.textPrint": "Imprimir",
+ "SSE.Views.Settings.textR1C1Style": "Estilo de referencia R1C1",
+ "SSE.Views.Settings.textRegionalSettings": "Configuración regional",
+ "SSE.Views.Settings.textRight": "A la derecha",
"SSE.Views.Settings.textSettings": "Ajustes",
+ "SSE.Views.Settings.textSpreadsheetFormats": "Formatos de hoja de cálculo",
+ "SSE.Views.Settings.textSpreadsheetSettings": "Ajustes de hoja de cálculo",
"SSE.Views.Settings.textTel": "Tel.",
+ "SSE.Views.Settings.textTop": "Arriba",
+ "SSE.Views.Settings.textUnitOfMeasurement": "Unidad de medida",
"SSE.Views.Settings.textVersion": "Versión ",
"SSE.Views.Settings.unknownText": "Desconocido",
"SSE.Views.Toolbar.textBack": "Atrás"
diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json
index 00c29e026..4029a22dd 100644
--- a/apps/spreadsheeteditor/mobile/locale/fr.json
+++ b/apps/spreadsheeteditor/mobile/locale/fr.json
@@ -16,18 +16,21 @@
"SSE.Controllers.AddLink.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'",
"SSE.Controllers.AddOther.textEmptyImgUrl": "Spécifiez l'URL de l'image",
"SSE.Controllers.AddOther.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'",
+ "Common.Controllers.Collaboration.textEditUser": "Le document est en cours de modification par plusieurs utilisateurs",
"SSE.Controllers.DocumentHolder.menuAddLink": "Ajouter le lien",
"SSE.Controllers.DocumentHolder.menuCell": "Cellule",
"SSE.Controllers.DocumentHolder.menuCopy": "Copier",
"SSE.Controllers.DocumentHolder.menuCut": "Couper",
"SSE.Controllers.DocumentHolder.menuDelete": "Supprimer",
"SSE.Controllers.DocumentHolder.menuEdit": "Modifier",
+ "SSE.Controllers.DocumentHolder.menuFreezePanes": "Figer les volets",
"SSE.Controllers.DocumentHolder.menuHide": "Masquer",
"SSE.Controllers.DocumentHolder.menuMerge": "Fusionner",
"SSE.Controllers.DocumentHolder.menuMore": "Plus",
"SSE.Controllers.DocumentHolder.menuOpenLink": "Ouvrir le lien",
"SSE.Controllers.DocumentHolder.menuPaste": "Coller",
"SSE.Controllers.DocumentHolder.menuShow": "Afficher",
+ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Libérer les volets",
"SSE.Controllers.DocumentHolder.menuUnmerge": "Annuler la fusion",
"SSE.Controllers.DocumentHolder.menuUnwrap": "Annuler le renvoi",
"SSE.Controllers.DocumentHolder.menuWrap": "Renvoi à la ligne",
@@ -92,6 +95,10 @@
"SSE.Controllers.EditHyperlink.textInternalLink": "Plage de données interne",
"SSE.Controllers.EditHyperlink.textInvalidRange": "Plage de cellules non valide",
"SSE.Controllers.EditHyperlink.txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"",
+ "SSE.Controllers.FilterOptions.textEmptyItem": "{Vides}",
+ "SSE.Controllers.FilterOptions.textErrorMsg": "Vous devez choisir au moins une valeur",
+ "SSE.Controllers.FilterOptions.textErrorTitle": "Avertissement",
+ "SSE.Controllers.FilterOptions.textSelectAll": "Sélectionner tout",
"SSE.Controllers.Main.advCSVOptions": "Choisir les paramètres CSV",
"SSE.Controllers.Main.advDRMEnterPassword": "Entrez votre mot de passe:",
"SSE.Controllers.Main.advDRMOptions": "Fichier protégé",
@@ -102,7 +109,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Expiration du délai de conversion.",
"SSE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.",
"SSE.Controllers.Main.criticalErrorTitle": "Erreur",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Échec du téléchargement.",
"SSE.Controllers.Main.downloadMergeText": "Téléchargement en cours...",
"SSE.Controllers.Main.downloadMergeTitle": "Téléchargement en cours",
@@ -133,6 +139,7 @@
"SSE.Controllers.Main.errorFillRange": "Il est impossible de remplir la plage de cellules sélectionnée. Toutes les cellules unies doivent être de la même taille.",
"SSE.Controllers.Main.errorFormulaName": "Une erreur dans la formule entrée. Le nom de formule utilisé est incorrect.",
"SSE.Controllers.Main.errorFormulaParsing": "Une erreur interne lors de l'analyse de la formule.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "Les valeurs de texte dans les formules sont limitées à 255 caractères. Utilisez la fonction CONCATENER ou l’opérateur de concaténation (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas. Veuillez vérifier les données et réessayez.",
"SSE.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable pour aller à.",
"SSE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
@@ -331,6 +338,10 @@
"SSE.Views.AddOther.textInsertImage": "Insérer une image",
"SSE.Views.AddOther.textLink": "Lien",
"SSE.Views.AddOther.textSort": "Trier et filtrer",
+ "Common.Views.Collaboration.textBack": "Retour",
+ "Common.Views.Collaboration.textCollaboration": "Collaboration",
+ "Common.Views.Collaboration.textEditUsers": "Utilisateurs",
+ "Common.Views.Collaboration.textСomments": "Commentaires",
"SSE.Views.EditCell.textAccounting": "Comptabilité",
"SSE.Views.EditCell.textAlignBottom": "Aligner en bas",
"SSE.Views.EditCell.textAlignCenter": "Aligner au centre",
@@ -482,21 +493,38 @@
"SSE.Views.EditText.textFonts": "Polices",
"SSE.Views.EditText.textSize": "Taille",
"SSE.Views.EditText.textTextColor": "Couleur du texte",
+ "SSE.Views.FilterOptions.textClearFilter": "Effacer le filtre",
+ "SSE.Views.FilterOptions.textDeleteFilter": "Supprimer le filtre",
+ "SSE.Views.FilterOptions.textFilter": "Options de filtre",
+ "SSE.Views.Search.textByColumns": "Par colonnes",
+ "SSE.Views.Search.textByRows": "Par lignes",
"SSE.Views.Search.textDone": "Terminé",
"SSE.Views.Search.textFind": "Trouver",
"SSE.Views.Search.textFindAndReplace": "Rechercher et remplacer",
+ "SSE.Views.Search.textFormulas": "Formules",
+ "SSE.Views.Search.textHighlightRes": "Surligner les résultats",
+ "SSE.Views.Search.textLookIn": "Rechercher dans",
"SSE.Views.Search.textMatchCase": "Respecter la casse",
"SSE.Views.Search.textMatchCell": "Respecter la cellule",
"SSE.Views.Search.textReplace": "Remplacer",
"SSE.Views.Search.textSearch": "Rechercher",
+ "SSE.Views.Search.textSearchBy": "Recherche",
"SSE.Views.Search.textSearchIn": "Сhamp de recherche",
"SSE.Views.Search.textSheet": "Feuille",
+ "SSE.Views.Search.textValues": "Valeurs",
"SSE.Views.Search.textWorkbook": "Classeur",
"SSE.Views.Settings.textAbout": "A propos",
"SSE.Views.Settings.textAddress": "adresse",
+ "SSE.Views.Settings.textApplicationSettings": "Paramètres de l'application",
"SSE.Views.Settings.textAuthor": "Auteur",
"SSE.Views.Settings.textBack": "Retour",
+ "SSE.Views.Settings.textBottom": "En bas",
+ "SSE.Views.Settings.textCentimeter": "Centimètre",
+ "SSE.Views.Settings.textCollaboration": "Collaboration",
+ "SSE.Views.Settings.textColorSchemes": "Jeux de couleurs",
"SSE.Views.Settings.textCreateDate": "Date de création",
+ "SSE.Views.Settings.textCustom": "Personnalisé",
+ "SSE.Views.Settings.textCustomSize": "Taille personnalisée",
"SSE.Views.Settings.textDocInfo": "Infos sur tableur",
"SSE.Views.Settings.textDocTitle": "Titre du classeur",
"SSE.Views.Settings.textDone": "Terminé",
@@ -504,14 +532,33 @@
"SSE.Views.Settings.textDownloadAs": "Télécharger comme...",
"SSE.Views.Settings.textEditDoc": "Modifier",
"SSE.Views.Settings.textEmail": "e-mail",
+ "SSE.Views.Settings.textExample": "Example",
"SSE.Views.Settings.textFind": "Trouver",
"SSE.Views.Settings.textFindAndReplace": "Rechercher et remplacer",
+ "SSE.Views.Settings.textFormat": "Format",
+ "SSE.Views.Settings.textFormulaLanguage": "La formule de langue",
"SSE.Views.Settings.textHelp": "Aide",
+ "SSE.Views.Settings.textHideGridlines": "Masquer le quadrillage",
+ "SSE.Views.Settings.textHideHeadings": "Masquer les en-têtes",
+ "SSE.Views.Settings.textInch": "Pouce",
+ "SSE.Views.Settings.textLandscape": "Paysage",
+ "SSE.Views.Settings.textLeft": "À gauche",
"SSE.Views.Settings.textLoading": "Chargement en cours...",
+ "SSE.Views.Settings.textMargins": "Marges",
+ "SSE.Views.Settings.textOrientation": "Orientation",
+ "SSE.Views.Settings.textPoint": "Point",
+ "SSE.Views.Settings.textPortrait": "Portrait",
"SSE.Views.Settings.textPoweredBy": "Propulsé par ",
"SSE.Views.Settings.textPrint": "Imprimer",
+ "SSE.Views.Settings.textR1C1Style": "Style de référence L1C1",
+ "SSE.Views.Settings.textRegionalSettings": "Paramètres régionaux",
+ "SSE.Views.Settings.textRight": "À droit",
"SSE.Views.Settings.textSettings": "Paramètres",
+ "SSE.Views.Settings.textSpreadsheetFormats": "Formats de feuille de calcul",
+ "SSE.Views.Settings.textSpreadsheetSettings": "Paramètres de feuille de calcul",
"SSE.Views.Settings.textTel": "tél.",
+ "SSE.Views.Settings.textTop": "En haut",
+ "SSE.Views.Settings.textUnitOfMeasurement": "Unité de mesure",
"SSE.Views.Settings.textVersion": "Version",
"SSE.Views.Settings.unknownText": "Inconnu",
"SSE.Views.Toolbar.textBack": "Retour"
diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json
index e1dca4563..739088f84 100644
--- a/apps/spreadsheeteditor/mobile/locale/hu.json
+++ b/apps/spreadsheeteditor/mobile/locale/hu.json
@@ -16,18 +16,21 @@
"SSE.Controllers.AddLink.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie",
"SSE.Controllers.AddOther.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.",
"SSE.Controllers.AddOther.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie",
+ "Common.Controllers.Collaboration.textEditUser": "A dokumentumot jelenleg több felhasználó szerkeszti.",
"SSE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása",
"SSE.Controllers.DocumentHolder.menuCell": "Cella",
"SSE.Controllers.DocumentHolder.menuCopy": "Másol",
"SSE.Controllers.DocumentHolder.menuCut": "Kivág",
"SSE.Controllers.DocumentHolder.menuDelete": "Töröl",
"SSE.Controllers.DocumentHolder.menuEdit": "Szerkeszt",
+ "SSE.Controllers.DocumentHolder.menuFreezePanes": "Panelek rögzítése",
"SSE.Controllers.DocumentHolder.menuHide": "Elrejt",
"SSE.Controllers.DocumentHolder.menuMerge": "Összevon",
"SSE.Controllers.DocumentHolder.menuMore": "Még",
"SSE.Controllers.DocumentHolder.menuOpenLink": "Link megnyitása",
"SSE.Controllers.DocumentHolder.menuPaste": "Beilleszt",
"SSE.Controllers.DocumentHolder.menuShow": "Mutat",
+ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Rögzítés eltávolítása",
"SSE.Controllers.DocumentHolder.menuUnmerge": "Szétválaszt",
"SSE.Controllers.DocumentHolder.menuUnwrap": "Tördelés megszüntetése",
"SSE.Controllers.DocumentHolder.menuWrap": "Tördel",
@@ -92,6 +95,9 @@
"SSE.Controllers.EditHyperlink.textInternalLink": "Belső adattartomány",
"SSE.Controllers.EditHyperlink.textInvalidRange": "Érvénytelen cellatartomány",
"SSE.Controllers.EditHyperlink.txtNotUrl": "A mező URL-címének a \"http://www.example.com\" formátumban kell lennie",
+ "SSE.Controllers.FilterOptions.textErrorMsg": "Legalább egy értéket ki kell választania",
+ "SSE.Controllers.FilterOptions.textErrorTitle": "Figyelmeztetés",
+ "SSE.Controllers.FilterOptions.textSelectAll": "Összes kiválasztása",
"SSE.Controllers.Main.advCSVOptions": "Válasszon a CSV beállítások közül",
"SSE.Controllers.Main.advDRMEnterPassword": "Adja meg a jelszavát:",
"SSE.Controllers.Main.advDRMOptions": "Védett fájl",
@@ -102,7 +108,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.",
"SSE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\"-t a dokumentumok listájához.",
"SSE.Controllers.Main.criticalErrorTitle": "Hiba",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Táblázatkezelő",
"SSE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.",
"SSE.Controllers.Main.downloadMergeText": "Letöltés...",
"SSE.Controllers.Main.downloadMergeTitle": "Letöltés",
@@ -117,7 +122,7 @@
"SSE.Controllers.Main.errorBadImageUrl": "Hibás kép URL",
"SSE.Controllers.Main.errorChangeArray": "Nem módosíthatja a tömb egy részét.",
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Elveszett a kapcsolat a szerverrel. A dokumentum jelenleg nem szerkeszthető.",
- "SSE.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. Ha az 'OK'-ra kattint letöltheti a dokumentumot.
Bővebb információk a Dokumentum Szerverhez kapcsolódásról itt találhat.",
+ "SSE.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. Ha az 'OK'-ra kattint letöltheti a dokumentumot.
Bővebb információk a Dokumentum Szerverhez kapcsolódásról itt találhat.",
"SSE.Controllers.Main.errorCopyMultiselectArea": "Ez a parancs nem használható többes kiválasztással. Válasszon ki egy tartományt és próbálja újra.",
"SSE.Controllers.Main.errorCountArg": "Hiba a megadott képletben. Nem megfelelő számú argumentum használata.",
"SSE.Controllers.Main.errorCountArgExceed": "Hiba a megadott képletben. Az argumentumok száma túllépve.",
@@ -203,7 +208,7 @@
"SSE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére. Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.",
"SSE.Controllers.Main.textDone": "Kész",
"SSE.Controllers.Main.textLoadingDocument": "Munkafüzet betöltése",
- "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE kapcsolódási limitáció",
+ "SSE.Controllers.Main.textNoLicenseTitle": "%1 kapcsoat limit",
"SSE.Controllers.Main.textOK": "OK",
"SSE.Controllers.Main.textPaidFeature": "Fizetett funkció",
"SSE.Controllers.Main.textPassword": "Jelszó",
@@ -265,11 +270,12 @@
"SSE.Controllers.Main.uploadImageSizeMessage": "A maximális képmérethatár túllépve.",
"SSE.Controllers.Main.uploadImageTextText": "Kép feltöltése...",
"SSE.Controllers.Main.uploadImageTitleText": "Kép feltöltése",
+ "SSE.Controllers.Main.waitText": "Kérjük várjon...",
"SSE.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. Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
"SSE.Controllers.Main.warnLicenseExp": "A licence lejárt. Kérem frissítse a licencét, majd az oldalt.",
"SSE.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. Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
"SSE.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. Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.",
- "SSE.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. Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.",
+ "SSE.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. Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.",
"SSE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.",
"SSE.Controllers.Search.textNoTextFound": "A szöveg nem található",
"SSE.Controllers.Search.textReplaceAll": "Mindent cserél",
@@ -330,6 +336,10 @@
"SSE.Views.AddOther.textInsertImage": "Kép beszúrása",
"SSE.Views.AddOther.textLink": "Link",
"SSE.Views.AddOther.textSort": "Rendezés és szűrés",
+ "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",
"SSE.Views.EditCell.textAccounting": "Könyvelés",
"SSE.Views.EditCell.textAlignBottom": "Alulra rendez",
"SSE.Views.EditCell.textAlignCenter": "Középre rendez",
@@ -481,21 +491,38 @@
"SSE.Views.EditText.textFonts": "Betűtípusok",
"SSE.Views.EditText.textSize": "Méret",
"SSE.Views.EditText.textTextColor": "Szöveg szín",
+ "SSE.Views.FilterOptions.textClearFilter": "Szűrő törlése",
+ "SSE.Views.FilterOptions.textDeleteFilter": "Szűrő törlése",
+ "SSE.Views.FilterOptions.textFilter": "Szűrő beállítások",
+ "SSE.Views.Search.textByColumns": "Oszlopoktól",
+ "SSE.Views.Search.textByRows": "Soroktól",
"SSE.Views.Search.textDone": "Kész",
"SSE.Views.Search.textFind": "Keres",
"SSE.Views.Search.textFindAndReplace": "Keres és cserél",
+ "SSE.Views.Search.textFormulas": "Képletek",
+ "SSE.Views.Search.textHighlightRes": "Eredmények kiemelése",
+ "SSE.Views.Search.textLookIn": "Keres",
"SSE.Views.Search.textMatchCase": "Egyezés esete",
"SSE.Views.Search.textMatchCell": "Egyező cella",
"SSE.Views.Search.textReplace": "Cserél",
"SSE.Views.Search.textSearch": "Keresés",
+ "SSE.Views.Search.textSearchBy": "Keresés",
"SSE.Views.Search.textSearchIn": "Keresés",
"SSE.Views.Search.textSheet": "Munkalap",
+ "SSE.Views.Search.textValues": "Értékek",
"SSE.Views.Search.textWorkbook": "Munkafüzet",
"SSE.Views.Settings.textAbout": "Névjegy",
"SSE.Views.Settings.textAddress": "Cím",
+ "SSE.Views.Settings.textApplicationSettings": "Alkalmazás beállítások",
"SSE.Views.Settings.textAuthor": "Szerző",
"SSE.Views.Settings.textBack": "Vissza",
+ "SSE.Views.Settings.textBottom": "Alsó",
+ "SSE.Views.Settings.textCentimeter": "Centiméter",
+ "SSE.Views.Settings.textCollaboration": "Együttműködés",
+ "SSE.Views.Settings.textColorSchemes": "Szín sémák",
"SSE.Views.Settings.textCreateDate": "Létrehozás dátuma",
+ "SSE.Views.Settings.textCustom": "Egyéni",
+ "SSE.Views.Settings.textCustomSize": "Egyéni méret",
"SSE.Views.Settings.textDocInfo": "Munkafüzet infó",
"SSE.Views.Settings.textDocTitle": "Munkafüzet cím",
"SSE.Views.Settings.textDone": "Kész",
@@ -503,14 +530,33 @@
"SSE.Views.Settings.textDownloadAs": "Letöltés mint...",
"SSE.Views.Settings.textEditDoc": "Dokumentum szerkesztése",
"SSE.Views.Settings.textEmail": "Email",
+ "SSE.Views.Settings.textExample": "Példa",
"SSE.Views.Settings.textFind": "Keres",
"SSE.Views.Settings.textFindAndReplace": "Keres és cserél",
+ "SSE.Views.Settings.textFormat": "Formátum",
+ "SSE.Views.Settings.textFormulaLanguage": "Képlet nyelve",
"SSE.Views.Settings.textHelp": "Súgó",
+ "SSE.Views.Settings.textHideGridlines": "Rácsvonalak elrejtése",
+ "SSE.Views.Settings.textHideHeadings": "Fejlécek elrejtése",
+ "SSE.Views.Settings.textInch": "Hüvelyk",
+ "SSE.Views.Settings.textLandscape": "Fekvő",
+ "SSE.Views.Settings.textLeft": "Bal",
"SSE.Views.Settings.textLoading": "Betöltés...",
+ "SSE.Views.Settings.textMargins": "Margók",
+ "SSE.Views.Settings.textOrientation": "Tájolás",
+ "SSE.Views.Settings.textPoint": "Pont",
+ "SSE.Views.Settings.textPortrait": "Álló",
"SSE.Views.Settings.textPoweredBy": "Powered by",
"SSE.Views.Settings.textPrint": "Nyomtat",
+ "SSE.Views.Settings.textR1C1Style": "R1C1 Reference Style",
+ "SSE.Views.Settings.textRegionalSettings": "Területi beállítások",
+ "SSE.Views.Settings.textRight": "Jobb",
"SSE.Views.Settings.textSettings": "Beállítások",
+ "SSE.Views.Settings.textSpreadsheetFormats": "Munkafüzet formátumok",
+ "SSE.Views.Settings.textSpreadsheetSettings": "Munkafüzet beállításai",
"SSE.Views.Settings.textTel": "Tel.",
+ "SSE.Views.Settings.textTop": "Felső",
+ "SSE.Views.Settings.textUnitOfMeasurement": "Mérési egység",
"SSE.Views.Settings.textVersion": "Verzió",
"SSE.Views.Settings.unknownText": "Ismeretlen",
"SSE.Views.Toolbar.textBack": "Vissza"
diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json
index 3febf189c..ed265af69 100644
--- a/apps/spreadsheeteditor/mobile/locale/it.json
+++ b/apps/spreadsheeteditor/mobile/locale/it.json
@@ -16,18 +16,21 @@
"SSE.Controllers.AddLink.txtNotUrl": "Questo campo deve essere un URL nel formato 'http://www.example.com'",
"SSE.Controllers.AddOther.textEmptyImgUrl": "Specifica URL immagine.",
"SSE.Controllers.AddOther.txtNotUrl": "Questo campo deve essere un URL nel formato 'http://www.example.com'",
+ "Common.Controllers.Collaboration.textEditUser": "È in corso la modifica del documento da parte di più utenti.",
"SSE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento",
"SSE.Controllers.DocumentHolder.menuCell": "Cella",
"SSE.Controllers.DocumentHolder.menuCopy": "Copia",
"SSE.Controllers.DocumentHolder.menuCut": "Taglia",
"SSE.Controllers.DocumentHolder.menuDelete": "Elimina",
"SSE.Controllers.DocumentHolder.menuEdit": "Modifica",
+ "SSE.Controllers.DocumentHolder.menuFreezePanes": "Blocca riquadri",
"SSE.Controllers.DocumentHolder.menuHide": "Nascondi",
"SSE.Controllers.DocumentHolder.menuMerge": "Unisci",
"SSE.Controllers.DocumentHolder.menuMore": "Altro",
"SSE.Controllers.DocumentHolder.menuOpenLink": "Apri collegamento",
"SSE.Controllers.DocumentHolder.menuPaste": "Incolla",
"SSE.Controllers.DocumentHolder.menuShow": "Mostra",
+ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Sblocca i riquadri",
"SSE.Controllers.DocumentHolder.menuUnmerge": "Dissocia",
"SSE.Controllers.DocumentHolder.menuUnwrap": "Scarta",
"SSE.Controllers.DocumentHolder.menuWrap": "Racchiudi",
@@ -92,6 +95,10 @@
"SSE.Controllers.EditHyperlink.textInternalLink": "Intervallo di dati interno",
"SSE.Controllers.EditHyperlink.textInvalidRange": "Intervallo celle non valido",
"SSE.Controllers.EditHyperlink.txtNotUrl": "Questo campo deve contenere un URL nel formato \"http://www.example.com\"",
+ "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}",
+ "SSE.Controllers.FilterOptions.textErrorMsg": "Devi selezionare almeno un valore",
+ "SSE.Controllers.FilterOptions.textErrorTitle": "Avviso",
+ "SSE.Controllers.FilterOptions.textSelectAll": "Seleziona tutto",
"SSE.Controllers.Main.advCSVOptions": "Scegli opzioni CSV",
"SSE.Controllers.Main.advDRMEnterPassword": "Inserisci la password:",
"SSE.Controllers.Main.advDRMOptions": "File protetto",
@@ -102,7 +109,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "È stato superato il tempo limite della conversione.",
"SSE.Controllers.Main.criticalErrorExtText": "Clicca 'OK' per tornare alla lista documento",
"SSE.Controllers.Main.criticalErrorTitle": "Errore",
- "SSE.Controllers.Main.defaultTitleText": "Editor dei fogli di calcolo ONLYOFFICE® ",
"SSE.Controllers.Main.downloadErrorText": "Download non riuscito.",
"SSE.Controllers.Main.downloadMergeText": "Scaricamento in corso...",
"SSE.Controllers.Main.downloadMergeTitle": "Scaricamento",
@@ -133,6 +139,7 @@
"SSE.Controllers.Main.errorFillRange": "Impossibile riempire l'intervallo di celle selezionato. Tutte le celle uite devono essere della stessa dimensione.",
"SSE.Controllers.Main.errorFormulaName": "Un errore nella formula inserita. È stato usato un nome errato per la formula.",
"SSE.Controllers.Main.errorFormulaParsing": "Si è verificato un errore durante l'analisi della formula.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "I valori di testo nelle formule sono limitati a 255 caratteri. Utilizzare la funzione CONCATENATE o l'operatore di concatenazione (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "La funzione si riferisce a un foglio inesistente. Verifica i dati e riprova.",
"SSE.Controllers.Main.errorInvalidRef": "Inserisci un nome valido per la selezione o una referenza valida per andare a",
"SSE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
@@ -203,7 +210,7 @@
"SSE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
"SSE.Controllers.Main.textDone": "Fatto",
"SSE.Controllers.Main.textLoadingDocument": "Caricamento del foglio di calcolo",
- "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE® limite connessione",
+ "SSE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
"SSE.Controllers.Main.textOK": "OK",
"SSE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
"SSE.Controllers.Main.textPassword": "Password",
@@ -219,7 +226,7 @@
"SSE.Controllers.Main.txtArt": "Il tuo testo qui",
"SSE.Controllers.Main.txtBasicShapes": "Forme di base",
"SSE.Controllers.Main.txtButtons": "Bottoni",
- "SSE.Controllers.Main.txtCallouts": "Chiamate",
+ "SSE.Controllers.Main.txtCallouts": "Callout",
"SSE.Controllers.Main.txtCharts": "Grafici",
"SSE.Controllers.Main.txtDelimiter": "Delimitatore",
"SSE.Controllers.Main.txtDiagramTitle": "Titolo del grafico",
@@ -270,7 +277,7 @@
"SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta. Si prega di aggiornare la licenza e ricaricare la pagina.",
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. Per ulteriori informazioni, contattare l'amministratore.",
"SSE.Controllers.Main.warnNoLicense": "Questa versione di ONLYOFFICE® Editors presenta delle limitazioni per le connessioni simultanee al server dei documenti. Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
- "SSE.Controllers.Main.warnNoLicenseUsers": "Questa versione di ONLYOFFICE Editors presenta alcune limitazioni per gli utenti simultanei. Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
+ "SSE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 presenta alcune limitazioni per gli utenti simultanei. Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
"SSE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.",
"SSE.Controllers.Search.textNoTextFound": "Testo non trovato",
"SSE.Controllers.Search.textReplaceAll": "Sostituisci tutto",
@@ -331,6 +338,10 @@
"SSE.Views.AddOther.textInsertImage": "Inserisci immagine",
"SSE.Views.AddOther.textLink": "Collegamento",
"SSE.Views.AddOther.textSort": "Ordina e filtra",
+ "Common.Views.Collaboration.textBack": "Indietro",
+ "Common.Views.Collaboration.textCollaboration": "Collaborazione",
+ "Common.Views.Collaboration.textEditUsers": "Utenti",
+ "Common.Views.Collaboration.textСomments": "Сommenti",
"SSE.Views.EditCell.textAccounting": "Contabilità",
"SSE.Views.EditCell.textAlignBottom": "Allinea in basso",
"SSE.Views.EditCell.textAlignCenter": "Allinea al centro",
@@ -482,21 +493,38 @@
"SSE.Views.EditText.textFonts": "Caratteri",
"SSE.Views.EditText.textSize": "Dimensione",
"SSE.Views.EditText.textTextColor": "Colore del testo",
+ "SSE.Views.FilterOptions.textClearFilter": "Svuota filtro",
+ "SSE.Views.FilterOptions.textDeleteFilter": "Elimina Filtro",
+ "SSE.Views.FilterOptions.textFilter": "Opzioni Filtro",
+ "SSE.Views.Search.textByColumns": "Per colonne",
+ "SSE.Views.Search.textByRows": "Per righe",
"SSE.Views.Search.textDone": "Fatto",
"SSE.Views.Search.textFind": "Trova",
"SSE.Views.Search.textFindAndReplace": "Trova e sostituisci",
+ "SSE.Views.Search.textFormulas": "Formule",
+ "SSE.Views.Search.textHighlightRes": "Evidenzia risultati",
+ "SSE.Views.Search.textLookIn": "Cerca in",
"SSE.Views.Search.textMatchCase": "Caso di corrispondenza",
"SSE.Views.Search.textMatchCell": "Corrispondi cella",
"SSE.Views.Search.textReplace": "Sostituisci",
"SSE.Views.Search.textSearch": "Cerca",
+ "SSE.Views.Search.textSearchBy": "Cerca",
"SSE.Views.Search.textSearchIn": "Cerca in",
"SSE.Views.Search.textSheet": "Foglio",
+ "SSE.Views.Search.textValues": "Valori",
"SSE.Views.Search.textWorkbook": "Cartella di lavoro",
"SSE.Views.Settings.textAbout": "Informazioni su",
"SSE.Views.Settings.textAddress": "Indirizzo",
+ "SSE.Views.Settings.textApplicationSettings": "Impostazioni Applicazione",
"SSE.Views.Settings.textAuthor": "Autore",
"SSE.Views.Settings.textBack": "Indietro",
+ "SSE.Views.Settings.textBottom": "In basso",
+ "SSE.Views.Settings.textCentimeter": "Centimetro",
+ "SSE.Views.Settings.textCollaboration": "Collaborazione",
+ "SSE.Views.Settings.textColorSchemes": "Schemi di colore",
"SSE.Views.Settings.textCreateDate": "Data di creazione",
+ "SSE.Views.Settings.textCustom": "Personalizzato",
+ "SSE.Views.Settings.textCustomSize": "Dimensione personalizzata",
"SSE.Views.Settings.textDocInfo": "Informazioni del Foglio di calcolo",
"SSE.Views.Settings.textDocTitle": "Titolo foglio elettronico",
"SSE.Views.Settings.textDone": "Fatto",
@@ -504,14 +532,33 @@
"SSE.Views.Settings.textDownloadAs": "Scarica come...",
"SSE.Views.Settings.textEditDoc": "Modifica documento",
"SSE.Views.Settings.textEmail": "email",
+ "SSE.Views.Settings.textExample": "Esempio",
"SSE.Views.Settings.textFind": "Trova",
"SSE.Views.Settings.textFindAndReplace": "Trova e sostituisci",
+ "SSE.Views.Settings.textFormat": "Formato",
+ "SSE.Views.Settings.textFormulaLanguage": "Lingua della Formula",
"SSE.Views.Settings.textHelp": "Aiuto",
+ "SSE.Views.Settings.textHideGridlines": "Nascondi griglia",
+ "SSE.Views.Settings.textHideHeadings": "Nascondi titoli",
+ "SSE.Views.Settings.textInch": "Pollice",
+ "SSE.Views.Settings.textLandscape": "Orizzontale",
+ "SSE.Views.Settings.textLeft": "A sinistra",
"SSE.Views.Settings.textLoading": "Caricamento in corso...",
+ "SSE.Views.Settings.textMargins": "Margini",
+ "SSE.Views.Settings.textOrientation": "Orientamento",
+ "SSE.Views.Settings.textPoint": "Punto",
+ "SSE.Views.Settings.textPortrait": "Verticale",
"SSE.Views.Settings.textPoweredBy": "Con tecnologia",
"SSE.Views.Settings.textPrint": "Stampa",
+ "SSE.Views.Settings.textR1C1Style": "Stile di riferimento R1C1",
+ "SSE.Views.Settings.textRegionalSettings": "Impostazioni Regionali",
+ "SSE.Views.Settings.textRight": "A destra",
"SSE.Views.Settings.textSettings": "Impostazioni",
+ "SSE.Views.Settings.textSpreadsheetFormats": "Formati foglio di calcolo",
+ "SSE.Views.Settings.textSpreadsheetSettings": "Impostazioni foglio di calcolo",
"SSE.Views.Settings.textTel": "Tel.",
+ "SSE.Views.Settings.textTop": "In alto",
+ "SSE.Views.Settings.textUnitOfMeasurement": "Unità di misura",
"SSE.Views.Settings.textVersion": "Versione",
"SSE.Views.Settings.unknownText": "Sconosciuto",
"SSE.Views.Toolbar.textBack": "Indietro"
diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json
index f624b3893..b9a60a62e 100644
--- a/apps/spreadsheeteditor/mobile/locale/ko.json
+++ b/apps/spreadsheeteditor/mobile/locale/ko.json
@@ -101,7 +101,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.",
"SSE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 '확인'을 누르십시오.",
"SSE.Controllers.Main.criticalErrorTitle": "오류",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE 스프레드 시트 편집기",
"SSE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.",
"SSE.Controllers.Main.downloadMergeText": "다운로드 중 ...",
"SSE.Controllers.Main.downloadMergeTitle": "다운로드 중",
diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json
index 23caee718..2cc5f5237 100644
--- a/apps/spreadsheeteditor/mobile/locale/lv.json
+++ b/apps/spreadsheeteditor/mobile/locale/lv.json
@@ -101,7 +101,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.",
"SSE.Controllers.Main.criticalErrorExtText": "Nospiediet \"OK\", lai atgrieztos dokumentu sarakstā.",
"SSE.Controllers.Main.criticalErrorTitle": "Kļūda",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Lejuplāde neizdevās.",
"SSE.Controllers.Main.downloadMergeText": "Lejupielādē...",
"SSE.Controllers.Main.downloadMergeTitle": "Lejupielāde",
diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json
index 9cd3b783c..07de8ded0 100644
--- a/apps/spreadsheeteditor/mobile/locale/nl.json
+++ b/apps/spreadsheeteditor/mobile/locale/nl.json
@@ -102,7 +102,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.",
"SSE.Controllers.Main.criticalErrorExtText": "Druk op \"OK\" om terug te gaan naar de lijst met documenten.",
"SSE.Controllers.Main.criticalErrorTitle": "Fout",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Download mislukt.",
"SSE.Controllers.Main.downloadMergeText": "Downloaden...",
"SSE.Controllers.Main.downloadMergeTitle": "Downloaden",
diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json
index 9367af1e0..9b83ea7f2 100644
--- a/apps/spreadsheeteditor/mobile/locale/pl.json
+++ b/apps/spreadsheeteditor/mobile/locale/pl.json
@@ -101,7 +101,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.",
"SSE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\" aby powrócić do listy dokumentów.",
"SSE.Controllers.Main.criticalErrorTitle": "Błąd",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor arkusza kalkulacyjnego",
"SSE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.",
"SSE.Controllers.Main.downloadMergeText": "Pobieranie...",
"SSE.Controllers.Main.downloadMergeTitle": "Pobieranie",
diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json
index a78af8dfc..6fe727cab 100644
--- a/apps/spreadsheeteditor/mobile/locale/pt.json
+++ b/apps/spreadsheeteditor/mobile/locale/pt.json
@@ -101,7 +101,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
"SSE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documento.",
"SSE.Controllers.Main.criticalErrorTitle": "Erro",
- "SSE.Controllers.Main.defaultTitleText": "Editor de planilha ONLYOFFICE",
"SSE.Controllers.Main.downloadErrorText": "Download falhou.",
"SSE.Controllers.Main.downloadMergeText": "Baixando...",
"SSE.Controllers.Main.downloadMergeTitle": "Baixando",
diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json
index ad969de46..4dad55656 100644
--- a/apps/spreadsheeteditor/mobile/locale/ru.json
+++ b/apps/spreadsheeteditor/mobile/locale/ru.json
@@ -16,18 +16,21 @@
"SSE.Controllers.AddLink.txtNotUrl": "Это поле должно быть URL-адресом в формате 'http://www.example.com'",
"SSE.Controllers.AddOther.textEmptyImgUrl": "Необходимо указать URL изображения.",
"SSE.Controllers.AddOther.txtNotUrl": "Это поле должно быть URL-адресом в формате 'http://www.example.com'",
+ "Common.Controllers.Collaboration.textEditUser": "Документ редактируется несколькими пользователями.",
"SSE.Controllers.DocumentHolder.menuAddLink": "Добавить ссылку",
"SSE.Controllers.DocumentHolder.menuCell": "Ячейка",
"SSE.Controllers.DocumentHolder.menuCopy": "Копировать",
"SSE.Controllers.DocumentHolder.menuCut": "Вырезать",
"SSE.Controllers.DocumentHolder.menuDelete": "Удалить",
"SSE.Controllers.DocumentHolder.menuEdit": "Редактировать",
+ "SSE.Controllers.DocumentHolder.menuFreezePanes": "Закрепить области",
"SSE.Controllers.DocumentHolder.menuHide": "Скрыть",
"SSE.Controllers.DocumentHolder.menuMerge": "Объединить",
"SSE.Controllers.DocumentHolder.menuMore": "Ещё",
"SSE.Controllers.DocumentHolder.menuOpenLink": "Перейти по ссылке",
"SSE.Controllers.DocumentHolder.menuPaste": "Вставить",
"SSE.Controllers.DocumentHolder.menuShow": "Показать",
+ "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Снять закрепление областей",
"SSE.Controllers.DocumentHolder.menuUnmerge": "Разбить",
"SSE.Controllers.DocumentHolder.menuUnwrap": "Убрать перенос",
"SSE.Controllers.DocumentHolder.menuWrap": "Перенос текста",
@@ -92,6 +95,10 @@
"SSE.Controllers.EditHyperlink.textInternalLink": "Внутренний диапазон данных",
"SSE.Controllers.EditHyperlink.textInvalidRange": "Недопустимый диапазон ячеек",
"SSE.Controllers.EditHyperlink.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
+ "SSE.Controllers.FilterOptions.textEmptyItem": "{Пустые}",
+ "SSE.Controllers.FilterOptions.textErrorMsg": "Необходимо выбрать хотя бы одно значение",
+ "SSE.Controllers.FilterOptions.textErrorTitle": "Внимание",
+ "SSE.Controllers.FilterOptions.textSelectAll": "Выделить всё",
"SSE.Controllers.Main.advCSVOptions": "Выбрать параметры CSV",
"SSE.Controllers.Main.advDRMEnterPassword": "Введите пароль:",
"SSE.Controllers.Main.advDRMOptions": "Защищенный файл",
@@ -102,7 +109,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
"SSE.Controllers.Main.criticalErrorExtText": "Нажмите 'OK' для возврата к списку документов.",
"SSE.Controllers.Main.criticalErrorTitle": "Ошибка",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Загрузка не удалась.",
"SSE.Controllers.Main.downloadMergeText": "Загрузка...",
"SSE.Controllers.Main.downloadMergeTitle": "Загрузка",
@@ -117,7 +123,7 @@
"SSE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"SSE.Controllers.Main.errorChangeArray": "Нельзя изменить часть массива.",
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
- "SSE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
+ "SSE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.
Дополнительную информацию о подключении Сервера документов можно найти здесь",
"SSE.Controllers.Main.errorCopyMultiselectArea": "Данная команда неприменима для несвязных диапазонов. Выберите один диапазон и повторите попытку.",
"SSE.Controllers.Main.errorCountArg": "Ошибка во введенной формуле. Использовано неверное количество аргументов.",
"SSE.Controllers.Main.errorCountArgExceed": "Ошибка во введенной формуле. Превышено количество аргументов.",
@@ -133,6 +139,7 @@
"SSE.Controllers.Main.errorFillRange": "Не удается заполнить выбранный диапазон ячеек. Все объединенные ячейки должны быть одного размера.",
"SSE.Controllers.Main.errorFormulaName": "Ошибка во введенной формуле. Использовано неверное имя формулы.",
"SSE.Controllers.Main.errorFormulaParsing": "Внутренняя ошибка при синтаксическом анализе формулы.",
+ "SSE.Controllers.Main.errorFrmlMaxTextLength": "Длина текстовых значений в формулах не может превышать 255 символов. Используйте функцию СЦЕПИТЬ или оператор сцепления (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "Функция ссылается на лист, который не существует. Проверьте данные и повторите попытку.",
"SSE.Controllers.Main.errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.",
"SSE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
@@ -203,7 +210,7 @@
"SSE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
"SSE.Controllers.Main.textDone": "Готово",
"SSE.Controllers.Main.textLoadingDocument": "Загрузка таблицы",
- "SSE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений ONLYOFFICE",
+ "SSE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
"SSE.Controllers.Main.textOK": "OK",
"SSE.Controllers.Main.textPaidFeature": "Платная функция",
"SSE.Controllers.Main.textPassword": "Пароль",
@@ -270,7 +277,7 @@
"SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии. Обновите лицензию, а затем обновите страницу.",
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр. Обратитесь к администратору за дополнительной информацией.",
"SSE.Controllers.Main.warnNoLicense": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по количеству одновременных подключений к серверу документов. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
- "SSE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
+ "SSE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"SSE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"SSE.Controllers.Search.textNoTextFound": "Текст не найден",
"SSE.Controllers.Search.textReplaceAll": "Заменить все",
@@ -331,6 +338,10 @@
"SSE.Views.AddOther.textInsertImage": "Вставить изображение",
"SSE.Views.AddOther.textLink": "Ссылка",
"SSE.Views.AddOther.textSort": "Сортировка и фильтрация",
+ "Common.Views.Collaboration.textBack": "Назад",
+ "Common.Views.Collaboration.textCollaboration": "Совместная работа",
+ "Common.Views.Collaboration.textEditUsers": "Пользователи",
+ "Common.Views.Collaboration.textСomments": "Комментарии",
"SSE.Views.EditCell.textAccounting": "Финансовый",
"SSE.Views.EditCell.textAlignBottom": "По нижнему краю",
"SSE.Views.EditCell.textAlignCenter": "По центру",
@@ -482,21 +493,38 @@
"SSE.Views.EditText.textFonts": "Шрифты",
"SSE.Views.EditText.textSize": "Размер",
"SSE.Views.EditText.textTextColor": "Цвет текста",
+ "SSE.Views.FilterOptions.textClearFilter": "Очистить фильтр",
+ "SSE.Views.FilterOptions.textDeleteFilter": "Удалить фильтр",
+ "SSE.Views.FilterOptions.textFilter": "Параметры фильтра",
+ "SSE.Views.Search.textByColumns": "По столбцам",
+ "SSE.Views.Search.textByRows": "По строкам",
"SSE.Views.Search.textDone": "Готово",
"SSE.Views.Search.textFind": "Поиск",
"SSE.Views.Search.textFindAndReplace": "Поиск и замена",
+ "SSE.Views.Search.textFormulas": "Формулы",
+ "SSE.Views.Search.textHighlightRes": "Выделить результаты",
+ "SSE.Views.Search.textLookIn": "Область поиска",
"SSE.Views.Search.textMatchCase": "С учетом регистра",
"SSE.Views.Search.textMatchCell": "Сопоставление ячеек",
"SSE.Views.Search.textReplace": "Заменить",
"SSE.Views.Search.textSearch": "Поиск",
+ "SSE.Views.Search.textSearchBy": "Поиск",
"SSE.Views.Search.textSearchIn": "Область поиска",
"SSE.Views.Search.textSheet": "Лист",
+ "SSE.Views.Search.textValues": "Значения",
"SSE.Views.Search.textWorkbook": "Книга",
"SSE.Views.Settings.textAbout": "О программе",
"SSE.Views.Settings.textAddress": "адрес",
+ "SSE.Views.Settings.textApplicationSettings": "Настройки приложения",
"SSE.Views.Settings.textAuthor": "Автор",
"SSE.Views.Settings.textBack": "Назад",
+ "SSE.Views.Settings.textBottom": "Снизу",
+ "SSE.Views.Settings.textCentimeter": "Сантиметр",
+ "SSE.Views.Settings.textCollaboration": "Совместная работа",
+ "SSE.Views.Settings.textColorSchemes": "Цветовые схемы",
"SSE.Views.Settings.textCreateDate": "Дата создания",
+ "SSE.Views.Settings.textCustom": "Пользовательский",
+ "SSE.Views.Settings.textCustomSize": "Особый размер",
"SSE.Views.Settings.textDocInfo": "Информация о таблице",
"SSE.Views.Settings.textDocTitle": "Название таблицы",
"SSE.Views.Settings.textDone": "Готово",
@@ -504,14 +532,33 @@
"SSE.Views.Settings.textDownloadAs": "Скачать как...",
"SSE.Views.Settings.textEditDoc": "Редактировать",
"SSE.Views.Settings.textEmail": "email",
+ "SSE.Views.Settings.textExample": "Пример",
"SSE.Views.Settings.textFind": "Поиск",
"SSE.Views.Settings.textFindAndReplace": "Поиск и замена",
+ "SSE.Views.Settings.textFormat": "Формат",
+ "SSE.Views.Settings.textFormulaLanguage": "Язык формул",
"SSE.Views.Settings.textHelp": "Справка",
+ "SSE.Views.Settings.textHideGridlines": "Скрыть линии сетки",
+ "SSE.Views.Settings.textHideHeadings": "Скрыть заголовки",
+ "SSE.Views.Settings.textInch": "Дюйм",
+ "SSE.Views.Settings.textLandscape": "Альбомная",
+ "SSE.Views.Settings.textLeft": "Слева",
"SSE.Views.Settings.textLoading": "Загрузка...",
+ "SSE.Views.Settings.textMargins": "Поля",
+ "SSE.Views.Settings.textOrientation": "Ориентация",
+ "SSE.Views.Settings.textPoint": "Пункт",
+ "SSE.Views.Settings.textPortrait": "Книжная",
"SSE.Views.Settings.textPoweredBy": "Разработано",
"SSE.Views.Settings.textPrint": "Печать",
+ "SSE.Views.Settings.textR1C1Style": "Стиль ссылок R1C1",
+ "SSE.Views.Settings.textRegionalSettings": "Региональные параметры",
+ "SSE.Views.Settings.textRight": "Справа",
"SSE.Views.Settings.textSettings": "Настройки",
+ "SSE.Views.Settings.textSpreadsheetFormats": "Форматы таблицы",
+ "SSE.Views.Settings.textSpreadsheetSettings": "Настройки таблицы",
"SSE.Views.Settings.textTel": "Телефон",
+ "SSE.Views.Settings.textTop": "Сверху",
+ "SSE.Views.Settings.textUnitOfMeasurement": "Единица измерения",
"SSE.Views.Settings.textVersion": "Версия",
"SSE.Views.Settings.unknownText": "Неизвестно",
"SSE.Views.Toolbar.textBack": "Назад"
diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json
index 8016c20e7..4344b08ce 100644
--- a/apps/spreadsheeteditor/mobile/locale/sk.json
+++ b/apps/spreadsheeteditor/mobile/locale/sk.json
@@ -102,7 +102,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.",
"SSE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.",
"SSE.Controllers.Main.criticalErrorTitle": "Chyba",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor tabuliek",
"SSE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.",
"SSE.Controllers.Main.downloadMergeText": "Sťahovanie...",
"SSE.Controllers.Main.downloadMergeTitle": "Sťahovanie",
diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json
index 595920f33..c529f5bc5 100644
--- a/apps/spreadsheeteditor/mobile/locale/tr.json
+++ b/apps/spreadsheeteditor/mobile/locale/tr.json
@@ -101,7 +101,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.",
"SSE.Controllers.Main.criticalErrorExtText": "Belge listesine dönmek için 'TAMAM' tuşuna tıklayın.",
"SSE.Controllers.Main.criticalErrorTitle": "Hata",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editör",
"SSE.Controllers.Main.downloadErrorText": "İndirme başarısız oldu.",
"SSE.Controllers.Main.downloadMergeText": "İndiriliyor...",
"SSE.Controllers.Main.downloadMergeTitle": "İndiriliyor",
diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json
index eeb58e2f9..b5243a353 100644
--- a/apps/spreadsheeteditor/mobile/locale/uk.json
+++ b/apps/spreadsheeteditor/mobile/locale/uk.json
@@ -101,7 +101,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.",
"SSE.Controllers.Main.criticalErrorExtText": "Натисніть \"ОК\", щоб повернутися до списку документів.",
"SSE.Controllers.Main.criticalErrorTitle": "Помилка",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Редактор електронних таблиць",
"SSE.Controllers.Main.downloadErrorText": "Завантаження не вдалося",
"SSE.Controllers.Main.downloadMergeText": "Завантаження...",
"SSE.Controllers.Main.downloadMergeTitle": "Завантаження",
diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json
index e4570baed..ae4997406 100644
--- a/apps/spreadsheeteditor/mobile/locale/vi.json
+++ b/apps/spreadsheeteditor/mobile/locale/vi.json
@@ -101,7 +101,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.",
"SSE.Controllers.Main.criticalErrorExtText": "Ấn 'OK' để trở lại danh sách tài liệu.",
"SSE.Controllers.Main.criticalErrorTitle": "Lỗi",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editor",
"SSE.Controllers.Main.downloadErrorText": "Tải về không thành công.",
"SSE.Controllers.Main.downloadMergeText": "Đang tải...",
"SSE.Controllers.Main.downloadMergeTitle": "Đang tải về",
diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json
index 27acf72e6..757b9763b 100644
--- a/apps/spreadsheeteditor/mobile/locale/zh.json
+++ b/apps/spreadsheeteditor/mobile/locale/zh.json
@@ -102,7 +102,6 @@
"SSE.Controllers.Main.convertationTimeoutText": "转换超时",
"SSE.Controllers.Main.criticalErrorExtText": "按“确定”返回文件列表",
"SSE.Controllers.Main.criticalErrorTitle": "错误:",
- "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE电子表格编辑器",
"SSE.Controllers.Main.downloadErrorText": "下载失败",
"SSE.Controllers.Main.downloadMergeText": "下载中…",
"SSE.Controllers.Main.downloadMergeTitle": "下载中",
diff --git a/apps/spreadsheeteditor/mobile/resources/css/app-ios.css b/apps/spreadsheeteditor/mobile/resources/css/app-ios.css
index c24d88b3f..237a3ee33 100644
--- a/apps/spreadsheeteditor/mobile/resources/css/app-ios.css
+++ b/apps/spreadsheeteditor/mobile/resources/css/app-ios.css
@@ -6764,9 +6764,9 @@ i.icon.icon-format-ots {
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%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-ots%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22ots%22%20clip-path%3D%22url(%23clip-ots)%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_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M125.173%2C121h0c-.046-.03-.093-.059-.141-.088a6.133%2C6.133%2C0%2C0%2C0-2.467-.869%2C6.014%2C6.014%2C0%2C0%2C0-4.309%2C1.188%2C6.223%2C6.223%2C0%2C0%2C0-2.892-1.147%2C5.965%2C5.965%2C0%2C0%2C0-4.039%2C1l-.036.024a.176.176%2C0%2C0%2C0-.049.125.145.145%2C0%2C0%2C0%2C.126.158l.019%2C0a.019.019%2C0%2C0%2C0%2C.009%2C0%2C5.781%2C5.781%2C0%2C0%2C1%2C2.005-.111%2C6.41%2C6.41%2C0%2C0%2C1%2C4.782%2C2.669c.06.081.115.076.178%2C0a6.288%2C6.288%2C0%2C0%2C1%2C6.194-2.735c.136.017.27.038.4.064.047.009.119.024.161.03.08.011.123-.071.123-.159A.155.155%2C0%2C0%2C0%2C125.173%2C121Z%22%20transform%3D%22translate(-94.24%20-116)%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M126.894%2C125.978a.175.175%2C0%2C0%2C0-.022-.011%2C11.686%2C11.686%2C0%2C0%2C0-4.905-1.082%2C11.924%2C11.924%2C0%2C0%2C0-7.444%2C2.647%2C11.725%2C11.725%2C0%2C0%2C0-5.251-1.245%2C11.884%2C11.884%2C0%2C0%2C0-7.176%2C2.441.229.229%2C0%2C0%2C0-.022.016.217.217%2C0%2C0%2C0-.073.167.2.2%2C0%2C0%2C0%2C.191.211.167.167%2C0%2C0%2C0%2C.037%2C0%2C.118.118%2C0%2C0%2C0%2C.023-.008%2C11.679%2C11.679%2C0%2C0%2C1%2C3.71-.608c3.429%2C0%2C6.486.9%2C8.787%2C3.315a.093.093%2C0%2C0%2C1%2C.016.016.172.172%2C0%2C0%2C0%2C.123.052.18.18%2C0%2C0%2C0%2C.147-.078s.075-.115.111-.171a12.1%2C12.1%2C0%2C0%2C1%2C10.479-5.315c.306%2C0%2C.611.014.912.037l.273.022a.2.2%2C0%2C0%2C0%2C.191-.211A.211.211%2C0%2C0%2C0%2C126.894%2C125.978Z%22%20transform%3D%22translate(-100%20-115.885)%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%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
i.icon.icon-format-csv {
- 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%220%200%2058%2058%22%20height%3D%2258px%22%20width%3D%2258px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2242.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2238.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2234.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2230.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2226.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2222.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2218.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2214.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2242.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2238.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2234.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2230.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2226.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2222.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2218.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2214.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2242.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2238.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2234.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2230.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2226.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2222.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2218.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2214.5%22%20x%3D%2235.5%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%2017H16V18H22V17Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%2020H16V21H22V20Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%2014H16V15H22V14Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%2011H16V12H22V11Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%208H16V9H22V8Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%205H16V6H22V5Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%202H16V3H22V2Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%2017H9V18H15V17Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%2020H9V21H15V20Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%2014H9V15H15V14Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%2011H9V12H15V11Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%208H9V9H15V8Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%205H9V6H15V5Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%202H9V3H15V2Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%2017H2V18H8V17Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%2020H2V21H8V20Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%2014H2V15H8V14Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%2011H2V12H8V11Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%208H2V9H8V8Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%205H2V6H8V5Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%202H2V3H8V2Z%22%20fill%3D%22%2340865c%22%2F%3E%3C%2Fsvg%3E");
}
i.icon.icon-collaboration {
width: 24px;
diff --git a/apps/spreadsheeteditor/mobile/resources/css/app-material.css b/apps/spreadsheeteditor/mobile/resources/css/app-material.css
index d6ef3b826..d1815863b 100644
--- a/apps/spreadsheeteditor/mobile/resources/css/app-material.css
+++ b/apps/spreadsheeteditor/mobile/resources/css/app-material.css
@@ -6400,9 +6400,9 @@ i.icon.icon-format-ots {
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%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-ots%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22ots%22%20clip-path%3D%22url(%23clip-ots)%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_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M125.173%2C121h0c-.046-.03-.093-.059-.141-.088a6.133%2C6.133%2C0%2C0%2C0-2.467-.869%2C6.014%2C6.014%2C0%2C0%2C0-4.309%2C1.188%2C6.223%2C6.223%2C0%2C0%2C0-2.892-1.147%2C5.965%2C5.965%2C0%2C0%2C0-4.039%2C1l-.036.024a.176.176%2C0%2C0%2C0-.049.125.145.145%2C0%2C0%2C0%2C.126.158l.019%2C0a.019.019%2C0%2C0%2C0%2C.009%2C0%2C5.781%2C5.781%2C0%2C0%2C1%2C2.005-.111%2C6.41%2C6.41%2C0%2C0%2C1%2C4.782%2C2.669c.06.081.115.076.178%2C0a6.288%2C6.288%2C0%2C0%2C1%2C6.194-2.735c.136.017.27.038.4.064.047.009.119.024.161.03.08.011.123-.071.123-.159A.155.155%2C0%2C0%2C0%2C125.173%2C121Z%22%20transform%3D%22translate(-94.24%20-116)%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M126.894%2C125.978a.175.175%2C0%2C0%2C0-.022-.011%2C11.686%2C11.686%2C0%2C0%2C0-4.905-1.082%2C11.924%2C11.924%2C0%2C0%2C0-7.444%2C2.647%2C11.725%2C11.725%2C0%2C0%2C0-5.251-1.245%2C11.884%2C11.884%2C0%2C0%2C0-7.176%2C2.441.229.229%2C0%2C0%2C0-.022.016.217.217%2C0%2C0%2C0-.073.167.2.2%2C0%2C0%2C0%2C.191.211.167.167%2C0%2C0%2C0%2C.037%2C0%2C.118.118%2C0%2C0%2C0%2C.023-.008%2C11.679%2C11.679%2C0%2C0%2C1%2C3.71-.608c3.429%2C0%2C6.486.9%2C8.787%2C3.315a.093.093%2C0%2C0%2C1%2C.016.016.172.172%2C0%2C0%2C0%2C.123.052.18.18%2C0%2C0%2C0%2C.147-.078s.075-.115.111-.171a12.1%2C12.1%2C0%2C0%2C1%2C10.479-5.315c.306%2C0%2C.611.014.912.037l.273.022a.2.2%2C0%2C0%2C0%2C.191-.211A.211.211%2C0%2C0%2C0%2C126.894%2C125.978Z%22%20transform%3D%22translate(-100%20-115.885)%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%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
i.icon.icon-format-csv {
- 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%220%200%2058%2058%22%20height%3D%2258px%22%20width%3D%2258px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2242.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2238.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2234.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2230.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2226.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2222.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2218.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2214.5%22%20x%3D%2213.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2242.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2238.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2234.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2230.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2226.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2222.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2218.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2214.5%22%20x%3D%2224.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2242.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2238.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2234.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2230.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2226.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2222.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2218.5%22%20x%3D%2235.5%22%20%2F%3E%3Crect%20height%3D%221%22%20width%3D%229%22%20class%3D%22cls-1%22%20y%3D%2214.5%22%20x%3D%2235.5%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%2017H16V18H22V17Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%2020H16V21H22V20Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%2014H16V15H22V14Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%2011H16V12H22V11Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%208H16V9H22V8Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%205H16V6H22V5Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M22%202H16V3H22V2Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%2017H9V18H15V17Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%2020H9V21H15V20Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%2014H9V15H15V14Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%2011H9V12H15V11Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%208H9V9H15V8Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%205H9V6H15V5Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M15%202H9V3H15V2Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%2017H2V18H8V17Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%2020H2V21H8V20Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%2014H2V15H8V14Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%2011H2V12H8V11Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%208H2V9H8V8Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%205H2V6H8V5Z%22%20fill%3D%22%2340865c%22%2F%3E%3Cpath%20d%3D%22M8%202H2V3H8V2Z%22%20fill%3D%22%2340865c%22%2F%3E%3C%2Fsvg%3E");
}
i.icon.icon-collaboration {
width: 24px;
diff --git a/apps/spreadsheeteditor/mobile/resources/less/ios/_icons.less b/apps/spreadsheeteditor/mobile/resources/less/ios/_icons.less
index b1df25db5..462c2cfde 100644
--- a/apps/spreadsheeteditor/mobile/resources/less/ios/_icons.less
+++ b/apps/spreadsheeteditor/mobile/resources/less/ios/_icons.less
@@ -348,9 +348,9 @@ i.icon {
.encoded-svg-background('');
}
&.icon-format-csv {
- width: 30px;
- height: 30px;
- .encoded-svg-background('');
+ width: 24px;
+ height: 24px;
+ .encoded-svg-background('');
}
// Collaboration
&.icon-collaboration {
diff --git a/apps/spreadsheeteditor/mobile/resources/less/material/_icons.less b/apps/spreadsheeteditor/mobile/resources/less/material/_icons.less
index da8b912fa..6c2e8a2aa 100644
--- a/apps/spreadsheeteditor/mobile/resources/less/material/_icons.less
+++ b/apps/spreadsheeteditor/mobile/resources/less/material/_icons.less
@@ -322,9 +322,9 @@ i.icon {
.encoded-svg-background('');
}
&.icon-format-csv {
- width: 30px;
- height: 30px;
- .encoded-svg-background('');
+ width: 24px;
+ height: 24px;
+ .encoded-svg-background('');
}
// Collaboration
&.icon-collaboration {
diff --git a/apps/spreadsheeteditor/sdk_dev_scripts.js b/apps/spreadsheeteditor/sdk_dev_scripts.js
index a2e7f5d1b..44189578b 100644
--- a/apps/spreadsheeteditor/sdk_dev_scripts.js
+++ b/apps/spreadsheeteditor/sdk_dev_scripts.js
@@ -6,6 +6,7 @@ var sdk_dev_scrpipts = [
"../../../../sdkjs/common/commonDefines.js",
"../../../../sdkjs/common/docscoapicommon.js",
"../../../../sdkjs/common/docscoapi.js",
+ "../../../../sdkjs/common/spellcheckapi.js",
"../../../../sdkjs/common/apiCommon.js",
"../../../../sdkjs/common/SerializeCommonWordExcel.js",
"../../../../sdkjs/common/editorscommon.js",