diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js
index 0f8d84ec8..71a006e8f 100644
--- a/apps/api/documents/api.js
+++ b/apps/api/documents/api.js
@@ -74,7 +74,6 @@
recent: [
{
title: 'document title',
- image: 'recent icon url',
url: 'document url',
folder: 'path to document',
},
@@ -134,7 +133,10 @@
spellcheck: true,
compatibleFeatures: false,
unit: 'cm' // cm, pt, inch,
- mentionShare : true // customize tooltip for mention
+ mentionShare : true // customize tooltip for mention,
+ macros: true // can run macros in document
+ plugins: true // can run plugins in document
+ macrosMode: 'warn' // warn about automatic macros, 'enable', 'disable', 'warn'
},
plugins: {
autostart: ['asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}'],
@@ -213,6 +215,7 @@
_config.editorConfig.canRequestMailMergeRecipients = _config.events && !!_config.events.onRequestMailMergeRecipients;
_config.editorConfig.canRequestCompareFile = _config.events && !!_config.events.onRequestCompareFile;
_config.editorConfig.canRequestSharingSettings = _config.events && !!_config.events.onRequestSharingSettings;
+ _config.editorConfig.canRequestCreateNew = _config.events && !!_config.events.onRequestCreateNew;
_config.frameEditorId = placeholderId;
_config.parentOrigin = window.location.origin;
diff --git a/apps/common/Gateway.js b/apps/common/Gateway.js
index 886b3d67b..bca4a0bc3 100644
--- a/apps/common/Gateway.js
+++ b/apps/common/Gateway.js
@@ -322,6 +322,10 @@ if (Common === undefined) {
_postMessage({event:'onRequestSharingSettings'});
},
+ requestCreateNew: function () {
+ _postMessage({event:'onRequestCreateNew'});
+ },
+
on: function(event, handler){
var localHandler = function(event, data){
handler.call(me, data)
diff --git a/apps/common/main/lib/component/CheckBox.js b/apps/common/main/lib/component/CheckBox.js
index c42f26253..354046ecb 100644
--- a/apps/common/main/lib/component/CheckBox.js
+++ b/apps/common/main/lib/component/CheckBox.js
@@ -95,7 +95,7 @@ define([
value : 'unchecked',
template : _.template(' ' +
- '<%= labelText %> '),
+ '<%= labelText %> '),
initialize : function(options) {
Common.UI.BaseView.prototype.initialize.call(this, options);
diff --git a/apps/common/main/lib/component/ComboBoxFonts.js b/apps/common/main/lib/component/ComboBoxFonts.js
index 03cf4cf7d..a109a10e7 100644
--- a/apps/common/main/lib/component/ComboBoxFonts.js
+++ b/apps/common/main/lib/component/ComboBoxFonts.js
@@ -76,7 +76,7 @@ define([
'
',
'<% _.each(items, function(item) { %>',
' ',
- ' ',
+ ' ',
' ',
'<% }); %>',
'',
@@ -380,7 +380,7 @@ define([
onInsertItem: function(item) {
$(this.el).find('ul').prepend(_.template([
'',
- ' ',
+ ' ',
' '
].join(''))({
item: item.attributes,
diff --git a/apps/common/main/lib/component/InputField.js b/apps/common/main/lib/component/InputField.js
index d46057f61..df8164441 100644
--- a/apps/common/main/lib/component/InputField.js
+++ b/apps/common/main/lib/component/InputField.js
@@ -88,7 +88,7 @@ define([
'placeholder="<%= placeHolder %>" ',
'value="<%= value %>"',
'>',
- ' ',
+ ' ',
''
].join('')),
@@ -414,7 +414,7 @@ define([
'placeholder="<%= placeHolder %>" ',
'value="<%= value %>"',
'>',
- ' ',
+ ' ',
'' +
' ' +
'
',
diff --git a/apps/common/main/lib/component/LoadMask.js b/apps/common/main/lib/component/LoadMask.js
index d7922f81b..e0792ec67 100644
--- a/apps/common/main/lib/component/LoadMask.js
+++ b/apps/common/main/lib/component/LoadMask.js
@@ -167,7 +167,7 @@ define([
},
isVisible: function() {
- return !_.isEmpty(loaderEl);
+ return !!ownerEl.ismasked;
},
updatePosition: function() {
diff --git a/apps/common/main/lib/component/RadioBox.js b/apps/common/main/lib/component/RadioBox.js
index b26e23aa8..1c9a6c360 100644
--- a/apps/common/main/lib/component/RadioBox.js
+++ b/apps/common/main/lib/component/RadioBox.js
@@ -72,7 +72,7 @@ define([
rendered : false,
template : _.template(' ' +
- '<%= labelText %> '),
+ '<%= labelText %> '),
initialize : function(options) {
Common.UI.BaseView.prototype.initialize.call(this, options);
diff --git a/apps/common/main/lib/component/SynchronizeTip.js b/apps/common/main/lib/component/SynchronizeTip.js
index 022d63193..9ddedf973 100644
--- a/apps/common/main/lib/component/SynchronizeTip.js
+++ b/apps/common/main/lib/component/SynchronizeTip.js
@@ -128,7 +128,7 @@ define([
},
textDontShow : 'Don\'t show this message again',
- textSynchronize : 'The document has been changed by another user. Please click to save your changes and reload the updates.'
+ textSynchronize : 'The document has been changed by another user. Please click to save your changes and reload the updates.'
}
})(), Common.UI.SynchronizeTip || {}));
});
diff --git a/apps/common/main/lib/component/TabBar.js b/apps/common/main/lib/component/TabBar.js
index 31eaddea4..8a0a84a0f 100644
--- a/apps/common/main/lib/component/TabBar.js
+++ b/apps/common/main/lib/component/TabBar.js
@@ -225,7 +225,7 @@ define([
}
}
}
- !tab.disabled && Common.NotificationCenter.trigger('edit:complete', this.bar);
+ !tab.disabled && Common.NotificationCenter.trigger('edit:complete', 'tab');
}, this),
dblclick: $.proxy(function() {
this.trigger('tab:dblclick', this, this.tabs.indexOf(tab), tab);
@@ -311,7 +311,7 @@ define([
},
tabs: [],
- template: _.template(''),
+ template: _.template(''),
selectTabs: [],
initialize : function (options) {
diff --git a/apps/common/main/lib/component/Window.js b/apps/common/main/lib/component/Window.js
index 0d2a153c8..9405cc200 100644
--- a/apps/common/main/lib/component/Window.js
+++ b/apps/common/main/lib/component/Window.js
@@ -136,7 +136,8 @@
var Common = {};
define([
- 'common/main/lib/component/BaseView'
+ 'common/main/lib/component/BaseView',
+ 'common/main/lib/component/CheckBox'
], function () {
'use strict';
@@ -439,12 +440,12 @@ define([
if (!options.width) options.width = 'auto';
var template = '' +
- '<% if (typeof iconCls !== "undefined") { %>
<% } %>' +
+ '<% if (typeof iconCls !== "undefined") { %>
<% } %>' +
'
style="padding-left:10px;" <% } %>>
<%= msg %> ' +
'<% if (dontshow) { %>
<% } %>' +
'
' +
'
' +
- '<% if (dontshow) { %>
<% } %>';
+ '<% if (dontshow) { %>
<% } %>';
_.extend(options, {
cls: 'alert',
diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js
index a5cd5bae3..3c82eaa27 100644
--- a/apps/common/main/lib/controller/Desktop.js
+++ b/apps/common/main/lib/controller/Desktop.js
@@ -276,7 +276,7 @@ define([
} else
if ( opts == 'create:new' ) {
if (config.createUrl == 'desktop://create.new') {
- native.LocalFileCreate(!!window.SSE ? 2 : !!window.PE ? 1 : 0);
+ native.execCommand("create:new", !!window.SSE ? 'cell' : !!window.PE ? 'slide' : 'word');
return true;
}
}
diff --git a/apps/common/main/lib/controller/Plugins.js b/apps/common/main/lib/controller/Plugins.js
index 457d49081..8bf8ff38a 100644
--- a/apps/common/main/lib/controller/Plugins.js
+++ b/apps/common/main/lib/controller/Plugins.js
@@ -151,15 +151,17 @@ define([
setApi: function(api) {
this.api = api;
- this.api.asc_registerCallback("asc_onPluginShow", _.bind(this.onPluginShow, this));
- this.api.asc_registerCallback("asc_onPluginClose", _.bind(this.onPluginClose, this));
- this.api.asc_registerCallback("asc_onPluginResize", _.bind(this.onPluginResize, this));
- this.api.asc_registerCallback("asc_onPluginMouseUp", _.bind(this.onPluginMouseUp, this));
- this.api.asc_registerCallback("asc_onPluginMouseMove", _.bind(this.onPluginMouseMove, this));
- this.api.asc_registerCallback('asc_onPluginsReset', _.bind(this.resetPluginsList, this));
- this.api.asc_registerCallback('asc_onPluginsInit', _.bind(this.onPluginsInit, this));
+ if (!this.appOptions.customization || (this.appOptions.customization.plugins!==false)) {
+ this.api.asc_registerCallback("asc_onPluginShow", _.bind(this.onPluginShow, this));
+ this.api.asc_registerCallback("asc_onPluginClose", _.bind(this.onPluginClose, this));
+ this.api.asc_registerCallback("asc_onPluginResize", _.bind(this.onPluginResize, this));
+ this.api.asc_registerCallback("asc_onPluginMouseUp", _.bind(this.onPluginMouseUp, this));
+ this.api.asc_registerCallback("asc_onPluginMouseMove", _.bind(this.onPluginMouseMove, this));
+ this.api.asc_registerCallback('asc_onPluginsReset', _.bind(this.resetPluginsList, this));
+ this.api.asc_registerCallback('asc_onPluginsInit', _.bind(this.onPluginsInit, this));
- this.loadPlugins();
+ this.loadPlugins();
+ }
return this;
},
diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js
index 9b4a4ef41..4d842e87f 100644
--- a/apps/common/main/lib/controller/ReviewChanges.js
+++ b/apps/common/main/lib/controller/ReviewChanges.js
@@ -941,8 +941,8 @@ define([
textChart: 'Chart',
textShape: 'Shape',
textTableChanged: 'Table Settings Changed ',
- textTableRowsAdd: 'Table Rows Added ',
- textTableRowsDel: 'Table Rows Deleted ',
+ textTableRowsAdd: 'Table Rows Added ',
+ textTableRowsDel: 'Table Rows Deleted ',
textParaMoveTo: 'Moved: ',
textParaMoveFromUp: 'Moved Up: ',
textParaMoveFromDown: 'Moved Down: ',
diff --git a/apps/common/main/lib/template/CommentsPanel.template b/apps/common/main/lib/template/CommentsPanel.template
index e5caaef49..bcbe18673 100644
--- a/apps/common/main/lib/template/CommentsPanel.template
+++ b/apps/common/main/lib/template/CommentsPanel.template
@@ -1,11 +1,11 @@
',
'',
'',
- '
'
+ '
'
].join('')
}, options);
diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js
index e62d9aab4..029e27b84 100644
--- a/apps/documenteditor/main/app/view/Toolbar.js
+++ b/apps/documenteditor/main/app/view/Toolbar.js
@@ -1137,12 +1137,12 @@ define([
this.listStyles.fieldPicker.itemTemplate = _.template([
''
].join(''));
this.listStyles.menuPicker.itemTemplate = _.template([
''
].join(''));
this.paragraphControls.push(this.listStyles);
diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html
index 3430971be..527d03ec4 100644
--- a/apps/documenteditor/main/index.html
+++ b/apps/documenteditor/main/index.html
@@ -270,6 +270,7 @@
+
diff --git a/apps/documenteditor/main/index_loader.html b/apps/documenteditor/main/index_loader.html
index 85341cc76..8f6506ec0 100644
--- a/apps/documenteditor/main/index_loader.html
+++ b/apps/documenteditor/main/index_loader.html
@@ -271,6 +271,7 @@
+
diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json
index b5e7022e9..5d2489bb1 100644
--- a/apps/documenteditor/main/locale/bg.json
+++ b/apps/documenteditor/main/locale/bg.json
@@ -10,8 +10,8 @@
"Common.Controllers.ExternalMergeEditor.warningText": "Обектът е деактивиран, защото се редактира от друг потребител.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Внимание",
"Common.Controllers.History.notcriticalErrorTitle": "Внимание",
- "Common.Controllers.ReviewChanges.textAtLeast": "поне",
- "Common.Controllers.ReviewChanges.textAuto": "автоматичен",
+ "Common.Controllers.ReviewChanges.textAtLeast": "Поне",
+ "Common.Controllers.ReviewChanges.textAuto": "Автоматичен",
"Common.Controllers.ReviewChanges.textBaseline": "Изходна",
"Common.Controllers.ReviewChanges.textBold": "Получер",
"Common.Controllers.ReviewChanges.textBreakBefore": "Страницата е прекъсната преди",
@@ -23,7 +23,7 @@
"Common.Controllers.ReviewChanges.textDeleted": "Изтрито: ",
"Common.Controllers.ReviewChanges.textDStrikeout": "Двойно зачертаване",
"Common.Controllers.ReviewChanges.textEquation": "Уравнение",
- "Common.Controllers.ReviewChanges.textExact": "точно",
+ "Common.Controllers.ReviewChanges.textExact": "Точно",
"Common.Controllers.ReviewChanges.textFirstLine": "Първа линия",
"Common.Controllers.ReviewChanges.textFontSize": "Размер на шрифта",
"Common.Controllers.ReviewChanges.textFormatted": "Форматиран",
@@ -38,7 +38,7 @@
"Common.Controllers.ReviewChanges.textKeepNext": "Продължете със следващия",
"Common.Controllers.ReviewChanges.textLeft": "Подравняване вляво",
"Common.Controllers.ReviewChanges.textLineSpacing": "Разстояние между редовете: ",
- "Common.Controllers.ReviewChanges.textMultiple": "многократни",
+ "Common.Controllers.ReviewChanges.textMultiple": "Многократни",
"Common.Controllers.ReviewChanges.textNoBreakBefore": "Няма прекъсване на страница преди това",
"Common.Controllers.ReviewChanges.textNoContextual": "Добави интервал между",
"Common.Controllers.ReviewChanges.textNoKeepLines": "Не поддържайте линиите заедно",
@@ -65,7 +65,7 @@
"Common.Controllers.ReviewChanges.textSuperScript": "Горен индекс",
"Common.Controllers.ReviewChanges.textTableChanged": "Промените в табличните настройки ",
"Common.Controllers.ReviewChanges.textTableRowsAdd": "Редовете на таблиците се добавят ",
- "Common.Controllers.ReviewChanges.textTableRowsDel": "Таблици са изтрити ",
+ "Common.Controllers.ReviewChanges.textTableRowsDel": "Таблици са изтрити ",
"Common.Controllers.ReviewChanges.textTabs": "Промяна на разделите",
"Common.Controllers.ReviewChanges.textUnderline": "Подчертавам",
"Common.Controllers.ReviewChanges.textWidow": "Управление на вдовицата",
@@ -118,7 +118,7 @@
"Common.Views.About.txtLicensor": "НОСИТЕЛЯТ",
"Common.Views.About.txtMail": "електронна поща:",
"Common.Views.About.txtPoweredBy": "Задвижвани от",
- "Common.Views.About.txtTel": "тел .: ",
+ "Common.Views.About.txtTel": "тел.: ",
"Common.Views.About.txtVersion": "Версия ",
"Common.Views.Chat.textSend": "Изпращам",
"Common.Views.Comments.textAdd": "Добави",
@@ -401,7 +401,7 @@
"DE.Controllers.Main.textPaidFeature": "Платена функция",
"DE.Controllers.Main.textShape": "Форма",
"DE.Controllers.Main.textStrict": "Строг режим",
- "DE.Controllers.Main.textTryUndoRedo": "Функциите за отмяна / възстановяване са деактивирани за режима Бързо съвместно редактиране. Кликнете върху бутона „Строг режим“, за да превключите в режим на стриктно съвместно редактиране, за да редактирате файла без намеса на други потребители и да изпращате промените само след като ги запазите тях. Можете да превключвате между режимите за съвместно редактиране с помощта на редактора Разширени настройки.",
+ "DE.Controllers.Main.textTryUndoRedo": "Функциите за отмяна/възстановяване са деактивирани за режима Бързо съвместно редактиране. Кликнете върху бутона „Строг режим“, за да превключите в режим на стриктно съвместно редактиране, за да редактирате файла без намеса на други потребители и да изпращате промените само след като ги запазите тях. Можете да превключвате между режимите за съвместно редактиране с помощта на редактора Разширени настройки.",
"DE.Controllers.Main.titleLicenseExp": "Лицензът е изтекъл",
"DE.Controllers.Main.titleServerVersion": "Редакторът е актуализиран",
"DE.Controllers.Main.titleUpdateVersion": "Версията е променена",
@@ -1032,7 +1032,6 @@
"DE.Views.ControlSettingsDialog.textColor": "Цвят",
"DE.Views.ControlSettingsDialog.textLock": "Заключване",
"DE.Views.ControlSettingsDialog.textName": "Заглавие",
- "DE.Views.ControlSettingsDialog.textNewColor": "Нов потребителски цвят",
"DE.Views.ControlSettingsDialog.textNone": "Нито един",
"DE.Views.ControlSettingsDialog.textShowAs": "Покажете като",
"DE.Views.ControlSettingsDialog.textSystemColor": "Система",
@@ -1277,7 +1276,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Наляво",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Марж",
"DE.Views.DropcapSettingsAdvanced.textMove": "Преместване с текст",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Нов потребителски цвят",
"DE.Views.DropcapSettingsAdvanced.textNone": "Нито един",
"DE.Views.DropcapSettingsAdvanced.textPage": "Страница",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Параграф",
@@ -1647,7 +1645,6 @@
"DE.Views.ParagraphSettings.textAuto": "Многократни",
"DE.Views.ParagraphSettings.textBackColor": "Цвят на фона",
"DE.Views.ParagraphSettings.textExact": "Точно",
- "DE.Views.ParagraphSettings.textNewColor": "Нов потребителски цвят",
"DE.Views.ParagraphSettings.txtAutoText": "Автоматичен",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Посочените раздели ще се появят в това поле",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Всички шапки",
@@ -1679,7 +1676,6 @@
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Водач",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Наляво",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Нов потребителски цвят",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Нито един",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Позиция",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Премахване",
@@ -1737,7 +1733,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Отрязване по вертикала",
"DE.Views.ShapeSettings.textImageTexture": "Картина или текстура",
"DE.Views.ShapeSettings.textLinear": "Линеен",
- "DE.Views.ShapeSettings.textNewColor": "Нов потребителски цвят",
"DE.Views.ShapeSettings.textNoFill": "Без попълване",
"DE.Views.ShapeSettings.textPatternFill": "Модел",
"DE.Views.ShapeSettings.textRadial": "Радиален",
@@ -1851,7 +1846,6 @@
"DE.Views.TableSettings.textHeader": "Заглавие",
"DE.Views.TableSettings.textHeight": "Височина",
"DE.Views.TableSettings.textLast": "Последно",
- "DE.Views.TableSettings.textNewColor": "Нов потребителски цвят",
"DE.Views.TableSettings.textRows": "Редове",
"DE.Views.TableSettings.textSelectBorders": "Изберете граници, които искате да промените, като използвате избрания по-горе стил",
"DE.Views.TableSettings.textTemplate": "Изберете от шаблон",
@@ -1900,7 +1894,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Маржове на клетките",
"DE.Views.TableSettingsAdvanced.textMeasure": "Измерете инча",
"DE.Views.TableSettingsAdvanced.textMove": "Преместване на обект с текст",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Нов потребителски цвят",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Само за избрани клетки",
"DE.Views.TableSettingsAdvanced.textOptions": "Настроики",
"DE.Views.TableSettingsAdvanced.textOverlap": "Разрешаване на припокриване",
@@ -1953,7 +1946,6 @@
"DE.Views.TextArtSettings.textGradient": "Градиент",
"DE.Views.TextArtSettings.textGradientFill": "Градиентно запълване",
"DE.Views.TextArtSettings.textLinear": "Линеен",
- "DE.Views.TextArtSettings.textNewColor": "Нов потребителски цвят",
"DE.Views.TextArtSettings.textNoFill": "Без попълване",
"DE.Views.TextArtSettings.textRadial": "Радиален",
"DE.Views.TextArtSettings.textSelectTexture": "Изберете",
@@ -2023,6 +2015,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Нормално за САЩ",
"DE.Views.Toolbar.textMarginsWide": "Широк",
"DE.Views.Toolbar.textNewColor": "Нов потребителски цвят",
+ "Common.UI.ColorButton.textNewColor": "Нов потребителски цвят",
"DE.Views.Toolbar.textNextPage": "Следваща страница",
"DE.Views.Toolbar.textNoHighlight": "Няма подчертаване",
"DE.Views.Toolbar.textNone": "Нито един",
@@ -2135,5 +2128,5 @@
"DE.Views.Toolbar.txtScheme6": "Стечение",
"DE.Views.Toolbar.txtScheme7": "Справедливост",
"DE.Views.Toolbar.txtScheme8": "Поток",
- "DE.Views.Toolbar.txtScheme9": "леярна"
+ "DE.Views.Toolbar.txtScheme9": "Леярна"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json
index 31733f83f..15d83b842 100644
--- a/apps/documenteditor/main/locale/cs.json
+++ b/apps/documenteditor/main/locale/cs.json
@@ -1153,7 +1153,6 @@
"DE.Views.ControlSettingsDialog.textLang": "Jazyk",
"DE.Views.ControlSettingsDialog.textLock": "Zamykání",
"DE.Views.ControlSettingsDialog.textName": "Nadpis",
- "DE.Views.ControlSettingsDialog.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.ControlSettingsDialog.textNone": "Žádné",
"DE.Views.ControlSettingsDialog.textShowAs": "Zobrazit jako",
"DE.Views.ControlSettingsDialog.textSystemColor": "Systémové",
@@ -1408,7 +1407,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Vlevo",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Okraj",
"DE.Views.DropcapSettingsAdvanced.textMove": "Přemístit s textem",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.DropcapSettingsAdvanced.textNone": "Žádný",
"DE.Views.DropcapSettingsAdvanced.textPage": "Stránka",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Odstavec",
@@ -1701,7 +1699,6 @@
"DE.Views.ListSettingsDialog.textCenter": "Na střed",
"DE.Views.ListSettingsDialog.textLeft": "Vlevo",
"DE.Views.ListSettingsDialog.textLevel": "Úroveň",
- "DE.Views.ListSettingsDialog.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.ListSettingsDialog.textPreview": "Náhled",
"DE.Views.ListSettingsDialog.textRight": "Vpravo",
"DE.Views.ListSettingsDialog.txtAlign": "Zarovnání",
@@ -1826,7 +1823,6 @@
"DE.Views.ParagraphSettings.textAuto": "Násobky",
"DE.Views.ParagraphSettings.textBackColor": "Barva pozadí",
"DE.Views.ParagraphSettings.textExact": "Přesně",
- "DE.Views.ParagraphSettings.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.ParagraphSettings.txtAutoText": "Automaticky",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Specifikované tabulátory se objeví v tomto poli",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všechno velkými",
@@ -1876,7 +1872,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Vodítko",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Vlevo",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Úroveň",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Žádné",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(žádné)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozice",
@@ -1937,7 +1932,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Převrátit svisle",
"DE.Views.ShapeSettings.textImageTexture": "Obrázek nebo textura",
"DE.Views.ShapeSettings.textLinear": "Lineární",
- "DE.Views.ShapeSettings.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.ShapeSettings.textNoFill": "Bez výplně",
"DE.Views.ShapeSettings.textPatternFill": "Vzor",
"DE.Views.ShapeSettings.textRadial": "Kruhový",
@@ -2052,7 +2046,6 @@
"DE.Views.TableSettings.textHeader": "Záhlaví",
"DE.Views.TableSettings.textHeight": "Výška",
"DE.Views.TableSettings.textLast": "Poslední",
- "DE.Views.TableSettings.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.TableSettings.textRows": "Řádky",
"DE.Views.TableSettings.textSelectBorders": "Vyberte ohraničení, na které chcete použít styl vybraný výše.",
"DE.Views.TableSettings.textTemplate": "Vybrat ze šablony",
@@ -2109,7 +2102,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Okraje buňky",
"DE.Views.TableSettingsAdvanced.textMeasure": "Měřit v",
"DE.Views.TableSettingsAdvanced.textMove": "Přemístit objekt s textem",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Pouze pro vybrané buňky",
"DE.Views.TableSettingsAdvanced.textOptions": "Možnosti",
"DE.Views.TableSettingsAdvanced.textOverlap": "Povolit překrývání",
@@ -2162,7 +2154,6 @@
"DE.Views.TextArtSettings.textGradient": "Přechod",
"DE.Views.TextArtSettings.textGradientFill": "Výplň přechodem",
"DE.Views.TextArtSettings.textLinear": "Lineární",
- "DE.Views.TextArtSettings.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.TextArtSettings.textNoFill": "Bez výplně",
"DE.Views.TextArtSettings.textRadial": "Kruhový",
"DE.Views.TextArtSettings.textSelectTexture": "Vybrat",
@@ -2243,6 +2234,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Americký standard (US Normal)",
"DE.Views.Toolbar.textMarginsWide": "Široké",
"DE.Views.Toolbar.textNewColor": "Přidat novou uživatelsky určenou barvu",
+ "Common.UI.ColorButton.textNewColor": "Přidat novou uživatelsky určenou barvu",
"DE.Views.Toolbar.textNextPage": "Další stránka",
"DE.Views.Toolbar.textNoHighlight": "Žádné zvýrazňování",
"DE.Views.Toolbar.textNone": "Žádný",
diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json
index c28328acf..21c05c351 100644
--- a/apps/documenteditor/main/locale/da.json
+++ b/apps/documenteditor/main/locale/da.json
@@ -10,6 +10,7 @@
"Common.Controllers.ExternalMergeEditor.warningText": "Objektet er slået fra da det bliver redigeret af en anden bruger. ",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Advarsel",
"Common.Controllers.History.notcriticalErrorTitle": "Advarsel",
+ "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "For at sammenligne dokumenter vil alle noterede ændringer i dokumenterne opfattes som godkendt. Ønsker du at fortsætte?",
"Common.Controllers.ReviewChanges.textAtLeast": "Mindst",
"Common.Controllers.ReviewChanges.textAuto": "automatisk",
"Common.Controllers.ReviewChanges.textBaseline": "basislinier",
@@ -49,6 +50,9 @@
"Common.Controllers.ReviewChanges.textParaDeleted": "Afsnit slettet ",
"Common.Controllers.ReviewChanges.textParaFormatted": "Afsnit formatteret",
"Common.Controllers.ReviewChanges.textParaInserted": "Afsnit sat ind ",
+ "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Flyttet ned: ",
+ "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Flyttet op: ",
+ "Common.Controllers.ReviewChanges.textParaMoveTo": "Flyttet: ",
"Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Tilpas til højre",
"Common.Controllers.ReviewChanges.textShape": "Form",
@@ -60,9 +64,57 @@
"Common.Controllers.ReviewChanges.textStrikeout": "Strikethrough",
"Common.Controllers.ReviewChanges.textSubScript": "Subscript",
"Common.Controllers.ReviewChanges.textSuperScript": "Superscript",
+ "Common.Controllers.ReviewChanges.textTableChanged": "Tabel indstillinger ændret ",
+ "Common.Controllers.ReviewChanges.textTableRowsAdd": "Tabel-rækker tilføjet ",
+ "Common.Controllers.ReviewChanges.textTableRowsDel": "Tabel rækker slettet ",
"Common.Controllers.ReviewChanges.textTabs": "Skift faner",
"Common.Controllers.ReviewChanges.textUnderline": "Understreg",
+ "Common.Controllers.ReviewChanges.textUrl": "Indsæt et dokument-URL",
"Common.Controllers.ReviewChanges.textWidow": "Enke kontrol",
+ "Common.define.chartData.textArea": "Område",
+ "Common.define.chartData.textBar": "Linje",
+ "Common.define.chartData.textCharts": "Diagrammer",
+ "Common.define.chartData.textColumn": "Kolonne",
+ "Common.define.chartData.textLine": "Linie",
+ "Common.define.chartData.textPie": "Cirkeldiagram",
+ "Common.define.chartData.textPoint": "XY (Spredning)",
+ "Common.define.chartData.textStock": "Aktie",
+ "Common.define.chartData.textSurface": "Overflade",
+ "Common.Translation.warnFileLocked": "Dokumentet er i brug af en anden applikation. Du kan fortsætte med at redigere og gemme som en kopi.",
+ "Common.UI.Calendar.textApril": "April",
+ "Common.UI.Calendar.textAugust": "August",
+ "Common.UI.Calendar.textDecember": "December",
+ "Common.UI.Calendar.textFebruary": "Februar",
+ "Common.UI.Calendar.textJanuary": "Januar",
+ "Common.UI.Calendar.textJuly": "Juli",
+ "Common.UI.Calendar.textJune": "Juni",
+ "Common.UI.Calendar.textMarch": "Marts",
+ "Common.UI.Calendar.textMay": "Maj",
+ "Common.UI.Calendar.textMonths": "måneder",
+ "Common.UI.Calendar.textNovember": "November",
+ "Common.UI.Calendar.textOctober": "Oktober",
+ "Common.UI.Calendar.textSeptember": "September",
+ "Common.UI.Calendar.textShortApril": "Apr",
+ "Common.UI.Calendar.textShortAugust": "Aug",
+ "Common.UI.Calendar.textShortDecember": "Dec",
+ "Common.UI.Calendar.textShortFebruary": "Feb",
+ "Common.UI.Calendar.textShortFriday": "Fre",
+ "Common.UI.Calendar.textShortJanuary": "Jan",
+ "Common.UI.Calendar.textShortJuly": "Jul",
+ "Common.UI.Calendar.textShortJune": "Jun",
+ "Common.UI.Calendar.textShortMarch": "Mar",
+ "Common.UI.Calendar.textShortMay": "Maj",
+ "Common.UI.Calendar.textShortMonday": "Ma",
+ "Common.UI.Calendar.textShortNovember": "Nov",
+ "Common.UI.Calendar.textShortOctober": "Okt",
+ "Common.UI.Calendar.textShortSaturday": "Lø",
+ "Common.UI.Calendar.textShortSeptember": "Sep",
+ "Common.UI.Calendar.textShortSunday": "Sø",
+ "Common.UI.Calendar.textShortThursday": "To",
+ "Common.UI.Calendar.textShortTuesday": "Ti",
+ "Common.UI.Calendar.textShortWednesday": "Ons",
+ "Common.UI.Calendar.textYears": "år",
+ "Common.UI.ColorButton.textNewColor": "Tilføj ny brugerdefineret farve",
"Common.UI.ComboBorderSize.txtNoBorders": "Ingen rammer",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ingen rammer",
"Common.UI.ComboDataView.emptyComboText": "Ingen stilarter",
@@ -153,6 +205,7 @@
"Common.Views.Header.tipRedo": "Fortryd",
"Common.Views.Header.tipSave": "Gem",
"Common.Views.Header.tipUndo": "Fortryd",
+ "Common.Views.Header.tipUndock": "Lås af i seperat vindue",
"Common.Views.Header.tipViewSettings": "Vis indstillinger",
"Common.Views.Header.tipViewUsers": "Vis brugere og håndter dokumentrettighederne ",
"Common.Views.Header.txtAccessRights": "Skift adgangsrettigheder",
@@ -208,12 +261,19 @@
"Common.Views.RenameDialog.txtInvalidName": "Filnavnet må ikke indeholde nogle af følgende tegn:",
"Common.Views.ReviewChanges.hintNext": "Til næste ændring",
"Common.Views.ReviewChanges.hintPrev": "Til forrige ændring",
+ "Common.Views.ReviewChanges.mniFromFile": "Dokument fra fil",
+ "Common.Views.ReviewChanges.mniFromStorage": "Dokument fra opbevaring",
+ "Common.Views.ReviewChanges.mniFromUrl": "Dokument fra URL",
+ "Common.Views.ReviewChanges.mniSettings": "Sammenligningsindstillinger",
"Common.Views.ReviewChanges.strFast": "Hurtig",
"Common.Views.ReviewChanges.strFastDesc": "Realtids co-redigering. Alle ændringer bliver gemt automatisk",
"Common.Views.ReviewChanges.strStrict": "Striks",
"Common.Views.ReviewChanges.strStrictDesc": "Brug \"gem\" knappen for at synkronisere ændringer du og andre laver. ",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Acceptér nuværende ændring",
"Common.Views.ReviewChanges.tipCoAuthMode": "Aktiver samredigeringstilstanden",
+ "Common.Views.ReviewChanges.tipCommentRem": "Fjern kommentarer",
+ "Common.Views.ReviewChanges.tipCommentRemCurrent": "Fjern nuværende kommentarer",
+ "Common.Views.ReviewChanges.tipCompare": "Sammenlign nuværende dokument med et andet",
"Common.Views.ReviewChanges.tipHistory": "Vis versionshistorik",
"Common.Views.ReviewChanges.tipRejectCurrent": "Afvis nuværende ændring",
"Common.Views.ReviewChanges.tipReview": "Spor ændringer",
@@ -228,6 +288,12 @@
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Luk",
"Common.Views.ReviewChanges.txtCoAuthMode": "Fællesredigeringstilstand",
+ "Common.Views.ReviewChanges.txtCommentRemAll": "Fjern alle kommentarer",
+ "Common.Views.ReviewChanges.txtCommentRemCurrent": "Fjern nuværende kommentarer",
+ "Common.Views.ReviewChanges.txtCommentRemMy": "Fjern mine kommentarer",
+ "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Fjern mine nuværende kommentarer",
+ "Common.Views.ReviewChanges.txtCommentRemove": "Fjern",
+ "Common.Views.ReviewChanges.txtCompare": "Sammenlign",
"Common.Views.ReviewChanges.txtDocLang": "Sprog",
"Common.Views.ReviewChanges.txtFinal": "Alle ændringer accepteret (Forhåndsvisning)",
"Common.Views.ReviewChanges.txtFinalCap": "Endelig",
@@ -260,9 +326,16 @@
"Common.Views.ReviewPopover.textCancel": "Annuller",
"Common.Views.ReviewPopover.textClose": "Luk",
"Common.Views.ReviewPopover.textEdit": "OK",
+ "Common.Views.ReviewPopover.textFollowMove": "Følg bevægelse",
+ "Common.Views.ReviewPopover.textMention": "+mention vil give adgang til dokumentet og sende en e-mail",
+ "Common.Views.ReviewPopover.textMentionNotify": "+mention vil notificere brugeren via e-mail",
"Common.Views.ReviewPopover.textOpenAgain": "Åben igen",
"Common.Views.ReviewPopover.textReply": "Svar",
"Common.Views.ReviewPopover.textResolve": "Løs",
+ "Common.Views.SaveAsDlg.textLoading": "Indlæser",
+ "Common.Views.SaveAsDlg.textTitle": "Mappe til at gemme",
+ "Common.Views.SelectFileDlg.textLoading": "Indlæser",
+ "Common.Views.SelectFileDlg.textTitle": "Vælg datakilde",
"Common.Views.SignDialog.textBold": "Fed",
"Common.Views.SignDialog.textCertificate": "Certifikat",
"Common.Views.SignDialog.textChange": "Ændre",
@@ -286,6 +359,33 @@
"Common.Views.SignSettingsDialog.textShowDate": "Vis tegndato i signaturlinjen",
"Common.Views.SignSettingsDialog.textTitle": "underskrifts opsætning",
"Common.Views.SignSettingsDialog.txtEmpty": "Dette felt skal udfyldes",
+ "Common.Views.SymbolTableDialog.textCharacter": "Karakter",
+ "Common.Views.SymbolTableDialog.textCode": "Unicode HEX-værdi",
+ "Common.Views.SymbolTableDialog.textCopyright": "Ophavsret Symbol",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Dobbeltlukket citat",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Dobbeltåbent citat",
+ "Common.Views.SymbolTableDialog.textEllipsis": "Vandret ellipse",
+ "Common.Views.SymbolTableDialog.textEmDash": "Em bindestreg",
+ "Common.Views.SymbolTableDialog.textEmSpace": "Em mellemrum",
+ "Common.Views.SymbolTableDialog.textEnDash": "En bindestreg",
+ "Common.Views.SymbolTableDialog.textEnSpace": "En mellemrum",
+ "Common.Views.SymbolTableDialog.textFont": "Skrifttype",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Ubrudt bindestreg",
+ "Common.Views.SymbolTableDialog.textNBSpace": "Ingen-brud mellemrum",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Afsnitstegn",
+ "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em mellemrum",
+ "Common.Views.SymbolTableDialog.textRange": "Rækkevidde",
+ "Common.Views.SymbolTableDialog.textRecent": "Senest anvendte symboler",
+ "Common.Views.SymbolTableDialog.textRegistered": "Registreret tegn",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Enkelt lukket citat",
+ "Common.Views.SymbolTableDialog.textSection": "Sektion tegn",
+ "Common.Views.SymbolTableDialog.textShortcut": "Genvejstast",
+ "Common.Views.SymbolTableDialog.textSHyphen": "Blød bindestreg",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Enkelt åben kvote",
+ "Common.Views.SymbolTableDialog.textSpecial": "Specielle tegn",
+ "Common.Views.SymbolTableDialog.textSymbols": "Symboler",
+ "Common.Views.SymbolTableDialog.textTitle": "Symbol",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Varemærke tegn",
"DE.Controllers.LeftMenu.leavePageText": "Alle ikke gemte ændringer i dette dokument vil blive tabt. Tryk \"Afbryd\" og derefter \"gem\" for at gemme dem. Klik \"OK\" for at slette ikke gemte ændringer. ",
"DE.Controllers.LeftMenu.newDocumentTitle": "Unavngivet dokument",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Advarsel",
@@ -294,6 +394,8 @@
"DE.Controllers.LeftMenu.textNoTextFound": "Dataen du har søgt, kunne ikke findes. Venligst ændre dine søgerkriterier.",
"DE.Controllers.LeftMenu.textReplaceSkipped": "Erstatningen er blevet oprettet. {0} gentagelser blev sprunget over.",
"DE.Controllers.LeftMenu.textReplaceSuccess": "Søgningen er blevet gennemført. Forekomster erstattet: {0}",
+ "DE.Controllers.LeftMenu.txtCompatible": "Dokumentet bliver gemt i nyt format. Det vil tillade dig at bruge alle redigeringsfunktioner, men det kan påvirke dokumentlayoutet. Brug \"kompatibilitet\" indstillingen fra avancerede indstillinger hvis du ønsker at gøre filer kompatible med ældre MS Word versioner.",
+ "DE.Controllers.LeftMenu.txtUntitled": "Unavngivet",
"DE.Controllers.LeftMenu.warnDownloadAs": "Hvis du fortsætter med at gemme i dette format, vil alle funktioner på nær teksten blive tabt. Er du sikker på at du vil fortsætte?",
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Hvis du fortsætter med at gemme i dette format, kan noget af den nuværende formattering gå tabt. Er du sikker på at du vil fortsætte?",
"DE.Controllers.Main.applyChangesTextText": "Indlæser ændringerne",
@@ -309,12 +411,18 @@
"DE.Controllers.Main.errorAccessDeny": "Du forsøger at foretage en handling, som du ikke har rettighederne til. venligst kontakt din Document Servar administrator.",
"DE.Controllers.Main.errorBadImageUrl": "Billede URL er forkert",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Server forbindelse tabt. Dokumentet kan ikke redigeres lige nu.",
+ "DE.Controllers.Main.errorCompare": "Sammenlign Dokumenter-funktionen er ikke tilgængelig i co-redigerings tilstand",
"DE.Controllers.Main.errorConnectToServer": "Dokumentet kunne ikke gemmes. Check venligst din netværksforbindelse eller kontakt din administrator. Når du klikker på 'OK' knappen, vil du blive bedt om at downloade dokumentet.",
"DE.Controllers.Main.errorDatabaseConnection": "Ekstern fejl. Database forbindelses fejl. Kontakt venligst support hvis fejlen bliver ved med at være der. ",
"DE.Controllers.Main.errorDataEncrypted": "Krypterede ændringer er blevet modtaget, men de kan ikke dekrypteres. ",
"DE.Controllers.Main.errorDataRange": "Forkert datainterval",
"DE.Controllers.Main.errorDefaultMessage": "Fejlkode: %1",
+ "DE.Controllers.Main.errorDirectUrl": "Bekræft venligst linket til dokumentet. Dette link skal være et direkte link til filen til download.",
+ "DE.Controllers.Main.errorEditingDownloadas": "Der opstod en fejl under arbejdet med dokumentet. Brug \"download som...\" valgmuligheden for at gemme en sikkerhedsversion til din computers harddisk.",
+ "DE.Controllers.Main.errorEditingSaveas": "Der opstod en fejl under arbejdet med dokumentet. Brug \"gem som...\" valgmuligheden for at gemme en sikkerhedsversion til din computers harddisk.",
+ "DE.Controllers.Main.errorEmailClient": "Ingen e-mail klient fundet.",
"DE.Controllers.Main.errorFilePassProtect": "Dokumentet er beskyttet af et kodeord og kunne ikke åbnes.",
+ "DE.Controllers.Main.errorFileSizeExceed": "Filens størrelse overgår begrænsningen, som er sat for din server. Kontakt venligst til dokumentserver administrator for detaljer.",
"DE.Controllers.Main.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.",
"DE.Controllers.Main.errorKeyEncrypt": "Ukendte nøgle descriptor",
"DE.Controllers.Main.errorKeyExpire": "Nøgle beskrivelse udløbet",
@@ -329,6 +437,7 @@
"DE.Controllers.Main.errorToken": "Dokumentets sikkerhedstoken er ikke lavet korrekt. Kontakt venligst din administrator på Document Server.",
"DE.Controllers.Main.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet. Kontakt venligst din administrator på Document Server. ",
"DE.Controllers.Main.errorUpdateVersion": "Filversionen er blevet ændret. Siden vil blive genindlæst.",
+ "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret. Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.",
"DE.Controllers.Main.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ",
"DE.Controllers.Main.errorUsersExceed": "Det maksimale antal af brugere tilladt i din aftale er nået. ",
"DE.Controllers.Main.errorViewerDisconnect": "Forbindesen er tabt. Du kan stadig se dokumentet, men du vil ikke være i stand til at downloade eller printe det indtil forbindelsen er genetableret. ",
@@ -366,11 +475,15 @@
"DE.Controllers.Main.splitMaxColsErrorText": "Antallet af kolonner skal være mindre end %1.",
"DE.Controllers.Main.splitMaxRowsErrorText": "Antallet af rækker skal være mindre end %1.",
"DE.Controllers.Main.textAnonymous": "Anonym",
+ "DE.Controllers.Main.textApplyAll": "Anvend på alle ligninger",
"DE.Controllers.Main.textBuyNow": "Besøg hjemmeside",
"DE.Controllers.Main.textChangesSaved": "Alle ændringer er blevet gemt",
"DE.Controllers.Main.textClose": "Luk",
"DE.Controllers.Main.textCloseTip": "Klik for at lukke tippet",
"DE.Controllers.Main.textContactUs": "Kontakt salg",
+ "DE.Controllers.Main.textConvertEquation": "Denne ligning er skabt med en ældre version af programmet, som ikke længere understøttes. Omdannelse af denne ligning til Office Math ML format vil gøre den redigerbar. Ønsker du at omdanne denne ligning?",
+ "DE.Controllers.Main.textCustomLoader": "Bemærk, at du i henhold til licensbetingelserne ikke har ret til at skifte loaderen. Kontakt venligt vores salgsafdeling for at få en kvote.",
+ "DE.Controllers.Main.textLearnMore": "Lær mere",
"DE.Controllers.Main.textLoadingDocument": "Indlæser dokument",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE forbindelsesbegrænsning",
"DE.Controllers.Main.textPaidFeature": "Betalt funktion",
@@ -386,28 +499,206 @@
"DE.Controllers.Main.txtBelow": "Under",
"DE.Controllers.Main.txtBookmarkError": "Fejl! Bogmærke er ikke defineret",
"DE.Controllers.Main.txtButtons": "Knapper",
- "DE.Controllers.Main.txtCallouts": "Billedtekster",
+ "DE.Controllers.Main.txtCallouts": "Talebobler",
"DE.Controllers.Main.txtCharts": "Diagram",
+ "DE.Controllers.Main.txtChoose": "Vælg en vare.",
"DE.Controllers.Main.txtCurrentDocument": "Nuværende dokument",
"DE.Controllers.Main.txtDiagramTitle": "Diagram titel",
"DE.Controllers.Main.txtEditingMode": "Vælg redigeringstilstand...",
+ "DE.Controllers.Main.txtEndOfFormula": "Uvententet slutning på formular",
+ "DE.Controllers.Main.txtEnterDate": "Indtast en dato",
"DE.Controllers.Main.txtErrorLoadHistory": "Fejl ved indlæsningen af historik",
"DE.Controllers.Main.txtEvenPage": "Lige side",
"DE.Controllers.Main.txtFiguredArrows": "Pile figure",
"DE.Controllers.Main.txtFirstPage": "Første side",
"DE.Controllers.Main.txtFooter": "Sidefod",
+ "DE.Controllers.Main.txtFormulaNotInTable": "Formularen ikke i tabellen",
"DE.Controllers.Main.txtHeader": "Sidehoved",
+ "DE.Controllers.Main.txtHyperlink": "Hyperlink",
+ "DE.Controllers.Main.txtIndTooLarge": "Indeks for stort",
"DE.Controllers.Main.txtLines": "Linie",
+ "DE.Controllers.Main.txtMainDocOnly": "Fejl! Kun hoveddokument.",
"DE.Controllers.Main.txtMath": "Matematik",
+ "DE.Controllers.Main.txtMissArg": "Manglende argument",
+ "DE.Controllers.Main.txtMissOperator": "Manglende operatør",
"DE.Controllers.Main.txtNeedSynchronize": "Du har opdateringer",
"DE.Controllers.Main.txtNoTableOfContents": "Ingen tilføjelser til indholdsfortegnelsen",
+ "DE.Controllers.Main.txtNoText": "Fejl! Ingen tekst af den specificerede type i dokumentet.",
+ "DE.Controllers.Main.txtNotInTable": "Er ikke i tabel",
+ "DE.Controllers.Main.txtNotValidBookmark": "Fejl! Ikke en gyldig bogmærke selv-reference",
"DE.Controllers.Main.txtOddPage": "Ulige side",
"DE.Controllers.Main.txtOnPage": "På siden",
"DE.Controllers.Main.txtRectangles": "Rektangel",
"DE.Controllers.Main.txtSameAsPrev": "Magen til tidligere",
"DE.Controllers.Main.txtSection": "-Sektion",
"DE.Controllers.Main.txtSeries": "Serie",
+ "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tilbage eller Forudgående knap",
+ "DE.Controllers.Main.txtShape_actionButtonBeginning": "Begyndende knap",
+ "DE.Controllers.Main.txtShape_actionButtonBlank": "Blank knap",
+ "DE.Controllers.Main.txtShape_actionButtonDocument": "Dokument knap",
+ "DE.Controllers.Main.txtShape_actionButtonEnd": "Slut knap",
+ "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Frem eller næste-knap",
+ "DE.Controllers.Main.txtShape_actionButtonHelp": "Hjælp-knap",
+ "DE.Controllers.Main.txtShape_actionButtonHome": "Hjem-knap",
+ "DE.Controllers.Main.txtShape_actionButtonInformation": "Informations-knap",
+ "DE.Controllers.Main.txtShape_actionButtonMovie": "Film-knap",
+ "DE.Controllers.Main.txtShape_actionButtonReturn": "Tilbage-knap",
+ "DE.Controllers.Main.txtShape_actionButtonSound": "Lyd-knap",
+ "DE.Controllers.Main.txtShape_arc": "Bue",
+ "DE.Controllers.Main.txtShape_bentArrow": "Buet pil",
+ "DE.Controllers.Main.txtShape_bentConnector5": "Albue-forbindelse",
+ "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Albue-pil forbindelse",
+ "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Albue dobbelt-pil forbindelse",
+ "DE.Controllers.Main.txtShape_bentUpArrow": "Pil buet opad",
+ "DE.Controllers.Main.txtShape_bevel": "Facet",
+ "DE.Controllers.Main.txtShape_blockArc": "Blokeringsbue",
+ "DE.Controllers.Main.txtShape_borderCallout1": "Linje Talebobbel 1",
+ "DE.Controllers.Main.txtShape_borderCallout2": "Linje Talebobbel 2",
+ "DE.Controllers.Main.txtShape_borderCallout3": "Linje Talebobbel 3",
+ "DE.Controllers.Main.txtShape_bracePair": "Dobbelt bøjle",
+ "DE.Controllers.Main.txtShape_callout1": "Linje Talebobbel 1 (Ingen grænse)",
+ "DE.Controllers.Main.txtShape_callout2": "Linje Talebobbel 2 (Ingen Grænse",
+ "DE.Controllers.Main.txtShape_callout3": "Linje Talebobbel 3 (Ingen grænse)",
+ "DE.Controllers.Main.txtShape_can": "Kan",
+ "DE.Controllers.Main.txtShape_chevron": "Sparre",
+ "DE.Controllers.Main.txtShape_chord": "Ledning",
+ "DE.Controllers.Main.txtShape_circularArrow": "Cirkulær pil",
+ "DE.Controllers.Main.txtShape_cloud": "Sky",
+ "DE.Controllers.Main.txtShape_cloudCallout": "Talebobbel (Sky)",
+ "DE.Controllers.Main.txtShape_corner": "Hjørne",
+ "DE.Controllers.Main.txtShape_cube": "Terning",
+ "DE.Controllers.Main.txtShape_curvedConnector3": "Buet konnektor",
+ "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Buet pil med konnektor",
+ "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Buet dobbelt-pil",
+ "DE.Controllers.Main.txtShape_curvedDownArrow": "Buet nedadgående pil",
+ "DE.Controllers.Main.txtShape_curvedLeftArrow": "Buet pil til venstre",
+ "DE.Controllers.Main.txtShape_curvedRightArrow": "Buet pil til højre",
+ "DE.Controllers.Main.txtShape_curvedUpArrow": "Buet til opad",
+ "DE.Controllers.Main.txtShape_decagon": "Tikant",
+ "DE.Controllers.Main.txtShape_diagStripe": "Diagonal stribe",
+ "DE.Controllers.Main.txtShape_diamond": "Diamant",
+ "DE.Controllers.Main.txtShape_dodecagon": "Tolvkant",
+ "DE.Controllers.Main.txtShape_donut": "Donut",
+ "DE.Controllers.Main.txtShape_doubleWave": "Dobbeltbølge",
+ "DE.Controllers.Main.txtShape_downArrow": "Pil nedad",
+ "DE.Controllers.Main.txtShape_downArrowCallout": "Talebobbel (Pil ned)",
+ "DE.Controllers.Main.txtShape_ellipse": "Ellipse",
+ "DE.Controllers.Main.txtShape_ellipseRibbon": "Buet nedadgående sløjfe",
+ "DE.Controllers.Main.txtShape_ellipseRibbon2": "Buet sløjfe opad",
+ "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowdiagram: Alternativ process",
+ "DE.Controllers.Main.txtShape_flowChartCollate": "Flowdiagram: Kollationer",
+ "DE.Controllers.Main.txtShape_flowChartConnector": "Flowdiagram: Konnektor",
+ "DE.Controllers.Main.txtShape_flowChartDecision": "Flowdiagram: Valg",
+ "DE.Controllers.Main.txtShape_flowChartDelay": "Flowdiagram: Forsink",
+ "DE.Controllers.Main.txtShape_flowChartDisplay": "Flowdiagram: Skærm",
+ "DE.Controllers.Main.txtShape_flowChartDocument": "Flowdiagram: Dokument",
+ "DE.Controllers.Main.txtShape_flowChartExtract": "Flowdiagram: Udtræk",
+ "DE.Controllers.Main.txtShape_flowChartInputOutput": "Flowdiagram: Data",
+ "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowdiagram: Intern opbevaring",
+ "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowdiagram: Magnetisk Disk",
+ "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowdiagram: Direkte adgang opbevaring",
+ "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowdiagram: Opbevaring af sekventiel adgang",
+ "DE.Controllers.Main.txtShape_flowChartManualInput": "Flowdiagram: Manuelt Input",
+ "DE.Controllers.Main.txtShape_flowChartManualOperation": "Flowdiagram: Manuel Operation",
+ "DE.Controllers.Main.txtShape_flowChartMerge": "Flowdiagram: Sammenflet",
+ "DE.Controllers.Main.txtShape_flowChartMultidocument": "Flowdiagram: Multidokument",
+ "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowdiagram: Af-side forbindelse",
+ "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowdiagram: Opbevaret Data",
+ "DE.Controllers.Main.txtShape_flowChartOr": "Flowdiagram: Eller",
+ "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowdiagram: Forudbestemt Process",
+ "DE.Controllers.Main.txtShape_flowChartPreparation": "Flowdiagram: Forberedelse",
+ "DE.Controllers.Main.txtShape_flowChartProcess": "Flowdiagram: Process",
+ "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Flowdiagram: Kort",
+ "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowdiagram: Hullet bånd",
+ "DE.Controllers.Main.txtShape_flowChartSort": "Flowdiagram: Sorter",
+ "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowdiagram: Opsummerende knudepunkt",
+ "DE.Controllers.Main.txtShape_flowChartTerminator": "Flowdiagram: Terminator",
+ "DE.Controllers.Main.txtShape_foldedCorner": "Foldet Hjørne",
+ "DE.Controllers.Main.txtShape_frame": "Ramme",
+ "DE.Controllers.Main.txtShape_halfFrame": "Halv ramme",
+ "DE.Controllers.Main.txtShape_heart": "Hjerte",
+ "DE.Controllers.Main.txtShape_heptagon": "Syvkant",
+ "DE.Controllers.Main.txtShape_hexagon": "Sekskant",
+ "DE.Controllers.Main.txtShape_homePlate": "Femkant",
+ "DE.Controllers.Main.txtShape_horizontalScroll": "Vandret rul",
+ "DE.Controllers.Main.txtShape_irregularSeal1": "Eksplosion 1",
+ "DE.Controllers.Main.txtShape_irregularSeal2": "Eksplosion 2",
+ "DE.Controllers.Main.txtShape_leftArrow": "Venstre pil",
+ "DE.Controllers.Main.txtShape_leftArrowCallout": "Talebobbel (Pil venstre)",
+ "DE.Controllers.Main.txtShape_leftBrace": "Venstre bøjle",
+ "DE.Controllers.Main.txtShape_leftBracket": "Venstre parantes",
+ "DE.Controllers.Main.txtShape_leftRightArrow": "Venstre højre pil",
+ "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Talebobbel (Pil højre/venstre)",
+ "DE.Controllers.Main.txtShape_leftRightUpArrow": "Venstre-højre-op pil",
+ "DE.Controllers.Main.txtShape_leftUpArrow": "Venstre-op pil",
+ "DE.Controllers.Main.txtShape_lightningBolt": "Lyn",
+ "DE.Controllers.Main.txtShape_line": "Linie",
+ "DE.Controllers.Main.txtShape_lineWithArrow": "Pil",
+ "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Dobbeltpil",
+ "DE.Controllers.Main.txtShape_mathDivide": "Opdeling",
+ "DE.Controllers.Main.txtShape_mathEqual": "Lig med",
+ "DE.Controllers.Main.txtShape_mathMinus": "Minus",
+ "DE.Controllers.Main.txtShape_mathMultiply": "Gange",
+ "DE.Controllers.Main.txtShape_mathNotEqual": "Ikke lig",
+ "DE.Controllers.Main.txtShape_mathPlus": "Plus",
+ "DE.Controllers.Main.txtShape_moon": "Måne",
+ "DE.Controllers.Main.txtShape_noSmoking": "\"Nej\" symbol",
+ "DE.Controllers.Main.txtShape_notchedRightArrow": "Hakket højre-pil",
+ "DE.Controllers.Main.txtShape_octagon": "Oktagon",
+ "DE.Controllers.Main.txtShape_parallelogram": "Parallelogram",
+ "DE.Controllers.Main.txtShape_pentagon": "Femkant",
+ "DE.Controllers.Main.txtShape_pie": "Cirkeldiagram",
+ "DE.Controllers.Main.txtShape_plaque": "Skilt",
+ "DE.Controllers.Main.txtShape_plus": "Plus",
+ "DE.Controllers.Main.txtShape_polyline1": "Skrible",
+ "DE.Controllers.Main.txtShape_polyline2": "Fri form",
+ "DE.Controllers.Main.txtShape_quadArrow": "Firedobbelt pil",
+ "DE.Controllers.Main.txtShape_quadArrowCallout": "Talebobbel (Firedobbelt pil)",
+ "DE.Controllers.Main.txtShape_rect": "Rektangel",
+ "DE.Controllers.Main.txtShape_ribbon": "Sløjfe nedad",
+ "DE.Controllers.Main.txtShape_ribbon2": "Op-sløjfe",
+ "DE.Controllers.Main.txtShape_rightArrow": "Højre pil",
+ "DE.Controllers.Main.txtShape_rightArrowCallout": "Talebobbel (Højre pil)",
+ "DE.Controllers.Main.txtShape_rightBrace": "Højre parantes",
+ "DE.Controllers.Main.txtShape_rightBracket": "Højre parantes",
+ "DE.Controllers.Main.txtShape_round1Rect": "Rund et-hjørnet rektangel",
+ "DE.Controllers.Main.txtShape_round2DiagRect": "Rund diagonal hjørne rektangel",
+ "DE.Controllers.Main.txtShape_round2SameRect": "Rund samme-sidet hjørnerektangel",
+ "DE.Controllers.Main.txtShape_roundRect": "Rektangel med rundt hjørne",
+ "DE.Controllers.Main.txtShape_rtTriangle": "Højre trekant",
+ "DE.Controllers.Main.txtShape_smileyFace": "Smiley",
+ "DE.Controllers.Main.txtShape_snip1Rect": "Klip enkelt hjørne rektangel",
+ "DE.Controllers.Main.txtShape_snip2DiagRect": "Klip diagonal hjørne rektangel",
+ "DE.Controllers.Main.txtShape_snip2SameRect": "Klip samme-side hjørnet rektangel",
+ "DE.Controllers.Main.txtShape_snipRoundRect": "Klip og rundt et-hjørnet rektangel",
+ "DE.Controllers.Main.txtShape_spline": "Kurve",
+ "DE.Controllers.Main.txtShape_star10": "10-Point Stjerne",
+ "DE.Controllers.Main.txtShape_star12": "12-Points Stjerne",
+ "DE.Controllers.Main.txtShape_star16": "16-Points Stjerne",
+ "DE.Controllers.Main.txtShape_star24": "24-Points Stjerne",
+ "DE.Controllers.Main.txtShape_star32": "32-Points Stjerne",
+ "DE.Controllers.Main.txtShape_star4": "4-Points Stjerne",
+ "DE.Controllers.Main.txtShape_star5": "5-Points Stjerne",
+ "DE.Controllers.Main.txtShape_star6": "6-Points Stjerne",
+ "DE.Controllers.Main.txtShape_star7": "7-Points Stjerne",
+ "DE.Controllers.Main.txtShape_star8": "8-Points Stjerne",
+ "DE.Controllers.Main.txtShape_stripedRightArrow": "Stribet højre-pil",
+ "DE.Controllers.Main.txtShape_sun": "Sol",
+ "DE.Controllers.Main.txtShape_teardrop": "Dråbe",
+ "DE.Controllers.Main.txtShape_textRect": "Tekstboks",
+ "DE.Controllers.Main.txtShape_trapezoid": "Trapez",
+ "DE.Controllers.Main.txtShape_triangle": "Trekant",
+ "DE.Controllers.Main.txtShape_upArrow": "Op pil",
+ "DE.Controllers.Main.txtShape_upArrowCallout": "Talebobbel (Pil op)",
+ "DE.Controllers.Main.txtShape_upDownArrow": "Op-ned pil",
+ "DE.Controllers.Main.txtShape_uturnArrow": "U-vendings pil",
+ "DE.Controllers.Main.txtShape_verticalScroll": "Lodret rul",
+ "DE.Controllers.Main.txtShape_wave": "Bølge",
+ "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Talebobbel ",
+ "DE.Controllers.Main.txtShape_wedgeRectCallout": "Rektangulær Talebobbel ",
+ "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Afrundet Rektangulær Talebobbel ",
"DE.Controllers.Main.txtStarsRibbons": "Stjerner og bånd",
+ "DE.Controllers.Main.txtStyle_Caption": "Overskrift",
"DE.Controllers.Main.txtStyle_footnote_text": "Fodnote tekst",
"DE.Controllers.Main.txtStyle_Heading_1": "Overskrift 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Overskrift 2",
@@ -425,16 +716,26 @@
"DE.Controllers.Main.txtStyle_Quote": "Citat",
"DE.Controllers.Main.txtStyle_Subtitle": "Undertitel",
"DE.Controllers.Main.txtStyle_Title": "Titel",
+ "DE.Controllers.Main.txtSyntaxError": "Syntax-fejl",
+ "DE.Controllers.Main.txtTableInd": "Tabel-index kan ikke være 0",
"DE.Controllers.Main.txtTableOfContents": "Indholdsfortegnelse",
+ "DE.Controllers.Main.txtTooLarge": "Tallet er for stort til formatering",
+ "DE.Controllers.Main.txtTypeEquation": "Indtast ligning her.",
+ "DE.Controllers.Main.txtUndefBookmark": "Udefineret bogmærke",
"DE.Controllers.Main.txtXAxis": "X akse",
"DE.Controllers.Main.txtYAxis": "Y akse",
+ "DE.Controllers.Main.txtZeroDivide": "Nul division",
"DE.Controllers.Main.unknownErrorText": "Ukendt fejl.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Din browser understøttes ikke",
+ "DE.Controllers.Main.uploadDocExtMessage": "Ukendt dokumentformat.",
+ "DE.Controllers.Main.uploadDocFileCountMessage": "Ingen dokumenter uploadet.",
+ "DE.Controllers.Main.uploadDocSizeMessage": "Maksimal dokumentstørrelse overskredet.",
"DE.Controllers.Main.uploadImageExtMessage": "Ukendt billedeformat.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Ingen billeder uploadet",
"DE.Controllers.Main.uploadImageSizeMessage": "Maksimum billedstørrelse begrænsning",
"DE.Controllers.Main.uploadImageTextText": "Overføre billede...",
"DE.Controllers.Main.uploadImageTitleText": "Overfør billede",
+ "DE.Controllers.Main.waitText": "Vent venligst...",
"DE.Controllers.Main.warnBrowserIE9": "Programmet har dårlig kompatibilitet med Internet Explorer 9. Brug i stedet Internet Explorer 10 eller højere",
"DE.Controllers.Main.warnBrowserZoom": "Din browsers nuværende zoom indstilling er ikke understøttet. Venligst genddan til normal forstørrelse ved at trykke Ctrl+0.",
"DE.Controllers.Main.warnLicenseExceeded": "Antallet af samtidige forbindelser til dokument serveren er oversteget det maksimale antal, og dokumentet vil blive åbnet i visningstilstand. Kontakt venligst din administrator for mere information. ",
@@ -457,6 +758,7 @@
"DE.Controllers.Toolbar.textFontSizeErr": "Den indtastede værdi er ikke korrekt. Venligst indtast en numerisk værdi mellem 1 og 100",
"DE.Controllers.Toolbar.textFraction": "Fraktioner",
"DE.Controllers.Toolbar.textFunction": "Funktioner",
+ "DE.Controllers.Toolbar.textInsert": "indsæt",
"DE.Controllers.Toolbar.textIntegral": "Integraler",
"DE.Controllers.Toolbar.textLargeOperator": "Store operatører ",
"DE.Controllers.Toolbar.textLimitAndLog": "Afgrænsninger og logaritmer",
@@ -786,10 +1088,14 @@
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"DE.Controllers.Viewport.textFitPage": "Tilpas til side",
"DE.Controllers.Viewport.textFitWidth": "Tilpas til bredde",
+ "DE.Views.AddNewCaptionLabelDialog.textLabel": "Etiket:",
+ "DE.Views.AddNewCaptionLabelDialog.textLabelError": "Etiket kan ikke være tom.",
"DE.Views.BookmarksDialog.textAdd": "Tilføj",
"DE.Views.BookmarksDialog.textBookmarkName": "Bogmærke navn",
"DE.Views.BookmarksDialog.textClose": "Luk",
+ "DE.Views.BookmarksDialog.textCopy": "Kopier",
"DE.Views.BookmarksDialog.textDelete": "Slet",
+ "DE.Views.BookmarksDialog.textGetLink": "Få link",
"DE.Views.BookmarksDialog.textGoto": "Gå til",
"DE.Views.BookmarksDialog.textHidden": "Skjulte bogmærker",
"DE.Views.BookmarksDialog.textLocation": "Lokation",
@@ -797,6 +1103,39 @@
"DE.Views.BookmarksDialog.textSort": "Arrangér efter",
"DE.Views.BookmarksDialog.textTitle": "Bogmærker",
"DE.Views.BookmarksDialog.txtInvalidName": "Bogmærke navn må kun indeholde bogstaver, tal eller understregninger, og skal begynde med et bogstav",
+ "DE.Views.CaptionDialog.textAdd": "Tilføj etiket",
+ "DE.Views.CaptionDialog.textAfter": "efter",
+ "DE.Views.CaptionDialog.textBefore": "Før",
+ "DE.Views.CaptionDialog.textCaption": "Overskrift",
+ "DE.Views.CaptionDialog.textChapter": "Kapitler starter med stil",
+ "DE.Views.CaptionDialog.textChapterInc": "Inkluder kapitelnummer",
+ "DE.Views.CaptionDialog.textColon": "Kolon",
+ "DE.Views.CaptionDialog.textDash": "bindestreg",
+ "DE.Views.CaptionDialog.textDelete": "Slet etiket",
+ "DE.Views.CaptionDialog.textEquation": "Formel",
+ "DE.Views.CaptionDialog.textExamples": "Eksempler: Tabel 2-A, billede 1.IV",
+ "DE.Views.CaptionDialog.textExclude": "Udeluk etiket fra overskrift",
+ "DE.Views.CaptionDialog.textFigure": "Figur",
+ "DE.Views.CaptionDialog.textHyphen": "bindestreg",
+ "DE.Views.CaptionDialog.textInsert": "indsæt",
+ "DE.Views.CaptionDialog.textLabel": "Etiket",
+ "DE.Views.CaptionDialog.textLongDash": "Lang bindestreg",
+ "DE.Views.CaptionDialog.textNumbering": "Nummerering",
+ "DE.Views.CaptionDialog.textPeriod": "Periode",
+ "DE.Views.CaptionDialog.textSeparator": "Brug adskiller",
+ "DE.Views.CaptionDialog.textTable": "Tabel",
+ "DE.Views.CaptionDialog.textTitle": "Indsæt billedtekst",
+ "DE.Views.CellsAddDialog.textCol": "Kolonner",
+ "DE.Views.CellsAddDialog.textDown": "Under markøren",
+ "DE.Views.CellsAddDialog.textLeft": "Til venstre",
+ "DE.Views.CellsAddDialog.textRight": "Til højre",
+ "DE.Views.CellsAddDialog.textRow": "Rækker",
+ "DE.Views.CellsAddDialog.textTitle": "Indsæt flere",
+ "DE.Views.CellsAddDialog.textUp": "Over markøren",
+ "DE.Views.CellsRemoveDialog.textCol": "Slet hele kolonnen",
+ "DE.Views.CellsRemoveDialog.textLeft": "Ryk celler til venstre",
+ "DE.Views.CellsRemoveDialog.textRow": "Slet hele rækken",
+ "DE.Views.CellsRemoveDialog.textTitle": "Slet celler",
"DE.Views.ChartSettings.textAdvanced": "Vis avancerede indstillinger",
"DE.Views.ChartSettings.textChartType": "Skift diagramtype",
"DE.Views.ChartSettings.textEditData": "Rediger data",
@@ -815,23 +1154,51 @@
"DE.Views.ChartSettings.txtTight": "Stram",
"DE.Views.ChartSettings.txtTitle": "Diagram",
"DE.Views.ChartSettings.txtTopAndBottom": "Top og bund",
+ "DE.Views.CompareSettingsDialog.textChar": "Tegn-niveau",
+ "DE.Views.CompareSettingsDialog.textShow": "Vis ændringer på",
+ "DE.Views.CompareSettingsDialog.textTitle": "Sammenligningsindstillinger",
+ "DE.Views.CompareSettingsDialog.textWord": "Ord niveau",
+ "DE.Views.ControlSettingsDialog.strGeneral": "Generel",
+ "DE.Views.ControlSettingsDialog.textAdd": "Tilføj",
"DE.Views.ControlSettingsDialog.textAppearance": "Udseende",
"DE.Views.ControlSettingsDialog.textApplyAll": "Anvend på alle",
"DE.Views.ControlSettingsDialog.textBox": "Afgrænsningsboks",
+ "DE.Views.ControlSettingsDialog.textChange": "Rediger",
+ "DE.Views.ControlSettingsDialog.textCheckbox": "Afkrydsningsfelt",
+ "DE.Views.ControlSettingsDialog.textChecked": "Flueben",
"DE.Views.ControlSettingsDialog.textColor": "Farve",
+ "DE.Views.ControlSettingsDialog.textCombobox": "Kombinationskasse",
+ "DE.Views.ControlSettingsDialog.textDate": "Datoformat",
+ "DE.Views.ControlSettingsDialog.textDelete": "Slet",
+ "DE.Views.ControlSettingsDialog.textDisplayName": "Visningsnavn",
+ "DE.Views.ControlSettingsDialog.textDown": "Ned",
+ "DE.Views.ControlSettingsDialog.textDropDown": "Rulleliste",
+ "DE.Views.ControlSettingsDialog.textFormat": "Vis datoen således",
+ "DE.Views.ControlSettingsDialog.textLang": "Sprog",
"DE.Views.ControlSettingsDialog.textLock": "Låsning",
"DE.Views.ControlSettingsDialog.textName": "Titel",
- "DE.Views.ControlSettingsDialog.textNewColor": "Tilføj ny brugerdefineret farve",
"DE.Views.ControlSettingsDialog.textNone": "Ingen",
+ "DE.Views.ControlSettingsDialog.textPlaceholder": "Pladsholder",
"DE.Views.ControlSettingsDialog.textShowAs": "Vis som",
+ "DE.Views.ControlSettingsDialog.textSystemColor": "System",
"DE.Views.ControlSettingsDialog.textTag": "Mærke",
"DE.Views.ControlSettingsDialog.textTitle": "Indholdskontrol indstillinger",
+ "DE.Views.ControlSettingsDialog.textUnchecked": "Ikke-afkrydset",
+ "DE.Views.ControlSettingsDialog.textUp": "Op",
+ "DE.Views.ControlSettingsDialog.textValue": "Værdi",
+ "DE.Views.ControlSettingsDialog.tipChange": "Skift symbol",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Indholdskontrol kan ikke slettes",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Indhold kan ikke redigeres",
"DE.Views.CustomColumnsDialog.textColumns": "Antal kolonner",
"DE.Views.CustomColumnsDialog.textSeparator": "Kolonnedeler",
"DE.Views.CustomColumnsDialog.textSpacing": "Afstand mellem kolonner",
"DE.Views.CustomColumnsDialog.textTitle": "Kolonner",
+ "DE.Views.DateTimeDialog.confirmDefault": "Indstil standardformat for {0}: \"{1}\"",
+ "DE.Views.DateTimeDialog.textDefault": "Indstil som standard",
+ "DE.Views.DateTimeDialog.textFormat": "Formater",
+ "DE.Views.DateTimeDialog.textLang": "Sprog",
+ "DE.Views.DateTimeDialog.textUpdate": "Opdater automatisk",
+ "DE.Views.DateTimeDialog.txtTitle": "Dato og tid",
"DE.Views.DocumentHolder.aboveText": "Over",
"DE.Views.DocumentHolder.addCommentText": "Tilføj kommentar",
"DE.Views.DocumentHolder.advancedFrameText": "Ramme avancerede indstillinger",
@@ -905,14 +1272,21 @@
"DE.Views.DocumentHolder.textArrangeBackward": "Ryk tilbage",
"DE.Views.DocumentHolder.textArrangeForward": "Ryk frem",
"DE.Views.DocumentHolder.textArrangeFront": "Før til forgrunden",
+ "DE.Views.DocumentHolder.textCells": "Celler",
"DE.Views.DocumentHolder.textContentControls": "Indholdskontrol",
"DE.Views.DocumentHolder.textContinueNumbering": "Fortsæt nummering",
"DE.Views.DocumentHolder.textCopy": "Kopier",
+ "DE.Views.DocumentHolder.textCrop": "Beskær",
+ "DE.Views.DocumentHolder.textCropFill": "Fyld",
+ "DE.Views.DocumentHolder.textCropFit": "Tilpas",
"DE.Views.DocumentHolder.textCut": "Klip",
"DE.Views.DocumentHolder.textDistributeCols": "Fordel kolonner",
"DE.Views.DocumentHolder.textDistributeRows": "Fordel rækker",
"DE.Views.DocumentHolder.textEditControls": "Indholdskontrol indstillinger",
"DE.Views.DocumentHolder.textEditWrapBoundary": "Rediger ombrydningsgrænse",
+ "DE.Views.DocumentHolder.textFlipH": "Vend vandret",
+ "DE.Views.DocumentHolder.textFlipV": "Vend lodret",
+ "DE.Views.DocumentHolder.textFollow": "Følg bevægelse",
"DE.Views.DocumentHolder.textFromFile": "Fra fil",
"DE.Views.DocumentHolder.textFromUrl": "Fra URL",
"DE.Views.DocumentHolder.textJoinList": "Sammensæt med tidligere liste",
@@ -925,9 +1299,13 @@
"DE.Views.DocumentHolder.textRemove": "Fjern",
"DE.Views.DocumentHolder.textRemoveControl": "Fjern indholdskontrol",
"DE.Views.DocumentHolder.textReplace": "Erstat billede",
+ "DE.Views.DocumentHolder.textRotate": "Roter",
+ "DE.Views.DocumentHolder.textRotate270": "Roter 90° mod uret",
+ "DE.Views.DocumentHolder.textRotate90": "Roter 90° med uret",
"DE.Views.DocumentHolder.textSeparateList": "Separat liste",
"DE.Views.DocumentHolder.textSettings": "Indstillinger",
- "DE.Views.DocumentHolder.textShapeAlignBottom": "Tilpas knap",
+ "DE.Views.DocumentHolder.textSeveral": "Flere rækker/kolonner",
+ "DE.Views.DocumentHolder.textShapeAlignBottom": "Tilpas bund",
"DE.Views.DocumentHolder.textShapeAlignCenter": "Tilpas til midten",
"DE.Views.DocumentHolder.textShapeAlignLeft": "Tilpas til venstre",
"DE.Views.DocumentHolder.textShapeAlignMiddle": "Tilpas til midten",
@@ -943,6 +1321,7 @@
"DE.Views.DocumentHolder.textUpdateTOC": "Genindlæs indholdsfortegnelse",
"DE.Views.DocumentHolder.textWrap": "Ombrydningsstil",
"DE.Views.DocumentHolder.tipIsLocked": "Elementet bliver redigeret af en anden bruger.",
+ "DE.Views.DocumentHolder.toDictionaryText": "Tilføj til Ordbog",
"DE.Views.DocumentHolder.txtAddBottom": "Tilføj nederste ramme ",
"DE.Views.DocumentHolder.txtAddFractionBar": "Tilføj fraktionsbar",
"DE.Views.DocumentHolder.txtAddHor": "Tilføj horisontal linie",
@@ -952,7 +1331,7 @@
"DE.Views.DocumentHolder.txtAddRight": "Tilføj højre ramme",
"DE.Views.DocumentHolder.txtAddTop": "Tilføj øverste ramme",
"DE.Views.DocumentHolder.txtAddVer": "Tilføj lodret linie",
- "DE.Views.DocumentHolder.txtAlignToChar": "Tilpas til karakterer ",
+ "DE.Views.DocumentHolder.txtAlignToChar": "Tilpas til tegn",
"DE.Views.DocumentHolder.txtBehind": "Bagved",
"DE.Views.DocumentHolder.txtBorderProps": "Ramme indstillinger",
"DE.Views.DocumentHolder.txtBottom": "Bund",
@@ -965,6 +1344,9 @@
"DE.Views.DocumentHolder.txtDeleteEq": "Slet ligning",
"DE.Views.DocumentHolder.txtDeleteGroupChar": "Slet tegn",
"DE.Views.DocumentHolder.txtDeleteRadical": "slet radikal",
+ "DE.Views.DocumentHolder.txtDistribHor": "Fordel vandret",
+ "DE.Views.DocumentHolder.txtDistribVert": "Fordel lodret",
+ "DE.Views.DocumentHolder.txtEmpty": "(Tom)",
"DE.Views.DocumentHolder.txtFractionLinear": "Skift til linær fraktion",
"DE.Views.DocumentHolder.txtFractionSkewed": "Skift til skæv fraktion",
"DE.Views.DocumentHolder.txtFractionStacked": "Skift til stablet fraktion",
@@ -991,6 +1373,7 @@
"DE.Views.DocumentHolder.txtInsertArgAfter": "Indsæt argument efter",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Indsæt argument før",
"DE.Views.DocumentHolder.txtInsertBreak": "Indsæt manuelt skift",
+ "DE.Views.DocumentHolder.txtInsertCaption": "Indsæt billedtekst",
"DE.Views.DocumentHolder.txtInsertEqAfter": "Indsæt ligning efter",
"DE.Views.DocumentHolder.txtInsertEqBefore": "Indsæt ligning før",
"DE.Views.DocumentHolder.txtKeepTextOnly": "Behold kun teksten",
@@ -1003,6 +1386,7 @@
"DE.Views.DocumentHolder.txtOverwriteCells": "Overskriv celler",
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Behold oprindelig formattering",
"DE.Views.DocumentHolder.txtPressLink": "Tryk CTRL og klik på linket",
+ "DE.Views.DocumentHolder.txtPrintSelection": "Printer-valg",
"DE.Views.DocumentHolder.txtRemFractionBar": "Fjern fraktionsbar",
"DE.Views.DocumentHolder.txtRemLimit": "Slet begrænsning",
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Fjern accent tegn",
@@ -1054,7 +1438,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Venstre",
"DE.Views.DropcapSettingsAdvanced.textMargin": "margen",
"DE.Views.DropcapSettingsAdvanced.textMove": "Flyt med tekst",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Tilføj ny brugerdefineret farve",
"DE.Views.DropcapSettingsAdvanced.textNone": "Ingen",
"DE.Views.DropcapSettingsAdvanced.textPage": "Side",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Afsnit",
@@ -1070,6 +1453,10 @@
"DE.Views.DropcapSettingsAdvanced.textWidth": "Bredde",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Skrifttype",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Ingen rammer",
+ "DE.Views.EditListItemDialog.textDisplayName": "Visningsnavn",
+ "DE.Views.EditListItemDialog.textNameError": "Visningsnavn må ikke være tom",
+ "DE.Views.EditListItemDialog.textValue": "Værdi",
+ "DE.Views.EditListItemDialog.textValueError": "En genstand med samme værdi findes allerede.",
"DE.Views.FileMenu.btnBackCaption": "Gå til dokumenter",
"DE.Views.FileMenu.btnCloseMenuCaption": "Luk menu",
"DE.Views.FileMenu.btnCreateNewCaption": "Opret ny",
@@ -1085,6 +1472,7 @@
"DE.Views.FileMenu.btnRightsCaption": "Adgangsrettigheder...",
"DE.Views.FileMenu.btnSaveAsCaption": "Gem som",
"DE.Views.FileMenu.btnSaveCaption": "Gem",
+ "DE.Views.FileMenu.btnSaveCopyAsCaption": "Gem kopi som...",
"DE.Views.FileMenu.btnSettingsCaption": "Avancerede indstillinger...",
"DE.Views.FileMenu.btnToEditCaption": "Rediger dokument",
"DE.Views.FileMenu.textDownload": "Hent",
@@ -1093,17 +1481,28 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Lav et nyt blankt tekst dokument, som di vil være i stand til at kunne formattere efter det er oprettet under redigeringen. Eller vælg en af skabelonerne til at oprette et dokument af en bestemt type som allerede har en bestemt formattering tilføjet. ",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nyt tekst dokument",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Der er ikke nogle skabeloner",
+ "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Anvend",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tilføj forfatter",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tilføj tekst",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikation",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Forfatter",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Skift adgangsrettigheder",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Kommentar",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Oprettet",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Indlæser...",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Sidst redigeret af",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Sidst redigeret",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Ejer",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Sider",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Afsnit",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokation",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personer der har rettigheder",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboler med mellemrum",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistikker",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Emne",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboler",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Dokument titel",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Overført",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Ord",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Skift adgangsrettigheder",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personer der har rettigheder",
@@ -1143,10 +1542,13 @@
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Tilpasningsguide",
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatisk gendannelse",
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Gem automatisk",
+ "DE.Views.FileMenuPanels.Settings.textCompatible": "Kompabilitet",
"DE.Views.FileMenuPanels.Settings.textDisabled": "deaktiveret",
"DE.Views.FileMenuPanels.Settings.textForceSave": "Gem til server",
"DE.Views.FileMenuPanels.Settings.textMinute": "Hvert minut",
+ "DE.Views.FileMenuPanels.Settings.textOldVersions": "Lav filerne kompatible med ældre MS Word-versionen, når de gemmes som DOCX",
"DE.Views.FileMenuPanels.Settings.txtAll": "Se alle",
+ "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Standard cache tilstand",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Tilpas til side",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Tilpas til bredde",
@@ -1193,14 +1595,24 @@
"DE.Views.HyperlinkSettingsDialog.txtHeadings": "Overskrifter",
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Feltet skal være en URL i \"http://www.example.com\" formatet",
"DE.Views.ImageSettings.textAdvanced": "Vis avancerede indstillinger",
+ "DE.Views.ImageSettings.textCrop": "Beskær",
+ "DE.Views.ImageSettings.textCropFill": "Fyld",
+ "DE.Views.ImageSettings.textCropFit": "Tilpas",
"DE.Views.ImageSettings.textEdit": "Rediger",
"DE.Views.ImageSettings.textEditObject": "Rediger objekt",
"DE.Views.ImageSettings.textFitMargins": "Tilpas til margen",
+ "DE.Views.ImageSettings.textFlip": "Vend",
"DE.Views.ImageSettings.textFromFile": "Fra fil",
"DE.Views.ImageSettings.textFromUrl": "Fra URL",
"DE.Views.ImageSettings.textHeight": "Højde",
+ "DE.Views.ImageSettings.textHint270": "Roter 90° mod uret",
+ "DE.Views.ImageSettings.textHint90": "Roter 90° med uret",
+ "DE.Views.ImageSettings.textHintFlipH": "Vend vandret",
+ "DE.Views.ImageSettings.textHintFlipV": "Vend lodret",
"DE.Views.ImageSettings.textInsert": "Erstat billede",
"DE.Views.ImageSettings.textOriginalSize": "Standard størrelse",
+ "DE.Views.ImageSettings.textRotate90": "Roter 90°",
+ "DE.Views.ImageSettings.textRotation": "Rotation",
"DE.Views.ImageSettings.textSize": "Størrelse",
"DE.Views.ImageSettings.textWidth": "Bredde",
"DE.Views.ImageSettings.textWrap": "Ombrydningsstil",
@@ -1218,8 +1630,10 @@
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Beskrivelse",
"DE.Views.ImageSettingsAdvanced.textAltTip": "Den alternative tekstbaserede repræsentation af det visuelle objekt, som vil blive læst til folk med syns- eller læringsudfordringer for at hjælpe dem til at forstå den information der kan findes i et billede, autoshape, diagram eller tabel",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Titel",
+ "DE.Views.ImageSettingsAdvanced.textAngle": "Vinkel",
"DE.Views.ImageSettingsAdvanced.textArrows": "Pile",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lås billedformat",
+ "DE.Views.ImageSettingsAdvanced.textAutofit": "AutoTilpas",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Begynd størrelse",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begynd stil",
"DE.Views.ImageSettingsAdvanced.textBelow": "Under",
@@ -1235,8 +1649,10 @@
"DE.Views.ImageSettingsAdvanced.textEndSize": "Afslutning størrelse",
"DE.Views.ImageSettingsAdvanced.textEndStyle": "Afslutning formattering",
"DE.Views.ImageSettingsAdvanced.textFlat": "Flad",
+ "DE.Views.ImageSettingsAdvanced.textFlipped": "Vendt",
"DE.Views.ImageSettingsAdvanced.textHeight": "Højde",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Vandret",
+ "DE.Views.ImageSettingsAdvanced.textHorizontally": "Vandret",
"DE.Views.ImageSettingsAdvanced.textJoinType": "Join Type",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Konstante proportioner",
"DE.Views.ImageSettingsAdvanced.textLeft": "Venstre",
@@ -1255,19 +1671,23 @@
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Relativ position",
"DE.Views.ImageSettingsAdvanced.textRelative": "Relativt til",
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relativt",
+ "DE.Views.ImageSettingsAdvanced.textResizeFit": "Ændr størrelse på form for at tilpasse tekst",
"DE.Views.ImageSettingsAdvanced.textRight": "Højre",
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Højre margen",
"DE.Views.ImageSettingsAdvanced.textRightOf": "Til højre for",
+ "DE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"DE.Views.ImageSettingsAdvanced.textRound": "Rund",
"DE.Views.ImageSettingsAdvanced.textShape": "Form indstillinger",
"DE.Views.ImageSettingsAdvanced.textSize": "Størrelse",
"DE.Views.ImageSettingsAdvanced.textSquare": "Firkant",
+ "DE.Views.ImageSettingsAdvanced.textTextBox": "Tekstboks",
"DE.Views.ImageSettingsAdvanced.textTitle": "Billede - avancerede indstillinger",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Diagram - avancerede indstillinger",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Form - avancerede indstillinger",
"DE.Views.ImageSettingsAdvanced.textTop": "Top",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Top margen",
"DE.Views.ImageSettingsAdvanced.textVertical": "Lodret",
+ "DE.Views.ImageSettingsAdvanced.textVertically": "Lodret",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Vægte og pile",
"DE.Views.ImageSettingsAdvanced.textWidth": "Bredde",
"DE.Views.ImageSettingsAdvanced.textWrap": "Ombrydningsstil",
@@ -1289,6 +1709,7 @@
"DE.Views.LeftMenu.txtDeveloper": "Udviklingstilstand",
"DE.Views.LeftMenu.txtTrial": "Prøvetilstand",
"DE.Views.Links.capBtnBookmarks": "Bogmærke",
+ "DE.Views.Links.capBtnCaption": "Overskrift",
"DE.Views.Links.capBtnContentsUpdate": "Genindlæs",
"DE.Views.Links.capBtnInsContents": "Indholdsfortegnelse",
"DE.Views.Links.capBtnInsFootnote": "Fodnote",
@@ -1303,10 +1724,28 @@
"DE.Views.Links.textUpdateAll": "Genindlæs hele tabellen",
"DE.Views.Links.textUpdatePages": "Genindlæs kun sidetal",
"DE.Views.Links.tipBookmarks": "Lav et bogmærke",
+ "DE.Views.Links.tipCaption": "Indsæt billedtekst",
"DE.Views.Links.tipContents": "Indsæt indholdsfortegnelse",
"DE.Views.Links.tipContentsUpdate": "Genindlæs indholdsfortegnelse",
"DE.Views.Links.tipInsertHyperlink": "Tilføj Hyperlink",
"DE.Views.Links.tipNotes": "Indsæt eller rediger fodnote",
+ "DE.Views.ListSettingsDialog.textAuto": "Automatisk",
+ "DE.Views.ListSettingsDialog.textCenter": "Centrum",
+ "DE.Views.ListSettingsDialog.textLeft": "Venstre",
+ "DE.Views.ListSettingsDialog.textLevel": "Niveau",
+ "DE.Views.ListSettingsDialog.textPreview": "Forhåndvisning",
+ "DE.Views.ListSettingsDialog.textRight": "Højre",
+ "DE.Views.ListSettingsDialog.txtAlign": "Tilpasning",
+ "DE.Views.ListSettingsDialog.txtBullet": "Kugle",
+ "DE.Views.ListSettingsDialog.txtColor": "Farve",
+ "DE.Views.ListSettingsDialog.txtFont": "Skrifttype og symbol",
+ "DE.Views.ListSettingsDialog.txtLikeText": "Som en tekst",
+ "DE.Views.ListSettingsDialog.txtNewBullet": "Nyt punkt",
+ "DE.Views.ListSettingsDialog.txtNone": "ingen",
+ "DE.Views.ListSettingsDialog.txtSize": "Størrelse",
+ "DE.Views.ListSettingsDialog.txtSymbol": "Symbol",
+ "DE.Views.ListSettingsDialog.txtTitle": "Liste-indstillinger",
+ "DE.Views.ListSettingsDialog.txtType": "Type",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema",
@@ -1385,7 +1824,18 @@
"DE.Views.NoteSettingsDialog.textTitle": "Noteindstillinger",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Advarsel",
"DE.Views.PageMarginsDialog.textBottom": "Bund",
+ "DE.Views.PageMarginsDialog.textGutter": "Rende",
+ "DE.Views.PageMarginsDialog.textGutterPosition": "Rende position",
+ "DE.Views.PageMarginsDialog.textInside": "Indeni",
+ "DE.Views.PageMarginsDialog.textLandscape": "Landskab",
"DE.Views.PageMarginsDialog.textLeft": "Venstre",
+ "DE.Views.PageMarginsDialog.textMirrorMargins": "Spejlmargener",
+ "DE.Views.PageMarginsDialog.textMultiplePages": "Flere sider",
+ "DE.Views.PageMarginsDialog.textNormal": "Normal",
+ "DE.Views.PageMarginsDialog.textOrientation": "Orientering",
+ "DE.Views.PageMarginsDialog.textOutside": "Udenfor",
+ "DE.Views.PageMarginsDialog.textPortrait": "Portræt",
+ "DE.Views.PageMarginsDialog.textPreview": "Forhåndvisning",
"DE.Views.PageMarginsDialog.textRight": "Højre",
"DE.Views.PageMarginsDialog.textTitle": "Margener",
"DE.Views.PageMarginsDialog.textTop": "Top",
@@ -1407,39 +1857,55 @@
"DE.Views.ParagraphSettings.textAuto": "Flere",
"DE.Views.ParagraphSettings.textBackColor": "Baggrundsfarve",
"DE.Views.ParagraphSettings.textExact": "Præcis",
- "DE.Views.ParagraphSettings.textNewColor": "Tilføj ny brugerdefineret farve",
"DE.Views.ParagraphSettings.txtAutoText": "Automatisk",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "De specificerende faner vil blive vist i dette felt. ",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps",
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Rammer og fyld",
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Sideskift før",
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dobbelt gennemstregning",
+ "DE.Views.ParagraphSettingsAdvanced.strIndent": "Led",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Venstre",
+ "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Linje afstand",
+ "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Omrids niveau",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Højre",
+ "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "efter",
+ "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Før",
+ "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speciel",
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Hold linierne sammen",
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Behold med næste",
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Fyld",
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Horeunge kontrol",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Skrifttype",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indrykninger og placeringer",
+ "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Linje & side mellemrum",
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Placering",
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps",
+ "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Tilføj ikke intervaller imellem afsnit af samme type",
+ "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Afstand",
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough",
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript",
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript",
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Faner",
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Tilpasning",
+ "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Mindst",
+ "DE.Views.ParagraphSettingsAdvanced.textAuto": "Flere",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Baggrundsfarve",
+ "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basal Tekst",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Rammefarve",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klik på diagrammet eller brug knapperne til at vælge rammer og anvend den valgte formatering på dem",
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Rammestørrelse",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Bund",
+ "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centreret",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Karakter afstand",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standard fane",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effekter",
+ "DE.Views.ParagraphSettingsAdvanced.textExact": "Præcis",
+ "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Første linie",
+ "DE.Views.ParagraphSettingsAdvanced.textHanging": "Hængende",
+ "DE.Views.ParagraphSettingsAdvanced.textJustified": "berettiget",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leder",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Venstre",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Tilføj ny brugerdefineret farve",
+ "DE.Views.ParagraphSettingsAdvanced.textLevel": "Niveau",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ingen",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ingen)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
@@ -1462,6 +1928,7 @@
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Vælg kun ydre rammer",
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Vælg kun højre ramme",
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Vælg kun øverste ramme",
+ "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "automatisk",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ingen rammer",
"DE.Views.RightMenu.txtChartSettings": "Diagram indstillinger",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Sidehoved- og sidefodsinstillinger",
@@ -1478,6 +1945,7 @@
"DE.Views.ShapeSettings.strFill": "Fyld",
"DE.Views.ShapeSettings.strForeground": "Forgrundsfarve",
"DE.Views.ShapeSettings.strPattern": "Mønster",
+ "DE.Views.ShapeSettings.strShadow": "Vis skygge",
"DE.Views.ShapeSettings.strSize": "Størrelse",
"DE.Views.ShapeSettings.strStroke": "Strøg",
"DE.Views.ShapeSettings.strTransparency": "Gennemsigtighed",
@@ -1487,16 +1955,22 @@
"DE.Views.ShapeSettings.textColor": "Farvefyld",
"DE.Views.ShapeSettings.textDirection": "Retning",
"DE.Views.ShapeSettings.textEmptyPattern": "Intet mynster",
+ "DE.Views.ShapeSettings.textFlip": "Vend",
"DE.Views.ShapeSettings.textFromFile": "Fra fil",
"DE.Views.ShapeSettings.textFromUrl": "Fra URL",
"DE.Views.ShapeSettings.textGradient": "Gradient",
"DE.Views.ShapeSettings.textGradientFill": "Gradient udfyldning",
+ "DE.Views.ShapeSettings.textHint270": "Roter 90° mod uret",
+ "DE.Views.ShapeSettings.textHint90": "Roter 90° med uret",
+ "DE.Views.ShapeSettings.textHintFlipH": "Vend vandret",
+ "DE.Views.ShapeSettings.textHintFlipV": "Vend lodret",
"DE.Views.ShapeSettings.textImageTexture": "Billede eller struktur",
"DE.Views.ShapeSettings.textLinear": "Linær",
- "DE.Views.ShapeSettings.textNewColor": "Tilføj ny brugerdefineret farve",
"DE.Views.ShapeSettings.textNoFill": "Intet fyld",
"DE.Views.ShapeSettings.textPatternFill": "Mønster",
"DE.Views.ShapeSettings.textRadial": "Radial",
+ "DE.Views.ShapeSettings.textRotate90": "Roter 90°",
+ "DE.Views.ShapeSettings.textRotation": "Rotation",
"DE.Views.ShapeSettings.textSelectTexture": "Vælg",
"DE.Views.ShapeSettings.textStretch": "Stræk",
"DE.Views.ShapeSettings.textStyle": "Stilart",
@@ -1551,6 +2025,12 @@
"DE.Views.StyleTitleDialog.textTitle": "Titel",
"DE.Views.StyleTitleDialog.txtEmpty": "Dette felt er nødvendigt",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Felt må ikke være tomt",
+ "DE.Views.StyleTitleDialog.txtSameAs": "Samme som nyskabt tema",
+ "DE.Views.TableFormulaDialog.textBookmark": "Indsæt bogmærke",
+ "DE.Views.TableFormulaDialog.textFormat": "Tal format",
+ "DE.Views.TableFormulaDialog.textFormula": "Formular",
+ "DE.Views.TableFormulaDialog.textInsertFunction": "Indsæt funktion",
+ "DE.Views.TableFormulaDialog.textTitle": "Formular indstillinger",
"DE.Views.TableOfContentsSettings.strAlign": "Højre juster sidetal",
"DE.Views.TableOfContentsSettings.strLinks": "Formatter indholdsfortegnelse",
"DE.Views.TableOfContentsSettings.strShowPages": "Vis sidetal",
@@ -1567,6 +2047,7 @@
"DE.Views.TableOfContentsSettings.txtClassic": "Klassisk",
"DE.Views.TableOfContentsSettings.txtCurrent": "Nuværende",
"DE.Views.TableOfContentsSettings.txtModern": "Moderne",
+ "DE.Views.TableOfContentsSettings.txtOnline": "Online",
"DE.Views.TableOfContentsSettings.txtSimple": "Simpel",
"DE.Views.TableOfContentsSettings.txtStandard": "Standard",
"DE.Views.TableSettings.deleteColumnText": "Slet kolonne",
@@ -1584,6 +2065,7 @@
"DE.Views.TableSettings.splitCellsText": "Split celle...",
"DE.Views.TableSettings.splitCellTitleText": "Split celle",
"DE.Views.TableSettings.strRepeatRow": "Gentag som række i sidehovedet øverst på hver side",
+ "DE.Views.TableSettings.textAddFormula": "Tilføj formel",
"DE.Views.TableSettings.textAdvanced": "Vis avancerede indstillinger",
"DE.Views.TableSettings.textBackColor": "Baggrundsfarve",
"DE.Views.TableSettings.textBanded": "Sammensluttet",
@@ -1599,7 +2081,6 @@
"DE.Views.TableSettings.textHeader": "Sidehoved",
"DE.Views.TableSettings.textHeight": "Højde",
"DE.Views.TableSettings.textLast": "sidste",
- "DE.Views.TableSettings.textNewColor": "Tilføj ny brugerdefineret farve",
"DE.Views.TableSettings.textRows": "Rækker",
"DE.Views.TableSettings.textSelectBorders": "Vælg rammer som du vil ændre til stilarten valgt ovenover",
"DE.Views.TableSettings.textTemplate": "Vælg fra skabelon",
@@ -1616,6 +2097,14 @@
"DE.Views.TableSettings.tipRight": "Vælg kun højre ramme",
"DE.Views.TableSettings.tipTop": "Vælg kun ydre øverste ramme",
"DE.Views.TableSettings.txtNoBorders": "Ingen rammer",
+ "DE.Views.TableSettings.txtTable_Accent": "Accent",
+ "DE.Views.TableSettings.txtTable_Colorful": "Farverig",
+ "DE.Views.TableSettings.txtTable_Dark": "Mørk",
+ "DE.Views.TableSettings.txtTable_GridTable": "Gitter tabel",
+ "DE.Views.TableSettings.txtTable_Light": "Lys",
+ "DE.Views.TableSettings.txtTable_ListTable": "Liste tabel",
+ "DE.Views.TableSettings.txtTable_PlainTable": "Almindelig tabel",
+ "DE.Views.TableSettings.txtTable_TableGrid": "Tabel-gitter",
"DE.Views.TableSettingsAdvanced.textAlign": "Tilpasning",
"DE.Views.TableSettingsAdvanced.textAlignment": "Tilpasning",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Afstand mellem celler",
@@ -1648,7 +2137,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Cellemargener",
"DE.Views.TableSettingsAdvanced.textMeasure": "Mål i",
"DE.Views.TableSettingsAdvanced.textMove": "Flyt okbjekt med tekst",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Tilføj ny brugerdefineret farve",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Kun for valgte celler",
"DE.Views.TableSettingsAdvanced.textOptions": "Indstillinger",
"DE.Views.TableSettingsAdvanced.textOverlap": "Tillad overlapning",
@@ -1701,7 +2189,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Gradient udfyldning",
"DE.Views.TextArtSettings.textLinear": "Linær",
- "DE.Views.TextArtSettings.textNewColor": "Tilføj ny brugerdefineret farve",
"DE.Views.TextArtSettings.textNoFill": "Intet fyld",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Vælg",
@@ -1709,8 +2196,11 @@
"DE.Views.TextArtSettings.textTemplate": "Skabelon",
"DE.Views.TextArtSettings.textTransform": "Transformer",
"DE.Views.TextArtSettings.txtNoBorders": "Ingen linie",
+ "DE.Views.Toolbar.capBtnAddComment": "Tilføj kommentar",
+ "DE.Views.Toolbar.capBtnBlankPage": "Blank side",
"DE.Views.Toolbar.capBtnColumns": "Kolonner",
"DE.Views.Toolbar.capBtnComment": "Kommenter",
+ "DE.Views.Toolbar.capBtnDateTime": "Dato og tid",
"DE.Views.Toolbar.capBtnInsChart": "Diagram",
"DE.Views.Toolbar.capBtnInsControls": "Indholdsindstillinger",
"DE.Views.Toolbar.capBtnInsDropcap": "Drop cap",
@@ -1719,38 +2209,48 @@
"DE.Views.Toolbar.capBtnInsImage": "Billede",
"DE.Views.Toolbar.capBtnInsPagebreak": "Brud",
"DE.Views.Toolbar.capBtnInsShape": "Form",
+ "DE.Views.Toolbar.capBtnInsSymbol": "Symbol",
"DE.Views.Toolbar.capBtnInsTable": "Tabel",
"DE.Views.Toolbar.capBtnInsTextart": "Tekst art",
"DE.Views.Toolbar.capBtnInsTextbox": "Tekstboks",
"DE.Views.Toolbar.capBtnMargins": "Margener",
"DE.Views.Toolbar.capBtnPageOrient": "Orientering",
"DE.Views.Toolbar.capBtnPageSize": "Størrelse",
+ "DE.Views.Toolbar.capBtnWatermark": "Vandmærke",
"DE.Views.Toolbar.capImgAlign": "Tilpas",
"DE.Views.Toolbar.capImgBackward": "Send tilbage",
"DE.Views.Toolbar.capImgForward": "Ryk frem",
"DE.Views.Toolbar.capImgGroup": "Gruppe",
"DE.Views.Toolbar.capImgWrapping": "Ombrydning",
"DE.Views.Toolbar.mniCustomTable": "Indsæt brugerdefineret tabel",
+ "DE.Views.Toolbar.mniDrawTable": "Tegn tabel",
"DE.Views.Toolbar.mniEditControls": "Kontrolindstillinger",
"DE.Views.Toolbar.mniEditDropCap": "Drop Cap indstillinger",
"DE.Views.Toolbar.mniEditFooter": "Rediger sidefod",
"DE.Views.Toolbar.mniEditHeader": "Rediger overskrift",
+ "DE.Views.Toolbar.mniEraseTable": "Slet tabel",
"DE.Views.Toolbar.mniHiddenBorders": "Skjulte tabelrammer",
"DE.Views.Toolbar.mniHiddenChars": "Ikkeprintende tegn",
"DE.Views.Toolbar.mniHighlightControls": "Fremhæv indstillinger",
"DE.Views.Toolbar.mniImageFromFile": "Billede fra fil",
+ "DE.Views.Toolbar.mniImageFromStorage": "Billede fra opbevaring",
"DE.Views.Toolbar.mniImageFromUrl": "Billede fra URL",
"DE.Views.Toolbar.strMenuNoFill": "Intet fyld",
"DE.Views.Toolbar.textAutoColor": "Automatisk",
"DE.Views.Toolbar.textBold": "Fed",
"DE.Views.Toolbar.textBottom": "Nederst:",
+ "DE.Views.Toolbar.textCheckboxControl": "Afkrydsningsfelt",
"DE.Views.Toolbar.textColumnsCustom": "Tilpassede kolonner",
"DE.Views.Toolbar.textColumnsLeft": "Venstre",
"DE.Views.Toolbar.textColumnsOne": "En",
"DE.Views.Toolbar.textColumnsRight": "Højre",
"DE.Views.Toolbar.textColumnsThree": "Tre",
"DE.Views.Toolbar.textColumnsTwo": "To",
+ "DE.Views.Toolbar.textComboboxControl": "Kombinationskasse",
"DE.Views.Toolbar.textContPage": "kontinuerlig side",
+ "DE.Views.Toolbar.textDateControl": "Dato",
+ "DE.Views.Toolbar.textDropdownControl": "Rulleliste",
+ "DE.Views.Toolbar.textEditWatermark": "Brugerdefineret vandmærke",
"DE.Views.Toolbar.textEvenPage": "Lige side",
"DE.Views.Toolbar.textInMargin": "I margenen",
"DE.Views.Toolbar.textInsColumnBreak": "Indsæt kolonne skift",
@@ -1762,6 +2262,7 @@
"DE.Views.Toolbar.textItalic": "Kursiv",
"DE.Views.Toolbar.textLandscape": "Landskab",
"DE.Views.Toolbar.textLeft": "Venstre: ",
+ "DE.Views.Toolbar.textListSettings": "Liste-indstillinger",
"DE.Views.Toolbar.textMarginsLast": "Sidste brugerdefinerede",
"DE.Views.Toolbar.textMarginsModerate": "Moderat",
"DE.Views.Toolbar.textMarginsNarrow": "Smal",
@@ -1775,9 +2276,11 @@
"DE.Views.Toolbar.textOddPage": "Ulige side",
"DE.Views.Toolbar.textPageMarginsCustom": "Tilpassede margener",
"DE.Views.Toolbar.textPageSizeCustom": "Tilpasset side størrelse",
+ "DE.Views.Toolbar.textPictureControl": "Billede",
"DE.Views.Toolbar.textPlainControl": "Indsæt enkelt tekstindholdskontrol",
"DE.Views.Toolbar.textPortrait": "Potræt",
"DE.Views.Toolbar.textRemoveControl": "Fjern indholdskontrol",
+ "DE.Views.Toolbar.textRemWatermark": "Fjern vandmærke",
"DE.Views.Toolbar.textRichControl": "Indsæt rigtekstindholdskontrol",
"DE.Views.Toolbar.textRight": "Højre:",
"DE.Views.Toolbar.textStrikeout": "Strikethrough",
@@ -1806,6 +2309,7 @@
"DE.Views.Toolbar.tipAlignLeft": "Tilpas til venstre",
"DE.Views.Toolbar.tipAlignRight": "Tilpas til højre",
"DE.Views.Toolbar.tipBack": "Tilbage",
+ "DE.Views.Toolbar.tipBlankPage": "Indsæt tom side",
"DE.Views.Toolbar.tipChangeChart": "Skift diagramtype",
"DE.Views.Toolbar.tipClearStyle": "Ryd formatering",
"DE.Views.Toolbar.tipColorSchemas": "Skift farveskema",
@@ -1813,6 +2317,7 @@
"DE.Views.Toolbar.tipControls": "Indsæt indholdskontrol",
"DE.Views.Toolbar.tipCopy": "Kopier",
"DE.Views.Toolbar.tipCopyStyle": "Kopier formatering",
+ "DE.Views.Toolbar.tipDateTime": "Indsæt nuværende dato og tid",
"DE.Views.Toolbar.tipDecFont": "Formindsk skriftstørrelsen",
"DE.Views.Toolbar.tipDecPrLeft": "Formindsk indrykning",
"DE.Views.Toolbar.tipDropCap": "Indsæt Drop cap",
@@ -1821,7 +2326,7 @@
"DE.Views.Toolbar.tipFontName": "Skrifttype",
"DE.Views.Toolbar.tipFontSize": "Skriftstørrelse",
"DE.Views.Toolbar.tipHighlightColor": "Fremhæv farve",
- "DE.Views.Toolbar.tipImgAlign": "Juster objekter",
+ "DE.Views.Toolbar.tipImgAlign": "Tilpas genstande",
"DE.Views.Toolbar.tipImgGroup": "Saml objekter",
"DE.Views.Toolbar.tipImgWrapping": "Ombryd tekst",
"DE.Views.Toolbar.tipIncFont": "Forøg skriftstørrelse",
@@ -1831,6 +2336,7 @@
"DE.Views.Toolbar.tipInsertImage": "Indsæt billede",
"DE.Views.Toolbar.tipInsertNum": "Indsæt sidetal",
"DE.Views.Toolbar.tipInsertShape": "Indsæt automatisk form",
+ "DE.Views.Toolbar.tipInsertSymbol": "Indsæt symbol",
"DE.Views.Toolbar.tipInsertTable": "Indsæt tabel",
"DE.Views.Toolbar.tipInsertText": "Indsæt tekst",
"DE.Views.Toolbar.tipInsertTextArt": "Indsæt Text art",
@@ -1855,6 +2361,12 @@
"DE.Views.Toolbar.tipShowHiddenChars": "Ikkeprintende tegn",
"DE.Views.Toolbar.tipSynchronize": "Dokumentet er blevet ændret af en anden bruger. Venligst tryk for at gemme dine ændringer og genindlæs opdateringerne. ",
"DE.Views.Toolbar.tipUndo": "Fortryd",
+ "DE.Views.Toolbar.tipWatermark": "Rediger vandmærke",
+ "DE.Views.Toolbar.txtDistribHor": "Fordel vandret",
+ "DE.Views.Toolbar.txtDistribVert": "Fordel lodret",
+ "DE.Views.Toolbar.txtMarginAlign": "Tilpas til margen",
+ "DE.Views.Toolbar.txtObjectsAlign": "Tilpas valgte genstande",
+ "DE.Views.Toolbar.txtPageAlign": "Tilpas til side",
"DE.Views.Toolbar.txtScheme1": "Kontor",
"DE.Views.Toolbar.txtScheme10": "median",
"DE.Views.Toolbar.txtScheme11": "Metro",
@@ -1875,5 +2387,28 @@
"DE.Views.Toolbar.txtScheme6": "sammenfald",
"DE.Views.Toolbar.txtScheme7": "Egenkapital",
"DE.Views.Toolbar.txtScheme8": "Flow",
- "DE.Views.Toolbar.txtScheme9": "Støberi"
+ "DE.Views.Toolbar.txtScheme9": "Støberi",
+ "DE.Views.WatermarkSettingsDialog.textAuto": "automatisk",
+ "DE.Views.WatermarkSettingsDialog.textBold": "Fed",
+ "DE.Views.WatermarkSettingsDialog.textColor": "Tekstfarve",
+ "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
+ "DE.Views.WatermarkSettingsDialog.textFont": "Skrifttype",
+ "DE.Views.WatermarkSettingsDialog.textFromFile": "Fra fil",
+ "DE.Views.WatermarkSettingsDialog.textFromUrl": "Fra URL",
+ "DE.Views.WatermarkSettingsDialog.textHor": "Vandret",
+ "DE.Views.WatermarkSettingsDialog.textImageW": "Billede-vandmærke",
+ "DE.Views.WatermarkSettingsDialog.textItalic": "Kursiv",
+ "DE.Views.WatermarkSettingsDialog.textLanguage": "Sprog",
+ "DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
+ "DE.Views.WatermarkSettingsDialog.textNewColor": "Tilføj ny brugerdefineret farve",
+ "DE.Views.WatermarkSettingsDialog.textNone": "ingen",
+ "DE.Views.WatermarkSettingsDialog.textScale": "Størrelse",
+ "DE.Views.WatermarkSettingsDialog.textStrikeout": "Overstreg",
+ "DE.Views.WatermarkSettingsDialog.textText": "Tekst",
+ "DE.Views.WatermarkSettingsDialog.textTextW": "Tekst vandmærke",
+ "DE.Views.WatermarkSettingsDialog.textTitle": "Vandmærke-indstillinger",
+ "DE.Views.WatermarkSettingsDialog.textTransparency": "Halvgennemsigtig",
+ "DE.Views.WatermarkSettingsDialog.textUnderline": "Understreg",
+ "DE.Views.WatermarkSettingsDialog.tipFontName": "Skrifttypenavn",
+ "DE.Views.WatermarkSettingsDialog.tipFontSize": "Skriftstørrelse"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json
index dbb710494..b8b6faf10 100644
--- a/apps/documenteditor/main/locale/de.json
+++ b/apps/documenteditor/main/locale/de.json
@@ -232,7 +232,7 @@
"Common.Views.OpenDialog.txtPassword": "Kennwort",
"Common.Views.OpenDialog.txtPreview": "Vorschau",
"Common.Views.OpenDialog.txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.",
- "Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen",
+ "Common.Views.OpenDialog.txtTitle": "Wähle %1 Optionen",
"Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei",
"Common.Views.PasswordDialog.txtDescription": "Legen Sie ein Passwort fest, um dieses Dokument zu schützen",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bestätigungseingabe ist nicht identisch",
@@ -537,11 +537,11 @@
"DE.Controllers.Main.txtShape_callout2": "Legende mit Linie 2 (ohne Rahmen)",
"DE.Controllers.Main.txtShape_callout3": "Legende mit Linie 3 (ohne Rahmen)",
"DE.Controllers.Main.txtShape_can": "Zylinder",
- "DE.Controllers.Main.txtShape_chevron": "Chevron",
+ "DE.Controllers.Main.txtShape_chevron": "Winkel",
"DE.Controllers.Main.txtShape_chord": "Akkord",
"DE.Controllers.Main.txtShape_circularArrow": "Gebogener Pfeil",
"DE.Controllers.Main.txtShape_cloud": "Cloud",
- "DE.Controllers.Main.txtShape_cloudCallout": "Wolkenförmige Legende",
+ "DE.Controllers.Main.txtShape_cloudCallout": "Cloud Legende",
"DE.Controllers.Main.txtShape_corner": "Ecke",
"DE.Controllers.Main.txtShape_cube": "Cube",
"DE.Controllers.Main.txtShape_curvedConnector3": "Gekrümmte Verbindung",
@@ -1153,7 +1153,6 @@
"DE.Views.ControlSettingsDialog.textLang": "Sprache",
"DE.Views.ControlSettingsDialog.textLock": "Sperrung",
"DE.Views.ControlSettingsDialog.textName": "Titel",
- "DE.Views.ControlSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
"DE.Views.ControlSettingsDialog.textNone": "Kein",
"DE.Views.ControlSettingsDialog.textShowAs": "Anzeigen als",
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
@@ -1408,7 +1407,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Links",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Rand",
"DE.Views.DropcapSettingsAdvanced.textMove": "Mit Text verschieben",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
"DE.Views.DropcapSettingsAdvanced.textNone": "Kein",
"DE.Views.DropcapSettingsAdvanced.textPage": "Seite",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Absatz",
@@ -1492,7 +1490,7 @@
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Ausrichtungslinien einschalten",
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoWiederherstellen einschalten ",
"DE.Views.FileMenuPanels.Settings.strAutosave": "AutoSpeichern einschalten",
- "DE.Views.FileMenuPanels.Settings.strCoAuthMode": " Modus \"Gemeinsame Bearbeitung\"",
+ "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andere Benutzer werden Ihre Änderungen gleichzeitig sehen",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Sie müssen die Änderungen annehmen, bevor Sie diese sehen können",
"DE.Views.FileMenuPanels.Settings.strFast": "Schnell",
@@ -1611,7 +1609,7 @@
"DE.Views.ImageSettingsAdvanced.textBottom": "Unten",
"DE.Views.ImageSettingsAdvanced.textBottomMargin": "Unterer Rand",
"DE.Views.ImageSettingsAdvanced.textBtnWrap": "Textumbruch",
- "DE.Views.ImageSettingsAdvanced.textCapType": "Abschlusstyp",
+ "DE.Views.ImageSettingsAdvanced.textCapType": "Zierbuchstabe",
"DE.Views.ImageSettingsAdvanced.textCenter": "Zentriert",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Zeichen",
"DE.Views.ImageSettingsAdvanced.textColumn": "Spalte",
@@ -1701,7 +1699,6 @@
"DE.Views.ListSettingsDialog.textCenter": "Zentriert",
"DE.Views.ListSettingsDialog.textLeft": "Links",
"DE.Views.ListSettingsDialog.textLevel": "Ebene",
- "DE.Views.ListSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
"DE.Views.ListSettingsDialog.textPreview": "Vorschau",
"DE.Views.ListSettingsDialog.textRight": "Rechts",
"DE.Views.ListSettingsDialog.txtAlign": "Ausrichtung",
@@ -1826,7 +1823,6 @@
"DE.Views.ParagraphSettings.textAuto": "Mehrfach",
"DE.Views.ParagraphSettings.textBackColor": "Hintergrundfarbe",
"DE.Views.ParagraphSettings.textExact": "Genau",
- "DE.Views.ParagraphSettings.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Die festgelegten Registerkarten werden in diesem Feld erscheinen",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alle Großbuchstaben",
@@ -1876,7 +1872,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Füllzeichen",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Ebene",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Kein",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(kein)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
@@ -1937,7 +1932,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Vertikal kippen",
"DE.Views.ShapeSettings.textImageTexture": "Bild oder Textur",
"DE.Views.ShapeSettings.textLinear": "Linear",
- "DE.Views.ShapeSettings.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
"DE.Views.ShapeSettings.textNoFill": "Keine Füllung",
"DE.Views.ShapeSettings.textPatternFill": "Muster",
"DE.Views.ShapeSettings.textRadial": "Radial",
@@ -1951,7 +1945,7 @@
"DE.Views.ShapeSettings.textWrap": "Textumbruch",
"DE.Views.ShapeSettings.txtBehind": "Hinten",
"DE.Views.ShapeSettings.txtBrownPaper": "Kraftpapier",
- "DE.Views.ShapeSettings.txtCanvas": "Canvas",
+ "DE.Views.ShapeSettings.txtCanvas": "Leinwand",
"DE.Views.ShapeSettings.txtCarton": "Pappe",
"DE.Views.ShapeSettings.txtDarkFabric": "Dunkler Stoff",
"DE.Views.ShapeSettings.txtGrain": "Korn",
@@ -2053,7 +2047,6 @@
"DE.Views.TableSettings.textHeader": "Kopfzeile",
"DE.Views.TableSettings.textHeight": "Höhe",
"DE.Views.TableSettings.textLast": "Letzte",
- "DE.Views.TableSettings.textNewColor": "Benutzerdefinierte Farbe",
"DE.Views.TableSettings.textRows": "Zeilen",
"DE.Views.TableSettings.textSelectBorders": "Wählen Sie Rahmenlinien, auf die ein anderer Stil angewandt wird",
"DE.Views.TableSettings.textTemplate": "Vorlage auswählen",
@@ -2110,7 +2103,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Zellenränder",
"DE.Views.TableSettingsAdvanced.textMeasure": "Maßeinheit in",
"DE.Views.TableSettingsAdvanced.textMove": "Objekt mit Text verschieben",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Benutzerdefinierte Farbe",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Nur für gewählte Zellen",
"DE.Views.TableSettingsAdvanced.textOptions": "Optionen",
"DE.Views.TableSettingsAdvanced.textOverlap": "Überlappung zulassen",
@@ -2163,7 +2155,6 @@
"DE.Views.TextArtSettings.textGradient": "Farbverlauf",
"DE.Views.TextArtSettings.textGradientFill": "Füllung mit Farbverlauf",
"DE.Views.TextArtSettings.textLinear": "Linear",
- "DE.Views.TextArtSettings.textNewColor": "Benutzerdefinierte Farbe",
"DE.Views.TextArtSettings.textNoFill": "Keine Füllung",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Auswählen",
@@ -2244,6 +2235,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Normal (US)",
"DE.Views.Toolbar.textMarginsWide": "Breit",
"DE.Views.Toolbar.textNewColor": "Benutzerdefinierte Farbe",
+ "Common.UI.ColorButton.textNewColor": "Benutzerdefinierte Farbe",
"DE.Views.Toolbar.textNextPage": "Nächste Seite",
"DE.Views.Toolbar.textNoHighlight": "Ohne Hervorhebung",
"DE.Views.Toolbar.textNone": "Kein",
@@ -2271,7 +2263,7 @@
"DE.Views.Toolbar.textTabHome": "Startseite",
"DE.Views.Toolbar.textTabInsert": "Einfügen",
"DE.Views.Toolbar.textTabLayout": "Layout",
- "DE.Views.Toolbar.textTabLinks": "Quellenangaben",
+ "DE.Views.Toolbar.textTabLinks": "Verweise",
"DE.Views.Toolbar.textTabProtect": "Schutz",
"DE.Views.Toolbar.textTabReview": "Review",
"DE.Views.Toolbar.textTitleError": "Fehler",
@@ -2356,7 +2348,7 @@
"DE.Views.Toolbar.txtScheme21": "Telesto",
"DE.Views.Toolbar.txtScheme3": "Apex",
"DE.Views.Toolbar.txtScheme4": "Aspekt ",
- "DE.Views.Toolbar.txtScheme5": "Cronus",
+ "DE.Views.Toolbar.txtScheme5": "bürgerlich",
"DE.Views.Toolbar.txtScheme6": "Deimos",
"DE.Views.Toolbar.txtScheme7": "Dactylos",
"DE.Views.Toolbar.txtScheme8": "Bewegungsart",
@@ -2373,7 +2365,7 @@
"DE.Views.WatermarkSettingsDialog.textItalic": "Kursiv",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Sprache",
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
- "DE.Views.WatermarkSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
+ "DE.Views.WatermarkSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
"DE.Views.WatermarkSettingsDialog.textNone": "Kein",
"DE.Views.WatermarkSettingsDialog.textScale": "Maßstab",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Durchgestrichen",
diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json
index 5ed3adbbf..30b809527 100644
--- a/apps/documenteditor/main/locale/en.json
+++ b/apps/documenteditor/main/locale/en.json
@@ -65,13 +65,12 @@
"Common.Controllers.ReviewChanges.textSubScript": "Subscript",
"Common.Controllers.ReviewChanges.textSuperScript": "Superscript",
"Common.Controllers.ReviewChanges.textTableChanged": "Table Settings Changed ",
- "Common.Controllers.ReviewChanges.textTableRowsAdd": "Table Rows Added ",
- "Common.Controllers.ReviewChanges.textTableRowsDel": "Table Rows Deleted ",
+ "Common.Controllers.ReviewChanges.textTableRowsAdd": "Table Rows Added ",
+ "Common.Controllers.ReviewChanges.textTableRowsDel": "Table Rows Deleted ",
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
"Common.Controllers.ReviewChanges.textUrl": "Paste a document URL",
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
- "Common.Translation.warnFileLocked": "Document is in use by another application. You can continue editing and save it as a copy.",
"Common.define.chartData.textArea": "Area",
"Common.define.chartData.textBar": "Bar",
"Common.define.chartData.textCharts": "Charts",
@@ -81,6 +80,7 @@
"Common.define.chartData.textPoint": "XY (Scatter)",
"Common.define.chartData.textStock": "Stock",
"Common.define.chartData.textSurface": "Surface",
+ "Common.Translation.warnFileLocked": "Document is being used by another app. You can continue editing and save it as a copy.",
"Common.UI.Calendar.textApril": "April",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textDecember": "December",
@@ -135,7 +135,7 @@
"Common.UI.SearchDialog.txtBtnReplace": "Replace",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All",
"Common.UI.SynchronizeTip.textDontShow": "Don't show this message again",
- "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.",
+ "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.",
"Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors",
"Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors",
"Common.UI.Window.cancelButtonText": "Cancel",
@@ -359,33 +359,33 @@
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
"Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
+ "Common.Views.SymbolTableDialog.textCharacter": "Character",
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
+ "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote",
+ "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis",
+ "Common.Views.SymbolTableDialog.textEmDash": "Em Dash",
+ "Common.Views.SymbolTableDialog.textEmSpace": "Em Space",
+ "Common.Views.SymbolTableDialog.textEnDash": "En Dash",
+ "Common.Views.SymbolTableDialog.textEnSpace": "En Space",
"Common.Views.SymbolTableDialog.textFont": "Font",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen",
+ "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign",
+ "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space",
"Common.Views.SymbolTableDialog.textRange": "Range",
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
- "Common.Views.SymbolTableDialog.textTitle": "Symbol",
- "Common.Views.SymbolTableDialog.textSymbols": "Symbols",
- "Common.Views.SymbolTableDialog.textSpecial": "Special characters",
- "Common.Views.SymbolTableDialog.textCharacter": "Character",
- "Common.Views.SymbolTableDialog.textShortcut": "Shortcut key",
- "Common.Views.SymbolTableDialog.textEmDash": "Em Dash",
- "Common.Views.SymbolTableDialog.textEnDash": "En Dash",
- "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen",
- "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen",
- "Common.Views.SymbolTableDialog.textEmSpace": "Em Space",
- "Common.Views.SymbolTableDialog.textEnSpace": "En Space",
- "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space",
- "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space",
- "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign",
"Common.Views.SymbolTableDialog.textRegistered": "Registered Sign",
- "Common.Views.SymbolTableDialog.textTradeMark": "Trade Mark Sign",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote",
"Common.Views.SymbolTableDialog.textSection": "Section Sign",
- "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign",
- "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis",
- "Common.Views.SymbolTableDialog.textSOQuote": "Single Opening Quote",
- "Common.Views.SymbolTableDialog.textSCQuote": "Single Closing Quote",
- "Common.Views.SymbolTableDialog.textDOQuote": "Double Opening Quote",
- "Common.Views.SymbolTableDialog.textDCQuote": "Double Closing Quote",
+ "Common.Views.SymbolTableDialog.textShortcut": "Shortcut Key",
+ "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote",
+ "Common.Views.SymbolTableDialog.textSpecial": "Special characters",
+ "Common.Views.SymbolTableDialog.textSymbols": "Symbols",
+ "Common.Views.SymbolTableDialog.textTitle": "Symbol",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Trademark Symbol ",
"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": "Unnamed document",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
@@ -411,6 +411,7 @@
"DE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for. Please contact your Document Server administrator.",
"DE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.",
+ "DE.Controllers.Main.errorCompare": "The Compare Documents feature is not available while co-editing. ",
"DE.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 ",
"DE.Controllers.Main.errorDatabaseConnection": "External error. Database connection error. Please contact support in case the error persists.",
"DE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
@@ -440,7 +441,6 @@
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document, but will not be able to download or print it until the connection is restored and page is reloaded.",
- "DE.Controllers.Main.errorCompare": "The Compare documents feature is not available in the co-editing mode.",
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
"DE.Controllers.Main.loadFontsTitleText": "Loading Data",
@@ -475,12 +475,15 @@
"DE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1.",
"DE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1.",
"DE.Controllers.Main.textAnonymous": "Anonymous",
+ "DE.Controllers.Main.textApplyAll": "Apply to all equations",
"DE.Controllers.Main.textBuyNow": "Visit website",
"DE.Controllers.Main.textChangesSaved": "All changes saved",
"DE.Controllers.Main.textClose": "Close",
"DE.Controllers.Main.textCloseTip": "Click to close the tip",
"DE.Controllers.Main.textContactUs": "Contact sales",
+ "DE.Controllers.Main.textConvertEquation": "This equation was created with an old version of the equation editor which is no longer supported. To edit it, convert the equation to the Office Math ML format. Convert now?",
"DE.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.",
+ "DE.Controllers.Main.textLearnMore": "Learn More",
"DE.Controllers.Main.textLoadingDocument": "Loading document",
"DE.Controllers.Main.textNoLicenseTitle": "%1 connection limitation",
"DE.Controllers.Main.textPaidFeature": "Paid feature",
@@ -503,6 +506,7 @@
"DE.Controllers.Main.txtDiagramTitle": "Chart Title",
"DE.Controllers.Main.txtEditingMode": "Set editing mode...",
"DE.Controllers.Main.txtEndOfFormula": "Unexpected End of Formula",
+ "DE.Controllers.Main.txtEnterDate": "Enter a date.",
"DE.Controllers.Main.txtErrorLoadHistory": "History loading failed",
"DE.Controllers.Main.txtEvenPage": "Even Page",
"DE.Controllers.Main.txtFiguredArrows": "Figured Arrows",
@@ -722,6 +726,7 @@
"DE.Controllers.Main.txtTableInd": "Table Index Cannot be Zero",
"DE.Controllers.Main.txtTableOfContents": "Table of Contents",
"DE.Controllers.Main.txtTooLarge": "Number Too Large To Format",
+ "DE.Controllers.Main.txtTypeEquation": "Type an equation here.",
"DE.Controllers.Main.txtUndefBookmark": "Undefined Bookmark",
"DE.Controllers.Main.txtXAxis": "X Axis",
"DE.Controllers.Main.txtYAxis": "Y Axis",
@@ -745,11 +750,9 @@
"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.Main.textConvertEquation": "This equation was created with an old version of equation editor which is no longer supported. Converting this equation to Office Math ML format will make it editable. Do you want to convert this equation?",
- "DE.Controllers.Main.textApplyAll": "Apply to all equations",
- "DE.Controllers.Main.textLearnMore": "Learn More",
- "DE.Controllers.Main.txtEnterDate": "Enter a date.",
- "DE.Controllers.Main.txtTypeEquation": "Type equation here.",
+ "DE.Controllers.Main.textHasMacros": "The file contains automatic macros. Do you want to run macros?",
+ "DE.Controllers.Main.textRemember": "Remember my choice",
+ "DE.Controllers.Main.errorPasteSlicerError": "Table slicers cannot be copied from one workbook to another. Try again by selecting the entire table and the slicers.",
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
@@ -1183,8 +1186,8 @@
"DE.Views.ControlSettingsDialog.textLang": "Language",
"DE.Views.ControlSettingsDialog.textLock": "Locking",
"DE.Views.ControlSettingsDialog.textName": "Title",
- "del_DE.Views.ControlSettingsDialog.textNewColor": "Add New Custom Color",
"DE.Views.ControlSettingsDialog.textNone": "None",
+ "DE.Views.ControlSettingsDialog.textPlaceholder": "Placeholder",
"DE.Views.ControlSettingsDialog.textShowAs": "Show as",
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
"DE.Views.ControlSettingsDialog.textTag": "Tag",
@@ -1195,7 +1198,6 @@
"DE.Views.ControlSettingsDialog.tipChange": "Change symbol",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
- "DE.Views.ControlSettingsDialog.textPlaceholder": "Placeholder",
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
@@ -1446,7 +1448,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Left",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margin",
"DE.Views.DropcapSettingsAdvanced.textMove": "Move with text",
- "del_DE.Views.DropcapSettingsAdvanced.textNewColor": "Add New Custom Color",
"DE.Views.DropcapSettingsAdvanced.textNone": "None",
"DE.Views.DropcapSettingsAdvanced.textPage": "Page",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraph",
@@ -1571,6 +1572,15 @@
"DE.Views.FileMenuPanels.Settings.txtPt": "Point",
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking",
"DE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
+ "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macros Settings",
+ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Show Notification",
+ "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable All",
+ "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Disable All",
+ "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with notification",
+ "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Enable all macros without notification",
+ "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Disable all macros without notification",
+ "DE.Views.FileMenuPanels.Settings.strPaste": "Cut, copy and paste",
+ "DE.Views.FileMenuPanels.Settings.strPasteButton": "Show Paste Options button when content is pasted",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left",
"DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of Page",
@@ -1643,6 +1653,7 @@
"DE.Views.ImageSettingsAdvanced.textAngle": "Angle",
"DE.Views.ImageSettingsAdvanced.textArrows": "Arrows",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lock aspect ratio",
+ "DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin Size",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begin Style",
"DE.Views.ImageSettingsAdvanced.textBelow": "below",
@@ -1680,6 +1691,7 @@
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Relative position",
"DE.Views.ImageSettingsAdvanced.textRelative": "relative to",
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relative",
+ "DE.Views.ImageSettingsAdvanced.textResizeFit": "Resize shape to fit text",
"DE.Views.ImageSettingsAdvanced.textRight": "Right",
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Right Margin",
"DE.Views.ImageSettingsAdvanced.textRightOf": "to the right of",
@@ -1688,6 +1700,7 @@
"DE.Views.ImageSettingsAdvanced.textShape": "Shape Settings",
"DE.Views.ImageSettingsAdvanced.textSize": "Size",
"DE.Views.ImageSettingsAdvanced.textSquare": "Square",
+ "DE.Views.ImageSettingsAdvanced.textTextBox": "Text Box",
"DE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - Advanced Settings",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - Advanced Settings",
@@ -1705,9 +1718,6 @@
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Through",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tight",
"DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Top and bottom",
- "DE.Views.ImageSettingsAdvanced.textTextBox": "Text Box",
- "DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit",
- "DE.Views.ImageSettingsAdvanced.textResizeFit": "Resize shape to fit text",
"DE.Views.LeftMenu.tipAbout": "About",
"DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Comments",
@@ -1743,7 +1753,6 @@
"DE.Views.ListSettingsDialog.textCenter": "Center",
"DE.Views.ListSettingsDialog.textLeft": "Left",
"DE.Views.ListSettingsDialog.textLevel": "Level",
- "del_DE.Views.ListSettingsDialog.textNewColor": "Add New Custom Color",
"DE.Views.ListSettingsDialog.textPreview": "Preview",
"DE.Views.ListSettingsDialog.textRight": "Right",
"DE.Views.ListSettingsDialog.txtAlign": "Alignment",
@@ -1868,7 +1877,6 @@
"DE.Views.ParagraphSettings.textAuto": "Multiple",
"DE.Views.ParagraphSettings.textBackColor": "Background color",
"DE.Views.ParagraphSettings.textExact": "Exactly",
- "del_DE.Views.ParagraphSettings.textNewColor": "Add New Custom Color",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps",
@@ -1918,7 +1926,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Left",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Level",
- "del_DE.Views.ParagraphSettingsAdvanced.textNewColor": "Add New Custom Color",
"DE.Views.ParagraphSettingsAdvanced.textNone": "None",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
@@ -1979,7 +1986,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Flip Vertically",
"DE.Views.ShapeSettings.textImageTexture": "Picture or Texture",
"DE.Views.ShapeSettings.textLinear": "Linear",
- "del_DE.Views.ShapeSettings.textNewColor": "Add New Custom Color",
"DE.Views.ShapeSettings.textNoFill": "No Fill",
"DE.Views.ShapeSettings.textPatternFill": "Pattern",
"DE.Views.ShapeSettings.textRadial": "Radial",
@@ -2087,7 +2093,7 @@
"DE.Views.TableSettings.textBanded": "Banded",
"DE.Views.TableSettings.textBorderColor": "Color",
"DE.Views.TableSettings.textBorders": "Borders Style",
- "DE.Views.TableSettings.textCellSize": "Rows & columns size",
+ "DE.Views.TableSettings.textCellSize": "Rows & Columns Size",
"DE.Views.TableSettings.textColumns": "Columns",
"DE.Views.TableSettings.textDistributeCols": "Distribute columns",
"DE.Views.TableSettings.textDistributeRows": "Distribute rows",
@@ -2097,7 +2103,6 @@
"DE.Views.TableSettings.textHeader": "Header",
"DE.Views.TableSettings.textHeight": "Height",
"DE.Views.TableSettings.textLast": "Last",
- "del_DE.Views.TableSettings.textNewColor": "Add New Custom Color",
"DE.Views.TableSettings.textRows": "Rows",
"DE.Views.TableSettings.textSelectBorders": "Select borders you want to change applying style chosen above",
"DE.Views.TableSettings.textTemplate": "Select From Template",
@@ -2154,7 +2159,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Cell Margins",
"DE.Views.TableSettingsAdvanced.textMeasure": "Measure in",
"DE.Views.TableSettingsAdvanced.textMove": "Move object with text",
- "del_DE.Views.TableSettingsAdvanced.textNewColor": "Add New Custom Color",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "For selected cells only",
"DE.Views.TableSettingsAdvanced.textOptions": "Options",
"DE.Views.TableSettingsAdvanced.textOverlap": "Allow overlap",
@@ -2207,7 +2211,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"DE.Views.TextArtSettings.textLinear": "Linear",
- "del_DE.Views.TextArtSettings.textNewColor": "Add New Custom Color",
"DE.Views.TextArtSettings.textNoFill": "No Fill",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
@@ -2219,6 +2222,7 @@
"DE.Views.Toolbar.capBtnBlankPage": "Blank Page",
"DE.Views.Toolbar.capBtnColumns": "Columns",
"DE.Views.Toolbar.capBtnComment": "Comment",
+ "DE.Views.Toolbar.capBtnDateTime": "Date & Time",
"DE.Views.Toolbar.capBtnInsChart": "Chart",
"DE.Views.Toolbar.capBtnInsControls": "Content Controls",
"DE.Views.Toolbar.capBtnInsDropcap": "Drop Cap",
@@ -2335,6 +2339,7 @@
"DE.Views.Toolbar.tipControls": "Insert content controls",
"DE.Views.Toolbar.tipCopy": "Copy",
"DE.Views.Toolbar.tipCopyStyle": "Copy style",
+ "DE.Views.Toolbar.tipDateTime": "Insert current date and time",
"DE.Views.Toolbar.tipDecFont": "Decrement font size",
"DE.Views.Toolbar.tipDecPrLeft": "Decrease indent",
"DE.Views.Toolbar.tipDropCap": "Insert drop cap",
@@ -2405,8 +2410,6 @@
"DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Foundry",
- "DE.Views.Toolbar.capBtnDateTime": "Date & Time",
- "DE.Views.Toolbar.tipDateTime": "Insert current date and time",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json
index 75e1f4b28..12f2e8b77 100644
--- a/apps/documenteditor/main/locale/es.json
+++ b/apps/documenteditor/main/locale/es.json
@@ -1153,7 +1153,6 @@
"DE.Views.ControlSettingsDialog.textLang": "Idioma",
"DE.Views.ControlSettingsDialog.textLock": "Cerrando",
"DE.Views.ControlSettingsDialog.textName": "Título",
- "DE.Views.ControlSettingsDialog.textNewColor": "Color personalizado",
"DE.Views.ControlSettingsDialog.textNone": "Ninguno",
"DE.Views.ControlSettingsDialog.textShowAs": "Mostrar como",
"DE.Views.ControlSettingsDialog.textSystemColor": "Sistema",
@@ -1408,7 +1407,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Izquierdo",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margen",
"DE.Views.DropcapSettingsAdvanced.textMove": "Desplazar con texto",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Color personalizado",
"DE.Views.DropcapSettingsAdvanced.textNone": "Ningún",
"DE.Views.DropcapSettingsAdvanced.textPage": "Página",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Párrafo",
@@ -1701,7 +1699,6 @@
"DE.Views.ListSettingsDialog.textCenter": "Al centro",
"DE.Views.ListSettingsDialog.textLeft": "Izquierda",
"DE.Views.ListSettingsDialog.textLevel": "Nivel",
- "DE.Views.ListSettingsDialog.textNewColor": "Añadir Nuevo Color Personalizado",
"DE.Views.ListSettingsDialog.textPreview": "Vista previa",
"DE.Views.ListSettingsDialog.textRight": "A la derecha",
"DE.Views.ListSettingsDialog.txtAlign": "Alineación",
@@ -1826,7 +1823,6 @@
"DE.Views.ParagraphSettings.textAuto": "Múltiple",
"DE.Views.ParagraphSettings.textBackColor": "Color de fondo",
"DE.Views.ParagraphSettings.textExact": "Exacto",
- "DE.Views.ParagraphSettings.textNewColor": "Color personalizado",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Las pestañas especificadas aparecerán en este campo",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Mayúsculas",
@@ -1876,7 +1872,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Director",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Izquierdo",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Nivel",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Color personalizado",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ninguno",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ninguno)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posición",
@@ -1937,7 +1932,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Volteo Vertical",
"DE.Views.ShapeSettings.textImageTexture": "Imagen o textura",
"DE.Views.ShapeSettings.textLinear": "Lineal",
- "DE.Views.ShapeSettings.textNewColor": "Color personalizado",
"DE.Views.ShapeSettings.textNoFill": "Sin relleno",
"DE.Views.ShapeSettings.textPatternFill": "Patrón",
"DE.Views.ShapeSettings.textRadial": "Radial",
@@ -2053,7 +2047,6 @@
"DE.Views.TableSettings.textHeader": "Encabezado",
"DE.Views.TableSettings.textHeight": "Altura",
"DE.Views.TableSettings.textLast": "Última",
- "DE.Views.TableSettings.textNewColor": "Color personalizado",
"DE.Views.TableSettings.textRows": "Filas",
"DE.Views.TableSettings.textSelectBorders": "Seleccione bordes que usted desea cambiar aplicando estilo seleccionado",
"DE.Views.TableSettings.textTemplate": "Seleccionar de plantilla",
@@ -2110,7 +2103,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Márgenes de celda",
"DE.Views.TableSettingsAdvanced.textMeasure": "medir en",
"DE.Views.TableSettingsAdvanced.textMove": "Desplazar objeto con texto",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Color personalizado",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Sólo para celdas seleccionadas",
"DE.Views.TableSettingsAdvanced.textOptions": "Opciones",
"DE.Views.TableSettingsAdvanced.textOverlap": "Superposición",
@@ -2163,7 +2155,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradiente",
"DE.Views.TextArtSettings.textGradientFill": "Relleno degradado",
"DE.Views.TextArtSettings.textLinear": "Lineal",
- "DE.Views.TextArtSettings.textNewColor": "Color personalizado",
"DE.Views.TextArtSettings.textNoFill": "Sin relleno",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Seleccionar",
@@ -2244,6 +2235,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
"DE.Views.Toolbar.textMarginsWide": "Amplio",
"DE.Views.Toolbar.textNewColor": "Color personalizado",
+ "Common.UI.ColorButton.textNewColor": "Color personalizado",
"DE.Views.Toolbar.textNextPage": "Página siguiente",
"DE.Views.Toolbar.textNoHighlight": "No resaltar",
"DE.Views.Toolbar.textNone": "Ningún",
@@ -2373,7 +2365,7 @@
"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.textNewColor": "Color personalizado",
"DE.Views.WatermarkSettingsDialog.textNone": "Ninguno",
"DE.Views.WatermarkSettingsDialog.textScale": "Escala",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Tachado",
diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json
index 7da94b7ad..df029c8d6 100644
--- a/apps/documenteditor/main/locale/fi.json
+++ b/apps/documenteditor/main/locale/fi.json
@@ -795,9 +795,9 @@
"DE.Views.ChartSettings.txtTight": "Tiukka",
"DE.Views.ChartSettings.txtTitle": "Kaavio",
"DE.Views.ChartSettings.txtTopAndBottom": "Ylä- ja alaosa",
+ "DE.Views.ControlSettingsDialog.textAdd": "Lisää",
"DE.Views.ControlSettingsDialog.textColor": "Väri",
"DE.Views.ControlSettingsDialog.textName": "Otsikko",
- "DE.Views.ControlSettingsDialog.textNewColor": "Lisää uusi väri",
"DE.Views.ControlSettingsDialog.textNone": "Ei mitään",
"DE.Views.ControlSettingsDialog.textTag": "Tunniste",
"DE.Views.CustomColumnsDialog.textColumns": "Sarakkeiden määrä",
@@ -1002,7 +1002,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Vasen",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Marginaali",
"DE.Views.DropcapSettingsAdvanced.textMove": "Siirrä tekstillä",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Lisää uusi mukautettu väri",
"DE.Views.DropcapSettingsAdvanced.textNone": "Ei mitään",
"DE.Views.DropcapSettingsAdvanced.textPage": "Sivu",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Kappale",
@@ -1041,6 +1040,7 @@
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Luo uusi, tyhjä tekstiasiakirja, ja voit sitten vaihtaa tyyliä ja muotoa muokkauksen aikana. Tai valitse mallipohja tietynlaisen asiakirjan luomiseen tai tiettyyn tarkoitukseen, missä tietyt tyylit ovat jo ennakolta valittu.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Uusi tekstiasiakirja",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Ei ole mallipohjia",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Lisää teksti",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Kirjoittaja",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Muuta pääsyoikeuksia",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ladataan...",
@@ -1311,7 +1311,6 @@
"DE.Views.ParagraphSettings.textAuto": "Moninkertainen",
"DE.Views.ParagraphSettings.textBackColor": "Taustan väri",
"DE.Views.ParagraphSettings.textExact": "Täsmälleen",
- "DE.Views.ParagraphSettings.textNewColor": "Lisää uusi mukautettu väri",
"DE.Views.ParagraphSettings.txtAutoText": "Automaattinen",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Määritellyt välilehdet ilmaantuvat tässä kentässä",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Kaikki isoilla kirjaimilla",
@@ -1342,7 +1341,6 @@
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Oletus välilehti",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efektit",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Vasen",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Lisää uusi mukautettu väri",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ei mitään",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Asema",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Poista",
@@ -1394,7 +1392,6 @@
"DE.Views.ShapeSettings.textGradientFill": "Kalteva täyttö",
"DE.Views.ShapeSettings.textImageTexture": "Kuva tai pintarakenne",
"DE.Views.ShapeSettings.textLinear": "Lineaarinen",
- "DE.Views.ShapeSettings.textNewColor": "Lisää uusi mukautettu väri",
"DE.Views.ShapeSettings.textNoFill": "Ei täyttöä",
"DE.Views.ShapeSettings.textPatternFill": "Kuvio",
"DE.Views.ShapeSettings.textRadial": "Säteittäinen",
@@ -1463,6 +1460,7 @@
"DE.Views.TableSettings.splitCellsText": "Jaa solu...",
"DE.Views.TableSettings.splitCellTitleText": "Jaa solu",
"DE.Views.TableSettings.strRepeatRow": "Toista ylätunnisteen rivinä jokaisen sivun huipulla",
+ "DE.Views.TableSettings.textAddFormula": "Lisää kaava",
"DE.Views.TableSettings.textAdvanced": "Näytä laajennetut asetukset",
"DE.Views.TableSettings.textBackColor": "Taustan väri",
"DE.Views.TableSettings.textBanded": "Niputettu",
@@ -1476,7 +1474,6 @@
"DE.Views.TableSettings.textHeader": "Ylävyöhyke",
"DE.Views.TableSettings.textHeight": "Korkeus",
"DE.Views.TableSettings.textLast": "Viimeinen",
- "DE.Views.TableSettings.textNewColor": "Lisää uusi mukautettu väri",
"DE.Views.TableSettings.textRows": "Rivit",
"DE.Views.TableSettings.textSelectBorders": "Valitse reunukset, jotka haluat muuttaa käyttämällä ylläolevaa tyyliä",
"DE.Views.TableSettings.textTemplate": "Valitse mallipohjasta",
@@ -1523,7 +1520,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Solun marginaalit",
"DE.Views.TableSettingsAdvanced.textMeasure": "Mittaa:",
"DE.Views.TableSettingsAdvanced.textMove": "Siirrä tekstiobjektia",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Lisää uusi mukautettu väri",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Vain valituille soluille",
"DE.Views.TableSettingsAdvanced.textOptions": "Vaihtoehdot",
"DE.Views.TableSettingsAdvanced.textOverlap": "Salli päällekkäisyys",
@@ -1576,7 +1572,6 @@
"DE.Views.TextArtSettings.textGradient": "Kalteva",
"DE.Views.TextArtSettings.textGradientFill": "Kalteva täyttö",
"DE.Views.TextArtSettings.textLinear": "Lineaarinen",
- "DE.Views.TextArtSettings.textNewColor": "Lisää uusi mukautettu väri",
"DE.Views.TextArtSettings.textNoFill": "Ei täyttöä",
"DE.Views.TextArtSettings.textRadial": "Säteittäinen",
"DE.Views.TextArtSettings.textSelectTexture": "Valitse",
@@ -1584,6 +1579,7 @@
"DE.Views.TextArtSettings.textTemplate": "Mallipohja",
"DE.Views.TextArtSettings.textTransform": "Muunna",
"DE.Views.TextArtSettings.txtNoBorders": "Ei viivaa",
+ "DE.Views.Toolbar.capBtnAddComment": "Lisää kommentti",
"DE.Views.Toolbar.capBtnColumns": "Sarakkeet",
"DE.Views.Toolbar.capBtnComment": "Kommentti",
"DE.Views.Toolbar.capBtnInsChart": "Kaavio",
@@ -1634,6 +1630,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "US normaali",
"DE.Views.Toolbar.textMarginsWide": "Leveä",
"DE.Views.Toolbar.textNewColor": "Lisää uusi mukautettu väri",
+ "Common.UI.ColorButton.textNewColor": "Lisää uusi mukautettu väri",
"DE.Views.Toolbar.textNextPage": "Seuraava sivu",
"DE.Views.Toolbar.textNone": "Ei mitään",
"DE.Views.Toolbar.textOddPage": "Pariton sivu",
diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json
index 8f23b2105..2fa3eaf86 100644
--- a/apps/documenteditor/main/locale/fr.json
+++ b/apps/documenteditor/main/locale/fr.json
@@ -132,7 +132,7 @@
"Common.UI.SearchDialog.txtBtnHideReplace": "Cacher Remplacer",
"Common.UI.SearchDialog.txtBtnReplace": "Remplacer",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Remplacer tout",
- "Common.UI.SynchronizeTip.textDontShow": "N'afficher plus ce message",
+ "Common.UI.SynchronizeTip.textDontShow": "Ne plus afficher ce message",
"Common.UI.SynchronizeTip.textSynchronize": "Le document a été modifié par un autre utilisateur. Cliquez pour enregistrer vos modifications et recharger les mises à jour.",
"Common.UI.ThemeColorPalette.textStandartColors": "Couleurs standard",
"Common.UI.ThemeColorPalette.textThemeColors": "Couleurs de thème",
@@ -141,7 +141,7 @@
"Common.UI.Window.noButtonText": "Non",
"Common.UI.Window.okButtonText": "OK",
"Common.UI.Window.textConfirmation": "Confirmation",
- "Common.UI.Window.textDontShow": "N'afficher plus ce message",
+ "Common.UI.Window.textDontShow": "Ne plus afficher ce message",
"Common.UI.Window.textError": "Erreur",
"Common.UI.Window.textInformation": "Information",
"Common.UI.Window.textWarning": "Avertissement",
@@ -171,7 +171,7 @@
"Common.Views.Comments.textReply": "Répondre",
"Common.Views.Comments.textResolve": "Résoudre",
"Common.Views.Comments.textResolved": "Résolu",
- "Common.Views.CopyWarningDialog.textDontShow": "N'afficher plus ce message",
+ "Common.Views.CopyWarningDialog.textDontShow": "Ne plus afficher ce message",
"Common.Views.CopyWarningDialog.textMsg": "Vous pouvez réaliser les actions de copier, couper et coller en utilisant les boutons de la barre d'outils et à l'aide du menu contextuel à partir de cet onglet uniquement. Pour copier ou coller de / vers les applications en dehors de l'onglet de l'éditeur, utilisez les combinaisons de touches suivantes :",
"Common.Views.CopyWarningDialog.textTitle": "Fonctions de Copier, Couper et Coller",
"Common.Views.CopyWarningDialog.textToCopy": "pour Copier",
@@ -1153,7 +1153,6 @@
"DE.Views.ControlSettingsDialog.textLang": "Langue",
"DE.Views.ControlSettingsDialog.textLock": "Verrouillage ",
"DE.Views.ControlSettingsDialog.textName": "Titre",
- "DE.Views.ControlSettingsDialog.textNewColor": "Couleur personnalisée",
"DE.Views.ControlSettingsDialog.textNone": "Aucun",
"DE.Views.ControlSettingsDialog.textShowAs": "Afficher comme ",
"DE.Views.ControlSettingsDialog.textSystemColor": "Système",
@@ -1408,7 +1407,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "A gauche",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Marge",
"DE.Views.DropcapSettingsAdvanced.textMove": "Déplacer avec le texte",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Couleur personnalisée",
"DE.Views.DropcapSettingsAdvanced.textNone": "Aucune",
"DE.Views.DropcapSettingsAdvanced.textPage": "Page",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraphe",
@@ -1701,7 +1699,6 @@
"DE.Views.ListSettingsDialog.textCenter": "Au centre",
"DE.Views.ListSettingsDialog.textLeft": "A gauche",
"DE.Views.ListSettingsDialog.textLevel": "Niveau",
- "DE.Views.ListSettingsDialog.textNewColor": "Ajouter une nouvelle couleur personnalisée",
"DE.Views.ListSettingsDialog.textPreview": "Aperçu",
"DE.Views.ListSettingsDialog.textRight": "A droite",
"DE.Views.ListSettingsDialog.txtAlign": "Alignement",
@@ -1826,7 +1823,6 @@
"DE.Views.ParagraphSettings.textAuto": "Plusieurs",
"DE.Views.ParagraphSettings.textBackColor": "Couleur d'arrière-plan",
"DE.Views.ParagraphSettings.textExact": "Exactement",
- "DE.Views.ParagraphSettings.textNewColor": "Couleur personnalisée",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Les onglets spécifiés s'affichent dans ce champ",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Toutes en majuscules",
@@ -1876,7 +1872,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Guide",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "A gauche",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Niveau",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Couleur personnalisée",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Aucune",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(aucun)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
@@ -1937,7 +1932,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Retourner verticalement",
"DE.Views.ShapeSettings.textImageTexture": "Image ou texture",
"DE.Views.ShapeSettings.textLinear": "Linéaire",
- "DE.Views.ShapeSettings.textNewColor": "Couleur personnalisée",
"DE.Views.ShapeSettings.textNoFill": "Pas de remplissage",
"DE.Views.ShapeSettings.textPatternFill": "Modèle",
"DE.Views.ShapeSettings.textRadial": "Radial",
@@ -2053,7 +2047,6 @@
"DE.Views.TableSettings.textHeader": "En-tête",
"DE.Views.TableSettings.textHeight": "Hauteur",
"DE.Views.TableSettings.textLast": "Dernier",
- "DE.Views.TableSettings.textNewColor": "Couleur personnalisée",
"DE.Views.TableSettings.textRows": "Lignes",
"DE.Views.TableSettings.textSelectBorders": "Sélectionnez les bordures à modifier en appliquant le style choisi ci-dessus",
"DE.Views.TableSettings.textTemplate": "Sélectionner à partir d'un modèle",
@@ -2110,7 +2103,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule",
"DE.Views.TableSettingsAdvanced.textMeasure": "Mesure en",
"DE.Views.TableSettingsAdvanced.textMove": "Déplacer avec le texte",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Couleur personnalisée",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Seulement pour des cellules sélectionnées",
"DE.Views.TableSettingsAdvanced.textOptions": "Options",
"DE.Views.TableSettingsAdvanced.textOverlap": "Autoriser le chevauchement",
@@ -2163,7 +2155,6 @@
"DE.Views.TextArtSettings.textGradient": "Dégradé",
"DE.Views.TextArtSettings.textGradientFill": "Remplissage en dégradé",
"DE.Views.TextArtSettings.textLinear": "Linéaire",
- "DE.Views.TextArtSettings.textNewColor": "Couleur personnalisée",
"DE.Views.TextArtSettings.textNoFill": "Pas de remplissage",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Sélectionner",
@@ -2244,6 +2235,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "US normale",
"DE.Views.Toolbar.textMarginsWide": "Large",
"DE.Views.Toolbar.textNewColor": "Couleur personnalisée",
+ "Common.UI.ColorButton.textNewColor": "Couleur personnalisée",
"DE.Views.Toolbar.textNextPage": "Page suivante",
"DE.Views.Toolbar.textNoHighlight": "Pas de surbrillance ",
"DE.Views.Toolbar.textNone": "Aucune",
@@ -2373,7 +2365,7 @@
"DE.Views.WatermarkSettingsDialog.textItalic": "Italique",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Langue",
"DE.Views.WatermarkSettingsDialog.textLayout": "Mise en page",
- "DE.Views.WatermarkSettingsDialog.textNewColor": "Ajouter une nouvelle couleur personnalisée",
+ "DE.Views.WatermarkSettingsDialog.textNewColor": "Couleur personnalisée",
"DE.Views.WatermarkSettingsDialog.textNone": "Aucun",
"DE.Views.WatermarkSettingsDialog.textScale": "Échelle",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Barré",
diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json
index 1167da7e4..6ae52ac2e 100644
--- a/apps/documenteditor/main/locale/hu.json
+++ b/apps/documenteditor/main/locale/hu.json
@@ -1153,7 +1153,6 @@
"DE.Views.ControlSettingsDialog.textLang": "Nyelv",
"DE.Views.ControlSettingsDialog.textLock": "Rögzítés",
"DE.Views.ControlSettingsDialog.textName": "Cím",
- "DE.Views.ControlSettingsDialog.textNewColor": "Új egyedi szín hozzáadása",
"DE.Views.ControlSettingsDialog.textNone": "nincs",
"DE.Views.ControlSettingsDialog.textShowAs": "Megjelenít mint",
"DE.Views.ControlSettingsDialog.textSystemColor": "Rendszer",
@@ -1408,7 +1407,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Bal",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margó",
"DE.Views.DropcapSettingsAdvanced.textMove": "Szöveggel mozgat",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Új egyedi szín hozzáadása",
"DE.Views.DropcapSettingsAdvanced.textNone": "nincs",
"DE.Views.DropcapSettingsAdvanced.textPage": "Oldal",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Bekezdés",
@@ -1631,7 +1629,7 @@
"DE.Views.ImageSettingsAdvanced.textLineStyle": "Vonal stílus",
"DE.Views.ImageSettingsAdvanced.textMargin": "Margó",
"DE.Views.ImageSettingsAdvanced.textMiter": "Szög",
- "DE.Views.ImageSettingsAdvanced.textMove": "Objektum és szöveggel áthelyezése",
+ "DE.Views.ImageSettingsAdvanced.textMove": "Objektum mozgatása a szöveggel",
"DE.Views.ImageSettingsAdvanced.textOptions": "Beállítások",
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Valódi méret",
"DE.Views.ImageSettingsAdvanced.textOverlap": "Átfedés engedélyezése",
@@ -1701,7 +1699,6 @@
"DE.Views.ListSettingsDialog.textCenter": "Közép",
"DE.Views.ListSettingsDialog.textLeft": "Bal",
"DE.Views.ListSettingsDialog.textLevel": "Szint",
- "DE.Views.ListSettingsDialog.textNewColor": "Új egyéni szín hozzáadása",
"DE.Views.ListSettingsDialog.textPreview": "Előnézet",
"DE.Views.ListSettingsDialog.textRight": "Jobb",
"DE.Views.ListSettingsDialog.txtAlign": "Elrendezés",
@@ -1826,7 +1823,6 @@
"DE.Views.ParagraphSettings.textAuto": "Többszörös",
"DE.Views.ParagraphSettings.textBackColor": "Háttérszín",
"DE.Views.ParagraphSettings.textExact": "Pontosan",
- "DE.Views.ParagraphSettings.textNewColor": "Új egyedi szín hozzáadása",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "A megadott lapok ezen a területen jelennek meg.",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Minden nagybetű",
@@ -1876,7 +1872,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Vezető",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Bal",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Szint",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Új egyedi szín hozzáadása",
"DE.Views.ParagraphSettingsAdvanced.textNone": "nincs",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nincs)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozíció",
@@ -1937,7 +1932,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Függőlegesen tükröz",
"DE.Views.ShapeSettings.textImageTexture": "Kép vagy textúra",
"DE.Views.ShapeSettings.textLinear": "Egyenes",
- "DE.Views.ShapeSettings.textNewColor": "Új egyedi szín hozzáadása",
"DE.Views.ShapeSettings.textNoFill": "Nincs kitöltés",
"DE.Views.ShapeSettings.textPatternFill": "Minta",
"DE.Views.ShapeSettings.textRadial": "Sugárirányú",
@@ -2053,7 +2047,6 @@
"DE.Views.TableSettings.textHeader": "Fejléc",
"DE.Views.TableSettings.textHeight": "Magasság",
"DE.Views.TableSettings.textLast": "Utolsó",
- "DE.Views.TableSettings.textNewColor": "Új egyedi szín hozzáadása",
"DE.Views.TableSettings.textRows": "Sorok",
"DE.Views.TableSettings.textSelectBorders": "Válassza ki a szegélyeket, amelyeket módosítani szeretne, a fenti stílus kiválasztásával",
"DE.Views.TableSettings.textTemplate": "Választás a sablonokból",
@@ -2109,8 +2102,7 @@
"DE.Views.TableSettingsAdvanced.textMargin": "Margó",
"DE.Views.TableSettingsAdvanced.textMargins": "Cella margók",
"DE.Views.TableSettingsAdvanced.textMeasure": "Measure in",
- "DE.Views.TableSettingsAdvanced.textMove": "Objektum és szöveggel áthelyezése",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Új egyedi szín hozzáadása",
+ "DE.Views.TableSettingsAdvanced.textMove": "Objektum mozgatása a szöveggel",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Csak a kiválasztott cellákra",
"DE.Views.TableSettingsAdvanced.textOptions": "Beállítások",
"DE.Views.TableSettingsAdvanced.textOverlap": "Átfedés engedélyezése",
@@ -2163,7 +2155,6 @@
"DE.Views.TextArtSettings.textGradient": "Színátmenet",
"DE.Views.TextArtSettings.textGradientFill": "Színátmenetes kitöltés",
"DE.Views.TextArtSettings.textLinear": "Egyenes",
- "DE.Views.TextArtSettings.textNewColor": "Új egyedi szín hozzáadása",
"DE.Views.TextArtSettings.textNoFill": "Nincs kitöltés",
"DE.Views.TextArtSettings.textRadial": "Sugárirányú",
"DE.Views.TextArtSettings.textSelectTexture": "Kiválaszt",
@@ -2244,6 +2235,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Normál (US)",
"DE.Views.Toolbar.textMarginsWide": "Széles",
"DE.Views.Toolbar.textNewColor": "Új egyedi szín hozzáadása",
+ "Common.UI.ColorButton.textNewColor": "Új egyedi szín hozzáadása",
"DE.Views.Toolbar.textNextPage": "Következő oldal",
"DE.Views.Toolbar.textNoHighlight": "Nincs kiemelés",
"DE.Views.Toolbar.textNone": "Nincs",
diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json
index b8392654c..44885af0b 100644
--- a/apps/documenteditor/main/locale/id.json
+++ b/apps/documenteditor/main/locale/id.json
@@ -793,7 +793,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Kiri",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margin",
"DE.Views.DropcapSettingsAdvanced.textMove": "Pindah bersama teks",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Tambahkan Warna Khusus Baru",
"DE.Views.DropcapSettingsAdvanced.textNone": "Tidak ada",
"DE.Views.DropcapSettingsAdvanced.textPage": "Halaman",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraf",
@@ -1047,7 +1046,6 @@
"DE.Views.ParagraphSettings.textAuto": "Banyak",
"DE.Views.ParagraphSettings.textBackColor": "Warna latar",
"DE.Views.ParagraphSettings.textExact": "Persis",
- "DE.Views.ParagraphSettings.textNewColor": "Tambahkan Warna Khusus Baru",
"DE.Views.ParagraphSettings.txtAutoText": "Otomatis",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Tab yang ditentukan akan muncul pada bagian ini",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Huruf kapital semua",
@@ -1078,7 +1076,6 @@
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Standar",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efek",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Tambahkan Warna Khusus Baru",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posisi",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus Semua",
@@ -1128,7 +1125,6 @@
"DE.Views.ShapeSettings.textGradientFill": "Isian Gradien",
"DE.Views.ShapeSettings.textImageTexture": "Gambar atau Tekstur",
"DE.Views.ShapeSettings.textLinear": "Linier",
- "DE.Views.ShapeSettings.textNewColor": "Tambahkan Warna Khusus Baru",
"DE.Views.ShapeSettings.textNoFill": "Tidak ada Isian",
"DE.Views.ShapeSettings.textPatternFill": "Pola",
"DE.Views.ShapeSettings.textRadial": "Radial",
@@ -1197,7 +1193,6 @@
"DE.Views.TableSettings.textFirst": "Pertama",
"DE.Views.TableSettings.textHeader": "Header",
"DE.Views.TableSettings.textLast": "Terakhir",
- "DE.Views.TableSettings.textNewColor": "Tambahkan Warna Khusus Baru",
"DE.Views.TableSettings.textRows": "Baris",
"DE.Views.TableSettings.textSelectBorders": "Pilih pembatas yang ingin Anda ubah dengan menerarpkan model yang telah dipilih di atas",
"DE.Views.TableSettings.textTemplate": "Pilih Dari Template",
@@ -1238,7 +1233,6 @@
"DE.Views.TableSettingsAdvanced.textMargin": "Margin",
"DE.Views.TableSettingsAdvanced.textMargins": "Margin Sel",
"DE.Views.TableSettingsAdvanced.textMove": "Pindah obyek bersama teks",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Tambahkan Warna Khusus Baru",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Hanya untuk sel yang dipilih",
"DE.Views.TableSettingsAdvanced.textOptions": "Pilihan",
"DE.Views.TableSettingsAdvanced.textOverlap": "Ijinkan menumpuk",
@@ -1280,7 +1274,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"DE.Views.TextArtSettings.textLinear": "Linear",
- "DE.Views.TextArtSettings.textNewColor": "Add New Custom Color",
"DE.Views.TextArtSettings.textNoFill": "No Fill",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
@@ -1321,6 +1314,7 @@
"DE.Views.Toolbar.textMarginsNormal": "Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "Tambahkan Warna Khusus Baru",
+ "Common.UI.ColorButton.textNewColor": "Tambahkan Warna Khusus Baru",
"DE.Views.Toolbar.textNextPage": "Halaman Selanjutnya",
"DE.Views.Toolbar.textNone": "Tidak ada",
"DE.Views.Toolbar.textOddPage": "Halaman Ganjil",
diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json
index baef9380e..f5ab36a84 100644
--- a/apps/documenteditor/main/locale/it.json
+++ b/apps/documenteditor/main/locale/it.json
@@ -15,20 +15,20 @@
"Common.Controllers.ReviewChanges.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Baseline",
"Common.Controllers.ReviewChanges.textBold": "Grassetto",
- "Common.Controllers.ReviewChanges.textBreakBefore": "Page break before",
- "Common.Controllers.ReviewChanges.textCaps": "Maiuscole",
+ "Common.Controllers.ReviewChanges.textBreakBefore": "Anteponi interruzione",
+ "Common.Controllers.ReviewChanges.textCaps": "Tutto maiuscolo",
"Common.Controllers.ReviewChanges.textCenter": "Align center",
"Common.Controllers.ReviewChanges.textChart": "Chart",
- "Common.Controllers.ReviewChanges.textColor": "Font color",
+ "Common.Controllers.ReviewChanges.textColor": "Colore caratteri",
"Common.Controllers.ReviewChanges.textContextual": "Don't add interval between paragraphs of the same style",
"Common.Controllers.ReviewChanges.textDeleted": "Eliminato: ",
- "Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout",
+ "Common.Controllers.ReviewChanges.textDStrikeout": "Barrato doppio",
"Common.Controllers.ReviewChanges.textEquation": "Equation",
"Common.Controllers.ReviewChanges.textExact": "exactly",
"Common.Controllers.ReviewChanges.textFirstLine": "First line",
"Common.Controllers.ReviewChanges.textFontSize": "Font size",
"Common.Controllers.ReviewChanges.textFormatted": "Formatted",
- "Common.Controllers.ReviewChanges.textHighlight": "Highlight color",
+ "Common.Controllers.ReviewChanges.textHighlight": "Colore evidenziatore",
"Common.Controllers.ReviewChanges.textImage": "Image",
"Common.Controllers.ReviewChanges.textIndentLeft": "Indent left",
"Common.Controllers.ReviewChanges.textIndentRight": "Indent right",
@@ -56,14 +56,14 @@
"Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Align right",
"Common.Controllers.ReviewChanges.textShape": "Shape",
- "Common.Controllers.ReviewChanges.textShd": "Background color",
- "Common.Controllers.ReviewChanges.textSmallCaps": "Small caps",
+ "Common.Controllers.ReviewChanges.textShd": "Colore sfondo",
+ "Common.Controllers.ReviewChanges.textSmallCaps": "Maiuscoletto",
"Common.Controllers.ReviewChanges.textSpacing": "Spacing",
"Common.Controllers.ReviewChanges.textSpacingAfter": "Spacing after",
"Common.Controllers.ReviewChanges.textSpacingBefore": "Spacing before",
"Common.Controllers.ReviewChanges.textStrikeout": "Strikeout",
- "Common.Controllers.ReviewChanges.textSubScript": "Subscript",
- "Common.Controllers.ReviewChanges.textSuperScript": "Superscript",
+ "Common.Controllers.ReviewChanges.textSubScript": "Pedice",
+ "Common.Controllers.ReviewChanges.textSuperScript": "Apice",
"Common.Controllers.ReviewChanges.textTableChanged": "Impostazioni tabella modificate ",
"Common.Controllers.ReviewChanges.textTableRowsAdd": "Righe tabella aggiunte ",
"Common.Controllers.ReviewChanges.textTableRowsDel": "Righe tabella eliminate ",
@@ -184,7 +184,7 @@
"Common.Views.ExternalDiagramEditor.textTitle": "Modifica grafico",
"Common.Views.ExternalMergeEditor.textClose": "Chiudi",
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
- "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
+ "Common.Views.ExternalMergeEditor.textTitle": "Destinatari Stampa unione",
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
"Common.Views.Header.textBack": "Apri percorso file",
@@ -972,10 +972,10 @@
"DE.Controllers.Toolbar.txtScriptCustom_2": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_3": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Script",
- "DE.Controllers.Toolbar.txtScriptSub": "Subscript",
- "DE.Controllers.Toolbar.txtScriptSubSup": "Subscript-Superscript",
- "DE.Controllers.Toolbar.txtScriptSubSupLeft": "LeftSubscript-Superscript",
- "DE.Controllers.Toolbar.txtScriptSup": "Superscript",
+ "DE.Controllers.Toolbar.txtScriptSub": "Pedice",
+ "DE.Controllers.Toolbar.txtScriptSubSup": "Pedice-Apice",
+ "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Pedice-Apice sinistro",
+ "DE.Controllers.Toolbar.txtScriptSup": "Apice",
"DE.Controllers.Toolbar.txtSymbol_about": "Approssimativamente",
"DE.Controllers.Toolbar.txtSymbol_additional": "Complement",
"DE.Controllers.Toolbar.txtSymbol_aleph": "Alef",
@@ -1153,7 +1153,6 @@
"DE.Views.ControlSettingsDialog.textLang": "Lingua",
"DE.Views.ControlSettingsDialog.textLock": "Blocca",
"DE.Views.ControlSettingsDialog.textName": "Titolo",
- "DE.Views.ControlSettingsDialog.textNewColor": "Colore personalizzato",
"DE.Views.ControlSettingsDialog.textNone": "Nessuno",
"DE.Views.ControlSettingsDialog.textShowAs": "Mostra come",
"DE.Views.ControlSettingsDialog.textSystemColor": "Sistema",
@@ -1305,7 +1304,7 @@
"DE.Views.DocumentHolder.txtBehind": "Dietro al testo",
"DE.Views.DocumentHolder.txtBorderProps": "Border properties",
"DE.Views.DocumentHolder.txtBottom": "In basso",
- "DE.Views.DocumentHolder.txtColumnAlign": "Column alignment",
+ "DE.Views.DocumentHolder.txtColumnAlign": "Allineamento colonna",
"DE.Views.DocumentHolder.txtDecreaseArg": "Diminuisci dimensione argomento",
"DE.Views.DocumentHolder.txtDeleteArg": "Elimina argomento",
"DE.Views.DocumentHolder.txtDeleteBreak": "Elimina interruzione manuale",
@@ -1342,7 +1341,7 @@
"DE.Views.DocumentHolder.txtInline": "In linea",
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before",
- "DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break",
+ "DE.Views.DocumentHolder.txtInsertBreak": "Inserisci interruzione manuale",
"DE.Views.DocumentHolder.txtInsertCaption": "Inserisci didascalia",
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after",
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before",
@@ -1362,7 +1361,7 @@
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character",
"DE.Views.DocumentHolder.txtRemoveBar": "Remove bar",
"DE.Views.DocumentHolder.txtRemScripts": "Remove scripts",
- "DE.Views.DocumentHolder.txtRemSubscript": "Remove subscript",
+ "DE.Views.DocumentHolder.txtRemSubscript": "Elimina pedice",
"DE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript",
"DE.Views.DocumentHolder.txtScriptsAfter": "Scripts after text",
"DE.Views.DocumentHolder.txtScriptsBefore": "Scripts before text",
@@ -1408,7 +1407,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "A sinistra",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margini",
"DE.Views.DropcapSettingsAdvanced.textMove": "Sposta col testo",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Colore personalizzato",
"DE.Views.DropcapSettingsAdvanced.textNone": "Nessuno",
"DE.Views.DropcapSettingsAdvanced.textPage": "Pagina",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragrafo",
@@ -1701,7 +1699,6 @@
"DE.Views.ListSettingsDialog.textCenter": "Centrato",
"DE.Views.ListSettingsDialog.textLeft": "Sinistra",
"DE.Views.ListSettingsDialog.textLevel": "Livello",
- "DE.Views.ListSettingsDialog.textNewColor": "Aggiungi Colore personalizzato",
"DE.Views.ListSettingsDialog.textPreview": "Anteprima",
"DE.Views.ListSettingsDialog.textRight": "Destra",
"DE.Views.ListSettingsDialog.txtAlign": "Allineamento",
@@ -1823,17 +1820,16 @@
"DE.Views.ParagraphSettings.textAuto": "Multipla",
"DE.Views.ParagraphSettings.textBackColor": "Colore sfondo",
"DE.Views.ParagraphSettings.textExact": "Esatta",
- "DE.Views.ParagraphSettings.textNewColor": "Colore personalizzato",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Le schede specificate appariranno in questo campo",
- "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Maiuscole",
+ "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tutto maiuscolo",
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordi e riempimento",
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Anteponi interruzione",
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barrato doppio",
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Rientri",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A sinistra",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interlinea",
- "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Livello del contorno",
+ "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Livello di struttura",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A destra",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Dopo",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Prima",
@@ -1846,7 +1842,7 @@
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Rientri e spaziatura",
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Interruzioni di riga e di pagina",
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Posizionamento",
- "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Minuscole",
+ "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Maiuscoletto",
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Non aggiungere intervallo tra paragrafi dello stesso stile",
"DE.Views.ParagraphSettingsAdvanced.strSpacing": "Spaziatura",
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Barrato",
@@ -1873,7 +1869,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "A sinistra",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Livello",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Colore personalizzato",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Nessuno",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nessuna)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posizione",
@@ -1901,7 +1896,7 @@
"DE.Views.RightMenu.txtChartSettings": "Impostazioni grafico",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Impostazioni intestazione e piè di pagina",
"DE.Views.RightMenu.txtImageSettings": "Impostazioni immagine",
- "DE.Views.RightMenu.txtMailMergeSettings": "Mail Merge Settings",
+ "DE.Views.RightMenu.txtMailMergeSettings": "Impostazioni Stampa unione",
"DE.Views.RightMenu.txtParagraphSettings": "Impostazioni paragrafo",
"DE.Views.RightMenu.txtShapeSettings": "Impostazioni forma",
"DE.Views.RightMenu.txtSignatureSettings": "Impostazioni della Firma",
@@ -1934,7 +1929,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Capovolgi verticalmente",
"DE.Views.ShapeSettings.textImageTexture": "Immagine o trama",
"DE.Views.ShapeSettings.textLinear": "Lineare",
- "DE.Views.ShapeSettings.textNewColor": "Colore personalizzato",
"DE.Views.ShapeSettings.textNoFill": "Nessun riempimento",
"DE.Views.ShapeSettings.textPatternFill": "Modello",
"DE.Views.ShapeSettings.textRadial": "Radiale",
@@ -2050,7 +2044,6 @@
"DE.Views.TableSettings.textHeader": "Intestazione",
"DE.Views.TableSettings.textHeight": "Altezza",
"DE.Views.TableSettings.textLast": "Ultima",
- "DE.Views.TableSettings.textNewColor": "Colore personalizzato",
"DE.Views.TableSettings.textRows": "Righe",
"DE.Views.TableSettings.textSelectBorders": "Seleziona i bordi che desideri modificare applicando lo stile scelto sopra",
"DE.Views.TableSettings.textTemplate": "Seleziona da modello",
@@ -2107,7 +2100,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Margini cella",
"DE.Views.TableSettingsAdvanced.textMeasure": "Misura in",
"DE.Views.TableSettingsAdvanced.textMove": "Sposta oggetto con testo",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Colore personalizzato",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Solo per celle selezionate",
"DE.Views.TableSettingsAdvanced.textOptions": "Opzioni",
"DE.Views.TableSettingsAdvanced.textOverlap": "Consenti sovrapposizione",
@@ -2160,7 +2152,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"DE.Views.TextArtSettings.textLinear": "Linear",
- "DE.Views.TextArtSettings.textNewColor": "Colore personalizzato",
"DE.Views.TextArtSettings.textNoFill": "Nessun riempimento",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
@@ -2224,7 +2215,7 @@
"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",
+ "DE.Views.Toolbar.textInsColumnBreak": "Inserisci interruzione di colonna",
"DE.Views.Toolbar.textInsertPageCount": "Inserisci numero delle pagine",
"DE.Views.Toolbar.textInsertPageNumber": "Inserisci numero di pagina",
"DE.Views.Toolbar.textInsPageBreak": "Inserisci interruzione di pagina",
@@ -2241,6 +2232,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "Colore personalizzato",
+ "Common.UI.ColorButton.textNewColor": "Colore personalizzato",
"DE.Views.Toolbar.textNextPage": "Pagina successiva",
"DE.Views.Toolbar.textNoHighlight": "Nessuna evidenziazione",
"DE.Views.Toolbar.textNone": "Nessuno",
@@ -2284,7 +2276,7 @@
"DE.Views.Toolbar.tipChangeChart": "Cambia tipo di grafico",
"DE.Views.Toolbar.tipClearStyle": "Cancella stile",
"DE.Views.Toolbar.tipColorSchemas": "Cambia combinazione colori",
- "DE.Views.Toolbar.tipColumns": "Insert columns",
+ "DE.Views.Toolbar.tipColumns": "Inserisci colonne",
"DE.Views.Toolbar.tipControls": "Inserisci i controlli del contenuto",
"DE.Views.Toolbar.tipCopy": "Copia",
"DE.Views.Toolbar.tipCopyStyle": "Copia stile",
@@ -2311,7 +2303,7 @@
"DE.Views.Toolbar.tipInsertText": "Inserisci casella di testo",
"DE.Views.Toolbar.tipInsertTextArt": "Inserisci Text Art",
"DE.Views.Toolbar.tipLineSpace": "Interlinea tra i paragrafi",
- "DE.Views.Toolbar.tipMailRecepients": "Unione della Corrispondenza",
+ "DE.Views.Toolbar.tipMailRecepients": "Stampa unione",
"DE.Views.Toolbar.tipMarkers": "Elenchi puntati",
"DE.Views.Toolbar.tipMultilevels": "Struttura",
"DE.Views.Toolbar.tipNumbers": "Elenchi numerati",
diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json
index 97550f996..926513a43 100644
--- a/apps/documenteditor/main/locale/ja.json
+++ b/apps/documenteditor/main/locale/ja.json
@@ -70,6 +70,9 @@
"Common.define.chartData.textPie": "円グラフ",
"Common.define.chartData.textPoint": "点グラフ",
"Common.define.chartData.textStock": "株価チャート",
+ "Common.UI.Calendar.textApril": "4月",
+ "Common.UI.Calendar.textAugust": "8月",
+ "Common.UI.Calendar.textShortAugust": "8月",
"Common.UI.ComboBorderSize.txtNoBorders": "罫線なし",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "罫線なし",
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
@@ -139,7 +142,7 @@
"Common.Views.ExternalMergeEditor.textClose": "閉じる",
"Common.Views.ExternalMergeEditor.textSave": "保存&終了",
"Common.Views.ExternalMergeEditor.textTitle": "差し込み印刷の宛先",
- "Common.Views.Header.textBack": "ドキュメントに移動",
+ "Common.Views.Header.textBack": "ファイルのURLを開く",
"Common.Views.ImageFromUrlDialog.textUrl": "画像のURLの貼り付け",
"Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。",
@@ -192,7 +195,7 @@
"DE.Controllers.Main.errorProcessSaveResult": "保存に失敗しました",
"DE.Controllers.Main.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、 始値、高値、安値、終値の順でシートのデータを配置してください。",
"DE.Controllers.Main.errorUpdateVersion": "ファイルのバージョンが変更されました。ページが再ロードされます。",
- "DE.Controllers.Main.errorUserDrop": "今、ファイルにアクセスすることはできません。",
+ "DE.Controllers.Main.errorUserDrop": "ファイルにアクセスできません",
"DE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。",
"DE.Controllers.Main.leavePageText": "この文書の保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。",
"DE.Controllers.Main.loadFontsTextText": "データを読み込んでいます",
@@ -244,6 +247,9 @@
"DE.Controllers.Main.txtNeedSynchronize": "更新があります。",
"DE.Controllers.Main.txtRectangles": "四角形",
"DE.Controllers.Main.txtSeries": "系列",
+ "DE.Controllers.Main.txtShape_arc": "円弧",
+ "DE.Controllers.Main.txtShape_lineWithArrow": "矢印",
+ "DE.Controllers.Main.txtShape_noSmoking": "\"禁止\"マーク",
"DE.Controllers.Main.txtStarsRibbons": "スター&リボン",
"DE.Controllers.Main.txtXAxis": "X 軸",
"DE.Controllers.Main.txtYAxis": "Y 軸",
@@ -595,6 +601,7 @@
"DE.Controllers.Toolbar.txtSymbol_vdots": "垂直線の省略記号",
"DE.Controllers.Toolbar.txtSymbol_xsi": "グザイ",
"DE.Controllers.Toolbar.txtSymbol_zeta": "ゼータ",
+ "DE.Views.CaptionDialog.textBefore": "前",
"DE.Views.ChartSettings.textAdvanced": "詳細設定の表示",
"DE.Views.ChartSettings.textChartType": "グラフの種類の変更",
"DE.Views.ChartSettings.textEditData": "データの編集",
@@ -803,7 +810,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "左",
"DE.Views.DropcapSettingsAdvanced.textMargin": "余白",
"DE.Views.DropcapSettingsAdvanced.textMove": "文字列と一緒に移動する",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "ユーザー設定の色の追加",
"DE.Views.DropcapSettingsAdvanced.textNone": "なし",
"DE.Views.DropcapSettingsAdvanced.textPage": "ページ",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "段落",
@@ -819,14 +825,15 @@
"DE.Views.DropcapSettingsAdvanced.textWidth": "幅",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "フォント名",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "罫線なし",
- "DE.Views.FileMenu.btnBackCaption": "ドキュメントに移動",
+ "DE.Views.FileMenu.btnBackCaption": "ファイルのURLを開く",
+ "DE.Views.FileMenu.btnCloseMenuCaption": "(←戻る)",
"DE.Views.FileMenu.btnCreateNewCaption": "新規作成",
- "DE.Views.FileMenu.btnDownloadCaption": "ダウンロード...",
+ "DE.Views.FileMenu.btnDownloadCaption": "ダウンロード",
"DE.Views.FileMenu.btnHelpCaption": "ヘルプ...",
"DE.Views.FileMenu.btnHistoryCaption": "バージョン履歴",
- "DE.Views.FileMenu.btnInfoCaption": "ファイル情報...",
+ "DE.Views.FileMenu.btnInfoCaption": "ファイル情報",
"DE.Views.FileMenu.btnPrintCaption": "印刷",
- "DE.Views.FileMenu.btnRecentFilesCaption": "最近使用した...",
+ "DE.Views.FileMenu.btnRecentFilesCaption": "最近使ったファイル",
"DE.Views.FileMenu.btnReturnCaption": "文書に戻る",
"DE.Views.FileMenu.btnRightsCaption": "アクセス許可...",
"DE.Views.FileMenu.btnSaveAsCaption": "名前を付けて保存",
@@ -995,6 +1002,7 @@
"DE.Views.LeftMenu.tipSearch": "検索",
"DE.Views.LeftMenu.tipSupport": "フィードバック&サポート",
"DE.Views.LeftMenu.tipTitles": "タイトル",
+ "DE.Views.ListSettingsDialog.textAuto": "自動",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "送信",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "テーマ",
@@ -1064,7 +1072,6 @@
"DE.Views.ParagraphSettings.textAuto": "複数",
"DE.Views.ParagraphSettings.textBackColor": "背景色",
"DE.Views.ParagraphSettings.textExact": "固定値",
- "DE.Views.ParagraphSettings.textNewColor": "ユーザー設定の色の追加",
"DE.Views.ParagraphSettings.txtAutoText": "自動",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "指定されたタブは、このフィールドに表示されます。",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "全てのキャップ",
@@ -1073,6 +1080,7 @@
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "二重取り消し線",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右に",
+ "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "前",
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "段落を分割しない",
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "次の段落と分離しない",
"DE.Views.ParagraphSettingsAdvanced.strMargins": "埋め込み文字",
@@ -1095,7 +1103,6 @@
"DE.Views.ParagraphSettingsAdvanced.textDefault": "既定のタブ",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "効果",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "左",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "ユーザー設定の色の追加",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "位置",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "削除",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "全ての削除",
@@ -1116,6 +1123,7 @@
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "外部の罫線だけを設定します。",
"DE.Views.ParagraphSettingsAdvanced.tipRight": "右罫線だけを設定します。",
"DE.Views.ParagraphSettingsAdvanced.tipTop": "上罫線だけを設定します。",
+ "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "罫線なし",
"DE.Views.RightMenu.txtChartSettings": "グラフの設定",
"DE.Views.RightMenu.txtHeaderFooterSettings": "ヘッダーとフッターの設定",
@@ -1145,7 +1153,6 @@
"DE.Views.ShapeSettings.textGradientFill": "塗りつぶし (グラデーション)",
"DE.Views.ShapeSettings.textImageTexture": "図またはテクスチャ",
"DE.Views.ShapeSettings.textLinear": "線形",
- "DE.Views.ShapeSettings.textNewColor": "ユーザー設定の色の追加",
"DE.Views.ShapeSettings.textNoFill": "塗りつぶしなし",
"DE.Views.ShapeSettings.textPatternFill": "パターン",
"DE.Views.ShapeSettings.textRadial": "放射状",
@@ -1214,7 +1221,6 @@
"DE.Views.TableSettings.textFirst": "最初の",
"DE.Views.TableSettings.textHeader": "ヘッダー",
"DE.Views.TableSettings.textLast": "最後",
- "DE.Views.TableSettings.textNewColor": "ユーザー設定の色の追加",
"DE.Views.TableSettings.textRows": "行",
"DE.Views.TableSettings.textSelectBorders": "選択したスタイルを適用する罫線を選択してください。 ",
"DE.Views.TableSettings.textTemplate": "テンプレートから選択する",
@@ -1258,7 +1264,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "セル内の配置",
"DE.Views.TableSettingsAdvanced.textMeasure": "測定",
"DE.Views.TableSettingsAdvanced.textMove": "文字列と一緒に移動する",
- "DE.Views.TableSettingsAdvanced.textNewColor": "ユーザー設定の色の追加",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "選択されたセルだけのため",
"DE.Views.TableSettingsAdvanced.textOptions": "オプション",
"DE.Views.TableSettingsAdvanced.textOverlap": "オーバーラップさせる",
@@ -1310,7 +1315,6 @@
"DE.Views.TextArtSettings.textGradient": "グラデーション",
"DE.Views.TextArtSettings.textGradientFill": "塗りつぶし (グラデーション)",
"DE.Views.TextArtSettings.textLinear": "線形",
- "DE.Views.TextArtSettings.textNewColor": "ユーザー設定の色の追加",
"DE.Views.TextArtSettings.textNoFill": "塗りつぶしなし",
"DE.Views.TextArtSettings.textRadial": "放射状",
"DE.Views.TextArtSettings.textSelectTexture": "選択",
@@ -1352,6 +1356,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "ノーマル(アメリカの標準)",
"DE.Views.Toolbar.textMarginsWide": "広い",
"DE.Views.Toolbar.textNewColor": "ユーザー設定の色の追加",
+ "Common.UI.ColorButton.textNewColor": "ユーザー設定の色の追加",
"DE.Views.Toolbar.textNextPage": "次のページ",
"DE.Views.Toolbar.textNone": "なし",
"DE.Views.Toolbar.textOddPage": "奇数ページから開始",
@@ -1367,6 +1372,12 @@
"DE.Views.Toolbar.textStyleMenuUpdate": "選択からの更新",
"DE.Views.Toolbar.textSubscript": "下付き",
"DE.Views.Toolbar.textSuperscript": "上付き文字",
+ "DE.Views.Toolbar.textTabCollaboration": "校閲",
+ "DE.Views.Toolbar.textTabFile": "ファイル",
+ "DE.Views.Toolbar.textTabHome": "ホーム",
+ "DE.Views.Toolbar.textTabInsert": "挿入",
+ "DE.Views.Toolbar.textTabLayout": "レイアウト",
+ "DE.Views.Toolbar.textTabLinks": "参考資料",
"DE.Views.Toolbar.textTitleError": "エラー",
"DE.Views.Toolbar.textToCurrent": "現在の場所",
"DE.Views.Toolbar.textTop": "トップ:",
@@ -1437,5 +1448,6 @@
"DE.Views.Toolbar.txtScheme6": "ビジネス",
"DE.Views.Toolbar.txtScheme7": "株主資本",
"DE.Views.Toolbar.txtScheme8": "フロー",
- "DE.Views.Toolbar.txtScheme9": "エコロジー"
+ "DE.Views.Toolbar.txtScheme9": "エコロジー",
+ "DE.Views.WatermarkSettingsDialog.textAuto": "自動"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json
index 91a855a33..7cb3d1620 100644
--- a/apps/documenteditor/main/locale/ko.json
+++ b/apps/documenteditor/main/locale/ko.json
@@ -1019,7 +1019,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "왼쪽",
"DE.Views.DropcapSettingsAdvanced.textMargin": "여백",
"DE.Views.DropcapSettingsAdvanced.textMove": "텍스트와 함께 이동",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "새 사용자 지정 색 추가",
"DE.Views.DropcapSettingsAdvanced.textNone": "없음",
"DE.Views.DropcapSettingsAdvanced.textPage": "페이지",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "단락",
@@ -1367,7 +1366,6 @@
"DE.Views.ParagraphSettings.textAuto": "Multiple",
"DE.Views.ParagraphSettings.textBackColor": "배경색",
"DE.Views.ParagraphSettings.textExact": "정확히",
- "DE.Views.ParagraphSettings.textNewColor": "새 사용자 지정 색 추가",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "지정된 탭이이 필드에 나타납니다",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자",
@@ -1399,7 +1397,6 @@
"DE.Views.ParagraphSettingsAdvanced.textEffects": "효과",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "리더",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "왼쪽",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "새 맞춤 색상 추가",
"DE.Views.ParagraphSettingsAdvanced.textNone": "없음",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "위치",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "제거",
@@ -1452,7 +1449,6 @@
"DE.Views.ShapeSettings.textGradientFill": "그라데이션 채우기",
"DE.Views.ShapeSettings.textImageTexture": "그림 또는 질감",
"DE.Views.ShapeSettings.textLinear": "선형",
- "DE.Views.ShapeSettings.textNewColor": "새 사용자 지정 색 추가",
"DE.Views.ShapeSettings.textNoFill": "채우기 없음",
"DE.Views.ShapeSettings.textPatternFill": "패턴",
"DE.Views.ShapeSettings.textRadial": "방사형",
@@ -1558,7 +1554,6 @@
"DE.Views.TableSettings.textHeader": "머리글",
"DE.Views.TableSettings.textHeight": "높이",
"DE.Views.TableSettings.textLast": "Last",
- "DE.Views.TableSettings.textNewColor": "새 사용자 지정 색 추가",
"DE.Views.TableSettings.textRows": "행",
"DE.Views.TableSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택",
"DE.Views.TableSettings.textTemplate": "템플릿에서 선택",
@@ -1607,7 +1602,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "셀 여백",
"DE.Views.TableSettingsAdvanced.textMeasure": "측정",
"DE.Views.TableSettingsAdvanced.textMove": "텍스트가있는 객체 이동",
- "DE.Views.TableSettingsAdvanced.textNewColor": "새로운 맞춤 색상 추가",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "선택한 셀만 해당",
"DE.Views.TableSettingsAdvanced.textOptions": "옵션",
"DE.Views.TableSettingsAdvanced.textOverlap": "중복 허용",
@@ -1660,7 +1654,6 @@
"DE.Views.TextArtSettings.textGradient": "그라디언트",
"DE.Views.TextArtSettings.textGradientFill": "그라데이션 채우기",
"DE.Views.TextArtSettings.textLinear": "선형",
- "DE.Views.TextArtSettings.textNewColor": "새 사용자 지정 색 추가",
"DE.Views.TextArtSettings.textNoFill": "채우기 없음",
"DE.Views.TextArtSettings.textRadial": "방사형",
"DE.Views.TextArtSettings.textSelectTexture": "선택",
@@ -1727,6 +1720,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "새로운 사용자 정의 색 추가",
+ "Common.UI.ColorButton.textNewColor": "새로운 사용자 정의 색 추가",
"DE.Views.Toolbar.textNextPage": "다음 페이지",
"DE.Views.Toolbar.textNone": "없음",
"DE.Views.Toolbar.textOddPage": "홀수 페이지",
diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json
index 8564775dc..2dad17bb2 100644
--- a/apps/documenteditor/main/locale/lv.json
+++ b/apps/documenteditor/main/locale/lv.json
@@ -1016,7 +1016,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Left",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margin",
"DE.Views.DropcapSettingsAdvanced.textMove": "Move with text",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Add New Custom Color",
"DE.Views.DropcapSettingsAdvanced.textNone": "None",
"DE.Views.DropcapSettingsAdvanced.textPage": "Page",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraph",
@@ -1364,7 +1363,6 @@
"DE.Views.ParagraphSettings.textAuto": "Vairāki",
"DE.Views.ParagraphSettings.textBackColor": "Background color",
"DE.Views.ParagraphSettings.textExact": "Tieši",
- "DE.Views.ParagraphSettings.textNewColor": "Pievienot jauno krāsu",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps",
@@ -1396,7 +1394,6 @@
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Vadītājs",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Left",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Pievienot jauno krāsu",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Neviens",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Remove",
@@ -1449,7 +1446,6 @@
"DE.Views.ShapeSettings.textGradientFill": "Gradient Fill",
"DE.Views.ShapeSettings.textImageTexture": "Picture or Texture",
"DE.Views.ShapeSettings.textLinear": "Linear",
- "DE.Views.ShapeSettings.textNewColor": "Pievienot jauno krāsu",
"DE.Views.ShapeSettings.textNoFill": "No Fill",
"DE.Views.ShapeSettings.textPatternFill": "Pattern",
"DE.Views.ShapeSettings.textRadial": "Radial",
@@ -1555,7 +1551,6 @@
"DE.Views.TableSettings.textHeader": "Header",
"DE.Views.TableSettings.textHeight": "Augstums",
"DE.Views.TableSettings.textLast": "Last",
- "DE.Views.TableSettings.textNewColor": "Pievienot jauno krāsu",
"DE.Views.TableSettings.textRows": "Rows",
"DE.Views.TableSettings.textSelectBorders": "Apmales stilu piemerošanai",
"DE.Views.TableSettings.textTemplate": "Select From Template",
@@ -1604,7 +1599,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Šunu piemales",
"DE.Views.TableSettingsAdvanced.textMeasure": "Mērīt",
"DE.Views.TableSettingsAdvanced.textMove": "Move object with text",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Pievienot jauno krāsu",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Tikai atlasīam šūnam",
"DE.Views.TableSettingsAdvanced.textOptions": "Options",
"DE.Views.TableSettingsAdvanced.textOverlap": "Allow overlap",
@@ -1657,7 +1651,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"DE.Views.TextArtSettings.textLinear": "Linear",
- "DE.Views.TextArtSettings.textNewColor": "Add New Custom Color",
"DE.Views.TextArtSettings.textNoFill": "No Fill",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
@@ -1724,6 +1717,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Parastie (ASV standarts)",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "Pievienot jauno krāsu",
+ "Common.UI.ColorButton.textNewColor": "Pievienot jauno krāsu",
"DE.Views.Toolbar.textNextPage": "Next Page",
"DE.Views.Toolbar.textNone": "None",
"DE.Views.Toolbar.textOddPage": "Odd Page",
diff --git a/apps/documenteditor/main/locale/nb.json b/apps/documenteditor/main/locale/nb.json
index 602d14286..0726b3178 100644
--- a/apps/documenteditor/main/locale/nb.json
+++ b/apps/documenteditor/main/locale/nb.json
@@ -202,7 +202,6 @@
"DE.Views.ControlSettingsDialog.textAppearance": "Utseende",
"DE.Views.ControlSettingsDialog.textApplyAll": "Bruk på alle",
"DE.Views.ControlSettingsDialog.textBox": "Avgrensningsboks",
- "DE.Views.ControlSettingsDialog.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.DocumentHolder.aboveText": "Over",
"DE.Views.DocumentHolder.addCommentText": "Tilføy kommentar",
"DE.Views.DocumentHolder.advancedTableText": "Avanserte tabell-innstillinger",
@@ -286,7 +285,6 @@
"DE.Views.DropcapSettingsAdvanced.textColumn": "Kolonne",
"DE.Views.DropcapSettingsAdvanced.textExact": "Nøyaktig",
"DE.Views.DropcapSettingsAdvanced.textLeft": "Venstre",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.FileMenu.btnCloseMenuCaption": "Lukk menyen",
"DE.Views.FileMenu.btnCreateNewCaption": "Opprett ny",
"DE.Views.FileMenu.btnReturnCaption": "Tilbake til dokument",
@@ -395,7 +393,6 @@
"DE.Views.ParagraphSettings.textAuto": "Flere",
"DE.Views.ParagraphSettings.textBackColor": "Bakgrunnsfarge",
"DE.Views.ParagraphSettings.textExact": "Nøyaktig",
- "DE.Views.ParagraphSettings.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Store bokstaver",
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Linjer & Fyll",
@@ -408,7 +405,6 @@
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tegnavstand",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standard fane",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Venstre",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Senter",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Venstre",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tabulator posisjon",
@@ -417,7 +413,6 @@
"DE.Views.ShapeSettings.strChange": "Endre autofigur",
"DE.Views.ShapeSettings.strColor": "Farge",
"DE.Views.ShapeSettings.textDirection": "Retning",
- "DE.Views.ShapeSettings.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.ShapeSettings.txtBehind": "Bak",
"DE.Views.ShapeSettings.txtBrownPaper": "Gråpapir",
"DE.Views.ShapeSettings.txtCanvas": "Lerret",
@@ -440,7 +435,6 @@
"DE.Views.TableSettings.textBorders": "Linjestil",
"DE.Views.TableSettings.textCellSize": "Cellestørrelse",
"DE.Views.TableSettings.textDistributeRows": "Fordel rader",
- "DE.Views.TableSettings.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.TableSettingsAdvanced.textAlign": "Oppstilling",
"DE.Views.TableSettingsAdvanced.textAlignment": "Oppstilling",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Tillat avstand mellom cellene",
@@ -462,7 +456,6 @@
"DE.Views.TableSettingsAdvanced.textLeft": "Venstre",
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Venstre",
"DE.Views.TableSettingsAdvanced.textMargins": "Cellemarginer",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.TableSettingsAdvanced.textOverlap": "Tillat overlapping",
"DE.Views.TableSettingsAdvanced.textTable": "Tabell",
"DE.Views.TableSettingsAdvanced.textTableBackColor": "Tabell-bakgrunn",
@@ -471,7 +464,6 @@
"DE.Views.TableSettingsAdvanced.txtInch": "Tomme",
"DE.Views.TextArtSettings.strColor": "Farge",
"DE.Views.TextArtSettings.textDirection": "Retning",
- "DE.Views.TextArtSettings.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.Toolbar.capBtnBlankPage": "Tom side",
"DE.Views.Toolbar.capBtnInsChart": "Diagram",
"DE.Views.Toolbar.capBtnInsImage": "Bilde",
@@ -489,6 +481,7 @@
"DE.Views.Toolbar.textEvenPage": "Partallside",
"DE.Views.Toolbar.textMarginsNarrow": "Smal",
"DE.Views.Toolbar.textNewColor": "Legg til ny egendefinert farge",
+ "Common.UI.ColorButton.textNewColor": "Legg til ny egendefinert farge",
"DE.Views.Toolbar.textPageMarginsCustom": "Egendefinerte marginer",
"DE.Views.Toolbar.textPageSizeCustom": "Egendefinert sidestørrelse",
"DE.Views.Toolbar.textStyleMenuDelete": "Slett stil",
diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json
index 7ba45291d..e4534da8f 100644
--- a/apps/documenteditor/main/locale/nl.json
+++ b/apps/documenteditor/main/locale/nl.json
@@ -904,7 +904,6 @@
"DE.Views.ControlSettingsDialog.textColor": "Kleur",
"DE.Views.ControlSettingsDialog.textLock": "Vergrendeling",
"DE.Views.ControlSettingsDialog.textName": "Titel",
- "DE.Views.ControlSettingsDialog.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.ControlSettingsDialog.textNone": "Geen",
"DE.Views.ControlSettingsDialog.textShowAs": "Tonen als",
"DE.Views.ControlSettingsDialog.textSystemColor": "Systeem",
@@ -1142,7 +1141,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Links",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Marge",
"DE.Views.DropcapSettingsAdvanced.textMove": "Met tekst verplaatsen",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.DropcapSettingsAdvanced.textNone": "Geen",
"DE.Views.DropcapSettingsAdvanced.textPage": "Pagina",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Alinea",
@@ -1504,7 +1502,6 @@
"DE.Views.ParagraphSettings.textAuto": "Meerdere",
"DE.Views.ParagraphSettings.textBackColor": "Achtergrondkleur",
"DE.Views.ParagraphSettings.textExact": "Exact",
- "DE.Views.ParagraphSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.ParagraphSettings.txtAutoText": "Automatisch",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "De opgegeven tabbladen worden in dit veld weergegeven",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Allemaal hoofdletters",
@@ -1536,7 +1533,6 @@
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effecten",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Geen",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Positie",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Verwijderen",
@@ -1593,7 +1589,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Verticaal omdraaien",
"DE.Views.ShapeSettings.textImageTexture": "Afbeelding of textuur",
"DE.Views.ShapeSettings.textLinear": "Lineair",
- "DE.Views.ShapeSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.ShapeSettings.textNoFill": "Geen vulling",
"DE.Views.ShapeSettings.textPatternFill": "Patroon",
"DE.Views.ShapeSettings.textRadial": "Radiaal",
@@ -1703,7 +1698,6 @@
"DE.Views.TableSettings.textHeader": "Koptekst",
"DE.Views.TableSettings.textHeight": "Hoogte",
"DE.Views.TableSettings.textLast": "Laatste",
- "DE.Views.TableSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.TableSettings.textRows": "Rijen",
"DE.Views.TableSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen",
"DE.Views.TableSettings.textTemplate": "Selecteren uit sjabloon",
@@ -1752,7 +1746,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Celmarges",
"DE.Views.TableSettingsAdvanced.textMeasure": "Meten in",
"DE.Views.TableSettingsAdvanced.textMove": "Object met tekst verplaatsen",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Alleen voor geselecteerde cellen",
"DE.Views.TableSettingsAdvanced.textOptions": "Opties",
"DE.Views.TableSettingsAdvanced.textOverlap": "Overlapping toestaan",
@@ -1805,7 +1798,6 @@
"DE.Views.TextArtSettings.textGradient": "Kleurovergang",
"DE.Views.TextArtSettings.textGradientFill": "Vulling met kleurovergang",
"DE.Views.TextArtSettings.textLinear": "Lineair",
- "DE.Views.TextArtSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.TextArtSettings.textNoFill": "Geen vulling",
"DE.Views.TextArtSettings.textRadial": "Radiaal",
"DE.Views.TextArtSettings.textSelectTexture": "Selecteren",
@@ -1873,6 +1865,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Normaal (VS)",
"DE.Views.Toolbar.textMarginsWide": "Breed",
"DE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen",
+ "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen",
"DE.Views.Toolbar.textNextPage": "Volgende pagina",
"DE.Views.Toolbar.textNone": "Geen",
"DE.Views.Toolbar.textOddPage": "Oneven pagina",
diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json
index 8b347460d..649a3b749 100644
--- a/apps/documenteditor/main/locale/pl.json
+++ b/apps/documenteditor/main/locale/pl.json
@@ -803,7 +803,6 @@
"DE.Views.ControlSettingsDialog.textAppearance": "Wygląd",
"DE.Views.ControlSettingsDialog.textApplyAll": "Zastosuj wszędzie",
"DE.Views.ControlSettingsDialog.textColor": "Kolor",
- "DE.Views.ControlSettingsDialog.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.ControlSettingsDialog.textNone": "Brak",
"DE.Views.ControlSettingsDialog.textShowAs": "Pokaż jako",
"DE.Views.ControlSettingsDialog.textTitle": "Ustawienia kontroli treści",
@@ -1022,7 +1021,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Lewy",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margines",
"DE.Views.DropcapSettingsAdvanced.textMove": "Poruszaj się tekstem",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.DropcapSettingsAdvanced.textNone": "Żaden",
"DE.Views.DropcapSettingsAdvanced.textPage": "Strona",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Akapit",
@@ -1361,7 +1359,6 @@
"DE.Views.ParagraphSettings.textAuto": "Mnożnik",
"DE.Views.ParagraphSettings.textBackColor": "Kolor tła",
"DE.Views.ParagraphSettings.textExact": "Dokładnie",
- "DE.Views.ParagraphSettings.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.ParagraphSettings.txtAutoText": "Automatyczny",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "W tym polu zostaną wyświetlone określone karty",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Wszystkie duże litery",
@@ -1397,7 +1394,6 @@
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Domyślna zakładka",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Lewy",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Brak",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(brak)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozycja",
@@ -1454,7 +1450,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Odwróć w pionie",
"DE.Views.ShapeSettings.textImageTexture": "Obraz lub tekstura",
"DE.Views.ShapeSettings.textLinear": "Liniowy",
- "DE.Views.ShapeSettings.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.ShapeSettings.textNoFill": "Brak wypełnienia",
"DE.Views.ShapeSettings.textPatternFill": "Wzór",
"DE.Views.ShapeSettings.textRadial": "Promieniowy",
@@ -1538,7 +1533,6 @@
"DE.Views.TableSettings.textFirst": "Pierwszy",
"DE.Views.TableSettings.textHeader": "Nagłówek",
"DE.Views.TableSettings.textLast": "Ostatni",
- "DE.Views.TableSettings.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.TableSettings.textRows": "Wiersze",
"DE.Views.TableSettings.textSelectBorders": "Wybierz obramowania, które chcesz zmienić stosując styl wybrany powyżej",
"DE.Views.TableSettings.textTemplate": "Wybierz z szablonu",
@@ -1586,7 +1580,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Marginesy komórki",
"DE.Views.TableSettingsAdvanced.textMeasure": "Zmierz w",
"DE.Views.TableSettingsAdvanced.textMove": "Przesuń obiekt z tekstem",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Tylko dla wybranych komórek",
"DE.Views.TableSettingsAdvanced.textOptions": "Opcje",
"DE.Views.TableSettingsAdvanced.textOverlap": "Włącz nakładkę",
@@ -1639,7 +1632,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Wypełnienie gradientem",
"DE.Views.TextArtSettings.textLinear": "Liniowy",
- "DE.Views.TextArtSettings.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.TextArtSettings.textNoFill": "Brak wypełnienia",
"DE.Views.TextArtSettings.textRadial": "Promieniowy",
"DE.Views.TextArtSettings.textSelectTexture": "Wybierz",
@@ -1707,6 +1699,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Normalny US",
"DE.Views.Toolbar.textMarginsWide": "Szeroki",
"DE.Views.Toolbar.textNewColor": "Nowy niestandardowy kolor",
+ "Common.UI.ColorButton.textNewColor": "Nowy niestandardowy kolor",
"DE.Views.Toolbar.textNextPage": "Następna strona",
"DE.Views.Toolbar.textNoHighlight": "Brak wyróżnienia",
"DE.Views.Toolbar.textNone": "Żaden",
diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json
index 4f25c8915..a6ef3d5ca 100644
--- a/apps/documenteditor/main/locale/pt.json
+++ b/apps/documenteditor/main/locale/pt.json
@@ -960,7 +960,6 @@
"DE.Views.ControlSettingsDialog.textLang": "Idioma",
"DE.Views.ControlSettingsDialog.textLock": "Travar",
"DE.Views.ControlSettingsDialog.textName": "Título",
- "DE.Views.ControlSettingsDialog.textNewColor": "Adicionar Nova Cor Personalizada",
"DE.Views.ControlSettingsDialog.textNone": "Nenhum",
"DE.Views.ControlSettingsDialog.textShowAs": "Exibir como",
"DE.Views.ControlSettingsDialog.textSystemColor": "Sistema",
@@ -1203,7 +1202,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Esquerda",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margem",
"DE.Views.DropcapSettingsAdvanced.textMove": "Mover com texto",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.DropcapSettingsAdvanced.textNone": "Nenhum",
"DE.Views.DropcapSettingsAdvanced.textPage": "Página",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Parágrafo",
@@ -1480,7 +1478,6 @@
"DE.Views.ListSettingsDialog.textAuto": "Automático",
"DE.Views.ListSettingsDialog.textCenter": "Centro",
"DE.Views.ListSettingsDialog.textLeft": "Esquerda",
- "DE.Views.ListSettingsDialog.textNewColor": "Adicionar Nova Cor Personalizada",
"DE.Views.ListSettingsDialog.textRight": "Direita",
"DE.Views.ListSettingsDialog.txtAlign": "Alinhamento",
"DE.Views.ListSettingsDialog.txtColor": "Cor",
@@ -1593,7 +1590,6 @@
"DE.Views.ParagraphSettings.textAuto": "Múltiplo",
"DE.Views.ParagraphSettings.textBackColor": "Cor do plano de fundo",
"DE.Views.ParagraphSettings.textExact": "Exatamente",
- "DE.Views.ParagraphSettings.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.ParagraphSettings.txtAutoText": "Automático",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "As abas especificadas aparecerão neste campo",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Todas maiúsculas",
@@ -1635,7 +1631,6 @@
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Justificado",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Guia",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Esquerda",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Nenhum",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nenhum)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posição",
@@ -1693,7 +1688,6 @@
"DE.Views.ShapeSettings.textHint90": "Girar 90º no sentido horário",
"DE.Views.ShapeSettings.textImageTexture": "Imagem ou Textura",
"DE.Views.ShapeSettings.textLinear": "Linear",
- "DE.Views.ShapeSettings.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.ShapeSettings.textNoFill": "Sem preenchimento",
"DE.Views.ShapeSettings.textPatternFill": "Padrão",
"DE.Views.ShapeSettings.textRadial": "Radial",
@@ -1803,7 +1797,6 @@
"DE.Views.TableSettings.textHeader": "Cabeçalho",
"DE.Views.TableSettings.textHeight": "Altura",
"DE.Views.TableSettings.textLast": "Último",
- "DE.Views.TableSettings.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.TableSettings.textRows": "Linhas",
"DE.Views.TableSettings.textSelectBorders": "Selecione as bordas que você deseja alterar aplicando o estilo escolhido acima",
"DE.Views.TableSettings.textTemplate": "Selecionar a partir do modelo",
@@ -1853,7 +1846,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Margens da célula",
"DE.Views.TableSettingsAdvanced.textMeasure": "Medir em",
"DE.Views.TableSettingsAdvanced.textMove": "Mover objeto com texto",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Apenas para as células selecionadas",
"DE.Views.TableSettingsAdvanced.textOptions": "Opções",
"DE.Views.TableSettingsAdvanced.textOverlap": "Permitir sobreposição",
@@ -1906,7 +1898,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"DE.Views.TextArtSettings.textLinear": "Linear",
- "DE.Views.TextArtSettings.textNewColor": "Add New Custom Color",
"DE.Views.TextArtSettings.textNoFill": "No Fill",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
@@ -1980,6 +1971,7 @@
"DE.Views.Toolbar.textMarginsNormal": "Normal",
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
"DE.Views.Toolbar.textMarginsWide": "Amplo",
+ "Common.UI.ColorButton.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.Toolbar.textNewColor": "Adicionar nova cor personalizada",
"DE.Views.Toolbar.textNextPage": "Próxima página",
"DE.Views.Toolbar.textNone": "Nenhum",
diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json
index 7d0355398..cceca509a 100644
--- a/apps/documenteditor/main/locale/ru.json
+++ b/apps/documenteditor/main/locale/ru.json
@@ -80,6 +80,7 @@
"Common.define.chartData.textPoint": "Точечная",
"Common.define.chartData.textStock": "Биржевая",
"Common.define.chartData.textSurface": "Поверхность",
+ "Common.Translation.warnFileLocked": "Документ используется другим приложением. Вы можете продолжить редактирование и сохранить его как копию.",
"Common.UI.Calendar.textApril": "Апрель",
"Common.UI.Calendar.textAugust": "Август",
"Common.UI.Calendar.textDecember": "Декабрь",
@@ -358,11 +359,33 @@
"Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи",
"Common.Views.SignSettingsDialog.textTitle": "Настройка подписи",
"Common.Views.SignSettingsDialog.txtEmpty": "Это поле необходимо заполнить",
+ "Common.Views.SymbolTableDialog.textCharacter": "Символ",
"Common.Views.SymbolTableDialog.textCode": "Код знака из Юникод (шестн.)",
+ "Common.Views.SymbolTableDialog.textCopyright": "Знак авторского права",
+ "Common.Views.SymbolTableDialog.textDCQuote": "Закрывающая двойная кавычка",
+ "Common.Views.SymbolTableDialog.textDOQuote": "Открывающая двойная кавычка",
+ "Common.Views.SymbolTableDialog.textEllipsis": "Горизонтальное многоточие",
+ "Common.Views.SymbolTableDialog.textEmDash": "Длинное тире",
+ "Common.Views.SymbolTableDialog.textEmSpace": "Длинный пробел",
+ "Common.Views.SymbolTableDialog.textEnDash": "Короткое тире",
+ "Common.Views.SymbolTableDialog.textEnSpace": "Короткий пробел",
"Common.Views.SymbolTableDialog.textFont": "Шрифт",
+ "Common.Views.SymbolTableDialog.textNBHyphen": "Неразрывный дефис",
+ "Common.Views.SymbolTableDialog.textNBSpace": "Неразрывный пробел",
+ "Common.Views.SymbolTableDialog.textPilcrow": "Знак абзаца",
+ "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 пробела",
"Common.Views.SymbolTableDialog.textRange": "Набор",
"Common.Views.SymbolTableDialog.textRecent": "Ранее использовавшиеся символы",
+ "Common.Views.SymbolTableDialog.textRegistered": "Зарегистрированный товарный знак",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Закрывающая одинарная кавычка",
+ "Common.Views.SymbolTableDialog.textSection": "Знак раздела",
+ "Common.Views.SymbolTableDialog.textShortcut": "Сочетание клавиш",
+ "Common.Views.SymbolTableDialog.textSHyphen": "Мягкий дефис",
+ "Common.Views.SymbolTableDialog.textSOQuote": "Открывающая одинарная кавычка",
+ "Common.Views.SymbolTableDialog.textSpecial": "Специальные символы",
+ "Common.Views.SymbolTableDialog.textSymbols": "Символы",
"Common.Views.SymbolTableDialog.textTitle": "Символ",
+ "Common.Views.SymbolTableDialog.textTradeMark": "Символ товарного знака",
"DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны. Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
@@ -388,6 +411,7 @@
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав. Пожалуйста, обратитесь к администратору Сервера документов.",
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
+ "DE.Controllers.Main.errorCompare": "Функция сравнения документов недоступна в режиме совместного редактирования.",
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору. Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.",
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка. Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
@@ -451,12 +475,15 @@
"DE.Controllers.Main.splitMaxColsErrorText": "Число столбцов должно быть меньше, чем %1.",
"DE.Controllers.Main.splitMaxRowsErrorText": "Число строк должно быть меньше, чем %1.",
"DE.Controllers.Main.textAnonymous": "Аноним",
+ "DE.Controllers.Main.textApplyAll": "Применить ко всем уравнениям",
"DE.Controllers.Main.textBuyNow": "Перейти на сайт",
"DE.Controllers.Main.textChangesSaved": "Все изменения сохранены",
"DE.Controllers.Main.textClose": "Закрыть",
"DE.Controllers.Main.textCloseTip": "Щелкните, чтобы закрыть эту подсказку",
"DE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
+ "DE.Controllers.Main.textConvertEquation": "Это уравнение создано в старой версии редактора уравнений, которая больше не поддерживается. Чтобы изменить это уравнение, его необходимо преобразовать в формат Office Math ML. Преобразовать сейчас?",
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
+ "DE.Controllers.Main.textLearnMore": "Подробнее",
"DE.Controllers.Main.textLoadingDocument": "Загрузка документа",
"DE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
"DE.Controllers.Main.textPaidFeature": "Платная функция",
@@ -479,6 +506,7 @@
"DE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы",
"DE.Controllers.Main.txtEditingMode": "Установка режима редактирования...",
"DE.Controllers.Main.txtEndOfFormula": "Непредвиденное завершение формулы",
+ "DE.Controllers.Main.txtEnterDate": "Введите дату.",
"DE.Controllers.Main.txtErrorLoadHistory": "Не удалось загрузить историю",
"DE.Controllers.Main.txtEvenPage": "Четная страница",
"DE.Controllers.Main.txtFiguredArrows": "Фигурные стрелки",
@@ -698,6 +726,7 @@
"DE.Controllers.Main.txtTableInd": "Индекс таблицы не может быть нулевым",
"DE.Controllers.Main.txtTableOfContents": "Оглавление",
"DE.Controllers.Main.txtTooLarge": "Число слишком большое для форматирования",
+ "DE.Controllers.Main.txtTypeEquation": "Место для уравнения.",
"DE.Controllers.Main.txtUndefBookmark": "Закладка не определена",
"DE.Controllers.Main.txtXAxis": "Ось X",
"DE.Controllers.Main.txtYAxis": "Ось Y",
@@ -721,8 +750,6 @@
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей. Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
- "DE.Controllers.Main.txtEnterDate": "Место для ввода даты.",
- "DE.Controllers.Main.txtTypeEquation": "Место для уравнения.",
"DE.Controllers.Navigation.txtBeginning": "Начало документа",
"DE.Controllers.Navigation.txtGotoBeginning": "Перейти в начало документа",
"DE.Controllers.Statusbar.textHasChanges": "Отслежены новые изменения",
@@ -1156,8 +1183,8 @@
"DE.Views.ControlSettingsDialog.textLang": "Язык",
"DE.Views.ControlSettingsDialog.textLock": "Блокировка",
"DE.Views.ControlSettingsDialog.textName": "Заголовок",
- "DE.Views.ControlSettingsDialog.textNewColor": "Пользовательский цвет",
"DE.Views.ControlSettingsDialog.textNone": "Без рамки",
+ "DE.Views.ControlSettingsDialog.textPlaceholder": "Заполнитель",
"DE.Views.ControlSettingsDialog.textShowAs": "Отображать",
"DE.Views.ControlSettingsDialog.textSystemColor": "Системный",
"DE.Views.ControlSettingsDialog.textTag": "Тег",
@@ -1172,6 +1199,12 @@
"DE.Views.CustomColumnsDialog.textSeparator": "Разделитель",
"DE.Views.CustomColumnsDialog.textSpacing": "Интервал между колонками",
"DE.Views.CustomColumnsDialog.textTitle": "Колонки",
+ "DE.Views.DateTimeDialog.confirmDefault": "Задать формат по умолчанию для {0}: \"{1}\"",
+ "DE.Views.DateTimeDialog.textDefault": "Установить по умолчанию",
+ "DE.Views.DateTimeDialog.textFormat": "Форматы",
+ "DE.Views.DateTimeDialog.textLang": "Язык",
+ "DE.Views.DateTimeDialog.textUpdate": "Обновлять автоматически",
+ "DE.Views.DateTimeDialog.txtTitle": "Дата и время",
"DE.Views.DocumentHolder.aboveText": "Выше",
"DE.Views.DocumentHolder.addCommentText": "Добавить комментарий",
"DE.Views.DocumentHolder.advancedFrameText": "Дополнительные параметры рамки",
@@ -1411,7 +1444,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Слева",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Поля",
"DE.Views.DropcapSettingsAdvanced.textMove": "Перемещать с текстом",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Пользовательский цвет",
"DE.Views.DropcapSettingsAdvanced.textNone": "Нет",
"DE.Views.DropcapSettingsAdvanced.textPage": "Страницы",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Абзаца",
@@ -1607,6 +1639,7 @@
"DE.Views.ImageSettingsAdvanced.textAngle": "Угол",
"DE.Views.ImageSettingsAdvanced.textArrows": "Стрелки",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Сохранять пропорции",
+ "DE.Views.ImageSettingsAdvanced.textAutofit": "Автоподбор",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Начальный размер",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Начальный стиль",
"DE.Views.ImageSettingsAdvanced.textBelow": "ниже",
@@ -1644,6 +1677,7 @@
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Относительное положение",
"DE.Views.ImageSettingsAdvanced.textRelative": "относительно",
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Относительная",
+ "DE.Views.ImageSettingsAdvanced.textResizeFit": "Подгонять размер фигуры под текст",
"DE.Views.ImageSettingsAdvanced.textRight": "Справа",
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Правого поля",
"DE.Views.ImageSettingsAdvanced.textRightOf": "справа от",
@@ -1652,6 +1686,7 @@
"DE.Views.ImageSettingsAdvanced.textShape": "Параметры фигуры",
"DE.Views.ImageSettingsAdvanced.textSize": "Размер",
"DE.Views.ImageSettingsAdvanced.textSquare": "Квадратный",
+ "DE.Views.ImageSettingsAdvanced.textTextBox": "Текстовое поле",
"DE.Views.ImageSettingsAdvanced.textTitle": "Изображение - дополнительные параметры",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Диаграмма - дополнительные параметры",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Фигура - дополнительные параметры",
@@ -1704,7 +1739,6 @@
"DE.Views.ListSettingsDialog.textCenter": "По центру",
"DE.Views.ListSettingsDialog.textLeft": "По левому краю",
"DE.Views.ListSettingsDialog.textLevel": "Уровень",
- "DE.Views.ListSettingsDialog.textNewColor": "Пользовательский цвет",
"DE.Views.ListSettingsDialog.textPreview": "Просмотр",
"DE.Views.ListSettingsDialog.textRight": "По правому краю",
"DE.Views.ListSettingsDialog.txtAlign": "Выравнивание",
@@ -1829,7 +1863,6 @@
"DE.Views.ParagraphSettings.textAuto": "Множитель",
"DE.Views.ParagraphSettings.textBackColor": "Цвет фона",
"DE.Views.ParagraphSettings.textExact": "Точно",
- "DE.Views.ParagraphSettings.textNewColor": "Пользовательский цвет",
"DE.Views.ParagraphSettings.txtAutoText": "Авто",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "В этом поле появятся позиции табуляции, которые вы зададите",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Все прописные",
@@ -1879,7 +1912,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Заполнитель",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Слева",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Уровень",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Пользовательский цвет",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Нет",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(нет)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Положение",
@@ -1940,7 +1972,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Отразить сверху вниз",
"DE.Views.ShapeSettings.textImageTexture": "Изображение или текстура",
"DE.Views.ShapeSettings.textLinear": "Линейный",
- "DE.Views.ShapeSettings.textNewColor": "Пользовательский цвет",
"DE.Views.ShapeSettings.textNoFill": "Без заливки",
"DE.Views.ShapeSettings.textPatternFill": "Узор",
"DE.Views.ShapeSettings.textRadial": "Радиальный",
@@ -2056,7 +2087,6 @@
"DE.Views.TableSettings.textHeader": "Заголовок",
"DE.Views.TableSettings.textHeight": "Высота",
"DE.Views.TableSettings.textLast": "Последний",
- "DE.Views.TableSettings.textNewColor": "Пользовательский цвет",
"DE.Views.TableSettings.textRows": "Строки",
"DE.Views.TableSettings.textSelectBorders": "Выберите границы, к которым надо применить выбранный стиль",
"DE.Views.TableSettings.textTemplate": "По шаблону",
@@ -2113,7 +2143,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Поля ячейки",
"DE.Views.TableSettingsAdvanced.textMeasure": "Единицы",
"DE.Views.TableSettingsAdvanced.textMove": "Перемещать с текстом",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Пользовательский цвет",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Только для выбранных ячеек",
"DE.Views.TableSettingsAdvanced.textOptions": "Параметры",
"DE.Views.TableSettingsAdvanced.textOverlap": "Разрешить перекрытие",
@@ -2166,7 +2195,6 @@
"DE.Views.TextArtSettings.textGradient": "Градиент",
"DE.Views.TextArtSettings.textGradientFill": "Градиентная заливка",
"DE.Views.TextArtSettings.textLinear": "Линейный",
- "DE.Views.TextArtSettings.textNewColor": "Пользовательский цвет",
"DE.Views.TextArtSettings.textNoFill": "Без заливки",
"DE.Views.TextArtSettings.textRadial": "Радиальный",
"DE.Views.TextArtSettings.textSelectTexture": "Выбрать",
@@ -2178,6 +2206,7 @@
"DE.Views.Toolbar.capBtnBlankPage": "Пустая страница",
"DE.Views.Toolbar.capBtnColumns": "Колонки",
"DE.Views.Toolbar.capBtnComment": "Комментарий",
+ "DE.Views.Toolbar.capBtnDateTime": "Дата и время",
"DE.Views.Toolbar.capBtnInsChart": "Диаграмма",
"DE.Views.Toolbar.capBtnInsControls": "Элементы управления содержимым",
"DE.Views.Toolbar.capBtnInsDropcap": "Буквица",
@@ -2294,6 +2323,7 @@
"DE.Views.Toolbar.tipControls": "Вставить элемент управления содержимым",
"DE.Views.Toolbar.tipCopy": "Копировать",
"DE.Views.Toolbar.tipCopyStyle": "Копировать стиль",
+ "DE.Views.Toolbar.tipDateTime": "Вставить текущую дату и время",
"DE.Views.Toolbar.tipDecFont": "Уменьшить размер шрифта",
"DE.Views.Toolbar.tipDecPrLeft": "Уменьшить отступ",
"DE.Views.Toolbar.tipDropCap": "Вставить буквицу",
diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json
index 6c05ef05a..16be7408b 100644
--- a/apps/documenteditor/main/locale/sk.json
+++ b/apps/documenteditor/main/locale/sk.json
@@ -772,7 +772,6 @@
"DE.Views.ChartSettings.txtTight": "Tesný",
"DE.Views.ChartSettings.txtTitle": "Graf",
"DE.Views.ChartSettings.txtTopAndBottom": "Hore a dole",
- "DE.Views.ControlSettingsDialog.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.CustomColumnsDialog.textColumns": "Počet stĺpcov",
"DE.Views.CustomColumnsDialog.textSeparator": "Rozdeľovač stĺpcov",
"DE.Views.CustomColumnsDialog.textSpacing": "Medzera medzi stĺpcami",
@@ -973,7 +972,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Vľavo",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Okraj",
"DE.Views.DropcapSettingsAdvanced.textMove": "Presunúť s textom",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.DropcapSettingsAdvanced.textNone": "Žiadny",
"DE.Views.DropcapSettingsAdvanced.textPage": "Stránka",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Odsek",
@@ -1283,7 +1281,6 @@
"DE.Views.ParagraphSettings.textAuto": "Násobky",
"DE.Views.ParagraphSettings.textBackColor": "Farba pozadia",
"DE.Views.ParagraphSettings.textExact": "Presne",
- "DE.Views.ParagraphSettings.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.ParagraphSettings.txtAutoText": "Automaticky",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všetko veľkým",
@@ -1314,7 +1311,6 @@
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Predvolený tabulátor",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Vľavo",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozícia",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Odstrániť",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Odstrániť všetko",
@@ -1366,7 +1362,6 @@
"DE.Views.ShapeSettings.textGradientFill": "Výplň prechodom",
"DE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra",
"DE.Views.ShapeSettings.textLinear": "Lineárny/čiarový",
- "DE.Views.ShapeSettings.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.ShapeSettings.textNoFill": "Bez výplne",
"DE.Views.ShapeSettings.textPatternFill": "Vzor",
"DE.Views.ShapeSettings.textRadial": "Kruhový/hviezdicovitý",
@@ -1442,7 +1437,6 @@
"DE.Views.TableSettings.textFirst": "Prvý",
"DE.Views.TableSettings.textHeader": "Hlavička",
"DE.Views.TableSettings.textLast": "Trvať/posledný",
- "DE.Views.TableSettings.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.TableSettings.textRows": "Riadky",
"DE.Views.TableSettings.textSelectBorders": "Vyberte orámovanie, ktoré chcete zmeniť podľa vyššie uvedeného štýlu",
"DE.Views.TableSettings.textTemplate": "Vybrať zo šablóny",
@@ -1490,7 +1484,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Okraje bunky",
"DE.Views.TableSettingsAdvanced.textMeasure": "Merať v",
"DE.Views.TableSettingsAdvanced.textMove": "Presunúť objekt s textom",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Len pre vybrané bunky",
"DE.Views.TableSettingsAdvanced.textOptions": "Možnosti",
"DE.Views.TableSettingsAdvanced.textOverlap": "Povoliť prekrývanie",
@@ -1543,7 +1536,6 @@
"DE.Views.TextArtSettings.textGradient": "Prechod",
"DE.Views.TextArtSettings.textGradientFill": "Výplň prechodom",
"DE.Views.TextArtSettings.textLinear": "Lineárny/čiarový",
- "DE.Views.TextArtSettings.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.TextArtSettings.textNoFill": "Bez výplne",
"DE.Views.TextArtSettings.textRadial": "Kruhový/hviezdicovitý",
"DE.Views.TextArtSettings.textSelectTexture": "Vybrať",
@@ -1608,6 +1600,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "US Štandard",
"DE.Views.Toolbar.textMarginsWide": "Široký",
"DE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu",
+ "Common.UI.ColorButton.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.Toolbar.textNextPage": "Ďalšia stránka",
"DE.Views.Toolbar.textNone": "Žiadny",
"DE.Views.Toolbar.textOddPage": "Nepárna strana",
diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json
index c0f1f4f83..270fb2c53 100644
--- a/apps/documenteditor/main/locale/sl.json
+++ b/apps/documenteditor/main/locale/sl.json
@@ -49,6 +49,7 @@
"Common.Controllers.ReviewChanges.textParaDeleted": "Paragraph Deleted ",
"Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted",
"Common.Controllers.ReviewChanges.textParaInserted": "Paragraph Inserted ",
+ "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Premaknjeno navzdol: ",
"Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Align right",
"Common.Controllers.ReviewChanges.textShape": "Shape",
@@ -157,6 +158,8 @@
"Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes",
+ "Common.Views.ReviewPopover.textMention": "+omemba bo dodelila uporabniku dostop do datoteke in poslano bo e-poštno sporočilo",
+ "Common.Views.ReviewPopover.textMentionNotify": "+omemba bo obvestila uporabnika preko e-pošte",
"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": "Neimenovan dokument",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
@@ -224,6 +227,7 @@
"DE.Controllers.Main.textAnonymous": "Anonimno",
"DE.Controllers.Main.textCloseTip": "Pritisni za zapiranje namiga",
"DE.Controllers.Main.textLoadingDocument": "Nalaganje dokumenta",
+ "DE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave",
"DE.Controllers.Main.textStrict": "Strict mode",
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode. Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.",
"DE.Controllers.Main.titleUpdateVersion": "Različica spremenjena",
@@ -241,6 +245,7 @@
"DE.Controllers.Main.txtNeedSynchronize": "Imate posodobitve",
"DE.Controllers.Main.txtRectangles": "Pravokotniki",
"DE.Controllers.Main.txtSeries": "Serije",
+ "DE.Controllers.Main.txtShape_noSmoking": "\"Ni\" simbol",
"DE.Controllers.Main.txtStarsRibbons": "Zvezde & Trakovi",
"DE.Controllers.Main.txtXAxis": "X os",
"DE.Controllers.Main.txtYAxis": "Y os",
@@ -714,6 +719,7 @@
"DE.Views.DocumentHolder.txtDeleteEq": "Delete equation",
"DE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char",
"DE.Views.DocumentHolder.txtDeleteRadical": "Delete radical",
+ "DE.Views.DocumentHolder.txtEmpty": "(Prazno)",
"DE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction",
"DE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction",
"DE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction",
@@ -800,7 +806,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Levo",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Meja",
"DE.Views.DropcapSettingsAdvanced.textMove": "Premakni z besedilom",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Dodaj novo barvo po meri",
"DE.Views.DropcapSettingsAdvanced.textNone": "nič",
"DE.Views.DropcapSettingsAdvanced.textPage": "Stran",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Odstavek",
@@ -1054,7 +1059,6 @@
"DE.Views.ParagraphSettings.textAuto": "Večkratno",
"DE.Views.ParagraphSettings.textBackColor": "Barva ozadja",
"DE.Views.ParagraphSettings.textExact": "Točno",
- "DE.Views.ParagraphSettings.textNewColor": "Dodaj novo barvo po meri",
"DE.Views.ParagraphSettings.txtAutoText": "Samodejno",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Določeni zavihki se bodo pojavili v tem polju",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Vse z veliko",
@@ -1085,7 +1089,7 @@
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Prevzeti zavihek",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Učinki",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Levo",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Dodaj novo barvo po meri",
+ "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nič)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Položaj",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Odstrani",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Odstrani vse",
@@ -1135,7 +1139,6 @@
"DE.Views.ShapeSettings.textGradientFill": "Polnjenje gradienta",
"DE.Views.ShapeSettings.textImageTexture": "Slika ali tekstura",
"DE.Views.ShapeSettings.textLinear": "Linearna",
- "DE.Views.ShapeSettings.textNewColor": "Dodaj novo barvo po meri",
"DE.Views.ShapeSettings.textNoFill": "Ni polnila",
"DE.Views.ShapeSettings.textPatternFill": "Vzorec",
"DE.Views.ShapeSettings.textRadial": "Radial",
@@ -1204,7 +1207,6 @@
"DE.Views.TableSettings.textFirst": "prvi",
"DE.Views.TableSettings.textHeader": "Glava",
"DE.Views.TableSettings.textLast": "zadnji",
- "DE.Views.TableSettings.textNewColor": "Dodaj novo barvo po meri",
"DE.Views.TableSettings.textRows": "Vrste",
"DE.Views.TableSettings.textSelectBorders": "Izberite meje katere želite spremeniti z uporabo zgoraj izbranega sloga",
"DE.Views.TableSettings.textTemplate": "Izberi z predloge",
@@ -1245,7 +1247,6 @@
"DE.Views.TableSettingsAdvanced.textMargin": "Meja",
"DE.Views.TableSettingsAdvanced.textMargins": "Meje celice",
"DE.Views.TableSettingsAdvanced.textMove": "Premakni objekt z besedilom",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Dodaj novo barvo po meri",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "le za izbrane celice",
"DE.Views.TableSettingsAdvanced.textOptions": "Možnosti",
"DE.Views.TableSettingsAdvanced.textOverlap": "Dovoli prekrivanje",
@@ -1287,7 +1288,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"DE.Views.TextArtSettings.textLinear": "Linear",
- "DE.Views.TextArtSettings.textNewColor": "Add New Custom Color",
"DE.Views.TextArtSettings.textNoFill": "No Fill",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
@@ -1328,6 +1328,7 @@
"DE.Views.Toolbar.textMarginsNormal": "Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "Dodaj novo barvo po meri",
+ "Common.UI.ColorButton.textNewColor": "Dodaj novo barvo po meri",
"DE.Views.Toolbar.textNextPage": "Naslednja stran",
"DE.Views.Toolbar.textNone": "nič",
"DE.Views.Toolbar.textOddPage": "Čudna stran",
diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json
index 07fe6b071..82707bc07 100644
--- a/apps/documenteditor/main/locale/sv.json
+++ b/apps/documenteditor/main/locale/sv.json
@@ -1036,7 +1036,6 @@
"DE.Views.ControlSettingsDialog.textLang": "Språk",
"DE.Views.ControlSettingsDialog.textLock": "Låsning",
"DE.Views.ControlSettingsDialog.textName": "Titel",
- "DE.Views.ControlSettingsDialog.textNewColor": "Lägg till ny egen färg",
"DE.Views.ControlSettingsDialog.textNone": "Ingen",
"DE.Views.ControlSettingsDialog.textShowAs": "Visa som",
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
@@ -1288,7 +1287,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Vänster",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Marginal",
"DE.Views.DropcapSettingsAdvanced.textMove": "Flytta med text",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Lägg till ny egen färg",
"DE.Views.DropcapSettingsAdvanced.textNone": "Ingen",
"DE.Views.DropcapSettingsAdvanced.textPage": "Sida",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Stycke",
@@ -1579,7 +1577,6 @@
"DE.Views.ListSettingsDialog.textCenter": "Centrera",
"DE.Views.ListSettingsDialog.textLeft": "Vänster",
"DE.Views.ListSettingsDialog.textLevel": "Nivå",
- "DE.Views.ListSettingsDialog.textNewColor": "Lägg till ny egen färg",
"DE.Views.ListSettingsDialog.textPreview": "Förhandsgranska",
"DE.Views.ListSettingsDialog.textRight": "Höger",
"DE.Views.ListSettingsDialog.txtAlign": "Justering",
@@ -1696,7 +1693,6 @@
"DE.Views.ParagraphSettings.textAuto": "Flera",
"DE.Views.ParagraphSettings.textBackColor": "Bakgrundsfärg",
"DE.Views.ParagraphSettings.textExact": "Exakt",
- "DE.Views.ParagraphSettings.textNewColor": "Lägg till ny egen färg",
"DE.Views.ParagraphSettings.txtAutoText": "auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "De angivna flikarna kommer att visas i det här fältet",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alla versaler",
@@ -1746,7 +1742,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Ledare",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Vänster",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Nivå",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Lägg till ny egen färg",
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ingen",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(inget)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
@@ -1807,7 +1802,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "Vänd vertikalt",
"DE.Views.ShapeSettings.textImageTexture": "Bild eller mönster",
"DE.Views.ShapeSettings.textLinear": "Linjär",
- "DE.Views.ShapeSettings.textNewColor": "Lägg till ny egen färg",
"DE.Views.ShapeSettings.textNoFill": "Ingen fyllning",
"DE.Views.ShapeSettings.textPatternFill": "Mönster",
"DE.Views.ShapeSettings.textRadial": "Radiell",
@@ -1922,7 +1916,6 @@
"DE.Views.TableSettings.textHeader": "Sidhuvud",
"DE.Views.TableSettings.textHeight": "Höjd",
"DE.Views.TableSettings.textLast": "Senaste",
- "DE.Views.TableSettings.textNewColor": "Lägg till ny egen färg",
"DE.Views.TableSettings.textRows": "Rader",
"DE.Views.TableSettings.textSelectBorders": "Välj ramar du vill ändra tillämpningen av stil valt ovan",
"DE.Views.TableSettings.textTemplate": "Välj från mall",
@@ -1977,7 +1970,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Cell marginal",
"DE.Views.TableSettingsAdvanced.textMeasure": "Mäta i",
"DE.Views.TableSettingsAdvanced.textMove": "Flytta objektet med texten",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Lägg till ny egen färg",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "För valda celler enbart",
"DE.Views.TableSettingsAdvanced.textOptions": "Alternativ",
"DE.Views.TableSettingsAdvanced.textOverlap": "Tillåt överlappning",
@@ -2030,7 +2022,6 @@
"DE.Views.TextArtSettings.textGradient": "Fyllning",
"DE.Views.TextArtSettings.textGradientFill": "Fyllning",
"DE.Views.TextArtSettings.textLinear": "Linjär",
- "DE.Views.TextArtSettings.textNewColor": "Lägg till ny egen färg",
"DE.Views.TextArtSettings.textNoFill": "Ingen fyllning",
"DE.Views.TextArtSettings.textRadial": "Radiell",
"DE.Views.TextArtSettings.textSelectTexture": "Välj",
@@ -2109,6 +2100,7 @@
"DE.Views.Toolbar.textMarginsNormal": "Normal",
"DE.Views.Toolbar.textMarginsWide": "Bred",
"DE.Views.Toolbar.textNewColor": "Lägg till ny egen färg",
+ "Common.UI.ColorButton.textNewColor": "Lägg till ny egen färg",
"DE.Views.Toolbar.textNextPage": "Nästa sida",
"DE.Views.Toolbar.textNoHighlight": "Ingen markering",
"DE.Views.Toolbar.textNone": "Ingen",
diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json
index 022bf5589..c46cb0664 100644
--- a/apps/documenteditor/main/locale/tr.json
+++ b/apps/documenteditor/main/locale/tr.json
@@ -949,7 +949,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Sol",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Kenar boşluğu",
"DE.Views.DropcapSettingsAdvanced.textMove": "Metinle taşı",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.DropcapSettingsAdvanced.textNone": "hiçbiri",
"DE.Views.DropcapSettingsAdvanced.textPage": "Sayfa",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraf",
@@ -1253,7 +1252,6 @@
"DE.Views.ParagraphSettings.textAuto": "Çoklu",
"DE.Views.ParagraphSettings.textBackColor": "Arka plan rengi",
"DE.Views.ParagraphSettings.textExact": "Tam olarak",
- "DE.Views.ParagraphSettings.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.ParagraphSettings.txtAutoText": "Otomatik",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Belirtilen sekmeler bu alanda görünecektir",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tüm başlıklar",
@@ -1285,7 +1283,6 @@
"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",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Kaldır",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hepsini Kaldır",
@@ -1338,7 +1335,6 @@
"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",
@@ -1413,7 +1409,6 @@
"DE.Views.TableSettings.textFirst": "ilk",
"DE.Views.TableSettings.textHeader": "Üst Başlık",
"DE.Views.TableSettings.textLast": "Son",
- "DE.Views.TableSettings.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.TableSettings.textRows": "Satırlar",
"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ç",
@@ -1462,7 +1457,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Hücre Kenar Boşluğu",
"DE.Views.TableSettingsAdvanced.textMeasure": "Birim seç",
"DE.Views.TableSettingsAdvanced.textMove": "Objeyi metinle taşı",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Sadece seçilen hücreler için",
"DE.Views.TableSettingsAdvanced.textOptions": "Seçenekler",
"DE.Views.TableSettingsAdvanced.textOverlap": "Çakışmaya izin ver",
@@ -1515,7 +1509,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"DE.Views.TextArtSettings.textLinear": "Linear",
- "DE.Views.TextArtSettings.textNewColor": "Add New Custom Color",
"DE.Views.TextArtSettings.textNoFill": "No Fill",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
@@ -1580,6 +1573,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "Yeni Özel Renk Ekle",
+ "Common.UI.ColorButton.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.Toolbar.textNextPage": "Sonraki Sayfa",
"DE.Views.Toolbar.textNone": "hiçbiri",
"DE.Views.Toolbar.textOddPage": "Tek Sayfa",
diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json
index ca27332e4..8ad6393cf 100644
--- a/apps/documenteditor/main/locale/uk.json
+++ b/apps/documenteditor/main/locale/uk.json
@@ -910,7 +910,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Лівий",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Грань",
"DE.Views.DropcapSettingsAdvanced.textMove": "Перемістити з текстом",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Додати новий спеціальний колір",
"DE.Views.DropcapSettingsAdvanced.textNone": "Жоден",
"DE.Views.DropcapSettingsAdvanced.textPage": "Сторінка",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Параграф",
@@ -1218,7 +1217,6 @@
"DE.Views.ParagraphSettings.textAuto": "Багаторазовий",
"DE.Views.ParagraphSettings.textBackColor": "Колір фону",
"DE.Views.ParagraphSettings.textExact": "Точно",
- "DE.Views.ParagraphSettings.textNewColor": "Додати новий спеціальний колір",
"DE.Views.ParagraphSettings.txtAutoText": "Авто",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Вказані вкладки з'являться в цьому полі",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Усі великі",
@@ -1249,7 +1247,6 @@
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Вкладка за умовчанням",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Лівий",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Додати новий спеціальний колір",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Позиція",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Видалити",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Видалити усе",
@@ -1300,7 +1297,6 @@
"DE.Views.ShapeSettings.textGradientFill": "Заповнити градієнт",
"DE.Views.ShapeSettings.textImageTexture": "Зображення або текстура",
"DE.Views.ShapeSettings.textLinear": "Лінійний",
- "DE.Views.ShapeSettings.textNewColor": "Додати новий спеціальний колір",
"DE.Views.ShapeSettings.textNoFill": "Немає заповнення",
"DE.Views.ShapeSettings.textPatternFill": "Візерунок",
"DE.Views.ShapeSettings.textRadial": "Радіальний",
@@ -1370,7 +1366,6 @@
"DE.Views.TableSettings.textFirst": "перший",
"DE.Views.TableSettings.textHeader": "Заголовок",
"DE.Views.TableSettings.textLast": "Останній",
- "DE.Views.TableSettings.textNewColor": "Додати новий спеціальний колір",
"DE.Views.TableSettings.textRows": "Рядки",
"DE.Views.TableSettings.textSelectBorders": "Виберіть кордони, які ви хочете змінити, застосувавши обраний вище стиль",
"DE.Views.TableSettings.textTemplate": "Виберіть з шаблону",
@@ -1418,7 +1413,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Поля клітини",
"DE.Views.TableSettingsAdvanced.textMeasure": "Вимірювати в",
"DE.Views.TableSettingsAdvanced.textMove": "Перемістити об'єкт з текстом",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Додати новий спеціальний колір",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Тільки для вибраних клітин",
"DE.Views.TableSettingsAdvanced.textOptions": "Опції",
"DE.Views.TableSettingsAdvanced.textOverlap": "Дозволити перекриття",
@@ -1471,7 +1465,6 @@
"DE.Views.TextArtSettings.textGradient": "Градієнт",
"DE.Views.TextArtSettings.textGradientFill": "Заповнити градієнт",
"DE.Views.TextArtSettings.textLinear": "Лінійний",
- "DE.Views.TextArtSettings.textNewColor": "Додати новий спеціальний колір",
"DE.Views.TextArtSettings.textNoFill": "Немає заповнення",
"DE.Views.TextArtSettings.textRadial": "Радіальний",
"DE.Views.TextArtSettings.textSelectTexture": "Обрати",
@@ -1536,6 +1529,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Нормальний US",
"DE.Views.Toolbar.textMarginsWide": "Широкий",
"DE.Views.Toolbar.textNewColor": "Додати новий спеціальний колір",
+ "Common.UI.ColorButton.textNewColor": "Додати новий спеціальний колір",
"DE.Views.Toolbar.textNextPage": "Наступна сторінка",
"DE.Views.Toolbar.textNone": "Жоден",
"DE.Views.Toolbar.textOddPage": "Непарна сторінка",
diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json
index d1a254163..2c23bea96 100644
--- a/apps/documenteditor/main/locale/vi.json
+++ b/apps/documenteditor/main/locale/vi.json
@@ -907,7 +907,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "Trái",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Lề",
"DE.Views.DropcapSettingsAdvanced.textMove": "Di chuyển cùng văn bản",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "Thêm màu tùy chỉnh mới",
"DE.Views.DropcapSettingsAdvanced.textNone": "Không",
"DE.Views.DropcapSettingsAdvanced.textPage": "Trang",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Đoạn văn bản",
@@ -1203,7 +1202,6 @@
"DE.Views.ParagraphSettings.textAuto": "Nhiều",
"DE.Views.ParagraphSettings.textBackColor": "Màu nền",
"DE.Views.ParagraphSettings.textExact": "Chính xác",
- "DE.Views.ParagraphSettings.textNewColor": "Thêm màu tùy chỉnh mới",
"DE.Views.ParagraphSettings.txtAutoText": "Tự động",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Các tab được chỉ định sẽ xuất hiện trong trường này",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tất cả Drop cap",
@@ -1234,7 +1232,6 @@
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab mặc định",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Hiệu ứng",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Trái",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Thêm màu tùy chỉnh mới",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Vị trí",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Xóa",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Xóa tất cả",
@@ -1285,7 +1282,6 @@
"DE.Views.ShapeSettings.textGradientFill": "Đổ màu Gradient",
"DE.Views.ShapeSettings.textImageTexture": "Hình ảnh hoặc Texture",
"DE.Views.ShapeSettings.textLinear": "Tuyến tính",
- "DE.Views.ShapeSettings.textNewColor": "Thêm màu tùy chỉnh mới",
"DE.Views.ShapeSettings.textNoFill": "Không đổ màu",
"DE.Views.ShapeSettings.textPatternFill": "Hoa văn",
"DE.Views.ShapeSettings.textRadial": "Tỏa tròn",
@@ -1354,7 +1350,6 @@
"DE.Views.TableSettings.textFirst": "Đầu tiên",
"DE.Views.TableSettings.textHeader": "Header",
"DE.Views.TableSettings.textLast": "Cuối cùng",
- "DE.Views.TableSettings.textNewColor": "Thêm màu tùy chỉnh mới",
"DE.Views.TableSettings.textRows": "Hàng",
"DE.Views.TableSettings.textSelectBorders": "Chọn đường viền bạn muốn thay đổi áp dụng kiểu đã chọn ở trên",
"DE.Views.TableSettings.textTemplate": "Chọn từ Template",
@@ -1402,7 +1397,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "Lề của ô",
"DE.Views.TableSettingsAdvanced.textMeasure": "Đo trong",
"DE.Views.TableSettingsAdvanced.textMove": "Di chuyển đối tượng cùng văn bản",
- "DE.Views.TableSettingsAdvanced.textNewColor": "Thêm màu tùy chỉnh mới",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Chỉ cho các ô đã chọn",
"DE.Views.TableSettingsAdvanced.textOptions": "Tùy chọn",
"DE.Views.TableSettingsAdvanced.textOverlap": "Cho phép chồng chéo",
@@ -1455,7 +1449,6 @@
"DE.Views.TextArtSettings.textGradient": "Gradient",
"DE.Views.TextArtSettings.textGradientFill": "Đổ màu Gradient",
"DE.Views.TextArtSettings.textLinear": "Tuyến tính",
- "DE.Views.TextArtSettings.textNewColor": "Thêm màu tùy chỉnh mới",
"DE.Views.TextArtSettings.textNoFill": "Không đổ màu",
"DE.Views.TextArtSettings.textRadial": "Tỏa tròn",
"DE.Views.TextArtSettings.textSelectTexture": "Chọn",
@@ -1520,6 +1513,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "Mỹ Thường",
"DE.Views.Toolbar.textMarginsWide": "Rộng",
"DE.Views.Toolbar.textNewColor": "Thêm màu tùy chỉnh mới",
+ "Common.UI.ColorButton.textNewColor": "Thêm màu tùy chỉnh mới",
"DE.Views.Toolbar.textNextPage": "Trang tiếp theo",
"DE.Views.Toolbar.textNone": "Không",
"DE.Views.Toolbar.textOddPage": "Trang lẻ",
diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json
index 541b73daf..8bcac9ea1 100644
--- a/apps/documenteditor/main/locale/zh.json
+++ b/apps/documenteditor/main/locale/zh.json
@@ -1153,7 +1153,6 @@
"DE.Views.ControlSettingsDialog.textLang": "语言",
"DE.Views.ControlSettingsDialog.textLock": "锁定",
"DE.Views.ControlSettingsDialog.textName": "标题",
- "DE.Views.ControlSettingsDialog.textNewColor": "添加新的自定义颜色",
"DE.Views.ControlSettingsDialog.textNone": "无",
"DE.Views.ControlSettingsDialog.textShowAs": "显示为",
"DE.Views.ControlSettingsDialog.textSystemColor": "系统",
@@ -1408,7 +1407,6 @@
"DE.Views.DropcapSettingsAdvanced.textLeft": "左",
"DE.Views.DropcapSettingsAdvanced.textMargin": "边",
"DE.Views.DropcapSettingsAdvanced.textMove": "文字移动",
- "DE.Views.DropcapSettingsAdvanced.textNewColor": "添加新的自定义颜色",
"DE.Views.DropcapSettingsAdvanced.textNone": "没有",
"DE.Views.DropcapSettingsAdvanced.textPage": "页面",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "段",
@@ -1701,7 +1699,6 @@
"DE.Views.ListSettingsDialog.textCenter": "中心",
"DE.Views.ListSettingsDialog.textLeft": "左",
"DE.Views.ListSettingsDialog.textLevel": "级别",
- "DE.Views.ListSettingsDialog.textNewColor": "添加新的自定义颜色",
"DE.Views.ListSettingsDialog.textPreview": "预览",
"DE.Views.ListSettingsDialog.textRight": "右",
"DE.Views.ListSettingsDialog.txtAlign": "校准",
@@ -1824,7 +1821,6 @@
"DE.Views.ParagraphSettings.textAuto": "多",
"DE.Views.ParagraphSettings.textBackColor": "背景颜色",
"DE.Views.ParagraphSettings.textExact": "精确地",
- "DE.Views.ParagraphSettings.textNewColor": "添加新的自定义颜色",
"DE.Views.ParagraphSettings.txtAutoText": "自动",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "指定的选项卡将显示在此字段中",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大写",
@@ -1873,7 +1869,6 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "前导符",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "左",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "级别",
- "DE.Views.ParagraphSettingsAdvanced.textNewColor": "添加新的自定义颜色",
"DE.Views.ParagraphSettingsAdvanced.textNone": "没有",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(无)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "位置",
@@ -1934,7 +1929,6 @@
"DE.Views.ShapeSettings.textHintFlipV": "垂直翻转",
"DE.Views.ShapeSettings.textImageTexture": "图片或纹理",
"DE.Views.ShapeSettings.textLinear": "线性",
- "DE.Views.ShapeSettings.textNewColor": "添加新的自定义颜色",
"DE.Views.ShapeSettings.textNoFill": "没有填充",
"DE.Views.ShapeSettings.textPatternFill": "模式",
"DE.Views.ShapeSettings.textRadial": "径向",
@@ -2050,7 +2044,6 @@
"DE.Views.TableSettings.textHeader": "头",
"DE.Views.TableSettings.textHeight": "高度",
"DE.Views.TableSettings.textLast": "最后",
- "DE.Views.TableSettings.textNewColor": "添加新的自定义颜色",
"DE.Views.TableSettings.textRows": "行",
"DE.Views.TableSettings.textSelectBorders": "选择您要更改应用样式的边框",
"DE.Views.TableSettings.textTemplate": "从模板中选择",
@@ -2107,7 +2100,6 @@
"DE.Views.TableSettingsAdvanced.textMargins": "元数据边缘",
"DE.Views.TableSettingsAdvanced.textMeasure": "测量",
"DE.Views.TableSettingsAdvanced.textMove": "用文本移动对象",
- "DE.Views.TableSettingsAdvanced.textNewColor": "添加新的自定义颜色",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "仅适用于选定的单元格",
"DE.Views.TableSettingsAdvanced.textOptions": "选项",
"DE.Views.TableSettingsAdvanced.textOverlap": "允许重叠",
@@ -2160,7 +2152,6 @@
"DE.Views.TextArtSettings.textGradient": "渐变",
"DE.Views.TextArtSettings.textGradientFill": "渐变填充",
"DE.Views.TextArtSettings.textLinear": "线性",
- "DE.Views.TextArtSettings.textNewColor": "添加新的自定义颜色",
"DE.Views.TextArtSettings.textNoFill": "没有填充",
"DE.Views.TextArtSettings.textRadial": "径向",
"DE.Views.TextArtSettings.textSelectTexture": "请选择",
@@ -2241,6 +2232,7 @@
"DE.Views.Toolbar.textMarginsUsNormal": "美国标准",
"DE.Views.Toolbar.textMarginsWide": "宽",
"DE.Views.Toolbar.textNewColor": "添加新的自定义颜色",
+ "Common.UI.ColorButton.textNewColor": "添加新的自定义颜色",
"DE.Views.Toolbar.textNextPage": "下一页",
"DE.Views.Toolbar.textNoHighlight": "无高亮",
"DE.Views.Toolbar.textNone": "无",
diff --git a/apps/documenteditor/main/resources/img/file-recent.png b/apps/documenteditor/main/resources/img/file-recent.png
deleted file mode 100644
index eba0c2bd3..000000000
Binary files a/apps/documenteditor/main/resources/img/file-recent.png and /dev/null differ
diff --git a/apps/documenteditor/main/resources/img/file-recent@2x.png b/apps/documenteditor/main/resources/img/file-recent@2x.png
deleted file mode 100644
index 2cd5361c2..000000000
Binary files a/apps/documenteditor/main/resources/img/file-recent@2x.png and /dev/null differ
diff --git a/apps/documenteditor/main/resources/img/recent-file.svg b/apps/documenteditor/main/resources/img/recent-file.svg
new file mode 100644
index 000000000..d4743ea76
--- /dev/null
+++ b/apps/documenteditor/main/resources/img/recent-file.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-higlight.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-higlight.png
index 120f35613..3150a56b0 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-higlight.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-higlight.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-mailmerge.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-mailmerge.png
index d7c8c847f..5756b4966 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-mailmerge.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-mailmerge.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-menu-header.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-menu-header.png
index 2099b1d31..755824efd 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-menu-header.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-menu-header.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-multilevels.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-multilevels.png
index 3ef428059..0fdf99822 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-multilevels.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-multilevels.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-plaintext.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-plaintext.png
index a06586d6f..19d241035 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-plaintext.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-plaintext.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-remove.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-remove.png
index a01ae131e..25ff8e812 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-remove.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-remove.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-richtext.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-richtext.png
index 0e2b571a8..90efc38fb 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-richtext.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/cc-richtext.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-left.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-left.png
index 3349221ec..718d59b0b 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-left.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-left.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-one.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-one.png
index 334ddde32..3e6d9519a 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-one.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-one.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-right.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-right.png
index 4b1d7c9d4..e83695c3a 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-right.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-right.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-three.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-three.png
index 94141dbeb..887ec8a11 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-three.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-three.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-two.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-two.png
index daf2a1161..bf355e754 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-two.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/columns-two.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/dropcap-inmargin.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/dropcap-inmargin.png
index 90b34b2f6..2b8716c10 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/dropcap-inmargin.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/dropcap-inmargin.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/dropcap-intext.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/dropcap-intext.png
index c0c17b5f4..2887f8879 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/dropcap-intext.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/dropcap-intext.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-behind.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-behind.png
index 003c08c56..928b7e6ca 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-behind.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-behind.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-infront.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-infront.png
index 8f05371c0..08b6c50ec 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-infront.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-infront.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-inline.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-inline.png
index 188880bc1..f56e4d559 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-inline.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-inline.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-square.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-square.png
index 03d1c6d0f..be6828378 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-square.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-square.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-through.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-through.png
index 91a175042..f252026f4 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-through.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-through.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-tight.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-tight.png
index 034f82d43..4ce614615 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-tight.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-tight.png differ
diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-topandbottom.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-topandbottom.png
index 4ee37e9c5..65477dfc3 100644
Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-topandbottom.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/wrap-topandbottom.png differ
diff --git a/apps/documenteditor/main/resources/less/filemenu.less b/apps/documenteditor/main/resources/less/filemenu.less
index 8cf1d774f..1601c15e3 100644
--- a/apps/documenteditor/main/resources/less/filemenu.less
+++ b/apps/documenteditor/main/resources/less/filemenu.less
@@ -215,8 +215,7 @@
}
.recent-wrap {
- height: 65px;
- padding: 10px;
+ padding: 5px 10px;
cursor: pointer;
font-size: 12px;
@@ -227,11 +226,13 @@
.recent-icon {
float: left;
- width: 35px;
- height: 45px;
- margin-right: 10px;
- .background-ximage-v2('file-recent.png', 72px, @commonimage: false);
- background-position: 0 0;
+ width: 25px;
+ height: 25px;
+ margin-top: 1px;
+ svg {
+ width: 100%;
+ height: 100%;
+ }
}
> div:not(:first-child) {
@@ -241,10 +242,6 @@
text-overflow: ellipsis;
}
- .file-name {
- margin: 5px 0;
- }
-
.file-info {
color: #999;
}
diff --git a/apps/documenteditor/mobile/app/controller/Main.js b/apps/documenteditor/mobile/app/controller/Main.js
index 7de2d59fe..1a0faebbc 100644
--- a/apps/documenteditor/mobile/app/controller/Main.js
+++ b/apps/documenteditor/mobile/app/controller/Main.js
@@ -224,6 +224,14 @@ define([
if (!me.editorConfig.customization || !(me.editorConfig.customization.loaderName || me.editorConfig.customization.loaderLogo))
$('#editor-container').append('');
+ var value = Common.localStorage.getItem("de-mobile-macros-mode");
+ if (value === null) {
+ value = this.editorConfig.customization ? this.editorConfig.customization.macrosMode : 'warn';
+ value = (value == 'enable') ? 1 : (value == 'disable' ? 2 : 0);
+ } else
+ value = parseInt(value);
+ Common.Utils.InternalSettings.set("de-mobile-macros-mode", value);
+
// if (this.appOptions.location == 'us' || this.appOptions.location == 'ca')
// Common.Utils.Metric.setDefaultMetric(Common.Utils.Metric.c_MetricUnits.inch);
},
@@ -255,6 +263,11 @@ define([
docInfo.put_Permissions(_permissions);
docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys);
+ var enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false);
+ docInfo.asc_putIsEnabledMacroses(!!enable);
+ enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins!==false);
+ docInfo.asc_putIsEnabledPlugins(!!enable);
+
var type = /^(?:(pdf|djvu|xps))$/.exec(data.doc.fileType);
if (type && typeof type[1] === 'string') {
this.permissions.edit = this.permissions.review = false;
@@ -263,6 +276,7 @@ define([
this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this));
this.api.asc_registerCallback('asc_onLicenseChanged', _.bind(this.onLicenseChanged, this));
+ this.api.asc_registerCallback('asc_onRunAutostartMacroses', _.bind(this.onRunAutostartMacroses, this));
this.api.asc_setDocInfo(docInfo);
this.api.asc_getEditorPermissions(this.editorConfig.licenseUrl, this.editorConfig.customerId);
@@ -1369,6 +1383,51 @@ define([
return false;
},
+ onRunAutostartMacroses: function() {
+ var me = this,
+ enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false);
+ if (enable) {
+ var value = Common.Utils.InternalSettings.get("de-mobile-macros-mode");
+ if (value==1)
+ this.api.asc_runAutostartMacroses();
+ else if (value === 0) {
+ uiApp.modal({
+ title: this.notcriticalErrorTitle,
+ text: this.textHasMacros,
+ afterText: '' +
+ ' ' +
+ '' +
+ '' + this.textRemember + ' ' +
+ '
' +
+ ' ',
+ buttons: [{
+ text: this.textYes,
+ onClick: function () {
+ var dontshow = $('input[name="checkbox-show-macros"]').prop('checked');
+ if (dontshow) {
+ Common.Utils.InternalSettings.set("de-mobile-macros-mode", 1);
+ Common.localStorage.setItem("de-mobile-macros-mode", 1);
+ }
+ setTimeout(function() {
+ me.api.asc_runAutostartMacroses();
+ }, 1);
+ }
+ },
+ {
+ text: this.textNo,
+ onClick: function () {
+ var dontshow = $('input[name="checkbox-show-macros"]').prop('checked');
+ if (dontshow) {
+ Common.Utils.InternalSettings.set("de-mobile-macros-mode", 2);
+ Common.localStorage.setItem("de-mobile-macros-mode", 2);
+ }
+ }
+ }]
+ });
+ }
+ }
+ },
+
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.',
criticalErrorTitle: 'Error',
notcriticalErrorTitle: 'Warning',
@@ -1496,7 +1555,11 @@ define([
waitText: 'Please, wait...',
errorFileSizeExceed: 'The file size exceeds the limitation set for your server. Please contact your Document Server administrator for details.',
errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed. Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.',
- errorOpensource: 'Files can be opened for viewing only. Mobile web editors are not available in the Open Source version.'
+ errorOpensource: 'Files can be opened for viewing only. Mobile web editors are not available in the Open Source version.',
+ textHasMacros: 'The file contains automatic macros. Do you want to run macros?',
+ textRemember: 'Remember my choice',
+ textYes: 'Yes',
+ textNo: 'No'
}
})(), DE.Controllers.Main || {}))
});
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/app/controller/Settings.js b/apps/documenteditor/mobile/app/controller/Settings.js
index c058d65bd..3b59d6245 100644
--- a/apps/documenteditor/mobile/app/controller/Settings.js
+++ b/apps/documenteditor/mobile/app/controller/Settings.js
@@ -254,6 +254,9 @@ define([
} else if ('#margins-view' == pageId) {
me.initPageMargin();
Common.Utils.addScrollIfNeed('.page[data-page=margin-view]', '.page[data-page=margin-view] .page-content');
+ } else if ('#macros-settings-view' == pageId) {
+ me.initPageMacrosSettings();
+ Common.Utils.addScrollIfNeed('.page[data-page=macros-settings-view]', '.page[data-page=macros-settings-view] .page-content');
} else {
$('#settings-readermode input:checkbox').attr('checked', Common.SharedSettings.get('readerMode'));
$('#settings-search').single('click', _.bind(me.onSearch, me));
@@ -273,6 +276,20 @@ define([
}
},
+ initPageMacrosSettings: function() {
+ var me = this,
+ $pageMacrosSettings = $('.page[data-page="macros-settings-view"] input:radio[name=macros-settings]'),
+ value = Common.Utils.InternalSettings.get("de-mobile-macros-mode") || 0;
+ $pageMacrosSettings.single('change', _.bind(me.onChangeMacrosSettings, me));
+ $pageMacrosSettings.val([value]);
+ },
+
+ onChangeMacrosSettings: function(e) {
+ var value = parseInt($(e.currentTarget).val());
+ Common.Utils.InternalSettings.set("de-mobile-macros-mode", value);
+ Common.localStorage.setItem("de-mobile-macros-mode", value);
+ },
+
onChangeDisplayComments: function(e) {
var displayComments = $(e.currentTarget).is(':checked');
if (!displayComments) {
diff --git a/apps/documenteditor/mobile/app/controller/add/AddOther.js b/apps/documenteditor/mobile/app/controller/add/AddOther.js
index 24f9b2553..1eaa9c01d 100644
--- a/apps/documenteditor/mobile/app/controller/add/AddOther.js
+++ b/apps/documenteditor/mobile/app/controller/add/AddOther.js
@@ -91,10 +91,13 @@ define([
},
initEvents: function () {
- this.view.hideInsertComments = this.isHideInsertComment();
+ this.setDisableMenuItem();
},
- isHideInsertComment: function() {
+ setDisableMenuItem: function() {
+ var isDisableComment = true,
+ isDisableBreak = false,
+ isDisableFootnote = false;
var stack = this.api.getSelectedElements();
var isText = false,
isTable = false,
@@ -133,9 +136,14 @@ define([
});
if (stack.length > 0) {
var isObject = isShape || isChart || isImage || isTable;
- return (this.api.can_AddQuotedComment() === false || lockedText || lockedTable || lockedImage || lockedHeader || (!isText && isObject));
+ isDisableComment = (this.api.can_AddQuotedComment() === false || lockedText || lockedTable || lockedImage || lockedHeader || (!isText && isObject));
+ if (isShape && isText) {
+ isDisableBreak = isDisableFootnote = true;
+ }
}
- return true;
+ this.view.isDisableComment = isDisableComment;
+ this.view.isDisableBreak = isDisableBreak;
+ this.view.isDisableFootnote = isDisableFootnote;
},
onPageShow: function (view, pageId) {
@@ -194,7 +202,7 @@ define([
},
onDoneComment: function(documentFlag) {
- var value = $('#comment-text').val();
+ var value = $('#comment-text').val().trim();
if (value.length > 0) {
DE.getController('Common.Controllers.Collaboration').onAddNewComment(value, documentFlag);
DE.getController('AddContainer').hideModal();
diff --git a/apps/documenteditor/mobile/app/template/AddOther.template b/apps/documenteditor/mobile/app/template/AddOther.template
index b67fdcf51..773bdfd58 100644
--- a/apps/documenteditor/mobile/app/template/AddOther.template
+++ b/apps/documenteditor/mobile/app/template/AddOther.template
@@ -38,7 +38,7 @@
-
+
@@ -872,4 +886,55 @@
+
+
+
+
+
+
+
+
<%= scope.textMacrosSettings %>
+
+
+
+
+
+
+
+
+
+
+ <% if (android) { %>
<% } %>
+
+
<%= scope.textDisableAll %>
+
<%= scope.textDisableAllMacrosWithoutNotification %>
+
+
+
+
+
+
+ <% if (android) { %>
<% } %>
+
+
<%= scope.textShowNotification %>
+
<%= scope.textDisableAllMacrosWithNotification %>
+
+
+
+
+
+
+ <% if (android) { %>
<% } %>
+
+
<%= scope.textEnableAll %>
+
<%= scope.textEnableAllMacrosWithoutNotification %>
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/app/view/Settings.js b/apps/documenteditor/mobile/app/view/Settings.js
index 4d34d2997..9f665b35f 100644
--- a/apps/documenteditor/mobile/app/view/Settings.js
+++ b/apps/documenteditor/mobile/app/view/Settings.js
@@ -59,7 +59,8 @@ define([
_canHelp = true,
_canPrint = false,
_canReview = false,
- _isReviewOnly = false;
+ _isReviewOnly = false,
+ _isShowMacros = true;
return {
// el: '.view-main',
@@ -120,6 +121,7 @@ define([
if (mode.customization) {
_canHelp = (mode.customization.help!==false);
+ _isShowMacros = (mode.customization.macros!==false);
}
},
@@ -149,6 +151,7 @@ define([
if (!_canPrint) $layour.find('#settings-print').hide();
if (!_canReview) $layour.find('#settings-review').hide();
if (_isReviewOnly) $layour.find('#settings-review').addClass('disabled');
+ if (!_isShowMacros) $layour.find('#settings-macros').hide();
return $layour.html();
}
@@ -332,7 +335,14 @@ define([
textUploaded: 'Uploaded',
textLastModified: 'Last Modified',
textLastModifiedBy: 'Last Modified By',
- textCreated: 'Created'
+ textCreated: 'Created',
+ textMacrosSettings: 'Macros Settings',
+ textDisableAll: 'Disable All',
+ textDisableAllMacrosWithoutNotification: 'Disable all macros without notification',
+ textShowNotification: 'Show Notification',
+ textDisableAllMacrosWithNotification: 'Disable all macros with notification',
+ textEnableAll: 'Enable All',
+ textEnableAllMacrosWithoutNotification: 'Enable all macros without notification'
}
diff --git a/apps/documenteditor/mobile/app/view/add/AddOther.js b/apps/documenteditor/mobile/app/view/add/AddOther.js
index 61947bff8..28547d3c9 100644
--- a/apps/documenteditor/mobile/app/view/add/AddOther.js
+++ b/apps/documenteditor/mobile/app/view/add/AddOther.js
@@ -68,14 +68,24 @@ define([
$('#add-other-link').single('click', _.bind(me.showLink, me));
$('#add-other-pagenumber').single('click', _.bind(me.showPagePosition, me));
- $('#add-other-footnote').single('click', _.bind(me.showPageFootnote, me));
- $('#add-other-break').single('click', _.bind(me.showPageBreak, me));
- if (this.hideInsertComments) {
- $('#item-comment').hide();
+ if (this.isDisableComment) {
+ $('#item-comment').addClass('disabled');
} else {
- $('#item-comment').show();
+ $('#item-comment').removeClass('disabled');
$('#add-other-comment').single('click', _.bind(me.showPageComment, me));
}
+ if (this.isDisableBreak) {
+ $('#item-break').addClass('disabled');
+ } else {
+ $('#item-break').removeClass('disabled');
+ $('#add-other-break').single('click', _.bind(me.showPageBreak, me));
+ }
+ if (this.isDisableFootnote) {
+ $('#item-footnote').addClass('disabled');
+ } else {
+ $('#item-footnote').removeClass('disabled');
+ $('#add-other-footnote').single('click', _.bind(me.showPageFootnote, me));
+ }
me.initControls();
},
diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json
index 43ff7b5d2..e37ca1de4 100644
--- a/apps/documenteditor/mobile/locale/bg.json
+++ b/apps/documenteditor/mobile/locale/bg.json
@@ -6,16 +6,16 @@
"Common.Controllers.Collaboration.textBreakBefore": "Прекъсване на страницата преди",
"Common.Controllers.Collaboration.textCaps": "All caps",
"Common.Controllers.Collaboration.textCenter": "Подравняване на центъра",
- "Common.Controllers.Collaboration.textChart": "диаграма",
+ "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.textEquation": "Уравнение",
"Common.Controllers.Collaboration.textExact": "точно",
"Common.Controllers.Collaboration.textFirstLine": "Първа линия",
- "Common.Controllers.Collaboration.textFormatted": "форматиран",
+ "Common.Controllers.Collaboration.textFormatted": "Форматиран",
"Common.Controllers.Collaboration.textHighlight": "Цвят за осветляване",
"Common.Controllers.Collaboration.textImage": "Изображение",
"Common.Controllers.Collaboration.textIndentLeft": "Отстъп вляво",
@@ -41,7 +41,7 @@
"Common.Controllers.Collaboration.textParaMoveFromDown": "Преместени надолу: ",
"Common.Controllers.Collaboration.textParaMoveFromUp": "Преместени нагоре: ",
"Common.Controllers.Collaboration.textParaMoveTo": "<Ь>Преместен ",
- "Common.Controllers.Collaboration.textPosition": "позиция",
+ "Common.Controllers.Collaboration.textPosition": "Позиция",
"Common.Controllers.Collaboration.textRight": "Подравняване в дясно",
"Common.Controllers.Collaboration.textShape": "Форма",
"Common.Controllers.Collaboration.textShd": "Цвят на фона",
@@ -64,7 +64,7 @@
"Common.Utils.Metric.txtCm": "см",
"Common.Utils.Metric.txtPt": "pt",
"Common.Views.Collaboration.textAcceptAllChanges": "Приеми Всички Промени",
- "Common.Views.Collaboration.textBack": "обратно",
+ "Common.Views.Collaboration.textBack": "Обратно",
"Common.Views.Collaboration.textChange": "Преглед на промяната",
"Common.Views.Collaboration.textCollaboration": "Сътрудничество",
"Common.Views.Collaboration.textDisplayMode": "Режим на дисплея",
@@ -75,7 +75,7 @@
"Common.Views.Collaboration.textOriginal": "Оригинал",
"Common.Views.Collaboration.textRejectAllChanges": "Отхвърляне на всички промени",
"Common.Views.Collaboration.textReview": "Проследяване на промените",
- "Common.Views.Collaboration.textReviewing": "преглед",
+ "Common.Views.Collaboration.textReviewing": "Преглед",
"Common.Views.Collaboration.textСomments": "Коментари",
"DE.Controllers.AddContainer.textImage": "Изображение",
"DE.Controllers.AddContainer.textOther": "Друг",
@@ -105,7 +105,7 @@
"DE.Controllers.DocumentHolder.menuSplit": "Разделена клетка",
"DE.Controllers.DocumentHolder.sheetCancel": "Отказ",
"DE.Controllers.DocumentHolder.textCancel": "Откажи",
- "DE.Controllers.DocumentHolder.textColumns": "колони",
+ "DE.Controllers.DocumentHolder.textColumns": "Колони",
"DE.Controllers.DocumentHolder.textGuest": "Гост",
"DE.Controllers.DocumentHolder.textRows": "Редове",
"DE.Controllers.EditContainer.textChart": "Диаграма",
@@ -205,7 +205,7 @@
"DE.Controllers.Main.textPaidFeature": "Платена функция",
"DE.Controllers.Main.textPassword": "Парола",
"DE.Controllers.Main.textPreloader": "Зареждане ...",
- "DE.Controllers.Main.textTryUndoRedo": "Функциите Undo / Redo са забранени за режима Fast co-edit.",
+ "DE.Controllers.Main.textTryUndoRedo": "Функциите Undo/Redo са забранени за режима Fast co-edit.",
"DE.Controllers.Main.textUsername": "Потребител",
"DE.Controllers.Main.titleLicenseExp": "Лицензът е изтекъл",
"DE.Controllers.Main.titleServerVersion": "Редакторът е актуализиран",
@@ -277,14 +277,14 @@
"DE.Views.AddOther.textCurrentPos": "Текущата позиция",
"DE.Views.AddOther.textDisplay": "Показ",
"DE.Views.AddOther.textEvenPage": "Дори страница",
- "DE.Views.AddOther.textFootnote": "бележка под линия",
- "DE.Views.AddOther.textFormat": "формат",
+ "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.textLocation": "Местоположение",
"DE.Views.AddOther.textNextPage": "Следваща страница",
"DE.Views.AddOther.textOddPage": "Нечетна страница",
"DE.Views.AddOther.textPageBreak": "Разделител на страница",
diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json
index c13b8babe..2d583dee3 100644
--- a/apps/documenteditor/mobile/locale/cs.json
+++ b/apps/documenteditor/mobile/locale/cs.json
@@ -108,6 +108,7 @@
"DE.Controllers.DocumentHolder.textCancel": "Storno",
"DE.Controllers.DocumentHolder.textColumns": "Sloupce",
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Akce kopírovat, vyjmout a vložit",
+ "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Znovu už nezobrazovat",
"DE.Controllers.DocumentHolder.textGuest": "Návštěvník",
"DE.Controllers.DocumentHolder.textRows": "Řádky",
"DE.Controllers.EditContainer.textChart": "Graf",
diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json
index fff6e30df..596a562b3 100644
--- a/apps/documenteditor/mobile/locale/de.json
+++ b/apps/documenteditor/mobile/locale/de.json
@@ -108,6 +108,7 @@
"DE.Controllers.DocumentHolder.textCancel": "Abbrechen",
"DE.Controllers.DocumentHolder.textColumns": "Spalten",
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"",
+ "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Nicht wieder anzeigen",
"DE.Controllers.DocumentHolder.textGuest": "Gast",
"DE.Controllers.DocumentHolder.textRows": "Zeilen",
"DE.Controllers.EditContainer.textChart": "Diagramm",
diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json
index 91156dc42..1d6e5134d 100644
--- a/apps/documenteditor/mobile/locale/en.json
+++ b/apps/documenteditor/mobile/locale/en.json
@@ -282,6 +282,10 @@
"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.Main.textHasMacros": "The file contains automatic macros. Do you want to run macros?",
+ "DE.Controllers.Main.textRemember": "Remember my choice",
+ "DE.Controllers.Main.textYes": "Yes",
+ "DE.Controllers.Main.textNo": "No",
"DE.Controllers.Search.textNoTextFound": "Text not Found",
"DE.Controllers.Search.textReplaceAll": "Replace All",
"DE.Controllers.Settings.notcriticalErrorTitle": "Warning",
@@ -570,5 +574,12 @@
"DE.Views.Settings.textVersion": "Version",
"DE.Views.Settings.textWords": "Words",
"DE.Views.Settings.unknownText": "Unknown",
+ "DE.Views.Settings.textMacrosSettings": "Macros Settings",
+ "DE.Views.Settings.textDisableAll": "Disable All",
+ "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
+ "DE.Views.Settings.textShowNotification": "Show Notification",
+ "DE.Views.Settings.textDisableAllMacrosWithNotification": "Disable all macros with notification",
+ "DE.Views.Settings.textEnableAll": "Enable All",
+ "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"DE.Views.Toolbar.textBack": "Back"
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json
index fa8fdd386..9120924f3 100644
--- a/apps/documenteditor/mobile/locale/fr.json
+++ b/apps/documenteditor/mobile/locale/fr.json
@@ -108,6 +108,7 @@
"DE.Controllers.DocumentHolder.textCancel": "Annuler",
"DE.Controllers.DocumentHolder.textColumns": "Colonnes",
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller",
+ "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne plus afficher",
"DE.Controllers.DocumentHolder.textGuest": "Invité",
"DE.Controllers.DocumentHolder.textRows": "Lignes",
"DE.Controllers.EditContainer.textChart": "Graphique",
diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json
index 0303af374..9fac57b6b 100644
--- a/apps/documenteditor/mobile/locale/it.json
+++ b/apps/documenteditor/mobile/locale/it.json
@@ -3,14 +3,14 @@
"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.textBreakBefore": "Anteponi Interruzione di pagina",
"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.textDStrikeout": "Barrato doppio",
"Common.Controllers.Collaboration.textEditUser": "Utenti che stanno modificando il file:",
"Common.Controllers.Collaboration.textEquation": "Equazione",
"Common.Controllers.Collaboration.textExact": "Esatto",
@@ -32,7 +32,7 @@
"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.textNot": "Non",
"Common.Controllers.Collaboration.textNoWidow": "Non controllare righe isolate",
"Common.Controllers.Collaboration.textNum": "Modifica numerazione",
"Common.Controllers.Collaboration.textParaDeleted": "Paragrafo eliminato ",
@@ -107,7 +107,8 @@
"DE.Controllers.DocumentHolder.sheetCancel": "Annulla",
"DE.Controllers.DocumentHolder.textCancel": "Annulla",
"DE.Controllers.DocumentHolder.textColumns": "Colonne",
- "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Funzioni copia/taglia/incolla",
+ "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Azioni copia/taglia/incolla",
+ "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Non mostrare più",
"DE.Controllers.DocumentHolder.textGuest": "Ospite",
"DE.Controllers.DocumentHolder.textRows": "Righe",
"DE.Controllers.EditContainer.textChart": "Grafico",
@@ -125,7 +126,7 @@
"DE.Controllers.EditText.textAuto": "Auto",
"DE.Controllers.EditText.textFonts": "Caratteri",
"DE.Controllers.EditText.textPt": "pt",
- "DE.Controllers.Main.advDRMEnterPassword": "Inserisci la password:",
+ "DE.Controllers.Main.advDRMEnterPassword": "Inserisci la tua password:",
"DE.Controllers.Main.advDRMOptions": "File protetto",
"DE.Controllers.Main.advDRMPassword": "Password",
"DE.Controllers.Main.advTxtOptions": "Seleziona Opzioni TXT",
@@ -133,36 +134,36 @@
"DE.Controllers.Main.applyChangesTitleText": "Caricamento dei dati",
"DE.Controllers.Main.closeButtonText": "Chiudi File",
"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.criticalErrorExtText": "Premere 'OK' per tornare all'elenco dei documenti.",
"DE.Controllers.Main.criticalErrorTitle": "Errore",
- "DE.Controllers.Main.downloadErrorText": "Scaricamento fallito",
+ "DE.Controllers.Main.downloadErrorText": "Scaricamento fallito.",
"DE.Controllers.Main.downloadMergeText": "Scaricamento in corso...",
"DE.Controllers.Main.downloadMergeTitle": "Scaricamento",
"DE.Controllers.Main.downloadTextText": "Scaricamento del documento in corso...",
"DE.Controllers.Main.downloadTitleText": "Scaricamento del documento",
- "DE.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.",
+ "DE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti. Si prega di contattare l'amministratore del Document Server.",
"DE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto",
- "DE.Controllers.Main.errorCoAuthoringDisconnect": "Scollegato dal server. Non è possibile modificare.",
- "DE.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.",
- "DE.Controllers.Main.errorDatabaseConnection": "Errore esterno. Errore di connessione al database. Si prega di contattare il supporto.",
+ "DE.Controllers.Main.errorCoAuthoringDisconnect": "Connessione al server persa. Non puoi più modificare.",
+ "DE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contattare l'Amministratore. Quando fai clic sul pulsante 'OK', ti verrà richiesto di scaricare il documento.",
+ "DE.Controllers.Main.errorDatabaseConnection": "Errore esterno. Errore di connessione al database. Si prega di contattare l'assistenza.",
"DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
"DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.",
"DE.Controllers.Main.errorDefaultMessage": "Codice errore: %1",
"DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore mentre si lavorava sul documento. Utilizzare l'opzione 'Scarica' per salvare la copia di backup del file sul disco rigido del computer.",
- "DE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
- "DE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server. Per i dettagli, contatta l'amministratore del Document server.",
+ "DE.Controllers.Main.errorFilePassProtect": "Il file è protetto da password e non può essere aperto.",
+ "DE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server. Per i dettagli, contatta l'amministratore del Document Server.",
"DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
- "DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento del documento non riuscito. Seleziona un altro file.",
+ "DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento del documento non riuscito. Si prega di selezionare un altro file.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Unione non riuscita",
"DE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito",
"DE.Controllers.Main.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.",
- "DE.Controllers.Main.errorStockChart": "righe ordinate in modo errato. Per creare un grafico in pila posiziona i dati nel foglio nel seguente ordine: prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
- "DE.Controllers.Main.errorUpdateVersion": "La versione file è stata moificata. La pagina verrà ricaricata.",
- "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata. Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.",
+ "DE.Controllers.Main.errorStockChart": "Righe ordinate in modo errato. Per creare un grafico azionario posizionare i dati sul foglio nel seguente ordine: prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
+ "DE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.",
+ "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata. Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, quindi ricaricare questa pagina.",
"DE.Controllers.Main.errorUserDrop": "Impossibile accedere al file in questo momento.",
"DE.Controllers.Main.errorUsersExceed": "È stato superato il numero di utenti",
- "DE.Controllers.Main.errorViewerDisconnect": "Connessione assente. È possibile visualizzare il documento, ma non sarà possibile scaricarlo fino a che la connessione verrà ristabilita",
+ "DE.Controllers.Main.errorViewerDisconnect": "Connessione assente. È ancora possibile visualizzare il documento, ma non sarà possibile scaricarlo fino a che la connessione verrà ristabilita e la pagina ricaricata.",
"DE.Controllers.Main.leavePageText": "Ci sono delle modifiche non salvate in questo documento. Clicca su 'Rimani in questa pagina, in attesa del salvataggio automatico del documento. Clicca su 'Lascia questa pagina' per annullare le modifiche.",
"DE.Controllers.Main.loadFontsTextText": "Caricamento dei dati in corso...",
"DE.Controllers.Main.loadFontsTitleText": "Caricamento dei dati",
@@ -174,37 +175,37 @@
"DE.Controllers.Main.loadImageTitleText": "Caricamento dell'immagine",
"DE.Controllers.Main.loadingDocumentTextText": "Caricamento del documento in corso...",
"DE.Controllers.Main.loadingDocumentTitleText": "Caricamento del documento",
- "DE.Controllers.Main.mailMergeLoadFileText": "Caricamento origine dati...",
+ "DE.Controllers.Main.mailMergeLoadFileText": "Caricamento origine dati in corso...",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Caricamento origine dati",
"DE.Controllers.Main.notcriticalErrorTitle": "Avviso",
- "DE.Controllers.Main.openErrorText": "Si è verificato un errore all'apertura del file",
+ "DE.Controllers.Main.openErrorText": "Si è verificato un errore durante l'apertura del file",
"DE.Controllers.Main.openTextText": "Apertura del documento in corso...",
"DE.Controllers.Main.openTitleText": "Apertura del documento",
"DE.Controllers.Main.printTextText": "Stampa del documento in corso...",
"DE.Controllers.Main.printTitleText": "Stampa del documento",
- "DE.Controllers.Main.saveErrorText": "Si è verificato un errore al salvataggio del file",
+ "DE.Controllers.Main.saveErrorText": "Si è verificato un errore durante il salvataggio del file",
"DE.Controllers.Main.savePreparingText": "Preparazione al salvataggio ",
"DE.Controllers.Main.savePreparingTitle": "Preparazione al salvataggio. Attendere prego...",
"DE.Controllers.Main.saveTextText": "Salvataggio del documento in corso...",
"DE.Controllers.Main.saveTitleText": "Salvataggio del documento",
"DE.Controllers.Main.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
- "DE.Controllers.Main.sendMergeText": "Sending Merge...",
+ "DE.Controllers.Main.sendMergeText": "Invio unione in corso...",
"DE.Controllers.Main.sendMergeTitle": "Invio unione",
"DE.Controllers.Main.splitDividerErrorText": "Il numero di righe deve essere un divisore di %1",
- "DE.Controllers.Main.splitMaxColsErrorText": "Il numero di colonne deve essere meno di %1",
- "DE.Controllers.Main.splitMaxRowsErrorText": "il numero di righe deve essere meno di %1",
+ "DE.Controllers.Main.splitMaxColsErrorText": "Il numero di colonne deve essere inferiore a% 1",
+ "DE.Controllers.Main.splitMaxRowsErrorText": "Il numero di righe deve essere inferiore a% 1",
"DE.Controllers.Main.textAnonymous": "Anonimo",
"DE.Controllers.Main.textBack": "Indietro",
"DE.Controllers.Main.textBuyNow": "Visita il sito web",
"DE.Controllers.Main.textCancel": "Annulla",
"DE.Controllers.Main.textClose": "Chiudi",
- "DE.Controllers.Main.textContactUs": "Reparto 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.textContactUs": "Contatta il reparto vendite.",
+ "DE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore. Si prega di contattare il nostro reparto vendite per ottenere un preventivo.",
"DE.Controllers.Main.textDone": "Fatto",
"DE.Controllers.Main.textLoadingDocument": "Caricamento del documento",
"DE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
"DE.Controllers.Main.textOK": "OK",
- "DE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
+ "DE.Controllers.Main.textPaidFeature": "Funzionalità a pagamento",
"DE.Controllers.Main.textPassword": "Password",
"DE.Controllers.Main.textPreloader": "Caricamento in corso...",
"DE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di co-editing",
@@ -214,7 +215,7 @@
"DE.Controllers.Main.titleUpdateVersion": "Versione Modificata",
"DE.Controllers.Main.txtArt": "Il tuo testo qui",
"DE.Controllers.Main.txtDiagramTitle": "Titolo del grafico",
- "DE.Controllers.Main.txtEditingMode": "Imposta metodo di modifica",
+ "DE.Controllers.Main.txtEditingMode": "Imposta la modalità di modifica...",
"DE.Controllers.Main.txtFooter": "Piè di pagina",
"DE.Controllers.Main.txtHeader": "Intestazione",
"DE.Controllers.Main.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file",
@@ -233,7 +234,7 @@
"DE.Controllers.Main.txtStyle_List_Paragraph": "Elenco Paragrafo",
"DE.Controllers.Main.txtStyle_No_Spacing": "Senza spazi",
"DE.Controllers.Main.txtStyle_Normal": "Normale",
- "DE.Controllers.Main.txtStyle_Quote": "Cita",
+ "DE.Controllers.Main.txtStyle_Quote": "Citazione",
"DE.Controllers.Main.txtStyle_Subtitle": "Sottotitolo",
"DE.Controllers.Main.txtStyle_Title": "Titolo",
"DE.Controllers.Main.txtXAxis": "Asse X",
@@ -245,27 +246,27 @@
"DE.Controllers.Main.uploadImageSizeMessage": "È stata superata la dimensione massima per l'immagine.",
"DE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...",
"DE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine",
- "DE.Controllers.Main.waitText": "Per favore, attendi...",
- "DE.Controllers.Main.warnLicenseExceeded": "Il numero di connessioni simultanee al server dei documenti è stato superato e il documento verrà aperto solo per la visualizzazione. Contattare l'amministratore per ulteriori informazioni.",
+ "DE.Controllers.Main.waitText": "Attendere prego...",
+ "DE.Controllers.Main.warnLicenseExceeded": "Il numero di connessioni simultanee al document server è stato superato e il documento verrà aperto solo per la visualizzazione. Per ulteriori informazioni, contatta l'amministratore.",
"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 %1 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 %1 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.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. Per ulteriori informazioni, contatta l'amministratore.",
+ "DE.Controllers.Main.warnNoLicense": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al document server. Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
+ "DE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 editors presenta alcune limitazioni per gli utenti simultanei. 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",
"DE.Controllers.Settings.notcriticalErrorTitle": "Avviso",
"DE.Controllers.Settings.txtLoading": "Caricamento in corso...",
"DE.Controllers.Settings.unknownText": "Sconosciuto",
- "DE.Controllers.Settings.warnDownloadAs": "Se continui a salvare in questo formato tutte le funzioni eccetto il testo vengono perse. Sei sicuro di voler continuare?",
- "DE.Controllers.Settings.warnDownloadAsRTF": "Se si continua a salvare in questo formato, parte della formattazione potrebbe andare persa. Vuoi continuare?",
+ "DE.Controllers.Settings.warnDownloadAs": "Se continui a salvare in questo formato tutte le funzioni eccetto il testo andranno perse. Sei sicuro di voler continuare?",
+ "DE.Controllers.Settings.warnDownloadAsRTF": "Se continui a salvare in questo formato, parte della formattazione potrebbe andare persa. Sei sicuro di voler continuare?",
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Ci sono delle modifiche non salvate in questo documento. Clicca su 'Rimani in questa pagina, in attesa del salvataggio automatico del documento. Clicca su 'Lascia questa pagina' per annullare le modifiche.",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Lascia l'applicazione",
- "DE.Controllers.Toolbar.leaveButtonText": "Lascia la pagina",
+ "DE.Controllers.Toolbar.leaveButtonText": "Lascia questa pagina",
"DE.Controllers.Toolbar.stayButtonText": "Rimani su questa pagina",
"DE.Views.AddImage.textAddress": "Indirizzo",
"DE.Views.AddImage.textBack": "Indietro",
- "DE.Views.AddImage.textFromLibrary": "Foto dalla Raccolta",
+ "DE.Views.AddImage.textFromLibrary": "Immagine dalla Raccolta",
"DE.Views.AddImage.textFromURL": "Immagine da URL",
"DE.Views.AddImage.textImageURL": "URL dell'immagine",
"DE.Views.AddImage.textInsertImage": "Inserisci immagine",
@@ -289,7 +290,7 @@
"DE.Views.AddOther.textLocation": "Posizione",
"DE.Views.AddOther.textNextPage": "Pagina successiva",
"DE.Views.AddOther.textOddPage": "Pagina dispari",
- "DE.Views.AddOther.textPageBreak": "Dividi pagina",
+ "DE.Views.AddOther.textPageBreak": "Interruzione di pagina",
"DE.Views.AddOther.textPageNumber": "Numero di Pagina",
"DE.Views.AddOther.textPosition": "Posizione",
"DE.Views.AddOther.textRightBottom": "In basso a destra",
@@ -325,11 +326,11 @@
"DE.Views.EditChart.textType": "Tipo",
"DE.Views.EditChart.textWrap": "Racchiudi",
"DE.Views.EditHeader.textDiffFirst": "Diverso per la prima pagina",
- "DE.Views.EditHeader.textDiffOdd": "Diversi per pagine pari e dispari",
+ "DE.Views.EditHeader.textDiffOdd": "Diverso per pagine pari e dispari",
"DE.Views.EditHeader.textFrom": "Inizia da",
"DE.Views.EditHeader.textPageNumbering": "Numerazione pagina",
"DE.Views.EditHeader.textPrev": "Continua dalla selezione precedente",
- "DE.Views.EditHeader.textSameAs": "Collega a precedente",
+ "DE.Views.EditHeader.textSameAs": "Collega al precedente",
"DE.Views.EditHyperlink.textDisplay": "Visualizza",
"DE.Views.EditHyperlink.textEdit": "Modifica collegamento",
"DE.Views.EditHyperlink.textLink": "Collegamento",
@@ -343,7 +344,7 @@
"DE.Views.EditImage.textDefault": "Dimensione reale",
"DE.Views.EditImage.textDistanceText": "Distanza dal testo",
"DE.Views.EditImage.textForward": "Sposta avanti",
- "DE.Views.EditImage.textFromLibrary": "Foto dalla Raccolta",
+ "DE.Views.EditImage.textFromLibrary": "Immagine dalla Raccolta",
"DE.Views.EditImage.textFromURL": "Immagine da URL",
"DE.Views.EditImage.textImageURL": "URL dell'immagine",
"DE.Views.EditImage.textInFront": "Davanti al testo",
@@ -376,7 +377,7 @@
"DE.Views.EditParagraph.textKeepLines": "Mantieni assieme le righe",
"DE.Views.EditParagraph.textKeepNext": "Mantieni con il successivo",
"DE.Views.EditParagraph.textOrphan": "Controllo righe isolate",
- "DE.Views.EditParagraph.textPageBreak": "Anteponi interruzione",
+ "DE.Views.EditParagraph.textPageBreak": "Anteponi Interruzione di pagina",
"DE.Views.EditParagraph.textPrgStyles": "Stili Paragrafo",
"DE.Views.EditParagraph.textSpaceBetween": "Spazio fra Paragrafi",
"DE.Views.EditShape.textAddCustomColor": "Aggiungi colore personalizzato",
@@ -438,7 +439,7 @@
"DE.Views.EditText.textAddCustomColor": "Aggiungi colore personalizzato",
"DE.Views.EditText.textAdditional": "Più...",
"DE.Views.EditText.textAdditionalFormat": "Formattazione aggiuntiva",
- "DE.Views.EditText.textAllCaps": "Maiuscole",
+ "DE.Views.EditText.textAllCaps": "Tutto maiuscolo",
"DE.Views.EditText.textAutomatic": "Automatico",
"DE.Views.EditText.textBack": "Indietro",
"DE.Views.EditText.textBullets": "Elenchi puntati",
@@ -450,7 +451,7 @@
"DE.Views.EditText.textDblStrikethrough": "Barrato doppio",
"DE.Views.EditText.textDblSuperscript": "Apice",
"DE.Views.EditText.textFontColor": "Colore del carattere",
- "DE.Views.EditText.textFontColors": "Colori dei Caratteri",
+ "DE.Views.EditText.textFontColors": "Colori del Carattere",
"DE.Views.EditText.textFonts": "Caratteri",
"DE.Views.EditText.textHighlightColor": "Colore evidenziatore",
"DE.Views.EditText.textHighlightColors": "Colori evidenziatore",
@@ -459,7 +460,7 @@
"DE.Views.EditText.textNone": "Nessuno",
"DE.Views.EditText.textNumbers": "Numeri",
"DE.Views.EditText.textSize": "Dimensione",
- "DE.Views.EditText.textSmallCaps": "Minuscole",
+ "DE.Views.EditText.textSmallCaps": "Maiuscoletto",
"DE.Views.EditText.textStrikethrough": "Barrato",
"DE.Views.EditText.textSubscript": "Pedice",
"DE.Views.Search.textCase": "Sensibile al maiuscolo/minuscolo",
@@ -478,7 +479,7 @@
"DE.Views.Settings.textBottom": "In basso",
"DE.Views.Settings.textCentimeter": "Centimetro",
"DE.Views.Settings.textCollaboration": "Collaborazione",
- "DE.Views.Settings.textColorSchemes": "Schemi di colore",
+ "DE.Views.Settings.textColorSchemes": "Combinazioni di colore",
"DE.Views.Settings.textComment": "Commento",
"DE.Views.Settings.textCommentingDisplay": "Visualizzazione dei Commenti",
"DE.Views.Settings.textCreated": "Creato",
@@ -507,7 +508,7 @@
"DE.Views.Settings.textLastModifiedBy": "Ultima modifica di",
"DE.Views.Settings.textLeft": "A sinistra",
"DE.Views.Settings.textLoading": "Caricamento in corso...",
- "DE.Views.Settings.textLocation": "Percorso",
+ "DE.Views.Settings.textLocation": "Posizione",
"DE.Views.Settings.textMargins": "Margini",
"DE.Views.Settings.textNoCharacters": "Caratteri non stampabili",
"DE.Views.Settings.textOrientation": "Orientamento",
@@ -523,7 +524,7 @@
"DE.Views.Settings.textRight": "A destra",
"DE.Views.Settings.textSettings": "Impostazioni",
"DE.Views.Settings.textSpaces": "Spazi",
- "DE.Views.Settings.textSpellcheck": "Controllo ortografia",
+ "DE.Views.Settings.textSpellcheck": "Controllo ortografico",
"DE.Views.Settings.textStatistic": "Statistica",
"DE.Views.Settings.textSubject": "Oggetto",
"DE.Views.Settings.textSymbols": "Simboli",
diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json
index cd64a7be4..0cffe3ee6 100644
--- a/apps/documenteditor/mobile/locale/zh.json
+++ b/apps/documenteditor/mobile/locale/zh.json
@@ -108,6 +108,7 @@
"DE.Controllers.DocumentHolder.textCancel": "取消",
"DE.Controllers.DocumentHolder.textColumns": "列",
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "复制,剪切和粘贴操作",
+ "DE.Controllers.DocumentHolder.textDoNotShowAgain": "不要再显示",
"DE.Controllers.DocumentHolder.textGuest": "游客",
"DE.Controllers.DocumentHolder.textRows": "行",
"DE.Controllers.EditContainer.textChart": "图表",
diff --git a/apps/documenteditor/mobile/resources/css/app-ios.css b/apps/documenteditor/mobile/resources/css/app-ios.css
index fbc571974..45c50e170 100644
--- a/apps/documenteditor/mobile/resources/css/app-ios.css
+++ b/apps/documenteditor/mobile/resources/css/app-ios.css
@@ -6559,17 +6559,6 @@ html.pixel-ratio-3 .document-menu .list-block li:last-child li .item-inner:after
padding: 16px 0;
word-wrap: break-word;
}
-.page-comments p,
-.add-comment p,
-.page-view-comments p,
-.container-edit-comment p,
-.container-add-reply p,
-.page-edit-comment p,
-.page-add-reply p,
-.page-edit-reply p {
- margin: 0;
- word-break: break-word;
-}
.page-comments .list-reply,
.add-comment .list-reply,
.page-view-comments .list-reply,
@@ -6665,6 +6654,24 @@ html.pixel-ratio-3 .document-menu .list-block li:last-child li .item-inner:after
max-width: 100%;
padding-right: 15px;
}
+.page-comments .comment-text pre,
+.add-comment .comment-text pre,
+.page-view-comments .comment-text pre,
+.container-edit-comment .comment-text pre,
+.container-add-reply .comment-text pre,
+.page-edit-comment .comment-text pre,
+.page-add-reply .comment-text pre,
+.page-edit-reply .comment-text pre,
+.page-comments .reply-text pre,
+.add-comment .reply-text pre,
+.page-view-comments .reply-text pre,
+.container-edit-comment .reply-text pre,
+.container-add-reply .reply-text pre,
+.page-edit-comment .reply-text pre,
+.page-add-reply .reply-text pre,
+.page-edit-reply .reply-text pre {
+ white-space: pre-wrap;
+}
.page-comments .reply-item,
.add-comment .reply-item,
.page-view-comments .reply-item,
@@ -7778,3 +7785,10 @@ html.pixel-ratio-3 .numbers li {
-o-animation: flickerAnimation 2s infinite ease-in-out;
animation: flickerAnimation 2s infinite ease-in-out;
}
+.page-macros-settings[data-page="macros-settings-view"] .list-block li.media-item .item-title {
+ font-weight: normal;
+}
+.page-macros-settings[data-page="macros-settings-view"] .list-block li.media-item .item-subtitle {
+ font-size: 14px;
+ color: #8e8e93;
+}
diff --git a/apps/documenteditor/mobile/resources/css/app-material.css b/apps/documenteditor/mobile/resources/css/app-material.css
index 65118842b..ff00967da 100644
--- a/apps/documenteditor/mobile/resources/css/app-material.css
+++ b/apps/documenteditor/mobile/resources/css/app-material.css
@@ -6129,17 +6129,6 @@ html.phone .document-menu .list-block .item-link {
.page-edit-reply .list-block .item-inner:after {
content: none;
}
-.page-comments p,
-.page-add-comment p,
-.page-view-comments p,
-.container-edit-comment p,
-.container-add-reply p,
-.page-edit-comment p,
-.page-add-reply p,
-.page-edit-reply p {
- margin: 0;
- word-break: break-word;
-}
.page-comments .list-reply,
.page-add-comment .list-reply,
.page-view-comments .list-reply,
@@ -6234,6 +6223,24 @@ html.phone .document-menu .list-block .item-link {
max-width: 100%;
padding-right: 15px;
}
+.page-comments .comment-text pre,
+.page-add-comment .comment-text pre,
+.page-view-comments .comment-text pre,
+.container-edit-comment .comment-text pre,
+.container-add-reply .comment-text pre,
+.page-edit-comment .comment-text pre,
+.page-add-reply .comment-text pre,
+.page-edit-reply .comment-text pre,
+.page-comments .reply-text pre,
+.page-add-comment .reply-text pre,
+.page-view-comments .reply-text pre,
+.container-edit-comment .reply-text pre,
+.container-add-reply .reply-text pre,
+.page-edit-comment .reply-text pre,
+.page-add-reply .reply-text pre,
+.page-edit-reply .reply-text pre {
+ white-space: pre-wrap;
+}
.page-comments .reply-item,
.page-add-comment .reply-item,
.page-view-comments .reply-item,
@@ -6328,7 +6335,7 @@ html.phone .document-menu .list-block .item-link {
outline: none;
width: 100%;
font-size: 15px;
- border: 1px solid #c4c4c4;
+ border: none;
border-radius: 3px;
min-height: 100px;
}
@@ -7639,3 +7646,10 @@ html.pixel-ratio-3 .numbers li {
-o-animation: flickerAnimation 2s infinite ease-in-out;
animation: flickerAnimation 2s infinite ease-in-out;
}
+.page-macros-settings[data-page="macros-settings-view"] .list-block li.media-item .item-title {
+ font-weight: normal;
+}
+.page-macros-settings[data-page="macros-settings-view"] .list-block li.media-item .item-subtitle {
+ font-size: 14px;
+ color: #9e9e9e;
+}
diff --git a/apps/documenteditor/mobile/resources/less/app-ios.less b/apps/documenteditor/mobile/resources/less/app-ios.less
index 379577dd0..7afcfe9cb 100644
--- a/apps/documenteditor/mobile/resources/less/app-ios.less
+++ b/apps/documenteditor/mobile/resources/less/app-ios.less
@@ -276,3 +276,18 @@ input, textarea {
animation: flickerAnimation 2s infinite ease-in-out;
}
}
+
+// Macros settings
+.page-macros-settings[data-page="macros-settings-view"] {
+ .list-block {
+ li.media-item {
+ .item-title {
+ font-weight: normal;
+ }
+ .item-subtitle {
+ font-size: 14px;
+ color: @gray;
+ }
+ }
+ }
+}
diff --git a/apps/documenteditor/mobile/resources/less/app-material.less b/apps/documenteditor/mobile/resources/less/app-material.less
index 351b81974..b74cd4923 100644
--- a/apps/documenteditor/mobile/resources/less/app-material.less
+++ b/apps/documenteditor/mobile/resources/less/app-material.less
@@ -275,3 +275,18 @@ input, textarea {
animation: flickerAnimation 2s infinite ease-in-out;
}
}
+
+// Macros settings
+.page-macros-settings[data-page="macros-settings-view"] {
+ .list-block {
+ li.media-item {
+ .item-title {
+ font-weight: normal;
+ }
+ .item-subtitle {
+ font-size: 14px;
+ color: @gray;
+ }
+ }
+ }
+}
diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js
index ffaf30b11..244aa0e0e 100644
--- a/apps/presentationeditor/embed/js/ApplicationController.js
+++ b/apps/presentationeditor/embed/js/ApplicationController.js
@@ -100,9 +100,16 @@ PE.ApplicationController = new(function(){
docInfo.put_VKey(docConfig.vkey);
docInfo.put_Token(docConfig.token);
docInfo.put_Permissions(_permissions);
+ docInfo.put_EncryptedInfo(config.encryptionKeys);
+
+ var enable = !config.customization || (config.customization.macros!==false);
+ docInfo.asc_putIsEnabledMacroses(!!enable);
+ enable = !config.customization || (config.customization.plugins!==false);
+ docInfo.asc_putIsEnabledPlugins(!!enable);
if (api) {
api.asc_registerCallback('asc_onGetEditorPermissions', onEditorPermissions);
+ api.asc_registerCallback('asc_onRunAutostartMacroses', onRunAutostartMacroses);
api.asc_setDocInfo(docInfo);
api.asc_getEditorPermissions(config.licenseUrl, config.customerId);
api.asc_enableKeyEvents(true);
@@ -580,6 +587,12 @@ PE.ApplicationController = new(function(){
}
if (api) api.asc_DownloadAs(new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.PPTX, true));
}
+
+ function onRunAutostartMacroses() {
+ if (!config.customization || (config.customization.macros!==false))
+ if (api) api.asc_runAutostartMacroses();
+ }
+
// Helpers
// -------------------------
diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js
index b01c7b60d..a2f3012dd 100644
--- a/apps/presentationeditor/main/app/controller/LeftMenu.js
+++ b/apps/presentationeditor/main/app/controller/LeftMenu.js
@@ -326,6 +326,10 @@ define([
value = Common.localStorage.getBool("pe-settings-spellcheck", true);
Common.Utils.InternalSettings.set("pe-settings-spellcheck", value);
this.api.asc_setSpellCheck(value);
+
+ value = parseInt(Common.localStorage.getItem("pe-settings-paste-button"));
+ Common.Utils.InternalSettings.set("pe-settings-paste-button", value);
+ this.api.asc_setVisiblePasteButton(!!value);
}
this.api.put_ShowSnapLines(Common.Utils.InternalSettings.get("pe-settings-showsnaplines"));
@@ -335,8 +339,12 @@ define([
onCreateNew: function(menu, type) {
if ( !Common.Controllers.Desktop.process('create:new') ) {
- var newDocumentPage = window.open(type == 'blank' ? this.mode.createUrl : type, "_blank");
- if (newDocumentPage) newDocumentPage.focus();
+ if (this.mode.canRequestCreateNew)
+ Common.Gateway.requestCreateNew();
+ else {
+ var newDocumentPage = window.open(type == 'blank' ? this.mode.createUrl : type, "_blank");
+ if (newDocumentPage) newDocumentPage.focus();
+ }
}
if (menu) {
menu.hide();
diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js
index ca3c069e6..e4630cc01 100644
--- a/apps/presentationeditor/main/app/controller/Main.js
+++ b/apps/presentationeditor/main/app/controller/Main.js
@@ -302,11 +302,12 @@ define([
this.editorConfig.user =
this.appOptions.user = Common.Utils.fillUserInfo(data.config.user, this.editorConfig.lang, this.textAnonymous);
this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop';
- this.appOptions.canCreateNew = !_.isEmpty(this.editorConfig.createUrl);
+ this.appOptions.canCreateNew = this.editorConfig.canRequestCreateNew || !_.isEmpty(this.editorConfig.createUrl);
this.appOptions.canOpenRecent = this.editorConfig.recent !== undefined && !this.appOptions.isDesktopApp;
this.appOptions.templates = this.editorConfig.templates;
this.appOptions.recent = this.editorConfig.recent;
this.appOptions.createUrl = this.editorConfig.createUrl;
+ this.appOptions.canRequestCreateNew = this.editorConfig.canRequestCreateNew;
this.appOptions.lang = this.editorConfig.lang;
this.appOptions.location = (typeof (this.editorConfig.location) == 'string') ? this.editorConfig.location.toLowerCase() : '';
this.appOptions.sharingSettingsUrl = this.editorConfig.sharingSettingsUrl;
@@ -342,6 +343,14 @@ define([
$('#editor-container').append('');
}
+ var value = Common.localStorage.getItem("pe-macros-mode");
+ if (value === null) {
+ value = this.editorConfig.customization ? this.editorConfig.customization.macrosMode : 'warn';
+ value = (value == 'enable') ? 1 : (value == 'disable' ? 2 : 0);
+ } else
+ value = parseInt(value);
+ Common.Utils.InternalSettings.set("pe-macros-mode", value);
+
Common.Controllers.Desktop.init(this.appOptions);
},
@@ -373,10 +382,16 @@ define([
docInfo.put_Token(data.doc.token);
docInfo.put_Permissions(_permissions);
docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys);
+
+ var enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false);
+ docInfo.asc_putIsEnabledMacroses(!!enable);
+ enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins!==false);
+ docInfo.asc_putIsEnabledPlugins(!!enable);
}
this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this));
this.api.asc_registerCallback('asc_onLicenseChanged', _.bind(this.onLicenseChanged, this));
+ this.api.asc_registerCallback('asc_onRunAutostartMacroses', _.bind(this.onRunAutostartMacroses, this));
this.api.asc_setDocInfo(docInfo);
this.api.asc_getEditorPermissions(this.editorConfig.licenseUrl, this.editorConfig.customerId);
@@ -760,6 +775,11 @@ define([
me.api.asc_setIsForceSaveOnUserSave(me.appOptions.forcesave);
}
+ value = Common.localStorage.getItem("pe-settings-paste-button");
+ if (value===null) value = '1';
+ Common.Utils.InternalSettings.set("pe-settings-paste-button", parseInt(value));
+ me.api.asc_setVisiblePasteButton(!!parseInt(value));
+
if (me.needToUpdateVersion)
Common.NotificationCenter.trigger('api:disconnect');
var timer_sl = setInterval(function(){
@@ -1245,7 +1265,7 @@ define([
config.closable = false;
if (this.appOptions.canBackToFolder && !this.appOptions.isDesktopApp && typeof id !== 'string') {
- config.msg += ' ' + this.criticalErrorExtText;
+ config.msg += ' ' + this.criticalErrorExtText;
config.callback = function(btn) {
if (btn == 'ok') {
Common.NotificationCenter.trigger('goback', true);
@@ -1883,6 +1903,36 @@ define([
}});
},
+ onRunAutostartMacroses: function() {
+ var me = this,
+ enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false);
+ if (enable) {
+ var value = Common.Utils.InternalSettings.get("pe-macros-mode");
+ if (value==1)
+ this.api.asc_runAutostartMacroses();
+ else if (value === 0) {
+ Common.UI.warning({
+ msg: this.textHasMacros + ' ',
+ buttons: ['yes', 'no'],
+ primary: 'yes',
+ dontshow: true,
+ textDontShow: this.textRemember,
+ callback: function(btn, dontshow){
+ if (dontshow) {
+ Common.Utils.InternalSettings.set("pe-macros-mode", (btn == 'yes') ? 1 : 2);
+ Common.localStorage.setItem("pe-macros-mode", (btn == 'yes') ? 1 : 2);
+ }
+ if (btn == 'yes') {
+ setTimeout(function() {
+ me.api.asc_runAutostartMacroses();
+ }, 1);
+ }
+ }
+ });
+ }
+ }
+ },
+
// Translation
leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.',
criticalErrorTitle: 'Error',
@@ -2234,7 +2284,9 @@ define([
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.',
waitText: 'Please, wait...',
errorFileSizeExceed: 'The file size exceeds the limitation set for your server. Please contact your Document Server administrator for details.',
- errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed. Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.'
+ errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed. Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.',
+ textHasMacros: 'The file contains automatic macros. Do you want to run macros?',
+ textRemember: 'Remember my choice'
}
})(), PE.Controllers.Main || {}))
});
diff --git a/apps/presentationeditor/main/app/template/FileMenu.template b/apps/presentationeditor/main/app/template/FileMenu.template
index d67b35cfe..a2c9eb462 100644
--- a/apps/presentationeditor/main/app/template/FileMenu.template
+++ b/apps/presentationeditor/main/app/template/FileMenu.template
@@ -1,36 +1,36 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/presentationeditor/main/app/template/LeftMenu.template b/apps/presentationeditor/main/app/template/LeftMenu.template
index 33401f1b9..7471d770d 100644
--- a/apps/presentationeditor/main/app/template/LeftMenu.template
+++ b/apps/presentationeditor/main/app/template/LeftMenu.template
@@ -12,9 +12,9 @@
\ No newline at end of file
diff --git a/apps/presentationeditor/main/app/template/RightMenu.template b/apps/presentationeditor/main/app/template/RightMenu.template
index 83a4bdf86..a1e1e9c5d 100644
--- a/apps/presentationeditor/main/app/template/RightMenu.template
+++ b/apps/presentationeditor/main/app/template/RightMenu.template
@@ -18,7 +18,7 @@
@@ -30,7 +30,7 @@
English (United States)
-
+
diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js
index c7219b226..8b23928e1 100644
--- a/apps/presentationeditor/main/app/view/DocumentHolder.js
+++ b/apps/presentationeditor/main/app/view/DocumentHolder.js
@@ -2078,7 +2078,7 @@ define([
store : PE.getCollection('SlideLayouts'),
itemTemplate: _.template([
'
',
- '
',
+ '
',
'
<%= title %>
',
'
'
].join(''))
@@ -2117,7 +2117,7 @@ define([
store : PE.getCollection('SlideThemes'),
itemTemplate: _.template([
'
',
- '
' + 'background-image: url(<%= imageUrl %>);' + '<% } %> background-position: 0 -<%= offsety %>px;"/>',
+ '
' + 'background-image: url(<%= imageUrl %>);' + '<% } %> background-position: 0 -<%= offsety %>px;">
',
'
'
].join(''))
}).on('item:click', function(picker, item, record, e) {
diff --git a/apps/presentationeditor/main/app/view/DocumentPreview.js b/apps/presentationeditor/main/app/view/DocumentPreview.js
index c47749871..eb3806fed 100644
--- a/apps/presentationeditor/main/app/view/DocumentPreview.js
+++ b/apps/presentationeditor/main/app/view/DocumentPreview.js
@@ -75,7 +75,7 @@ define([
'
',
'
',
'
',
- '
',
+ '
',
'
',
'
',
'Slide 1 of 1 ',
@@ -85,9 +85,9 @@ define([
'
',
'
',
'',
- '
',
+ '
',
'
',
- '
',
+ '
',
'
',
'
',
''
diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js
index 1a9277247..fb70e61b0 100644
--- a/apps/presentationeditor/main/app/view/FileMenuPanels.js
+++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js
@@ -90,13 +90,19 @@ define([
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
el: this.$el,
- suppressScrollX: true
+ suppressScrollX: true,
+ alwaysVisibleY: true
});
}
return this;
},
+ show: function() {
+ Common.UI.BaseView.prototype.show.call(this,arguments);
+ this.scroller && this.scroller.update();
+ },
+
onFormatClick: function(e) {
var type = e.currentTarget.attributes['format'];
if (!_.isUndefined(type) && this.menu) {
@@ -146,13 +152,19 @@ define([
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
el: this.$el,
- suppressScrollX: true
+ suppressScrollX: true,
+ alwaysVisibleY: true
});
}
return this;
},
+ show: function() {
+ Common.UI.BaseView.prototype.show.call(this,arguments);
+ this.scroller && this.scroller.update();
+ },
+
onFormatClick: function(e) {
var type = e.currentTarget.attributes['format'],
ext = e.currentTarget.attributes['format-ext'];
@@ -170,44 +182,54 @@ define([
'',
'',
'<%= scope.txtSpellCheck %> ',
- '
',
+ '
',
' ',' ',
'',
'<%= scope.txtInput %> ',
- '
',
+ '
',
' ',' ',
'',
'<%= scope.textAlignGuides %> ',
- ' ',
+ ' ',
' ',' ',
'',
'<%= scope.textAutoSave %> ',
- ' ',
+ ' ',
' ',' ',
'',
'<%= scope.textForceSave %> ',
- ' ',
+ ' ',
' ',' ',
/** coauthoring begin **/
'',
'<%= scope.strCoAuthMode %> ',
'',
- '
',
+ '
',
'
<%= scope.strCoAuthModeDescFast %> ',
' ',' ',
/** coauthoring end **/
'',
'<%= scope.strZoom %> ',
- '
',
+ '
',
' ',' ',
'',
'<%= scope.strFontRender %> ',
- ' ',
+ ' ',
' ',' ',
'',
'<%= scope.strUnit %> ',
- ' ',
+ ' ',
' ',' ',
+ '',
+ '<%= scope.strPaste %> ',
+ '
',
+ ' ',' ',
+ '',
+ '<%= scope.strMacrosSettings %> ',
+ '',
+ '
',
+ '
<%= scope.txtWarnMacrosDesc %> ',
+ ' ',' ',
'',
' ',
'<%= scope.okButtonText %> ',
@@ -331,6 +353,26 @@ define([
]
});
+ this.cmbMacros = new Common.UI.ComboBox({
+ el : $markup.findById('#fms-cmb-macros'),
+ style : 'width: 160px;',
+ editable : false,
+ cls : 'input-group-nr',
+ data : [
+ { value: 2, displayValue: this.txtStopMacros, descValue: this.txtStopMacrosDesc },
+ { value: 0, displayValue: this.txtWarnMacros, descValue: this.txtWarnMacrosDesc },
+ { value: 1, displayValue: this.txtRunMacros, descValue: this.txtRunMacrosDesc }
+ ]
+ }).on('selected', function(combo, record) {
+ me.lblMacrosDesc.text(record.descValue);
+ });
+ this.lblMacrosDesc = $markup.findById('#fms-lbl-macros');
+
+ this.chPaste = new Common.UI.CheckBox({
+ el: $markup.findById('#fms-chb-paste-settings'),
+ labelText: this.strPasteButton
+ });
+
this.btnApply = new Common.UI.Button({
el: $markup.findById('#fms-btn-apply')
});
@@ -342,7 +384,8 @@ define([
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
el: this.$el,
- suppressScrollX: true
+ suppressScrollX: true,
+ alwaysVisibleY: true
});
}
@@ -353,6 +396,7 @@ define([
Common.UI.BaseView.prototype.show.call(this,arguments);
this.updateSettings();
+ this.scroller && this.scroller.update();
},
setMode: function(mode) {
@@ -367,6 +411,7 @@ define([
/** coauthoring begin **/
$('tr.coauth.changes', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring ? 'show' : 'hide']();
/** coauthoring end **/
+ $('tr.macros', this.el)[(mode.customization && mode.customization.macros===false) ? 'hide' : 'show']();
},
updateSettings: function() {
@@ -409,6 +454,12 @@ define([
}
this.chAlignGuides.setValue(Common.Utils.InternalSettings.get("pe-settings-showsnaplines"));
+
+ item = this.cmbMacros.store.findWhere({value: Common.Utils.InternalSettings.get("pe-macros-mode")});
+ this.cmbMacros.setValue(item ? item.get('value') : 0);
+ this.lblMacrosDesc.text(item ? item.get('descValue') : this.txtWarnMacrosDesc);
+
+ this.chPaste.setValue(Common.Utils.InternalSettings.get("pe-settings-paste-button"));
},
applySettings: function() {
@@ -430,6 +481,11 @@ define([
Common.localStorage.setItem("pe-settings-forcesave", this.chForcesave.isChecked() ? 1 : 0);
Common.Utils.InternalSettings.set("pe-settings-showsnaplines", this.chAlignGuides.isChecked());
+ Common.localStorage.setItem("pe-macros-mode", this.cmbMacros.getValue());
+ Common.Utils.InternalSettings.set("pe-macros-mode", this.cmbMacros.getValue());
+
+ Common.localStorage.setItem("pe-settings-paste-button", this.chPaste.isChecked() ? 1 : 0);
+
Common.localStorage.save();
if (this.menu) {
@@ -484,7 +540,16 @@ define([
strForcesave: 'Always save to server (otherwise save to server on document close)',
txtSpellCheck: 'Spell Checking',
strSpellCheckMode: 'Turn on spell checking option',
- txtCacheMode: 'Default cache mode'
+ txtCacheMode: 'Default cache mode',
+ strMacrosSettings: 'Macros Settings',
+ txtWarnMacros: 'Show Notification',
+ txtRunMacros: 'Enable All',
+ txtStopMacros: 'Disable All',
+ txtWarnMacrosDesc: 'Disable all macros with notification',
+ txtRunMacrosDesc: 'Enable all macros without notification',
+ txtStopMacrosDesc: 'Disable all macros without notification',
+ strPaste: 'Cut, copy and paste',
+ strPasteButton: 'Show Paste Options button when content is pasted'
}, PE.Views.FileMenuPanels.Settings || {}));
PE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({
@@ -510,11 +575,11 @@ define([
store: new Common.UI.DataViewStore(this.recent),
itemTemplate: _.template([
'',
- '
',
- ' style="background-image: url(<%= image %>);background-position: center;"',
- '<% } %>',
- '>
',
+ '
',
+ '',
+ ' ',
+ ' ',
+ '
',
'
<% if (typeof title !== "undefined") {%><%= Common.Utils.String.htmlEncode(title || "") %><% } %>
',
'
<% if (typeof folder !== "undefined") {%><%= Common.Utils.String.htmlEncode(folder || "") %><% } %>
',
'
'
@@ -526,13 +591,19 @@ define([
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
el: this.$el,
- suppressScrollX: true
+ suppressScrollX: true,
+ alwaysVisibleY: true
});
}
return this;
},
+ show: function() {
+ Common.UI.BaseView.prototype.show.call(this,arguments);
+ this.scroller && this.scroller.update();
+ },
+
onRecentFileClick: function(view, itemview, record){
if ( this.menu )
this.menu.fireEvent('recent:open', [this.menu, record.get('url')]);
@@ -595,13 +666,19 @@ define([
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
el: this.$el,
- suppressScrollX: true
+ suppressScrollX: true,
+ alwaysVisibleY: true
});
}
return this;
},
+ show: function() {
+ Common.UI.BaseView.prototype.show.call(this,arguments);
+ this.scroller && this.scroller.update();
+ },
+
_onBlankDocument: function() {
if ( this.menu )
this.menu.fireEvent('create:new', [this.menu, 'blank']);
@@ -802,7 +879,8 @@ define([
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
el: this.$el,
- suppressScrollX: true
+ suppressScrollX: true,
+ alwaysVisibleY: true
});
}
@@ -813,6 +891,7 @@ define([
Common.UI.BaseView.prototype.show.call(this,arguments);
this.updateFileInfo();
+ this.scroller && this.scroller.update();
},
hide: function() {
@@ -1045,7 +1124,8 @@ define([
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
el: this.$el,
- suppressScrollX: true
+ suppressScrollX: true,
+ alwaysVisibleY: true
});
}
@@ -1057,6 +1137,7 @@ define([
show: function() {
Common.UI.BaseView.prototype.show.call(this,arguments);
+ this.scroller && this.scroller.update();
},
hide: function() {
@@ -1334,7 +1415,8 @@ define([
if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({
el: this.$el,
- suppressScrollX: true
+ suppressScrollX: true,
+ alwaysVisibleY: true
});
}
@@ -1348,6 +1430,7 @@ define([
Common.UI.BaseView.prototype.show.call(this,arguments);
this.updateSignatures();
this.updateEncrypt();
+ this.scroller && this.scroller.update();
},
setMode: function(mode) {
diff --git a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js
index d7a669ac1..ec2a29bff 100644
--- a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js
+++ b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js
@@ -65,7 +65,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
template,
'',
'',
- '
',
+ '
',
'',
'',
- '
',
+ '
',
'',
'
',
'',
- '
'
+ '
'
].join('');
this.options.tpl = _.template(this.template)(this.options);
diff --git a/apps/presentationeditor/main/app/view/SlideshowSettings.js b/apps/presentationeditor/main/app/view/SlideshowSettings.js
index c4e595dba..a9abd396a 100644
--- a/apps/presentationeditor/main/app/view/SlideshowSettings.js
+++ b/apps/presentationeditor/main/app/view/SlideshowSettings.js
@@ -62,7 +62,7 @@ define([
'',
- '
'
+ '
'
].join('');
this.options.tpl = _.template(this.template)(this.options);
diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js
index ff1228ea7..4537f48c0 100644
--- a/apps/presentationeditor/main/app/view/Toolbar.js
+++ b/apps/presentationeditor/main/app/view/Toolbar.js
@@ -836,12 +836,12 @@ define([
me.listTheme.fieldPicker.itemTemplate = _.template([
'',
- '
' + 'background-image: url(<%= imageUrl %>);' + '<% } %> background-position: 0 -<%= offsety %>px;"/>',
+ '
' + 'background-image: url(<%= imageUrl %>);' + '<% } %> background-position: 0 -<%= offsety %>px;">
',
'
'
].join(''));
me.listTheme.menuPicker.itemTemplate = _.template([
'
',
- '
' + 'background-image: url(<%= imageUrl %>);' + '<% } %> background-position: 0 -<%= offsety %>px;"/>',
+ '
' + 'background-image: url(<%= imageUrl %>);' + '<% } %> background-position: 0 -<%= offsety %>px;">
',
'
'
].join(''));
@@ -1505,7 +1505,7 @@ define([
store: PE.getCollection('SlideLayouts'),
itemTemplate: _.template([
'
',
- '
',
+ '
',
'
<%= title %>
',
'
'
].join(''))
diff --git a/apps/presentationeditor/main/index.html b/apps/presentationeditor/main/index.html
index 6b431247e..ba53817f6 100644
--- a/apps/presentationeditor/main/index.html
+++ b/apps/presentationeditor/main/index.html
@@ -295,6 +295,7 @@
+
diff --git a/apps/presentationeditor/main/index_loader.html b/apps/presentationeditor/main/index_loader.html
index d789d5680..ea20a977b 100644
--- a/apps/presentationeditor/main/index_loader.html
+++ b/apps/presentationeditor/main/index_loader.html
@@ -259,6 +259,7 @@
+
' + comment.username + '
' + - '' + comment.date + '
'; + template += '' + me.sliceQuote(comment.quote) + '
'; - template += ''; _.each(comment.replys, function (reply) { @@ -202,8 +202,8 @@ define([ if (isAndroid) { template += '' + reply.userInitials + ' '
}
- template += '' + reply.username + ' ' +
+ ' ' +
' ';
if (isAndroid) {
template += '';
@@ -212,7 +212,7 @@ define([
template += ' ';
}
template += '' +
- ' ' +
+ ' ' +
'';
});
template += '
' @@ -249,8 +249,8 @@ define([ '' + reply.username + '
' + - ' ' + + template += '<%= item.username %>
', - '<%= item.date %>
', + '<%= quote %>
', + '<%= item.comment %>
', + '', '<% _.each(item.replys, function (reply) { %>', @@ -271,15 +271,15 @@ define([ '',
' ',
- ' <% } %>',
'<% if (reply.editable && !viewmode) { %>',
' ',
'<% } %>',
' ',
+ ' ',
'',
'<% }); %>',
'
', diff --git a/apps/common/mobile/resources/less/ios/_collaboration.less b/apps/common/mobile/resources/less/ios/_collaboration.less index 919c94f6a..d958e12f4 100644 --- a/apps/common/mobile/resources/less/ios/_collaboration.less +++ b/apps/common/mobile/resources/less/ios/_collaboration.less @@ -145,10 +145,7 @@ padding: 16px 0; word-wrap: break-word; } - p { - margin: 0; - word-break: break-word; - } + .list-reply { padding-left: 26px; } @@ -176,6 +173,9 @@ margin: 0; max-width: 100%; padding-right: 15px; + pre { + white-space: pre-wrap; + } } .reply-item { margin-top: 15px; diff --git a/apps/common/mobile/resources/less/material/_collaboration.less b/apps/common/mobile/resources/less/material/_collaboration.less index a7439c97f..58fe43f98 100644 --- a/apps/common/mobile/resources/less/material/_collaboration.less +++ b/apps/common/mobile/resources/less/material/_collaboration.less @@ -143,10 +143,6 @@ } } } - p { - margin: 0; - word-break: break-word; - } .list-reply { padding-left: 26px; } @@ -173,6 +169,9 @@ margin: 0; max-width: 100%; padding-right: 15px; + pre { + white-space: pre-wrap; + } } .reply-item { padding-right: 16px; @@ -203,7 +202,7 @@ outline:none; width: 100%; font-size: 15px; - border: 1px solid #c4c4c4; + border: none; border-radius: 3px; min-height: 100px; } diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index dffc44187..8eef26616 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -99,6 +99,12 @@ DE.ApplicationController = new(function(){ docInfo.put_VKey(docConfig.vkey); docInfo.put_Token(docConfig.token); docInfo.put_Permissions(_permissions); + docInfo.put_EncryptedInfo(config.encryptionKeys); + + var enable = !config.customization || (config.customization.macros!==false); + docInfo.asc_putIsEnabledMacroses(!!enable); + enable = !config.customization || (config.customization.plugins!==false); + docInfo.asc_putIsEnabledPlugins(!!enable); var type = /^(?:(pdf|djvu|xps))$/.exec(docConfig.fileType); if (type && typeof type[1] === 'string') { @@ -107,6 +113,7 @@ DE.ApplicationController = new(function(){ if (api) { api.asc_registerCallback('asc_onGetEditorPermissions', onEditorPermissions); + api.asc_registerCallback('asc_onRunAutostartMacroses', onRunAutostartMacroses); api.asc_setDocInfo(docInfo); api.asc_getEditorPermissions(config.licenseUrl, config.customerId); api.asc_enableKeyEvents(true); @@ -481,6 +488,11 @@ DE.ApplicationController = new(function(){ if (api) api.asc_DownloadAs(new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.DOCX, true)); } + function onRunAutostartMacroses() { + if (!config.customization || (config.customization.macros!==false)) + if (api) api.asc_runAutostartMacroses(); + } + // Helpers // ------------------------- diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index e0d5c80d9..ef762b511 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -490,6 +490,10 @@ define([ value = Common.localStorage.getBool("de-settings-spellcheck", true); Common.Utils.InternalSettings.set("de-settings-spellcheck", value); this.api.asc_setSpellCheck(value); + + value = parseInt(Common.localStorage.getItem("de-settings-paste-button")); + Common.Utils.InternalSettings.set("de-settings-paste-button", value); + this.api.asc_setVisiblePasteButton(!!value); } this.api.put_ShowSnapLines(Common.Utils.InternalSettings.get("de-settings-showsnaplines")); @@ -499,8 +503,12 @@ define([ onCreateNew: function(menu, type) { if ( !Common.Controllers.Desktop.process('create:new') ) { - var newDocumentPage = window.open(type == 'blank' ? this.mode.createUrl : type, "_blank"); - if (newDocumentPage) newDocumentPage.focus(); + if (this.mode.canRequestCreateNew) + Common.Gateway.requestCreateNew(); + else { + var newDocumentPage = window.open(type == 'blank' ? this.mode.createUrl : type, "_blank"); + if (newDocumentPage) newDocumentPage.focus(); + } } if (menu) { diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 4a093b4c0..f963fe96d 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -337,11 +337,12 @@ define([ this.editorConfig.user = this.appOptions.user = Common.Utils.fillUserInfo(this.editorConfig.user, this.editorConfig.lang, this.textAnonymous); this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop'; - this.appOptions.canCreateNew = !_.isEmpty(this.editorConfig.createUrl); + this.appOptions.canCreateNew = this.editorConfig.canRequestCreateNew || !_.isEmpty(this.editorConfig.createUrl); this.appOptions.canOpenRecent = this.editorConfig.recent !== undefined && !this.appOptions.isDesktopApp; this.appOptions.templates = this.editorConfig.templates; this.appOptions.recent = this.editorConfig.recent; this.appOptions.createUrl = this.editorConfig.createUrl; + this.appOptions.canRequestCreateNew = this.editorConfig.canRequestCreateNew; this.appOptions.lang = this.editorConfig.lang; this.appOptions.location = (typeof (this.editorConfig.location) == 'string') ? this.editorConfig.location.toLowerCase() : ''; this.appOptions.sharingSettingsUrl = this.editorConfig.sharingSettingsUrl; @@ -384,6 +385,14 @@ define([ $('#editor-container').append('' + this.criticalErrorExtText; + config.msg += '
' + this.criticalErrorExtText; config.callback = function(btn) { if (btn == 'ok') Common.NotificationCenter.trigger('goback', true); @@ -2236,6 +2256,36 @@ define([ Common.Utils.warningDocumentIsLocked({disablefunc: _disable_ui}); }, + onRunAutostartMacroses: function() { + var me = this, + enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false); + if (enable) { + var value = Common.Utils.InternalSettings.get("de-macros-mode"); + if (value==1) + this.api.asc_runAutostartMacroses(); + else if (value === 0) { + Common.UI.warning({ + msg: this.textHasMacros + '
', + buttons: ['yes', 'no'], + primary: 'yes', + dontshow: true, + textDontShow: this.textRemember, + callback: function(btn, dontshow){ + if (dontshow) { + Common.Utils.InternalSettings.set("de-macros-mode", (btn == 'yes') ? 1 : 2); + Common.localStorage.setItem("de-macros-mode", (btn == 'yes') ? 1 : 2); + } + if (btn == 'yes') { + setTimeout(function() { + me.api.asc_runAutostartMacroses(); + }, 1); + } + } + }); + } + } + }, + leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.', criticalErrorTitle: 'Error', notcriticalErrorTitle: 'Warning', @@ -2587,7 +2637,9 @@ define([ textApplyAll: 'Apply to all equations', textLearnMore: 'Learn More', txtEnterDate: 'Enter a date.', - txtTypeEquation: 'Type equation here.' + txtTypeEquation: 'Type equation here.', + textHasMacros: 'The file contains automatic macros.
Do you want to run macros?', + textRemember: 'Remember my choice' } })(), DE.Controllers.Main || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/template/FileMenu.template b/apps/documenteditor/main/app/template/FileMenu.template index 35378e635..8bb022a44 100644 --- a/apps/documenteditor/main/app/template/FileMenu.template +++ b/apps/documenteditor/main/app/template/FileMenu.template @@ -1,37 +1,37 @@