',
''
diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js
index 8e2680f134..d448f8a6fc 100644
--- a/apps/common/main/lib/controller/Desktop.js
+++ b/apps/common/main/lib/controller/Desktop.js
@@ -169,20 +169,6 @@ define([
webapp.getController('Main').api.asc_DownloadAs();
}
};
-
- window.on_native_message('editor:config', 'request');
- if ( !!window.native_message_cmd ) {
- for ( var c in window.native_message_cmd ) {
- window.on_native_message(c, window.native_message_cmd[c]);
- }
- }
-
- native.execCommand('webapps:features', JSON.stringify(features));
-
- // hide mask for modal window
- var style = document.createElement('style');
- style.appendChild(document.createTextNode('.modals-mask{opacity:0 !important;}'));
- document.getElementsByTagName('head')[0].appendChild(style);
}
var _serializeHeaderButton = function(action, config) {
@@ -376,7 +362,7 @@ define([
cls: 'btn-header',
iconCls: 'toolbar__icon icon--inverse btn-home',
visible: false,
- hint: 'Show Main window',
+ hint: Common.Locale.get('hintBtnHome', {name:"Common.Controllers.Desktop", default: 'Show Main window'}),
dataHint:'0',
dataHintDirection: 'right',
dataHintOffset: '10, -18',
@@ -530,7 +516,8 @@ define([
return !!native;
},
isOffline: function () {
- // return webapp.getController('Main').api.asc_isOffline();
+ if ( config.isFillFormApp )
+ return webapp.getController('ApplicationController').appOptions.isOffline;
return webapp.getController('Main').appOptions.isOffline;
},
isFeatureAvailable: function (feature) {
@@ -568,9 +555,27 @@ define([
systemThemeSupported: function () {
return nativevars.theme && nativevars.theme.system !== 'disabled';
},
+ finalConstruct : function() {
+ if (!!native) {
+ window.on_native_message('editor:config', 'request');
+ if ( !!window.native_message_cmd ) {
+ for ( var c in window.native_message_cmd ) {
+ window.on_native_message(c, window.native_message_cmd[c]);
+ }
+ }
+
+ native.execCommand('webapps:features', JSON.stringify(features));
+
+ // hide mask for modal window
+ var style = document.createElement('style');
+ style.appendChild(document.createTextNode('.modals-mask{opacity:0 !important;}'));
+ document.getElementsByTagName('head')[0].appendChild(style);
+ }
+ }
};
};
!Common.Controllers && (Common.Controllers = {});
Common.Controllers.Desktop = new Desktop();
+ Common.Controllers.Desktop.finalConstruct();
});
diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js
index b9ee637975..a825cbd0ae 100644
--- a/apps/common/main/lib/controller/HintManager.js
+++ b/apps/common/main/lib/controller/HintManager.js
@@ -603,7 +603,7 @@ Common.UI.HintManager = new(function() {
}
}
if (curr.prop('id') === 'btn-go-back' || curr.closest('.btn-slot').prop('id') === 'slot-btn-options' ||
- curr.closest('.btn-slot').prop('id') === 'slot-btn-mode' || curr.prop('id') === 'btn-favorite' || curr.parent().prop('id') === 'tlb-box-users' ||
+ curr.closest('.btn-slot').prop('id') === 'slot-btn-mode' || curr.prop('id') === 'id-btn-favorite' || curr.parent().prop('id') === 'tlb-box-users' ||
curr.prop('id') === 'left-btn-thumbs' || curr.hasClass('scroll') || curr.prop('id') === 'left-btn-about' ||
curr.prop('id') === 'left-btn-support' || curr.closest('.btn-slot').prop('id') === 'slot-btn-search') {
_resetToDefault();
diff --git a/apps/common/main/lib/util/htmlutils.js b/apps/common/main/lib/util/htmlutils.js
index 8d814c89b9..b3b3d203da 100644
--- a/apps/common/main/lib/util/htmlutils.js
+++ b/apps/common/main/lib/util/htmlutils.js
@@ -104,7 +104,7 @@ window.Common = {
else {/* error */}
}).then(function (text) {
const el = document.querySelector('div.inlined-svg')
- el.append(htmlToElements(text));
+ el.appendChild(htmlToElements(text));
const i = svg_icons.findIndex(function (item) {return item == url});
if ( !(i < 0) ) svg_icons.splice(i, 1)
diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js
index 802a22fb4d..9fcd64e424 100644
--- a/apps/common/main/lib/view/Header.js
+++ b/apps/common/main/lib/view/Header.js
@@ -273,6 +273,7 @@ define([
me.btnFavorite.on('click', function (e) {
// wait for setFavorite method
// me.options.favorite = !me.options.favorite;
+ // me.btnFavorite.changeIcon(me.options.favorite ? {next: 'btn-in-favorite', curr: 'btn-favorite'} : {next: 'btn-favorite', curr: 'btn-in-favorite'});
// me.btnFavorite.changeIcon(me.options.favorite ? {next: 'btn-in-favorite'} : {curr: 'btn-in-favorite'});
// me.btnFavorite.updateHint(!me.options.favorite ? me.textAddFavorite : me.textRemoveFavorite);
Common.NotificationCenter.trigger('markfavorite', !me.options.favorite);
@@ -491,7 +492,7 @@ define([
});
me.btnFavorite = new Common.UI.Button({
- id: 'btn-favorite',
+ id: 'id-btn-favorite',
cls: 'btn-header',
iconCls: 'toolbar__icon icon--inverse btn-favorite',
dataHint: '0',
@@ -567,7 +568,7 @@ define([
if ( this.options.favorite !== undefined && this.options.favorite!==null) {
me.btnFavorite.render($html.find('#slot-btn-favorite'));
- me.btnFavorite.changeIcon(!!me.options.favorite ? {next: 'btn-in-favorite'} : {curr: 'btn-in-favorite'});
+ me.btnFavorite.changeIcon(!!me.options.favorite ? {next: 'btn-in-favorite', curr: 'btn-favorite'} : {next: 'btn-favorite', curr: 'btn-in-favorite'});
me.btnFavorite.updateHint(!me.options.favorite ? me.textAddFavorite : me.textRemoveFavorite);
} else {
$html.find('#slot-btn-favorite').hide();
@@ -744,7 +745,7 @@ define([
setFavorite: function (value) {
this.options.favorite = value;
this.btnFavorite[value!==undefined && value!==null ? 'show' : 'hide']();
- this.btnFavorite.changeIcon(!!value ? {next: 'btn-in-favorite'} : {curr: 'btn-in-favorite'});
+ this.btnFavorite.changeIcon(!!value ? {next: 'btn-in-favorite', curr: 'btn-favorite'} : {next: 'btn-favorite', curr: 'btn-in-favorite'});
this.btnFavorite.updateHint(!value ? this.textAddFavorite : this.textRemoveFavorite);
updateDocNamePosition(appConfig);
return this;
diff --git a/apps/common/main/resources/help/en/images/autocorrect.png b/apps/common/main/resources/help/en/images/autocorrect.png
index 9d9827fee3..6197e8f7c6 100644
Binary files a/apps/common/main/resources/help/en/images/autocorrect.png and b/apps/common/main/resources/help/en/images/autocorrect.png differ
diff --git a/apps/common/main/resources/help/en/images/chartdata.png b/apps/common/main/resources/help/en/images/chartdata.png
index 367d507a13..d424fbb187 100644
Binary files a/apps/common/main/resources/help/en/images/chartdata.png and b/apps/common/main/resources/help/en/images/chartdata.png differ
diff --git a/apps/common/main/resources/help/en/images/charteditor.png b/apps/common/main/resources/help/en/images/charteditor.png
index cfc10c4d05..f1ba34caa1 100644
Binary files a/apps/common/main/resources/help/en/images/charteditor.png and b/apps/common/main/resources/help/en/images/charteditor.png differ
diff --git a/apps/common/main/resources/help/en/images/chartsettings_alternativetext.png b/apps/common/main/resources/help/en/images/chartsettings_alternativetext.png
index 364932b3c0..b6bddb1b21 100644
Binary files a/apps/common/main/resources/help/en/images/chartsettings_alternativetext.png and b/apps/common/main/resources/help/en/images/chartsettings_alternativetext.png differ
diff --git a/apps/common/main/resources/help/en/images/chartsettings_cellsnapping.png b/apps/common/main/resources/help/en/images/chartsettings_cellsnapping.png
index 19488eb154..88c1dc1adf 100644
Binary files a/apps/common/main/resources/help/en/images/chartsettings_cellsnapping.png and b/apps/common/main/resources/help/en/images/chartsettings_cellsnapping.png differ
diff --git a/apps/common/main/resources/help/en/images/chartsettings_horizontalaxis.png b/apps/common/main/resources/help/en/images/chartsettings_horizontalaxis.png
index 5b83d10522..d62a7f27c5 100644
Binary files a/apps/common/main/resources/help/en/images/chartsettings_horizontalaxis.png and b/apps/common/main/resources/help/en/images/chartsettings_horizontalaxis.png differ
diff --git a/apps/common/main/resources/help/en/images/chartsettings_layout.png b/apps/common/main/resources/help/en/images/chartsettings_layout.png
index b0ae064073..2352bc444f 100644
Binary files a/apps/common/main/resources/help/en/images/chartsettings_layout.png and b/apps/common/main/resources/help/en/images/chartsettings_layout.png differ
diff --git a/apps/common/main/resources/help/en/images/chartsettings_secondaryaxis1.png b/apps/common/main/resources/help/en/images/chartsettings_secondaryaxis1.png
index ad3341afd1..0ac7a857cc 100644
Binary files a/apps/common/main/resources/help/en/images/chartsettings_secondaryaxis1.png and b/apps/common/main/resources/help/en/images/chartsettings_secondaryaxis1.png differ
diff --git a/apps/common/main/resources/help/en/images/chartsettings_secondaryaxis2.png b/apps/common/main/resources/help/en/images/chartsettings_secondaryaxis2.png
index ab17e63c6d..f7a8fa0344 100644
Binary files a/apps/common/main/resources/help/en/images/chartsettings_secondaryaxis2.png and b/apps/common/main/resources/help/en/images/chartsettings_secondaryaxis2.png differ
diff --git a/apps/common/main/resources/help/en/images/chartsettings_verticalaxis.png b/apps/common/main/resources/help/en/images/chartsettings_verticalaxis.png
index c6b403df35..e01d172bb1 100644
Binary files a/apps/common/main/resources/help/en/images/chartsettings_verticalaxis.png and b/apps/common/main/resources/help/en/images/chartsettings_verticalaxis.png differ
diff --git a/apps/common/main/resources/help/en/images/charttype.png b/apps/common/main/resources/help/en/images/charttype.png
index 7d3118128d..e9e9e9464f 100644
Binary files a/apps/common/main/resources/help/en/images/charttype.png and b/apps/common/main/resources/help/en/images/charttype.png differ
diff --git a/apps/common/main/resources/help/en/images/charttype_combo.png b/apps/common/main/resources/help/en/images/charttype_combo.png
index 7711422829..7aab85f35c 100644
Binary files a/apps/common/main/resources/help/en/images/charttype_combo.png and b/apps/common/main/resources/help/en/images/charttype_combo.png differ
diff --git a/apps/common/main/resources/help/en/images/chatgpt_left.png b/apps/common/main/resources/help/en/images/chatgpt_left.png
new file mode 100644
index 0000000000..747f9e3f6a
Binary files /dev/null and b/apps/common/main/resources/help/en/images/chatgpt_left.png differ
diff --git a/apps/common/main/resources/help/en/images/draw_tools.png b/apps/common/main/resources/help/en/images/draw_tools.png
new file mode 100644
index 0000000000..19239a60d7
Binary files /dev/null and b/apps/common/main/resources/help/en/images/draw_tools.png differ
diff --git a/apps/common/main/resources/help/en/images/editseries.png b/apps/common/main/resources/help/en/images/editseries.png
index 3bbb308b2f..c8d8138052 100644
Binary files a/apps/common/main/resources/help/en/images/editseries.png and b/apps/common/main/resources/help/en/images/editseries.png differ
diff --git a/apps/common/main/resources/help/en/images/find_small.png b/apps/common/main/resources/help/en/images/find_small.png
index 28ee507de4..7fa3c267bb 100644
Binary files a/apps/common/main/resources/help/en/images/find_small.png and b/apps/common/main/resources/help/en/images/find_small.png differ
diff --git a/apps/common/main/resources/help/en/images/pentool.png b/apps/common/main/resources/help/en/images/pentool.png
new file mode 100644
index 0000000000..09b4af932e
Binary files /dev/null and b/apps/common/main/resources/help/en/images/pentool.png differ
diff --git a/apps/common/main/resources/help/en/images/selectdata.png b/apps/common/main/resources/help/en/images/selectdata.png
index d3f2465e76..67c8be4df4 100644
Binary files a/apps/common/main/resources/help/en/images/selectdata.png and b/apps/common/main/resources/help/en/images/selectdata.png differ
diff --git a/apps/common/main/resources/help/en/images/zoom_left.png b/apps/common/main/resources/help/en/images/zoom_left.png
new file mode 100644
index 0000000000..8fcda246c1
Binary files /dev/null and b/apps/common/main/resources/help/en/images/zoom_left.png differ
diff --git a/apps/common/main/resources/help/fr/images/autocorrect.png b/apps/common/main/resources/help/fr/images/autocorrect.png
index 6c1fcae097..150aefd2fe 100644
Binary files a/apps/common/main/resources/help/fr/images/autocorrect.png and b/apps/common/main/resources/help/fr/images/autocorrect.png differ
diff --git a/apps/common/main/resources/help/fr/images/charteditor.png b/apps/common/main/resources/help/fr/images/charteditor.png
index 3917c70f61..329329e0c0 100644
Binary files a/apps/common/main/resources/help/fr/images/charteditor.png and b/apps/common/main/resources/help/fr/images/charteditor.png differ
diff --git a/apps/common/main/resources/help/fr/images/chartsettings_horizontalaxis.png b/apps/common/main/resources/help/fr/images/chartsettings_horizontalaxis.png
index 2fd6f21603..32f7496df5 100644
Binary files a/apps/common/main/resources/help/fr/images/chartsettings_horizontalaxis.png and b/apps/common/main/resources/help/fr/images/chartsettings_horizontalaxis.png differ
diff --git a/apps/common/main/resources/help/fr/images/chartsettings_layout.png b/apps/common/main/resources/help/fr/images/chartsettings_layout.png
index b2612a1a53..0f9e287a66 100644
Binary files a/apps/common/main/resources/help/fr/images/chartsettings_layout.png and b/apps/common/main/resources/help/fr/images/chartsettings_layout.png differ
diff --git a/apps/common/main/resources/help/fr/images/chartsettings_secondaryaxis1.png b/apps/common/main/resources/help/fr/images/chartsettings_secondaryaxis1.png
index 0f22b97072..2ed426ffc0 100644
Binary files a/apps/common/main/resources/help/fr/images/chartsettings_secondaryaxis1.png and b/apps/common/main/resources/help/fr/images/chartsettings_secondaryaxis1.png differ
diff --git a/apps/common/main/resources/help/fr/images/chartsettings_verticalaxis.png b/apps/common/main/resources/help/fr/images/chartsettings_verticalaxis.png
index a7eba16ab0..c28c9cb7a6 100644
Binary files a/apps/common/main/resources/help/fr/images/chartsettings_verticalaxis.png and b/apps/common/main/resources/help/fr/images/chartsettings_verticalaxis.png differ
diff --git a/apps/common/main/resources/help/fr/images/charttype.png b/apps/common/main/resources/help/fr/images/charttype.png
index c66786240b..d45281fab2 100644
Binary files a/apps/common/main/resources/help/fr/images/charttype.png and b/apps/common/main/resources/help/fr/images/charttype.png differ
diff --git a/apps/common/main/resources/help/fr/images/chatgpt_left.png b/apps/common/main/resources/help/fr/images/chatgpt_left.png
new file mode 100644
index 0000000000..747f9e3f6a
Binary files /dev/null and b/apps/common/main/resources/help/fr/images/chatgpt_left.png differ
diff --git a/apps/common/main/resources/help/fr/images/draw_tools.png b/apps/common/main/resources/help/fr/images/draw_tools.png
new file mode 100644
index 0000000000..8b467f8905
Binary files /dev/null and b/apps/common/main/resources/help/fr/images/draw_tools.png differ
diff --git a/apps/common/main/resources/help/fr/images/find_small.png b/apps/common/main/resources/help/fr/images/find_small.png
index 28ee507de4..7fa3c267bb 100644
Binary files a/apps/common/main/resources/help/fr/images/find_small.png and b/apps/common/main/resources/help/fr/images/find_small.png differ
diff --git a/apps/common/main/resources/help/fr/images/pentool.png b/apps/common/main/resources/help/fr/images/pentool.png
new file mode 100644
index 0000000000..b6653cf8fb
Binary files /dev/null and b/apps/common/main/resources/help/fr/images/pentool.png differ
diff --git a/apps/common/main/resources/help/fr/images/right_chart_3d.png b/apps/common/main/resources/help/fr/images/right_chart_3d.png
index a475da55db..f4146cd8ea 100644
Binary files a/apps/common/main/resources/help/fr/images/right_chart_3d.png and b/apps/common/main/resources/help/fr/images/right_chart_3d.png differ
diff --git a/apps/common/main/resources/help/fr/images/zoom_left.png b/apps/common/main/resources/help/fr/images/zoom_left.png
new file mode 100644
index 0000000000..8fcda246c1
Binary files /dev/null and b/apps/common/main/resources/help/fr/images/zoom_left.png differ
diff --git a/apps/common/main/resources/help/ru/images/autocorrect.png b/apps/common/main/resources/help/ru/images/autocorrect.png
index d84bb22dee..931c8dad79 100644
Binary files a/apps/common/main/resources/help/ru/images/autocorrect.png and b/apps/common/main/resources/help/ru/images/autocorrect.png differ
diff --git a/apps/common/main/resources/help/ru/images/chartsettings_alternativetext.png b/apps/common/main/resources/help/ru/images/chartsettings_alternativetext.png
index 05e50b7aed..afca0d9ff8 100644
Binary files a/apps/common/main/resources/help/ru/images/chartsettings_alternativetext.png and b/apps/common/main/resources/help/ru/images/chartsettings_alternativetext.png differ
diff --git a/apps/common/main/resources/help/ru/images/chartsettings_cellsnapping.png b/apps/common/main/resources/help/ru/images/chartsettings_cellsnapping.png
index 4cb837c3ba..6b1bca0547 100644
Binary files a/apps/common/main/resources/help/ru/images/chartsettings_cellsnapping.png and b/apps/common/main/resources/help/ru/images/chartsettings_cellsnapping.png differ
diff --git a/apps/common/main/resources/help/ru/images/chartsettings_horizontalaxis.png b/apps/common/main/resources/help/ru/images/chartsettings_horizontalaxis.png
index 6c484b651a..ae78960673 100644
Binary files a/apps/common/main/resources/help/ru/images/chartsettings_horizontalaxis.png and b/apps/common/main/resources/help/ru/images/chartsettings_horizontalaxis.png differ
diff --git a/apps/common/main/resources/help/ru/images/chartsettings_layout.png b/apps/common/main/resources/help/ru/images/chartsettings_layout.png
index 5d4fe3c283..222b92d555 100644
Binary files a/apps/common/main/resources/help/ru/images/chartsettings_layout.png and b/apps/common/main/resources/help/ru/images/chartsettings_layout.png differ
diff --git a/apps/common/main/resources/help/ru/images/chartsettings_secondaryaxis1.png b/apps/common/main/resources/help/ru/images/chartsettings_secondaryaxis1.png
index 6b8a723898..3ba10070a1 100644
Binary files a/apps/common/main/resources/help/ru/images/chartsettings_secondaryaxis1.png and b/apps/common/main/resources/help/ru/images/chartsettings_secondaryaxis1.png differ
diff --git a/apps/common/main/resources/help/ru/images/chartsettings_verticalaxis.png b/apps/common/main/resources/help/ru/images/chartsettings_verticalaxis.png
index bcd8660771..588e40e9a3 100644
Binary files a/apps/common/main/resources/help/ru/images/chartsettings_verticalaxis.png and b/apps/common/main/resources/help/ru/images/chartsettings_verticalaxis.png differ
diff --git a/apps/common/main/resources/help/ru/images/charttype.png b/apps/common/main/resources/help/ru/images/charttype.png
index 96f4c67366..2ba117016c 100644
Binary files a/apps/common/main/resources/help/ru/images/charttype.png and b/apps/common/main/resources/help/ru/images/charttype.png differ
diff --git a/apps/common/main/resources/help/ru/images/draw_tools.png b/apps/common/main/resources/help/ru/images/draw_tools.png
new file mode 100644
index 0000000000..e6c054eb90
Binary files /dev/null and b/apps/common/main/resources/help/ru/images/draw_tools.png differ
diff --git a/apps/common/main/resources/help/ru/images/palette_custom.png b/apps/common/main/resources/help/ru/images/palette_custom.png
index e13ee0df18..1510ea7a99 100644
Binary files a/apps/common/main/resources/help/ru/images/palette_custom.png and b/apps/common/main/resources/help/ru/images/palette_custom.png differ
diff --git a/apps/common/main/resources/help/ru/images/pentool.png b/apps/common/main/resources/help/ru/images/pentool.png
new file mode 100644
index 0000000000..0cf37f43d3
Binary files /dev/null and b/apps/common/main/resources/help/ru/images/pentool.png differ
diff --git a/apps/common/main/resources/help/ru/images/right_chart_3d.png b/apps/common/main/resources/help/ru/images/right_chart_3d.png
index abba31ce73..1657eac363 100644
Binary files a/apps/common/main/resources/help/ru/images/right_chart_3d.png and b/apps/common/main/resources/help/ru/images/right_chart_3d.png differ
diff --git a/apps/common/main/resources/img/toolbar/2.5x/btn-favorite.svg b/apps/common/main/resources/img/toolbar/2.5x/btn-favorite.svg
index e48f7f8309..20e0aa4b2d 100644
--- a/apps/common/main/resources/img/toolbar/2.5x/btn-favorite.svg
+++ b/apps/common/main/resources/img/toolbar/2.5x/btn-favorite.svg
@@ -1,3 +1 @@
-
+
\ No newline at end of file
diff --git a/apps/common/main/resources/less/bigscaling.less b/apps/common/main/resources/less/bigscaling.less
index a540f7fab8..7dad8c23d0 100644
--- a/apps/common/main/resources/less/bigscaling.less
+++ b/apps/common/main/resources/less/bigscaling.less
@@ -31,7 +31,8 @@
.btn-toolbar,
.btn-header,
- .btn-category
+ .btn-category,
+ .btn-options
{
svg.icon:not(.uni-scale):not(.pixel-ratio__2_5 *) {
display: none;
diff --git a/apps/common/main/resources/less/listview.less b/apps/common/main/resources/less/listview.less
index 31705702c3..c056f1f1d0 100644
--- a/apps/common/main/resources/less/listview.less
+++ b/apps/common/main/resources/less/listview.less
@@ -99,6 +99,7 @@
border-bottom: @scaled-one-px-value solid @border-regular-control;
padding: 3px 6px;
position: absolute;
+ margin: 1px;
margin: @scaled-one-px-value;
width: calc(100% - 2 * @scaled-one-px-value);
display: flex;
diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx
index 2f2b4332cb..14a591476d 100644
--- a/apps/common/mobile/lib/controller/collaboration/Review.jsx
+++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx
@@ -17,13 +17,17 @@ class InitReview extends Component {
Common.Notifications.on('document:ready', () => {
const api = Common.EditorApi.get();
const appOptions = props.storeAppOptions;
+ const isProtected = appOptions.isProtected;
let trackChanges = appOptions.customization && appOptions.customization.review ? appOptions.customization.review.trackChanges : undefined;
(trackChanges===undefined) && (trackChanges = appOptions.customization ? appOptions.customization.trackChanges : undefined);
trackChanges = appOptions.isReviewOnly || trackChanges === true || trackChanges !== false
&& LocalStorage.getBool("de-mobile-track-changes-" + (appOptions.fileKey || ''));
- api.asc_SetTrackRevisions(trackChanges);
+ if(!isProtected) {
+ api.asc_SetTrackRevisions(trackChanges);
+ }
+
// Init display mode
const canViewReview = appOptions.canReview || appOptions.isEdit || api.asc_HaveRevisionsChanges(true);
@@ -121,9 +125,11 @@ class Review extends Component {
render() {
const displayMode = this.props.storeReview.displayMode;
const isReviewOnly = this.appConfig.isReviewOnly;
+ const isProtected = this.appConfig.isProtected;
const canReview = this.appConfig.canReview;
const canUseReviewPermissions = this.appConfig.canUseReviewPermissions;
const isRestrictedEdit = this.appConfig.isRestrictedEdit;
+
return (
)
}
diff --git a/apps/common/mobile/lib/view/collaboration/Review.jsx b/apps/common/mobile/lib/view/collaboration/Review.jsx
index 7e5bbdd697..5d6b9d6904 100644
--- a/apps/common/mobile/lib/view/collaboration/Review.jsx
+++ b/apps/common/mobile/lib/view/collaboration/Review.jsx
@@ -8,7 +8,7 @@ import {Device} from "../../../utils/device";
const PageReview = props => {
const { t } = useTranslation();
const _t = t('Common.Collaboration', {returnObjects: true});
-
+ const isProtected = props.isProtected;
const isDisableAllSettings = props.isReviewOnly || props.displayMode === "final" || props.displayMode === "original";
const canReview = !!props.canReview;
@@ -25,8 +25,8 @@ const PageReview = props => {
{canReview &&
-
- props.onTrackChanges(!props.trackChanges)}/>
+
+ props.onTrackChanges(!props.trackChanges)} />
}
{!props.isRestrictedEdit &&
@@ -39,13 +39,13 @@ const PageReview = props => {
- {canReview && !props.canUseReviewPermissions &&
+ {canReview && !props.canUseReviewPermissions && !isProtected &&
{props.onAcceptAll();}}>
}
- {canReview && !props.canUseReviewPermissions &&
+ {canReview && !props.canUseReviewPermissions && !isProtected &&
{props.onRejectAll();}}>
@@ -101,7 +101,7 @@ const DisplayMode = props => {
)
};
-const PageReviewChange = props => {
+const PageReviewChange = inject("storeAppOptions")(observer(props => {
const isAndroid = Device.android;
const { t } = useTranslation();
const _t = t('Common.Collaboration', {returnObjects: true});
@@ -109,6 +109,9 @@ const PageReviewChange = props => {
const displayMode = props.displayMode;
const isLockAcceptReject = (!change || (change && !change.editable) || (displayMode === "final" || displayMode === "original") || !props.canReview);
const isLockPrevNext = (displayMode === "final" || displayMode === "original");
+ const appOptions = props.storeAppOptions;
+ const isProtected = appOptions.isProtected;
+
return (
@@ -126,12 +129,12 @@ const PageReviewChange = props => {
{props.onAcceptCurrentChange()}}
>{_t.textAccept}
{props.onRejectCurrentChange()}}
>{_t.textReject}
@@ -173,7 +176,7 @@ const PageReviewChange = props => {
}
)
-};
+}));
const PageDisplayMode = inject("storeReview")(observer(DisplayMode));
diff --git a/apps/documenteditor/embed/locale/pt-pt.json b/apps/documenteditor/embed/locale/pt-pt.json
index f52ca3163e..839cde15d6 100644
--- a/apps/documenteditor/embed/locale/pt-pt.json
+++ b/apps/documenteditor/embed/locale/pt-pt.json
@@ -12,7 +12,7 @@
"DE.ApplicationController.downloadTextText": "A descarregar documento…",
"DE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão. Contacte o administrador do servidor de documentos.",
"DE.ApplicationController.errorDefaultMessage": "Código de erro: %1",
- "DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar o documento. Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.",
+ "DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento. Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.",
"DE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.",
"DE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite permitido pelo servidor. Contacte o administrador do servidor de documentos para mais informações.",
"DE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente mais tarde.",
@@ -23,8 +23,8 @@
"DE.ApplicationController.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o ficheiro. O conteúdo do ficheiro corresponde a uma folha de cálculo (xls, xlsx...), mas a extensão de ficheiro não é consistente: %1",
"DE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados. Por favor contacte o administrador do servidor de documentos.",
"DE.ApplicationController.errorSubmit": "Falha ao submeter.",
- "DE.ApplicationController.errorTokenExpire": "O 'token' de segurança do documento expirou. Entre em contacto com o administrador do servidor de documentos.",
- "DE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação foi restaurada e a versão do ficheiro foi alterada. Antes de poder continuar a trabalhar, é necessário descarregar o ficheiro ou copiar o seu conteúdo para garantir que nada se perde e depois voltar a carregar esta página.",
+ "DE.ApplicationController.errorTokenExpire": "O 'token' de segurança do documento expirou. Contacte o administrador do servidor de documentos.",
+ "DE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação foi restaurada e a versão do ficheiro alterada. Antes de poder trabalhar, tem que descarregar o ficheiro ou copiar o seu conteúdo para garantir que nada se perde e, depois, recarregue esta página.",
"DE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.",
"DE.ApplicationController.notcriticalErrorTitle": "Aviso",
"DE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.",
@@ -37,7 +37,7 @@
"DE.ApplicationController.textLoadingDocument": "A carregar documento",
"DE.ApplicationController.textNext": "Campo seguinte",
"DE.ApplicationController.textOf": "de",
- "DE.ApplicationController.textRequired": "Preencha todos os campos obrigatório para submeter o formulário.",
+ "DE.ApplicationController.textRequired": "Preencha todos os campos obrigatório para enviar o formulário.",
"DE.ApplicationController.textSubmit": "Submeter",
"DE.ApplicationController.textSubmited": "Formulário submetido com sucesso Clique para fechar a dica",
"DE.ApplicationController.txtClose": "Fechar",
diff --git a/apps/documenteditor/embed/locale/uk.json b/apps/documenteditor/embed/locale/uk.json
index 99a2cef548..bfc7b18ba8 100644
--- a/apps/documenteditor/embed/locale/uk.json
+++ b/apps/documenteditor/embed/locale/uk.json
@@ -4,11 +4,12 @@
"common.view.modals.txtHeight": "Висота",
"common.view.modals.txtShare": "Поділитися посиланням",
"common.view.modals.txtWidth": "Ширина",
+ "common.view.SearchBar.textFind": "Знайти",
"DE.ApplicationController.convertationErrorText": "Не вдалося конвертувати",
"DE.ApplicationController.convertationTimeoutText": "Перевищено час очікування конверсії.",
"DE.ApplicationController.criticalErrorTitle": "Помилка",
- "DE.ApplicationController.downloadErrorText": "Завантаження не вдалося",
- "DE.ApplicationController.downloadTextText": "Завантаження документу...",
+ "DE.ApplicationController.downloadErrorText": "Звантаження не вдалося",
+ "DE.ApplicationController.downloadTextText": "Звантаження документу...",
"DE.ApplicationController.errorAccessDeny": "Ви намагаєтеся виконати дію, на яку у вас немає прав. Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.",
"DE.ApplicationController.errorDefaultMessage": "Код помилки: %1",
"DE.ApplicationController.errorEditingDownloadas": "Під час роботи з документом сталася помилка. Використовуйте опцію 'Завантажити як...', щоб зберегти резервну копію файлу на жорсткий диск комп'ютера.",
@@ -23,13 +24,13 @@
"DE.ApplicationController.notcriticalErrorTitle": "Застереження",
"DE.ApplicationController.openErrorText": "Під час відкриття файлу сталася помилка.",
"DE.ApplicationController.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.",
- "DE.ApplicationController.textAnonymous": "Анонімний користувач",
+ "DE.ApplicationController.textAnonymous": "Гість",
"DE.ApplicationController.textClear": "Очистити всі поля",
"DE.ApplicationController.textGotIt": "ОК",
"DE.ApplicationController.textGuest": "Гість",
"DE.ApplicationController.textLoadingDocument": "Завантаження документа",
"DE.ApplicationController.textNext": "Наступне поле",
- "DE.ApplicationController.textOf": "з",
+ "DE.ApplicationController.textOf": "із",
"DE.ApplicationController.textRequired": "Заповніть всі обов'язкові поля для відправлення форми.",
"DE.ApplicationController.textSubmit": "Відправити",
"DE.ApplicationController.textSubmited": "Форму успішно відправлено Натисніть, щоб закрити підказку",
@@ -39,12 +40,13 @@
"DE.ApplicationController.unknownErrorText": "Невідома помилка.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не підтримується",
"DE.ApplicationController.waitText": "Будь ласка, зачекайте...",
- "DE.ApplicationView.txtDownload": "Завантажити файл",
- "DE.ApplicationView.txtDownloadDocx": "Завантажити як docx",
- "DE.ApplicationView.txtDownloadPdf": "Завантажити як pdf",
+ "DE.ApplicationView.txtDownload": "Звантажити",
+ "DE.ApplicationView.txtDownloadDocx": "Звантажити як docx",
+ "DE.ApplicationView.txtDownloadPdf": "Звантажити як pdf",
"DE.ApplicationView.txtEmbed": "Вбудувати",
"DE.ApplicationView.txtFileLocation": "Відкрити розташування файлу",
"DE.ApplicationView.txtFullScreen": "Повноекранний режим",
"DE.ApplicationView.txtPrint": "Друк",
+ "DE.ApplicationView.txtSearch": "Пошук",
"DE.ApplicationView.txtShare": "Доступ"
}
\ No newline at end of file
diff --git a/apps/documenteditor/embed/locale/zh-tw.json b/apps/documenteditor/embed/locale/zh-tw.json
index 6dfd0e014a..bc0001ab23 100644
--- a/apps/documenteditor/embed/locale/zh-tw.json
+++ b/apps/documenteditor/embed/locale/zh-tw.json
@@ -16,6 +16,11 @@
"DE.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。",
"DE.ApplicationController.errorFileSizeExceed": "此檔案超過這主機設定的限制的大小 想了解更多資訊,請聯絡您的文件服務主機(Document Server)的管理者。",
"DE.ApplicationController.errorForceSave": "儲存文件檔時發生錯誤。請使用 “下載為” 選項將文件存到硬碟,或稍後再試。",
+ "DE.ApplicationController.errorInconsistentExt": "在開啟檔案時發生錯誤。 檔案內容與檔案的副檔名不相符。",
+ "DE.ApplicationController.errorInconsistentExtDocx": "在開啟檔案時發生錯誤。 檔案內容對應文字文件 (例如 docx),但檔案的副檔名不一致: %1。",
+ "DE.ApplicationController.errorInconsistentExtPdf": "在開啟檔案時發生錯誤。 檔案內容對應以下格式之一:pdf/djvu/xps/oxps,但檔案的副檔名不一致: %1。",
+ "DE.ApplicationController.errorInconsistentExtPptx": "在開啟檔案時發生錯誤。 檔案內容對應以下格式之一:pdf/djvu/xps/oxps,但檔案的副檔名不一致: %1。",
+ "DE.ApplicationController.errorInconsistentExtXlsx": "在開啟檔案時發生錯誤。 檔案內容對應試算表 (例如 xlsx),但檔案的副檔名不一致: %1。",
"DE.ApplicationController.errorLoadingFont": "字體未載入。 請聯絡文件服務(Document Server)管理員。",
"DE.ApplicationController.errorSubmit": "傳送失敗",
"DE.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。 請與您的Document Server管理員聯繫。",
diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js
index f966805ceb..38258a0315 100644
--- a/apps/documenteditor/forms/app/controller/ApplicationController.js
+++ b/apps/documenteditor/forms/app/controller/ApplicationController.js
@@ -468,7 +468,7 @@ define([
this.appOptions.fileChoiceUrl = this.editorConfig.fileChoiceUrl;
this.appOptions.saveAsUrl = this.editorConfig.saveAsUrl;
this.appOptions.canRequestSaveAs = this.editorConfig.canRequestSaveAs;
- this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop';
+ this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop' || Common.Controllers.Desktop.isActive();
this.appOptions.lang = this.editorConfig.lang;
this.appOptions.canPlugins = false;
@@ -1440,6 +1440,7 @@ define([
Common.Gateway.documentReady();
Common.Analytics.trackEvent('Load', 'Complete');
+ Common.NotificationCenter.trigger('document:ready');
},
onOptionsClick: function(menu, item, e) {
@@ -1602,16 +1603,24 @@ define([
}
if (Common.UI.Themes.available()) {
- var current = Common.UI.Themes.currentThemeId();
- for (var t in Common.UI.Themes.map()) {
- this.view.mnuThemes.addItem(new Common.UI.MenuItem({
- caption : Common.UI.Themes.get(t).text,
- value : t,
- toggleGroup : 'themes',
- checkable : true,
- checked : t===current
- }));
+ const _fill_themes = function () {
+ const _menu = this.view.mnuThemes;
+ _menu.removeAll();
+
+ const _current = Common.UI.Themes.currentThemeId();
+ for (const t in Common.UI.Themes.map()) {
+ _menu.addItem(new Common.UI.MenuItem({
+ caption : Common.UI.Themes.get(t).text,
+ value : t,
+ toggleGroup : 'themes',
+ checkable : true,
+ checked : t === _current
+ }));
+ }
}
+
+ Common.NotificationCenter.on('uitheme:countchanged', _fill_themes.bind(this));
+ _fill_themes.call(this);
}
if (this.view.mnuThemes.items.length<1) {
menuItems[7].setVisible(false);
diff --git a/apps/documenteditor/forms/app/view/ApplicationView.js b/apps/documenteditor/forms/app/view/ApplicationView.js
index aa8b710cb5..c453eb3298 100644
--- a/apps/documenteditor/forms/app/view/ApplicationView.js
+++ b/apps/documenteditor/forms/app/view/ApplicationView.js
@@ -46,6 +46,7 @@ define([
this.btnOptions = new Common.UI.Button({
cls: 'btn-toolbar no-caret',
iconCls: 'svg-icon more-vertical',
+ scaling: false,
menu: new Common.UI.Menu({
cls: 'shifted-right',
items: [
@@ -103,34 +104,39 @@ define([
this.btnClear = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon clear-style',
- caption: this.textClear
+ caption: this.textClear,
+ scaling: false
});
this.btnClear.render($('#id-btn-clear-fields'));
this.btnNext = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon arrow-down',
- caption: this.textNext
+ caption: this.textNext,
+ scaling: false
});
this.btnNext.render($('#id-btn-next-field'));
this.btnPrev = new Common.UI.Button({
cls: 'btn-toolbar',
- iconCls: 'svg-icon arrow-up'
+ iconCls: 'svg-icon arrow-up',
+ scaling: false
});
this.btnPrev.render($('#id-btn-prev-field'));
this.btnUndo = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon undo',
- hint: this.tipUndo + Common.Utils.String.platformKey('Ctrl+Z')
+ hint: this.tipUndo + Common.Utils.String.platformKey('Ctrl+Z'),
+ scaling: false
});
this.btnUndo.render($('#id-btn-undo'));
this.btnRedo = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon redo',
- hint: this.tipRedo + Common.Utils.String.platformKey('Ctrl+Y')
+ hint: this.tipRedo + Common.Utils.String.platformKey('Ctrl+Y'),
+ scaling: false
});
this.btnRedo.render($('#id-btn-redo'));
diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json
index 81a88abc35..8eb8c5d602 100644
--- a/apps/documenteditor/forms/locale/el.json
+++ b/apps/documenteditor/forms/locale/el.json
@@ -152,6 +152,7 @@
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
"DE.Controllers.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...",
+ "DE.Controllers.ApplicationController.warnLicenseAnonymous": "Δεν επιτρέπεται η πρόσβαση για ανώνυμους χρήστες. Αυτό το έγγραφο θα ανοίξει μόνο για προβολή.",
"DE.Controllers.ApplicationController.warnLicenseBefore": "Η άδεια δεν είναι ενεργή. Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με συντάκτες %1. Αυτό το έγγραφο θα ανοιχτεί μόνο για προβολή. Παρακαλούμε επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.",
"DE.Controllers.ApplicationController.warnLicenseExp": "Η άδειά σας έχει λήξει.",
diff --git a/apps/documenteditor/forms/locale/es.json b/apps/documenteditor/forms/locale/es.json
index 4265851e2d..857f28626e 100644
--- a/apps/documenteditor/forms/locale/es.json
+++ b/apps/documenteditor/forms/locale/es.json
@@ -136,6 +136,7 @@
"DE.Controllers.ApplicationController.textSaveAsDesktop": "Guardar como...",
"DE.Controllers.ApplicationController.textSubmited": "Formulario enviado con éxito Haga clic para cerrar el consejo",
"DE.Controllers.ApplicationController.titleLicenseExp": "La licencia ha expirado",
+ "DE.Controllers.ApplicationController.titleLicenseNotActive": "Licencia no activa",
"DE.Controllers.ApplicationController.titleServerVersion": "Editor ha sido actualizado",
"DE.Controllers.ApplicationController.titleUpdateVersion": "Versión se ha cambiado",
"DE.Controllers.ApplicationController.txtArt": "Escriba el texto aquí",
@@ -151,6 +152,8 @@
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Formato de imagen desconocido.",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
"DE.Controllers.ApplicationController.waitText": "Por favor, espere...",
+ "DE.Controllers.ApplicationController.warnLicenseAnonymous": "Acceso denegado para usuarios anónimos. Este documento se abrirá solo para su visualización.",
+ "DE.Controllers.ApplicationController.warnLicenseBefore": "Licencia no activa. Por favor, póngase en contacto con su administrador.",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Por favor, contacte con su administrador para recibir más información.",
"DE.Controllers.ApplicationController.warnLicenseExp": "Su licencia ha expirado. Actualice su licencia y después recargue la página.",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licencia expirada. No tiene acceso a la funcionalidad de edición de documentos. Por favor, póngase en contacto con su administrador.",
diff --git a/apps/documenteditor/forms/locale/id.json b/apps/documenteditor/forms/locale/id.json
index 044a8f6c92..12ca7ea808 100644
--- a/apps/documenteditor/forms/locale/id.json
+++ b/apps/documenteditor/forms/locale/id.json
@@ -152,6 +152,7 @@
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Format gambar tidak dikenal.",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.",
"DE.Controllers.ApplicationController.waitText": "Silahkan menunggu",
+ "DE.Controllers.ApplicationController.warnLicenseAnonymous": "Akses ditolak untuk pengguna anonim. Dokumen ini akan dibuka hanya untuk dilihat.",
"DE.Controllers.ApplicationController.warnLicenseBefore": "Lisensi tidak aktif.",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi admin Anda untuk mempelajari lebih lanjut.",
"DE.Controllers.ApplicationController.warnLicenseExp": "Lisensi Anda sudah kadaluwarsa. Silakan update lisensi Anda dan muat ulang halaman.",
diff --git a/apps/documenteditor/forms/locale/ja.json b/apps/documenteditor/forms/locale/ja.json
index ce5d0dc772..cc51c36afa 100644
--- a/apps/documenteditor/forms/locale/ja.json
+++ b/apps/documenteditor/forms/locale/ja.json
@@ -152,6 +152,7 @@
"DE.Controllers.ApplicationController.uploadImageExtMessage": "不明なイメージ形式です",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "画像サイズの上限を超えました。サイズの上限は25MBです。",
"DE.Controllers.ApplicationController.waitText": "少々お待ちください...",
+ "DE.Controllers.ApplicationController.warnLicenseAnonymous": "匿名ユーザーのアクセスは拒否されます。 このドキュメントは閲覧専用に開かれます。",
"DE.Controllers.ApplicationController.warnLicenseBefore": "ライセンスが無効になっています。 管理者までご連絡ください。",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "%1エディターへの同時接続の制限に達しました。 このドキュメントは表示専用で開かれます。 詳細については、管理者にお問い合わせください。",
"DE.Controllers.ApplicationController.warnLicenseExp": "ライセンスの有効期限が切れています。 ライセンスを更新してページをリロードしてください。",
diff --git a/apps/documenteditor/forms/locale/pt-pt.json b/apps/documenteditor/forms/locale/pt-pt.json
index 79f9343a05..26c226eb4a 100644
--- a/apps/documenteditor/forms/locale/pt-pt.json
+++ b/apps/documenteditor/forms/locale/pt-pt.json
@@ -1,36 +1,36 @@
{
- "Common.UI.Calendar.textApril": "Abril",
- "Common.UI.Calendar.textAugust": "Agosto",
- "Common.UI.Calendar.textDecember": "Dezembro",
- "Common.UI.Calendar.textFebruary": "Fevereiro",
- "Common.UI.Calendar.textJanuary": "Janeiro",
- "Common.UI.Calendar.textJuly": "Julho",
- "Common.UI.Calendar.textJune": "Junho",
- "Common.UI.Calendar.textMarch": "Março",
- "Common.UI.Calendar.textMay": "Maio",
+ "Common.UI.Calendar.textApril": "abril",
+ "Common.UI.Calendar.textAugust": "agosto",
+ "Common.UI.Calendar.textDecember": "dezembro",
+ "Common.UI.Calendar.textFebruary": "fevereiro",
+ "Common.UI.Calendar.textJanuary": "janeiro",
+ "Common.UI.Calendar.textJuly": "julho",
+ "Common.UI.Calendar.textJune": "junho",
+ "Common.UI.Calendar.textMarch": "março",
+ "Common.UI.Calendar.textMay": "maio",
"Common.UI.Calendar.textMonths": "Meses",
- "Common.UI.Calendar.textNovember": "Novembro",
- "Common.UI.Calendar.textOctober": "Outubro",
- "Common.UI.Calendar.textSeptember": "Setembro",
- "Common.UI.Calendar.textShortApril": "Abr",
- "Common.UI.Calendar.textShortAugust": "Ago",
- "Common.UI.Calendar.textShortDecember": "Dez",
- "Common.UI.Calendar.textShortFebruary": "Fev",
- "Common.UI.Calendar.textShortFriday": "Sex",
- "Common.UI.Calendar.textShortJanuary": "Jan",
- "Common.UI.Calendar.textShortJuly": "Jul",
- "Common.UI.Calendar.textShortJune": "Jun",
- "Common.UI.Calendar.textShortMarch": "Mar",
- "Common.UI.Calendar.textShortMay": "Mai",
- "Common.UI.Calendar.textShortMonday": "Seg",
- "Common.UI.Calendar.textShortNovember": "Nov",
- "Common.UI.Calendar.textShortOctober": "Out",
- "Common.UI.Calendar.textShortSaturday": "Sáb",
- "Common.UI.Calendar.textShortSeptember": "Set",
- "Common.UI.Calendar.textShortSunday": "Dom",
- "Common.UI.Calendar.textShortThursday": "Qui",
- "Common.UI.Calendar.textShortTuesday": "Ter",
- "Common.UI.Calendar.textShortWednesday": "Qua",
+ "Common.UI.Calendar.textNovember": "novembro",
+ "Common.UI.Calendar.textOctober": "outubro",
+ "Common.UI.Calendar.textSeptember": "setembro",
+ "Common.UI.Calendar.textShortApril": "abr",
+ "Common.UI.Calendar.textShortAugust": "ago",
+ "Common.UI.Calendar.textShortDecember": "dez",
+ "Common.UI.Calendar.textShortFebruary": "fev",
+ "Common.UI.Calendar.textShortFriday": "sex",
+ "Common.UI.Calendar.textShortJanuary": "jan",
+ "Common.UI.Calendar.textShortJuly": "jul",
+ "Common.UI.Calendar.textShortJune": "jun",
+ "Common.UI.Calendar.textShortMarch": "mar",
+ "Common.UI.Calendar.textShortMay": "mai",
+ "Common.UI.Calendar.textShortMonday": "seg",
+ "Common.UI.Calendar.textShortNovember": "nov",
+ "Common.UI.Calendar.textShortOctober": "out",
+ "Common.UI.Calendar.textShortSaturday": "sáb",
+ "Common.UI.Calendar.textShortSeptember": "set",
+ "Common.UI.Calendar.textShortSunday": "dom",
+ "Common.UI.Calendar.textShortThursday": "qui",
+ "Common.UI.Calendar.textShortTuesday": "ter",
+ "Common.UI.Calendar.textShortWednesday": "qua",
"Common.UI.Calendar.textYears": "Anos",
"Common.UI.SearchBar.textFind": "Localizar",
"Common.UI.SearchBar.tipCloseSearch": "Fechar pesquisa",
@@ -40,18 +40,18 @@
"Common.UI.Themes.txtThemeContrastDark": "Contraste escuro",
"Common.UI.Themes.txtThemeDark": "Escuro",
"Common.UI.Themes.txtThemeLight": "Claro",
- "Common.UI.Themes.txtThemeSystem": "O mesmo que o sistema",
+ "Common.UI.Themes.txtThemeSystem": "Igual ao do sistema",
"Common.UI.Window.cancelButtonText": "Cancelar",
"Common.UI.Window.closeButtonText": "Fechar",
"Common.UI.Window.noButtonText": "Não",
"Common.UI.Window.okButtonText": "OK",
"Common.UI.Window.textConfirmation": "Confirmação",
- "Common.UI.Window.textDontShow": "Não mostrar esta mensagem novamente",
+ "Common.UI.Window.textDontShow": "Não mostrar mensagem novamente",
"Common.UI.Window.textError": "Erro",
"Common.UI.Window.textInformation": "Informação",
"Common.UI.Window.textWarning": "Aviso",
"Common.UI.Window.yesButtonText": "Sim",
- "Common.Views.CopyWarningDialog.textDontShow": "Não mostrar esta mensagem novamente",
+ "Common.Views.CopyWarningDialog.textDontShow": "Não mostrar mensagem novamente",
"Common.Views.CopyWarningDialog.textMsg": "As ações de copiar, cortar e colar usando as ações do menu de contexto serão realizadas apenas neste separador do editor.
Para copiar ou colar de ou para aplicações fora do separador do editor, use as seguintes combinações de teclas:",
"Common.Views.CopyWarningDialog.textTitle": "Ações de copiar, cortar e colar",
"Common.Views.CopyWarningDialog.textToCopy": "para Copiar",
@@ -61,7 +61,7 @@
"Common.Views.EmbedDialog.textTitle": "Incorporar",
"Common.Views.EmbedDialog.textWidth": "Largura",
"Common.Views.EmbedDialog.txtCopy": "Copiar para a área de transferência",
- "Common.Views.EmbedDialog.warnCopy": "Erro do navegador! Utilize a tecla de atalho [Ctrl] + [C]",
+ "Common.Views.EmbedDialog.warnCopy": "Erro do navegador! Utilize o atalho [Ctrl] + [C]",
"Common.Views.ImageFromUrlDialog.textUrl": "Colar URL de uma imagem:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"",
@@ -77,10 +77,10 @@
"Common.Views.SaveAsDlg.textLoading": "A carregar",
"Common.Views.SaveAsDlg.textTitle": "Pasta para guardar",
"Common.Views.SelectFileDlg.textLoading": "A carregar",
- "Common.Views.SelectFileDlg.textTitle": "Selecione a fonte dos dados",
+ "Common.Views.SelectFileDlg.textTitle": "Selecione a origem dos dados",
"Common.Views.ShareDialog.textTitle": "Partilhar ligação",
"Common.Views.ShareDialog.txtCopy": "Copiar para a área de transferência",
- "Common.Views.ShareDialog.warnCopy": "Erro do navegador! Utilize a tecla de atalho [Ctrl] + [C]",
+ "Common.Views.ShareDialog.warnCopy": "Erro do navegador! Utilize o atalho [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Falha na conversão.",
"DE.Controllers.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.",
"DE.Controllers.ApplicationController.criticalErrorTitle": "Erro",
@@ -88,7 +88,7 @@
"DE.Controllers.ApplicationController.downloadTextText": "A descarregar documento...",
"DE.Controllers.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissões. Por favor contacte o administrador do servidor de documentos.",
"DE.Controllers.ApplicationController.errorBadImageUrl": "O URL da imagem está incorreto",
- "DE.Controllers.ApplicationController.errorConnectToServer": "Não foi possível guardar o documento. Verifique a sua ligação de rede ou contacte o seu administrador. Ao clicar no botão OK, ser-lhe-á pedido para descarregar o documento.",
+ "DE.Controllers.ApplicationController.errorConnectToServer": "Não foi possível guardar o documento. Verifique a sua ligação de rede ou contacte o seu administrador. Se clicar no botão OK, ser-lhe-á pedido para descarregar o documento.",
"DE.Controllers.ApplicationController.errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.",
"DE.Controllers.ApplicationController.errorDefaultMessage": "Código de erro: %1",
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento. Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.",
@@ -101,27 +101,27 @@
"DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Ocorreu um erro ao abrir o ficheiro. O conteúdo do ficheiro corresponde a um dos seguintes formatos: pdf/djvu/xps/oxps, mas a extensão de ficheiro não é consistente: %1",
"DE.Controllers.ApplicationController.errorInconsistentExtPptx": "Ocorreu um erro ao abrir o ficheiro. O conteúdo do ficheiro corresponde a uma apresentação (ppt, pptx...), mas a extensão de ficheiro não é consistente: %1",
"DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "Ocorreu um erro ao abrir o ficheiro. O conteúdo do ficheiro corresponde a uma folha de cálculo (xls, xlsx...), mas a extensão de ficheiro não é consistente: %1",
- "DE.Controllers.ApplicationController.errorLoadingFont": "Os tipos de letra não foram carregados. Contacte o administrador do servidor de documentos.",
+ "DE.Controllers.ApplicationController.errorLoadingFont": "Tipos de letra não carregados. Contacte o administrador do servidor de documentos.",
"DE.Controllers.ApplicationController.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
- "DE.Controllers.ApplicationController.errorSessionAbsolute": "A sessão de edição expirou. Tente recarregar a página.",
- "DE.Controllers.ApplicationController.errorSessionIdle": "Este documento não foi editado durante muito tempo. Tente recarregar a página.",
- "DE.Controllers.ApplicationController.errorSessionToken": "A ligação ao servidor foi interrompida. Tente recarregar a página.",
+ "DE.Controllers.ApplicationController.errorSessionAbsolute": "A sessão de edição expirou. Recarregue a página.",
+ "DE.Controllers.ApplicationController.errorSessionIdle": "Este documento não foi editado durante muito tempo. Recarregue a página.",
+ "DE.Controllers.ApplicationController.errorSessionToken": "A ligação ao servidor foi interrompida. Recarregue a página.",
"DE.Controllers.ApplicationController.errorSubmit": "Falha ao submeter.",
"DE.Controllers.ApplicationController.errorTextFormWrongFormat": "O valor introduzido não corresponde ao formato do campo.",
- "DE.Controllers.ApplicationController.errorToken": "O 'token' de segurança do documento não foi formatado corretamente. Entre em contato com o administrador do servidor de documentos.",
- "DE.Controllers.ApplicationController.errorTokenExpire": "O 'token' de segurança do documento expirou. Entre em contacto com o administrador do servidor de documentos.",
+ "DE.Controllers.ApplicationController.errorToken": "O 'token' de segurança do documento não estáformatado corretamente. Contacte o administrador do servidor de documentos.",
+ "DE.Controllers.ApplicationController.errorTokenExpire": "O 'token' de segurança do documento expirou. Contacte o administrador do servidor de documentos.",
"DE.Controllers.ApplicationController.errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.",
- "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação foi restaurada e a versão do ficheiro foi alterada. Antes de poder continuar a trabalhar, é necessário descarregar o ficheiro ou copiar o seu conteúdo para garantir que nada se perde e depois voltar a carregar esta página.",
+ "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação foi restaurada e a versão do ficheiro alterada. Antes de poder trabalhar, tem que descarregar o ficheiro ou copiar o seu conteúdo para garantir que nada se perde e, depois, recarregue esta página.",
"DE.Controllers.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.",
- "DE.Controllers.ApplicationController.errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não o conseguirá descarregar até que a ligação seja restaurada e a página recarregada.",
+ "DE.Controllers.ApplicationController.errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não o conseguirá descarregar até que a ligação seja restaurada e a página recarregada.",
"DE.Controllers.ApplicationController.mniImageFromFile": "Imagem de um ficheiro",
"DE.Controllers.ApplicationController.mniImageFromStorage": "Imagem de um armazenamento",
"DE.Controllers.ApplicationController.mniImageFromUrl": "Imagem de um URL",
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Aviso",
"DE.Controllers.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.",
"DE.Controllers.ApplicationController.saveErrorText": "Ocorreu um erro ao guardar o ficheiro.",
- "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado. Os motivos podem ser: 1. O ficheiro é apenas de leitura. 2. O ficheiro está a ser editado por outro utilizador. 3. O disco está cheio ou danificado.",
- "DE.Controllers.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Tente recarregar a página.",
+ "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado. Os motivos podem ser: 1. O ficheiro é apenas de leitura. 2. O ficheiro está a ser editado por outro utilizador. 3. O disco está cheio ou danificado.",
+ "DE.Controllers.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Recarregue a página.",
"DE.Controllers.ApplicationController.textAnonymous": "Anónimo",
"DE.Controllers.ApplicationController.textBuyNow": "Visitar site",
"DE.Controllers.ApplicationController.textCloseTip": "Clique para fechar a dica.",
@@ -129,9 +129,9 @@
"DE.Controllers.ApplicationController.textGotIt": "Percebi",
"DE.Controllers.ApplicationController.textGuest": "Convidado",
"DE.Controllers.ApplicationController.textLoadingDocument": "A carregar documento",
- "DE.Controllers.ApplicationController.textNoLicenseTitle": "Limite de licença atingido",
+ "DE.Controllers.ApplicationController.textNoLicenseTitle": "Atingiu o limite da licença",
"DE.Controllers.ApplicationController.textOf": "de",
- "DE.Controllers.ApplicationController.textRequired": "Preencha todos os campos obrigatório para submeter o formulário.",
+ "DE.Controllers.ApplicationController.textRequired": "Preencha todos os campos obrigatório para enviar o formulário.",
"DE.Controllers.ApplicationController.textSaveAs": "Guardar como PDF",
"DE.Controllers.ApplicationController.textSaveAsDesktop": "Guardar como...",
"DE.Controllers.ApplicationController.textSubmited": "Formulário submetido com sucesso Clique para fechar a dica",
@@ -150,16 +150,17 @@
"DE.Controllers.ApplicationController.unknownErrorText": "Erro desconhecido.",
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.",
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Formato de imagem desconhecido.",
- "DE.Controllers.ApplicationController.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.",
+ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo permitido é de 25 MB.",
"DE.Controllers.ApplicationController.waitText": "Aguarde...",
+ "DE.Controllers.ApplicationController.warnLicenseAnonymous": "Acesso recusado para utilizadores anónimos. O documento será aberto no modo de leitura.",
"DE.Controllers.ApplicationController.warnLicenseBefore": "Licença inativa. Contacte o administrador de sistemas.",
- "DE.Controllers.ApplicationController.warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura. Contacte o administrador para obter mais detalhes.",
+ "DE.Controllers.ApplicationController.warnLicenseExceeded": "Atingiu o limite de ligações simultâneas aos editores %1. Este documento será aberto no modo de leitura. Contacte o administrador para obter mais detalhes.",
"DE.Controllers.ApplicationController.warnLicenseExp": "A sua licença expirou. Deve atualizar a licença e recarregar a página.",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licença expirada. Não pode editar o documento. Por favor contacte o administrador de sistemas.",
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Tem que renovar a sua licença. A edição de documentos está limitada. Contacte o administrador de sistemas para obter acesso total.",
- "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.",
- "DE.Controllers.ApplicationController.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura. Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.",
- "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.",
+ "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Atingiu o limite de utilizadores para os editores %1. Contacte o seu administrador para obter detalhes.",
+ "DE.Controllers.ApplicationController.warnNoLicense": "Atingiu o limite de ligações simultâneas aos editores %1. Este documento será aberto no modo de leitura. Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.",
+ "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Atingiu o limite de utilizadores para os editores %1. Contacte a equipa comercial %1 para obter mais informações.",
"DE.Views.ApplicationView.textClear": "Limpar todos os campos",
"DE.Views.ApplicationView.textClearField": "Limpar campo",
"DE.Views.ApplicationView.textCopy": "Copiar",
diff --git a/apps/documenteditor/forms/locale/si.json b/apps/documenteditor/forms/locale/si.json
index b52ef792e7..f4e6c5368b 100644
--- a/apps/documenteditor/forms/locale/si.json
+++ b/apps/documenteditor/forms/locale/si.json
@@ -152,6 +152,7 @@
"DE.Controllers.ApplicationController.uploadImageExtMessage": "නොදන්නා අනුරුවක ආකෘතියකි.",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "අනුරුව ඉතා විශාලට. උ. ප්රමාණය මෙ.බ. 25.",
"DE.Controllers.ApplicationController.waitText": "කරුණාකර, රැඳෙන්න...",
+ "DE.Controllers.ApplicationController.warnLicenseAnonymous": "නිර්නාමික පරිශ්රීලකයින් සඳහා ප්රවේශය ප්රතික්ෂේපිතයි. මෙම ලේඛනය දැකීමට පමණක් විවෘත වනු ඇත.",
"DE.Controllers.ApplicationController.warnLicenseBefore": "බලපත්රය සක්රිය නැත. කරුණාකර ඔබගේ පරිපාලක අමතන්න.",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "ඔබ %1 සංස්කරක වෙත සමකාල සම්බන්ධතා සීමාවට පැමිණ ඇත. මෙම ලේඛනය දැකීමට පමණක් විවෘත වේ. තව දැන ගැනීමට ඔබගේ පරිපාලක අමතන්න.",
"DE.Controllers.ApplicationController.warnLicenseExp": "ඔබගේ බලපත්රය කල් ඉකුත්ව ඇත. බලපත්රය යාවත්කාල කර පිටුව නැවුම් කරන්න.",
diff --git a/apps/documenteditor/forms/locale/zh-tw.json b/apps/documenteditor/forms/locale/zh-tw.json
index cf660dfbab..bcd12e1328 100644
--- a/apps/documenteditor/forms/locale/zh-tw.json
+++ b/apps/documenteditor/forms/locale/zh-tw.json
@@ -96,12 +96,18 @@
"DE.Controllers.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "此檔案超過這主機設定的限制的大小 想了解更多資訊,請聯絡您的文件服務主機(Document Server)的管理者。",
"DE.Controllers.ApplicationController.errorForceSave": "儲存文件時發生錯誤。請使用“下載為”選項將文件儲存到電腦機硬碟中,或稍後再試。",
+ "DE.Controllers.ApplicationController.errorInconsistentExt": "在開啟檔案時發生錯誤。 檔案內容與檔案的副檔名不相符。",
+ "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "在開啟檔案時發生錯誤。 檔案內容對應文字文件 (例如 docx),但檔案的副檔名不一致: %1。",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "在開啟檔案時發生錯誤。 檔案內容對應以下格式之一:pdf/djvu/xps/oxps,但檔案的副檔名不一致: %1。",
+ "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "在開啟檔案時發生錯誤。 檔案內容對應以下格式之一:pdf/djvu/xps/oxps,但檔案的副檔名不一致: %1。",
+ "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "在開啟檔案時發生錯誤。 檔案內容對應試算表 (例如 xlsx),但檔案的副檔名不一致: %1。",
"DE.Controllers.ApplicationController.errorLoadingFont": "字體未載入。 請聯絡文件服務(Document Server)管理員。",
"DE.Controllers.ApplicationController.errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "此文件編輯的會期已經過時。請重新載入此頁面。",
"DE.Controllers.ApplicationController.errorSessionIdle": "此文件已經在編輯狀態有很長時間, 請重新載入此頁面。",
"DE.Controllers.ApplicationController.errorSessionToken": "與服務器的連接已中斷。請重新加載頁面。",
"DE.Controllers.ApplicationController.errorSubmit": "傳送失敗",
+ "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "輸入的值與欄位格式不符。",
"DE.Controllers.ApplicationController.errorToken": "文檔安全令牌的格式不正確。 請與您的Document Server管理員聯繫。",
"DE.Controllers.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。 請與您的Document Server管理員聯繫。",
"DE.Controllers.ApplicationController.errorUpdateVersion": "文件版本已更改。該頁面將重新加載。",
@@ -130,6 +136,7 @@
"DE.Controllers.ApplicationController.textSaveAsDesktop": "另存新檔",
"DE.Controllers.ApplicationController.textSubmited": "表格傳送成功 點此關閉提示",
"DE.Controllers.ApplicationController.titleLicenseExp": "證件過期",
+ "DE.Controllers.ApplicationController.titleLicenseNotActive": "授權未啟用",
"DE.Controllers.ApplicationController.titleServerVersion": "編輯器已更新",
"DE.Controllers.ApplicationController.titleUpdateVersion": "版本已更改",
"DE.Controllers.ApplicationController.txtArt": "在這輸入文字",
@@ -145,6 +152,8 @@
"DE.Controllers.ApplicationController.uploadImageExtMessage": "圖片格式未知。",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。",
"DE.Controllers.ApplicationController.waitText": "請耐心等待...",
+ "DE.Controllers.ApplicationController.warnLicenseAnonymous": "匿名使用者無法存取。 此文件將僅供檢視。",
+ "DE.Controllers.ApplicationController.warnLicenseBefore": "授權未啟用。 請聯絡您的管理員。",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。 進一步訊息, 請聯繫您的管理者。",
"DE.Controllers.ApplicationController.warnLicenseExp": "您的授權證已過期. 請更新您的授權證並重新整理頁面。",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "授權過期 您已沒有編輯文件功能的授權 請與您的管理者聯繫。",
@@ -153,6 +162,7 @@
"DE.Controllers.ApplicationController.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。 請聯繫 %1 銷售團隊來取得個人升級的需求。",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。",
"DE.Views.ApplicationView.textClear": "清除所有段落",
+ "DE.Views.ApplicationView.textClearField": "清除字段",
"DE.Views.ApplicationView.textCopy": "複製",
"DE.Views.ApplicationView.textCut": "剪下",
"DE.Views.ApplicationView.textFitToPage": "切合至頁面",
diff --git a/apps/documenteditor/forms/locale/zh.json b/apps/documenteditor/forms/locale/zh.json
index 5dc804c2cb..78595289e8 100644
--- a/apps/documenteditor/forms/locale/zh.json
+++ b/apps/documenteditor/forms/locale/zh.json
@@ -152,6 +152,7 @@
"DE.Controllers.ApplicationController.uploadImageExtMessage": "未知图像格式。",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "图片太大了。最大允许的大小为 25 MB.",
"DE.Controllers.ApplicationController.waitText": "请稍候...",
+ "DE.Controllers.ApplicationController.warnLicenseAnonymous": "拒绝匿名用户的访问。 本文档将以仅查看模式而打开。",
"DE.Controllers.ApplicationController.warnLicenseBefore": "许可证未激活。 请联系管理员。",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "您已达到同时连接 %1 编辑器的限制。该文档将打开以查看。 请联系管理员以了解更多。",
"DE.Controllers.ApplicationController.warnLicenseExp": "您的许可证已过期。 请更新您的许可证并刷新页面。",
diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js
index 7c8d8f54e6..46698f99a3 100644
--- a/apps/documenteditor/main/app/controller/Toolbar.js
+++ b/apps/documenteditor/main/app/controller/Toolbar.js
@@ -100,6 +100,7 @@ define([
can_copycut: undefined,
pgmargins: undefined,
fontsize: undefined,
+ type_fontsize: undefined,
in_equation: false,
in_chart: false,
linenum_apply: Asc.c_oAscSectionApplyType.All,
@@ -479,9 +480,20 @@ define([
},
onApiFontSize: function(size) {
- if (this._state.fontsize !== size) {
- this.toolbar.cmbFontSize.setValue(size);
- this._state.fontsize = size;
+ var type = this._state.type_fontsize;
+ if (this.toolbar.cmbFontSize && this._state.type_fontsize === 'string') {
+ var strValue = size + '_str',
+ rec = this.toolbar.cmbFontSize.store.findWhere({
+ value: strValue
+ });
+ if (!rec) {
+ type = 'number';
+ }
+ }
+ var val = type === 'string' ? size + '_str' : size;
+ if (this._state.fontsize !== val) {
+ this.toolbar.cmbFontSize.setValue(val);
+ this._state.fontsize = val;
}
},
@@ -1280,8 +1292,9 @@ define([
onFontSizeSelect: function(combo, record) {
this._state.fontsize = undefined;
+ this._state.type_fontsize = typeof record.value;
if (this.api)
- this.api.put_TextPrFontSize(record.value);
+ this.api.put_TextPrFontSize(this._state.type_fontsize === 'string' ? parseFloat(record.value) : record.value);
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
Common.component.Analytics.trackEvent('ToolBar', 'Font Size');
@@ -1296,7 +1309,8 @@ define([
displayValue: record.value
});
- if (!item) {
+ if (!item || isNaN(Common.Utils.String.parseFloat(record.value))) {
+ me._state.type_fontsize = 'number';
value = /^\+?(\d*(\.|,)?\d+)$|^\+?(\d+(\.|,)?\d*)$/.exec(record.value);
if (!value) {
@@ -1474,8 +1488,9 @@ define([
skipRenderOnChange: true,
group : picker.options.listSettings.recentGroup,
type: 0}, {at: 0});
- if (recents && recents.length>=picker.options.listSettings.recentCount)
- picker.store.remove(recents[recents.length]);
+ recents = picker.store.where({type: 0});
+ if (recents && recents.length>picker.options.listSettings.recentCount)
+ picker.store.remove(recents.slice(picker.options.listSettings.recentCount, recents.length));
this.toolbar.saveListPresetToStorage(picker);
},
@@ -3400,6 +3415,12 @@ define([
var me = this;
me.appOptions = config;
+ var lang = config.lang ? config.lang.toLowerCase() : 'en',
+ langPrefix = lang.split(/[\-_]/)[0];
+ if (langPrefix === 'zh' && lang !== 'zh-tw' && lang !== 'zh_tw') {
+ me._state.type_fontsize = 'string';
+ }
+
this.btnsComment = [];
if ( config.canCoAuthoring && config.canComments ) {
this.btnsComment = Common.Utils.injectButtons(this.toolbar.$el.find('.slot-comment'), 'tlbtn-addcomment-', 'toolbar__icon btn-menu-comments', this.toolbar.capBtnComment,
diff --git a/apps/documenteditor/main/app/view/FormsTab.js b/apps/documenteditor/main/app/view/FormsTab.js
index 3efa0d505c..970167d109 100644
--- a/apps/documenteditor/main/app/view/FormsTab.js
+++ b/apps/documenteditor/main/app/view/FormsTab.js
@@ -390,7 +390,7 @@ define([
this.btnClear = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
- iconCls: 'toolbar__icon clear-style',
+ iconCls: 'toolbar__icon btn-clear-style',
caption: this.textClear,
visible: false,
dataHint: '1',
@@ -400,7 +400,7 @@ define([
this.btnPrevForm = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
- iconCls: 'toolbar__icon previous-field',
+ iconCls: 'toolbar__icon btn-previous-field',
lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments],
caption: this.capBtnPrev,
visible: false,
@@ -413,7 +413,7 @@ define([
this.btnNextForm = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
- iconCls: 'toolbar__icon next-field',
+ iconCls: 'toolbar__icon btn-next-field',
lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments],
caption: this.capBtnNext,
visible: false,
@@ -427,7 +427,7 @@ define([
if (this.appConfig.canSubmitForms) {
this.btnSubmit = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
- iconCls: 'toolbar__icon submit-form',
+ iconCls: 'toolbar__icon btn-submit-form',
lock: [_set.lostConnect, _set.disableOnStart],
caption: this.capBtnSubmit,
// disabled: this.appConfig.isEdit && this.appConfig.canFeatureContentControl && this.appConfig.canFeatureForms, // disable only for edit mode,
@@ -441,7 +441,7 @@ define([
this.btnSaveForm = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
lock: [_set.lostConnect, _set.disableOnStart],
- iconCls: 'toolbar__icon save-form',
+ iconCls: 'toolbar__icon btn-save-form',
caption: this.appConfig.canRequestSaveAs || !!this.appConfig.saveAsUrl || this.appConfig.isOffline ? this.capBtnSaveForm : this.capBtnDownloadForm,
// disabled: this.appConfig.isEdit && this.appConfig.canFeatureContentControl && this.appConfig.canFeatureForms, // disable only for edit mode,
dataHint: '1',
diff --git a/apps/documenteditor/main/app/view/MailMergeSettings.js b/apps/documenteditor/main/app/view/MailMergeSettings.js
index 0f0ea6c1af..b72453c3c0 100644
--- a/apps/documenteditor/main/app/view/MailMergeSettings.js
+++ b/apps/documenteditor/main/app/view/MailMergeSettings.js
@@ -432,7 +432,7 @@ define([
if (this.btnInsField.menu.items.length<1) {
_.each(this._state.fieldsList, function(field, index) {
var mnu = new Common.UI.MenuItem({
- caption: '«' + field + '»',
+ caption: '«' + Common.Utils.String.htmlEncode(field) + '»',
field: field
}).on('click', function(item, e) {
if (me.api) {
diff --git a/apps/documenteditor/main/app/view/RolesManagerDlg.js b/apps/documenteditor/main/app/view/RolesManagerDlg.js
index 16acc80775..0f8e922f16 100644
--- a/apps/documenteditor/main/app/view/RolesManagerDlg.js
+++ b/apps/documenteditor/main/app/view/RolesManagerDlg.js
@@ -356,7 +356,6 @@ define([ 'text!documenteditor/main/app/template/RolesManagerDlg.template',
},
txtTitle: 'Manage Roles',
- closeButtonText : 'Close',
textNew: 'New',
textEdit: 'Edit',
textDelete: 'Delete',
diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js
index 097a3913c6..9da79b1c49 100644
--- a/apps/documenteditor/main/app/view/Toolbar.js
+++ b/apps/documenteditor/main/app/view/Toolbar.js
@@ -1465,28 +1465,10 @@ define([
this.cmbFontSize = new Common.UI.ComboBox({
cls: 'input-group-nr',
- menuStyle: 'min-width: 55px;',
+ menuCls: 'scrollable-menu',
+ menuStyle: 'min-width: 55px;max-height: 454px;',
lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
hint: this.tipFontSize,
- data: [
- {value: 8, displayValue: "8"},
- {value: 9, displayValue: "9"},
- {value: 10, displayValue: "10"},
- {value: 11, displayValue: "11"},
- {value: 12, displayValue: "12"},
- {value: 14, displayValue: "14"},
- {value: 16, displayValue: "16"},
- {value: 18, displayValue: "18"},
- {value: 20, displayValue: "20"},
- {value: 22, displayValue: "22"},
- {value: 24, displayValue: "24"},
- {value: 26, displayValue: "26"},
- {value: 28, displayValue: "28"},
- {value: 36, displayValue: "36"},
- {value: 48, displayValue: "48"},
- {value: 72, displayValue: "72"},
- {value: 96, displayValue: "96"}
- ],
dataHint: '1',
dataHintDirection: 'top'
});
@@ -1779,6 +1761,71 @@ define([
onAppReady: function (config) {
var me = this;
+ if (me.cmbFontSize) {
+ var lang = config.lang ? config.lang.toLowerCase() : 'en',
+ langPrefix = lang.split(/[\-_]/)[0];
+ var fontSizeData = (langPrefix === 'zh' && lang !== 'zh-tw' && lang !== 'zh_tw') ? [
+ {value: '42_str', displayValue: "初号"},
+ {value: '36_str', displayValue: "小初"},
+ {value: '26_str', displayValue: "一号"},
+ {value: '24_str', displayValue: "小一"},
+ {value: '22_str', displayValue: "二号"},
+ {value: '18_str', displayValue: "小二"},
+ {value: '16_str', displayValue: "三号"},
+ {value: '15_str', displayValue: "小三"},
+ {value: '14_str', displayValue: "四号"},
+ {value: '12_str', displayValue: "小四"},
+ {value: '10.5_str', displayValue: "五号"},
+ {value: '9_str', displayValue: "小五"},
+ {value: '7.5_str', displayValue: "六号"},
+ {value: '6.5_str', displayValue: "小六"},
+ {value: '5.5_str', displayValue: "七号"},
+ {value: '5_str', displayValue: "八号"},
+ {value: 5, displayValue: "5"},
+ {value: 5.5, displayValue: "5.5"},
+ {value: 6.5, displayValue: "6.5"},
+ {value: 7.5, displayValue: "7.5"},
+ {value: 8, displayValue: "8"},
+ {value: 9, displayValue: "9"},
+ {value: 10, displayValue: "10"},
+ {value: 10.5, displayValue: "10.5"},
+ {value: 11, displayValue: "11"},
+ {value: 12, displayValue: "12"},
+ {value: 14, displayValue: "14"},
+ {value: 15, displayValue: "15"},
+ {value: 16, displayValue: "16"},
+ {value: 18, displayValue: "18"},
+ {value: 20, displayValue: "20"},
+ {value: 22, displayValue: "22"},
+ {value: 24, displayValue: "24"},
+ {value: 26, displayValue: "26"},
+ {value: 28, displayValue: "28"},
+ {value: 36, displayValue: "36"},
+ {value: 42, displayValue: "42"},
+ {value: 48, displayValue: "48"},
+ {value: 72, displayValue: "72"},
+ {value: 96, displayValue: "96"}
+ ] : [
+ {value: 8, displayValue: "8"},
+ {value: 9, displayValue: "9"},
+ {value: 10, displayValue: "10"},
+ {value: 11, displayValue: "11"},
+ {value: 12, displayValue: "12"},
+ {value: 14, displayValue: "14"},
+ {value: 16, displayValue: "16"},
+ {value: 18, displayValue: "18"},
+ {value: 20, displayValue: "20"},
+ {value: 22, displayValue: "22"},
+ {value: 24, displayValue: "24"},
+ {value: 26, displayValue: "26"},
+ {value: 28, displayValue: "28"},
+ {value: 36, displayValue: "36"},
+ {value: 48, displayValue: "48"},
+ {value: 72, displayValue: "72"},
+ {value: 96, displayValue: "96"}
+ ];
+ me.cmbFontSize.setData(fontSizeData);
+ }
(new Promise( function(resolve, reject) {
resolve();
})).then(function () {
@@ -2366,8 +2413,8 @@ define([
'{"Type":"bullet","Lvl":[{"lvlJc":"left","suff":"tab","numFmt":{"val":"bullet"},"lvlText":"–","rPr":{"rFonts":{"ascii":"Arial","cs":"Arial","eastAsia":"Arial","hAnsi":"Arial"}}}]}'
];
- var listSettings = {recentPath: 'de-recent-bullets', recentCount: 8, recentGroup: 'menu-bullets-group-recent', docGroup: 'menu-bullets-group-doc', docName: this.txtGroupBulletDoc},
- recents = this.loadListPresetsFromStorage(listSettings.recentPath, listSettings.recentGroup),
+ var listSettings = {recentPath: 'de-recent-bullets', recentCount: 6, recentGroup: 'menu-bullets-group-recent', docGroup: 'menu-bullets-group-doc', docName: this.txtGroupBulletDoc},
+ recents = this.loadListPresetsFromStorage(listSettings.recentPath, listSettings.recentGroup, listSettings.recentCount),
groups = (recents.length>0) ? [{id: listSettings.recentGroup, caption: this.txtGroupRecent, type: 0}] : [],
libGroup = 'menu-bullets-group-lib';
groups.push({id: libGroup, caption: this.txtGroupBulletLib, type: 1});
@@ -2413,8 +2460,8 @@ define([
'{"Type":"number","Lvl":[{"lvlJc":"left","numFmt":{"val":"russianLower"},"lvlText":"%1)"}]}'
];
- listSettings = {recentPath: 'de-recent-numbering', recentCount: 6, recentGroup: 'menu-numbering-group-recent', docGroup: 'menu-numbering-group-doc', docName: this.txtGroupNumDoc};
- recents = this.loadListPresetsFromStorage(listSettings.recentPath, listSettings.recentGroup);
+ listSettings = {recentPath: 'de-recent-numbering', recentCount: 8, recentGroup: 'menu-numbering-group-recent', docGroup: 'menu-numbering-group-doc', docName: this.txtGroupNumDoc};
+ recents = this.loadListPresetsFromStorage(listSettings.recentPath, listSettings.recentGroup, listSettings.recentCount);
libGroup = 'menu-numbering-group-lib';
groups = (recents.length>0) ? [{id: listSettings.recentGroup, caption: this.txtGroupRecent, type: 0}] : [];
groups.push({id: libGroup, caption: this.txtGroupNumLib, type: 1});
@@ -2452,8 +2499,8 @@ define([
_conf && this.mnuNumbersPicker.selectByIndex(_conf.index, true);
_conf = this.mnuMultilevelPicker.conf;
- listSettings = {recentPath: 'de-recent-multilevels', recentCount: 6, recentGroup: 'menu-multilevels-group-recent', docGroup: 'menu-multilevels-group-doc', docName: this.txtGroupMultiDoc};
- recents = this.loadListPresetsFromStorage(listSettings.recentPath, listSettings.recentGroup);
+ listSettings = {recentPath: 'de-recent-multilevels', recentCount: 8, recentGroup: 'menu-multilevels-group-recent', docGroup: 'menu-multilevels-group-doc', docName: this.txtGroupMultiDoc};
+ recents = this.loadListPresetsFromStorage(listSettings.recentPath, listSettings.recentGroup, listSettings.recentCount);
libGroup = 'menu-multilevels-group-lib';
groups = (recents.length>0) ? [{id: listSettings.recentGroup, caption: this.txtGroupRecent, type: 0}] : [];
groups.push({id: libGroup, caption: this.txtGroupMultiLib, type: 1});
@@ -2868,11 +2915,11 @@ define([
this.btnPageMargins.menu.items[0].setVisible(false);
},
- loadListPresetsFromStorage: function(path, groupId) {
+ loadListPresetsFromStorage: function(path, groupId, recentCount) {
var recents = Common.localStorage.getItem(path),
arr = [];
recents = recents ? JSON.parse(recents) : [];
- for (var i=0; i Un cop eliminada, es podrà crear la funció predeterminada.",
@@ -2793,7 +2792,7 @@
"DE.Views.SaveFormDlg.textFill": "Llista d'ompliment",
"DE.Views.SaveFormDlg.txtTitle": "Desar com a formulari",
"DE.Views.ShapeSettings.strBackground": "Color de fons",
- "DE.Views.ShapeSettings.strChange": "Canvia la forma automàtica",
+ "DE.Views.ShapeSettings.strChange": "Canvia la forma",
"DE.Views.ShapeSettings.strColor": "Color",
"DE.Views.ShapeSettings.strFill": "Emplena",
"DE.Views.ShapeSettings.strForeground": "Color de primer pla",
@@ -3000,7 +2999,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espaiat entre cel·les",
"DE.Views.TableSettingsAdvanced.textAlt": "Text alternatiu",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Descripció",
- "DE.Views.TableSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals, que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals, que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, forma, gràfic o taula.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Títol",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Canvia la mida automàticament per ajustar-la al contingut",
@@ -3277,7 +3276,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Inserir un quadre de text horitzontal",
"DE.Views.Toolbar.tipInsertImage": "Inserir una imatge",
"DE.Views.Toolbar.tipInsertNum": "Inserir un número de pàgina",
- "DE.Views.Toolbar.tipInsertShape": "Inserir una forma automàtica",
+ "DE.Views.Toolbar.tipInsertShape": "Inserir una forma",
"DE.Views.Toolbar.tipInsertSmartArt": "Inserir una imatge SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Inserir un símbol",
"DE.Views.Toolbar.tipInsertTable": "Inserir una taula",
diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json
index 1b87544329..42fe36016c 100644
--- a/apps/documenteditor/main/locale/da.json
+++ b/apps/documenteditor/main/locale/da.json
@@ -219,7 +219,7 @@
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.ThemeColor.txtbackground": "Baggrund",
"Common.Utils.ThemeColor.txttext": "Tekst",
- "Common.Views.About.txtAddress": "Adresse:",
+ "Common.Views.About.txtAddress": "adresse:",
"Common.Views.About.txtLicensee": "Licenstager",
"Common.Views.About.txtLicensor": "Licensgiver",
"Common.Views.About.txtMail": "email:",
@@ -2001,7 +2001,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Tilpasning",
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternativ tekst",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Beskrivelse",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Den alternative tekstbaserede repræsentation af det visuelle objekt, som vil blive oplæst til folk med syns- eller læringsudfordringer, for at hjælpe dem til at forstå den information der kan findes i et billede, autofigur, diagram eller tabel.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Den alternative tekstbaserede repræsentation af det visuelle objekt, som vil blive oplæst til folk med syns- eller læringsudfordringer, for at hjælpe dem til at forstå den information der kan findes i et billede, figur, diagram eller tabel.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Titel",
"DE.Views.ImageSettingsAdvanced.textAngle": "Vinkel",
"DE.Views.ImageSettingsAdvanced.textArrows": "Pile",
@@ -2592,7 +2592,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Afstand mellem celler",
"DE.Views.TableSettingsAdvanced.textAlt": "Alternativ tekst",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Beskrivelse",
- "DE.Views.TableSettingsAdvanced.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, autofigur, diagram eller tabel.",
+ "DE.Views.TableSettingsAdvanced.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, figur, diagram eller tabel.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Titel",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Tekst",
"DE.Views.TableSettingsAdvanced.textAutofit": "Tilpas automatisk størrelse til at passe indholdet",
diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json
index eb86141e64..2413d59a67 100644
--- a/apps/documenteditor/main/locale/de.json
+++ b/apps/documenteditor/main/locale/de.json
@@ -376,6 +376,13 @@
"Common.Utils.String.textAlt": "Alt",
"Common.Utils.String.textCtrl": "Strg",
"Common.Utils.String.textShift": "Umschalt",
+ "Common.Utils.ThemeColor.txtBlack": "schwarz",
+ "Common.Utils.ThemeColor.txtBlue": "blau",
+ "Common.Utils.ThemeColor.txtGray": "grau",
+ "Common.Utils.ThemeColor.txtGreen": "grün",
+ "Common.Utils.ThemeColor.txtRed": "rot",
+ "Common.Utils.ThemeColor.txtWhite": "weiß",
+ "Common.Utils.ThemeColor.txtYellow": "gelb",
"Common.Views.About.txtAddress": "Adresse:",
"Common.Views.About.txtLicensee": "LIZENZNEHMER",
"Common.Views.About.txtLicensor": "LIZENZGEBER",
@@ -452,6 +459,12 @@
"Common.Views.CopyWarningDialog.textToPaste": "zum Einfügen",
"Common.Views.DocumentAccessDialog.textLoading": "Ladevorgang...",
"Common.Views.DocumentAccessDialog.textTitle": "Freigabeeinstellungen",
+ "Common.Views.Draw.hintEraser": "Radierer",
+ "Common.Views.Draw.hintSelect": "Auswahl",
+ "Common.Views.Draw.txtEraser": "Radierer",
+ "Common.Views.Draw.txtHighlighter": "Textmarker",
+ "Common.Views.Draw.txtPen": "Stift",
+ "Common.Views.Draw.txtSelect": "Auswahl",
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten",
"Common.Views.ExternalEditor.textClose": "Schließen",
"Common.Views.ExternalEditor.textSave": "Speichern und beenden",
@@ -2261,7 +2274,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Ausrichtung",
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternativer Text",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Beschreibung",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Titel",
"DE.Views.ImageSettingsAdvanced.textAngle": "Winkel",
"DE.Views.ImageSettingsAdvanced.textArrows": "Pfeile",
@@ -2721,7 +2734,7 @@
"DE.Views.SaveFormDlg.textFill": "Befüllungsliste",
"DE.Views.SaveFormDlg.txtTitle": "Als Formular speichern",
"DE.Views.ShapeSettings.strBackground": "Hintergrundfarbe",
- "DE.Views.ShapeSettings.strChange": "AutoForm ändern",
+ "DE.Views.ShapeSettings.strChange": "Form ändern",
"DE.Views.ShapeSettings.strColor": "Farbe",
"DE.Views.ShapeSettings.strFill": "Füllung",
"DE.Views.ShapeSettings.strForeground": "Vordergrundfarbe",
@@ -2928,7 +2941,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Abstand zwischen Zellen zulassen",
"DE.Views.TableSettingsAdvanced.textAlt": "Alternativer Text",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Beschreibung",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, Form, Diagramm oder der Tabelle dargestellt wurde.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Titel",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Größe an Inhalt automatisch anpassen",
@@ -3158,6 +3171,7 @@
"DE.Views.Toolbar.textSuperscript": "Hochgestellt",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Im aktuellen Absatz verbieten",
"DE.Views.Toolbar.textTabCollaboration": "Zusammenarbeit",
+ "DE.Views.Toolbar.textTabDraw": "Zeichnen",
"DE.Views.Toolbar.textTabFile": "Datei",
"DE.Views.Toolbar.textTabHome": "Startseite",
"DE.Views.Toolbar.textTabInsert": "Einfügen",
@@ -3204,7 +3218,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Horizontales Textfeld einfügen",
"DE.Views.Toolbar.tipInsertImage": "Bild einfügen",
"DE.Views.Toolbar.tipInsertNum": "Seitenzahl einfügen",
- "DE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
+ "DE.Views.Toolbar.tipInsertShape": "Form einfügen",
"DE.Views.Toolbar.tipInsertSmartArt": "SmartArt einfügen",
"DE.Views.Toolbar.tipInsertSymbol": "Symbol einfügen",
"DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json
index c31ff389ba..2e9776d03d 100644
--- a/apps/documenteditor/main/locale/el.json
+++ b/apps/documenteditor/main/locale/el.json
@@ -154,14 +154,23 @@
"Common.define.smartArt.textContinuousBlockProcess": "Συνεχής διαδικασία μπλοκ",
"Common.define.smartArt.textContinuousCycle": "Συνεχής κύκλος",
"Common.define.smartArt.textConvergingArrows": "Συμβαλλόμενα Βέλη",
+ "Common.define.smartArt.textConvergingText": "Συγκλίνον κείμενο",
+ "Common.define.smartArt.textCounterbalanceArrows": "Βέλη αντιστάθμισης",
"Common.define.smartArt.textCycle": "Κύκλος",
+ "Common.define.smartArt.textCycleMatrix": "Πίνακας κύκλου",
"Common.define.smartArt.textDescendingBlockList": "Φθίνουσα λίστα μπλοκ",
"Common.define.smartArt.textDescendingProcess": "Φθίνουσα διαδικασία",
"Common.define.smartArt.textDetailedProcess": "Λεπτομερής διαδικασία",
"Common.define.smartArt.textDivergingArrows": "Αποκλίνοντα Βέλη",
+ "Common.define.smartArt.textDivergingRadial": "Αποκλίνουσα ακτινική",
"Common.define.smartArt.textEquation": "Εξίσωση",
+ "Common.define.smartArt.textFramedTextPicture": "Εικόνα κειμένου με πλαίσιο",
+ "Common.define.smartArt.textFunnel": "Χωνί",
+ "Common.define.smartArt.textGear": "Γρανάζι",
+ "Common.define.smartArt.textGroupedList": "Ομαδοποιημένη λίστα",
"Common.define.smartArt.textHierarchy": "Ιεραρχία",
"Common.define.smartArt.textHierarchyList": "Λίστα ιεραρχίας",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "Διασυνδεδεμένη διαδικασία μπλοκ",
"Common.define.smartArt.textList": "Λίστα",
"Common.define.smartArt.textNameAndTitleOrganizationChart": "Όνομα και Τίτλος",
"Common.define.smartArt.textOpposingArrows": "Αντίθετα βέλη",
@@ -174,9 +183,11 @@
"Common.define.smartArt.textProcess": "Διεργασία",
"Common.define.smartArt.textProcessList": "Λίστα διεργασιών",
"Common.define.smartArt.textPyramid": "Πυραμίδα",
+ "Common.define.smartArt.textRelationship": "Σχέση",
"Common.define.smartArt.textReverseList": "Αντίστροφη λίστα",
"Common.define.smartArt.textSpiralPicture": "Σπειροειδής εικόνα",
"Common.define.smartArt.textThemePictureAccent": "Έμφαση εικόνας θέματος",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "Εναλλασσόμενος τόνος εικόνας θέματος",
"Common.define.smartArt.textThemePictureGrid": "Πλέγμα εικόνας θέματος",
"Common.define.smartArt.textTitlePictureLineup": "Σύνθεση εικόνων τίτλου",
"Common.define.smartArt.textUpwardArrow": "Βέλος προς τα πάνω",
@@ -193,6 +204,7 @@
"Common.define.smartArt.textVerticalProcess": "Κάθετη διαδικασία",
"Common.Translation.textMoreButton": "Περισσότερα",
"Common.Translation.tipFileLocked": "Το έγγραφο είναι κλειδωμένο για επεξεργασία. Μπορείτε να κάνετε αλλαγές και να τις αποθηκεύσετε αργότερα ως τοπικό αντίγραφο.",
+ "Common.Translation.tipFileReadOnly": "Το αρχείο είναι μόνο για ανάγνωση. Για να διατηρήσετε τις αλλαγές σας, αποθηκεύστε το αρχείο με νέο όνομα ή σε διαφορετική θέση.",
"Common.Translation.warnFileLocked": "Δεν μπορείτε να επεξεργαστείτε αυτό το αρχείο επειδή επεξεργάζεται σε άλλη εφαρμογή.",
"Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου",
"Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή",
@@ -240,6 +252,7 @@
"Common.UI.ExtendedColorDialog.textNew": "Νέο",
"Common.UI.ExtendedColorDialog.textRGBErr": "Η τιμή που βάλατε δεν είναι αποδεκτή. Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 0 και 255.",
"Common.UI.HSBColorPicker.textNoColor": "Χωρίς Χρώμα",
+ "Common.UI.InputFieldBtnCalendar.textDate": "Επιλογή ημερομηνίας",
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Απόκρυψη συνθηματικού",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Εμφάνιση συνθηματικού",
"Common.UI.SearchBar.textFind": "Εύρεση",
@@ -280,6 +293,32 @@
"Common.Utils.Metric.txtCm": "εκ",
"Common.Utils.Metric.txtPt": "pt",
"Common.Utils.String.textAlt": "Alt",
+ "Common.Utils.String.textCtrl": "Ctrl",
+ "Common.Utils.String.textShift": "Shift",
+ "Common.Utils.ThemeColor.txtaccent": "Τόνος",
+ "Common.Utils.ThemeColor.txtbackground": "Παρασκήνιο",
+ "Common.Utils.ThemeColor.txtBlack": "Μαύρο",
+ "Common.Utils.ThemeColor.txtBlue": "Μπλε",
+ "Common.Utils.ThemeColor.txtBrightGreen": "Ανοιχτό πράσινο",
+ "Common.Utils.ThemeColor.txtBrown": "Καφέ",
+ "Common.Utils.ThemeColor.txtDarkBlue": "Σκούρο μπλε",
+ "Common.Utils.ThemeColor.txtDarker": "Σκοτεινότερο",
+ "Common.Utils.ThemeColor.txtDarkGray": "Σκούρο γκρι",
+ "Common.Utils.ThemeColor.txtDarkGreen": "Σκούρο πράσινο",
+ "Common.Utils.ThemeColor.txtDarkPurple": "Σκούρο μωβ",
+ "Common.Utils.ThemeColor.txtDarkRed": "Σκούρο κόκκινο",
+ "Common.Utils.ThemeColor.txtDarkTeal": "Σκούρο γαλαζοπράσινο",
+ "Common.Utils.ThemeColor.txtDarkYellow": "Σκουρο κιτρινο",
+ "Common.Utils.ThemeColor.txtGold": "Χρυσό",
+ "Common.Utils.ThemeColor.txtGray": "Γκρι",
+ "Common.Utils.ThemeColor.txtGreen": "Πράσινο",
+ "Common.Utils.ThemeColor.txtLightBlue": "Απαλό μπλε",
+ "Common.Utils.ThemeColor.txtPink": "Ροζ",
+ "Common.Utils.ThemeColor.txtRed": "Κόκκινο",
+ "Common.Utils.ThemeColor.txtRose": "Ρόδο",
+ "Common.Utils.ThemeColor.txtTeal": "Γαλαζοπράσινο",
+ "Common.Utils.ThemeColor.txttext": "Κείμενο",
+ "Common.Utils.ThemeColor.txtYellow": "Κίτρινο",
"Common.Views.About.txtAddress": "Διεύθυνση: ",
"Common.Views.About.txtLicensee": "ΑΔΕΙΟΔΕΚΤΗΣ",
"Common.Views.About.txtLicensor": "ΑΔΕΙΟΔΟΤΗΣ",
@@ -296,7 +335,9 @@
"Common.Views.AutoCorrectDialog.textDelete": "Διαγραφή",
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Εισαγωγή διπλού διαστήματος",
"Common.Views.AutoCorrectDialog.textFLCells": "Να γίνει κεφαλαίο το πρώτο γράμμα των κελιών του πίνακα",
+ "Common.Views.AutoCorrectDialog.textFLDont": "Μην χρησιμοποιείτε κεφαλαία μετά",
"Common.Views.AutoCorrectDialog.textFLSentence": "Κεφαλαιοποιήστε το πρώτο γράμμα των προτάσεων",
+ "Common.Views.AutoCorrectDialog.textForLangFL": "Εξαιρέσεις για τη γλώσσα:",
"Common.Views.AutoCorrectDialog.textHyperlink": "Μονοπάτια δικτύου και διαδικτύου με υπερσυνδέσμους",
"Common.Views.AutoCorrectDialog.textHyphens": "Παύλες (--) με πλατιά παύλα (—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Αυτόματη Διόρθωση Μαθηματικών",
@@ -311,6 +352,7 @@
"Common.Views.AutoCorrectDialog.textResetAll": "Αρχικοποίηση στην προεπιλογή",
"Common.Views.AutoCorrectDialog.textRestore": "Επαναφορά",
"Common.Views.AutoCorrectDialog.textTitle": "Αυτόματη διόρθωση",
+ "Common.Views.AutoCorrectDialog.textWarnAddFL": "Οι εξαιρέσεις πρέπει να περιέχουν μόνο τα γράμματα, κεφαλαία ή πεζά.",
"Common.Views.AutoCorrectDialog.textWarnAddRec": "Οι αναγνωρισμένες συναρτήσεις πρέπει να περιέχουν μόνο τα γράμματα A έως Z, κεφαλαία ή μικρά.",
"Common.Views.AutoCorrectDialog.textWarnResetRec": "Κάθε έκφραση που προσθέσατε θα αφαιρεθεί και ό,τι αφαιρέθηκε θα αποκατασταθεί. Θέλετε να συνεχίσετε;",
"Common.Views.AutoCorrectDialog.warnReplace": "Η καταχώρηση αυτόματης διόρθωσης για %1 υπάρχει ήδη. Θέλετε να την αντικαταστήσετε;",
@@ -352,6 +394,12 @@
"Common.Views.CopyWarningDialog.textToPaste": "για Επικόλληση",
"Common.Views.DocumentAccessDialog.textLoading": "Φόρτωση ...",
"Common.Views.DocumentAccessDialog.textTitle": "Ρυθμίσεις Διαμοιρασμού",
+ "Common.Views.Draw.hintEraser": "Γόμα",
+ "Common.Views.Draw.hintSelect": "Επιλογή",
+ "Common.Views.Draw.txtEraser": "Γόμα",
+ "Common.Views.Draw.txtPen": "Πένα",
+ "Common.Views.Draw.txtSelect": "Επιλογή",
+ "Common.Views.Draw.txtSize": "Μέγεθος",
"Common.Views.ExternalDiagramEditor.textTitle": "Συντάκτης Γραφήματος",
"Common.Views.ExternalEditor.textClose": "Κλείσιμο",
"Common.Views.ExternalEditor.textSave": "Αποθήκευση & Έξοδος",
@@ -400,7 +448,7 @@
"Common.Views.InsertTableDialog.txtTitle": "Μέγεθος Πίνακα",
"Common.Views.InsertTableDialog.txtTitleSplit": "Διαίρεση Κελιού",
"Common.Views.LanguageDialog.labelSelect": "Επιλογή γλώσσας εγγράφου",
- "Common.Views.OpenDialog.closeButtonText": "Κλείσιμο Αρχείου",
+ "Common.Views.OpenDialog.closeButtonText": "Κλείσιμο αρχείου",
"Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση",
"Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.",
"Common.Views.OpenDialog.txtOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο",
@@ -543,6 +591,7 @@
"Common.Views.SearchPanel.textMatchUsingRegExp": "Ταίριασμα χρησιμοποιώντας κανονικές εκφράσεις (regexp)",
"Common.Views.SearchPanel.textNoMatches": "Χωρίς ταίριασμα",
"Common.Views.SearchPanel.textNoSearchResults": "Δεν υπάρχουν αποτελέσματα αναζήτησης",
+ "Common.Views.SearchPanel.textPartOfItemsNotReplaced": "Αντικαταστάθηκαν {0}/{1} στοιχεία. Τα υπόλοιπα {2} στοιχεία είναι κλειδωμένα από άλλους χρήστες.",
"Common.Views.SearchPanel.textReplace": "Αντικατάσταση",
"Common.Views.SearchPanel.textReplaceAll": "Αντικατάσταση Όλων",
"Common.Views.SearchPanel.textReplaceWith": "Αντικατάσταση με",
@@ -597,7 +646,7 @@
"Common.Views.SymbolTableDialog.textRange": "Εύρος",
"Common.Views.SymbolTableDialog.textRecent": "Πρόσφατα χρησιμοποιημένα σύμβολα",
"Common.Views.SymbolTableDialog.textRegistered": "Σύμβολο Καταχωρημένου",
- "Common.Views.SymbolTableDialog.textSCQuote": "Κλείσιμο Απλών Εισαγωγικών",
+ "Common.Views.SymbolTableDialog.textSCQuote": "Κλείσιμο απλών εισαγωγικών",
"Common.Views.SymbolTableDialog.textSection": "Σύμβολο Τμήματος",
"Common.Views.SymbolTableDialog.textShortcut": "Πλήκτρο Συντόμευσης",
"Common.Views.SymbolTableDialog.textSHyphen": "Απαλή Παύλα",
@@ -609,6 +658,15 @@
"Common.Views.UserNameDialog.textDontShow": "Να μην ερωτηθώ ξανά",
"Common.Views.UserNameDialog.textLabel": "Ετικέτα:",
"Common.Views.UserNameDialog.textLabelError": "Η ετικέτα δεν μπορεί να είναι κενή.",
+ "DE.Controllers.DocProtection.txtIsProtectedComment": "Το έγγραφο προστατεύεται. Μπορείτε να εισάγετε μόνο σχόλια σε αυτό το έγγραφο.",
+ "DE.Controllers.DocProtection.txtIsProtectedForms": "Το έγγραφο προστατεύεται. Μπορείτε να συμπληρώσετε μόνο φόρμες σε αυτό το έγγραφο.",
+ "DE.Controllers.DocProtection.txtIsProtectedTrack": "Το έγγραφο προστατεύεται. Μπορείτε να επεξεργαστείτε αυτό το έγγραφο, αλλά όλες οι αλλαγές θα παρακολουθούνται.",
+ "DE.Controllers.DocProtection.txtIsProtectedView": "Το έγγραφο προστατεύεται. Μπορείτε να δείτε μόνο αυτό το έγγραφο.",
+ "DE.Controllers.DocProtection.txtWasProtectedComment": "Το έγγραφο προστατεύεται από άλλο χρήστη.\nΜπορείτε μόνο να εισάγετε σχόλια στο έγγραφο.",
+ "DE.Controllers.DocProtection.txtWasProtectedForms": "Το έγγραφο προστατεύεται από άλλο χρήστη.\nΜπορείτε μόνο να συμπληρώσετε φόρμες μέσα στο έγγραφο.",
+ "DE.Controllers.DocProtection.txtWasProtectedTrack": "Το έγγραφο προστατεύεται από άλλο χρήστη.\nΜπορείτε να το τροποποιήσετε, αλλά όλες οι αλλαγές θα καταγραφούν.",
+ "DE.Controllers.DocProtection.txtWasProtectedView": "Το έγγραφο προστατεύεται από άλλο χρήστη.\nΜπορείτε μόνο να δείτε το έγγραφο.",
+ "DE.Controllers.DocProtection.txtWasUnprotected": "Αναιρέθηκε η προστασία του εγγράφου.",
"DE.Controllers.LeftMenu.leavePageText": "Όλες οι μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο θα χαθούν. Κάντε κλικ στο «Ακύρωση» και στη συνέχεια στο «Αποθήκευση» για να τις αποθηκεύσετε. Κάντε κλικ στο «Εντάξει» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Έγγραφο χωρίς όνομα",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Προειδοποίηση",
@@ -625,6 +683,7 @@
"DE.Controllers.LeftMenu.warnReplaceString": "Το {0} δεν είναι έγκυρος ειδικός χαρακτήρας για το πεδίο αντικατάστασης.",
"DE.Controllers.Main.applyChangesTextText": "Φόρτωση των αλλαγών...",
"DE.Controllers.Main.applyChangesTitleText": "Φόρτωση των Αλλαγών",
+ "DE.Controllers.Main.confirmMaxChangesSize": "Το μέγεθος των ενεργειών υπερβαίνει τον περιορισμό που έχει οριστεί για τον διακομιστή σας. Πατήστε \"Αναίρεση\" για να ακυρώσετε την τελευταία σας ενέργεια ή πατήστε \"Συνέχεια\" για να διατηρήσετε την ενέργεια τοπικά (πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν θα χαθεί τίποτα).",
"DE.Controllers.Main.convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.",
"DE.Controllers.Main.criticalErrorExtText": "Πατήστε \"Εντάξει\" για να επιστρέψετε στη λίστα εγγράφων.",
"DE.Controllers.Main.criticalErrorTitle": "Σφάλμα",
@@ -749,7 +808,7 @@
"DE.Controllers.Main.titleUpdateVersion": "Η έκδοση άλλαξε",
"DE.Controllers.Main.txtAbove": "πάνω από",
"DE.Controllers.Main.txtArt": "Το κείμενό σας εδώ",
- "DE.Controllers.Main.txtBasicShapes": "Βασικά Σχήματα",
+ "DE.Controllers.Main.txtBasicShapes": "Βασικά σχήματα",
"DE.Controllers.Main.txtBelow": "παρακάτω",
"DE.Controllers.Main.txtBookmarkError": "Σφάλμα! Ο σελιδοδείκτης δεν έχει οριστεί.",
"DE.Controllers.Main.txtButtons": "Κουμπιά",
@@ -1004,6 +1063,7 @@
"DE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...",
"DE.Controllers.Main.warnBrowserIE9": "Η εφαρμογή έχει πενιχρές δυνατότητες στον IE9. Δοκιμάστε IE10 ή νεώτερο.",
"DE.Controllers.Main.warnBrowserZoom": "Η τρέχουσα ρύθμιση εστίασης του περιηγητή σας δεν υποστηρίζεται πλήρως. Παρακαλούμε επιστρέψτε στην προεπιλεγμένη μεγέθυνση πατώντας Ctrl+0.",
+ "DE.Controllers.Main.warnLicenseAnonymous": "Δεν επιτρέπεται η πρόσβαση για ανώνυμους χρήστες. Αυτό το έγγραφο θα ανοίξει μόνο για προβολή.",
"DE.Controllers.Main.warnLicenseExceeded": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με συντάκτες %1. Αυτό το έγγραφο θα ανοιχτεί μόνο για προβολή. Παρακαλούμε επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.",
"DE.Controllers.Main.warnLicenseExp": "Η άδειά σας έχει λήξει. Παρακαλούμε ενημερώστε την άδεια χρήσης σας και ανανεώστε τη σελίδα.",
"DE.Controllers.Main.warnLicenseLimitedNoAccess": "Η άδεια έληξε. Δεν έχετε πρόσβαση στη δυνατότητα επεξεργασίας εγγράφων. Επικοινωνήστε με τον διαχειριστή σας.",
@@ -1017,6 +1077,7 @@
"DE.Controllers.Print.textMarginsLast": "Τελευταίο προσαρμοσμένο",
"DE.Controllers.Print.txtCustom": "Προσαρμοσμένο",
"DE.Controllers.Search.notcriticalErrorTitle": "Προειδοποίηση",
+ "DE.Controllers.Search.textNoTextFound": "Τα δεδομένα που αναζητάτε δεν βρέθηκαν. Παρακαλούμε προσαρμόστε τις επιλογές αναζήτησης.",
"DE.Controllers.Search.textReplaceSkipped": "Η αντικατάσταση έχει γίνει. {0} περιστατικά παραλείφθηκαν.",
"DE.Controllers.Search.textReplaceSuccess": "Η αναζήτηση έχει γίνει. {0}περιστατικά έχουν αντικατασταθεί",
"DE.Controllers.Search.warnReplaceString": "{0} δεν είναι ένας έγκυρος ειδικός χαρακτήρας για το πλαίσιο Αντικατάσταση με.",
@@ -1517,8 +1578,11 @@
"DE.Views.CrossReferenceDialog.txtTitle": "Παραπομπή εντός κειμένου",
"DE.Views.CrossReferenceDialog.txtType": "Τύπος παραπομπής",
"DE.Views.CustomColumnsDialog.textColumns": "Αριθμός στηλών",
+ "DE.Views.CustomColumnsDialog.textEqualWidth": "Ίσο πλάτος στήλης",
"DE.Views.CustomColumnsDialog.textSeparator": "Διαχωριστής στήλης",
"DE.Views.CustomColumnsDialog.textTitle": "Στήλες",
+ "DE.Views.CustomColumnsDialog.textTitleSpacing": "Διάστημα",
+ "DE.Views.CustomColumnsDialog.textWidth": "Πλάτος",
"DE.Views.DateTimeDialog.confirmDefault": "Ορισμός προεπιλεγμένης μορφής για {0}: \"{1}\"",
"DE.Views.DateTimeDialog.textDefault": "Ορισμός ως προεπιλογή",
"DE.Views.DateTimeDialog.textFormat": "Μορφοποιήσεις",
@@ -1635,6 +1699,7 @@
"DE.Views.DocumentHolder.textFromFile": "Από Αρχείο",
"DE.Views.DocumentHolder.textFromStorage": "Από Αποθηκευτικό Χώρο",
"DE.Views.DocumentHolder.textFromUrl": "Από διεύθυνση URL",
+ "DE.Views.DocumentHolder.textIndents": "Προσαρμογή εσοχών λίστας",
"DE.Views.DocumentHolder.textJoinList": "Ένωση με προηγούμενη λίστα",
"DE.Views.DocumentHolder.textLeft": "Ολίσθηση κελιών αριστερά",
"DE.Views.DocumentHolder.textNest": "Νέος πίνακας",
@@ -1689,7 +1754,7 @@
"DE.Views.DocumentHolder.txtAddTop": "Προσθήκη επάνω περιγράμματος",
"DE.Views.DocumentHolder.txtAddVer": "Προσθήκη κατακόρυφης γραμμής",
"DE.Views.DocumentHolder.txtAlignToChar": "Στοίχιση σε χαρακτήρα",
- "DE.Views.DocumentHolder.txtBehind": "Πίσω από το Κείμενο",
+ "DE.Views.DocumentHolder.txtBehind": "Πίσω από το κείμενο",
"DE.Views.DocumentHolder.txtBorderProps": "Ιδιότητες περιγράμματος",
"DE.Views.DocumentHolder.txtBottom": "Κάτω",
"DE.Views.DocumentHolder.txtColumnAlign": "Στοίχιση στήλης",
@@ -1778,9 +1843,9 @@
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Τουλάχιστον",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Αυτόματα",
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Χρώμα Παρασκηνίου",
- "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Χρώμα",
+ "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Χρώμα περιγράμματος",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα",
- "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
+ "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Μέγεθος περιγράμματος",
"DE.Views.DropcapSettingsAdvanced.textBottom": "Κάτω",
"DE.Views.DropcapSettingsAdvanced.textCenter": "Κέντρο",
"DE.Views.DropcapSettingsAdvanced.textColumn": "Στήλη",
@@ -1846,6 +1911,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Αλλαγή δικαιωμάτων πρόσβασης",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Σχόλιο",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Δημιουργήθηκε",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo": "Πληροφορίες εγγράφου",
"DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Γρήγορη Προβολή Δικτύου",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Φόρτωση ...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Τελευταία Τροποποίηση Από",
@@ -1864,10 +1930,12 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Στατιστικά",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Θέμα",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Χαρακτήρες",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Ετικέτες",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Τίτλος",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Μεταφορτώθηκε",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Λέξεις",
"DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Ναι",
+ "DE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "Δικαιώματα Πρόσβασης",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Αλλαγή δικαιωμάτων πρόσβασης",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Άτομα που έχουν δικαιώματα",
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Προειδοποίηση",
@@ -1878,6 +1946,7 @@
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Επεξεργασία εγγράφου",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Η επεξεργασία θα αφαιρέσει τις υπογραφές από το έγγραφο. Θέλετε σίγουρα να συνεχίσετε;",
"DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Αυτό το έγγραφο έχει προστατευτεί με συνθηματικό",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument": "Κρυπτογραφήστε αυτό το έγγραφο με κωδικό πρόσβασης",
"DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Αυτό το έγγραφο πρέπει να υπογραφεί.",
"DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Προστέθηκαν έγκυρες υπογραφές στο έγγραφο. Το έγγραφο έχει προστασία επεξεργασίας.",
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Κάποιες από τις ψηφιακές υπογραφές του εγγράφου είναι άκυρες ή δεν επιβεβαιώθηκαν. Αποτρέπεται η επεξεργασία του.",
@@ -1944,6 +2013,7 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση",
"DE.Views.FileMenuPanels.Settings.txtWin": "ως Windows",
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Χώρος εργασίας",
+ "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Λήψη ως",
"DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Αποθήκευση αντιγράφου ως",
"DE.Views.FormSettings.textAlways": "Πάντα",
"DE.Views.FormSettings.textAnyone": "Οποιοσδήποτε",
@@ -1960,6 +2030,8 @@
"DE.Views.FormSettings.textConnected": "Συνδεδεμένα πεδία",
"DE.Views.FormSettings.textCreditCard": "Αριθμός πιστωτικής κάρτας (π.χ. 4111-111111111-1111)",
"DE.Views.FormSettings.textDateField": "Πεδίο ημερομηνίας και ώρας",
+ "DE.Views.FormSettings.textDateFormat": "Εμφάνιση της ημερομηνίας ως εξής",
+ "DE.Views.FormSettings.textDefValue": "Προεπιλεγμένη τιμή",
"DE.Views.FormSettings.textDelete": "Διαγραφή",
"DE.Views.FormSettings.textDigits": "Ψηφία",
"DE.Views.FormSettings.textDisconnect": "Αποσύνδεση",
@@ -2020,6 +2092,7 @@
"DE.Views.FormsTab.capBtnView": "Προβολή Φόρμας",
"DE.Views.FormsTab.capCreditCard": "Πιστωτική κάρτα",
"DE.Views.FormsTab.capDateTime": "Ημερομηνία & Ώρα",
+ "DE.Views.FormsTab.capZipCode": "ΤΚ",
"DE.Views.FormsTab.textAnyone": "Οποιοσδήποτε",
"DE.Views.FormsTab.textClear": "Εκκαθάριση Πεδίων",
"DE.Views.FormsTab.textClearFields": "Εκκαθάριση Όλων των Πεδίων",
@@ -2049,6 +2122,7 @@
"DE.Views.FormsTab.tipSubmit": "Υποβολή φόρμας",
"DE.Views.FormsTab.tipTextField": "Εισαγωγή πεδίου κειμένου",
"DE.Views.FormsTab.tipViewForm": "Προβολή φόρμας",
+ "DE.Views.FormsTab.tipZipCode": "Εισαγωγή ταχυδρομικού κώδικα",
"DE.Views.FormsTab.txtFixedDesc": "Εισαγωγή σταθερού πεδίου κειμένου",
"DE.Views.FormsTab.txtInlineDesc": "Εισαγωγή ενσωματωμένου πεδίου κειμένου",
"DE.Views.FormsTab.txtUntitled": "Άτιτλο",
@@ -2122,18 +2196,18 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Στοίχιση",
"DE.Views.ImageSettingsAdvanced.textAlt": "Εναλλακτικό κείμενο",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Περιγραφή",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, αυτόματο σχήμα, γράφημα ή πίνακα.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, σχήμα, γράφημα ή πίνακα.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Τίτλος",
"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.textBeginSize": "Μέγεθος εκκίνησης",
+ "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Τεχνοτροπία εκκίνησης",
"DE.Views.ImageSettingsAdvanced.textBelow": "παρακάτω",
"DE.Views.ImageSettingsAdvanced.textBevel": "Πλάγια Τομή",
"DE.Views.ImageSettingsAdvanced.textBottom": "Κάτω",
- "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Κάτω Περιθώριο",
+ "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Κάτω περιθώριο",
"DE.Views.ImageSettingsAdvanced.textBtnWrap": "Αναδίπλωση Κειμένου",
"DE.Views.ImageSettingsAdvanced.textCapType": "Αρχικό Γράμμα",
"DE.Views.ImageSettingsAdvanced.textCenter": "Κέντρο",
@@ -2185,7 +2259,7 @@
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Πλάτη & Βέλη",
"DE.Views.ImageSettingsAdvanced.textWidth": "Πλάτος",
"DE.Views.ImageSettingsAdvanced.textWrap": "Τεχνοτροπία Αναδίπλωσης",
- "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Πίσω από το Κείμενο",
+ "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Πίσω από το κείμενο",
"DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Μπροστά από το Κείμενο",
"DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Εντός Κειμένου",
"DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Τετράγωνο",
@@ -2232,7 +2306,7 @@
"DE.Views.Links.capBtnTOF": "Πίνακας Εικόνων",
"DE.Views.Links.confirmDeleteFootnotes": "Θέλετε να διαγράψετε όλες τις υποσημειώσεις;",
"DE.Views.Links.confirmReplaceTOF": "Θέλετε να αντικαταστήσετε τον επιλεγμένο πίνακα εικόνων;",
- "DE.Views.Links.mniConvertNote": "Μετατροπή Όλων των Σημειώσεων",
+ "DE.Views.Links.mniConvertNote": "Μετατροπή όλων των σημειώσεων",
"DE.Views.Links.mniDelFootnote": "Διαγραφή Όλων των Σημειώσεων",
"DE.Views.Links.mniInsEndnote": "Εισαγωγή Σημείωσης Τέλους",
"DE.Views.Links.mniInsFootnote": "Εισαγωγή Υποσημείωσης",
@@ -2259,20 +2333,33 @@
"DE.Views.Links.titleUpdateTOF": "Ενημέρωση Πίνακα Εικόνων",
"DE.Views.Links.txtDontShowTof": "Να μην εμφανίζεται στον Πίνακα Περιεχομένων",
"DE.Views.Links.txtLevel": "Επίπεδο",
+ "DE.Views.ListIndentsDialog.textSpace": "Κενό",
+ "DE.Views.ListIndentsDialog.txtIndent": "Εσοχή κειμένου",
+ "DE.Views.ListIndentsDialog.txtPosBullet": "Θέση κουκκίδας",
"DE.Views.ListSettingsDialog.textAuto": "Αυτόματα",
+ "DE.Views.ListSettingsDialog.textBold": "Έντονα",
"DE.Views.ListSettingsDialog.textCenter": "Κέντρο",
+ "DE.Views.ListSettingsDialog.textHide": "Απόκρυψη ρυθμίσεων",
"DE.Views.ListSettingsDialog.textLeft": "Αριστερά",
"DE.Views.ListSettingsDialog.textLevel": "Επίπεδο",
+ "DE.Views.ListSettingsDialog.textMore": "Εμφάνιση περισσότερων ρυθμίσεων",
"DE.Views.ListSettingsDialog.textPreview": "Προεπισκόπηση",
"DE.Views.ListSettingsDialog.textRight": "Δεξιά",
+ "DE.Views.ListSettingsDialog.textSelectLevel": "Επιλέξτε επίπεδο",
+ "DE.Views.ListSettingsDialog.textSpace": "Κενό",
"DE.Views.ListSettingsDialog.txtAlign": "Στοίχιση",
+ "DE.Views.ListSettingsDialog.txtAlignAt": "σε",
"DE.Views.ListSettingsDialog.txtBullet": "Κουκκίδα",
"DE.Views.ListSettingsDialog.txtColor": "Χρώμα",
+ "DE.Views.ListSettingsDialog.txtFontName": "Γραμματοσειρά",
+ "DE.Views.ListSettingsDialog.txtIndent": "Εσοχή κειμένου",
"DE.Views.ListSettingsDialog.txtLikeText": "Ως κείμενο",
"DE.Views.ListSettingsDialog.txtNewBullet": "Νέα κουκίδα",
"DE.Views.ListSettingsDialog.txtNone": "Κανένα",
"DE.Views.ListSettingsDialog.txtSize": "Μέγεθος",
+ "DE.Views.ListSettingsDialog.txtStart": "Έναρξη σε",
"DE.Views.ListSettingsDialog.txtSymbol": "Σύμβολο",
+ "DE.Views.ListSettingsDialog.txtTabStop": "Προσθήκη στηλοθέτη στο",
"DE.Views.ListSettingsDialog.txtTitle": "Ρυθμίσεις Λίστας",
"DE.Views.ListSettingsDialog.txtType": "Τύπος",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
@@ -2448,13 +2535,13 @@
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Τουλάχιστον",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Πολλαπλό",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Χρώμα Παρασκηνίου",
- "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Βασικό Κείμενο",
- "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Χρώμα",
+ "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Βασικό κείμενο",
+ "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Χρώμα περιγράμματος",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα και να εφαρμόσετε την επιλεγμένη τεχνοτροπία σε αυτά",
- "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
+ "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Μέγεθος περιγράμματος",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Κάτω",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Κεντραρισμένη",
- "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Απόσταση Χαρακτήρων",
+ "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Απόσταση χαρακτήρων",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Συμφραζόμενα",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Συμφραζόμενα και ",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Συμφραζόμενα και ιστορικά",
@@ -2504,6 +2591,7 @@
"DE.Views.PrintWithPreview.textMarginsWide": "Πλατύ",
"DE.Views.PrintWithPreview.txtAllPages": "Όλες οι σελίδες",
"DE.Views.PrintWithPreview.txtBottom": "Κάτω Μέρος",
+ "DE.Views.PrintWithPreview.txtCopies": "Αντίγραφα",
"DE.Views.PrintWithPreview.txtCurrentPage": "Τρέχουσα σελίδα",
"DE.Views.PrintWithPreview.txtCustom": "Προσαρμοσμένο",
"DE.Views.PrintWithPreview.txtCustomPages": "Προσαρμοσμένη εκτύπωση",
@@ -2548,12 +2636,14 @@
"DE.Views.RoleDeleteDlg.textLabel": "Για να διαγράψετε αυτό το ρόλο, πρέπει να μετακινήσετε τα πεδία που σχετίζονται με αυτό σε άλλο ρόλο.",
"DE.Views.RoleDeleteDlg.textTitle": "Διαγραφή ρόλου",
"DE.Views.RoleEditDlg.textName": "Όνομα ρόλου",
+ "DE.Views.RoleEditDlg.txtTitleEdit": "Επεξεργασία ρόλου",
"DE.Views.RoleEditDlg.txtTitleNew": "Δημιουργία νέου ρόλου",
"DE.Views.RolesManagerDlg.textAnyone": "Οποιοσδήποτε",
"DE.Views.RolesManagerDlg.textDelete": "Διαγραφή",
"DE.Views.RolesManagerDlg.textDeleteLast": "Είστε βέβαιοι ότι θέλετε να διαγράψετε το ρόλο {0}; Μόλις διαγραφεί, θα δημιουργηθεί ο προεπιλεγμένος ρόλος.",
"DE.Views.RolesManagerDlg.textDescription": "Προσθήκη ρόλων και ορισμός σειράς με την οποία οι υπογράφοντες λαμβάνουν και υπογράφουν το έγγραφο",
"DE.Views.RolesManagerDlg.textDown": "Μετακίνηση ρόλου προς τα κάτω",
+ "DE.Views.RolesManagerDlg.textEdit": "Επεξεργασία",
"DE.Views.RolesManagerDlg.textNew": "Νέο",
"DE.Views.RolesManagerDlg.textUp": "Μετακίνηση ρόλου προς τα πάνω",
"DE.Views.RolesManagerDlg.warnCantDelete": "Δεν μπορείτε να διαγράψετε αυτόν τον ρόλο επειδή έχει συσχετισμένα πεδία.",
@@ -2563,7 +2653,7 @@
"DE.Views.SaveFormDlg.textEmpty": "Δεν υπάρχουν ρόλοι που να σχετίζονται με πεδία.",
"DE.Views.SaveFormDlg.txtTitle": "Αποθήκευση ως φόρμα",
"DE.Views.ShapeSettings.strBackground": "Χρώμα παρασκηνίου",
- "DE.Views.ShapeSettings.strChange": "Αλλαγή Αυτόματου Σχήματος",
+ "DE.Views.ShapeSettings.strChange": "Αλλαγή Σχήματος",
"DE.Views.ShapeSettings.strColor": "Χρώμα",
"DE.Views.ShapeSettings.strFill": "Γέμισμα",
"DE.Views.ShapeSettings.strForeground": "Χρώμα προσκηνίου",
@@ -2765,20 +2855,20 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Απόσταση μεταξύ κελιών",
"DE.Views.TableSettingsAdvanced.textAlt": "Εναλλακτικό κείμενο",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Περιγραφή",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, αυτόματο σχήμα, γράφημα ή πίνακα.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, σχήμα, γράφημα ή πίνακα.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Τίτλος",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Κείμενο",
"DE.Views.TableSettingsAdvanced.textAutofit": "Αυτόματη αλλαγή μεγέθους για προσαρμογή περιεχομένου",
"DE.Views.TableSettingsAdvanced.textBackColor": "Παρασκήνιο Κελιού",
"DE.Views.TableSettingsAdvanced.textBelow": "παρακάτω",
- "DE.Views.TableSettingsAdvanced.textBorderColor": "Χρώμα",
+ "DE.Views.TableSettingsAdvanced.textBorderColor": "Χρώμα περιγράμματος",
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα και να εφαρμόσετε την επιλεγμένη τεχνοτροπία σε αυτά",
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Περιγράμματα & Παρασκήνιο",
- "DE.Views.TableSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
+ "DE.Views.TableSettingsAdvanced.textBorderWidth": "Μέγεθος περιγράμματος",
"DE.Views.TableSettingsAdvanced.textBottom": "Κάτω",
- "DE.Views.TableSettingsAdvanced.textCellOptions": "Επιλογές Κελιού",
+ "DE.Views.TableSettingsAdvanced.textCellOptions": "Επιλογές κελιού",
"DE.Views.TableSettingsAdvanced.textCellProps": "Κελί",
- "DE.Views.TableSettingsAdvanced.textCellSize": "Μέγεθος Κελιού",
+ "DE.Views.TableSettingsAdvanced.textCellSize": "Μέγεθος κελιού",
"DE.Views.TableSettingsAdvanced.textCenter": "Κέντρο",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Κέντρο",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Χρήση προεπιλεγμένων περιθωρίων",
@@ -2789,7 +2879,7 @@
"DE.Views.TableSettingsAdvanced.textLeft": "Αριστερά",
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Αριστερά",
"DE.Views.TableSettingsAdvanced.textMargin": "Περιθώριο",
- "DE.Views.TableSettingsAdvanced.textMargins": "Περιθώρια Κελιού",
+ "DE.Views.TableSettingsAdvanced.textMargins": "Περιθώρια κελιού",
"DE.Views.TableSettingsAdvanced.textMeasure": "Μέτρηση σε",
"DE.Views.TableSettingsAdvanced.textMove": "Μετακίνηση αντικειμένου με κείμενο",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Μόνο για επιλεγμένα κελιά",
@@ -2945,7 +3035,7 @@
"DE.Views.Toolbar.textColumnsTwo": "Δύο",
"DE.Views.Toolbar.textComboboxControl": "Πολλαπλές επιλογές",
"DE.Views.Toolbar.textContinuous": "Συνεχόμενα",
- "DE.Views.Toolbar.textContPage": "Συνεχόμενη Σελίδα",
+ "DE.Views.Toolbar.textContPage": "Συνεχόμενη σελίδα",
"DE.Views.Toolbar.textCustomLineNumbers": "Επιλογές Αρίθμησης Γραμμών",
"DE.Views.Toolbar.textDateControl": "Ημερομηνία",
"DE.Views.Toolbar.textDropdownControl": "Αναδυόμενη λίστα",
@@ -2995,6 +3085,7 @@
"DE.Views.Toolbar.textSuperscript": "Εκθέτης",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Κατάπνιξη για Τρέχουσα Παράγραφο",
"DE.Views.Toolbar.textTabCollaboration": "Συνεργασία",
+ "DE.Views.Toolbar.textTabDraw": "Σχεδίαση",
"DE.Views.Toolbar.textTabFile": "Αρχείο",
"DE.Views.Toolbar.textTabHome": "Αρχική",
"DE.Views.Toolbar.textTabInsert": "Εισαγωγή",
@@ -3041,11 +3132,12 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Εισαγωγή οριζόντιου πλαισίου κειμένου",
"DE.Views.Toolbar.tipInsertImage": "Εισαγωγή εικόνας",
"DE.Views.Toolbar.tipInsertNum": "Εισαγωγή Αριθμού Σελίδας",
- "DE.Views.Toolbar.tipInsertShape": "Εισαγωγή αυτόματου σχήματος",
+ "DE.Views.Toolbar.tipInsertShape": "Εισαγωγή σχήματος",
"DE.Views.Toolbar.tipInsertSymbol": "Εισαγωγή συμβόλου",
"DE.Views.Toolbar.tipInsertTable": "Εισαγωγή πίνακα",
"DE.Views.Toolbar.tipInsertText": "Εισαγωγή πλαισίου κειμένου",
"DE.Views.Toolbar.tipInsertTextArt": "Εισαγωγή Τεχνοκειμένου",
+ "DE.Views.Toolbar.tipInsertVerticalText": "Εισαγωγή κάθετου πλαισίου κειμένου",
"DE.Views.Toolbar.tipLineNumbers": "Εμφάνιση αριθμών γραμμών",
"DE.Views.Toolbar.tipLineSpace": "Διάστιχο παραγράφου",
"DE.Views.Toolbar.tipMailRecepients": "Συγχώνευση αλληλογραφίας",
@@ -3084,6 +3176,9 @@
"DE.Views.Toolbar.tipWatermark": "Επεξεργασία υδατοσήμου",
"DE.Views.Toolbar.txtDistribHor": "Οριζόντια Κατανομή",
"DE.Views.Toolbar.txtDistribVert": "Κατακόρυφη Κατανομή",
+ "DE.Views.Toolbar.txtGroupBulletDoc": "Κουκκίδες εγγράφου",
+ "DE.Views.Toolbar.txtGroupBulletLib": "Βιβλιοθήκη κουκκίδων",
+ "DE.Views.Toolbar.txtGroupNumDoc": "Μορφές αρίθμησης εγγράφων",
"DE.Views.Toolbar.txtMarginAlign": "Στοίχιση στο περιθώριο",
"DE.Views.Toolbar.txtObjectsAlign": "Στοίχιση Επιλεγμένων Αντικειμένων",
"DE.Views.Toolbar.txtPageAlign": "Στοίχιση στη σελίδα",
diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json
index 0e1d914db3..eb439e2852 100644
--- a/apps/documenteditor/main/locale/en.json
+++ b/apps/documenteditor/main/locale/en.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Enter your message here",
+ "Common.Controllers.Desktop.hintBtnHome": "Show Main window",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalDiagramEditor.textClose": "Close",
"Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.",
@@ -2323,7 +2324,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment",
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternative text",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, shape, chart, or table.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
"DE.Views.ImageSettingsAdvanced.textAngle": "Angle",
"DE.Views.ImageSettingsAdvanced.textArrows": "Arrows",
@@ -2798,7 +2799,6 @@
"DE.Views.RoleEditDlg.textNoHighlight": "No highlighting",
"DE.Views.RoleEditDlg.txtTitleEdit": "Edit Role",
"DE.Views.RoleEditDlg.txtTitleNew": "Create New Role",
- "DE.Views.RolesManagerDlg.closeButtonText": "Close",
"DE.Views.RolesManagerDlg.textAnyone": "Anyone",
"DE.Views.RolesManagerDlg.textDelete": "Delete",
"DE.Views.RolesManagerDlg.textDeleteLast": "Are you sure you want to delete the role {0}? Once deleted, the default role will be created.",
@@ -2818,7 +2818,7 @@
"DE.Views.SaveFormDlg.textFill": "Filling list",
"DE.Views.SaveFormDlg.txtTitle": "Save as Form",
"DE.Views.ShapeSettings.strBackground": "Background color",
- "DE.Views.ShapeSettings.strChange": "Change Autoshape",
+ "DE.Views.ShapeSettings.strChange": "Change Shape",
"DE.Views.ShapeSettings.strColor": "Color",
"DE.Views.ShapeSettings.strFill": "Fill",
"DE.Views.ShapeSettings.strForeground": "Foreground color",
@@ -3025,7 +3025,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells",
"DE.Views.TableSettingsAdvanced.textAlt": "Alternative text",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Description",
- "DE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, shape, chart, or table.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Title",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Automatically resize to fit contents",
@@ -3302,7 +3302,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Insert horizontal text box",
"DE.Views.Toolbar.tipInsertImage": "Insert image",
"DE.Views.Toolbar.tipInsertNum": "Insert page number",
- "DE.Views.Toolbar.tipInsertShape": "Insert autoshape",
+ "DE.Views.Toolbar.tipInsertShape": "Insert shape",
"DE.Views.Toolbar.tipInsertSmartArt": "Insert SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Insert symbol",
"DE.Views.Toolbar.tipInsertTable": "Insert table",
diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json
index e0d16c2a77..a25cd691a9 100644
--- a/apps/documenteditor/main/locale/es.json
+++ b/apps/documenteditor/main/locale/es.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
"Common.Controllers.Chat.textEnterMessage": "Introduzca su mensaje aquí",
+ "Common.Controllers.Desktop.hintBtnHome": "Mostrar ventana principal",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anónimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Cerrar",
"Common.Controllers.ExternalDiagramEditor.warningText": "El objeto está desactivado porque lo está editando otro usuario.",
@@ -118,6 +119,9 @@
"Common.define.chartData.textPie": "Gráfico circular",
"Common.define.chartData.textPie3d": "Circular 3D",
"Common.define.chartData.textPoint": "XY (Dispersión)",
+ "Common.define.chartData.textRadar": "Radial",
+ "Common.define.chartData.textRadarFilled": "Radial relleno",
+ "Common.define.chartData.textRadarMarker": "Radial con marcadores",
"Common.define.chartData.textScatter": "Dispersión",
"Common.define.chartData.textScatterLine": "Dispersión con líneas rectas",
"Common.define.chartData.textScatterLineMarker": "Dispersión con líneas rectas y marcadores",
@@ -291,6 +295,7 @@
"Common.Translation.warnFileLockedBtnEdit": "Crear una copia",
"Common.Translation.warnFileLockedBtnView": "Abrir en solo lectura",
"Common.UI.ButtonColored.textAutoColor": "Automático",
+ "Common.UI.ButtonColored.textEyedropper": "Cuentagotas",
"Common.UI.ButtonColored.textNewColor": "Más colores",
"Common.UI.Calendar.textApril": "Abril",
"Common.UI.Calendar.textAugust": "Agosto",
@@ -334,6 +339,7 @@
"Common.UI.ExtendedColorDialog.textNew": "Nuevo",
"Common.UI.ExtendedColorDialog.textRGBErr": "El valor introducido es incorrecto. Por favor, introduzca un valor numérico de 0 a 225.",
"Common.UI.HSBColorPicker.textNoColor": "Sin color",
+ "Common.UI.InputFieldBtnCalendar.textDate": "Seleccionar fecha",
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar la contraseña",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar la contraseña",
"Common.UI.SearchBar.textFind": "Buscar",
@@ -356,6 +362,7 @@
"Common.UI.ThemeColorPalette.textRecentColors": "Colores recientes",
"Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar",
"Common.UI.ThemeColorPalette.textThemeColors": "Colores del tema",
+ "Common.UI.ThemeColorPalette.textTransparent": "Transparente",
"Common.UI.Themes.txtThemeClassicLight": "Clásico claro",
"Common.UI.Themes.txtThemeContrastDark": "Contraste oscuro",
"Common.UI.Themes.txtThemeDark": "Oscuro",
@@ -376,6 +383,44 @@
"Common.Utils.String.textAlt": "Alt",
"Common.Utils.String.textCtrl": "Control",
"Common.Utils.String.textShift": "Mayús",
+ "Common.Utils.ThemeColor.txtaccent": "Acento",
+ "Common.Utils.ThemeColor.txtAqua": "Aguamarina",
+ "Common.Utils.ThemeColor.txtbackground": "Fondo",
+ "Common.Utils.ThemeColor.txtBlack": "Negro",
+ "Common.Utils.ThemeColor.txtBlue": "Azul",
+ "Common.Utils.ThemeColor.txtBrightGreen": "Verde vivo",
+ "Common.Utils.ThemeColor.txtBrown": "Marrón",
+ "Common.Utils.ThemeColor.txtDarkBlue": "Azul oscuro",
+ "Common.Utils.ThemeColor.txtDarker": "Más oscuro",
+ "Common.Utils.ThemeColor.txtDarkGray": "Gris oscuro",
+ "Common.Utils.ThemeColor.txtDarkGreen": "Verde oscuro",
+ "Common.Utils.ThemeColor.txtDarkPurple": "Púrpura oscuro",
+ "Common.Utils.ThemeColor.txtDarkRed": "Rojo oscuro",
+ "Common.Utils.ThemeColor.txtDarkTeal": "Verde azulado oscuro",
+ "Common.Utils.ThemeColor.txtDarkYellow": "Amarillo oscuro",
+ "Common.Utils.ThemeColor.txtGold": "Oro",
+ "Common.Utils.ThemeColor.txtGray": "Gris",
+ "Common.Utils.ThemeColor.txtGreen": "Verde",
+ "Common.Utils.ThemeColor.txtIndigo": "Añil",
+ "Common.Utils.ThemeColor.txtLavender": "Lavanda",
+ "Common.Utils.ThemeColor.txtLightBlue": "Azul claro",
+ "Common.Utils.ThemeColor.txtLighter": "Más claro",
+ "Common.Utils.ThemeColor.txtLightGray": "Gris claro",
+ "Common.Utils.ThemeColor.txtLightGreen": "Verde claro",
+ "Common.Utils.ThemeColor.txtLightOrange": "Naranja claro",
+ "Common.Utils.ThemeColor.txtLightYellow": "Amarillo claro",
+ "Common.Utils.ThemeColor.txtOrange": "Naranja",
+ "Common.Utils.ThemeColor.txtPink": "Rosa",
+ "Common.Utils.ThemeColor.txtPurple": "Púrpura",
+ "Common.Utils.ThemeColor.txtRed": "Rojo",
+ "Common.Utils.ThemeColor.txtRose": "Rosa claro",
+ "Common.Utils.ThemeColor.txtSkyBlue": "Azul cielo",
+ "Common.Utils.ThemeColor.txtTeal": "Verde azulado",
+ "Common.Utils.ThemeColor.txttext": "Texto",
+ "Common.Utils.ThemeColor.txtTurquosie": "Turquesa",
+ "Common.Utils.ThemeColor.txtViolet": "Violeta",
+ "Common.Utils.ThemeColor.txtWhite": "Blanco",
+ "Common.Utils.ThemeColor.txtYellow": "Amarillo",
"Common.Views.About.txtAddress": "dirección: ",
"Common.Views.About.txtLicensee": "LICENCIATARIO ",
"Common.Views.About.txtLicensor": "LICENCIANTE",
@@ -452,6 +497,14 @@
"Common.Views.CopyWarningDialog.textToPaste": "para pegar",
"Common.Views.DocumentAccessDialog.textLoading": "Cargando...",
"Common.Views.DocumentAccessDialog.textTitle": "Ajustes de uso compartido",
+ "Common.Views.Draw.hintEraser": "Borrador",
+ "Common.Views.Draw.hintSelect": "Seleccionar",
+ "Common.Views.Draw.txtEraser": "Borrador",
+ "Common.Views.Draw.txtHighlighter": "Marcador de resaltado",
+ "Common.Views.Draw.txtMM": "mm",
+ "Common.Views.Draw.txtPen": "Bolígrafo",
+ "Common.Views.Draw.txtSelect": "Seleccionar",
+ "Common.Views.Draw.txtSize": "Tamaño",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráficos",
"Common.Views.ExternalEditor.textClose": "Cerrar",
"Common.Views.ExternalEditor.textSave": "Guardar y salir",
@@ -859,6 +912,7 @@
"DE.Controllers.Main.textTryUndoRedoWarn": "Las funciones «Deshacer/Rehacer» se desactivan en el modo «coedición rápido».",
"DE.Controllers.Main.textUndo": "Deshacer",
"DE.Controllers.Main.titleLicenseExp": "Licencia ha expirado",
+ "DE.Controllers.Main.titleLicenseNotActive": "Licencia no activa",
"DE.Controllers.Main.titleServerVersion": "El editor se ha actualizado",
"DE.Controllers.Main.titleUpdateVersion": "La versión ha cambiado",
"DE.Controllers.Main.txtAbove": "encima",
@@ -1118,6 +1172,8 @@
"DE.Controllers.Main.waitText": "Por favor, espere...",
"DE.Controllers.Main.warnBrowserIE9": "Esta aplicación tiene bajas capacidades en IE9. Utilice IE10 o superior",
"DE.Controllers.Main.warnBrowserZoom": "La configuración actual de 'zoom' de su navegador no es compatible por completo. Por favor, restablezca el 'zoom' predeterminado pulsando Ctrl+0.",
+ "DE.Controllers.Main.warnLicenseAnonymous": "Acceso denegado para usuarios anónimos. Este documento se abrirá solo para su visualización.",
+ "DE.Controllers.Main.warnLicenseBefore": "Licencia no activa. Por favor, póngase en contacto con su administrador.",
"DE.Controllers.Main.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá en modo de solo lectura. Por favor, contacte con su administrador para recibir más información.",
"DE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado. Por favor, actualice su licencia y después recargue la página.",
"DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia expirada. No tiene acceso a la funcionalidad de edición de documentos. Por favor, póngase en contacto con su administrador.",
@@ -1636,8 +1692,11 @@
"DE.Views.CrossReferenceDialog.txtTitle": "Referencia cruzada",
"DE.Views.CrossReferenceDialog.txtType": "Tipo de referencia",
"DE.Views.CustomColumnsDialog.textColumns": "Número de columnas",
+ "DE.Views.CustomColumnsDialog.textEqualWidth": "Columnas de igual ancho",
"DE.Views.CustomColumnsDialog.textSeparator": "Divisor de columnas",
"DE.Views.CustomColumnsDialog.textTitle": "Columnas",
+ "DE.Views.CustomColumnsDialog.textTitleSpacing": "Espaciado",
+ "DE.Views.CustomColumnsDialog.textWidth": "Ancho",
"DE.Views.DateTimeDialog.confirmDefault": "Establecer formato predeterminado para {0}: \"{1}\"",
"DE.Views.DateTimeDialog.textDefault": "Establecer como predeterminado",
"DE.Views.DateTimeDialog.textFormat": "Formatos",
@@ -1755,6 +1814,7 @@
"DE.Views.DocumentHolder.textFromFile": "Desde archivo",
"DE.Views.DocumentHolder.textFromStorage": "Desde almacenamiento",
"DE.Views.DocumentHolder.textFromUrl": "Desde URL",
+ "DE.Views.DocumentHolder.textIndents": "Ajustar sangrías de la lista",
"DE.Views.DocumentHolder.textJoinList": "Unir con lista anterior",
"DE.Views.DocumentHolder.textLeft": "Desplazar las celdas hacia la izquierda",
"DE.Views.DocumentHolder.textNest": "Tabla anidada",
@@ -2082,6 +2142,7 @@
"DE.Views.FormSettings.textAutofit": "Autoajustar",
"DE.Views.FormSettings.textBackgroundColor": "Color del fondo",
"DE.Views.FormSettings.textCheckbox": "Casilla",
+ "DE.Views.FormSettings.textCheckDefault": "La casilla de verificación está marcada de forma predeterminada",
"DE.Views.FormSettings.textColor": "Color del borde",
"DE.Views.FormSettings.textComb": "Peine de caracteres",
"DE.Views.FormSettings.textCombobox": "Cuadro combinado",
@@ -2090,6 +2151,7 @@
"DE.Views.FormSettings.textCreditCard": "Número de tarjeta de crédito (por ejemplo, 4111-1111-1111-1111)",
"DE.Views.FormSettings.textDateField": "Campo de fecha y hora",
"DE.Views.FormSettings.textDateFormat": "Mostrar la fecha de esta manera",
+ "DE.Views.FormSettings.textDefValue": "Valor predeterminado",
"DE.Views.FormSettings.textDelete": "Eliminar",
"DE.Views.FormSettings.textDigits": "Dígitos",
"DE.Views.FormSettings.textDisconnect": "Desconectar",
@@ -2119,6 +2181,7 @@
"DE.Views.FormSettings.textPhone2": "Número de teléfono (por ejemplo, +447911123456)",
"DE.Views.FormSettings.textPlaceholder": "Marcador de posición",
"DE.Views.FormSettings.textRadiobox": "Botón de opción",
+ "DE.Views.FormSettings.textRadioDefault": "El botón está marcado de forma predeterminada",
"DE.Views.FormSettings.textReg": "Expresión regular",
"DE.Views.FormSettings.textRequired": "Necesario",
"DE.Views.FormSettings.textScale": "Cuándo escalar",
@@ -2261,7 +2324,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alineación",
"DE.Views.ImageSettingsAdvanced.textAlt": "Texto alternativo",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Descripción",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, autoforma, gráfico o tabla.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Título",
"DE.Views.ImageSettingsAdvanced.textAngle": "Ángulo",
"DE.Views.ImageSettingsAdvanced.textArrows": "Flechas",
@@ -2398,22 +2461,49 @@
"DE.Views.Links.titleUpdateTOF": "Actualizar la tabla de ilustraciones",
"DE.Views.Links.txtDontShowTof": "No mostrar en la tabla de contenido",
"DE.Views.Links.txtLevel": "Nivel",
+ "DE.Views.ListIndentsDialog.textSpace": "Espacio",
+ "DE.Views.ListIndentsDialog.textTab": "Marca de tabulación",
+ "DE.Views.ListIndentsDialog.textTitle": "Sangrías de la lista",
+ "DE.Views.ListIndentsDialog.txtFollowBullet": "Viñeta seguida de",
+ "DE.Views.ListIndentsDialog.txtFollowNumber": "Número seguido de",
+ "DE.Views.ListIndentsDialog.txtIndent": "Sangría de texto",
+ "DE.Views.ListIndentsDialog.txtNone": "Ninguna",
+ "DE.Views.ListIndentsDialog.txtPosBullet": "Posición de la viñeta",
+ "DE.Views.ListIndentsDialog.txtPosNumber": "Posición de número",
"DE.Views.ListSettingsDialog.textAuto": "Automático",
+ "DE.Views.ListSettingsDialog.textBold": "Negrita",
"DE.Views.ListSettingsDialog.textCenter": "Centrada",
+ "DE.Views.ListSettingsDialog.textHide": "Ocultar ajustes",
+ "DE.Views.ListSettingsDialog.textItalic": "Cursiva",
"DE.Views.ListSettingsDialog.textLeft": "Izquierda",
"DE.Views.ListSettingsDialog.textLevel": "Nivel",
+ "DE.Views.ListSettingsDialog.textMore": "Mostrar más ajustes",
"DE.Views.ListSettingsDialog.textPreview": "Vista previa",
"DE.Views.ListSettingsDialog.textRight": "Derecha",
+ "DE.Views.ListSettingsDialog.textSelectLevel": "Seleccionar nivel",
+ "DE.Views.ListSettingsDialog.textSpace": "Espacio",
+ "DE.Views.ListSettingsDialog.textTab": "Marca de tabulación",
"DE.Views.ListSettingsDialog.txtAlign": "Alineación",
+ "DE.Views.ListSettingsDialog.txtAlignAt": "en",
"DE.Views.ListSettingsDialog.txtBullet": "Viñeta",
"DE.Views.ListSettingsDialog.txtColor": "Color",
+ "DE.Views.ListSettingsDialog.txtFollow": "Número seguido de",
+ "DE.Views.ListSettingsDialog.txtFontName": "Fuente",
+ "DE.Views.ListSettingsDialog.txtInclcudeLevel": "Incluir número de nivel",
+ "DE.Views.ListSettingsDialog.txtIndent": "Sangría de texto",
"DE.Views.ListSettingsDialog.txtLikeText": "Como el texto",
+ "DE.Views.ListSettingsDialog.txtMoreTypes": "Más tipos",
"DE.Views.ListSettingsDialog.txtNewBullet": "Nueva viñeta",
"DE.Views.ListSettingsDialog.txtNone": "No",
+ "DE.Views.ListSettingsDialog.txtNumFormatString": "Formato de número",
+ "DE.Views.ListSettingsDialog.txtRestart": "Reiniciar lista",
"DE.Views.ListSettingsDialog.txtSize": "Tamaño",
+ "DE.Views.ListSettingsDialog.txtStart": "Empezar en",
"DE.Views.ListSettingsDialog.txtSymbol": "Símbolo",
+ "DE.Views.ListSettingsDialog.txtTabStop": "Añadir tabulación en",
"DE.Views.ListSettingsDialog.txtTitle": "Ajustes de lista",
"DE.Views.ListSettingsDialog.txtType": "Tipo",
+ "DE.Views.ListTypesAdvanced.labelSelect": "Seleccionar tipo de lista",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Enviar",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema",
@@ -2650,7 +2740,11 @@
"DE.Views.PrintWithPreview.textMarginsUsNormal": "Normal (EE.UU)",
"DE.Views.PrintWithPreview.textMarginsWide": "Amplio",
"DE.Views.PrintWithPreview.txtAllPages": "Todas las páginas",
+ "DE.Views.PrintWithPreview.txtBothSides": "Imprimir en ambas caras",
+ "DE.Views.PrintWithPreview.txtBothSidesLongDesc": "Girar páginas por borde largo",
+ "DE.Views.PrintWithPreview.txtBothSidesShortDesc": "Girar páginas por borde corto",
"DE.Views.PrintWithPreview.txtBottom": "Parte inferior",
+ "DE.Views.PrintWithPreview.txtCopies": "Copias",
"DE.Views.PrintWithPreview.txtCurrentPage": "Página actual",
"DE.Views.PrintWithPreview.txtCustom": "Personalizado",
"DE.Views.PrintWithPreview.txtCustomPages": "Impresión personalizada",
@@ -2658,6 +2752,8 @@
"DE.Views.PrintWithPreview.txtLeft": "Izquierdo",
"DE.Views.PrintWithPreview.txtMargins": "Márgenes",
"DE.Views.PrintWithPreview.txtOf": "de {0}",
+ "DE.Views.PrintWithPreview.txtOneSide": "Imprimir a una cara",
+ "DE.Views.PrintWithPreview.txtOneSideDesc": "Imprimir solo en una cara de la página",
"DE.Views.PrintWithPreview.txtPage": "Página",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Número de página no válido",
"DE.Views.PrintWithPreview.txtPageOrientation": "Orientación de página",
@@ -2667,6 +2763,7 @@
"DE.Views.PrintWithPreview.txtPrint": "Imprimir",
"DE.Views.PrintWithPreview.txtPrintPdf": "Imprimir en PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Intervalo de impresión",
+ "DE.Views.PrintWithPreview.txtPrintSides": "Caras de impresión",
"DE.Views.PrintWithPreview.txtRight": "Derecho",
"DE.Views.PrintWithPreview.txtSelection": "Selección",
"DE.Views.PrintWithPreview.txtTop": "Parte superior",
@@ -2702,7 +2799,6 @@
"DE.Views.RoleEditDlg.textNoHighlight": "No resaltar",
"DE.Views.RoleEditDlg.txtTitleEdit": "Editar rol",
"DE.Views.RoleEditDlg.txtTitleNew": "Crear nuevo rol",
- "DE.Views.RolesManagerDlg.closeButtonText": "Cerrar",
"DE.Views.RolesManagerDlg.textAnyone": "Cualquiera",
"DE.Views.RolesManagerDlg.textDelete": "Eliminar",
"DE.Views.RolesManagerDlg.textDeleteLast": "¿Está seguro de que desea eliminar el rol {0}? Una vez eliminado, se creará el rol predeterminado.",
@@ -2722,7 +2818,7 @@
"DE.Views.SaveFormDlg.textFill": "Lista de relleno",
"DE.Views.SaveFormDlg.txtTitle": "Guardar como formulario",
"DE.Views.ShapeSettings.strBackground": "Color del fondo",
- "DE.Views.ShapeSettings.strChange": "Cambiar autoforma",
+ "DE.Views.ShapeSettings.strChange": "Cambiar forma",
"DE.Views.ShapeSettings.strColor": "Color",
"DE.Views.ShapeSettings.strFill": "Relleno",
"DE.Views.ShapeSettings.strForeground": "Color del primer plano",
@@ -2929,7 +3025,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espacio entre celdas",
"DE.Views.TableSettingsAdvanced.textAlt": "Texto alternativo",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Descripción",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, autoforma, gráfico o tabla.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarlos a entender mejor la información que contiene la imagen, forma, gráfico o tabla.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Título",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Texto",
"DE.Views.TableSettingsAdvanced.textAutofit": "Cambiar tamaño automáticamente para ajustarse al contenido",
@@ -3159,6 +3255,7 @@
"DE.Views.Toolbar.textSuperscript": "Superíndice",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suprimir del párrafo actual",
"DE.Views.Toolbar.textTabCollaboration": "Colaboración",
+ "DE.Views.Toolbar.textTabDraw": "Dibujar",
"DE.Views.Toolbar.textTabFile": "Archivo",
"DE.Views.Toolbar.textTabHome": "Inicio",
"DE.Views.Toolbar.textTabInsert": "Insertar",
@@ -3205,7 +3302,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Insertar cuadro de texto horizontal",
"DE.Views.Toolbar.tipInsertImage": "Insertar imagen",
"DE.Views.Toolbar.tipInsertNum": "Insertar número de página",
- "DE.Views.Toolbar.tipInsertShape": "Insertar autoforma",
+ "DE.Views.Toolbar.tipInsertShape": "Insertar forma",
"DE.Views.Toolbar.tipInsertSmartArt": "Insertar 'smartart'",
"DE.Views.Toolbar.tipInsertSymbol": "Insertar símbolo",
"DE.Views.Toolbar.tipInsertTable": "Insertar tabla",
@@ -3254,6 +3351,13 @@
"DE.Views.Toolbar.tipWatermark": "Editar marca de agua",
"DE.Views.Toolbar.txtDistribHor": "Distribuir horizontalmente",
"DE.Views.Toolbar.txtDistribVert": "Distribuir verticalmente",
+ "DE.Views.Toolbar.txtGroupBulletDoc": "Viñetas de documento",
+ "DE.Views.Toolbar.txtGroupBulletLib": "Biblioteca de viñetas",
+ "DE.Views.Toolbar.txtGroupMultiDoc": "Listas en el documento actual",
+ "DE.Views.Toolbar.txtGroupMultiLib": "Biblioteca de listas",
+ "DE.Views.Toolbar.txtGroupNumDoc": "Formatos de numeración de documentos",
+ "DE.Views.Toolbar.txtGroupNumLib": "Biblioteca de numeración",
+ "DE.Views.Toolbar.txtGroupRecent": "Usados recientemente",
"DE.Views.Toolbar.txtMarginAlign": "Alinear al margen",
"DE.Views.Toolbar.txtObjectsAlign": "Alinear objetos seleccionados",
"DE.Views.Toolbar.txtPageAlign": "Alinear a la página",
diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json
index 7042b6d1df..a662933175 100644
--- a/apps/documenteditor/main/locale/eu.json
+++ b/apps/documenteditor/main/locale/eu.json
@@ -2271,7 +2271,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Lerrokatzea",
"DE.Views.ImageSettingsAdvanced.textAlt": "Ordezko testua",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Deskribapena",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Objektuaren informazio bisualaren testuan oinarritutako ordezko irudikapena, zeina ikusmen-urritasun edo narriadura kognitiboa duten pertsonei irakurriko zaien; irudi, forma automatiko, diagrama edo taulan dagoen informazioa hobeto ulertzen laguntzeko.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Objektuaren informazio bisualaren testuan oinarritutako ordezko irudikapena, zeina ikusmen-urritasun edo narriadura kognitiboa duten pertsonei irakurriko zaien; irudi, forma, diagrama edo taulan dagoen informazioa hobeto ulertzen laguntzeko.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Izenburua",
"DE.Views.ImageSettingsAdvanced.textAngle": "Angelua",
"DE.Views.ImageSettingsAdvanced.textArrows": "Geziak",
@@ -2714,7 +2714,6 @@
"DE.Views.RoleEditDlg.textNoHighlight": "Ez nabarmendu",
"DE.Views.RoleEditDlg.txtTitleEdit": "Editatu rola",
"DE.Views.RoleEditDlg.txtTitleNew": "Sortu rol berria",
- "DE.Views.RolesManagerDlg.closeButtonText": "Itxi",
"DE.Views.RolesManagerDlg.textAnyone": "Edonork",
"DE.Views.RolesManagerDlg.textDelete": "Ezabatu",
"DE.Views.RolesManagerDlg.textDeleteLast": "Ziur zaude {0} rola ezabatu nahi duzula? Ezabatuz gero, rol lehenetsia sortuko da.",
@@ -2734,7 +2733,7 @@
"DE.Views.SaveFormDlg.textFill": "Zerrenda betetzea",
"DE.Views.SaveFormDlg.txtTitle": "Gorde formulario bezala",
"DE.Views.ShapeSettings.strBackground": "Atzeko planoaren kolorea",
- "DE.Views.ShapeSettings.strChange": "Aldatu forma automatikoa",
+ "DE.Views.ShapeSettings.strChange": "Aldatu forma",
"DE.Views.ShapeSettings.strColor": "Kolorea",
"DE.Views.ShapeSettings.strFill": "Bete",
"DE.Views.ShapeSettings.strForeground": "Aurreko planoaren kolorea",
@@ -2941,7 +2940,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Tartea gelaxken artean",
"DE.Views.TableSettingsAdvanced.textAlt": "Ordezko testua",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Deskribapena",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Objektuaren informazio bisualaren testuan oinarritutako ordezko irudikapena, zeina ikusmen-urritasun edo narriadura kognitiboa duten pertsonei irakurriko zaien; irudi, forma automatiko, diagrama edo taulan dagoen informazioa hobeto ulertzen laguntzeko.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Objektuaren informazio bisualaren testuan oinarritutako ordezko irudikapena, zeina ikusmen-urritasun edo narriadura kognitiboa duten pertsonei irakurriko zaien; irudi, forma, diagrama edo taulan dagoen informazioa hobeto ulertzen laguntzeko.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Izenburua",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Testua",
"DE.Views.TableSettingsAdvanced.textAutofit": "Aldatu tamaina automatikoki edukietara doitzeko",
@@ -3217,7 +3216,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Txertatu testu-koadro horizontala",
"DE.Views.Toolbar.tipInsertImage": "Txertatu irudia",
"DE.Views.Toolbar.tipInsertNum": "Txertatu orrialde-zenbakia",
- "DE.Views.Toolbar.tipInsertShape": "Txertatu forma automatikoa",
+ "DE.Views.Toolbar.tipInsertShape": "Txertatu forma",
"DE.Views.Toolbar.tipInsertSmartArt": "Txertatu SmartArt-a",
"DE.Views.Toolbar.tipInsertSymbol": "Txertatu ikurra",
"DE.Views.Toolbar.tipInsertTable": "Txertatu taula",
diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json
index 120aa4196d..f7cab2d49f 100644
--- a/apps/documenteditor/main/locale/fi.json
+++ b/apps/documenteditor/main/locale/fi.json
@@ -1370,7 +1370,7 @@
"DE.Views.RightMenu.txtTableSettings": "Taulukon asetukset",
"DE.Views.RightMenu.txtTextArtSettings": "Taiteellisen tekstin asetukset",
"DE.Views.ShapeSettings.strBackground": "Taustan väri",
- "DE.Views.ShapeSettings.strChange": "Muuta automaattista muotoa",
+ "DE.Views.ShapeSettings.strChange": "Muuta muotoa",
"DE.Views.ShapeSettings.strColor": "Väri",
"DE.Views.ShapeSettings.strFill": "Täytä",
"DE.Views.ShapeSettings.strForeground": "Etualan väri",
@@ -1681,7 +1681,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Lisää yhtälö",
"DE.Views.Toolbar.tipInsertImage": "Lisää kuva",
"DE.Views.Toolbar.tipInsertNum": "Lisää sivunumero",
- "DE.Views.Toolbar.tipInsertShape": "Lisää automaattinen muoto",
+ "DE.Views.Toolbar.tipInsertShape": "Lisää muoto",
"DE.Views.Toolbar.tipInsertTable": "Lisää taulukko",
"DE.Views.Toolbar.tipInsertText": "Lisää teksti",
"DE.Views.Toolbar.tipInsertTextArt": "Lisää taiteellinen teksti",
diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json
index 05d6b0f324..21a0d36a4a 100644
--- a/apps/documenteditor/main/locale/fr.json
+++ b/apps/documenteditor/main/locale/fr.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Avertissement",
"Common.Controllers.Chat.textEnterMessage": "Entrez votre message ici",
+ "Common.Controllers.Desktop.hintBtnHome": "Afficher la Fenêtre Principale",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonyme",
"Common.Controllers.ExternalDiagramEditor.textClose": "Fermer",
"Common.Controllers.ExternalDiagramEditor.warningText": "L'objet est désactivé car il est en cours de modification par un autre utilisateur.",
@@ -1799,7 +1800,7 @@
"DE.Views.DocumentHolder.textContinueNumbering": "Continuer la numérotation",
"DE.Views.DocumentHolder.textCopy": "Copier",
"DE.Views.DocumentHolder.textCrop": "Rogner",
- "DE.Views.DocumentHolder.textCropFill": "Remplissage",
+ "DE.Views.DocumentHolder.textCropFill": "Remplir",
"DE.Views.DocumentHolder.textCropFit": "Ajuster",
"DE.Views.DocumentHolder.textCut": "Couper",
"DE.Views.DocumentHolder.textDistributeCols": "Distribuer les colonnes",
@@ -1810,9 +1811,9 @@
"DE.Views.DocumentHolder.textFlipH": "Retourner horizontalement",
"DE.Views.DocumentHolder.textFlipV": "Retourner verticalement",
"DE.Views.DocumentHolder.textFollow": "Suivre le mouvement",
- "DE.Views.DocumentHolder.textFromFile": "D'un fichier",
+ "DE.Views.DocumentHolder.textFromFile": "À partir du fichier",
"DE.Views.DocumentHolder.textFromStorage": "À partir de l'espace de stockage",
- "DE.Views.DocumentHolder.textFromUrl": "D'une URL",
+ "DE.Views.DocumentHolder.textFromUrl": "À partir d'une URL",
"DE.Views.DocumentHolder.textIndents": "Ajuster les retraits de la liste",
"DE.Views.DocumentHolder.textJoinList": "Rejoindre la liste précédente. ",
"DE.Views.DocumentHolder.textLeft": "Décaler les cellules vers la gauche",
@@ -2161,15 +2162,15 @@
"DE.Views.FormSettings.textFixed": "Taille de champ fixe",
"DE.Views.FormSettings.textFormat": "Format",
"DE.Views.FormSettings.textFormatSymbols": "Symboles autorisés",
- "DE.Views.FormSettings.textFromFile": "Depuis un fichier",
+ "DE.Views.FormSettings.textFromFile": "À partir du fichier",
"DE.Views.FormSettings.textFromStorage": "À partir de l'espace de stockage",
- "DE.Views.FormSettings.textFromUrl": "A partir d'une URL",
+ "DE.Views.FormSettings.textFromUrl": "À partir d'une URL",
"DE.Views.FormSettings.textGroupKey": "Clé de groupe",
"DE.Views.FormSettings.textImage": "Image",
"DE.Views.FormSettings.textKey": "Clé",
"DE.Views.FormSettings.textLang": "Langue",
"DE.Views.FormSettings.textLetters": "Lettres",
- "DE.Views.FormSettings.textLock": "Verrou ",
+ "DE.Views.FormSettings.textLock": "Verrouiller",
"DE.Views.FormSettings.textMask": "Masque arbitraire",
"DE.Views.FormSettings.textMaxChars": "Limite de caractères",
"DE.Views.FormSettings.textMulti": "Champ de saisie à plusieurs lignes",
@@ -2288,16 +2289,16 @@
"DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Ce champ est limité à 2083 caractères.",
"DE.Views.ImageSettings.textAdvanced": "Afficher les paramètres avancés",
"DE.Views.ImageSettings.textCrop": "Rogner",
- "DE.Views.ImageSettings.textCropFill": "Remplissage",
+ "DE.Views.ImageSettings.textCropFill": "Remplir",
"DE.Views.ImageSettings.textCropFit": "Ajuster",
"DE.Views.ImageSettings.textCropToShape": "Rogner à la forme",
"DE.Views.ImageSettings.textEdit": "Modifier",
"DE.Views.ImageSettings.textEditObject": "Modifier l'objet",
"DE.Views.ImageSettings.textFitMargins": "Ajuster aux marges",
"DE.Views.ImageSettings.textFlip": "Retournement",
- "DE.Views.ImageSettings.textFromFile": "Depuis un fichier",
+ "DE.Views.ImageSettings.textFromFile": "À partir du fichier",
"DE.Views.ImageSettings.textFromStorage": "À partir de l'espace de stockage",
- "DE.Views.ImageSettings.textFromUrl": "D'une URL",
+ "DE.Views.ImageSettings.textFromUrl": "À partir d'une URL",
"DE.Views.ImageSettings.textHeight": "Hauteur",
"DE.Views.ImageSettings.textHint270": "Faire pivoter à gauche de 90°",
"DE.Views.ImageSettings.textHint90": "Faire pivoter à droite de 90°",
@@ -2323,7 +2324,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignement",
"DE.Views.ImageSettingsAdvanced.textAlt": "Texte de remplacement",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "La représentation textuelle des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre le contenu de l’image, de la forme automatique, du graphique ou du tableau.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "La représentation textuelle des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre le contenu de l’image, de la forme, du graphique ou du tableau.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Titre",
"DE.Views.ImageSettingsAdvanced.textAngle": "Angle",
"DE.Views.ImageSettingsAdvanced.textArrows": "Flèches",
@@ -2798,7 +2799,6 @@
"DE.Views.RoleEditDlg.textNoHighlight": "Pas de surbrillance ",
"DE.Views.RoleEditDlg.txtTitleEdit": "Modifier le rôle",
"DE.Views.RoleEditDlg.txtTitleNew": "Créer un nouveau rôle",
- "DE.Views.RolesManagerDlg.closeButtonText": "Fermer",
"DE.Views.RolesManagerDlg.textAnyone": "Tout le monde",
"DE.Views.RolesManagerDlg.textDelete": "Supprimer",
"DE.Views.RolesManagerDlg.textDeleteLast": "Êtes-vous sûr de vouloir supprimer le rôle {0}? Une fois supprimé, le rôle par défaut sera créé.",
@@ -2818,7 +2818,7 @@
"DE.Views.SaveFormDlg.textFill": "Liste de remplissage",
"DE.Views.SaveFormDlg.txtTitle": "Enregistrer comme formulaire",
"DE.Views.ShapeSettings.strBackground": "Couleur d'arrière-plan",
- "DE.Views.ShapeSettings.strChange": "Modifier la forme automatique",
+ "DE.Views.ShapeSettings.strChange": "Modifier la forme",
"DE.Views.ShapeSettings.strColor": "Couleur",
"DE.Views.ShapeSettings.strFill": "Remplissage",
"DE.Views.ShapeSettings.strForeground": "Couleur de premier plan",
@@ -2835,9 +2835,9 @@
"DE.Views.ShapeSettings.textDirection": "Direction",
"DE.Views.ShapeSettings.textEmptyPattern": "Pas de modèles",
"DE.Views.ShapeSettings.textFlip": "Retournement",
- "DE.Views.ShapeSettings.textFromFile": "Depuis un fichier",
+ "DE.Views.ShapeSettings.textFromFile": "À partir du fichier",
"DE.Views.ShapeSettings.textFromStorage": "À partir de l'espace de stockage",
- "DE.Views.ShapeSettings.textFromUrl": "D'une URL",
+ "DE.Views.ShapeSettings.textFromUrl": "À partir d'une URL",
"DE.Views.ShapeSettings.textGradient": "Dégradé",
"DE.Views.ShapeSettings.textGradientFill": "Remplissage en dégradé",
"DE.Views.ShapeSettings.textHint270": "Faire pivoter à gauche de 90°",
@@ -3025,7 +3025,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espacement entre les cellules",
"DE.Views.TableSettingsAdvanced.textAlt": "Texte de remplacement",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Description",
- "DE.Views.TableSettingsAdvanced.textAltTip": "La représentation textuelle des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre le contenu de l’image, de la forme automatique, du graphique ou du tableau.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "La représentation textuelle des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre le contenu de l’image, de la forme, du graphique ou du tableau.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Titre",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Texte",
"DE.Views.TableSettingsAdvanced.textAutofit": "Redimensionner automatiquement pour ajuster au contenu",
@@ -3174,9 +3174,9 @@
"DE.Views.Toolbar.mniEditFooter": "Modifier le pied de page",
"DE.Views.Toolbar.mniEditHeader": "Modifier l'en-tête",
"DE.Views.Toolbar.mniEraseTable": "Supprimer un tableau",
- "DE.Views.Toolbar.mniFromFile": "Depuis un fichier",
+ "DE.Views.Toolbar.mniFromFile": "À partir du fichier",
"DE.Views.Toolbar.mniFromStorage": "À partir de l'espace de stockage",
- "DE.Views.Toolbar.mniFromUrl": "À partir de l'URL",
+ "DE.Views.Toolbar.mniFromUrl": "À partir d'une URL",
"DE.Views.Toolbar.mniHiddenBorders": "Bordures de tableau cachées",
"DE.Views.Toolbar.mniHiddenChars": "Caractères non imprimables",
"DE.Views.Toolbar.mniHighlightControls": "Paramètres de surbrillance",
@@ -3199,7 +3199,7 @@
"DE.Views.Toolbar.textCheckboxControl": "Case à cocher",
"DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées",
"DE.Views.Toolbar.textColumnsLeft": "À gauche",
- "DE.Views.Toolbar.textColumnsOne": "Un",
+ "DE.Views.Toolbar.textColumnsOne": "Une",
"DE.Views.Toolbar.textColumnsRight": "À droite",
"DE.Views.Toolbar.textColumnsThree": "Trois",
"DE.Views.Toolbar.textColumnsTwo": "Deux",
@@ -3302,7 +3302,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Insérer une zone de texte horizontale",
"DE.Views.Toolbar.tipInsertImage": "Insérer une image",
"DE.Views.Toolbar.tipInsertNum": "Insérer le numéro de page",
- "DE.Views.Toolbar.tipInsertShape": "Insérer une forme automatique",
+ "DE.Views.Toolbar.tipInsertShape": "Insérer une forme",
"DE.Views.Toolbar.tipInsertSmartArt": "Insérer un graphique SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Insérer un symbole",
"DE.Views.Toolbar.tipInsertTable": "Insérer un tableau",
@@ -3405,9 +3405,9 @@
"DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonale",
"DE.Views.WatermarkSettingsDialog.textFont": "Police",
- "DE.Views.WatermarkSettingsDialog.textFromFile": "D'un fichier",
+ "DE.Views.WatermarkSettingsDialog.textFromFile": "À partir du fichier",
"DE.Views.WatermarkSettingsDialog.textFromStorage": "À partir de l'espace de stockage",
- "DE.Views.WatermarkSettingsDialog.textFromUrl": "D'une URL",
+ "DE.Views.WatermarkSettingsDialog.textFromUrl": "À partir d'une URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
"DE.Views.WatermarkSettingsDialog.textImageW": "Image en filigrane",
"DE.Views.WatermarkSettingsDialog.textItalic": "Italique",
diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json
index 45e667f23f..afa6ca9a59 100644
--- a/apps/documenteditor/main/locale/gl.json
+++ b/apps/documenteditor/main/locale/gl.json
@@ -1955,7 +1955,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Aliñamento",
"DE.Views.ImageSettingsAdvanced.textAlt": "Texto alternativo",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Descrición",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "A representación alternativa baseada en texto da información do obxecto visual, que se lerá ás persoas con problemas de visión ou cognitivos para axudalos a comprender mellor que información hai na imaxe, forma automática, gráfico ou táboa.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "A representación alternativa baseada en texto da información do obxecto visual, que se lerá ás persoas con problemas de visión ou cognitivos para axudalos a comprender mellor que información hai na imaxe, forma, gráfico ou táboa.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Título",
"DE.Views.ImageSettingsAdvanced.textAngle": "Ángulo",
"DE.Views.ImageSettingsAdvanced.textArrows": "Frechas",
@@ -2330,7 +2330,7 @@
"DE.Views.RightMenu.txtTableSettings": "Configuración da táboa",
"DE.Views.RightMenu.txtTextArtSettings": "Configuración do Text Art ",
"DE.Views.ShapeSettings.strBackground": "Cor de fondo",
- "DE.Views.ShapeSettings.strChange": "Cambiar autoforma",
+ "DE.Views.ShapeSettings.strChange": "Cambiar forma",
"DE.Views.ShapeSettings.strColor": "Cor",
"DE.Views.ShapeSettings.strFill": "Encher",
"DE.Views.ShapeSettings.strForeground": "Cor de primeiro plano",
@@ -2523,7 +2523,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espazo entre celdas",
"DE.Views.TableSettingsAdvanced.textAlt": "Texto alternativo",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Descrición",
- "DE.Views.TableSettingsAdvanced.textAltTip": "A representación alternativa baseada en texto da información do obxecto visual, que se lerá ás persoas con problemas de visión ou cognitivos para axudalos a comprender mellor que información hai na imaxe, forma automática, gráfico ou táboa.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "A representación alternativa baseada en texto da información do obxecto visual, que se lerá ás persoas con problemas de visión ou cognitivos para axudalos a comprender mellor que información hai na imaxe, forma, gráfico ou táboa.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Título",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Тexto",
"DE.Views.TableSettingsAdvanced.textAutofit": "Cambiar tamaño automaticamente para axustar ao contido",
@@ -2796,7 +2796,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Inserir ecuación",
"DE.Views.Toolbar.tipInsertImage": "Inserir imaxe",
"DE.Views.Toolbar.tipInsertNum": "Inserir número de páxina",
- "DE.Views.Toolbar.tipInsertShape": "Inserir forma automática",
+ "DE.Views.Toolbar.tipInsertShape": "Inserir forma",
"DE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo",
"DE.Views.Toolbar.tipInsertTable": "Inserir táboa",
"DE.Views.Toolbar.tipInsertText": "Inserir caixa do texto",
diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json
index fee80256cf..49e3828abe 100644
--- a/apps/documenteditor/main/locale/hu.json
+++ b/apps/documenteditor/main/locale/hu.json
@@ -376,12 +376,12 @@
"Common.Utils.String.textAlt": "Alt",
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "Váltás",
- "Common.Views.About.txtAddress": "Cím:",
+ "Common.Views.About.txtAddress": "cím:",
"Common.Views.About.txtLicensee": "LICENC JOGOSULTJA",
"Common.Views.About.txtLicensor": "LICENZOR",
"Common.Views.About.txtMail": "e-mail:",
"Common.Views.About.txtPoweredBy": "Powered by",
- "Common.Views.About.txtTel": "Tel.: ",
+ "Common.Views.About.txtTel": "tel.: ",
"Common.Views.About.txtVersion": "Verzió",
"Common.Views.AutoCorrectDialog.textAdd": "Hozzáad",
"Common.Views.AutoCorrectDialog.textApplyText": "Alkalmazás gépelés közben",
diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json
index a506bef1e6..96bc4e2d05 100644
--- a/apps/documenteditor/main/locale/hy.json
+++ b/apps/documenteditor/main/locale/hy.json
@@ -338,6 +338,7 @@
"Common.UI.ExtendedColorDialog.textNew": "Նոր",
"Common.UI.ExtendedColorDialog.textRGBErr": "Մուտքագրված արժեքը սխալ է:Խնդրում ենք մուտքագրել 0-ից 255 թվային արժեք:",
"Common.UI.HSBColorPicker.textNoColor": "Առանց գույն",
+ "Common.UI.InputFieldBtnCalendar.textDate": "Ընտրել ամսաթիվը",
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Թաքցնել գաղտնաբառը",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Ցուցադրել գաղտնաբառը",
"Common.UI.SearchBar.textFind": "Գտնել",
@@ -495,6 +496,14 @@
"Common.Views.CopyWarningDialog.textToPaste": "փակցնելու համար",
"Common.Views.DocumentAccessDialog.textLoading": "Բեռնում...",
"Common.Views.DocumentAccessDialog.textTitle": "Համօգտագործման կարգավորումներ",
+ "Common.Views.Draw.hintEraser": "Ջնջիչ",
+ "Common.Views.Draw.hintSelect": "Ընտրել",
+ "Common.Views.Draw.txtEraser": "Ջնջիչ",
+ "Common.Views.Draw.txtHighlighter": "Գունանշիչ",
+ "Common.Views.Draw.txtMM": "մմ",
+ "Common.Views.Draw.txtPen": "Գրիչ",
+ "Common.Views.Draw.txtSelect": "Ընտրել",
+ "Common.Views.Draw.txtSize": "Չափ",
"Common.Views.ExternalDiagramEditor.textTitle": "Գծապատկերի խմբագրիչ",
"Common.Views.ExternalEditor.textClose": "Փակել",
"Common.Views.ExternalEditor.textSave": "Պահպանել և դուրս գալ",
@@ -2132,6 +2141,7 @@
"DE.Views.FormSettings.textAutofit": "Ինքնահարմարեցում",
"DE.Views.FormSettings.textBackgroundColor": "Փոնի գույն",
"DE.Views.FormSettings.textCheckbox": "Ստուգանիշ",
+ "DE.Views.FormSettings.textCheckDefault": "Նշավանդակը լռելյայն նշված է",
"DE.Views.FormSettings.textColor": "Եզրագծի գույն",
"DE.Views.FormSettings.textComb": "Սյուների ձուլում",
"DE.Views.FormSettings.textCombobox": "Համակցված տուփ",
@@ -2140,6 +2150,7 @@
"DE.Views.FormSettings.textCreditCard": "Վարկային քարտի համար (օր.՝ 4111-1111-1111-1111)",
"DE.Views.FormSettings.textDateField": "Ամսաթիվ/Ժամ դաշտ",
"DE.Views.FormSettings.textDateFormat": "Ցուցադրել ամիս-ամսաթիվն այսպես՝",
+ "DE.Views.FormSettings.textDefValue": "Լռելյայն արժեք",
"DE.Views.FormSettings.textDelete": "Ջնջել",
"DE.Views.FormSettings.textDigits": "Թվանիշեր",
"DE.Views.FormSettings.textDisconnect": "Անջատել",
@@ -2169,6 +2180,7 @@
"DE.Views.FormSettings.textPhone2": "Հեռախոսահամար (օր՝+447911123456)",
"DE.Views.FormSettings.textPlaceholder": "Տեղապահ ",
"DE.Views.FormSettings.textRadiobox": "Ընտրանքի կոճակ ",
+ "DE.Views.FormSettings.textRadioDefault": "Կոճակը լռելյայն ստուգված է",
"DE.Views.FormSettings.textReg": "Կանոնավոր արտահայտություն",
"DE.Views.FormSettings.textRequired": "Պարտադիր",
"DE.Views.FormSettings.textScale": "Երբ սանդղել",
@@ -2448,23 +2460,49 @@
"DE.Views.Links.titleUpdateTOF": "Արդիացնել թվերի աղյուսակը",
"DE.Views.Links.txtDontShowTof": "Չցուցադրել բովանդակության աղյուսակում",
"DE.Views.Links.txtLevel": "Մակարդակ ",
+ "DE.Views.ListIndentsDialog.textSpace": "Բացատ",
+ "DE.Views.ListIndentsDialog.textTab": "Սյունատի գրանշան",
+ "DE.Views.ListIndentsDialog.textTitle": "Ցուցակի նահանջները",
+ "DE.Views.ListIndentsDialog.txtFollowBullet": "Հետևել պարբերակին",
+ "DE.Views.ListIndentsDialog.txtFollowNumber": "Հետևել համարին",
+ "DE.Views.ListIndentsDialog.txtIndent": "Տեքստի նահանջ",
+ "DE.Views.ListIndentsDialog.txtNone": "Ոչ մեկը",
+ "DE.Views.ListIndentsDialog.txtPosBullet": "Պարբերակների դիրք",
+ "DE.Views.ListIndentsDialog.txtPosNumber": "Համարի դիրք",
"DE.Views.ListSettingsDialog.textAuto": "Ինքնաշխատ",
+ "DE.Views.ListSettingsDialog.textBold": "Թավ",
"DE.Views.ListSettingsDialog.textCenter": "Կենտրոնով",
+ "DE.Views.ListSettingsDialog.textHide": "Թաքցնել կարգավորումները",
+ "DE.Views.ListSettingsDialog.textItalic": "Շեղ",
"DE.Views.ListSettingsDialog.textLeft": "Ձախ",
"DE.Views.ListSettingsDialog.textLevel": "Մակարդակ ",
+ "DE.Views.ListSettingsDialog.textMore": "Ցույց տալ ավելի շատ կարգավորումներ",
"DE.Views.ListSettingsDialog.textPreview": "Նախադիտել",
"DE.Views.ListSettingsDialog.textRight": "Աջ",
+ "DE.Views.ListSettingsDialog.textSelectLevel": "Ընտրել մակարդակը",
+ "DE.Views.ListSettingsDialog.textSpace": "Բացատ",
+ "DE.Views.ListSettingsDialog.textTab": "Սյունատի գրանշան",
"DE.Views.ListSettingsDialog.txtAlign": "Հավասարեցում",
+ "DE.Views.ListSettingsDialog.txtAlignAt": "Հետևյալում",
"DE.Views.ListSettingsDialog.txtBullet": "Կետանշան",
"DE.Views.ListSettingsDialog.txtColor": "Գույն",
+ "DE.Views.ListSettingsDialog.txtFollow": "Հետևել համարին",
+ "DE.Views.ListSettingsDialog.txtFontName": "Տառատեսակ ",
+ "DE.Views.ListSettingsDialog.txtInclcudeLevel": "Ներառել մակարդակի համարը",
+ "DE.Views.ListSettingsDialog.txtIndent": "Տեքստի նահանջ",
"DE.Views.ListSettingsDialog.txtLikeText": "Ինչպես տեքստում",
+ "DE.Views.ListSettingsDialog.txtMoreTypes": "Ավելի շատ տեսակներ",
"DE.Views.ListSettingsDialog.txtNewBullet": "Նոր պարբերակ",
"DE.Views.ListSettingsDialog.txtNone": "Ոչ մեկը",
+ "DE.Views.ListSettingsDialog.txtNumFormatString": "Թվերի ձևաչափ",
+ "DE.Views.ListSettingsDialog.txtRestart": "Վերագործարկել ցուցակը",
"DE.Views.ListSettingsDialog.txtSize": "Չափ",
+ "DE.Views.ListSettingsDialog.txtStart": "Մեկնարկել",
"DE.Views.ListSettingsDialog.txtSymbol": "Նշան",
"DE.Views.ListSettingsDialog.txtTabStop": "Ավելացնելսյունատի կանգ",
"DE.Views.ListSettingsDialog.txtTitle": "Ցանկի կարգավորումներ",
"DE.Views.ListSettingsDialog.txtType": "Տեսակ",
+ "DE.Views.ListTypesAdvanced.labelSelect": "Ընտրել ցուցակի տեսակը",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "ՈՒղարկել",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Թեմա",
@@ -2701,7 +2739,11 @@
"DE.Views.PrintWithPreview.textMarginsUsNormal": "ԱՄՆ նորմալ",
"DE.Views.PrintWithPreview.textMarginsWide": "Լայն",
"DE.Views.PrintWithPreview.txtAllPages": "Բոլոր էջեր",
+ "DE.Views.PrintWithPreview.txtBothSides": "Տպել երկու կողմից",
+ "DE.Views.PrintWithPreview.txtBothSidesLongDesc": "Շրջել էջերը երկար եզրով",
+ "DE.Views.PrintWithPreview.txtBothSidesShortDesc": "Շրջել էջերը կարճ եզրով",
"DE.Views.PrintWithPreview.txtBottom": "Ներքև",
+ "DE.Views.PrintWithPreview.txtCopies": "Պատճեններ",
"DE.Views.PrintWithPreview.txtCurrentPage": "Ընթացիկ էջ",
"DE.Views.PrintWithPreview.txtCustom": "Հարմարեցված",
"DE.Views.PrintWithPreview.txtCustomPages": "Հարմարեցված տպագրություն",
@@ -2709,6 +2751,8 @@
"DE.Views.PrintWithPreview.txtLeft": "Ձախ",
"DE.Views.PrintWithPreview.txtMargins": "Լուսանցքներ",
"DE.Views.PrintWithPreview.txtOf": "{0}-ից",
+ "DE.Views.PrintWithPreview.txtOneSide": "Տպել միակողմանի",
+ "DE.Views.PrintWithPreview.txtOneSideDesc": "Տպել միայն էջի մի կողմում",
"DE.Views.PrintWithPreview.txtPage": "Էջ",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Էջի համարն անվավեր է",
"DE.Views.PrintWithPreview.txtPageOrientation": "Էջի կողմնորոշում",
@@ -2718,6 +2762,7 @@
"DE.Views.PrintWithPreview.txtPrint": "Տպել",
"DE.Views.PrintWithPreview.txtPrintPdf": "Տպել PDF-ով",
"DE.Views.PrintWithPreview.txtPrintRange": "Տպման տիրույթ",
+ "DE.Views.PrintWithPreview.txtPrintSides": "Տպել կողմերը",
"DE.Views.PrintWithPreview.txtRight": "Աջ",
"DE.Views.PrintWithPreview.txtSelection": "Ընտրություն",
"DE.Views.PrintWithPreview.txtTop": "Վերև",
@@ -2753,7 +2798,6 @@
"DE.Views.RoleEditDlg.textNoHighlight": "Առանց գունանշման",
"DE.Views.RoleEditDlg.txtTitleEdit": "Խմբագրել դերը",
"DE.Views.RoleEditDlg.txtTitleNew": "Ստեղծել նոր դեր",
- "DE.Views.RolesManagerDlg.closeButtonText": "Փակել",
"DE.Views.RolesManagerDlg.textAnyone": "Յուրաքանչյուրը",
"DE.Views.RolesManagerDlg.textDelete": "Ջնջել",
"DE.Views.RolesManagerDlg.textDeleteLast": "Համոզվա՞ծ եք, որ ցանկանում եք ջնջել {0} դերը: Մեկ անգամ ջնջվելուց հետո, առաջադրված դերը կստեղծվի:",
@@ -3210,6 +3254,7 @@
"DE.Views.Toolbar.textSuperscript": "Վերգիր",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Հեռացնել ընթացիկ պարբերության համար",
"DE.Views.Toolbar.textTabCollaboration": "Համագործակցում",
+ "DE.Views.Toolbar.textTabDraw": "Նկարել",
"DE.Views.Toolbar.textTabFile": "Ֆայլ",
"DE.Views.Toolbar.textTabHome": "Գլխավոր",
"DE.Views.Toolbar.textTabInsert": "Զետեղել",
@@ -3256,7 +3301,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Զետեղել հորիզոնական գրվածքի տուփ",
"DE.Views.Toolbar.tipInsertImage": "Զետեղել նկար",
"DE.Views.Toolbar.tipInsertNum": "Զետեղել էջի համարը",
- "DE.Views.Toolbar.tipInsertShape": "Զետեղել պատկեր",
+ "DE.Views.Toolbar.tipInsertShape": "Զետեղել ինքնաձև",
"DE.Views.Toolbar.tipInsertSmartArt": "Զետեղել SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Տեղադրել նշան",
"DE.Views.Toolbar.tipInsertTable": "Դնել աղյուսակ",
@@ -3305,6 +3350,13 @@
"DE.Views.Toolbar.tipWatermark": "Խմբագրել ջրանշանը",
"DE.Views.Toolbar.txtDistribHor": "Հորիզոնական բաշխում",
"DE.Views.Toolbar.txtDistribVert": "Ուղղահայաց բաշխում",
+ "DE.Views.Toolbar.txtGroupBulletDoc": "Փաստաթղթի պարբերակներ",
+ "DE.Views.Toolbar.txtGroupBulletLib": "Պարբերակների դարան",
+ "DE.Views.Toolbar.txtGroupMultiDoc": "Ցուցակներ ընթացիկ փաստաթղթում",
+ "DE.Views.Toolbar.txtGroupMultiLib": "Ցուցակների դարան",
+ "DE.Views.Toolbar.txtGroupNumDoc": "Փաստաթղթերի համարակալման ձևաչափեր",
+ "DE.Views.Toolbar.txtGroupNumLib": "Համարակալումների դարան",
+ "DE.Views.Toolbar.txtGroupRecent": "Վերջերս օգտագործված",
"DE.Views.Toolbar.txtMarginAlign": "Հավասարեցնել լուսանցքին",
"DE.Views.Toolbar.txtObjectsAlign": "Հավասարեցնել ընտրված առարկաները",
"DE.Views.Toolbar.txtPageAlign": "Հավասարեցնել էջին",
diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json
index e5d055887f..ed5514ddf8 100644
--- a/apps/documenteditor/main/locale/id.json
+++ b/apps/documenteditor/main/locale/id.json
@@ -335,6 +335,7 @@
"Common.UI.ExtendedColorDialog.textNew": "Baru",
"Common.UI.ExtendedColorDialog.textRGBErr": "Input yang Anda masukkan salah. Silakan masukkan input numerik antara 0 dan 255.",
"Common.UI.HSBColorPicker.textNoColor": "Tidak ada Warna",
+ "Common.UI.InputFieldBtnCalendar.textDate": "Pilih tanggal",
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan password",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tampilkan password",
"Common.UI.SearchBar.textFind": "Temukan",
@@ -356,7 +357,8 @@
"Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah diubah oleh pengguna lain. Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.",
"Common.UI.ThemeColorPalette.textRecentColors": "Warna Terakhir",
"Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar",
- "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema",
+ "Common.UI.ThemeColorPalette.textThemeColors": "Warna tema",
+ "Common.UI.ThemeColorPalette.textTransparent": "Transparan",
"Common.UI.Themes.txtThemeClassicLight": "Terang Klasik",
"Common.UI.Themes.txtThemeContrastDark": "Gelap Kontras",
"Common.UI.Themes.txtThemeDark": "Gelap",
@@ -377,6 +379,7 @@
"Common.Utils.String.textAlt": "Alt",
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "Shift",
+ "Common.Utils.ThemeColor.txtaccent": "Aksen",
"Common.Utils.ThemeColor.txtAqua": "Aqua",
"Common.Utils.ThemeColor.txtbackground": "Latar belakang",
"Common.Utils.ThemeColor.txtBlack": "Hitam",
@@ -393,12 +396,17 @@
"Common.Utils.ThemeColor.txtGold": "Emas",
"Common.Utils.ThemeColor.txtGray": "Kelabu",
"Common.Utils.ThemeColor.txtGreen": "Hijau",
+ "Common.Utils.ThemeColor.txtIndigo": "Indigo",
"Common.Utils.ThemeColor.txtLightBlue": "Biru muda",
"Common.Utils.ThemeColor.txtLightGray": "Kelabu muda",
"Common.Utils.ThemeColor.txtLightGreen": "Hijau muda",
"Common.Utils.ThemeColor.txtLightYellow": "Kuning muda",
"Common.Utils.ThemeColor.txtRed": "Merah",
"Common.Utils.ThemeColor.txtRose": "Mawar",
+ "Common.Utils.ThemeColor.txtSkyBlue": "Biru langit",
+ "Common.Utils.ThemeColor.txttext": "Teks",
+ "Common.Utils.ThemeColor.txtWhite": "Putih",
+ "Common.Utils.ThemeColor.txtYellow": "Kuning",
"Common.Views.About.txtAddress": "alamat: ",
"Common.Views.About.txtLicensee": "PEMEGANG LISENSI",
"Common.Views.About.txtLicensor": "PEMBERI LISENSI",
@@ -416,6 +424,7 @@
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Tambahkan titik dengan spasi ganda",
"Common.Views.AutoCorrectDialog.textFLCells": "Besarkan huruf pertama di sel tabel",
"Common.Views.AutoCorrectDialog.textFLSentence": "Besarkan huruf pertama di kalimat",
+ "Common.Views.AutoCorrectDialog.textForLangFL": "Pengecualian bagi bahasa:",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet dan jalur jaringan dengan hyperlink.",
"Common.Views.AutoCorrectDialog.textHyphens": "Hyphens (--) dengan garis putus-putus (—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "AutoCorrect Matematika",
@@ -430,6 +439,7 @@
"Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal",
"Common.Views.AutoCorrectDialog.textRestore": "Pemulihan",
"Common.Views.AutoCorrectDialog.textTitle": "AutoCorrect",
+ "Common.Views.AutoCorrectDialog.textWarnAddFL": "Pengecualian hanya boleh memuat huruf besar atau kecil.",
"Common.Views.AutoCorrectDialog.textWarnAddRec": "Fungsi yang diterima harus memiliki huruf A sampai Z, huruf besar atau huruf kecil.",
"Common.Views.AutoCorrectDialog.textWarnResetFL": "Semua pengecualian yang Anda tambahkan akan dihapus dan yang sebelumnya dihapus akan dipulihkan. Apakah Anda hendak melanjutkan?",
"Common.Views.AutoCorrectDialog.textWarnResetRec": "Semua ekspresi yang Anda tambahkan akan dihilangkan dan yang sudah terhapus akan dikembalikan. Apakah Anda ingin melanjutkan?",
@@ -473,9 +483,12 @@
"Common.Views.DocumentAccessDialog.textLoading": "Memuat...",
"Common.Views.DocumentAccessDialog.textTitle": "Pengaturan berbagi",
"Common.Views.Draw.hintEraser": "Penghapus",
+ "Common.Views.Draw.hintSelect": "Pilih",
"Common.Views.Draw.txtEraser": "Penghapus",
+ "Common.Views.Draw.txtHighlighter": "Penyorot",
"Common.Views.Draw.txtMM": "mm",
"Common.Views.Draw.txtPen": "Pena",
+ "Common.Views.Draw.txtSelect": "Pilih",
"Common.Views.Draw.txtSize": "Ukuran",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor Bagan",
"Common.Views.ExternalEditor.textClose": "Tutup",
@@ -596,14 +609,14 @@
"Common.Views.ReviewChanges.txtClose": "Tutup",
"Common.Views.ReviewChanges.txtCoAuthMode": "Mode Edit Bersama",
"Common.Views.ReviewChanges.txtCombine": "Gabungkan",
- "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan Semua Komentar",
- "Common.Views.ReviewChanges.txtCommentRemCurrent": "Hilangkan Komentar Saat Ini",
- "Common.Views.ReviewChanges.txtCommentRemMy": "Hilangkan Komentar Saya",
+ "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan semua komentar",
+ "Common.Views.ReviewChanges.txtCommentRemCurrent": "Hilangkan komentar saat ini",
+ "Common.Views.ReviewChanges.txtCommentRemMy": "Hilangkan komentar saya",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Hilangkan Komentar Saya Saat Ini",
"Common.Views.ReviewChanges.txtCommentRemove": "Hapus",
"Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan",
- "Common.Views.ReviewChanges.txtCommentResolveAll": "Selesaikan Semua Komentar",
- "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Selesaikan Komentar Saat Ini",
+ "Common.Views.ReviewChanges.txtCommentResolveAll": "Selesaikan semua komentar",
+ "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Selesaikan komentar saat ini",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Selesaikan Komentar Saya",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Selesaikan Komentar Saya Saat Ini",
"Common.Views.ReviewChanges.txtCompare": "Komparasi",
@@ -737,6 +750,15 @@
"Common.Views.UserNameDialog.textDontShow": "Jangan tanya saya lagi",
"Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label tidak boleh kosong.",
+ "DE.Controllers.DocProtection.txtIsProtectedComment": "Dokumen diproteksi. Anda hanya dapat menyisipkan komentar ke dokumen ini.",
+ "DE.Controllers.DocProtection.txtIsProtectedForms": "Dokumen diproteksi. Anda hanya dapat mengisi formulir dalam dokumen ini.",
+ "DE.Controllers.DocProtection.txtIsProtectedTrack": "Dokumen diproteksi. Anda dapat menyunting dokumen ini, tapi semua perubahan akan dilacak.",
+ "DE.Controllers.DocProtection.txtIsProtectedView": "Dokumen terproteksi. Anda hanya dapat melihat dokumen ini.",
+ "DE.Controllers.DocProtection.txtWasProtectedComment": "Dokumen telah diproteksi oleh pengguna lain.\nAnda hanya dapat menyisipkan komentar ke dokumen ini.",
+ "DE.Controllers.DocProtection.txtWasProtectedForms": "Dokumen telah diproteksi oleh pengguna lain.\nAnda hanya dapat mengisi formulir dalam dokumen ini.",
+ "DE.Controllers.DocProtection.txtWasProtectedTrack": "Dokumen telah diproteksi oleh pengguna lain.\nAnda dapat menyunting dokumen ini, tapi semua perubahan akan dilacak.",
+ "DE.Controllers.DocProtection.txtWasProtectedView": "Dokumen telah diproteksi oleh pengguna lain.\nAnda hanya dapat melihat dokumen ini.",
+ "DE.Controllers.DocProtection.txtWasUnprotected": "Dokumen telah dibuka proteksinya.",
"DE.Controllers.LeftMenu.leavePageText": "Semua perubahan yang tidak tersimpan di dokumen ini akan hilang. Klik \"Batal\" lalu \"Simpan\" untuk menyimpan. Klik \"OK\" untuk membuang semua perubahan yang tidak tersimpan.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Dokumen tidak bernama",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Peringatan",
@@ -875,6 +897,7 @@
"DE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.",
"DE.Controllers.Main.textUndo": "Batalkan",
"DE.Controllers.Main.titleLicenseExp": "Lisensi kadaluwarsa",
+ "DE.Controllers.Main.titleLicenseNotActive": "Lisensi tidak aktif",
"DE.Controllers.Main.titleServerVersion": "Editor mengupdate",
"DE.Controllers.Main.titleUpdateVersion": "Versi telah diubah",
"DE.Controllers.Main.txtAbove": "di atas",
@@ -1092,8 +1115,8 @@
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Persegi Panjang Sudut Lengkung",
"DE.Controllers.Main.txtStarsRibbons": "Bintang & Pita",
"DE.Controllers.Main.txtStyle_Caption": "Caption",
- "DE.Controllers.Main.txtStyle_endnote_text": "Teks Endnote",
- "DE.Controllers.Main.txtStyle_footnote_text": "Teks Footnote",
+ "DE.Controllers.Main.txtStyle_endnote_text": "Teks catatan akhir",
+ "DE.Controllers.Main.txtStyle_footnote_text": "Teks catatan kaki",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
@@ -1134,6 +1157,8 @@
"DE.Controllers.Main.waitText": "Silahkan menunggu",
"DE.Controllers.Main.warnBrowserIE9": "Aplikasi ini tidak berjalan dengan baik di IE9. Gunakan IE10 atau versi yang terbaru.",
"DE.Controllers.Main.warnBrowserZoom": "Pengaturan pembesaran tampilan pada peramban Anda saat ini tidak didukung sepenuhnya. Silakan atur ulang ke pembesaran standar dengan menekan Ctrl+0.",
+ "DE.Controllers.Main.warnLicenseAnonymous": "Akses ditolak untuk pengguna anonim. Dokumen ini akan dibuka hanya untuk dilihat.",
+ "DE.Controllers.Main.warnLicenseBefore": "Lisensi tidak aktif. Harap hubungi administrator Anda.",
"DE.Controllers.Main.warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi admin Anda untuk mempelajari lebih lanjut.",
"DE.Controllers.Main.warnLicenseExp": "Lisensi Anda sudah kedaluwarsa. Silakan perbarui lisensi Anda dan segarkan halaman.",
"DE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa. Anda tidak memiliki akses untuk editing dokumen secara keseluruhan. Silakan hubungi admin Anda.",
@@ -1225,7 +1250,7 @@
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien binomial",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien binomial",
- "DE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung",
+ "DE.Controllers.Toolbar.txtBracket_Line": "Bilah vertikal",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Kurung Kurawal Single",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Tanda Kurung",
@@ -1302,8 +1327,8 @@
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral Kontur",
"DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral",
- "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral",
- "DE.Controllers.Toolbar.txtIntegralSubSup": "Integral",
+ "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integral volume dengan batas",
+ "DE.Controllers.Toolbar.txtIntegralSubSup": "Integral dengan batas",
"DE.Controllers.Toolbar.txtIntegralTriple": "Triple integral",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral",
@@ -1313,15 +1338,15 @@
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ko-Produk",
- "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ko-Produk",
- "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-Produk",
+ "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ko-produk dengan batas bawah",
+ "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-produk dengan batasan",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ko-Produk",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ko-Produk",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Penjumlahan",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Penjumlahan",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Penjumlahan",
- "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produk",
- "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union",
+ "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Contoh produk",
+ "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Contoh union",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee",
@@ -1333,20 +1358,20 @@
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Perpotongan",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Perpotongan",
"DE.Controllers.Toolbar.txtLargeOperator_Prod": "Produk",
- "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produk",
- "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk",
+ "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produk dengan batas bawah",
+ "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk dengan batas",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produk",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produk",
"DE.Controllers.Toolbar.txtLargeOperator_Sum": "Penjumlahan",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Penjumlahan",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Penjumlahan",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Penjumlahan",
- "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Penjumlahan",
+ "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Penjumlahan dengan batas subskrip/superskrip",
"DE.Controllers.Toolbar.txtLargeOperator_Union": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union",
- "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union",
+ "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union dengan batas subskrip/superskrip",
"DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Contoh Limit",
"DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Contoh Maksimal",
"DE.Controllers.Toolbar.txtLimitLog_Lim": "Limit",
@@ -1408,7 +1433,7 @@
"DE.Controllers.Toolbar.txtRadicalSqrt": "Akar pangkat dua",
"DE.Controllers.Toolbar.txtScriptCustom_1": "Akar",
"DE.Controllers.Toolbar.txtScriptCustom_2": "Akar",
- "DE.Controllers.Toolbar.txtScriptCustom_3": "Akar",
+ "DE.Controllers.Toolbar.txtScriptCustom_3": "x kuadrat",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Akar",
"DE.Controllers.Toolbar.txtScriptSub": "Subskrip",
"DE.Controllers.Toolbar.txtScriptSubSup": "Subskrip-SuperskripKiri",
@@ -1652,8 +1677,10 @@
"DE.Views.CrossReferenceDialog.txtTitle": "Cross-reference",
"DE.Views.CrossReferenceDialog.txtType": "Tipe referensi",
"DE.Views.CustomColumnsDialog.textColumns": "Jumlah Kolom",
+ "DE.Views.CustomColumnsDialog.textEqualWidth": "Lebar kolom sama",
"DE.Views.CustomColumnsDialog.textSeparator": "Pembagi kolom",
"DE.Views.CustomColumnsDialog.textTitle": "Kolom",
+ "DE.Views.CustomColumnsDialog.textWidth": "Lebar",
"DE.Views.DateTimeDialog.confirmDefault": "Atur format default untuk {0}: \"{1}\"",
"DE.Views.DateTimeDialog.textDefault": "Atur sesuai default",
"DE.Views.DateTimeDialog.textFormat": "Format",
@@ -1667,6 +1694,7 @@
"DE.Views.DocProtection.txtDocProtectedView": "Dokumen terproteksi. Anda hanya bisa melihat dokumen ini.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Masukkan kata sandi untuk membuka proteksi dokumen",
"DE.Views.DocProtection.txtProtectDoc": "Proteksi dokumen",
+ "DE.Views.DocProtection.txtUnlockTitle": "Buka Proteksi Dokumen",
"DE.Views.DocumentHolder.aboveText": "Di atas",
"DE.Views.DocumentHolder.addCommentText": "Tambahkan komentar",
"DE.Views.DocumentHolder.advancedDropCapText": "Pengaturan Drop Cap",
@@ -1697,8 +1725,8 @@
"DE.Views.DocumentHolder.directHText": "Horisontal",
"DE.Views.DocumentHolder.directionText": "Arah Teks",
"DE.Views.DocumentHolder.editChartText": "Edit Data",
- "DE.Views.DocumentHolder.editFooterText": "Edit Footer",
- "DE.Views.DocumentHolder.editHeaderText": "Edit Header",
+ "DE.Views.DocumentHolder.editFooterText": "Sunting kaki",
+ "DE.Views.DocumentHolder.editHeaderText": "Sunting kepala",
"DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink",
"DE.Views.DocumentHolder.eqToInlineText": "Ubah ke Sebaris",
"DE.Views.DocumentHolder.guestText": "Tamu",
@@ -1793,6 +1821,7 @@
"DE.Views.DocumentHolder.textRotate270": "Rotasi 90° Berlawanan Jarum Jam",
"DE.Views.DocumentHolder.textRotate90": "Rotasi 90° Searah Jarum Jam",
"DE.Views.DocumentHolder.textRow": "Hapus semua baris",
+ "DE.Views.DocumentHolder.textSaveAsPicture": "Simpan sebagai gambar",
"DE.Views.DocumentHolder.textSeparateList": "Pisahkan list",
"DE.Views.DocumentHolder.textSettings": "Pengaturan",
"DE.Views.DocumentHolder.textSeveral": "Beberapa Baris/Kolom",
@@ -1982,6 +2011,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo": "Info dokumen",
"DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Tampilan Web Cepat",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Memuat...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Terakhir Dimodifikasi Oleh",
@@ -2012,12 +2042,14 @@
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan password",
"DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi dokumen",
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Dengan tanda tangan",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature": "Tanda tangan yang valid telah ditambahkan ke dokumen. Dokumen terproteksi dari penyuntingan.",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "Memastikan integritas dokumen dengan menambahkan \nsuatu tanda tangan digital yang tidak tampak",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit Dokumen",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing akan menghapus tandatangan dari dokumen. Lanjutkan?",
"DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Dokumen ini dilindungi dengan password",
"DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Dokumen ini perlu ditandatangani.",
- "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Tandatangan valid sudah ditambahkan ke dokumen. Dokumen dilindungi dari editan.",
- "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Beberapa tandatangan digital di dokumen tidak valid atau tidak bisa diverifikasi. Dokumen dilindungi dari editan.",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Tandatangan valid sudah ditambahkan ke dokumen. Dokumen dilindungi dari penyuntingan.",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Beberapa tanda tangan digital di dokumen tidak valid atau tidak bisa diverifikasi. Dokumen dilindungi dari penyuntingan.",
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "Tampilkan tanda tangan",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Terapkan",
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode Edit Bersama",
@@ -2082,6 +2114,8 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Nonaktifkan semua macros dengan notifikasi",
"DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows",
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Ruang Kerja",
+ "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Unduh sebagai",
+ "DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Simpan Salinan sebagai",
"DE.Views.FormSettings.textAlways": "Selalu",
"DE.Views.FormSettings.textAnyone": "Siapa pun",
"DE.Views.FormSettings.textAspect": "Kunci aspek rasio",
@@ -2115,6 +2149,7 @@
"DE.Views.FormSettings.textGroupKey": "Satukan kunci",
"DE.Views.FormSettings.textImage": "Gambar",
"DE.Views.FormSettings.textKey": "Kunci",
+ "DE.Views.FormSettings.textLang": "Bahasa",
"DE.Views.FormSettings.textLetters": "Huruf",
"DE.Views.FormSettings.textLock": "Kunci",
"DE.Views.FormSettings.textMask": "Sebarang Masker",
@@ -2123,6 +2158,8 @@
"DE.Views.FormSettings.textNever": "tidak pernah",
"DE.Views.FormSettings.textNoBorder": "Tanpa pembatas",
"DE.Views.FormSettings.textNone": "Tidak ada",
+ "DE.Views.FormSettings.textPhone1": "Nomor Telepon (mis. (123) 456-7890)",
+ "DE.Views.FormSettings.textPhone2": "Nomor Telepon (mis. +447911123456)",
"DE.Views.FormSettings.textPlaceholder": "Placeholder",
"DE.Views.FormSettings.textRadiobox": "Tombol Radio",
"DE.Views.FormSettings.textRadioDefault": "Tombol dicentang secara baku",
@@ -2138,9 +2175,12 @@
"DE.Views.FormSettings.textTipUp": "Pindah keatas",
"DE.Views.FormSettings.textTooBig": "Gambar Terlalu Besar",
"DE.Views.FormSettings.textTooSmall": "Gambar Terlalu Kecil",
+ "DE.Views.FormSettings.textUKPassport": "Nomor Paspor Inggris (mis. 925665416)",
"DE.Views.FormSettings.textUnlock": "Buka Kunci",
+ "DE.Views.FormSettings.textUSSSN": "SSN AS (mis. 123-45-6789)",
"DE.Views.FormSettings.textValue": "Opsi Nilai",
"DE.Views.FormSettings.textWidth": "Lebar sel",
+ "DE.Views.FormSettings.textZipCodeUS": "Kode Pos AS (mis. 92663 atau 92663-1234)",
"DE.Views.FormsTab.capBtnCheckBox": "Kotak centang",
"DE.Views.FormsTab.capBtnComboBox": "Kotak combo",
"DE.Views.FormsTab.capBtnComplex": "Bidang Kompleks",
@@ -2148,6 +2188,7 @@
"DE.Views.FormsTab.capBtnDropDown": "Dropdown",
"DE.Views.FormsTab.capBtnEmail": "Alamat Email",
"DE.Views.FormsTab.capBtnImage": "Gambar",
+ "DE.Views.FormsTab.capBtnManager": "Kelola Peran",
"DE.Views.FormsTab.capBtnNext": "Ruas Berikutnya",
"DE.Views.FormsTab.capBtnPhone": "Nomor Telepon",
"DE.Views.FormsTab.capBtnPrev": "Ruas Sebelumnya",
@@ -2171,10 +2212,14 @@
"DE.Views.FormsTab.tipCheckBox": "Sisipkan kotak centang",
"DE.Views.FormsTab.tipComboBox": "Sisipkan kotak kombo",
"DE.Views.FormsTab.tipComplexField": "Sisipkan bidang kompleks",
+ "DE.Views.FormsTab.tipCreditCard": "Sisipkan nomor kartu kredit",
+ "DE.Views.FormsTab.tipDateTime": "Sisipkan tanggal dan waktu",
"DE.Views.FormsTab.tipDownloadForm": "Unduh file sebagai dokumen OFORM yang dapat diisi",
"DE.Views.FormsTab.tipDropDown": "Sisipkan list dropdown",
"DE.Views.FormsTab.tipEmailField": "Sisipkan alamat email",
+ "DE.Views.FormsTab.tipFixedText": "Sisipkan ruas teks tetap",
"DE.Views.FormsTab.tipImageField": "Sisipkan Gambar",
+ "DE.Views.FormsTab.tipManager": "Kelola Peran",
"DE.Views.FormsTab.tipNextForm": "Pergi ke ruas berikutnya",
"DE.Views.FormsTab.tipPhoneField": "Sisipkan nomor telepon",
"DE.Views.FormsTab.tipPrevForm": "Pergi ke ruas sebelumnya",
@@ -2183,6 +2228,9 @@
"DE.Views.FormsTab.tipSubmit": "Submit form",
"DE.Views.FormsTab.tipTextField": "Sisipkan ruas teks",
"DE.Views.FormsTab.tipViewForm": "Tampilkan form",
+ "DE.Views.FormsTab.tipZipCode": "Sisipkan kode pos",
+ "DE.Views.FormsTab.txtFixedDesc": "Sisipkan ruas teks tetap",
+ "DE.Views.FormsTab.txtFixedText": "Tetap",
"DE.Views.FormsTab.txtUntitled": "Tanpa Judul",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bawah Tengah",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Bawah Kiri",
@@ -2254,7 +2302,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Perataan",
"DE.Views.ImageSettingsAdvanced.textAlt": "Teks alternatif",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, shape, grafik, atau tabel.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Judul",
"DE.Views.ImageSettingsAdvanced.textAngle": "Sudut",
"DE.Views.ImageSettingsAdvanced.textArrows": "Tanda panah",
@@ -2365,16 +2413,16 @@
"DE.Views.Links.confirmDeleteFootnotes": "Apakah Anda ingin menghapus semua footnotes?",
"DE.Views.Links.confirmReplaceTOF": "Apakah Anda ingin mengubah daftar gambar yang dipilih?",
"DE.Views.Links.mniConvertNote": "Konversi Semua Catatan",
- "DE.Views.Links.mniDelFootnote": "Hapus Semua Catatan",
- "DE.Views.Links.mniInsEndnote": "Sisipkan Endnote",
- "DE.Views.Links.mniInsFootnote": "Sisipkan Footnote",
+ "DE.Views.Links.mniDelFootnote": "Hapus semua catatan",
+ "DE.Views.Links.mniInsEndnote": "Sisipkan catatan akhir",
+ "DE.Views.Links.mniInsFootnote": "Sisipkan catatan kaki",
"DE.Views.Links.mniNoteSettings": "Pengaturan Catatan",
"DE.Views.Links.textContentsRemove": "Hilangkan daftar isi",
"DE.Views.Links.textContentsSettings": "Pengaturan",
"DE.Views.Links.textConvertToEndnotes": "Konversi Semua Footnotes Menjadi Endnotes",
"DE.Views.Links.textConvertToFootnotes": "Konversi Semua Endnotes Menjadi Footnotes",
- "DE.Views.Links.textGotoEndnote": "Pergi ke Endnotes",
- "DE.Views.Links.textGotoFootnote": "Pergi ke Footnotes",
+ "DE.Views.Links.textGotoEndnote": "Pergi ke catatan akhir",
+ "DE.Views.Links.textGotoFootnote": "Pergi ke catatan kaki",
"DE.Views.Links.textSwapNotes": "Tukar Footnotes dan Endnotes",
"DE.Views.Links.textUpdateAll": "Update keseluruhan tabel",
"DE.Views.Links.textUpdatePages": "Update hanya nomor halaman",
@@ -2391,23 +2439,38 @@
"DE.Views.Links.titleUpdateTOF": "Update Daftar Gambar",
"DE.Views.Links.txtDontShowTof": "Jangan Tampilkan pada Daftar Isi",
"DE.Views.Links.txtLevel": "Level",
+ "DE.Views.ListIndentsDialog.textSpace": "Spasi",
+ "DE.Views.ListIndentsDialog.textTab": "Karakter tab",
+ "DE.Views.ListIndentsDialog.txtFollowNumber": "Ikuti angka dengan",
+ "DE.Views.ListIndentsDialog.txtIndent": "Indentasi teks",
+ "DE.Views.ListIndentsDialog.txtNone": "Nihil",
+ "DE.Views.ListIndentsDialog.txtPosBullet": "Posisi bulatan",
+ "DE.Views.ListIndentsDialog.txtPosNumber": "Posisi bilangan",
"DE.Views.ListSettingsDialog.textAuto": "Otomatis",
"DE.Views.ListSettingsDialog.textBold": "Tebal",
"DE.Views.ListSettingsDialog.textCenter": "Tengah",
+ "DE.Views.ListSettingsDialog.textHide": "Sembunyikan pengaturan",
"DE.Views.ListSettingsDialog.textItalic": "Miring",
"DE.Views.ListSettingsDialog.textLeft": "Kiri",
"DE.Views.ListSettingsDialog.textLevel": "Level",
"DE.Views.ListSettingsDialog.textPreview": "Pratinjau",
"DE.Views.ListSettingsDialog.textRight": "Kanan",
+ "DE.Views.ListSettingsDialog.textSpace": "Spasi",
+ "DE.Views.ListSettingsDialog.textTab": "Karakter tab",
"DE.Views.ListSettingsDialog.txtAlign": "Perataan",
"DE.Views.ListSettingsDialog.txtAlignAt": "pada",
"DE.Views.ListSettingsDialog.txtBullet": "Butir",
"DE.Views.ListSettingsDialog.txtColor": "Warna",
+ "DE.Views.ListSettingsDialog.txtFollow": "Ikuti angka dengan",
"DE.Views.ListSettingsDialog.txtFontName": "Fonta",
+ "DE.Views.ListSettingsDialog.txtInclcudeLevel": "Sertakan angka tingkat",
+ "DE.Views.ListSettingsDialog.txtIndent": "Indentasi Teks",
"DE.Views.ListSettingsDialog.txtLikeText": "Seperti teks",
"DE.Views.ListSettingsDialog.txtNewBullet": "Butir baru",
"DE.Views.ListSettingsDialog.txtNone": "Tidak ada",
+ "DE.Views.ListSettingsDialog.txtNumFormatString": "Format bilangan",
"DE.Views.ListSettingsDialog.txtSize": "Ukuran",
+ "DE.Views.ListSettingsDialog.txtStart": "Dimulai pada",
"DE.Views.ListSettingsDialog.txtSymbol": "Simbol",
"DE.Views.ListSettingsDialog.txtTabStop": "Tambahkan posisi tab pada",
"DE.Views.ListSettingsDialog.txtTitle": "Pengaturan daftar",
@@ -2648,6 +2711,7 @@
"DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal",
"DE.Views.PrintWithPreview.textMarginsWide": "Lebar",
"DE.Views.PrintWithPreview.txtAllPages": "Semua halaman",
+ "DE.Views.PrintWithPreview.txtBothSides": "Cetak pada kedua sisi",
"DE.Views.PrintWithPreview.txtBottom": "Bawah",
"DE.Views.PrintWithPreview.txtCopies": "Salinan",
"DE.Views.PrintWithPreview.txtCurrentPage": "Halaman saat ini",
@@ -2657,6 +2721,7 @@
"DE.Views.PrintWithPreview.txtLeft": "Kiri",
"DE.Views.PrintWithPreview.txtMargins": "Margin",
"DE.Views.PrintWithPreview.txtOf": "dari {0}",
+ "DE.Views.PrintWithPreview.txtOneSide": "Cetak satu sisi",
"DE.Views.PrintWithPreview.txtPage": "Halaman",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Nomor halaman tidak valid",
"DE.Views.PrintWithPreview.txtPageOrientation": "Orientasi halaman",
@@ -2666,6 +2731,7 @@
"DE.Views.PrintWithPreview.txtPrint": "Cetak",
"DE.Views.PrintWithPreview.txtPrintPdf": "Cetak ke PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Rentang cetak",
+ "DE.Views.PrintWithPreview.txtPrintSides": "Sisi cetak",
"DE.Views.PrintWithPreview.txtRight": "Kanan",
"DE.Views.PrintWithPreview.txtSelection": "Pilihan",
"DE.Views.PrintWithPreview.txtTop": "Atas",
@@ -2700,10 +2766,15 @@
"DE.Views.RolesManagerDlg.textDescription": "Tambahkan peran dan atur urutan para pengisi menerima dan menandatangani dokumen",
"DE.Views.RolesManagerDlg.textEdit": "Sunting",
"DE.Views.RolesManagerDlg.textNew": "Baru",
+ "DE.Views.RolesManagerDlg.txtTitle": "Kelola Peran",
+ "DE.Views.RolesManagerDlg.warnCantDelete": "Anda tidak bisa menghapus peran ini karena itu memiliki ruas terkait.",
"DE.Views.RolesManagerDlg.warnDelete": "Anda yakin hendak menghapus peran {0}?",
+ "DE.Views.SaveFormDlg.saveButtonText": "Simpan",
"DE.Views.SaveFormDlg.textAnyone": "Siapa pun",
+ "DE.Views.SaveFormDlg.textEmpty": "Tidak ada peran yang dikaitkan dengan ruas.",
+ "DE.Views.SaveFormDlg.txtTitle": "Simpan sebagai Formulir",
"DE.Views.ShapeSettings.strBackground": "Warna latar",
- "DE.Views.ShapeSettings.strChange": "Ubah Bentuk Otomatis",
+ "DE.Views.ShapeSettings.strChange": "Ubah Bentuk",
"DE.Views.ShapeSettings.strColor": "Warna",
"DE.Views.ShapeSettings.strFill": "Isi",
"DE.Views.ShapeSettings.strForeground": "Warna latar depan",
@@ -2780,8 +2851,8 @@
"DE.Views.SignatureSettings.txtEditWarning": "Editing akan menghapus tandatangan dari dokumen. Lanjutkan?",
"DE.Views.SignatureSettings.txtRemoveWarning": "Apakah Anda ingin menghilangkan tandatangan ini? Proses tidak bisa dikembalikan.",
"DE.Views.SignatureSettings.txtRequestedSignatures": "Dokumen ini perlu ditandatangani.",
- "DE.Views.SignatureSettings.txtSigned": "Tandatangan valid sudah ditambahkan ke dokumen. Dokumen dilindungi dari editan.",
- "DE.Views.SignatureSettings.txtSignedInvalid": "Beberapa tandatangan digital di dokumen tidak valid atau tidak bisa diverifikasi. Dokumen dilindungi dari editan.",
+ "DE.Views.SignatureSettings.txtSigned": "Tandatangan valid sudah ditambahkan ke dokumen. Dokumen dilindungi dari penyuntingan.",
+ "DE.Views.SignatureSettings.txtSignedInvalid": "Beberapa tanda tangan digital di dokumen tidak valid atau tidak bisa diverifikasi. Dokumen dilindungi dari penyuntingan.",
"DE.Views.Statusbar.goToPageText": "Buka Halaman",
"DE.Views.Statusbar.pageIndexText": "Halaman {0} dari {1}",
"DE.Views.Statusbar.tipFitPage": "Sesuaikan Halaman",
@@ -2794,6 +2865,10 @@
"DE.Views.Statusbar.tipZoomOut": "Perkecil",
"DE.Views.Statusbar.txtPageNumInvalid": "Nomor halaman salah",
"DE.Views.Statusbar.txtPages": "Halaman",
+ "DE.Views.Statusbar.txtSpaces": "Simbol dengan spasi",
+ "DE.Views.Statusbar.txtSymbols": "Simbol",
+ "DE.Views.Statusbar.txtWordCount": "Cacah kata",
+ "DE.Views.Statusbar.txtWords": "Kata",
"DE.Views.StyleTitleDialog.textHeader": "Buat gaya baru",
"DE.Views.StyleTitleDialog.textNextStyle": "Style paragraf berikutnya",
"DE.Views.StyleTitleDialog.textTitle": "Judul",
@@ -2905,7 +2980,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Beri spasi antar sel",
"DE.Views.TableSettingsAdvanced.textAlt": "Teks alternatif",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, shape, grafik, atau tabel.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Judul",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Teks",
"DE.Views.TableSettingsAdvanced.textAutofit": "Otomatis sesuaikan ukuran dengan konten",
@@ -3048,12 +3123,12 @@
"DE.Views.Toolbar.capImgWrapping": "Wrapping",
"DE.Views.Toolbar.mniCapitalizeWords": "Huruf Kapital Setiap Kata",
"DE.Views.Toolbar.mniCustomTable": "Sisipkan Tabel Khusus",
- "DE.Views.Toolbar.mniDrawTable": "Buat Tabel",
+ "DE.Views.Toolbar.mniDrawTable": "Buat tabel",
"DE.Views.Toolbar.mniEditControls": "Pengaturan Kontrol",
"DE.Views.Toolbar.mniEditDropCap": "Pengaturan Drop Cap",
- "DE.Views.Toolbar.mniEditFooter": "Edit Footer",
- "DE.Views.Toolbar.mniEditHeader": "Edit Header",
- "DE.Views.Toolbar.mniEraseTable": "Hapus Tabel",
+ "DE.Views.Toolbar.mniEditFooter": "Sunting kaki",
+ "DE.Views.Toolbar.mniEditHeader": "Sunting kepala",
+ "DE.Views.Toolbar.mniEraseTable": "Hapus tabel",
"DE.Views.Toolbar.mniFromFile": "Dari File",
"DE.Views.Toolbar.mniFromStorage": "Dari Penyimpanan",
"DE.Views.Toolbar.mniFromUrl": "Dari URL",
@@ -3065,8 +3140,8 @@
"DE.Views.Toolbar.mniImageFromUrl": "Gambar dari URL",
"DE.Views.Toolbar.mniInsertSSE": "Sisipkan Spreadsheet",
"DE.Views.Toolbar.mniLowerCase": "huruf kecil",
- "DE.Views.Toolbar.mniRemoveFooter": "Hapus Footer",
- "DE.Views.Toolbar.mniRemoveHeader": "Hapus Header",
+ "DE.Views.Toolbar.mniRemoveFooter": "Hapus kaki",
+ "DE.Views.Toolbar.mniRemoveHeader": "Hapus kepala",
"DE.Views.Toolbar.mniSentenceCase": "Case kalimat.",
"DE.Views.Toolbar.mniTextToTable": "Konversi Teks ke Tabel",
"DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE",
@@ -3090,11 +3165,11 @@
"DE.Views.Toolbar.textDateControl": "Tanggal",
"DE.Views.Toolbar.textDropdownControl": "List drop-down",
"DE.Views.Toolbar.textEditWatermark": "Custom Watermark",
- "DE.Views.Toolbar.textEvenPage": "Halaman Genap",
+ "DE.Views.Toolbar.textEvenPage": "Halaman genap",
"DE.Views.Toolbar.textInMargin": "Dalam Margin",
"DE.Views.Toolbar.textInsColumnBreak": "Sisipkan Break Kolom",
"DE.Views.Toolbar.textInsertPageCount": "Sisipkan nomor dari halaman",
- "DE.Views.Toolbar.textInsertPageNumber": "Sisipkan nomor halaman",
+ "DE.Views.Toolbar.textInsertPageNumber": "Sisipkan Nomor Halaman",
"DE.Views.Toolbar.textInsPageBreak": "Sisipkan Jeda Halaman",
"DE.Views.Toolbar.textInsSectionBreak": "Sisipkan Jeda Bagian",
"DE.Views.Toolbar.textInText": "Dalam Teks",
@@ -3119,7 +3194,7 @@
"DE.Views.Toolbar.textPlainControl": "Teks biasa",
"DE.Views.Toolbar.textPortrait": "Portrait",
"DE.Views.Toolbar.textRemoveControl": "Hilangkan Kontrol Konten",
- "DE.Views.Toolbar.textRemWatermark": "Hilangkan Watermark",
+ "DE.Views.Toolbar.textRemWatermark": "Hilangkan tanda air",
"DE.Views.Toolbar.textRestartEachPage": "Restart Setiap Halaman",
"DE.Views.Toolbar.textRestartEachSection": "Restart Setiap Sesi",
"DE.Views.Toolbar.textRichControl": "Rich text",
@@ -3181,8 +3256,8 @@
"DE.Views.Toolbar.tipInsertEquation": "Masukkan Persamaan",
"DE.Views.Toolbar.tipInsertHorizontalText": "Sisipkan kotak teks horizontal",
"DE.Views.Toolbar.tipInsertImage": "Sisipkan Gambar",
- "DE.Views.Toolbar.tipInsertNum": "Sisipkan Nomor Halaman",
- "DE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk Otomatis",
+ "DE.Views.Toolbar.tipInsertNum": "Sisipkan nomor halaman",
+ "DE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk",
"DE.Views.Toolbar.tipInsertSmartArt": "Sisipkan SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Sisipkan simbol",
"DE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel",
@@ -3218,6 +3293,7 @@
"DE.Views.Toolbar.tipPaste": "Tempel",
"DE.Views.Toolbar.tipPrColor": "Bayangan",
"DE.Views.Toolbar.tipPrint": "Cetak",
+ "DE.Views.Toolbar.tipPrintQuick": "Cetak cepat",
"DE.Views.Toolbar.tipRedo": "Ulangi",
"DE.Views.Toolbar.tipSave": "Simpan",
"DE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan yang Anda buat agar dapat dilihat oleh pengguna lain",
@@ -3230,6 +3306,9 @@
"DE.Views.Toolbar.tipWatermark": "Edit watermark",
"DE.Views.Toolbar.txtDistribHor": "Distribusikan Horizontal",
"DE.Views.Toolbar.txtDistribVert": "Distribusikan Vertikal",
+ "DE.Views.Toolbar.txtGroupBulletLib": "Pustaka bulatan",
+ "DE.Views.Toolbar.txtGroupNumDoc": "Format penomoran dokumen",
+ "DE.Views.Toolbar.txtGroupNumLib": "Pustaka penomoran",
"DE.Views.Toolbar.txtMarginAlign": "Rata dengan Margin",
"DE.Views.Toolbar.txtObjectsAlign": "Ratakan Objek yang Dipilih",
"DE.Views.Toolbar.txtPageAlign": "Rata dengan Halaman",
diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json
index 8ae8d1c4aa..f01634f411 100644
--- a/apps/documenteditor/main/locale/it.json
+++ b/apps/documenteditor/main/locale/it.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Avviso",
"Common.Controllers.Chat.textEnterMessage": "Inserisci il tuo messaggio qui",
+ "Common.Controllers.Desktop.hintBtnHome": "Mostra la finestra principale",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Chiudi",
"Common.Controllers.ExternalDiagramEditor.warningText": "L'oggetto è disabilitato perché un altro utente lo sta modificando.",
@@ -2006,7 +2007,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Allineamento",
"DE.Views.ImageSettingsAdvanced.textAlt": "Testo alternativo",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Descrizione",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "La rappresentazione alternativa testuale basata delle informazioni sull'oggetto visivo, che verrà letta alle persone con disabilità visive o cognitive per aiutarle a capire meglio quali informazioni ci sono nell'immagine, nella forma automatica, nel grafico o nella tabella.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "La rappresentazione alternativa testuale basata delle informazioni sull'oggetto visivo, che verrà letta alle persone con disabilità visive o cognitive per aiutarle a capire meglio quali informazioni ci sono nell'immagine, nella forma, nel grafico o nella tabella.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Titolo",
"DE.Views.ImageSettingsAdvanced.textAngle": "Angolo",
"DE.Views.ImageSettingsAdvanced.textArrows": "Frecce",
@@ -2601,7 +2602,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Consenti spaziatura tra celle",
"DE.Views.TableSettingsAdvanced.textAlt": "Testo alternativo",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Descrizione",
- "DE.Views.TableSettingsAdvanced.textAltTip": "La rappresentazione alternativa testuale basata sulle informazioni dell'oggetto visivo, verrà letta alle persone con disabilità visive o cognitive per aiutarle a capire meglio quali informazioni ci sono nell'immagine, nella forma automatica, nel grafico e nella tabella.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "La rappresentazione alternativa testuale basata sulle informazioni dell'oggetto visivo, verrà letta alle persone con disabilità visive o cognitive per aiutarle a capire meglio quali informazioni ci sono nell'immagine, nella forma, nel grafico e nella tabella.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Titolo",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Testo",
"DE.Views.TableSettingsAdvanced.textAutofit": "Adatta automaticamente al contenuto",
diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json
index b4e82efc9e..be0368b90b 100644
--- a/apps/documenteditor/main/locale/ja.json
+++ b/apps/documenteditor/main/locale/ja.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
"Common.Controllers.Chat.textEnterMessage": "ここにメッセージを挿入してください。",
+ "Common.Controllers.Desktop.hintBtnHome": "メインウィンドウを表示する",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名者",
"Common.Controllers.ExternalDiagramEditor.textClose": "閉じる",
"Common.Controllers.ExternalDiagramEditor.warningText": "他のユーザーが編集しているのためオブジェクトが無効になります。",
@@ -1171,6 +1172,7 @@
"DE.Controllers.Main.waitText": "少々お待ちください...",
"DE.Controllers.Main.warnBrowserIE9": "このアプリケーションはIE9では低機能です。IE10以上のバージョンをご使用ください。",
"DE.Controllers.Main.warnBrowserZoom": "お使いのブラウザの現在のZoomの設定は完全にはサポートされていません。Ctrl+0を押して、デフォルトのZoomにリセットしてください。",
+ "DE.Controllers.Main.warnLicenseAnonymous": "匿名ユーザーのアクセスは拒否されます。 このドキュメントは閲覧専用に開かれます。",
"DE.Controllers.Main.warnLicenseBefore": "ライセンスが無効になっています。 管理者までご連絡ください。",
"DE.Controllers.Main.warnLicenseExceeded": "%1エディターへの同時接続の制限に達しました。 このドキュメントは表示専用で開かれます。 詳細については、管理者にお問い合わせください。",
"DE.Controllers.Main.warnLicenseExp": "ライセンスの有効期限が切れています。 ライセンスを更新してページをリロードしてください。",
diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json
index c03efca8c2..bd89e69c92 100644
--- a/apps/documenteditor/main/locale/lv.json
+++ b/apps/documenteditor/main/locale/lv.json
@@ -54,7 +54,7 @@
"Common.Controllers.ReviewChanges.textParaInserted": "Ievietota rindkopa",
"Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Align right",
- "Common.Controllers.ReviewChanges.textShape": "Shape",
+ "Common.Controllers.ReviewChanges.textShape": "Forma",
"Common.Controllers.ReviewChanges.textShd": "Background color",
"Common.Controllers.ReviewChanges.textSmallCaps": "Small caps",
"Common.Controllers.ReviewChanges.textSpacing": "Spacing",
@@ -1328,7 +1328,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment",
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternatīvs teksts",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Apraksts",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redzes vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, automātiskajā figūrā, diagrammā vai tabulā.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redzes vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, figūrā, diagrammā vai tabulā.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Nosaukums",
"DE.Views.ImageSettingsAdvanced.textAngle": "Leņķis",
"DE.Views.ImageSettingsAdvanced.textArrows": "Arrows",
@@ -1814,7 +1814,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Atļaut atstarpes starp šūnām",
"DE.Views.TableSettingsAdvanced.textAlt": "Alternatīvs teksts",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Apraksts",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redzes vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, automātiskajā figūrā, diagrammā vai tabulā.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redzes vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, figūrā, diagrammā vai tabulā.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Nosaukums",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Automatically resize to fit contents",
diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json
index 4756ed9d25..e62e251cb5 100644
--- a/apps/documenteditor/main/locale/ms.json
+++ b/apps/documenteditor/main/locale/ms.json
@@ -220,7 +220,7 @@
"Common.Views.About.txtLicensor": "PEMBERI LESEN",
"Common.Views.About.txtMail": "e-mel: ",
"Common.Views.About.txtPoweredBy": "Dikuasakan oleh",
- "Common.Views.About.txtTel": "Tel.:",
+ "Common.Views.About.txtTel": "tel.:",
"Common.Views.About.txtVersion": "Versi ",
"Common.Views.AutoCorrectDialog.textAdd": "Tambah",
"Common.Views.AutoCorrectDialog.textApplyText": "Guna Semasa Anda Menaip",
diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json
index 9b0f6a7c17..59536d6d07 100644
--- a/apps/documenteditor/main/locale/nl.json
+++ b/apps/documenteditor/main/locale/nl.json
@@ -249,7 +249,7 @@
"Common.Views.About.txtLicensor": "LICENTIEVERLENER",
"Common.Views.About.txtMail": "e-mail:",
"Common.Views.About.txtPoweredBy": "Aangedreven door",
- "Common.Views.About.txtTel": "Tel.:",
+ "Common.Views.About.txtTel": "tel.:",
"Common.Views.About.txtVersion": "Versie",
"Common.Views.AutoCorrectDialog.textAdd": "Toevoegen",
"Common.Views.AutoCorrectDialog.textApplyText": "Toepassen terwijl u typt",
@@ -2017,7 +2017,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Uitlijning",
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternatieve tekst",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Beschrijving",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, Vorm, grafiek of tabel.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Titel",
"DE.Views.ImageSettingsAdvanced.textAngle": "Hoek",
"DE.Views.ImageSettingsAdvanced.textArrows": "Pijlen",
@@ -2404,7 +2404,7 @@
"DE.Views.RolesManagerDlg.warnDelete": "Weet u zeker dat u de rol {0} wilt verwijderen?",
"DE.Views.SaveFormDlg.textAnyone": "Iedereen",
"DE.Views.ShapeSettings.strBackground": "Achtergrondkleur",
- "DE.Views.ShapeSettings.strChange": "AutoVorm wijzigen",
+ "DE.Views.ShapeSettings.strChange": "Vorm wijzigen",
"DE.Views.ShapeSettings.strColor": "Kleur",
"DE.Views.ShapeSettings.strFill": "Vulling",
"DE.Views.ShapeSettings.strForeground": "Voorgrondkleur",
@@ -2600,7 +2600,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Afstand tussen cellen",
"DE.Views.TableSettingsAdvanced.textAlt": "Alternatieve tekst",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Beschrijving",
- "DE.Views.TableSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, Vorm, grafiek of tabel.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Titel",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Tekst",
"DE.Views.TableSettingsAdvanced.textAutofit": "Automatisch aanpassen aan de inhoud",
@@ -2873,7 +2873,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Vergelijking invoegen",
"DE.Views.Toolbar.tipInsertImage": "Afbeelding invoegen",
"DE.Views.Toolbar.tipInsertNum": "Paginanummer invoegen",
- "DE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen",
+ "DE.Views.Toolbar.tipInsertShape": "Vorm invoegen",
"DE.Views.Toolbar.tipInsertSymbol": "Invoegen symbool",
"DE.Views.Toolbar.tipInsertTable": "Tabel invoegen",
"DE.Views.Toolbar.tipInsertText": "Tekstvak invoegen",
diff --git a/apps/documenteditor/main/locale/no.json b/apps/documenteditor/main/locale/no.json
index 23aced32b1..42fb09b015 100644
--- a/apps/documenteditor/main/locale/no.json
+++ b/apps/documenteditor/main/locale/no.json
@@ -933,7 +933,7 @@
"DE.Views.SaveFormDlg.saveButtonText": "Lagre",
"DE.Views.SaveFormDlg.textAnyone": "Hvemsomhelst",
"DE.Views.ShapeSettings.strBackground": "Bakgrunnsfarge",
- "DE.Views.ShapeSettings.strChange": "Endre autofigur",
+ "DE.Views.ShapeSettings.strChange": "Endre figur",
"DE.Views.ShapeSettings.strColor": "Farge",
"DE.Views.ShapeSettings.strSize": "Størrelse",
"DE.Views.ShapeSettings.strTransparency": "Opasitet",
diff --git a/apps/documenteditor/main/locale/pt-pt.json b/apps/documenteditor/main/locale/pt-pt.json
index 9283b7930b..2440a07754 100644
--- a/apps/documenteditor/main/locale/pt-pt.json
+++ b/apps/documenteditor/main/locale/pt-pt.json
@@ -2038,7 +2038,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alinhamento",
"DE.Views.ImageSettingsAdvanced.textAlt": "Texto alternativo",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Descrição",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma, gráfico ou tabela existe na imagem.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Título",
"DE.Views.ImageSettingsAdvanced.textAngle": "Ângulo",
"DE.Views.ImageSettingsAdvanced.textArrows": "Setas",
@@ -2448,7 +2448,7 @@
"DE.Views.RolesManagerDlg.textAnyone": "Alguém",
"DE.Views.SaveFormDlg.textAnyone": "Alguém",
"DE.Views.ShapeSettings.strBackground": "Cor de fundo",
- "DE.Views.ShapeSettings.strChange": "Alterar forma automática",
+ "DE.Views.ShapeSettings.strChange": "Alterar forma",
"DE.Views.ShapeSettings.strColor": "Cor",
"DE.Views.ShapeSettings.strFill": "Preencher",
"DE.Views.ShapeSettings.strForeground": "Cor principal",
@@ -2649,7 +2649,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Permitir espaçamento entre células",
"DE.Views.TableSettingsAdvanced.textAlt": "Texto alternativo",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Descrição",
- "DE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma, gráfico ou tabela existe na imagem.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Título",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Тexto",
"DE.Views.TableSettingsAdvanced.textAutofit": "Redimensionar automaticamente para se ajustar ao conteúdo",
@@ -2925,7 +2925,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Inserir caixa de texto horizontal",
"DE.Views.Toolbar.tipInsertImage": "Inserir imagem",
"DE.Views.Toolbar.tipInsertNum": "Inserir número da página",
- "DE.Views.Toolbar.tipInsertShape": "Inserir forma automática",
+ "DE.Views.Toolbar.tipInsertShape": "Inserir forma",
"DE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo",
"DE.Views.Toolbar.tipInsertTable": "Inserir tabela",
"DE.Views.Toolbar.tipInsertText": "Inserir caixa de texto",
diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json
index bfae2556a0..731164fc5e 100644
--- a/apps/documenteditor/main/locale/pt.json
+++ b/apps/documenteditor/main/locale/pt.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
"Common.Controllers.Chat.textEnterMessage": "Insira sua mensagem aqui",
+ "Common.Controllers.Desktop.hintBtnHome": "Mostrar janela principal",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anônimo",
"Common.Controllers.ExternalDiagramEditor.textClose": "Fechar",
"Common.Controllers.ExternalDiagramEditor.warningText": "O objeto está desabilitado por que está sendo editado por outro usuário.",
@@ -2323,7 +2324,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alinhamento",
"DE.Views.ImageSettingsAdvanced.textAlt": "Texto Alternativo",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Descrição",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto das informações de objetos visuais, que serão lidas para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor quais informações há na imagem, autoshape, gráfico ou tabela.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto das informações de objetos visuais, que serão lidas para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor quais informações há na imagem, forma, gráfico ou tabela.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Título",
"DE.Views.ImageSettingsAdvanced.textAngle": "Ângulo",
"DE.Views.ImageSettingsAdvanced.textArrows": "Setas",
@@ -2798,7 +2799,6 @@
"DE.Views.RoleEditDlg.textNoHighlight": "Sem destaque",
"DE.Views.RoleEditDlg.txtTitleEdit": "Editar papel",
"DE.Views.RoleEditDlg.txtTitleNew": "Criar nova função",
- "DE.Views.RolesManagerDlg.closeButtonText": "Fechar",
"DE.Views.RolesManagerDlg.textAnyone": "Alguém",
"DE.Views.RolesManagerDlg.textDelete": "Excluir",
"DE.Views.RolesManagerDlg.textDeleteLast": "Tem certeza de que deseja excluir a função {0}? Depois de excluída, a função padrão será criada.",
@@ -2818,7 +2818,7 @@
"DE.Views.SaveFormDlg.textFill": "Lista de preenchimento",
"DE.Views.SaveFormDlg.txtTitle": "Salvar como formulário",
"DE.Views.ShapeSettings.strBackground": "Cor do plano de fundo",
- "DE.Views.ShapeSettings.strChange": "Alterar forma automática",
+ "DE.Views.ShapeSettings.strChange": "Alterar forma",
"DE.Views.ShapeSettings.strColor": "Cor",
"DE.Views.ShapeSettings.strFill": "Preencher",
"DE.Views.ShapeSettings.strForeground": "Cor do primeiro plano",
@@ -3025,7 +3025,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Permitir espaçamento entre células",
"DE.Views.TableSettingsAdvanced.textAlt": "Texto alternativo",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Descrição",
- "DE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação do objeto visual, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma automática, gráfico ou mesa.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação do objeto visual, que será lida para as pessoas com deficiência visual ou cognitiva para ajudá-las a entender melhor quais informações existem na imagem, forma, gráfico ou mesa.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Título",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Тexto",
"DE.Views.TableSettingsAdvanced.textAutofit": "Automaticamente redimensionado para ajustar conteúdo",
@@ -3302,7 +3302,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Inserir caixa de texto horizontal",
"DE.Views.Toolbar.tipInsertImage": "Inserir imagem",
"DE.Views.Toolbar.tipInsertNum": "Inserir número da página",
- "DE.Views.Toolbar.tipInsertShape": "Inserir forma automática",
+ "DE.Views.Toolbar.tipInsertShape": "Inserir forma",
"DE.Views.Toolbar.tipInsertSmartArt": "Inserir SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo",
"DE.Views.Toolbar.tipInsertTable": "Inserir tabela",
diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json
index aad2ab86ed..ee70361a24 100644
--- a/apps/documenteditor/main/locale/ro.json
+++ b/apps/documenteditor/main/locale/ro.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Avertisment",
"Common.Controllers.Chat.textEnterMessage": "Lăsați mesaj aici",
+ "Common.Controllers.Desktop.hintBtnHome": "Afișare fereastră principală",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonim",
"Common.Controllers.ExternalDiagramEditor.textClose": "Închidere",
"Common.Controllers.ExternalDiagramEditor.warningText": "Obiectul este dezactivat deoarece este editat de către un alt utilizator.",
@@ -2323,7 +2324,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Aliniere",
"DE.Views.ImageSettingsAdvanced.textAlt": "Text alternativ",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Descriere",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Furnizarea textului alternativ pentru conținut vizual destinat persoanelor cu deficiențe de vedere și cognitive pentru a le ajuta să înțăleagă mai bine conținutul unei imagini, forme automate, diagramei sau tabele.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Furnizarea textului alternativ pentru conținut vizual destinat persoanelor cu deficiențe de vedere și cognitive pentru a le ajuta să înțăleagă mai bine conținutul unei imagini, forme, diagramei sau tabele.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Titlu",
"DE.Views.ImageSettingsAdvanced.textAngle": "Unghi",
"DE.Views.ImageSettingsAdvanced.textArrows": "Săgeți",
@@ -2798,7 +2799,6 @@
"DE.Views.RoleEditDlg.textNoHighlight": "Fără evidențiere",
"DE.Views.RoleEditDlg.txtTitleEdit": "Editare rol",
"DE.Views.RoleEditDlg.txtTitleNew": "Creați un rol nou",
- "DE.Views.RolesManagerDlg.closeButtonText": "Închide",
"DE.Views.RolesManagerDlg.textAnyone": "Orice utilizator",
"DE.Views.RolesManagerDlg.textDelete": "Ștergere",
"DE.Views.RolesManagerDlg.textDeleteLast": "Sunteți sigur că doriți să ștergeți rolul {0}? Odată șters, va fi creat un rol implicit.",
@@ -2818,7 +2818,7 @@
"DE.Views.SaveFormDlg.textFill": "Lista de completare",
"DE.Views.SaveFormDlg.txtTitle": "Salvare ca formular",
"DE.Views.ShapeSettings.strBackground": "Culoare de fundal",
- "DE.Views.ShapeSettings.strChange": "Modificare formă automată",
+ "DE.Views.ShapeSettings.strChange": "Modificare formă",
"DE.Views.ShapeSettings.strColor": "Culoare",
"DE.Views.ShapeSettings.strFill": "Umplere",
"DE.Views.ShapeSettings.strForeground": "Culoarea de prim plan",
@@ -3025,7 +3025,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spațiere între celule",
"DE.Views.TableSettingsAdvanced.textAlt": "Text alternativ",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Descriere",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Furnizarea textului alternativ pentru conținut vizual destinat persoanelor cu deficiențe de vedere și cognitive pentru a le ajuta să înțăleagă mai bine conținutul unei imagini, forme automate, diagramei sau tabele.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Furnizarea textului alternativ pentru conținut vizual destinat persoanelor cu deficiențe de vedere și cognitive pentru a le ajuta să înțăleagă mai bine conținutul unei imagini, forme, diagramei sau tabele.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Titlu",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Redimensionarea automată cu potrivire conținut",
@@ -3302,7 +3302,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Inserare casetă text orizontală",
"DE.Views.Toolbar.tipInsertImage": "Inserare imagine",
"DE.Views.Toolbar.tipInsertNum": "Inserare număr de pagină",
- "DE.Views.Toolbar.tipInsertShape": "Inserare formă automată",
+ "DE.Views.Toolbar.tipInsertShape": "Inserare formă",
"DE.Views.Toolbar.tipInsertSmartArt": "Inserare SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Inserare simbol",
"DE.Views.Toolbar.tipInsertTable": "Inserare tabel",
diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json
index f679e12244..1592282648 100644
--- a/apps/documenteditor/main/locale/ru.json
+++ b/apps/documenteditor/main/locale/ru.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Предупреждение",
"Common.Controllers.Chat.textEnterMessage": "Введите здесь своё сообщение",
+ "Common.Controllers.Desktop.hintBtnHome": "Показать главное окно",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Аноним",
"Common.Controllers.ExternalDiagramEditor.textClose": "Закрыть",
"Common.Controllers.ExternalDiagramEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.",
@@ -2323,7 +2324,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Выравнивание",
"DE.Views.ImageSettingsAdvanced.textAlt": "Альтернативный текст",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Описание",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, фигура, диаграмма или таблица.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Заголовок",
"DE.Views.ImageSettingsAdvanced.textAngle": "Угол",
"DE.Views.ImageSettingsAdvanced.textArrows": "Стрелки",
@@ -2798,7 +2799,6 @@
"DE.Views.RoleEditDlg.textNoHighlight": "Без подсветки",
"DE.Views.RoleEditDlg.txtTitleEdit": "Редактировать роль",
"DE.Views.RoleEditDlg.txtTitleNew": "Создать новую роль",
- "DE.Views.RolesManagerDlg.closeButtonText": "Закрыть",
"DE.Views.RolesManagerDlg.textAnyone": "Любой",
"DE.Views.RolesManagerDlg.textDelete": "Удалить",
"DE.Views.RolesManagerDlg.textDeleteLast": "Вы действительно хотите удалить роль {0}? После удаления будет создана роль по умолчанию.",
@@ -2818,7 +2818,7 @@
"DE.Views.SaveFormDlg.textFill": "Список заполнения",
"DE.Views.SaveFormDlg.txtTitle": "Сохранить как форму",
"DE.Views.ShapeSettings.strBackground": "Цвет фона",
- "DE.Views.ShapeSettings.strChange": "Изменить автофигуру",
+ "DE.Views.ShapeSettings.strChange": "Изменить фигуру",
"DE.Views.ShapeSettings.strColor": "Цвет",
"DE.Views.ShapeSettings.strFill": "Заливка",
"DE.Views.ShapeSettings.strForeground": "Цвет переднего плана",
@@ -3025,7 +3025,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Интервалы между ячейками",
"DE.Views.TableSettingsAdvanced.textAlt": "Альтернативный текст",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Описание",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, фигура, диаграмма или таблица.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Заголовок",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Текста",
"DE.Views.TableSettingsAdvanced.textAutofit": "Автоподбор размеров по содержимому",
@@ -3302,7 +3302,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "Вставить горизонтальную надпись",
"DE.Views.Toolbar.tipInsertImage": "Вставить изображение",
"DE.Views.Toolbar.tipInsertNum": "Вставить номер страницы",
- "DE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
+ "DE.Views.Toolbar.tipInsertShape": "Вставить фигуру",
"DE.Views.Toolbar.tipInsertSmartArt": "Вставить SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Вставить символ",
"DE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
diff --git a/apps/documenteditor/main/locale/si.json b/apps/documenteditor/main/locale/si.json
index 10b047fb3c..13c837a085 100644
--- a/apps/documenteditor/main/locale/si.json
+++ b/apps/documenteditor/main/locale/si.json
@@ -1,6 +1,7 @@
{
"Common.Controllers.Chat.notcriticalErrorTitle": "අවවාදයයි",
"Common.Controllers.Chat.textEnterMessage": "ඔබගේ පණිවිඩය මෙතැන යොදන්න",
+ "Common.Controllers.Desktop.hintBtnHome": "ප්රධාන කවුළුව පෙන්වන්න",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "නිර්නාමික",
"Common.Controllers.ExternalDiagramEditor.textClose": "වසන්න",
"Common.Controllers.ExternalDiagramEditor.warningText": "වස්තුව වෙනත් පරිශීලකයෙකු විසින් සංස්කරණය කරන බැවින් එය අබල කර ඇත.",
@@ -118,6 +119,9 @@
"Common.define.chartData.textPie": "පී",
"Common.define.chartData.textPie3d": "ත්රිමාණ පී",
"Common.define.chartData.textPoint": "XY (විහිදුම)",
+ "Common.define.chartData.textRadar": "රේඩාර්",
+ "Common.define.chartData.textRadarFilled": "පිරුණු රේඩාර්",
+ "Common.define.chartData.textRadarMarker": "සලකුණුකාරක සහිත රේඩාර්",
"Common.define.chartData.textScatter": "විසිරණය",
"Common.define.chartData.textScatterLine": "සරල රේඛා සමඟ අතුරන්න",
"Common.define.chartData.textScatterLineMarker": "සරල රේඛා සහ සලකුණු සමඟ අතුරන්න",
@@ -380,21 +384,27 @@
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "මාරුව",
"Common.Utils.ThemeColor.txtaccent": "උදාත්තය",
+ "Common.Utils.ThemeColor.txtAqua": "හරිත නිල්",
"Common.Utils.ThemeColor.txtbackground": "පසුබිම",
"Common.Utils.ThemeColor.txtBlack": "කළු",
"Common.Utils.ThemeColor.txtBlue": "නිල්",
"Common.Utils.ThemeColor.txtBrightGreen": "දීප්තිමත් කොළ",
"Common.Utils.ThemeColor.txtBrown": "දුඹුරු",
"Common.Utils.ThemeColor.txtDarkBlue": "තද නිල්",
+ "Common.Utils.ThemeColor.txtDarker": "තද අඳුරු",
"Common.Utils.ThemeColor.txtDarkGray": "තද අළු",
"Common.Utils.ThemeColor.txtDarkGreen": "තද කොළ",
"Common.Utils.ThemeColor.txtDarkPurple": "තද දම්",
"Common.Utils.ThemeColor.txtDarkRed": "තද රතු",
+ "Common.Utils.ThemeColor.txtDarkTeal": "අඳුරු ටීල්",
"Common.Utils.ThemeColor.txtDarkYellow": "තද කහ",
"Common.Utils.ThemeColor.txtGold": "රන්",
"Common.Utils.ThemeColor.txtGray": "අළු",
"Common.Utils.ThemeColor.txtGreen": "කොළ",
+ "Common.Utils.ThemeColor.txtIndigo": "අවරිය",
+ "Common.Utils.ThemeColor.txtLavender": "මධ්ය දම්",
"Common.Utils.ThemeColor.txtLightBlue": "ලා නිල්",
+ "Common.Utils.ThemeColor.txtLighter": "තද දීප්ත",
"Common.Utils.ThemeColor.txtLightGray": "ලා අළු",
"Common.Utils.ThemeColor.txtLightGreen": "ලා කොළ",
"Common.Utils.ThemeColor.txtLightOrange": "ලා තැඹිලි",
@@ -405,14 +415,17 @@
"Common.Utils.ThemeColor.txtRed": "රතු",
"Common.Utils.ThemeColor.txtRose": "රෝස",
"Common.Utils.ThemeColor.txtSkyBlue": "අහස් නිල",
+ "Common.Utils.ThemeColor.txtTeal": "ටීල්",
"Common.Utils.ThemeColor.txttext": "පෙළ",
+ "Common.Utils.ThemeColor.txtTurquosie": "නීලමණි",
+ "Common.Utils.ThemeColor.txtViolet": "ජම්බූල",
"Common.Utils.ThemeColor.txtWhite": "සුදු",
"Common.Utils.ThemeColor.txtYellow": "කහ",
"Common.Views.About.txtAddress": "ලිපිනය:",
"Common.Views.About.txtLicensee": "බලපත්රය",
"Common.Views.About.txtLicensor": "බලපත්රදායකයා",
"Common.Views.About.txtMail": "වි-තැපෑල:",
- "Common.Views.About.txtPoweredBy": "මගින් බලගැන්වේ",
+ "Common.Views.About.txtPoweredBy": "බලගන්වන්නේ",
"Common.Views.About.txtTel": "දු.ක.:",
"Common.Views.About.txtVersion": "අනුවාදය",
"Common.Views.AutoCorrectDialog.textAdd": "එකතු කරන්න",
@@ -487,7 +500,9 @@
"Common.Views.Draw.hintEraser": "මකනය",
"Common.Views.Draw.hintSelect": "තෝරන්න",
"Common.Views.Draw.txtEraser": "මකනය",
+ "Common.Views.Draw.txtHighlighter": "උද්දීපකය",
"Common.Views.Draw.txtMM": "මි.මී.",
+ "Common.Views.Draw.txtPen": "පෑන",
"Common.Views.Draw.txtSelect": "තෝරන්න",
"Common.Views.Draw.txtSize": "ප්රමාණය",
"Common.Views.ExternalDiagramEditor.textTitle": "ප්රස්තාරය සංස්කරකය",
@@ -1016,7 +1031,7 @@
"DE.Controllers.Main.txtShape_flowChartMagneticTape": "ගැලීම් සටහන: අනුක්රමික ප්රවේශ ආචයනය",
"DE.Controllers.Main.txtShape_flowChartManualInput": "ගැලීම් සටහන: අතින් ආදානය ",
"DE.Controllers.Main.txtShape_flowChartManualOperation": "ගැලීම් සටහන: අතින් මෙහෙයුම",
- "DE.Controllers.Main.txtShape_flowChartMerge": "ගැලීම් සටහන: සංයුක්ත",
+ "DE.Controllers.Main.txtShape_flowChartMerge": "ගැලීම් සටහන: ඒකාබද්ධ",
"DE.Controllers.Main.txtShape_flowChartMultidocument": "ගැලීම් සටහන: බහුලේඛන",
"DE.Controllers.Main.txtShape_flowChartOffpageConnector": "ගැලීම් සටහන: බැහැර පිටු සම්බන්ධකය",
"DE.Controllers.Main.txtShape_flowChartOnlineStorage": "ගැලීම් සටහන: ගබඩා කළ දත්ත",
@@ -1148,7 +1163,7 @@
"DE.Controllers.Main.unsupportedBrowserErrorText": "ඔබගේ වියමන අතිරික්සුව සහාය නොදක්වයි.",
"DE.Controllers.Main.uploadDocExtMessage": "නොදන්නා ලේඛනයක ආකෘතියකි.",
"DE.Controllers.Main.uploadDocFileCountMessage": "උඩුගත කිරීමට ලේඛන නැත.",
- "DE.Controllers.Main.uploadDocSizeMessage": "ලේඛනයේ උපරිම ප්රමාණයේ සීමාව ඉක්මවිය.",
+ "DE.Controllers.Main.uploadDocSizeMessage": "ලේඛනයක උපරිම ප්රමාණයේ සීමාව ඉක්මවිය.",
"DE.Controllers.Main.uploadImageExtMessage": "නොදන්නා අනුරුවක ආකෘතියකි.",
"DE.Controllers.Main.uploadImageFileCountMessage": "අනුරුවක් උඩුගත කර නැත.",
"DE.Controllers.Main.uploadImageSizeMessage": "අනුරුව ඉතා විශාලට. උ. ප්රමාණය මෙ.බ. 25.",
@@ -1157,6 +1172,7 @@
"DE.Controllers.Main.waitText": "කරුණාකර, රැඳෙන්න...",
"DE.Controllers.Main.warnBrowserIE9": "යෙදුම IE9 හි අඩු ක්රියාකාරිත්වයක් ඇත. IE10 හෝ නව අනුවාද භාවිතා කරන්න",
"DE.Controllers.Main.warnBrowserZoom": "ඔබගේ අතිරික්සුවෙහි වත්මන් විශාලන සැකසුම් පූර්ණ වශයෙන් සහාය නොදක්වයි. කරුණාකර Ctrl+0 එබීමෙන් පෙරනිමි විශාලනයට යළි සකන්න.",
+ "DE.Controllers.Main.warnLicenseAnonymous": "නිර්නාමික පරිශ්රීලකයින් සඳහා ප්රවේශය ප්රතික්ෂේපිතයි. මෙම ලේඛනය දැකීමට පමණක් විවෘත වනු ඇත.",
"DE.Controllers.Main.warnLicenseBefore": "බලපත්රය සක්රිය නැත. කරුණාකර ඔබගේ පරිපාලක අමතන්න.",
"DE.Controllers.Main.warnLicenseExceeded": "ඔබ %1 සංස්කරක වෙත සමකාල සම්බන්ධතා සීමාවට පැමිණ ඇත. මෙම ලේඛනය දැකීමට පමණක් විවෘත වේ. තව දැන ගැනීමට ඔබගේ පරිපාලක අමතන්න.",
"DE.Controllers.Main.warnLicenseExp": "ඔබගේ බලපත්රය කල් ඉකුත්ව ඇත. බලපත්රය යාවත්කාල කර පිටුව නැවුම් කරන්න.",
@@ -1798,6 +1814,7 @@
"DE.Views.DocumentHolder.textFromFile": "ගොනුවකින්",
"DE.Views.DocumentHolder.textFromStorage": "ආචයනය වෙතින්",
"DE.Views.DocumentHolder.textFromUrl": "ඒ.ස.නි. වෙතින්",
+ "DE.Views.DocumentHolder.textIndents": "ලැයිස්තු එබුම් සකසන්න",
"DE.Views.DocumentHolder.textJoinList": "කලින් ලේඛනයට එක්වන්න",
"DE.Views.DocumentHolder.textLeft": "කෝෂ වමට මාරුව",
"DE.Views.DocumentHolder.textNest": "කදලු වගුව",
@@ -2125,6 +2142,7 @@
"DE.Views.FormSettings.textAutofit": "ස්වයංහැඩගැසීම",
"DE.Views.FormSettings.textBackgroundColor": "පසුබිමෙහි වර්ණය",
"DE.Views.FormSettings.textCheckbox": "හරි යෙදීම",
+ "DE.Views.FormSettings.textCheckDefault": "පෙරනිමි ලෙස තේරීමේ බොත්තම සක්රියයි",
"DE.Views.FormSettings.textColor": "දාරයේ පාට",
"DE.Views.FormSettings.textComb": "එක් එක් අකුරු සඳහා කොටු",
"DE.Views.FormSettings.textCombobox": "සංයුක්ත පෙට්ටිය",
@@ -2163,6 +2181,7 @@
"DE.Views.FormSettings.textPhone2": "දුරකථන අංකය (උදා. +447911123456)",
"DE.Views.FormSettings.textPlaceholder": "පිහිටුම් රැඳවුම",
"DE.Views.FormSettings.textRadiobox": "වෘත බොත්තම",
+ "DE.Views.FormSettings.textRadioDefault": "පෙරනිමි ලෙස බොත්තම අගුළු ලා ඇත",
"DE.Views.FormSettings.textReg": "නිත්ය වාක්යවිධිය",
"DE.Views.FormSettings.textRequired": "ඇවැසිය",
"DE.Views.FormSettings.textScale": "පරිමාණනය යුතු වන්නේ",
@@ -2305,7 +2324,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "ඉදියුම",
"DE.Views.ImageSettingsAdvanced.textAlt": "විකල්පමය පාඨය",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "සවිස්තරය",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "දෘශ්ය වස්තුවල තොරතුරු විකල්ප පාඨ මත පදනම්ව නිරූපණය, දෘෂ්ටි හෝ සංජානන දුර්වලතා ඇති පුද්ගලයින්ට රූප, ස්වයං හැඩ, ප්රස්ථාර හෝ වගුවල අඩංගු තොරතුරු වඩා හොඳින් අවබෝධ කර ගැනීමේ පහසුව සඳහා කියවනු ලැබේ.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "පෙළ මත පදනම්ව දෘශ්ය වස්තුවල තොරතුරු නිරූපණ විකල්පය මගින් දෘෂ්ටි හෝ සංජානන දුර්වලතා ඇති පුද්ගලයින්ට රූප, හැඩ, ප්රස්ථාර හෝ වගුවල අඩංගු තොරතුරු වඩා හොඳින් අවබෝධ කර ගැනීමේ පහසුව සඳහා කියවනු ලැබේ.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "සිරැසිය",
"DE.Views.ImageSettingsAdvanced.textAngle": "කෝනය",
"DE.Views.ImageSettingsAdvanced.textArrows": "ඊතල",
@@ -2443,27 +2462,48 @@
"DE.Views.Links.txtDontShowTof": "පටුනෙහි පෙන්වන්න එපා",
"DE.Views.Links.txtLevel": "මට්ටම",
"DE.Views.ListIndentsDialog.textSpace": "හිස්තැන",
+ "DE.Views.ListIndentsDialog.textTab": "පටිති අනුලකුණ",
+ "DE.Views.ListIndentsDialog.textTitle": "එබුම් ලැයිස්තුව",
+ "DE.Views.ListIndentsDialog.txtFollowBullet": "මේ සමඟ ගුලි ගෙනයන්න",
+ "DE.Views.ListIndentsDialog.txtFollowNumber": "මේ සමඟ අංක ගෙනයන්න",
+ "DE.Views.ListIndentsDialog.txtIndent": "පෙළ එබුම",
+ "DE.Views.ListIndentsDialog.txtNone": "කිසිවක් නැත",
+ "DE.Views.ListIndentsDialog.txtPosBullet": "ගුලි පිහිටුම",
+ "DE.Views.ListIndentsDialog.txtPosNumber": "අංකයේ පිහිටුම",
"DE.Views.ListSettingsDialog.textAuto": "ස්වයංක්රීය",
+ "DE.Views.ListSettingsDialog.textBold": "තද",
"DE.Views.ListSettingsDialog.textCenter": "මැද",
+ "DE.Views.ListSettingsDialog.textHide": "සැකසුම් සඟවන්න",
"DE.Views.ListSettingsDialog.textItalic": "ඇද",
"DE.Views.ListSettingsDialog.textLeft": "වම",
"DE.Views.ListSettingsDialog.textLevel": "මට්ටම",
+ "DE.Views.ListSettingsDialog.textMore": "තව සැකසුම් පෙන්වන්න",
"DE.Views.ListSettingsDialog.textPreview": "පෙරදසුන",
"DE.Views.ListSettingsDialog.textRight": "දකුණ",
+ "DE.Views.ListSettingsDialog.textSelectLevel": "මට්ටමක් තෝරන්න",
"DE.Views.ListSettingsDialog.textSpace": "හිස්තැන",
+ "DE.Views.ListSettingsDialog.textTab": "පටිති අනුලකුණ",
"DE.Views.ListSettingsDialog.txtAlign": "ඉදියුම",
+ "DE.Views.ListSettingsDialog.txtAlignAt": "හි",
"DE.Views.ListSettingsDialog.txtBullet": "ගුළිය",
"DE.Views.ListSettingsDialog.txtColor": "පාට",
+ "DE.Views.ListSettingsDialog.txtFollow": "මේ සමඟ අංක ගෙනයන්න",
"DE.Views.ListSettingsDialog.txtFontName": "මුද්රණඅකුර",
+ "DE.Views.ListSettingsDialog.txtInclcudeLevel": "මට්ටමේ අංකය යොදන්න",
+ "DE.Views.ListSettingsDialog.txtIndent": "පෙළ එබුම",
"DE.Views.ListSettingsDialog.txtLikeText": "පෙළක් ලෙස",
+ "DE.Views.ListSettingsDialog.txtMoreTypes": "තවත් වර්ග",
"DE.Views.ListSettingsDialog.txtNewBullet": "නව ගුලිය",
"DE.Views.ListSettingsDialog.txtNone": "කිසිවක් නැත",
"DE.Views.ListSettingsDialog.txtNumFormatString": "අංක ආකෘතිය",
+ "DE.Views.ListSettingsDialog.txtRestart": "ලැයිස්තුව යළි අරඹන්න",
"DE.Views.ListSettingsDialog.txtSize": "ප්රමාණය",
"DE.Views.ListSettingsDialog.txtStart": "ඇරඹෙන්නේ",
"DE.Views.ListSettingsDialog.txtSymbol": "සංකේතය",
+ "DE.Views.ListSettingsDialog.txtTabStop": "පටිත්ත නැවතුව යෙදීම",
"DE.Views.ListSettingsDialog.txtTitle": "ලේඛනයේ සැකසුම්",
"DE.Views.ListSettingsDialog.txtType": "වර්ගය",
+ "DE.Views.ListTypesAdvanced.labelSelect": "ලැයිස්තු වර්ගය තෝරන්න",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "පීඩීඑෆ්",
"DE.Views.MailMergeEmailDlg.okButtonText": "යවන්න",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "තේමාව",
@@ -2492,10 +2532,10 @@
"DE.Views.MailMergeSettings.textEmail": "වි-තැපෑල",
"DE.Views.MailMergeSettings.textFrom": "වෙතින්",
"DE.Views.MailMergeSettings.textGoToMail": "තැපෑල වෙත යන්න",
- "DE.Views.MailMergeSettings.textHighlight": "සංයුක්ත ක්ෂේත්ර තීව්රාලෝක කරන්න",
+ "DE.Views.MailMergeSettings.textHighlight": "ඒකාබද්ධ ක්ෂේත්ර තීව්රාලෝක කරන්න",
"DE.Views.MailMergeSettings.textInsertField": "ඒකාබද්ධ ක්ෂේත්රය යොදන්න",
"DE.Views.MailMergeSettings.textMaxRecepients": "උපරිම ලබන්නන් 100.",
- "DE.Views.MailMergeSettings.textMerge": "සංයුක්ත",
+ "DE.Views.MailMergeSettings.textMerge": "ඒකාබද්ධ",
"DE.Views.MailMergeSettings.textMergeFields": "ක්ෂේත්ර ඒකාබද්ධය",
"DE.Views.MailMergeSettings.textMergeTo": "වෙත ඒකාබද්ධය",
"DE.Views.MailMergeSettings.textPdf": "පීඩීඑෆ්",
@@ -2700,6 +2740,9 @@
"DE.Views.PrintWithPreview.textMarginsUsNormal": "ඇ.එ. සමාන්ය",
"DE.Views.PrintWithPreview.textMarginsWide": "පුළුල්",
"DE.Views.PrintWithPreview.txtAllPages": "සියළුම පිටු",
+ "DE.Views.PrintWithPreview.txtBothSides": "දෙපසම මුද්රණය කරන්න",
+ "DE.Views.PrintWithPreview.txtBothSidesLongDesc": "දිගු දාරය මත පිටු පෙරළන්න",
+ "DE.Views.PrintWithPreview.txtBothSidesShortDesc": "කෙටි දාරය මත පිටු පෙරළන්න",
"DE.Views.PrintWithPreview.txtBottom": "පහළ",
"DE.Views.PrintWithPreview.txtCopies": "පිටපත්",
"DE.Views.PrintWithPreview.txtCurrentPage": "වත්මන් පිටුව",
@@ -2709,6 +2752,8 @@
"DE.Views.PrintWithPreview.txtLeft": "වම",
"DE.Views.PrintWithPreview.txtMargins": "මායිම්",
"DE.Views.PrintWithPreview.txtOf": "/ {0}",
+ "DE.Views.PrintWithPreview.txtOneSide": "එක් පසක මුද්රණය කරන්න",
+ "DE.Views.PrintWithPreview.txtOneSideDesc": "පිටුවේ එක් පැත්තක පමණක් මුද්රණය කරන්න",
"DE.Views.PrintWithPreview.txtPage": "පිටුව",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "පිටු අංකය වලංගු නොවේ",
"DE.Views.PrintWithPreview.txtPageOrientation": "පිටුවේ හැඩගැස්ම",
@@ -2718,6 +2763,7 @@
"DE.Views.PrintWithPreview.txtPrint": "මුද්රණය",
"DE.Views.PrintWithPreview.txtPrintPdf": "පීඩීඑෆ් ලෙස මුද්රණය",
"DE.Views.PrintWithPreview.txtPrintRange": "මුද්රණ පරාසය",
+ "DE.Views.PrintWithPreview.txtPrintSides": "මුද්රණ පැති",
"DE.Views.PrintWithPreview.txtRight": "දකුණ",
"DE.Views.PrintWithPreview.txtSelection": "තේරීම",
"DE.Views.PrintWithPreview.txtTop": "මුදුන",
@@ -2772,7 +2818,7 @@
"DE.Views.SaveFormDlg.textFill": "පිරවීමේ ලැයිස්තුව",
"DE.Views.SaveFormDlg.txtTitle": "ආකෘතියක් ලෙස සුරකින්න",
"DE.Views.ShapeSettings.strBackground": "පසුබිමෙහි වර්ණය",
- "DE.Views.ShapeSettings.strChange": "ස්වයංහැඩගැසීම වෙනස් කරන්න",
+ "DE.Views.ShapeSettings.strChange": "හැඩය සංශෝධනය",
"DE.Views.ShapeSettings.strColor": "පාට",
"DE.Views.ShapeSettings.strFill": "පුරවන්න",
"DE.Views.ShapeSettings.strForeground": "පෙරබිමෙහි පාට",
@@ -2979,7 +3025,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "කෝෂ අතර ඉඩ",
"DE.Views.TableSettingsAdvanced.textAlt": "විකල්පමය පාඨය",
"DE.Views.TableSettingsAdvanced.textAltDescription": "සවිස්තරය",
- "DE.Views.TableSettingsAdvanced.textAltTip": "දෘශ්ය වස්තුවල තොරතුරු විකල්ප පාඨ මත පදනම්ව නිරූපණය, දෘෂ්ටි හෝ සංජානන දුර්වලතා ඇති පුද්ගලයින්ට රූප, ස්වයං හැඩ, ප්රස්ථාර හෝ වගුවල අඩංගු තොරතුරු වඩා හොඳින් අවබෝධ කර ගැනීමේ පහසුව සඳහා කියවනු ලැබේ.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "පෙළ මත පදනම්ව දෘශ්ය වස්තුවල තොරතුරු නිරූපණ විකල්පය මගින් දෘෂ්ටි හෝ සංජානන දුර්වලතා ඇති පුද්ගලයින්ට රූප, හැඩ, ප්රස්ථාර හෝ වගුවල අඩංගු තොරතුරු වඩා හොඳින් අවබෝධ කර ගැනීමේ පහසුව සඳහා කියවනු ලැබේ.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "සිරැසිය",
"DE.Views.TableSettingsAdvanced.textAnchorText": "පාඨය",
"DE.Views.TableSettingsAdvanced.textAutofit": "අන්තර්ගතයට ගැලපෙන ලෙස ස්වයංක්රීයව ප්රමාණනය",
@@ -3256,7 +3302,7 @@
"DE.Views.Toolbar.tipInsertHorizontalText": "තිරස් පෙළ පෙට්ටියක් යොදන්න",
"DE.Views.Toolbar.tipInsertImage": "අනුරුවක් ඇතුළු කරන්න",
"DE.Views.Toolbar.tipInsertNum": "පිටු අංකය යොදන්න",
- "DE.Views.Toolbar.tipInsertShape": "ස්වයංහැඩගැසීම යොදන්න",
+ "DE.Views.Toolbar.tipInsertShape": "හැඩයක් යොදන්න",
"DE.Views.Toolbar.tipInsertSmartArt": "බුහුටි කලාවක් යොදන්න",
"DE.Views.Toolbar.tipInsertSymbol": "සංකේතයක් ඇතුළු කරන්න",
"DE.Views.Toolbar.tipInsertTable": "වගුවක් ඇතුළු කරන්න",
@@ -3305,6 +3351,13 @@
"DE.Views.Toolbar.tipWatermark": "දියසලකුණ සංස්කරණය",
"DE.Views.Toolbar.txtDistribHor": "තිරස්ව පතුරන්න",
"DE.Views.Toolbar.txtDistribVert": "සිරස්ව පතුරන්න",
+ "DE.Views.Toolbar.txtGroupBulletDoc": "ලේඛන ගුලි",
+ "DE.Views.Toolbar.txtGroupBulletLib": "ගුලි එකතුව",
+ "DE.Views.Toolbar.txtGroupMultiDoc": "වත්මන් ලේඛනයේ ලැයිස්තු",
+ "DE.Views.Toolbar.txtGroupMultiLib": "ලැයිස්තු එකතුව",
+ "DE.Views.Toolbar.txtGroupNumDoc": "ලේඛන අංකන ආකෘති",
+ "DE.Views.Toolbar.txtGroupNumLib": "අංකන එකතුව",
+ "DE.Views.Toolbar.txtGroupRecent": "මෑතදී භාවිතා කළ",
"DE.Views.Toolbar.txtMarginAlign": "මායිමට පෙළගසන්න",
"DE.Views.Toolbar.txtObjectsAlign": "තේරූ වස්තූන් පෙළගසන්න",
"DE.Views.Toolbar.txtPageAlign": "පිටුවට පෙළගසන්න",
diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json
index e8a30800c8..29102acebc 100644
--- a/apps/documenteditor/main/locale/sk.json
+++ b/apps/documenteditor/main/locale/sk.json
@@ -1900,7 +1900,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Zarovnanie",
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternatívny text",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Popis",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, tvarovaní, grafe alebo tabuľke. ",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Názov",
"DE.Views.ImageSettingsAdvanced.textAngle": "Uhol",
"DE.Views.ImageSettingsAdvanced.textArrows": "Šípky",
@@ -2263,7 +2263,7 @@
"DE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky",
"DE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art",
"DE.Views.ShapeSettings.strBackground": "Farba pozadia",
- "DE.Views.ShapeSettings.strChange": "Zmeniť automatický tvar",
+ "DE.Views.ShapeSettings.strChange": "Zmeniť tvar",
"DE.Views.ShapeSettings.strColor": "Farba",
"DE.Views.ShapeSettings.strFill": "Vyplniť",
"DE.Views.ShapeSettings.strForeground": "Farba popredia",
@@ -2456,7 +2456,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Medzera medzi bunkami",
"DE.Views.TableSettingsAdvanced.textAlt": "Alternatívny text",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Popis",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, tvarovaní, grafe alebo tabuľke.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Názov",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Automaticky zmeniť veľkosť tak, aby zodpovedala obsahu",
@@ -2726,7 +2726,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Vložiť rovnicu",
"DE.Views.Toolbar.tipInsertImage": "Vložiť obrázok",
"DE.Views.Toolbar.tipInsertNum": "Vložiť číslo stránky",
- "DE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar",
+ "DE.Views.Toolbar.tipInsertShape": "Vložiť tvar",
"DE.Views.Toolbar.tipInsertSymbol": "Vložiť symbol",
"DE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku",
"DE.Views.Toolbar.tipInsertText": "Vložiť text",
diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json
index cafc2fed30..a1ab52eb2b 100644
--- a/apps/documenteditor/main/locale/sl.json
+++ b/apps/documenteditor/main/locale/sl.json
@@ -1628,7 +1628,7 @@
"DE.Views.RolesManagerDlg.textAnyone": "Vsi",
"DE.Views.SaveFormDlg.textAnyone": "Vsi",
"DE.Views.ShapeSettings.strBackground": "Barva ozadja",
- "DE.Views.ShapeSettings.strChange": "Spremeni samodejno obliko",
+ "DE.Views.ShapeSettings.strChange": "Spremeni obliko",
"DE.Views.ShapeSettings.strColor": "Barva",
"DE.Views.ShapeSettings.strFill": "Dopolni",
"DE.Views.ShapeSettings.strForeground": "Barva ospredja",
@@ -1980,7 +1980,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Vstavi enačbo",
"DE.Views.Toolbar.tipInsertImage": "Vstavi sliko",
"DE.Views.Toolbar.tipInsertNum": "Vstavi številko strani",
- "DE.Views.Toolbar.tipInsertShape": "Vstavi samodejno obliko",
+ "DE.Views.Toolbar.tipInsertShape": "Vstavi obliko",
"DE.Views.Toolbar.tipInsertSymbol": "Vstavi simbol",
"DE.Views.Toolbar.tipInsertTable": "Vstavi tabelo",
"DE.Views.Toolbar.tipInsertText": "Vstavi besedilo",
diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json
index 0d8c1dbf30..6264ccb9e4 100644
--- a/apps/documenteditor/main/locale/sv.json
+++ b/apps/documenteditor/main/locale/sv.json
@@ -258,7 +258,7 @@
"Common.Views.About.txtLicensor": "LICENSGIVARE",
"Common.Views.About.txtMail": "e-post:",
"Common.Views.About.txtPoweredBy": "Powered by",
- "Common.Views.About.txtTel": "Tel.:",
+ "Common.Views.About.txtTel": "tel.:",
"Common.Views.About.txtVersion": "Version",
"Common.Views.AutoCorrectDialog.textAdd": "Lägg till",
"Common.Views.AutoCorrectDialog.textApplyText": "Korrigera när du skriver",
@@ -2536,7 +2536,7 @@
"DE.Views.SaveFormDlg.textAnyone": "Vem som helst",
"DE.Views.SaveFormDlg.txtTitle": "Spara som formulär",
"DE.Views.ShapeSettings.strBackground": "Bakgrundsfärg",
- "DE.Views.ShapeSettings.strChange": "Ändra autoform",
+ "DE.Views.ShapeSettings.strChange": "Ändra form",
"DE.Views.ShapeSettings.strColor": "Färg",
"DE.Views.ShapeSettings.strFill": "Fylla",
"DE.Views.ShapeSettings.strForeground": "Förgrundsfärg",
@@ -3007,7 +3007,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Infoga ekvation",
"DE.Views.Toolbar.tipInsertImage": "Infoga bild",
"DE.Views.Toolbar.tipInsertNum": "Infoga sidnummer",
- "DE.Views.Toolbar.tipInsertShape": "Infoga autoform",
+ "DE.Views.Toolbar.tipInsertShape": "Infoga form",
"DE.Views.Toolbar.tipInsertSymbol": "Infoga symbol",
"DE.Views.Toolbar.tipInsertTable": "Infoga tabell",
"DE.Views.Toolbar.tipInsertText": "Infoga textruta",
diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json
index f3fcdca9c8..b3f64670ce 100644
--- a/apps/documenteditor/main/locale/tr.json
+++ b/apps/documenteditor/main/locale/tr.json
@@ -1956,7 +1956,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Hiza",
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternatif Metin",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Açıklama",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Görsel nesne bilgisinin, görsel, otomatik şekil, çizelge veya tabloda hangi bilgilerin olduğunu daha iyi anlamalarına yardımcı olmak için görme veya bilişsel bozukluğu olan kişilere okunacak alternatif metin tabanlı temsili.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Görsel nesne bilgisinin, görsel, şekil, çizelge veya tabloda hangi bilgilerin olduğunu daha iyi anlamalarına yardımcı olmak için görme veya bilişsel bozukluğu olan kişilere okunacak alternatif metin tabanlı temsili.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Başlık",
"DE.Views.ImageSettingsAdvanced.textAngle": "Açı",
"DE.Views.ImageSettingsAdvanced.textArrows": "Oklar",
@@ -2331,7 +2331,7 @@
"DE.Views.RightMenu.txtTableSettings": "Tablo Ayarları",
"DE.Views.RightMenu.txtTextArtSettings": "Yazı Sanatı ayarları",
"DE.Views.ShapeSettings.strBackground": "Arka plan rengi",
- "DE.Views.ShapeSettings.strChange": "Otomatik Şeklini Değiştir",
+ "DE.Views.ShapeSettings.strChange": "Şeklini Değiştir",
"DE.Views.ShapeSettings.strColor": "Renk",
"DE.Views.ShapeSettings.strFill": "Doldur",
"DE.Views.ShapeSettings.strForeground": "Önplan rengi",
@@ -2524,7 +2524,7 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Hücreler arası aralığa izin ver",
"DE.Views.TableSettingsAdvanced.textAlt": "Alternatif Metin",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Açıklama",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Görsel nesne bilgisinin, görsel, otomatik şekil, çizelge veya tabloda hangi bilgilerin olduğunu daha iyi anlamalarına yardımcı olmak için görme veya bilişsel bozukluğu olan kişilere okunacak alternatif metin tabanlı temsili.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Görsel nesne bilgisinin, görsel, şekil, çizelge veya tabloda hangi bilgilerin olduğunu daha iyi anlamalarına yardımcı olmak için görme veya bilişsel bozukluğu olan kişilere okunacak alternatif metin tabanlı temsili.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Başlık",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Metin",
"DE.Views.TableSettingsAdvanced.textAutofit": "İçeriği sığdırmak için otomatik yeniden boyutlandır",
@@ -2753,6 +2753,7 @@
"DE.Views.Toolbar.textSuperscript": "Üstsimge",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Bu paragraf için gizle",
"DE.Views.Toolbar.textTabCollaboration": "Ortak Çalışma",
+ "DE.Views.Toolbar.textTabDraw": "Çizim",
"DE.Views.Toolbar.textTabFile": "Dosya",
"DE.Views.Toolbar.textTabHome": "Ana Sayfa",
"DE.Views.Toolbar.textTabInsert": "Ekle",
@@ -2797,7 +2798,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Insert Equation",
"DE.Views.Toolbar.tipInsertImage": "Resim ekle",
"DE.Views.Toolbar.tipInsertNum": "Sayfa numarası ekle",
- "DE.Views.Toolbar.tipInsertShape": "Otomatik Şekil ekle",
+ "DE.Views.Toolbar.tipInsertShape": "Şekil ekle",
"DE.Views.Toolbar.tipInsertSymbol": "Simge ekle",
"DE.Views.Toolbar.tipInsertTable": "Tablo ekle",
"DE.Views.Toolbar.tipInsertText": "Metin kutusu ekle",
diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json
index 652d776961..36441dd5d8 100644
--- a/apps/documenteditor/main/locale/uk.json
+++ b/apps/documenteditor/main/locale/uk.json
@@ -9,6 +9,8 @@
"Common.Controllers.ExternalMergeEditor.textClose": "Закрити",
"Common.Controllers.ExternalMergeEditor.warningText": "Об'єкт вимкнено, оскільки його редагує інший користувач.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Застереження",
+ "Common.Controllers.ExternalOleEditor.textAnonymous": "Гість",
+ "Common.Controllers.ExternalOleEditor.textClose": "Закрити",
"Common.Controllers.History.notcriticalErrorTitle": "Застереження",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Для порівняння документів всі відстежувані зміни в них будуть вважатись прийнятими. Ви бажаєте продовжити?",
"Common.Controllers.ReviewChanges.textAtLeast": "принаймн",
@@ -114,6 +116,7 @@
"Common.define.chartData.textPie": "Пиріг",
"Common.define.chartData.textPie3d": "Тривимірна кругова діаграма",
"Common.define.chartData.textPoint": "XY (розсіювання)",
+ "Common.define.chartData.textRadar": "Радар",
"Common.define.chartData.textScatter": "Точкова діаграма",
"Common.define.chartData.textScatterLine": "Точкова з прямими відрізками",
"Common.define.chartData.textScatterLineMarker": "Точкова з прямими відрізками та маркерами",
@@ -121,19 +124,32 @@
"Common.define.chartData.textScatterSmoothMarker": "Точкова з гладкими кривими та маркерами",
"Common.define.chartData.textStock": "Запас",
"Common.define.chartData.textSurface": "Поверхня",
+ "Common.define.smartArt.textBalance": "Баланс",
+ "Common.define.smartArt.textCaptionedPictures": "Зображення з підписом",
"Common.define.smartArt.textCycle": "Цикл",
+ "Common.define.smartArt.textDescendingBlockList": "Спадаючий список блоком",
+ "Common.define.smartArt.textDescendingProcess": "Спадаючий процес",
+ "Common.define.smartArt.textDetailedProcess": "Деталізований процес",
+ "Common.define.smartArt.textEquation": "Рівняння",
+ "Common.define.smartArt.textFramedTextPicture": "Зображення у рамці",
+ "Common.define.smartArt.textFunnel": "Воронка",
+ "Common.define.smartArt.textGridMatrix": "Матриця сіткою",
"Common.define.smartArt.textHierarchy": "Структура",
"Common.define.smartArt.textList": "Список",
"Common.define.smartArt.textMatrix": "Матриця",
+ "Common.define.smartArt.textOrganizationChart": "Органограма",
"Common.define.smartArt.textOther": "Інше",
"Common.define.smartArt.textPicture": "Зображення",
"Common.define.smartArt.textProcess": "Процес",
"Common.define.smartArt.textPyramid": "Піраміда",
"Common.define.smartArt.textRelationship": "Відношення",
+ "Common.Translation.textMoreButton": "Більше",
+ "Common.Translation.tipFileLocked": "Документ заблоковано для редагування. Ви можете внести зміни та зберегти його як локальну копію.",
"Common.Translation.warnFileLocked": "Ви не можете редагувати цей файл, тому що він вже редагується в іншій програмі.",
"Common.Translation.warnFileLockedBtnEdit": "Створити копію",
"Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд",
"Common.UI.ButtonColored.textAutoColor": "Автоматичний",
+ "Common.UI.ButtonColored.textEyedropper": "Піпетка",
"Common.UI.ButtonColored.textNewColor": "Новий спеціальний колір",
"Common.UI.Calendar.textApril": "Квітень",
"Common.UI.Calendar.textAugust": "Серпень",
@@ -181,6 +197,9 @@
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Показати пароль",
"Common.UI.SearchBar.textFind": "Пошук",
"Common.UI.SearchBar.tipCloseSearch": "Закрити пошук",
+ "Common.UI.SearchBar.tipNextResult": "Наступний результат",
+ "Common.UI.SearchBar.tipOpenAdvancedSettings": "Відкрити розширені налаштування",
+ "Common.UI.SearchBar.tipPreviousResult": "Попередній результат",
"Common.UI.SearchDialog.textHighlight": "Виділіть результати",
"Common.UI.SearchDialog.textMatchCase": "З урахуванням регістру",
"Common.UI.SearchDialog.textReplaceDef": "Введіть текст заміни",
@@ -196,6 +215,7 @@
"Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори",
"Common.UI.ThemeColorPalette.textThemeColors": "Колірна тема",
"Common.UI.Themes.txtThemeClassicLight": "Класична світла",
+ "Common.UI.Themes.txtThemeContrastDark": "Контрастно-чорний",
"Common.UI.Themes.txtThemeDark": "Темна",
"Common.UI.Themes.txtThemeLight": "Світла",
"Common.UI.Window.cancelButtonText": "Скасувати",
@@ -210,12 +230,30 @@
"Common.UI.Window.yesButtonText": "Так",
"Common.Utils.Metric.txtCm": "см",
"Common.Utils.Metric.txtPt": "Пт",
+ "Common.Utils.ThemeColor.txtaccent": "Акцент",
+ "Common.Utils.ThemeColor.txtAqua": "Вода",
+ "Common.Utils.ThemeColor.txtbackground": "Тло",
+ "Common.Utils.ThemeColor.txtBlack": "Чорний",
+ "Common.Utils.ThemeColor.txtBlue": "Синій",
+ "Common.Utils.ThemeColor.txtBrightGreen": "Світло-зелений",
+ "Common.Utils.ThemeColor.txtBrown": "Коричневий",
+ "Common.Utils.ThemeColor.txtDarkBlue": "Темно-синій",
+ "Common.Utils.ThemeColor.txtDarker": "Темніше",
+ "Common.Utils.ThemeColor.txtDarkGray": "Темно-сірий",
+ "Common.Utils.ThemeColor.txtDarkGreen": "Темно-зелений",
+ "Common.Utils.ThemeColor.txtDarkPurple": "Темно-пурпуровий",
+ "Common.Utils.ThemeColor.txtDarkRed": "Темно-червоний",
+ "Common.Utils.ThemeColor.txtDarkTeal": "Темно-чирокий",
+ "Common.Utils.ThemeColor.txtDarkYellow": "Темно-жовтий",
+ "Common.Utils.ThemeColor.txtGold": "Золотий",
+ "Common.Utils.ThemeColor.txtGray": "Сірий",
+ "Common.Utils.ThemeColor.txtGreen": "Зелений",
"Common.Views.About.txtAddress": "адреса:",
"Common.Views.About.txtLicensee": "ЛІЦЕНЗІЯ",
"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.AutoCorrectDialog.textAdd": "Додати",
"Common.Views.AutoCorrectDialog.textApplyText": "Застосовувати під час введення",
@@ -224,8 +262,11 @@
"Common.Views.AutoCorrectDialog.textBulleted": "Стилі маркованих списків",
"Common.Views.AutoCorrectDialog.textBy": "На",
"Common.Views.AutoCorrectDialog.textDelete": "Видалити",
+ "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Додати крапку з подвійним пропуском",
"Common.Views.AutoCorrectDialog.textFLCells": "Робити перші літери в клітинках таблиць великими",
+ "Common.Views.AutoCorrectDialog.textFLDont": "Не змінювати на велику літеру після",
"Common.Views.AutoCorrectDialog.textFLSentence": "Писати речення з великої літери",
+ "Common.Views.AutoCorrectDialog.textForLangFL": "Винятки для мови:",
"Common.Views.AutoCorrectDialog.textHyperlink": "Адреси в інтернеті та мережі гіперпосиланнями",
"Common.Views.AutoCorrectDialog.textHyphens": "Дефіси (--) на тире (—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Автозаміна математичними символами",
@@ -240,7 +281,9 @@
"Common.Views.AutoCorrectDialog.textResetAll": "Скинути налаштування",
"Common.Views.AutoCorrectDialog.textRestore": "Відновити",
"Common.Views.AutoCorrectDialog.textTitle": "Автозаміна",
+ "Common.Views.AutoCorrectDialog.textWarnAddFL": "Винятки мають містити лише літери у верхньому чи нижньому регістрі.",
"Common.Views.AutoCorrectDialog.textWarnAddRec": "Розпізнані функції повинні містити тільки прописні букви від А до Я.",
+ "Common.Views.AutoCorrectDialog.textWarnResetFL": "Всі виключення, які було додано вами, буде вилучено, а раніше вилучені - відновлено. Продовжити?",
"Common.Views.AutoCorrectDialog.textWarnResetRec": "Всі додані вирази будуть видалені, а видалені - відновлені. Ви хочете продовжити?",
"Common.Views.AutoCorrectDialog.warnReplace": "Елемент автозаміни для %1 вже існує. Ви хочете його замінити?",
"Common.Views.AutoCorrectDialog.warnReset": "Будь-які додані вами автозаміни будуть видалені, а змінені будуть відновлені до початкових. Бажаєте продовжити?",
@@ -270,7 +313,7 @@
"Common.Views.Comments.textReply": "Відповісти",
"Common.Views.Comments.textResolve": "Вирішити",
"Common.Views.Comments.textResolved": "Вирішено",
- "Common.Views.Comments.textSort": "Сортувати коментарі",
+ "Common.Views.Comments.textSort": "Впорядкувати коментарі",
"Common.Views.Comments.textViewResolved": "У вас немає прав для повторного відкриття коментарю",
"Common.Views.Comments.txtEmpty": "Відсутні коментарі у документі.",
"Common.Views.CopyWarningDialog.textDontShow": "Не показувати це повідомлення знову",
@@ -281,7 +324,13 @@
"Common.Views.CopyWarningDialog.textToPaste": "Для вставлення",
"Common.Views.DocumentAccessDialog.textLoading": "Завантаження...",
"Common.Views.DocumentAccessDialog.textTitle": "Налаштувати доступ",
- "Common.Views.ExternalDiagramEditor.textTitle": "редагування діаграми",
+ "Common.Views.Draw.hintEraser": "Стирачка",
+ "Common.Views.Draw.txtEraser": "Стирачка",
+ "Common.Views.Draw.txtHighlighter": "Маркер",
+ "Common.Views.Draw.txtMM": "мм",
+ "Common.Views.Draw.txtPen": "Ручка",
+ "Common.Views.ExternalDiagramEditor.textTitle": "Редагування діаграми",
+ "Common.Views.ExternalEditor.textClose": "Закрити",
"Common.Views.ExternalMergeEditor.textTitle": "Отримувачі ел.поштою",
"Common.Views.Header.labelCoUsersDescr": "Користувачі, що редагують документ:",
"Common.Views.Header.textAddFavorite": "Додати в обране",
@@ -297,6 +346,7 @@
"Common.Views.Header.tipDownload": "Звантажити файл",
"Common.Views.Header.tipGoEdit": "Редагувати поточний файл",
"Common.Views.Header.tipPrint": "Друк файлу",
+ "Common.Views.Header.tipPrintQuick": "Швидкий друк",
"Common.Views.Header.tipRedo": "Повторити",
"Common.Views.Header.tipSave": "Зберегти",
"Common.Views.Header.tipSearch": "Пошук",
@@ -373,6 +423,7 @@
"Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Увімкнути відстежування змін для всіх?",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Прийняти поточну зміну",
"Common.Views.ReviewChanges.tipCoAuthMode": "Встановити режим спільного редагування",
+ "Common.Views.ReviewChanges.tipCombine": "Об'єднати поточний документ з іншим",
"Common.Views.ReviewChanges.tipCommentRem": "Вилучити коментарі",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Вилучити поточні коментарі",
"Common.Views.ReviewChanges.tipCommentResolve": "Вирішити коментарі",
@@ -392,6 +443,7 @@
"Common.Views.ReviewChanges.txtChat": "Чат",
"Common.Views.ReviewChanges.txtClose": "Закрити",
"Common.Views.ReviewChanges.txtCoAuthMode": "Спільне редагування",
+ "Common.Views.ReviewChanges.txtCombine": "Об'єднати",
"Common.Views.ReviewChanges.txtCommentRemAll": "Вилучити усі коментарі",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Вилучити поточні коментарі",
"Common.Views.ReviewChanges.txtCommentRemMy": "Вилучити мої коментарі",
@@ -404,7 +456,7 @@
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Вирішити мої поточні коментарі",
"Common.Views.ReviewChanges.txtCompare": "Порівняти",
"Common.Views.ReviewChanges.txtDocLang": "Мова",
- "Common.Views.ReviewChanges.txtEditing": "редагування",
+ "Common.Views.ReviewChanges.txtEditing": "Редагування",
"Common.Views.ReviewChanges.txtFinal": "Усі зміни прийняті {0}",
"Common.Views.ReviewChanges.txtFinalCap": "Фіналізований",
"Common.Views.ReviewChanges.txtHistory": "Історія версій",
@@ -443,6 +495,7 @@
"Common.Views.ReviewPopover.textCancel": "Скасувати",
"Common.Views.ReviewPopover.textClose": "Закрити",
"Common.Views.ReviewPopover.textEdit": "Гаразд",
+ "Common.Views.ReviewPopover.textEnterComment": "Додайте коментар тут",
"Common.Views.ReviewPopover.textFollowMove": "Перейти на попереднє місце",
"Common.Views.ReviewPopover.textMention": "+згадка надасть доступ до документа і відправить сповіщення поштою",
"Common.Views.ReviewPopover.textMentionNotify": "+згадка відправить користувачу сповіщення поштою",
@@ -458,8 +511,10 @@
"Common.Views.SaveAsDlg.textTitle": "Каталог для збереження",
"Common.Views.SearchPanel.textCaseSensitive": "З урахуванням регістру",
"Common.Views.SearchPanel.textCloseSearch": "Закрити пошук",
+ "Common.Views.SearchPanel.textContentChanged": "Документ змінено.",
"Common.Views.SearchPanel.textFind": "Пошук",
"Common.Views.SearchPanel.textFindAndReplace": "Знайти та замінити",
+ "Common.Views.SearchPanel.textNoMatches": "Збіги відсутні",
"Common.Views.SearchPanel.textNoSearchResults": "Нічого не знайдено",
"Common.Views.SearchPanel.textReplace": "Замінити",
"Common.Views.SearchPanel.textReplaceAll": "Замінити усе",
@@ -469,6 +524,8 @@
"Common.Views.SearchPanel.textSearchResults": "Результати пошуку: {0}/{1}",
"Common.Views.SearchPanel.textTooManyResults": "Забагато результатів для показу",
"Common.Views.SearchPanel.textWholeWords": "Тільки цілі слова",
+ "Common.Views.SearchPanel.tipNextResult": "Наступний результат",
+ "Common.Views.SearchPanel.tipPreviousResult": "Попередній результат",
"Common.Views.SelectFileDlg.textLoading": "Завантаження",
"Common.Views.SelectFileDlg.textTitle": "Вибрати джерело даних",
"Common.Views.SignDialog.textBold": "Грубий",
@@ -487,6 +544,7 @@
"Common.Views.SignDialog.tipFontName": "Шрифт",
"Common.Views.SignDialog.tipFontSize": "Розмір шрифту",
"Common.Views.SignSettingsDialog.textAllowComment": "Дозволити автору додавати коментар у вікні діалогу додавання підпису",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "Перед додаванням підпису до документу перевірте, чи вміст документу відповідає дійсності.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Ел.пошта",
"Common.Views.SignSettingsDialog.textInfoName": "Ім'я",
"Common.Views.SignSettingsDialog.textInfoTitle": "Посада підписанта",
@@ -627,12 +685,14 @@
"DE.Controllers.Main.splitMaxColsErrorText": "Кількість стовпчиків повинна бути менше ніж 1%.",
"DE.Controllers.Main.splitMaxRowsErrorText": "Кількість рядків повинна бути менше% 1.",
"DE.Controllers.Main.textAnonymous": "Гість",
+ "DE.Controllers.Main.textAnyone": "Будь-хто",
"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.textContinue": "Продовжити",
"DE.Controllers.Main.textConvertEquation": "Це рівняння створено у старій версії редактора рівнянь, яка більше не підтримується. Щоб змінити це рівняння, його необхідно перетворити на формат Office Math ML. Перетворити зараз?",
"DE.Controllers.Main.textCustomLoader": "Зверніть увагу, що згідно з умовами ліцензії ви не маєте права змінювати екран завантаження. Будь ласка, зв'яжіться з нашим відділом продажів, щоб отримати ціну.",
"DE.Controllers.Main.textDisconnect": "З'єднання втрачено",
@@ -647,6 +707,7 @@
"DE.Controllers.Main.textRemember": "Запам’ятати мій вибір для всіх файлів",
"DE.Controllers.Main.textRenameError": "Ім'я користувача не повинно бути порожнім.",
"DE.Controllers.Main.textRenameLabel": "Введіть ім'я, що буде використовуватись для співпраці",
+ "DE.Controllers.Main.textRequestMacros": "Макрос надіслав запит за зовнішньою адресою. Дозволити здійснити запит до %1? ",
"DE.Controllers.Main.textShape": "Форма",
"DE.Controllers.Main.textStrict": "Суворий режим",
"DE.Controllers.Main.textText": "Текст",
@@ -782,7 +843,7 @@
"DE.Controllers.Main.txtShape_flowChartProcess": "Блок-схема: процес",
"DE.Controllers.Main.txtShape_flowChartPunchedCard": "Блок-схема: картка",
"DE.Controllers.Main.txtShape_flowChartPunchedTape": "Блок-схема: перфострічка",
- "DE.Controllers.Main.txtShape_flowChartSort": "Блок-схема: сортування",
+ "DE.Controllers.Main.txtShape_flowChartSort": "Блок-схема: впорядкування",
"DE.Controllers.Main.txtShape_flowChartSummingJunction": "Блок-схема: вузол суми",
"DE.Controllers.Main.txtShape_flowChartTerminator": "Блок-схема: знак закінчення",
"DE.Controllers.Main.txtShape_foldedCorner": "Загнутий кут",
@@ -913,6 +974,7 @@
"DE.Controllers.Main.waitText": "Будь ласка, зачекайте...",
"DE.Controllers.Main.warnBrowserIE9": "Застосунок має низьку ефективність при роботі з-під IE9. Використовувати IE10 або вище",
"DE.Controllers.Main.warnBrowserZoom": "Наявне масштабування сторінки браузеру повністю не підтримується. Поверніться до стандартного масштабу, натиснувши Ctrl+0.",
+ "DE.Controllers.Main.warnLicenseAnonymous": "Доступ заборонено для неавторизованих користувачів. Документ буде відкрито тільки для перегляду.",
"DE.Controllers.Main.warnLicenseExceeded": "Ви досягли ліміту одночасного підключення до редакторів %1. Цей документ буде відкритий лише для перегляду. Щоб дізнатися більше, зв’яжіться з адміністратором.",
"DE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув. Будь ласка, оновіть свою ліцензію та оновіть сторінку.",
"DE.Controllers.Main.warnLicenseLimitedNoAccess": "Термін дії ліцензії закінчився. Немає доступ до функцій редагування документів. Будь ласка, зверніться до адміністратора.",
@@ -923,6 +985,8 @@
"DE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.",
"DE.Controllers.Navigation.txtBeginning": "Початок документа",
"DE.Controllers.Navigation.txtGotoBeginning": "Перейти до початку документу",
+ "DE.Controllers.Print.txtCustom": "Власний",
+ "DE.Controllers.Print.txtPrintRangeSingleRange": "Зазначте або номер сторінки або діапазон сторінок (напр., 5-12). Або збережіть файл у PDF.",
"DE.Controllers.Search.textNoTextFound": "Дані, які ви шукали в хмарі, не знайдено. Будь ласка, скоригуйте ваші параметри пошуку.",
"DE.Controllers.Search.textReplaceSuccess": "Пошук виконано. Замінено {0} збігів",
"DE.Controllers.Search.warnReplaceString": "Нічого",
@@ -982,12 +1046,12 @@
"DE.Controllers.Toolbar.txtAccent_Hat": "Капелюх",
"DE.Controllers.Toolbar.txtAccent_Smile": "Короткий",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Тільда",
- "DE.Controllers.Toolbar.txtBracket_Angle": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_Angle": "Дужки",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Дужки з роздільниками",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Дужки з роздільниками",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Єдина дужка",
- "DE.Controllers.Toolbar.txtBracket_Curve": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_Curve": "Дужки",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Дужки з роздільниками",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Єдина дужка",
@@ -998,29 +1062,29 @@
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Приклад регістру символів",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Биномиальный коефіцієнт",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коефіцієнт",
- "DE.Controllers.Toolbar.txtBracket_Line": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_Line": "Дужки",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Єдина дужка",
- "DE.Controllers.Toolbar.txtBracket_LineDouble": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_LineDouble": "Дужки",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Єдина дужка",
- "DE.Controllers.Toolbar.txtBracket_LowLim": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_LowLim": "Дужки",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Єдина дужка",
- "DE.Controllers.Toolbar.txtBracket_Round": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_Round": "Дужки",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Дужки з роздільниками",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Єдина дужка",
- "DE.Controllers.Toolbar.txtBracket_Square": "дужки",
- "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "дужки",
- "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_Square": "Дужки",
+ "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Дужки",
+ "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Дужки",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Єдина дужка",
- "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "дужки",
- "DE.Controllers.Toolbar.txtBracket_SquareDouble": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Дужки",
+ "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Дужки",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Єдина дужка",
- "DE.Controllers.Toolbar.txtBracket_UppLim": "дужки",
+ "DE.Controllers.Toolbar.txtBracket_UppLim": "Дужки",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Єдина дужка",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Єдина дужка",
"DE.Controllers.Toolbar.txtFractionDiagonal": "Обмотана фракція",
@@ -1240,12 +1304,12 @@
"DE.Controllers.Toolbar.txtSymbol_ni": "Містить в якості учасника",
"DE.Controllers.Toolbar.txtSymbol_not": "Не підписаний",
"DE.Controllers.Toolbar.txtSymbol_notexists": "Там не існує",
- "DE.Controllers.Toolbar.txtSymbol_nu": "ню",
+ "DE.Controllers.Toolbar.txtSymbol_nu": "Ню",
"DE.Controllers.Toolbar.txtSymbol_o": "Омікрон",
"DE.Controllers.Toolbar.txtSymbol_omega": "Омега",
"DE.Controllers.Toolbar.txtSymbol_partial": "Частковий диференціал",
- "DE.Controllers.Toolbar.txtSymbol_percent": "відсотковий вміст",
- "DE.Controllers.Toolbar.txtSymbol_phi": "фі",
+ "DE.Controllers.Toolbar.txtSymbol_percent": "Відсотковий вміст",
+ "DE.Controllers.Toolbar.txtSymbol_phi": "Фі",
"DE.Controllers.Toolbar.txtSymbol_pi": "Пі",
"DE.Controllers.Toolbar.txtSymbol_plus": "Плюс",
"DE.Controllers.Toolbar.txtSymbol_pm": "Плюс мінус",
@@ -1254,24 +1318,24 @@
"DE.Controllers.Toolbar.txtSymbol_qdrt": "Четвертий корінь",
"DE.Controllers.Toolbar.txtSymbol_qed": "Кінець показника",
"DE.Controllers.Toolbar.txtSymbol_rddots": "Вгору справа Діагональ Еліпсіс",
- "DE.Controllers.Toolbar.txtSymbol_rho": "ро",
+ "DE.Controllers.Toolbar.txtSymbol_rho": "Ро",
"DE.Controllers.Toolbar.txtSymbol_rightarrow": "Права стрілочка",
- "DE.Controllers.Toolbar.txtSymbol_sigma": "сігма",
+ "DE.Controllers.Toolbar.txtSymbol_sigma": "Сігма",
"DE.Controllers.Toolbar.txtSymbol_sqrt": "Радикальний знак",
- "DE.Controllers.Toolbar.txtSymbol_tau": "тау",
+ "DE.Controllers.Toolbar.txtSymbol_tau": "Тау",
"DE.Controllers.Toolbar.txtSymbol_therefore": "Тому",
- "DE.Controllers.Toolbar.txtSymbol_theta": "тета",
+ "DE.Controllers.Toolbar.txtSymbol_theta": "Тета",
"DE.Controllers.Toolbar.txtSymbol_times": "Знак множення",
"DE.Controllers.Toolbar.txtSymbol_uparrow": "Стрілочка вгору",
- "DE.Controllers.Toolbar.txtSymbol_upsilon": "іпсилон",
+ "DE.Controllers.Toolbar.txtSymbol_upsilon": "Iпсилон",
"DE.Controllers.Toolbar.txtSymbol_varepsilon": "Епсілон Варіант",
- "DE.Controllers.Toolbar.txtSymbol_varphi": "варіант фі",
+ "DE.Controllers.Toolbar.txtSymbol_varphi": "Варіант фі",
"DE.Controllers.Toolbar.txtSymbol_varpi": "Пі варіант",
"DE.Controllers.Toolbar.txtSymbol_varrho": "Ро варіант",
- "DE.Controllers.Toolbar.txtSymbol_varsigma": "сігма варіант",
- "DE.Controllers.Toolbar.txtSymbol_vartheta": "тета варіант",
+ "DE.Controllers.Toolbar.txtSymbol_varsigma": "Сігма варіант",
+ "DE.Controllers.Toolbar.txtSymbol_vartheta": "Тета варіант",
"DE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальний Еліпсіс",
- "DE.Controllers.Toolbar.txtSymbol_xsi": "ксі",
+ "DE.Controllers.Toolbar.txtSymbol_xsi": "Ксі",
"DE.Controllers.Toolbar.txtSymbol_zeta": "Дзета",
"DE.Controllers.Viewport.textFitPage": "За розміром сторінки",
"DE.Controllers.Viewport.textFitWidth": "По ширині",
@@ -1308,7 +1372,7 @@
"DE.Views.CaptionDialog.textInsert": "Вставити",
"DE.Views.CaptionDialog.textLabel": "Підпис",
"DE.Views.CaptionDialog.textLongDash": "довге тире",
- "DE.Views.CaptionDialog.textNumbering": "Нумерація",
+ "DE.Views.CaptionDialog.textNumbering": "Нумерований список",
"DE.Views.CaptionDialog.textPeriod": "крапка",
"DE.Views.CaptionDialog.textSeparator": "Використати роздільник",
"DE.Views.CaptionDialog.textTable": "Таблиця",
@@ -1320,11 +1384,18 @@
"DE.Views.CellsAddDialog.textRow": "Рядки",
"DE.Views.CellsAddDialog.textTitle": "Вставити декілька",
"DE.Views.CellsAddDialog.textUp": "Над курсором",
+ "DE.Views.ChartSettings.text3dDepth": "Глибина (% від основного)",
+ "DE.Views.ChartSettings.text3dRotation": "Обертання 3D",
"DE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування",
+ "DE.Views.ChartSettings.textAutoscale": "Автоматичне масштабування",
"DE.Views.ChartSettings.textChartType": "Змінити тип діаграми",
+ "DE.Views.ChartSettings.textDefault": "Типове обертання",
+ "DE.Views.ChartSettings.textDown": "Вниз",
"DE.Views.ChartSettings.textEditData": "Редагувати дату",
"DE.Views.ChartSettings.textHeight": "Висота",
+ "DE.Views.ChartSettings.textLeft": "Ліворуч",
"DE.Views.ChartSettings.textOriginalSize": "Реальний розмір",
+ "DE.Views.ChartSettings.textPerspective": "Перспектива",
"DE.Views.ChartSettings.textSize": "Розмір",
"DE.Views.ChartSettings.textStyle": "Стиль",
"DE.Views.ChartSettings.textUndock": "Скасувати з панелі",
@@ -1410,6 +1481,7 @@
"DE.Views.CrossReferenceDialog.txtTitle": "Перехресне посилання",
"DE.Views.CrossReferenceDialog.txtType": "Тип посилання",
"DE.Views.CustomColumnsDialog.textColumns": "Кількість стовпчиків",
+ "DE.Views.CustomColumnsDialog.textEqualWidth": "Однакова ширина стовпчика",
"DE.Views.CustomColumnsDialog.textSeparator": "Роздільник",
"DE.Views.CustomColumnsDialog.textTitle": "Стовпчики",
"DE.Views.DateTimeDialog.confirmDefault": "Встановити типовий формат для {0}: \"{1}\"",
@@ -1429,6 +1501,7 @@
"DE.Views.DocumentHolder.aboveText": "Вище",
"DE.Views.DocumentHolder.addCommentText": "Добавити коментар",
"DE.Views.DocumentHolder.advancedDropCapText": "Налаштування буквиці",
+ "DE.Views.DocumentHolder.advancedEquationText": "Налаштування рівняння",
"DE.Views.DocumentHolder.advancedFrameText": "Рамка розширені налаштування",
"DE.Views.DocumentHolder.advancedParagraphText": "Додаткові параметри параграфу",
"DE.Views.DocumentHolder.advancedTableText": "Таблиця розширені налаштування",
@@ -1436,7 +1509,7 @@
"DE.Views.DocumentHolder.alignmentText": "Вирівнювання",
"DE.Views.DocumentHolder.belowText": "Нижче",
"DE.Views.DocumentHolder.breakBeforeText": "Розрив сторінки перед",
- "DE.Views.DocumentHolder.bulletsText": "Маркери та нумерація",
+ "DE.Views.DocumentHolder.bulletsText": "Ненумерований та нумерований списки",
"DE.Views.DocumentHolder.cellAlignText": "Вертикальне вирівнювання комірки",
"DE.Views.DocumentHolder.cellText": "Комірка",
"DE.Views.DocumentHolder.centerText": "Центр",
@@ -1495,6 +1568,7 @@
"DE.Views.DocumentHolder.strSign": "Підписати",
"DE.Views.DocumentHolder.styleText": "Форматування в стилі",
"DE.Views.DocumentHolder.tableText": "Таблиця",
+ "DE.Views.DocumentHolder.textAccept": "Прийняти зміну",
"DE.Views.DocumentHolder.textAlign": "Вирівняти",
"DE.Views.DocumentHolder.textArrange": "Організувати",
"DE.Views.DocumentHolder.textArrangeBack": "Надіслати до фону",
@@ -1521,6 +1595,7 @@
"DE.Views.DocumentHolder.textFromFile": "З файлу",
"DE.Views.DocumentHolder.textFromStorage": "Зі сховища",
"DE.Views.DocumentHolder.textFromUrl": "За URL",
+ "DE.Views.DocumentHolder.textIndents": "Налаштувати відступ у списках",
"DE.Views.DocumentHolder.textJoinList": "Об'єднати з попереднім списком",
"DE.Views.DocumentHolder.textLeft": "Клітинки зі зсувом ліворуч",
"DE.Views.DocumentHolder.textNest": "Вставити як вкладену таблицю",
@@ -1730,11 +1805,14 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Коментар",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Створено",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo": "Інформація про документ",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Завантаження...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Змінено",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Змінено",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Ні",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Власник",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Сторінки",
+ "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Розмір сторінки",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Параграфи",
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF з мітками",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження",
@@ -1747,6 +1825,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Завантажено",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Слів",
+ "DE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "Права доступу",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Змінити права доступу",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Особи, які мають права",
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Увага",
@@ -1754,6 +1833,7 @@
"DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Захистити документ",
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "За допомогою підпису",
"DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature": "Дійсні підписи було додано до документу. Документ захищено від запису.",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "Забезпечити цілісність документу шляхом додавання невидимого цифрового підпису",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Редагувати документ",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "При редагуванні з документа будуть видалені підписи. Продовжити?",
"DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Цей документ захищений паролем",
@@ -1762,6 +1842,7 @@
"DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "До документа додано дійсні підписи. Документ захищений від редагування.",
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Деякі з цифрових підписів у документі є недійсними або їх не можна перевірити. Документ захищений від редагування.",
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "Переглянути підписи",
+ "DE.Views.FileMenuPanels.RecentFiles.txtOpenRecent": "Відкрити останнє",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Застосувати",
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Спільне редагування",
"DE.Views.FileMenuPanels.Settings.strFast": "Швидко",
@@ -1773,7 +1854,7 @@
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Зміни у співпраці в реальному часі",
"DE.Views.FileMenuPanels.Settings.strShowComments": "Показувати коментарі в тексті",
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Показувати зміни інших користувачів",
- "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Показувати вирішені коментарі",
+ "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Показувати розв'язані коментарі",
"DE.Views.FileMenuPanels.Settings.strStrict": "Суворо",
"DE.Views.FileMenuPanels.Settings.strTheme": "Тема інтерфейсу",
"DE.Views.FileMenuPanels.Settings.strUnit": "Одиниця виміру",
@@ -1782,13 +1863,14 @@
"DE.Views.FileMenuPanels.Settings.text30Minutes": "Кожні 30 хвилин",
"DE.Views.FileMenuPanels.Settings.text5Minutes": "Кожні 5 хвилин",
"DE.Views.FileMenuPanels.Settings.text60Minutes": "Кожну годину",
- "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Посібники з вирівнювання",
+ "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Лінійка вирівнювання",
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Автовідновлення",
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Автоматичне збереження",
"DE.Views.FileMenuPanels.Settings.textDisabled": "Заблокований",
"DE.Views.FileMenuPanels.Settings.textForceSave": "Збереження проміжних версій",
"DE.Views.FileMenuPanels.Settings.textMinute": "Кожну хвилину",
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Підтримка сумісності зі старими версіями Microsoft Word при збереженні у форматі DOCX",
+ "DE.Views.FileMenuPanels.Settings.txtAdvancedSettings": "Розширені налаштування",
"DE.Views.FileMenuPanels.Settings.txtAll": "Показати усе",
"DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Параметри автозаміни...",
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Типовий режим кешу",
@@ -1805,7 +1887,7 @@
"DE.Views.FileMenuPanels.Settings.txtLast": "Переглянути останнє",
"DE.Views.FileMenuPanels.Settings.txtMac": "як OS X",
"DE.Views.FileMenuPanels.Settings.txtNative": "Рідний",
- "DE.Views.FileMenuPanels.Settings.txtNone": "Не переглядувати нічого",
+ "DE.Views.FileMenuPanels.Settings.txtNone": "Не показувати нічого",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Правопис",
"DE.Views.FileMenuPanels.Settings.txtPt": "Визначити",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Показувати кнопку \"Швидкий друк\" у заголовку редактора",
@@ -1821,33 +1903,52 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Показати сповіщення",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Вимкнути всі макроси зі сповіщенням",
"DE.Views.FileMenuPanels.Settings.txtWin": "як Windows",
+ "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Звантажити як",
"DE.Views.FormSettings.textAlways": "Завжди",
+ "DE.Views.FormSettings.textAnyone": "Будь-хто",
"DE.Views.FormSettings.textAspect": "Зберігати пропорції",
+ "DE.Views.FormSettings.textAtLeast": "принаймні",
+ "DE.Views.FormSettings.textAuto": "Автоматично",
"DE.Views.FormSettings.textAutofit": "Автопідбір",
"DE.Views.FormSettings.textBackgroundColor": "Колір фону",
"DE.Views.FormSettings.textCheckbox": "Прапорець",
"DE.Views.FormSettings.textColor": "Колір меж",
"DE.Views.FormSettings.textComb": "Комбінувати символи",
"DE.Views.FormSettings.textCombobox": "Поле зі списком",
+ "DE.Views.FormSettings.textComplex": "Складне поле",
"DE.Views.FormSettings.textConnected": "Підключені поля",
+ "DE.Views.FormSettings.textCreditCard": "Номер кредитної картки (напр. 4111-1111-1111-1111)",
+ "DE.Views.FormSettings.textDateField": "Поле дати та часу",
+ "DE.Views.FormSettings.textDateFormat": "Показувати дату як",
+ "DE.Views.FormSettings.textDefValue": "Типове значення",
"DE.Views.FormSettings.textDelete": "Видалити",
+ "DE.Views.FormSettings.textDigits": "Цифри",
"DE.Views.FormSettings.textDisconnect": "Відключити",
"DE.Views.FormSettings.textDropDown": "Випадаючий список",
+ "DE.Views.FormSettings.textExact": "Точно",
"DE.Views.FormSettings.textField": "Текстове поле",
"DE.Views.FormSettings.textFixed": "Поле фіксованого розміру",
+ "DE.Views.FormSettings.textFormat": "Формат",
+ "DE.Views.FormSettings.textFormatSymbols": "Дозволені символи",
"DE.Views.FormSettings.textFromFile": "З файлу",
"DE.Views.FormSettings.textFromStorage": "Зі сховища",
"DE.Views.FormSettings.textFromUrl": "За URL",
"DE.Views.FormSettings.textGroupKey": "Ключ групи",
"DE.Views.FormSettings.textImage": "Зображення",
"DE.Views.FormSettings.textKey": "Ключ",
+ "DE.Views.FormSettings.textLang": "Мова",
"DE.Views.FormSettings.textLock": "Заблокувати",
+ "DE.Views.FormSettings.textMask": "Випадкова маска",
"DE.Views.FormSettings.textMaxChars": "Максимальна кількість знаків",
"DE.Views.FormSettings.textMulti": "Багаторядкове поле",
"DE.Views.FormSettings.textNever": "Ніколи",
"DE.Views.FormSettings.textNoBorder": "Без меж",
+ "DE.Views.FormSettings.textNone": "Жоден",
+ "DE.Views.FormSettings.textPhone1": "Номер телефону (напр. (123) 456-7890)",
+ "DE.Views.FormSettings.textPhone2": "Номер телефону (напр. +380123456789)",
"DE.Views.FormSettings.textPlaceholder": "Заповнювач",
"DE.Views.FormSettings.textRadiobox": "Перемикач",
+ "DE.Views.FormSettings.textRadioDefault": "Застосовано типове значення кнопки",
"DE.Views.FormSettings.textRequired": "Обов'язково",
"DE.Views.FormSettings.textScale": "Коли масштабувати",
"DE.Views.FormSettings.textSelectImage": "Вибрати зображення",
@@ -1864,15 +1965,22 @@
"DE.Views.FormSettings.textWidth": "Ширина клітинки",
"DE.Views.FormsTab.capBtnCheckBox": "Прапорець",
"DE.Views.FormsTab.capBtnComboBox": "Поле зі списком",
+ "DE.Views.FormsTab.capBtnComplex": "Складне поле",
+ "DE.Views.FormsTab.capBtnDownloadForm": "Звантажити як oform",
"DE.Views.FormsTab.capBtnDropDown": "Випадаючий список",
+ "DE.Views.FormsTab.capBtnEmail": "Адреса електронної пошти",
"DE.Views.FormsTab.capBtnImage": "Зображення",
"DE.Views.FormsTab.capBtnNext": "Наступне поле",
+ "DE.Views.FormsTab.capBtnPhone": "Номер телефону",
"DE.Views.FormsTab.capBtnPrev": "Попереднє поле",
"DE.Views.FormsTab.capBtnRadioBox": "Перемикач",
"DE.Views.FormsTab.capBtnSaveForm": "Зберегти як oform",
"DE.Views.FormsTab.capBtnSubmit": "Відправити",
"DE.Views.FormsTab.capBtnText": "Текстове поле",
"DE.Views.FormsTab.capBtnView": "Переглянути форму",
+ "DE.Views.FormsTab.capCreditCard": "Кредитна картка",
+ "DE.Views.FormsTab.capDateTime": "Дата та час",
+ "DE.Views.FormsTab.textAnyone": "Будь-хто",
"DE.Views.FormsTab.textClear": "Очистити поля",
"DE.Views.FormsTab.textClearFields": "Очистити всі поля",
"DE.Views.FormsTab.textCreateForm": "Додайте поля і створіть документ для заповнення OFORM",
@@ -1883,6 +1991,7 @@
"DE.Views.FormsTab.textSubmited": "Форма успішно надіслана",
"DE.Views.FormsTab.tipCheckBox": "Вставити прапорець",
"DE.Views.FormsTab.tipComboBox": "Вставити поле зі списком",
+ "DE.Views.FormsTab.tipDownloadForm": "Звантажити файл у форматі OFORM для заповнення",
"DE.Views.FormsTab.tipDropDown": "Вставити випадаючий список",
"DE.Views.FormsTab.tipImageField": "Вставити зображення",
"DE.Views.FormsTab.tipNextForm": "Перейти до наступного поля",
@@ -1892,6 +2001,7 @@
"DE.Views.FormsTab.tipSubmit": "Відправити форму",
"DE.Views.FormsTab.tipTextField": "Вставити текстове поле",
"DE.Views.FormsTab.tipViewForm": "Переглянути форму",
+ "DE.Views.FormsTab.txtFixedText": "Фіксовано",
"DE.Views.FormsTab.txtUntitled": "Без ім'я",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Нижній центр",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Внизу зліва",
@@ -1963,7 +2073,7 @@
"DE.Views.ImageSettingsAdvanced.textAlignment": "Вирівнювання",
"DE.Views.ImageSettingsAdvanced.textAlt": "Альтернативний текст",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Опис",
- "DE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.",
+ "DE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, фігурі, діаграмі або таблиці.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Назва",
"DE.Views.ImageSettingsAdvanced.textAngle": "Нахил",
"DE.Views.ImageSettingsAdvanced.textArrows": "Стрілки",
@@ -1971,7 +2081,7 @@
"DE.Views.ImageSettingsAdvanced.textAutofit": "Автоматично",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Початковий розмір",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Початок стилю",
- "DE.Views.ImageSettingsAdvanced.textBelow": "Нижче",
+ "DE.Views.ImageSettingsAdvanced.textBelow": "нижче",
"DE.Views.ImageSettingsAdvanced.textBevel": "Скіс",
"DE.Views.ImageSettingsAdvanced.textBottom": "Внизу",
"DE.Views.ImageSettingsAdvanced.textBottomMargin": "Нижня маржа",
@@ -2038,11 +2148,13 @@
"DE.Views.LeftMenu.tipComments": "Коментарі",
"DE.Views.LeftMenu.tipNavigation": "Навігація",
"DE.Views.LeftMenu.tipOutline": "Заголовки",
+ "DE.Views.LeftMenu.tipPageThumbnails": "Ескізи сторінок",
"DE.Views.LeftMenu.tipPlugins": "Розширення",
"DE.Views.LeftMenu.tipSearch": "Пошук",
"DE.Views.LeftMenu.tipSupport": "Відгуки і підтримка",
"DE.Views.LeftMenu.tipTitles": "Назви",
"DE.Views.LeftMenu.txtDeveloper": "Режим розробника",
+ "DE.Views.LeftMenu.txtEditor": "Редактор",
"DE.Views.LeftMenu.txtLimit": "Обмежений доступ",
"DE.Views.LeftMenu.txtTrial": "ПРОБНИЙ РЕЖИМ",
"DE.Views.LeftMenu.txtTrialDev": "Пробний режим розробника",
@@ -2053,7 +2165,7 @@
"DE.Views.LineNumbersDialog.textDocument": "До всього документа",
"DE.Views.LineNumbersDialog.textForward": "До кінця документу",
"DE.Views.LineNumbersDialog.textFromText": "З тексту",
- "DE.Views.LineNumbersDialog.textNumbering": "Нумерація",
+ "DE.Views.LineNumbersDialog.textNumbering": "Нумерований список",
"DE.Views.LineNumbersDialog.textRestartEachPage": "На кожній сторінці",
"DE.Views.LineNumbersDialog.textRestartEachSection": "В кожному розділі",
"DE.Views.LineNumbersDialog.textSection": "До поточного розділу",
@@ -2097,18 +2209,26 @@
"DE.Views.Links.titleUpdateTOF": "Оновити список ілюстрацій",
"DE.Views.Links.txtDontShowTof": "Не показувати у змісті",
"DE.Views.Links.txtLevel": "Рівень",
+ "DE.Views.ListIndentsDialog.txtNone": "Жоден",
+ "DE.Views.ListIndentsDialog.txtPosBullet": "Розташування знаку ненумерованого списку",
+ "DE.Views.ListIndentsDialog.txtPosNumber": "Розташування номеру",
"DE.Views.ListSettingsDialog.textAuto": "Автоматично",
+ "DE.Views.ListSettingsDialog.textBold": "Грубий",
"DE.Views.ListSettingsDialog.textCenter": "По центру",
+ "DE.Views.ListSettingsDialog.textItalic": "Курсив",
"DE.Views.ListSettingsDialog.textLeft": "По лівому краю",
"DE.Views.ListSettingsDialog.textLevel": "Рівень",
"DE.Views.ListSettingsDialog.textPreview": "Перегляд",
"DE.Views.ListSettingsDialog.textRight": "По правому краю",
"DE.Views.ListSettingsDialog.txtAlign": "Вирівнювання",
+ "DE.Views.ListSettingsDialog.txtAlignAt": "у",
"DE.Views.ListSettingsDialog.txtBullet": "Маркер",
"DE.Views.ListSettingsDialog.txtColor": "Колір",
+ "DE.Views.ListSettingsDialog.txtFontName": "Шрифт",
"DE.Views.ListSettingsDialog.txtLikeText": "Як текст",
"DE.Views.ListSettingsDialog.txtNewBullet": "Новий маркер",
"DE.Views.ListSettingsDialog.txtNone": "Немає",
+ "DE.Views.ListSettingsDialog.txtNumFormatString": "Числовий формат",
"DE.Views.ListSettingsDialog.txtSize": "Розмір",
"DE.Views.ListSettingsDialog.txtSymbol": "Символ",
"DE.Views.ListSettingsDialog.txtTitle": "Налаштування списку",
@@ -2183,7 +2303,7 @@
"DE.Views.NoteSettingsDialog.textApply": "Застосувати",
"DE.Views.NoteSettingsDialog.textApplyTo": "Застосувати зміни до",
"DE.Views.NoteSettingsDialog.textContinue": "Безперервний",
- "DE.Views.NoteSettingsDialog.textCustom": "Користувальницький знак",
+ "DE.Views.NoteSettingsDialog.textCustom": "Власна позначка",
"DE.Views.NoteSettingsDialog.textDocEnd": "В кінці документу",
"DE.Views.NoteSettingsDialog.textDocument": "Весь документ",
"DE.Views.NoteSettingsDialog.textEachPage": "Перезапустити кожну сторінку",
@@ -2193,7 +2313,7 @@
"DE.Views.NoteSettingsDialog.textFormat": "Формат",
"DE.Views.NoteSettingsDialog.textInsert": "Вставити",
"DE.Views.NoteSettingsDialog.textLocation": "Місцезнаходження",
- "DE.Views.NoteSettingsDialog.textNumbering": "Нумерація",
+ "DE.Views.NoteSettingsDialog.textNumbering": "Нумерований список",
"DE.Views.NoteSettingsDialog.textNumFormat": "Номер формату",
"DE.Views.NoteSettingsDialog.textPageBottom": "Внизу сторінки",
"DE.Views.NoteSettingsDialog.textSectEnd": "В кінці розділу",
@@ -2240,7 +2360,7 @@
"DE.Views.ParagraphSettings.strLineHeight": "Лінія інтервалу",
"DE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу",
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Не додавайте інтервал між параграфами тотожнього стилю",
- "DE.Views.ParagraphSettings.strSpacingAfter": "після",
+ "DE.Views.ParagraphSettings.strSpacingAfter": "Після",
"DE.Views.ParagraphSettings.strSpacingBefore": "Перед",
"DE.Views.ParagraphSettings.textAdvanced": "Показати додаткові налаштування",
"DE.Views.ParagraphSettings.textAt": "в",
@@ -2282,6 +2402,7 @@
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Заборонити нумерацію рядків",
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Вкладка",
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Вирівнювання",
+ "DE.Views.ParagraphSettingsAdvanced.textAll": "Все",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Мінімально",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Множник",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Колір тла",
@@ -2292,6 +2413,7 @@
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Внизу",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "По центру",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Пробіл між символами",
+ "DE.Views.ParagraphSettingsAdvanced.textContext": "Контекстний",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Типова вкладка",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Точно",
@@ -2325,9 +2447,32 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Встановити лише верхню межу",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Немає кордонів",
+ "DE.Views.PrintWithPreview.textMarginsLast": "Останні налаштування",
+ "DE.Views.PrintWithPreview.textMarginsModerate": "Помірний",
+ "DE.Views.PrintWithPreview.textMarginsNormal": "Звичайний",
"DE.Views.PrintWithPreview.txtAllPages": "Всі сторінки",
+ "DE.Views.PrintWithPreview.txtBothSides": "Двосторонній друк",
+ "DE.Views.PrintWithPreview.txtBothSidesLongDesc": "Гортати сторінки по довгому краю",
+ "DE.Views.PrintWithPreview.txtBothSidesShortDesc": "Гортати сторінки по короткому краю",
+ "DE.Views.PrintWithPreview.txtBottom": "Знизу",
+ "DE.Views.PrintWithPreview.txtCopies": "Копії",
+ "DE.Views.PrintWithPreview.txtCurrentPage": "Поточна сторінка",
+ "DE.Views.PrintWithPreview.txtCustom": "Власний",
+ "DE.Views.PrintWithPreview.txtCustomPages": "Налаштований друк",
+ "DE.Views.PrintWithPreview.txtLandscape": "Альбомна",
+ "DE.Views.PrintWithPreview.txtLeft": "Ліворуч",
+ "DE.Views.PrintWithPreview.txtOf": "із {0}",
+ "DE.Views.PrintWithPreview.txtOneSide": "Односторонній друк",
+ "DE.Views.PrintWithPreview.txtOneSideDesc": "Односторонній друк",
+ "DE.Views.PrintWithPreview.txtPage": "Сторінка",
+ "DE.Views.PrintWithPreview.txtPageOrientation": "Орієнтація сторінки",
"DE.Views.PrintWithPreview.txtPages": "Сторінок",
+ "DE.Views.PrintWithPreview.txtPageSize": "Розмір сторінки",
+ "DE.Views.PrintWithPreview.txtPortrait": "Книжкова",
"DE.Views.PrintWithPreview.txtPrint": "Друк",
+ "DE.Views.PrintWithPreview.txtPrintPdf": "Зберегти в PDF",
+ "DE.Views.PrintWithPreview.txtPrintRange": "Діапазон друку",
+ "DE.Views.PrintWithPreview.txtPrintSides": "Сторони друку",
"DE.Views.PrintWithPreview.txtSelection": "Вибрано",
"DE.Views.ProtectDialog.textComments": "Коментарі",
"DE.Views.ProtectDialog.textForms": "Заповнення форм",
@@ -2336,6 +2481,7 @@
"DE.Views.ProtectDialog.txtAllow": "Дозволити лише такий тип редагування документу",
"DE.Views.ProtectDialog.txtIncorrectPwd": "Повторно зазначений пароль не збігається",
"DE.Views.ProtectDialog.txtLimit": "Пароль має бути не більше 15 символів",
+ "DE.Views.ProtectDialog.txtOptional": "необов'язково",
"DE.Views.ProtectDialog.txtPassword": "Пароль",
"DE.Views.ProtectDialog.txtProtect": "Захистити",
"DE.Views.ProtectDialog.txtRepeat": "Повторіть пароль",
@@ -2351,9 +2497,21 @@
"DE.Views.RightMenu.txtSignatureSettings": "Налаштування підпису",
"DE.Views.RightMenu.txtTableSettings": "Налаштування таблиці",
"DE.Views.RightMenu.txtTextArtSettings": "Налаштування текстової фігури",
+ "DE.Views.RoleDeleteDlg.textTitle": "Вилучити роль",
"DE.Views.RoleEditDlg.textEmptyError": "Роль має містити назву",
+ "DE.Views.RoleEditDlg.textNoHighlight": "Без виділення",
+ "DE.Views.RoleEditDlg.txtTitleEdit": "Редагувати роль",
+ "DE.Views.RoleEditDlg.txtTitleNew": "Створити нову роль",
+ "DE.Views.RolesManagerDlg.textAnyone": "Будь-хто",
+ "DE.Views.RolesManagerDlg.textDelete": "Вилучити",
+ "DE.Views.RolesManagerDlg.textDeleteLast": "Дійсно вилучити роль {0}? Після вилучення буде створено типову роль.",
+ "DE.Views.RolesManagerDlg.textDescription": "Додати ролі та встановити порядок, за яким отримують та підписують документ",
+ "DE.Views.RolesManagerDlg.textEdit": "Редагувати",
+ "DE.Views.RolesManagerDlg.textNew": "Нове",
+ "DE.Views.RolesManagerDlg.warnDelete": "Дійсно вилучити роль {0}?",
+ "DE.Views.SaveFormDlg.textAnyone": "Будь-хто",
"DE.Views.ShapeSettings.strBackground": "Колір тла",
- "DE.Views.ShapeSettings.strChange": "Змінити автофігуру",
+ "DE.Views.ShapeSettings.strChange": "Змінити фігуру",
"DE.Views.ShapeSettings.strColor": "Колір",
"DE.Views.ShapeSettings.strFill": "Заповнити",
"DE.Views.ShapeSettings.strForeground": "Колір переднього плану",
@@ -2437,7 +2595,7 @@
"DE.Views.Statusbar.tipFitPage": "За розміром сторінки",
"DE.Views.Statusbar.tipFitWidth": "По ширині",
"DE.Views.Statusbar.tipSelectTool": "Інструмент вибору",
- "DE.Views.Statusbar.tipSetLang": "вибрати мову тексту",
+ "DE.Views.Statusbar.tipSetLang": "Вибрати мову тексту",
"DE.Views.Statusbar.tipZoomFactor": "Масштаб",
"DE.Views.Statusbar.tipZoomIn": "Збільшити",
"DE.Views.Statusbar.tipZoomOut": "Зменшити",
@@ -2537,8 +2695,12 @@
"DE.Views.TableSettings.tipOuter": "Встановити лише зовнішній край",
"DE.Views.TableSettings.tipRight": "Встановити лише зовнішній правий кордон",
"DE.Views.TableSettings.tipTop": "Встановити лише зовнішній верхній край",
+ "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Таблиці з рамками та межами",
+ "DE.Views.TableSettings.txtGroupTable_Custom": "Власний",
"DE.Views.TableSettings.txtNoBorders": "Немає кордонів",
"DE.Views.TableSettings.txtTable_Accent": "Акцент",
+ "DE.Views.TableSettings.txtTable_Bordered": "З рамками",
+ "DE.Views.TableSettings.txtTable_BorderedAndLined": "З рамками та межами",
"DE.Views.TableSettings.txtTable_Colorful": "Кольоровий",
"DE.Views.TableSettings.txtTable_Dark": "Темний",
"DE.Views.TableSettings.txtTable_GridTable": "Таблиця-сітка",
@@ -2551,12 +2713,12 @@
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Відстань між комірками",
"DE.Views.TableSettingsAdvanced.textAlt": "Альтернативний текст",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Опис",
- "DE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, автофігурі, діаграмі або таблиці.",
+ "DE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація міститься в зображенні, фігурі, діаграмі або таблиці.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Назва",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Текст",
"DE.Views.TableSettingsAdvanced.textAutofit": "Автоматично змінювати розмір відповідно до вмісту",
"DE.Views.TableSettingsAdvanced.textBackColor": "Тло комірки",
- "DE.Views.TableSettingsAdvanced.textBelow": "Нижче",
+ "DE.Views.TableSettingsAdvanced.textBelow": "нижче",
"DE.Views.TableSettingsAdvanced.textBorderColor": "Колір меж",
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Клацніть по діаграмі або використовуйте кнопки, щоб вибрати кордони та застосувати до них вибраний стиль",
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Кордони та задній фон",
@@ -2692,9 +2854,9 @@
"DE.Views.Toolbar.capImgForward": "Висувати",
"DE.Views.Toolbar.capImgGroup": "Група",
"DE.Views.Toolbar.capImgWrapping": "Обгортання",
- "DE.Views.Toolbar.mniCapitalizeWords": "Кожне слово з великої літери",
+ "DE.Views.Toolbar.mniCapitalizeWords": "Кожне Слово З Великої Літери",
"DE.Views.Toolbar.mniCustomTable": "Вставити спеціальну таблицю",
- "DE.Views.Toolbar.mniDrawTable": "Намалювати таблицю",
+ "DE.Views.Toolbar.mniDrawTable": "Додати таблицю",
"DE.Views.Toolbar.mniEditControls": "Параметри елемента керування",
"DE.Views.Toolbar.mniEditDropCap": "Буквиця налаштування",
"DE.Views.Toolbar.mniEditFooter": "Змінити нижній колонтитул",
@@ -2704,7 +2866,7 @@
"DE.Views.Toolbar.mniFromStorage": "Зі сховища",
"DE.Views.Toolbar.mniFromUrl": "За URL",
"DE.Views.Toolbar.mniHiddenBorders": "Приховані границі таблиці",
- "DE.Views.Toolbar.mniHiddenChars": "недруковані символи",
+ "DE.Views.Toolbar.mniHiddenChars": "Недруковані символи",
"DE.Views.Toolbar.mniHighlightControls": "Колір підсвітки",
"DE.Views.Toolbar.mniImageFromFile": "Картинка з файлу",
"DE.Views.Toolbar.mniImageFromStorage": "Зображення зі сховища",
@@ -2742,7 +2904,7 @@
"DE.Views.Toolbar.textInsSectionBreak": "Вставити розрив розділу",
"DE.Views.Toolbar.textInText": "у тексті",
"DE.Views.Toolbar.textItalic": "Курсив",
- "DE.Views.Toolbar.textLandscape": "ландшафт",
+ "DE.Views.Toolbar.textLandscape": "Ландшафт",
"DE.Views.Toolbar.textLeft": "Вліво:",
"DE.Views.Toolbar.textListSettings": "Налаштування списку",
"DE.Views.Toolbar.textMarginsLast": "Останній користувач",
@@ -2778,6 +2940,7 @@
"DE.Views.Toolbar.textSuperscript": "Надрядковий",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Відключити для поточного параграфу",
"DE.Views.Toolbar.textTabCollaboration": "Співпраця",
+ "DE.Views.Toolbar.textTabDraw": "Малювати",
"DE.Views.Toolbar.textTabFile": "Файл",
"DE.Views.Toolbar.textTabHome": "Головна",
"DE.Views.Toolbar.textTabInsert": "Вставити",
@@ -2790,7 +2953,7 @@
"DE.Views.Toolbar.textToCurrent": "До поточної позиції",
"DE.Views.Toolbar.textTop": "Верх:",
"DE.Views.Toolbar.textUnderline": "Підкреслений",
- "DE.Views.Toolbar.tipAlignCenter": "Вирівняти центр",
+ "DE.Views.Toolbar.tipAlignCenter": "Відцентрувати",
"DE.Views.Toolbar.tipAlignJust": "По ширині",
"DE.Views.Toolbar.tipAlignLeft": "Вирівняти зліва",
"DE.Views.Toolbar.tipAlignRight": "Вирівняти справа",
@@ -2823,7 +2986,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Вставити рівняння",
"DE.Views.Toolbar.tipInsertImage": "Вставити зображення",
"DE.Views.Toolbar.tipInsertNum": "Вставити номер сторінки",
- "DE.Views.Toolbar.tipInsertShape": "вставити автофігури",
+ "DE.Views.Toolbar.tipInsertShape": "Вставити фігури",
"DE.Views.Toolbar.tipInsertSmartArt": "Вставити фігури",
"DE.Views.Toolbar.tipInsertSymbol": "Вставити символ",
"DE.Views.Toolbar.tipInsertTable": "Вставити таблицю",
@@ -2832,7 +2995,7 @@
"DE.Views.Toolbar.tipLineNumbers": "Показувати номери рядків",
"DE.Views.Toolbar.tipLineSpace": "Розмітка міжрядкових інтервалів",
"DE.Views.Toolbar.tipMailRecepients": "Надіслати ел.поштою",
- "DE.Views.Toolbar.tipMarkers": "Кулі",
+ "DE.Views.Toolbar.tipMarkers": "Ненумерований список",
"DE.Views.Toolbar.tipMarkersArrow": "Маркери-стрілки",
"DE.Views.Toolbar.tipMarkersCheckmark": "Маркери-галочки",
"DE.Views.Toolbar.tipMarkersDash": "Маркери-тире",
@@ -2847,7 +3010,7 @@
"DE.Views.Toolbar.tipMultilevels": "Багаторівневий список",
"DE.Views.Toolbar.tipMultiLevelSymbols": "Багаторівневі маркери-символи",
"DE.Views.Toolbar.tipMultiLevelVarious": "Багаторівневі різні нумеровані маркери",
- "DE.Views.Toolbar.tipNumbers": "Нумерація",
+ "DE.Views.Toolbar.tipNumbers": "Нумерований список",
"DE.Views.Toolbar.tipPageBreak": "Вставити розрив сторінки або розділу",
"DE.Views.Toolbar.tipPageMargins": "Поля сторінки",
"DE.Views.Toolbar.tipPageOrient": "Орієнтація сторінки",
@@ -2856,18 +3019,21 @@
"DE.Views.Toolbar.tipPaste": "Вставити",
"DE.Views.Toolbar.tipPrColor": "Колір заливки",
"DE.Views.Toolbar.tipPrint": "Роздрукувати",
+ "DE.Views.Toolbar.tipPrintQuick": "Швидкий друк",
"DE.Views.Toolbar.tipRedo": "Повторити",
"DE.Views.Toolbar.tipSave": "Зберегти",
"DE.Views.Toolbar.tipSaveCoauth": "Збережіть свої зміни, щоб інші користувачі могли їх переглянути.",
"DE.Views.Toolbar.tipSelectAll": "Вибрати все",
"DE.Views.Toolbar.tipSendBackward": "Відправити назад",
"DE.Views.Toolbar.tipSendForward": "Висувати",
- "DE.Views.Toolbar.tipShowHiddenChars": "недруковані символи",
+ "DE.Views.Toolbar.tipShowHiddenChars": "Недруковані символи",
"DE.Views.Toolbar.tipSynchronize": "Документ був змінений іншим користувачем. Будь ласка, натисніть, щоб зберегти зміни та перезавантажити оновлення.",
"DE.Views.Toolbar.tipUndo": "Скасувати",
"DE.Views.Toolbar.tipWatermark": "Змінити підкладку",
"DE.Views.Toolbar.txtDistribHor": "Розподілити горизонтально",
"DE.Views.Toolbar.txtDistribVert": "Розподілити вертикально",
+ "DE.Views.Toolbar.txtGroupBulletLib": "Бібліотека знаків ненумерованого списку",
+ "DE.Views.Toolbar.txtGroupNumDoc": "Числові формати у документі",
"DE.Views.Toolbar.txtMarginAlign": "Вирівняти відносно поля",
"DE.Views.Toolbar.txtObjectsAlign": "Вирівняти виділені об'єкти",
"DE.Views.Toolbar.txtPageAlign": "Вирівняти відносно сторінки",
@@ -2905,6 +3071,9 @@
"DE.Views.ViewTab.textRulers": "Лінійки",
"DE.Views.ViewTab.textStatusBar": "Рядок стану",
"DE.Views.ViewTab.textZoom": "Масштаб",
+ "DE.Views.ViewTab.tipDarkDocument": "Затемнений документ",
+ "DE.Views.ViewTab.tipFitToPage": "За розміром сторінки",
+ "DE.Views.ViewTab.tipFitToWidth": "По ширині",
"DE.Views.ViewTab.tipHeadings": "Заголовки",
"DE.Views.WatermarkSettingsDialog.textAuto": "Авто",
"DE.Views.WatermarkSettingsDialog.textBold": "Грубий",
diff --git a/apps/documenteditor/main/locale/zh-tw.json b/apps/documenteditor/main/locale/zh-tw.json
index 3ba2a6737b..2555e4a1bd 100644
--- a/apps/documenteditor/main/locale/zh-tw.json
+++ b/apps/documenteditor/main/locale/zh-tw.json
@@ -118,6 +118,9 @@
"Common.define.chartData.textPie": "餅",
"Common.define.chartData.textPie3d": "3-D 圓餅圖",
"Common.define.chartData.textPoint": "XY(散點圖)",
+ "Common.define.chartData.textRadar": "雷達",
+ "Common.define.chartData.textRadarFilled": "填色雷達圖",
+ "Common.define.chartData.textRadarMarker": "含標記的雷達",
"Common.define.chartData.textScatter": "散佈圖",
"Common.define.chartData.textScatterLine": "散佈圖同直線",
"Common.define.chartData.textScatterLineMarker": "散佈圖同直線及標記",
@@ -125,16 +128,173 @@
"Common.define.chartData.textScatterSmoothMarker": "散佈圖同平滑線及標記",
"Common.define.chartData.textStock": "庫存",
"Common.define.chartData.textSurface": "表面",
+ "Common.define.smartArt.textAccentedPicture": "強調圖片",
+ "Common.define.smartArt.textAccentProcess": "強調處理",
+ "Common.define.smartArt.textAlternatingFlow": "交替流程",
+ "Common.define.smartArt.textAlternatingHexagons": "交替六邊形",
+ "Common.define.smartArt.textAlternatingPictureBlocks": "交替圖片區塊",
+ "Common.define.smartArt.textAlternatingPictureCircles": "交替圖片圓形",
+ "Common.define.smartArt.textArchitectureLayout": "架構佈局",
+ "Common.define.smartArt.textArrowRibbon": "箭頭緞帶",
+ "Common.define.smartArt.textAscendingPictureAccentProcess": "升序圖片強調處理",
+ "Common.define.smartArt.textBalance": "平衡",
+ "Common.define.smartArt.textBasicBendingProcess": "基本彎曲流程",
+ "Common.define.smartArt.textBasicBlockList": "基本塊清單",
+ "Common.define.smartArt.textBasicChevronProcess": "基本雪佛龍流程",
+ "Common.define.smartArt.textBasicCycle": "基本循環",
+ "Common.define.smartArt.textBasicMatrix": "基本矩陣",
+ "Common.define.smartArt.textBasicPie": "基本圓餅圖",
+ "Common.define.smartArt.textBasicProcess": "基本流程",
+ "Common.define.smartArt.textBasicPyramid": "基本金字塔",
+ "Common.define.smartArt.textBasicRadial": "基本射線狀",
+ "Common.define.smartArt.textBasicTarget": "基本目標",
+ "Common.define.smartArt.textBasicTimeline": "基本時間軸",
+ "Common.define.smartArt.textBasicVenn": "基本文氏圖",
+ "Common.define.smartArt.textBendingPictureAccentList": "彎曲圖片強調清單",
+ "Common.define.smartArt.textBendingPictureBlocks": "彎曲圖片區塊",
+ "Common.define.smartArt.textBendingPictureCaption": "彎曲圖片標題",
+ "Common.define.smartArt.textBendingPictureCaptionList": "彎曲圖片標題清單",
+ "Common.define.smartArt.textBendingPictureSemiTranparentText": "彎曲圖片半透明文字",
+ "Common.define.smartArt.textBlockCycle": "區塊循環",
+ "Common.define.smartArt.textBubblePictureList": "氣泡圖片清單",
+ "Common.define.smartArt.textCaptionedPictures": "帶標題的圖片",
+ "Common.define.smartArt.textChevronAccentProcess": "箭頭強調流程",
+ "Common.define.smartArt.textChevronList": "箭頭清單",
+ "Common.define.smartArt.textCircleAccentTimeline": "圓形強調時間軸",
+ "Common.define.smartArt.textCircleArrowProcess": "圓形箭頭流程",
+ "Common.define.smartArt.textCirclePictureHierarchy": "圓形圖片階層結構",
+ "Common.define.smartArt.textCircleProcess": "圓形流程",
+ "Common.define.smartArt.textCircleRelationship": "圓形關係",
+ "Common.define.smartArt.textCircularBendingProcess": "圓形彎曲流程",
+ "Common.define.smartArt.textCircularPictureCallout": "圓形圖片註解",
+ "Common.define.smartArt.textClosedChevronProcess": "閉合箭頭流程",
+ "Common.define.smartArt.textContinuousArrowProcess": "連續箭頭流程",
+ "Common.define.smartArt.textContinuousBlockProcess": "連續塊流程",
+ "Common.define.smartArt.textContinuousCycle": "連續循環",
+ "Common.define.smartArt.textContinuousPictureList": "連續圖片清單",
+ "Common.define.smartArt.textConvergingArrows": "匯聚箭頭",
+ "Common.define.smartArt.textConvergingRadial": "匯聚射線狀",
+ "Common.define.smartArt.textConvergingText": "匯聚文字",
+ "Common.define.smartArt.textCounterbalanceArrows": "平衡箭頭",
+ "Common.define.smartArt.textCycle": "循環",
+ "Common.define.smartArt.textCycleMatrix": "循環矩陣",
+ "Common.define.smartArt.textDescendingBlockList": "降序區塊清單",
+ "Common.define.smartArt.textDescendingProcess": "降序流程",
+ "Common.define.smartArt.textDetailedProcess": "詳細流程",
+ "Common.define.smartArt.textDivergingArrows": "發散箭頭",
+ "Common.define.smartArt.textDivergingRadial": "發散徑向",
"Common.define.smartArt.textEquation": "方程式",
+ "Common.define.smartArt.textFramedTextPicture": "框架文字圖片",
"Common.define.smartArt.textFunnel": "漏斗",
+ "Common.define.smartArt.textGear": "齒輪",
+ "Common.define.smartArt.textGridMatrix": "網格矩陣",
+ "Common.define.smartArt.textGroupedList": "分組清單",
+ "Common.define.smartArt.textHalfCircleOrganizationChart": "半圓形組織圖",
+ "Common.define.smartArt.textHexagonCluster": "六邊形群組",
+ "Common.define.smartArt.textHexagonRadial": "六邊形徑向",
+ "Common.define.smartArt.textHierarchy": "階層結構",
+ "Common.define.smartArt.textHierarchyList": "階層清單",
+ "Common.define.smartArt.textHorizontalBulletList": "水平項目符號清單",
+ "Common.define.smartArt.textHorizontalHierarchy": "水平階層結構",
+ "Common.define.smartArt.textHorizontalLabeledHierarchy": "水平標籤階層結構",
+ "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "水平多層階層結構",
+ "Common.define.smartArt.textHorizontalOrganizationChart": "水平組織圖",
+ "Common.define.smartArt.textHorizontalPictureList": "水平圖片清單",
+ "Common.define.smartArt.textIncreasingArrowProcess": "遞增箭頭流程",
+ "Common.define.smartArt.textIncreasingCircleProcess": "遞增圓圈流程",
+ "Common.define.smartArt.textInterconnectedBlockProcess": "互連區塊流程",
+ "Common.define.smartArt.textInterconnectedRings": "互連環圖",
+ "Common.define.smartArt.textInvertedPyramid": "倒金字塔",
+ "Common.define.smartArt.textLabeledHierarchy": "含標籤的階層結構",
+ "Common.define.smartArt.textLinearVenn": "線性文氏圖",
+ "Common.define.smartArt.textLinedList": "有格線的清單",
"Common.define.smartArt.textList": "清單",
+ "Common.define.smartArt.textMatrix": "矩陣",
+ "Common.define.smartArt.textMultidirectionalCycle": "多方向循環",
+ "Common.define.smartArt.textNameAndTitleOrganizationChart": "名稱與職稱組織圖",
+ "Common.define.smartArt.textNestedTarget": "巢狀目標",
+ "Common.define.smartArt.textNondirectionalCycle": "無方向循環",
+ "Common.define.smartArt.textOpposingArrows": "相對箭頭",
+ "Common.define.smartArt.textOpposingIdeas": "相對觀點",
+ "Common.define.smartArt.textOrganizationChart": "組織圖",
"Common.define.smartArt.textOther": "其它",
+ "Common.define.smartArt.textPhasedProcess": "分階處理",
"Common.define.smartArt.textPicture": "圖片",
+ "Common.define.smartArt.textPictureAccentBlocks": "圖片強調區塊",
+ "Common.define.smartArt.textPictureAccentList": "圖片強調清單",
+ "Common.define.smartArt.textPictureAccentProcess": "圖片強調流程",
+ "Common.define.smartArt.textPictureCaptionList": "圖片標題列表",
+ "Common.define.smartArt.textPictureFrame": "圖片框架",
+ "Common.define.smartArt.textPictureGrid": "圖片網格",
+ "Common.define.smartArt.textPictureLineup": "圖片排列",
+ "Common.define.smartArt.textPictureOrganizationChart": "圖片組織圖",
+ "Common.define.smartArt.textPictureStrips": "圖片條帶",
+ "Common.define.smartArt.textPieProcess": "圓餅圖流程",
+ "Common.define.smartArt.textPlusAndMinus": "加號和減號",
+ "Common.define.smartArt.textProcess": "流程",
+ "Common.define.smartArt.textProcessArrows": "流程箭頭",
+ "Common.define.smartArt.textProcessList": "流程清單",
+ "Common.define.smartArt.textPyramid": "金字塔",
+ "Common.define.smartArt.textPyramidList": "金字塔清單",
+ "Common.define.smartArt.textRadialCluster": "徑向群組",
+ "Common.define.smartArt.textRadialCycle": "徑向循環",
+ "Common.define.smartArt.textRadialList": "徑向清單",
+ "Common.define.smartArt.textRadialPictureList": "徑向圖片清單",
+ "Common.define.smartArt.textRadialVenn": "徑向文氏圖",
+ "Common.define.smartArt.textRandomToResultProcess": "隨機結果處理",
+ "Common.define.smartArt.textRelationship": "關聯性",
+ "Common.define.smartArt.textRepeatingBendingProcess": "重複彎曲流程",
+ "Common.define.smartArt.textReverseList": "反向清單",
+ "Common.define.smartArt.textSegmentedCycle": "分段循環",
+ "Common.define.smartArt.textSegmentedProcess": "分段流程",
+ "Common.define.smartArt.textSegmentedPyramid": "分段金字塔",
+ "Common.define.smartArt.textSnapshotPictureList": "快照圖片清單",
+ "Common.define.smartArt.textSpiralPicture": "螺旋圖片",
+ "Common.define.smartArt.textSquareAccentList": "方形強調清單",
+ "Common.define.smartArt.textStackedList": "堆疊清單",
+ "Common.define.smartArt.textStackedVenn": "堆疊文氏圖",
+ "Common.define.smartArt.textStaggeredProcess": "交錯式流程",
+ "Common.define.smartArt.textStepDownProcess": "向下階梯式流程",
+ "Common.define.smartArt.textStepUpProcess": "向上階梯式流程",
+ "Common.define.smartArt.textSubStepProcess": "子階段式流程",
+ "Common.define.smartArt.textTabbedArc": "已定位的弧形",
+ "Common.define.smartArt.textTableHierarchy": "表格階層",
+ "Common.define.smartArt.textTableList": "表格清單",
+ "Common.define.smartArt.textTabList": "定位清單",
+ "Common.define.smartArt.textTargetList": "目標清單",
+ "Common.define.smartArt.textTextCycle": "文字循環",
+ "Common.define.smartArt.textThemePictureAccent": "主題圖片強調",
+ "Common.define.smartArt.textThemePictureAlternatingAccent": "主題圖片交替強調",
+ "Common.define.smartArt.textThemePictureGrid": "主題圖片網格",
+ "Common.define.smartArt.textTitledMatrix": "標題矩陣",
+ "Common.define.smartArt.textTitledPictureAccentList": "標題圖片強調清單",
+ "Common.define.smartArt.textTitledPictureBlocks": "標題圖片區塊",
+ "Common.define.smartArt.textTitlePictureLineup": "標題圖片排列",
+ "Common.define.smartArt.textTrapezoidList": "梯形清單",
+ "Common.define.smartArt.textUpwardArrow": "向上箭頭",
+ "Common.define.smartArt.textVaryingWidthList": "寬度不一的清單",
+ "Common.define.smartArt.textVerticalAccentList": "垂直強調清單",
+ "Common.define.smartArt.textVerticalArrowList": "垂直箭頭清單",
+ "Common.define.smartArt.textVerticalBendingProcess": "垂直彎曲流程",
+ "Common.define.smartArt.textVerticalBlockList": "垂直區塊清單",
+ "Common.define.smartArt.textVerticalBoxList": "垂直方塊清單",
+ "Common.define.smartArt.textVerticalBracketList": "垂直括弧清單",
+ "Common.define.smartArt.textVerticalBulletList": "垂直項目符號清單",
+ "Common.define.smartArt.textVerticalChevronList": "垂直V型清單",
+ "Common.define.smartArt.textVerticalCircleList": "垂直循環清單",
+ "Common.define.smartArt.textVerticalCurvedList": "垂直彎曲清單",
+ "Common.define.smartArt.textVerticalEquation": "垂直方程式",
+ "Common.define.smartArt.textVerticalPictureAccentList": "垂直圖片強調清單",
+ "Common.define.smartArt.textVerticalPictureList": "垂直圖片清單",
+ "Common.define.smartArt.textVerticalProcess": "垂直流程",
"Common.Translation.textMoreButton": "更多",
+ "Common.Translation.tipFileLocked": "文件已鎖定編輯。您可以進行更改並保存為本機副本。",
+ "Common.Translation.tipFileReadOnly": "此檔案是唯讀的。若要保留您的更改,請以新名稱或不同位置儲存此檔案。",
"Common.Translation.warnFileLocked": "該文件正在另一個應用程式中進行編輯。您可以繼續編輯並將其另存為副本。",
"Common.Translation.warnFileLockedBtnEdit": "\n建立副本",
"Common.Translation.warnFileLockedBtnView": "打開查看",
"Common.UI.ButtonColored.textAutoColor": "自動",
+ "Common.UI.ButtonColored.textEyedropper": "滴管工具",
"Common.UI.ButtonColored.textNewColor": "新增自訂顏色",
"Common.UI.Calendar.textApril": "四月",
"Common.UI.Calendar.textAugust": "八月",
@@ -178,6 +338,7 @@
"Common.UI.ExtendedColorDialog.textNew": "新",
"Common.UI.ExtendedColorDialog.textRGBErr": "輸入的值不正確。 請輸入0到255之間的數字。",
"Common.UI.HSBColorPicker.textNoColor": "無顏色",
+ "Common.UI.InputFieldBtnCalendar.textDate": "選取日期",
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "不顯示密碼",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "顯示密碼",
"Common.UI.SearchBar.textFind": "尋找",
@@ -200,6 +361,7 @@
"Common.UI.ThemeColorPalette.textRecentColors": "近期顏色",
"Common.UI.ThemeColorPalette.textStandartColors": "標準顏色",
"Common.UI.ThemeColorPalette.textThemeColors": "主題顏色",
+ "Common.UI.ThemeColorPalette.textTransparent": "透明",
"Common.UI.Themes.txtThemeClassicLight": "傳統亮色",
"Common.UI.Themes.txtThemeContrastDark": "暗色對比",
"Common.UI.Themes.txtThemeDark": "暗",
@@ -221,10 +383,43 @@
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "Shift",
"Common.Utils.ThemeColor.txtaccent": "口音",
+ "Common.Utils.ThemeColor.txtAqua": "淺綠色",
"Common.Utils.ThemeColor.txtbackground": "背景",
+ "Common.Utils.ThemeColor.txtBlack": "黑色",
+ "Common.Utils.ThemeColor.txtBlue": "藍色",
+ "Common.Utils.ThemeColor.txtBrightGreen": "亮綠色",
+ "Common.Utils.ThemeColor.txtBrown": "棕色",
+ "Common.Utils.ThemeColor.txtDarkBlue": "深藍色",
+ "Common.Utils.ThemeColor.txtDarker": "較深的",
+ "Common.Utils.ThemeColor.txtDarkGray": "深灰色",
"Common.Utils.ThemeColor.txtDarkGreen": "深綠色",
+ "Common.Utils.ThemeColor.txtDarkPurple": "深紫色",
+ "Common.Utils.ThemeColor.txtDarkRed": "深紅色",
+ "Common.Utils.ThemeColor.txtDarkTeal": "藍綠色",
+ "Common.Utils.ThemeColor.txtDarkYellow": "深黃色",
+ "Common.Utils.ThemeColor.txtGold": "金色",
+ "Common.Utils.ThemeColor.txtGray": "灰色",
"Common.Utils.ThemeColor.txtGreen": "綠色",
+ "Common.Utils.ThemeColor.txtIndigo": "靛藍色",
+ "Common.Utils.ThemeColor.txtLavender": "薰衣草色",
+ "Common.Utils.ThemeColor.txtLightBlue": "淺藍色",
+ "Common.Utils.ThemeColor.txtLighter": "較淺的",
+ "Common.Utils.ThemeColor.txtLightGray": "淺灰色",
+ "Common.Utils.ThemeColor.txtLightGreen": "淺綠色",
+ "Common.Utils.ThemeColor.txtLightOrange": "淺橙色",
+ "Common.Utils.ThemeColor.txtLightYellow": "淺黃色",
+ "Common.Utils.ThemeColor.txtOrange": "橘色",
+ "Common.Utils.ThemeColor.txtPink": "粉紅色",
+ "Common.Utils.ThemeColor.txtPurple": "紫色",
+ "Common.Utils.ThemeColor.txtRed": "紅色",
+ "Common.Utils.ThemeColor.txtRose": "玫瑰色",
+ "Common.Utils.ThemeColor.txtSkyBlue": "天空藍",
+ "Common.Utils.ThemeColor.txtTeal": "藍綠色",
"Common.Utils.ThemeColor.txttext": "文字",
+ "Common.Utils.ThemeColor.txtTurquosie": "藍綠色",
+ "Common.Utils.ThemeColor.txtViolet": "紫羅蘭色",
+ "Common.Utils.ThemeColor.txtWhite": "白色",
+ "Common.Utils.ThemeColor.txtYellow": "黃色",
"Common.Views.About.txtAddress": "地址:",
"Common.Views.About.txtLicensee": "被許可人",
"Common.Views.About.txtLicensor": "許可人",
@@ -241,7 +436,9 @@
"Common.Views.AutoCorrectDialog.textDelete": "刪除",
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "按兩下空白鍵自動增加一個句點(.)符號",
"Common.Views.AutoCorrectDialog.textFLCells": "儲存格首字母大寫",
+ "Common.Views.AutoCorrectDialog.textFLDont": "請勿在之後大寫",
"Common.Views.AutoCorrectDialog.textFLSentence": "英文句子第一個字母大寫",
+ "Common.Views.AutoCorrectDialog.textForLangFL": "語言例外:",
"Common.Views.AutoCorrectDialog.textHyperlink": "網絡路徑超連結",
"Common.Views.AutoCorrectDialog.textHyphens": "帶連字符(-)的連字符(-)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "數學自動更正",
@@ -256,7 +453,9 @@
"Common.Views.AutoCorrectDialog.textResetAll": "重置為預設",
"Common.Views.AutoCorrectDialog.textRestore": "恢復",
"Common.Views.AutoCorrectDialog.textTitle": "自動更正",
+ "Common.Views.AutoCorrectDialog.textWarnAddFL": "例外必須包含只有字母,大小寫不拘。",
"Common.Views.AutoCorrectDialog.textWarnAddRec": "公認的函數只能包含字母A到Z,大寫或小寫。",
+ "Common.Views.AutoCorrectDialog.textWarnResetFL": "您新增的所有例外狀況都將被移除,已移除的例外狀況將會被還原。您要繼續嗎?",
"Common.Views.AutoCorrectDialog.textWarnResetRec": "您新增的所有表達式都將被刪除,被刪除的表達式將被恢復。你想繼續嗎?",
"Common.Views.AutoCorrectDialog.warnReplace": "%1的自動更正條目已存在。您要更換嗎?",
"Common.Views.AutoCorrectDialog.warnReset": "您增加的所有自動更正功能將被刪除,更改後的自動更正將恢復為其原始值。你想繼續嗎?",
@@ -297,8 +496,12 @@
"Common.Views.CopyWarningDialog.textToPaste": "粘貼",
"Common.Views.DocumentAccessDialog.textLoading": "載入中...",
"Common.Views.DocumentAccessDialog.textTitle": "分享設定",
+ "Common.Views.Draw.hintEraser": "橡皮擦",
"Common.Views.Draw.hintSelect": "選擇",
+ "Common.Views.Draw.txtEraser": "橡皮擦",
+ "Common.Views.Draw.txtHighlighter": "螢光筆",
"Common.Views.Draw.txtMM": "分",
+ "Common.Views.Draw.txtPen": "筆",
"Common.Views.Draw.txtSelect": "選擇",
"Common.Views.Draw.txtSize": "大小",
"Common.Views.ExternalDiagramEditor.textTitle": "圖表編輯器",
@@ -321,6 +524,7 @@
"Common.Views.Header.tipDownload": "下載文件",
"Common.Views.Header.tipGoEdit": "編輯當前文件",
"Common.Views.Header.tipPrint": "列印文件",
+ "Common.Views.Header.tipPrintQuick": "快速列印",
"Common.Views.Header.tipRedo": "重複",
"Common.Views.Header.tipSave": "存檔",
"Common.Views.Header.tipSearch": "搜尋",
@@ -398,6 +602,7 @@
"Common.Views.ReviewChanges.textWarnTrackChangesTitle": "幫所有使用者開啟Track Changes?",
"Common.Views.ReviewChanges.tipAcceptCurrent": "同意當前更改",
"Common.Views.ReviewChanges.tipCoAuthMode": "設定共同編輯模式",
+ "Common.Views.ReviewChanges.tipCombine": "將當前文件與另一個文件合併",
"Common.Views.ReviewChanges.tipCommentRem": "刪除註解",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "刪除當前註解",
"Common.Views.ReviewChanges.tipCommentResolve": "標記註解為已解決",
@@ -417,6 +622,7 @@
"Common.Views.ReviewChanges.txtChat": "聊天",
"Common.Views.ReviewChanges.txtClose": "關閉",
"Common.Views.ReviewChanges.txtCoAuthMode": "共同編輯模式",
+ "Common.Views.ReviewChanges.txtCombine": "合併",
"Common.Views.ReviewChanges.txtCommentRemAll": "刪除所有註解",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "刪除當前註解",
"Common.Views.ReviewChanges.txtCommentRemMy": "刪除我的註解",
@@ -484,14 +690,18 @@
"Common.Views.SaveAsDlg.textTitle": "儲存文件夾",
"Common.Views.SearchPanel.textCaseSensitive": "區分大小寫",
"Common.Views.SearchPanel.textCloseSearch": "關閉搜索",
+ "Common.Views.SearchPanel.textContentChanged": "文件已變更",
"Common.Views.SearchPanel.textFind": "尋找",
"Common.Views.SearchPanel.textFindAndReplace": "尋找與取代",
+ "Common.Views.SearchPanel.textItemsSuccessfullyReplaced": "{0} 項成功取代。",
"Common.Views.SearchPanel.textMatchUsingRegExp": "用正規表達式進行匹配",
"Common.Views.SearchPanel.textNoMatches": "查無匹配",
"Common.Views.SearchPanel.textNoSearchResults": "查無搜索结果",
+ "Common.Views.SearchPanel.textPartOfItemsNotReplaced": "{0}/{1} 項已取代。剩餘 {2} 項被其他使用者鎖定。",
"Common.Views.SearchPanel.textReplace": "取代",
"Common.Views.SearchPanel.textReplaceAll": "取代全部",
"Common.Views.SearchPanel.textReplaceWith": "替換為",
+ "Common.Views.SearchPanel.textSearchAgain": "{0}進行新的搜尋{1}以獲得準確的結果。",
"Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止",
"Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}",
"Common.Views.SearchPanel.textTooManyResults": "因數量過多而無法顯示部分結果",
@@ -516,6 +726,7 @@
"Common.Views.SignDialog.tipFontName": "字體名稱",
"Common.Views.SignDialog.tipFontSize": "字體大小",
"Common.Views.SignSettingsDialog.textAllowComment": "允許簽名者在簽名對話框中添加註釋",
+ "Common.Views.SignSettingsDialog.textDefInstruction": "在簽署此文件之前,請驗證您正在簽署的內容是否正確。",
"Common.Views.SignSettingsDialog.textInfoEmail": "電子郵件",
"Common.Views.SignSettingsDialog.textInfoName": "名稱",
"Common.Views.SignSettingsDialog.textInfoTitle": "簽名人稱號",
@@ -553,6 +764,15 @@
"Common.Views.UserNameDialog.textDontShow": "不要再顯示",
"Common.Views.UserNameDialog.textLabel": "標籤:",
"Common.Views.UserNameDialog.textLabelError": "標籤不能為空。",
+ "DE.Controllers.DocProtection.txtIsProtectedComment": "文件受到保護。您只能在此文件中插入註解。",
+ "DE.Controllers.DocProtection.txtIsProtectedForms": "文件受到保護。您只能在此文件中填寫表單。",
+ "DE.Controllers.DocProtection.txtIsProtectedTrack": "文件受到保護。您可以編輯此文件,但所有更改都將被追蹤。",
+ "DE.Controllers.DocProtection.txtIsProtectedView": "文件受到保護。您只能檢視此文件。",
+ "DE.Controllers.DocProtection.txtWasProtectedComment": "文件已由其他使用者保護。您只能在此文件中插入註解。",
+ "DE.Controllers.DocProtection.txtWasProtectedForms": "文件已由其他使用者保護。您只能在此文件中填寫表單。",
+ "DE.Controllers.DocProtection.txtWasProtectedTrack": "文件已由其他使用者保護。您可以編輯此文件,但所有更改都將被追蹤。",
+ "DE.Controllers.DocProtection.txtWasProtectedView": "文件已由其他使用者保護。您只能檢視此文件。",
+ "DE.Controllers.DocProtection.txtWasUnprotected": "文件已取消保護。",
"DE.Controllers.LeftMenu.leavePageText": "該文檔中所有未儲存的更改都將丟失。 單擊“取消”,然後單擊“存檔”以保存它們。單擊“確定”,放棄所有未儲存的更改。",
"DE.Controllers.LeftMenu.newDocumentTitle": "未命名文件",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告",
@@ -569,6 +789,7 @@
"DE.Controllers.LeftMenu.warnReplaceString": "{0}不可用於替換段文字落的有效特殊符號。",
"DE.Controllers.Main.applyChangesTextText": "加載更改...",
"DE.Controllers.Main.applyChangesTitleText": "加載更改",
+ "DE.Controllers.Main.confirmMaxChangesSize": "操作的大小超過了伺服器設定的限制。 按下「復原」以取消最後一個動作,或按下「繼續」以在本地保留動作(需下載檔案或複製其內容,以確保不會遺失任何內容)",
"DE.Controllers.Main.convertationTimeoutText": "轉換逾時。",
"DE.Controllers.Main.criticalErrorExtText": "按“確定”返回文檔列表。",
"DE.Controllers.Main.criticalErrorTitle": "錯誤",
@@ -579,6 +800,7 @@
"DE.Controllers.Main.downloadTitleText": "文件下載中",
"DE.Controllers.Main.errorAccessDeny": "您嘗試進行未被授權的動作。 請聯繫您的文件伺服器主機的管理者。",
"DE.Controllers.Main.errorBadImageUrl": "不正確的圖像 URL",
+ "DE.Controllers.Main.errorCannotPasteImg": "我們無法從剪貼簿貼上此圖片,但您可以將其儲存到您的裝置,然後再從那裡插入;或者您可以複製不帶文字的圖片並將其貼入文件中。",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "服務器連接丟失。該文檔目前無法編輯。",
"DE.Controllers.Main.errorComboSeries": "如要新增組合圖表,選擇兩個以上的Series資料。",
"DE.Controllers.Main.errorCompare": "共同編輯時,“比較文檔”功能不可用。",
@@ -595,6 +817,11 @@
"DE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。",
"DE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小 進一步資訊,請聯絡您的文件服務主機的管理者。",
"DE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦硬碟中,或稍後再試。",
+ "DE.Controllers.Main.errorInconsistentExt": "在開啟檔案時發生錯誤。 檔案內容與檔案的副檔名不相符。",
+ "DE.Controllers.Main.errorInconsistentExtDocx": "在開啟檔案時發生錯誤。 檔案內容對應文字文件 (例如 docx),但檔案的副檔名不一致: %1。",
+ "DE.Controllers.Main.errorInconsistentExtPdf": "在開啟檔案時發生錯誤。 檔案內容對應以下格式之一:pdf/djvu/xps/oxps,但檔案的副檔名不一致: %1。",
+ "DE.Controllers.Main.errorInconsistentExtPptx": "在開啟檔案時發生錯誤。 檔案內容對應以下格式之一:pdf/djvu/xps/oxps,但檔案的副檔名不一致: %1。",
+ "DE.Controllers.Main.errorInconsistentExtXlsx": "在開啟檔案時發生錯誤。 檔案內容對應試算表 (例如 xlsx),但檔案的副檔名不一致: %1。",
"DE.Controllers.Main.errorKeyEncrypt": "未知密鑰描述符",
"DE.Controllers.Main.errorKeyExpire": "密鑰描述符已過期",
"DE.Controllers.Main.errorLoadingFont": "字體未加載。 請聯繫文件服務器管理員。",
@@ -610,6 +837,7 @@
"DE.Controllers.Main.errorSetPassword": "無法重設密碼。",
"DE.Controllers.Main.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序 出價, 最高價, 最低價, 節標價。",
"DE.Controllers.Main.errorSubmit": "傳送失敗",
+ "DE.Controllers.Main.errorTextFormWrongFormat": "輸入的值與欄位格式不符。",
"DE.Controllers.Main.errorToken": "文檔安全令牌的格式不正確。 請與您的Document Server管理員聯繫。",
"DE.Controllers.Main.errorTokenExpire": "文檔安全令牌已過期。 請與您的Document Server管理員聯繫。",
"DE.Controllers.Main.errorUpdateVersion": "文件版本已更改。該頁面將重新加載。",
@@ -651,6 +879,7 @@
"DE.Controllers.Main.splitMaxColsErrorText": "列數必須少於%1。",
"DE.Controllers.Main.splitMaxRowsErrorText": "行數必須少於%1。",
"DE.Controllers.Main.textAnonymous": "匿名",
+ "DE.Controllers.Main.textAnyone": "任何人",
"DE.Controllers.Main.textApplyAll": "適用於所有方程式",
"DE.Controllers.Main.textBuyNow": "訪問網站",
"DE.Controllers.Main.textChangesSaved": "所有更改已儲存",
@@ -677,10 +906,12 @@
"DE.Controllers.Main.textShape": "形狀",
"DE.Controllers.Main.textStrict": "嚴格模式",
"DE.Controllers.Main.textText": "文字",
+ "DE.Controllers.Main.textTryQuickPrint": "您已選擇快速列印:整個文件將由上次選定或預設的印表機列印。 是否要繼續?",
"DE.Controllers.Main.textTryUndoRedo": "快速共同編輯模式禁用了“復原/重複”功能。 點擊“嚴格模式”按鈕切換到“嚴格共同編輯”模式以編輯文件而不會受到其他帳戶的干擾,並且僅在保存後發送更改他們。您可以使用編輯器的“進階”設置在共同編輯模式之間切換。",
"DE.Controllers.Main.textTryUndoRedoWarn": "在快速共同編輯模式下,復原/重複功能被禁用。",
"DE.Controllers.Main.textUndo": "復原",
"DE.Controllers.Main.titleLicenseExp": "證件過期",
+ "DE.Controllers.Main.titleLicenseNotActive": "授權未啟用",
"DE.Controllers.Main.titleServerVersion": "編輯器已更新",
"DE.Controllers.Main.titleUpdateVersion": "版本已更改",
"DE.Controllers.Main.txtAbove": "以上",
@@ -940,6 +1171,8 @@
"DE.Controllers.Main.waitText": "請耐心等待...",
"DE.Controllers.Main.warnBrowserIE9": "該應用程序在IE9上具有較低的功能。使用IE10或更高版本",
"DE.Controllers.Main.warnBrowserZoom": "瀏覽器當前的縮放設置不受完全支持。請按Ctrl + 0重置為預設縮放。",
+ "DE.Controllers.Main.warnLicenseAnonymous": "匿名使用者無法存取。 此文件將僅供檢視。",
+ "DE.Controllers.Main.warnLicenseBefore": "授權未啟用。 請聯絡您的管理員。",
"DE.Controllers.Main.warnLicenseExceeded": "您的系統已經達到同時編輯連線的 %1 編輯器。只能以檢視模式開啟此文件。 欲得知進一步訊息, 請聯絡您的帳號管理者。",
"DE.Controllers.Main.warnLicenseExp": "您的授權證已過期. 請更新您的授權證並重新整理頁面。",
"DE.Controllers.Main.warnLicenseLimitedNoAccess": "授權過期 您已沒有編輯文件功能的授權 請與您的管理者聯繫。",
@@ -952,6 +1185,8 @@
"DE.Controllers.Navigation.txtGotoBeginning": "轉到文檔的開頭",
"DE.Controllers.Print.textMarginsLast": "最後自訂",
"DE.Controllers.Print.txtCustom": "自訂",
+ "DE.Controllers.Print.txtPrintRangeInvalid": "無效的列印範圍",
+ "DE.Controllers.Print.txtPrintRangeSingleRange": "請輸入單一頁面編號或頁面範圍(例如,5-12)。或者以PDF格式列印。",
"DE.Controllers.Search.notcriticalErrorTitle": "警告",
"DE.Controllers.Search.textNoTextFound": "找不到您在搜索的數據。請調整您的搜索選項。",
"DE.Controllers.Search.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。",
@@ -1351,20 +1586,31 @@
"DE.Views.CellsAddDialog.textRow": "行列",
"DE.Views.CellsAddDialog.textTitle": "插入多個",
"DE.Views.CellsAddDialog.textUp": "游標上方",
+ "DE.Views.ChartSettings.text3dDepth": "深度(基準的百分比)",
+ "DE.Views.ChartSettings.text3dHeight": "高度(基準的百分比)",
+ "DE.Views.ChartSettings.text3dRotation": "3D 旋轉",
"DE.Views.ChartSettings.textAdvanced": "顯示進階設定",
+ "DE.Views.ChartSettings.textAutoscale": "自動縮放",
"DE.Views.ChartSettings.textChartType": "變更圖表類型",
+ "DE.Views.ChartSettings.textDefault": "預設旋轉",
"DE.Views.ChartSettings.textDown": "下",
"DE.Views.ChartSettings.textEditData": "編輯資料",
"DE.Views.ChartSettings.textHeight": "\n高度",
"DE.Views.ChartSettings.textLeft": "左",
+ "DE.Views.ChartSettings.textNarrow": "窄視角",
"DE.Views.ChartSettings.textOriginalSize": "實際大小",
+ "DE.Views.ChartSettings.textPerspective": "透視",
"DE.Views.ChartSettings.textRight": "右",
+ "DE.Views.ChartSettings.textRightAngle": "直角座標軸",
"DE.Views.ChartSettings.textSize": "大小",
"DE.Views.ChartSettings.textStyle": "風格",
"DE.Views.ChartSettings.textUndock": "從面板上卸下",
"DE.Views.ChartSettings.textUp": "上",
+ "DE.Views.ChartSettings.textWiden": "廣角",
"DE.Views.ChartSettings.textWidth": "寬度",
"DE.Views.ChartSettings.textWrap": "包覆風格",
+ "DE.Views.ChartSettings.textX": "X軸旋轉",
+ "DE.Views.ChartSettings.textY": "Y軸旋轉",
"DE.Views.ChartSettings.txtBehind": "文字在後",
"DE.Views.ChartSettings.txtInFront": "文字在前",
"DE.Views.ChartSettings.txtInline": "與文字排列",
@@ -1445,6 +1691,7 @@
"DE.Views.CrossReferenceDialog.txtTitle": "相互參照",
"DE.Views.CrossReferenceDialog.txtType": "參考類型",
"DE.Views.CustomColumnsDialog.textColumns": "列數",
+ "DE.Views.CustomColumnsDialog.textEqualWidth": "平均分配欄寬",
"DE.Views.CustomColumnsDialog.textSeparator": "欄位分隔線",
"DE.Views.CustomColumnsDialog.textTitle": "欄",
"DE.Views.CustomColumnsDialog.textTitleSpacing": "間距",
@@ -1456,15 +1703,24 @@
"DE.Views.DateTimeDialog.textUpdate": "自動更新",
"DE.Views.DateTimeDialog.txtTitle": "日期和時間",
"DE.Views.DocProtection.hintProtectDoc": "受保護的文件",
+ "DE.Views.DocProtection.txtDocProtectedComment": "文件受到保護。您只能在此文件中插入註解。",
+ "DE.Views.DocProtection.txtDocProtectedForms": "文件受到保護。您只能在此文件中填寫表單。",
+ "DE.Views.DocProtection.txtDocProtectedTrack": "文件已由其他使用者保護。您可以編輯此文件,但所有更改都將被追蹤。",
+ "DE.Views.DocProtection.txtDocProtectedView": "文件受到保護。您只能檢視此文件。",
+ "DE.Views.DocProtection.txtDocUnlockDescription": "輸入密碼以解除對文件的保護",
"DE.Views.DocProtection.txtProtectDoc": "受保護的文件",
+ "DE.Views.DocProtection.txtUnlockTitle": "解除保護文件",
"DE.Views.DocumentHolder.aboveText": "以上",
"DE.Views.DocumentHolder.addCommentText": "新增註解",
"DE.Views.DocumentHolder.advancedDropCapText": "首字大寫設定",
+ "DE.Views.DocumentHolder.advancedEquationText": "方程式設定",
"DE.Views.DocumentHolder.advancedFrameText": "框的進階設置",
"DE.Views.DocumentHolder.advancedParagraphText": "段落進階設置",
"DE.Views.DocumentHolder.advancedTableText": "表格進階設定",
"DE.Views.DocumentHolder.advancedText": "進階設定",
"DE.Views.DocumentHolder.alignmentText": "對齊",
+ "DE.Views.DocumentHolder.allLinearText": "全部 - 線性",
+ "DE.Views.DocumentHolder.allProfText": "全部 - 專業",
"DE.Views.DocumentHolder.belowText": "之下",
"DE.Views.DocumentHolder.breakBeforeText": "分頁之前",
"DE.Views.DocumentHolder.bulletsText": "項目符和編號",
@@ -1473,6 +1729,8 @@
"DE.Views.DocumentHolder.centerText": "中心",
"DE.Views.DocumentHolder.chartText": "圖表進階設置",
"DE.Views.DocumentHolder.columnText": "欄",
+ "DE.Views.DocumentHolder.currLinearText": "目前 - 線性",
+ "DE.Views.DocumentHolder.currProfText": "目前 - 專業",
"DE.Views.DocumentHolder.deleteColumnText": "刪除欄位",
"DE.Views.DocumentHolder.deleteRowText": "刪除行列",
"DE.Views.DocumentHolder.deleteTableText": "刪除表格",
@@ -1485,6 +1743,7 @@
"DE.Views.DocumentHolder.editFooterText": "編輯頁腳",
"DE.Views.DocumentHolder.editHeaderText": "編輯標題",
"DE.Views.DocumentHolder.editHyperlinkText": "編輯超連結",
+ "DE.Views.DocumentHolder.eqToInlineText": "更改為內嵌",
"DE.Views.DocumentHolder.guestText": "來賓帳戶",
"DE.Views.DocumentHolder.hyperlinkText": "超連結",
"DE.Views.DocumentHolder.ignoreAllSpellText": "忽略所有",
@@ -1554,6 +1813,7 @@
"DE.Views.DocumentHolder.textFromFile": "從檔案",
"DE.Views.DocumentHolder.textFromStorage": "從存儲",
"DE.Views.DocumentHolder.textFromUrl": "從 URL",
+ "DE.Views.DocumentHolder.textIndents": "調整清單縮排",
"DE.Views.DocumentHolder.textJoinList": "加入上一個列表",
"DE.Views.DocumentHolder.textLeft": "儲存格並向左移",
"DE.Views.DocumentHolder.textNest": "套疊表格",
@@ -1576,6 +1836,7 @@
"DE.Views.DocumentHolder.textRotate270": "逆時針旋轉90°",
"DE.Views.DocumentHolder.textRotate90": "順時針旋轉90°",
"DE.Views.DocumentHolder.textRow": "刪除整行",
+ "DE.Views.DocumentHolder.textSaveAsPicture": "另存為圖片",
"DE.Views.DocumentHolder.textSeparateList": "單獨的清單",
"DE.Views.DocumentHolder.textSettings": "設定",
"DE.Views.DocumentHolder.textSeveral": "多行/多列",
@@ -1687,6 +1948,7 @@
"DE.Views.DocumentHolder.txtUnderbar": "槓至文字底下",
"DE.Views.DocumentHolder.txtUngroup": "解開組合",
"DE.Views.DocumentHolder.txtWarnUrl": "這連結可能對您的設備和資料造成損害。 您確定要繼續嗎?",
+ "DE.Views.DocumentHolder.unicodeText": "Unicode 碼",
"DE.Views.DocumentHolder.updateStyleText": "更新%1風格",
"DE.Views.DocumentHolder.vertAlignText": "垂直對齊",
"DE.Views.DropcapSettingsAdvanced.strBorders": "邊框和添入",
@@ -1795,9 +2057,12 @@
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "帶密碼",
"DE.Views.FileMenuPanels.ProtectDoc.strProtect": "受保護的文件",
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "帶簽名",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature": "已將有效簽名加入文件。 該文件受到編輯保護。",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "添加無形的數位簽章以確保文件的完整性",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "編輯文件",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編輯將刪除文檔中的簽名。 確定要繼續嗎?",
"DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "本文件已受密碼保護",
+ "DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument": "使用密碼加密此文件",
"DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "該文件需要簽名。",
"DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效簽名已增加到文件檔中。該文件檔受到保護,無法編輯。",
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文檔中的某些數字簽名無效或無法驗證。該文檔受到保護,無法編輯。",
@@ -1851,6 +2116,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "查看無",
"DE.Views.FileMenuPanels.Settings.txtProofing": "打樣",
"DE.Views.FileMenuPanels.Settings.txtPt": "點",
+ "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "在編輯器標頭中顯示快速列印按鈕",
+ "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "文件將由最後選取或預設的印表機列印。",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "全部啟用",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "不用提示啟用全部巨集",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "顯示追蹤更改",
@@ -1867,25 +2134,33 @@
"DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "下載為",
"DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "另存新檔為",
"DE.Views.FormSettings.textAlways": "永遠",
+ "DE.Views.FormSettings.textAnyone": "任何人",
"DE.Views.FormSettings.textAspect": "鎖定寬高比",
"DE.Views.FormSettings.textAtLeast": "至少",
"DE.Views.FormSettings.textAuto": "自動",
"DE.Views.FormSettings.textAutofit": "自動調整",
"DE.Views.FormSettings.textBackgroundColor": "背景顏色",
"DE.Views.FormSettings.textCheckbox": "複選框",
+ "DE.Views.FormSettings.textCheckDefault": "核取方塊預設為已選取",
"DE.Views.FormSettings.textColor": "邊框顏色",
"DE.Views.FormSettings.textComb": "文字組合",
"DE.Views.FormSettings.textCombobox": "組合框",
+ "DE.Views.FormSettings.textComplex": "複雜字段",
"DE.Views.FormSettings.textConnected": "段落已連結",
+ "DE.Views.FormSettings.textCreditCard": "信用卡號碼(例如 4111-1111-1111-1111)",
+ "DE.Views.FormSettings.textDateField": "日期和時間欄位",
"DE.Views.FormSettings.textDateFormat": "以此顯示日期",
+ "DE.Views.FormSettings.textDefValue": "預設值",
"DE.Views.FormSettings.textDelete": "刪除",
"DE.Views.FormSettings.textDigits": "數字",
"DE.Views.FormSettings.textDisconnect": "斷線",
"DE.Views.FormSettings.textDropDown": "下拉式",
"DE.Views.FormSettings.textExact": "準確的",
"DE.Views.FormSettings.textField": "文字段落",
+ "DE.Views.FormSettings.textFillRoles": "誰需要填寫?",
"DE.Views.FormSettings.textFixed": "固定欄位大小",
"DE.Views.FormSettings.textFormat": "格式",
+ "DE.Views.FormSettings.textFormatSymbols": "允許的符號",
"DE.Views.FormSettings.textFromFile": "從檔案",
"DE.Views.FormSettings.textFromStorage": "從存儲",
"DE.Views.FormSettings.textFromUrl": "從 URL",
@@ -1893,14 +2168,20 @@
"DE.Views.FormSettings.textImage": "圖像",
"DE.Views.FormSettings.textKey": "鍵",
"DE.Views.FormSettings.textLang": "語言",
+ "DE.Views.FormSettings.textLetters": "字母",
"DE.Views.FormSettings.textLock": "鎖",
+ "DE.Views.FormSettings.textMask": "任意遮罩",
"DE.Views.FormSettings.textMaxChars": "文字數限制",
"DE.Views.FormSettings.textMulti": "多行文字欄位",
"DE.Views.FormSettings.textNever": "永不",
"DE.Views.FormSettings.textNoBorder": "無邊界",
"DE.Views.FormSettings.textNone": "無",
+ "DE.Views.FormSettings.textPhone1": "電話號碼(例:(123)456-7890)",
+ "DE.Views.FormSettings.textPhone2": "電話號碼(例:+447911123456)",
"DE.Views.FormSettings.textPlaceholder": "佔位符",
"DE.Views.FormSettings.textRadiobox": "收音機按鈕",
+ "DE.Views.FormSettings.textRadioDefault": "按鈕預設為已選取",
+ "DE.Views.FormSettings.textReg": "標準運算式",
"DE.Views.FormSettings.textRequired": "必要",
"DE.Views.FormSettings.textScale": "何時縮放",
"DE.Views.FormSettings.textSelectImage": "選擇圖片",
@@ -1912,15 +2193,20 @@
"DE.Views.FormSettings.textTipUp": "上移",
"DE.Views.FormSettings.textTooBig": "圖像過大",
"DE.Views.FormSettings.textTooSmall": "圖像過小",
+ "DE.Views.FormSettings.textUKPassport": "英國護照號碼(例如925665416)",
"DE.Views.FormSettings.textUnlock": "開鎖",
+ "DE.Views.FormSettings.textUSSSN": "美國社會安全碼(例如123-45-6789)",
"DE.Views.FormSettings.textValue": "值選項",
"DE.Views.FormSettings.textWidth": "儲存格寬度",
+ "DE.Views.FormSettings.textZipCodeUS": "美國郵遞區號(例如92663或92663-1234)",
"DE.Views.FormsTab.capBtnCheckBox": "複選框",
"DE.Views.FormsTab.capBtnComboBox": "組合框",
+ "DE.Views.FormsTab.capBtnComplex": "複雜字段",
"DE.Views.FormsTab.capBtnDownloadForm": "下載為oform",
"DE.Views.FormsTab.capBtnDropDown": "下拉式",
"DE.Views.FormsTab.capBtnEmail": "電子郵件地址",
"DE.Views.FormsTab.capBtnImage": "圖像",
+ "DE.Views.FormsTab.capBtnManager": "管理角色",
"DE.Views.FormsTab.capBtnNext": "下一欄位",
"DE.Views.FormsTab.capBtnPhone": "電話號碼",
"DE.Views.FormsTab.capBtnPrev": "上一欄位",
@@ -1929,8 +2215,10 @@
"DE.Views.FormsTab.capBtnSubmit": "傳送",
"DE.Views.FormsTab.capBtnText": "文字段落",
"DE.Views.FormsTab.capBtnView": "查看表格",
+ "DE.Views.FormsTab.capCreditCard": "信用卡",
"DE.Views.FormsTab.capDateTime": "日期和時間",
"DE.Views.FormsTab.capZipCode": "郵遞區號",
+ "DE.Views.FormsTab.textAnyone": "任何人",
"DE.Views.FormsTab.textClear": "清除欄位",
"DE.Views.FormsTab.textClearFields": "清除所有段落",
"DE.Views.FormsTab.textCreateForm": "新增文字段落並建立一個可填寫的 OFORM 文件",
@@ -1941,17 +2229,28 @@
"DE.Views.FormsTab.textSubmited": "表格傳送成功",
"DE.Views.FormsTab.tipCheckBox": "插入複選框",
"DE.Views.FormsTab.tipComboBox": "插入組合框",
+ "DE.Views.FormsTab.tipComplexField": "插入複雜欄位",
+ "DE.Views.FormsTab.tipCreditCard": "插入信用卡號碼",
+ "DE.Views.FormsTab.tipDateTime": "插入日期和時間",
"DE.Views.FormsTab.tipDownloadForm": "下載成可編輯OFORM文件",
"DE.Views.FormsTab.tipDropDown": "插入下拉列表",
+ "DE.Views.FormsTab.tipEmailField": "插入電子郵件地址",
+ "DE.Views.FormsTab.tipFixedText": "插入固定文字欄位",
"DE.Views.FormsTab.tipImageField": "插入圖片",
+ "DE.Views.FormsTab.tipInlineText": "插入行內文字欄位",
+ "DE.Views.FormsTab.tipManager": "管理角色",
"DE.Views.FormsTab.tipNextForm": "移至下一欄位",
+ "DE.Views.FormsTab.tipPhoneField": "插入電話號碼",
"DE.Views.FormsTab.tipPrevForm": "移至上一欄位",
"DE.Views.FormsTab.tipRadioBox": "插入收音機按鈕",
"DE.Views.FormsTab.tipSaveForm": "儲存一份可以填寫的 OFORM 檔案",
"DE.Views.FormsTab.tipSubmit": "傳送表格",
"DE.Views.FormsTab.tipTextField": "插入文字欄位",
"DE.Views.FormsTab.tipViewForm": "查看表格",
+ "DE.Views.FormsTab.tipZipCode": "插入郵遞區號",
+ "DE.Views.FormsTab.txtFixedDesc": "插入固定文字欄位",
"DE.Views.FormsTab.txtFixedText": "固定",
+ "DE.Views.FormsTab.txtInlineDesc": "插入行內文字欄位",
"DE.Views.FormsTab.txtInlineText": "同一行",
"DE.Views.FormsTab.txtUntitled": "無標題",
"DE.Views.HeaderFooterSettings.textBottomCenter": "底部中間",
@@ -2056,7 +2355,7 @@
"DE.Views.ImageSettingsAdvanced.textLine": "線",
"DE.Views.ImageSettingsAdvanced.textLineStyle": "線型",
"DE.Views.ImageSettingsAdvanced.textMargin": "邊框",
- "DE.Views.ImageSettingsAdvanced.textMiter": "Miter",
+ "DE.Views.ImageSettingsAdvanced.textMiter": "斜接角",
"DE.Views.ImageSettingsAdvanced.textMove": "用文字移動對象",
"DE.Views.ImageSettingsAdvanced.textOptions": "選項",
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "實際大小",
@@ -2162,30 +2461,48 @@
"DE.Views.Links.txtDontShowTof": "不要顯示在目錄",
"DE.Views.Links.txtLevel": "等級",
"DE.Views.ListIndentsDialog.textSpace": "空間",
+ "DE.Views.ListIndentsDialog.textTab": "定位元",
+ "DE.Views.ListIndentsDialog.textTitle": "有格線的清單",
+ "DE.Views.ListIndentsDialog.txtFollowBullet": "接續項目符號",
+ "DE.Views.ListIndentsDialog.txtFollowNumber": "接續編號",
+ "DE.Views.ListIndentsDialog.txtIndent": "文字縮排",
"DE.Views.ListIndentsDialog.txtNone": "無",
+ "DE.Views.ListIndentsDialog.txtPosBullet": "項目符號位置",
+ "DE.Views.ListIndentsDialog.txtPosNumber": "編號位置",
"DE.Views.ListSettingsDialog.textAuto": "自動",
"DE.Views.ListSettingsDialog.textBold": "粗體",
"DE.Views.ListSettingsDialog.textCenter": "中心",
+ "DE.Views.ListSettingsDialog.textHide": "隱藏設定",
"DE.Views.ListSettingsDialog.textItalic": "斜體",
"DE.Views.ListSettingsDialog.textLeft": "左",
"DE.Views.ListSettingsDialog.textLevel": "水平",
+ "DE.Views.ListSettingsDialog.textMore": "顯示更多設定",
"DE.Views.ListSettingsDialog.textPreview": "預覽",
"DE.Views.ListSettingsDialog.textRight": "右",
+ "DE.Views.ListSettingsDialog.textSelectLevel": "選取階層",
"DE.Views.ListSettingsDialog.textSpace": "空間",
+ "DE.Views.ListSettingsDialog.textTab": "定位元",
"DE.Views.ListSettingsDialog.txtAlign": "對齊",
"DE.Views.ListSettingsDialog.txtAlignAt": "在",
"DE.Views.ListSettingsDialog.txtBullet": "項目點",
"DE.Views.ListSettingsDialog.txtColor": "顏色",
+ "DE.Views.ListSettingsDialog.txtFollow": "接續編號",
"DE.Views.ListSettingsDialog.txtFontName": "字體",
+ "DE.Views.ListSettingsDialog.txtInclcudeLevel": "包含階層編號",
+ "DE.Views.ListSettingsDialog.txtIndent": "文字縮排",
"DE.Views.ListSettingsDialog.txtLikeText": "像文字",
+ "DE.Views.ListSettingsDialog.txtMoreTypes": "更多類型",
"DE.Views.ListSettingsDialog.txtNewBullet": "新子彈點",
"DE.Views.ListSettingsDialog.txtNone": "無",
"DE.Views.ListSettingsDialog.txtNumFormatString": "數字格式",
+ "DE.Views.ListSettingsDialog.txtRestart": "重啟清單",
"DE.Views.ListSettingsDialog.txtSize": "大小",
"DE.Views.ListSettingsDialog.txtStart": "開始",
"DE.Views.ListSettingsDialog.txtSymbol": "符號",
+ "DE.Views.ListSettingsDialog.txtTabStop": "在...新增定位點",
"DE.Views.ListSettingsDialog.txtTitle": "清單設定",
"DE.Views.ListSettingsDialog.txtType": "類型",
+ "DE.Views.ListTypesAdvanced.labelSelect": "選取清單樣式",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF格式",
"DE.Views.MailMergeEmailDlg.okButtonText": "傳送",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "主題",
@@ -2422,12 +2739,20 @@
"DE.Views.PrintWithPreview.textMarginsUsNormal": "美國普通",
"DE.Views.PrintWithPreview.textMarginsWide": "寬",
"DE.Views.PrintWithPreview.txtAllPages": "所有頁面",
+ "DE.Views.PrintWithPreview.txtBothSides": "雙面列印",
+ "DE.Views.PrintWithPreview.txtBothSidesLongDesc": "依長邊翻轉頁面",
+ "DE.Views.PrintWithPreview.txtBothSidesShortDesc": "依短邊翻轉頁面",
"DE.Views.PrintWithPreview.txtBottom": "底部",
+ "DE.Views.PrintWithPreview.txtCopies": "副本",
+ "DE.Views.PrintWithPreview.txtCurrentPage": "目前頁面",
"DE.Views.PrintWithPreview.txtCustom": "自訂",
+ "DE.Views.PrintWithPreview.txtCustomPages": "自訂列印",
"DE.Views.PrintWithPreview.txtLandscape": "景觀",
"DE.Views.PrintWithPreview.txtLeft": "左",
"DE.Views.PrintWithPreview.txtMargins": "邊框",
"DE.Views.PrintWithPreview.txtOf": "之 {0}",
+ "DE.Views.PrintWithPreview.txtOneSide": "單面列印",
+ "DE.Views.PrintWithPreview.txtOneSideDesc": "只印單面",
"DE.Views.PrintWithPreview.txtPage": "頁面",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "頁碼無效",
"DE.Views.PrintWithPreview.txtPageOrientation": "頁面方向",
@@ -2435,12 +2760,19 @@
"DE.Views.PrintWithPreview.txtPageSize": "頁面大小",
"DE.Views.PrintWithPreview.txtPortrait": "肖像",
"DE.Views.PrintWithPreview.txtPrint": "打印",
+ "DE.Views.PrintWithPreview.txtPrintPdf": "以PDF格式列印",
"DE.Views.PrintWithPreview.txtPrintRange": "列印範圍",
+ "DE.Views.PrintWithPreview.txtPrintSides": "列印面",
"DE.Views.PrintWithPreview.txtRight": "右",
"DE.Views.PrintWithPreview.txtSelection": "選拔",
"DE.Views.PrintWithPreview.txtTop": "上方",
"DE.Views.ProtectDialog.textComments": "留言",
+ "DE.Views.ProtectDialog.textForms": "填寫表單",
+ "DE.Views.ProtectDialog.textReview": "已追蹤的變更",
+ "DE.Views.ProtectDialog.textView": "沒有變更(唯獨)",
+ "DE.Views.ProtectDialog.txtAllow": "僅允許在文件中進行此類編輯",
"DE.Views.ProtectDialog.txtIncorrectPwd": "確認密碼不相同",
+ "DE.Views.ProtectDialog.txtLimit": "密碼限制為15字元",
"DE.Views.ProtectDialog.txtOptional": "可選的",
"DE.Views.ProtectDialog.txtPassword": "密碼",
"DE.Views.ProtectDialog.txtProtect": "保護",
@@ -2457,11 +2789,33 @@
"DE.Views.RightMenu.txtSignatureSettings": "簽名設置",
"DE.Views.RightMenu.txtTableSettings": "表格設定",
"DE.Views.RightMenu.txtTextArtSettings": "文字藝術設定",
+ "DE.Views.RoleDeleteDlg.textLabel": "若要刪除此角色,您需要將與其關聯的欄位移至另一個角色。",
+ "DE.Views.RoleDeleteDlg.textSelect": "選取合併欄位角色",
+ "DE.Views.RoleDeleteDlg.textTitle": "刪除角色",
+ "DE.Views.RoleEditDlg.errNameExists": "已存在該角色名稱。",
+ "DE.Views.RoleEditDlg.textEmptyError": "角色名稱不能為空。",
+ "DE.Views.RoleEditDlg.textName": "角色名稱",
"DE.Views.RoleEditDlg.textNoHighlight": "沒有突出顯示",
+ "DE.Views.RoleEditDlg.txtTitleEdit": "編輯角色",
+ "DE.Views.RoleEditDlg.txtTitleNew": "建立新角色",
+ "DE.Views.RolesManagerDlg.textAnyone": "任何人",
"DE.Views.RolesManagerDlg.textDelete": "刪除",
+ "DE.Views.RolesManagerDlg.textDeleteLast": "您確定要刪除角色 {0} 嗎? 刪除後,將建立預設角色。",
+ "DE.Views.RolesManagerDlg.textDescription": "新增角色並設定填表人接收並簽署文件的順序",
+ "DE.Views.RolesManagerDlg.textDown": "向下移動角色",
"DE.Views.RolesManagerDlg.textEdit": "編輯",
+ "DE.Views.RolesManagerDlg.textEmpty": "目前尚未建立任何角色。 請至少建立一個角色,它將顯示在此欄位中。",
"DE.Views.RolesManagerDlg.textNew": "新",
+ "DE.Views.RolesManagerDlg.textUp": "向上移動角色",
+ "DE.Views.RolesManagerDlg.txtTitle": "管理角色",
+ "DE.Views.RolesManagerDlg.warnCantDelete": "您無法刪除該角色,因為它有關聯的欄位。",
+ "DE.Views.RolesManagerDlg.warnDelete": "您確定要刪除角色 {0} 嗎?",
"DE.Views.SaveFormDlg.saveButtonText": "儲存",
+ "DE.Views.SaveFormDlg.textAnyone": "任何人",
+ "DE.Views.SaveFormDlg.textDescription": "在儲存至oform時,只有具有欄位的角色會被添加到填寫清單中。",
+ "DE.Views.SaveFormDlg.textEmpty": "沒有與欄位有關聯的角色。",
+ "DE.Views.SaveFormDlg.textFill": "填寫清單",
+ "DE.Views.SaveFormDlg.txtTitle": "另存為表單",
"DE.Views.ShapeSettings.strBackground": "背景顏色",
"DE.Views.ShapeSettings.strChange": "變更自動形狀",
"DE.Views.ShapeSettings.strColor": "顏色",
@@ -2555,7 +2909,9 @@
"DE.Views.Statusbar.txtPageNumInvalid": "頁碼無效",
"DE.Views.Statusbar.txtPages": "頁",
"DE.Views.Statusbar.txtParagraphs": "段落",
+ "DE.Views.Statusbar.txtSpaces": "含空格的符號",
"DE.Views.Statusbar.txtSymbols": "符號",
+ "DE.Views.Statusbar.txtWordCount": "字數統計",
"DE.Views.Statusbar.txtWords": "字幕",
"DE.Views.StyleTitleDialog.textHeader": "新增風格",
"DE.Views.StyleTitleDialog.textNextStyle": "下一段風格",
@@ -2646,13 +3002,20 @@
"DE.Views.TableSettings.tipOuter": "僅設置外部框線",
"DE.Views.TableSettings.tipRight": "僅設置右外框",
"DE.Views.TableSettings.tipTop": "僅設置外部頂部邊框",
+ "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "有邊框和線條的表格",
"DE.Views.TableSettings.txtGroupTable_Custom": "自訂",
+ "DE.Views.TableSettings.txtGroupTable_Grid": "網格表格",
+ "DE.Views.TableSettings.txtGroupTable_List": "清單表格",
+ "DE.Views.TableSettings.txtGroupTable_Plain": "簡單表格",
"DE.Views.TableSettings.txtNoBorders": "無邊框",
"DE.Views.TableSettings.txtTable_Accent": "口音",
+ "DE.Views.TableSettings.txtTable_Bordered": "有邊框的",
+ "DE.Views.TableSettings.txtTable_BorderedAndLined": "有邊框和線條的",
"DE.Views.TableSettings.txtTable_Colorful": "七彩",
"DE.Views.TableSettings.txtTable_Dark": "暗",
"DE.Views.TableSettings.txtTable_GridTable": "網格表",
"DE.Views.TableSettings.txtTable_Light": "光",
+ "DE.Views.TableSettings.txtTable_Lined": "有格線的",
"DE.Views.TableSettings.txtTable_ListTable": "列表表",
"DE.Views.TableSettings.txtTable_PlainTable": "普通表",
"DE.Views.TableSettings.txtTable_TableGrid": "表格網格",
@@ -2891,6 +3254,7 @@
"DE.Views.Toolbar.textSuperscript": "上標",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "禁止當前段落",
"DE.Views.Toolbar.textTabCollaboration": "共同編輯",
+ "DE.Views.Toolbar.textTabDraw": "繪圖",
"DE.Views.Toolbar.textTabFile": "檔案",
"DE.Views.Toolbar.textTabHome": "首頁",
"DE.Views.Toolbar.textTabInsert": "插入",
@@ -2934,13 +3298,16 @@
"DE.Views.Toolbar.tipIncPrLeft": "增加縮進",
"DE.Views.Toolbar.tipInsertChart": "插入圖表",
"DE.Views.Toolbar.tipInsertEquation": "插入方程式",
+ "DE.Views.Toolbar.tipInsertHorizontalText": "插入水平文字方塊",
"DE.Views.Toolbar.tipInsertImage": "插入圖片",
"DE.Views.Toolbar.tipInsertNum": "插入頁碼",
"DE.Views.Toolbar.tipInsertShape": "插入自動形狀",
+ "DE.Views.Toolbar.tipInsertSmartArt": "插入SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "插入符號",
"DE.Views.Toolbar.tipInsertTable": "插入表格",
"DE.Views.Toolbar.tipInsertText": "插入文字框",
"DE.Views.Toolbar.tipInsertTextArt": "插入文字藝術",
+ "DE.Views.Toolbar.tipInsertVerticalText": "插入垂直文字方塊",
"DE.Views.Toolbar.tipLineNumbers": "顯示行號",
"DE.Views.Toolbar.tipLineSpace": "段落行距",
"DE.Views.Toolbar.tipMailRecepients": "郵件合併",
@@ -2953,6 +3320,10 @@
"DE.Views.Toolbar.tipMarkersFSquare": "實心方形項目符號",
"DE.Views.Toolbar.tipMarkersHRound": "空心圓項目符號",
"DE.Views.Toolbar.tipMarkersStar": "星星項目符號",
+ "DE.Views.Toolbar.tipMultiLevelArticl": "多層編號文章",
+ "DE.Views.Toolbar.tipMultiLevelChapter": "多級編號章節",
+ "DE.Views.Toolbar.tipMultiLevelHeadings": "多層編號標頭",
+ "DE.Views.Toolbar.tipMultiLevelHeadVarious": "多層不同編號標頭",
"DE.Views.Toolbar.tipMultiLevelNumbered": "多層次數字清單",
"DE.Views.Toolbar.tipMultilevels": "多級清單",
"DE.Views.Toolbar.tipMultiLevelSymbols": "多層次符號清單",
@@ -2966,6 +3337,7 @@
"DE.Views.Toolbar.tipPaste": "貼上",
"DE.Views.Toolbar.tipPrColor": "段落背景顏色",
"DE.Views.Toolbar.tipPrint": "列印",
+ "DE.Views.Toolbar.tipPrintQuick": "快速列印",
"DE.Views.Toolbar.tipRedo": "重複",
"DE.Views.Toolbar.tipSave": "存檔",
"DE.Views.Toolbar.tipSaveCoauth": "儲存您的更改,以供其他帳戶查看。",
@@ -2978,6 +3350,12 @@
"DE.Views.Toolbar.tipWatermark": "編輯水印",
"DE.Views.Toolbar.txtDistribHor": "水平分佈",
"DE.Views.Toolbar.txtDistribVert": "垂直分佈",
+ "DE.Views.Toolbar.txtGroupBulletDoc": "文件項目符號",
+ "DE.Views.Toolbar.txtGroupBulletLib": "項目符號庫",
+ "DE.Views.Toolbar.txtGroupMultiDoc": "目前文件中的清單",
+ "DE.Views.Toolbar.txtGroupMultiLib": "清單資料庫",
+ "DE.Views.Toolbar.txtGroupNumDoc": "文件編號格式化",
+ "DE.Views.Toolbar.txtGroupNumLib": "編號資料庫",
"DE.Views.Toolbar.txtGroupRecent": "最近使用",
"DE.Views.Toolbar.txtMarginAlign": "對齊頁邊距",
"DE.Views.Toolbar.txtObjectsAlign": "對齊所選物件",
@@ -3009,8 +3387,10 @@
"DE.Views.ViewTab.textFitToPage": "配合紙張大小",
"DE.Views.ViewTab.textFitToWidth": "配合寬度",
"DE.Views.ViewTab.textInterfaceTheme": "介面主題",
+ "DE.Views.ViewTab.textLeftMenu": "左側面板",
"DE.Views.ViewTab.textNavigation": "導航",
"DE.Views.ViewTab.textOutline": "標題",
+ "DE.Views.ViewTab.textRightMenu": "右側面板",
"DE.Views.ViewTab.textRulers": "尺規",
"DE.Views.ViewTab.textStatusBar": "狀態欄",
"DE.Views.ViewTab.textZoom": "放大",
diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json
index 57dc3af84d..13e912dd47 100644
--- a/apps/documenteditor/main/locale/zh.json
+++ b/apps/documenteditor/main/locale/zh.json
@@ -1171,6 +1171,7 @@
"DE.Controllers.Main.waitText": "请稍候...",
"DE.Controllers.Main.warnBrowserIE9": "该应用程序在IE9上的功能很差。使用IE10或更高版本",
"DE.Controllers.Main.warnBrowserZoom": "您的浏览器当前缩放设置不完全支持。请按Ctrl + 0重设为默认缩放。",
+ "DE.Controllers.Main.warnLicenseAnonymous": "拒绝匿名用户的访问。 本文档将以仅查看模式而打开。",
"DE.Controllers.Main.warnLicenseBefore": "许可证未激活。 请联系管理员。",
"DE.Controllers.Main.warnLicenseExceeded": "您已达到同时连接%1编辑器的限制。该文档将被打开仅供查看。 请联系您的管理员以了解更多。",
"DE.Controllers.Main.warnLicenseExp": "您的许可证已过期。 请更新您的许可证并刷新页面。",
diff --git a/apps/documenteditor/main/resources/help/de/editor.css b/apps/documenteditor/main/resources/help/de/editor.css
index dbcd9606c3..16d232d6d3 100644
--- a/apps/documenteditor/main/resources/help/de/editor.css
+++ b/apps/documenteditor/main/resources/help/de/editor.css
@@ -180,6 +180,7 @@ text-decoration: none;
display: block;
float: right;
margin-top: 10px;
+ margin-left: 20px;
}
.search-field input {
width: 250px;
diff --git a/apps/documenteditor/main/resources/help/en/Contents.json b/apps/documenteditor/main/resources/help/en/Contents.json
index d2f96d0748..e09904f945 100644
--- a/apps/documenteditor/main/resources/help/en/Contents.json
+++ b/apps/documenteditor/main/resources/help/en/Contents.json
@@ -2,7 +2,8 @@
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"},
{"src": "ProgramInterface/FileTab.htm", "name": "File tab"},
{"src": "ProgramInterface/HomeTab.htm", "name": "Home Tab"},
- {"src": "ProgramInterface/InsertTab.htm", "name": "Insert tab"},
+ { "src": "ProgramInterface/InsertTab.htm", "name": "Insert tab" },
+ {"src": "ProgramInterface/DrawTab.htm", "name": "Drawing tab"},
{"src": "ProgramInterface/LayoutTab.htm", "name": "Layout tab" },
{ "src": "ProgramInterface/ReferencesTab.htm", "name": "References tab" },
{"src": "ProgramInterface/FormsTab.htm", "name": "Forms tab"},
@@ -47,7 +48,8 @@
{"src": "UsageInstructions/InsertAutoshapes.htm", "name": "Insert autoshapes"},
{"src": "UsageInstructions/InsertCharts.htm", "name": "Insert charts" },
{"src": "UsageInstructions/InsertTextObjects.htm", "name": "Insert text objects" },
- {"src": "UsageInstructions/InsertSmartArt.htm", "name": "Insert SmartArt objects" },
+ { "src": "UsageInstructions/InsertSmartArt.htm", "name": "Insert SmartArt objects" },
+ {"src": "UsageInstructions/DrawingOperations.htm", "name": "Draw freehand on a document" },
{ "src": "UsageInstructions/AddCaption.htm", "name": "Add caption" },
{ "src": "UsageInstructions/InsertSymbols.htm", "name": "Insert symbols and characters" },
{"src": "UsageInstructions/AlignArrangeObjects.htm", "name": "Align and arrange objects on a page" },
@@ -63,7 +65,7 @@
{ "src": "HelpfulHints/Communicating.htm", "name": "Communicating in real time" },
{ "src": "HelpfulHints/Commenting.htm", "name": "Commenting documents" },
{ "src": "HelpfulHints/Review.htm", "name": "Tracking changes" },
- { "src": "HelpfulHints/Comparison.htm", "name": "Comparing documents" },
+ { "src": "HelpfulHints/Comparison.htm", "name": "Comparing and combining documents" },
{ "src": "HelpfulHints/VersionHistory.htm", "name": "Version history" },
{"src": "UsageInstructions/PhotoEditor.htm", "name": "Edit an image", "headername": "Plugins"},
{"src": "UsageInstructions/YouTube.htm", "name": "Include a video" },
@@ -72,6 +74,7 @@
{"src": "UsageInstructions/Translator.htm", "name": "Translate text" },
{"src": "UsageInstructions/OCR.htm", "name": "Extract text from an image" },
{"src": "UsageInstructions/Speech.htm", "name": "Read the text out loud" },
+ {"src": "UsageInstructions/Speechinput.htm", "name": "Type via voice" },
{"src": "UsageInstructions/Thesaurus.htm", "name": "Replace a word by a synonym" },
{"src": "UsageInstructions/Wordpress.htm", "name": "Upload a document to Wordpress"},
{"src": "UsageInstructions/WordCounter.htm", "name": "Count words"},
@@ -80,6 +83,8 @@
{ "src": "UsageInstructions/CommunicationPlugins.htm", "name": "Communicate while editing" },
{"src": "UsageInstructions/Jitsi.htm", "name": "Make Audio and Video Calls"},
{"src": "UsageInstructions/Drawio.htm", "name": "Create and insert diagrams"},
+ {"src": "UsageInstructions/Zoom.htm", "name": "Host and schedule Zoom meetings"},
+ {"src": "UsageInstructions/ChatGPT.htm", "name": "Use AI to write text"},
{"src": "UsageInstructions/ViewDocInfo.htm", "name": "View document information", "headername": "Tools and settings"},
{"src": "UsageInstructions/SavePrintDownload.htm", "name": "Save, download, print your document" },
{"src": "HelpfulHints/AdvancedSettings.htm", "name": "Advanced settings of Document Editor"},
diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm
index db3d8dbacb..5bec7277f2 100644
--- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm
+++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Comparison.htm
@@ -1,7 +1,7 @@
- Comparing documents
+ Comparing and combining documents
@@ -14,16 +14,17 @@
-
Comparing documents
+
Comparing and combining documents
The Document Editor allows you to maintain constant team-wide approach to work flow: share files and folders, collaborate on documents in real time, communicate right in the editor, comment certain parts of your documents that require additional third-party input, save document versions for future use, review documents and add your changes without actually editing the file.
If you need to compare and merge two documents, the Document Editor provides you with the document Compare feature. It allows displaying the differences between two documents and merge the documents by accepting the changes one by one or all at once.
-
After comparing and merging two documents, the result will be stored on the portal as a new version of the original file.
+
The Combine feature may seem the same but with one major difference, i.e., the Tracked Changes in both versions are merged into one version and the rest of the texts is compared.
+
After merging two documents, the result will be stored on the portal as a new version of the original file.
If you do not need to merge documents which are being compared, you can reject all the changes so that the original document remains unchanged.
Choose a document for comparison
To compare two documents, open the original document that you need to compare and select the second document for comparison:
-
switch to the Collaboration tab on the top toolbar and press the Compare button,
+
switch to the Collaboration tab on the top toolbar and press the Compare button,
select one of the following options to load the document:
@@ -38,41 +39,63 @@
Choose a document for comparison
When the second document for comparison is selected, the comparison process will start and the document will look as if it was opened in the Review mode. All the changes are highlighted with a color, and you can view the changes, navigate between them, accept or reject them one by one or all the changes at once. It's also possible to change the display mode and see how the document looks before comparison, in the process of comparison, or how it will look after comparison if you accept all changes.
+
Choose a document for combining
+
To combine two documents, open the original document and select the second document for combining:
+
+
switch to the Collaboration tab on the top toolbar and press the Combine button,
+
+ select one of the following options to load the document:
+
+
the Document from File option will open the standard dialog window for file selection. Browse your computer hard disk drive for the necessary .docx file and click the Open button.
+
+ the Document from URL option will open the window where you can enter a link to the file stored in a third-party web storage (for example, Nextcloud) if you have corresponding access rights to it. The link must be a direct link for downloading the file. When the link is specified, click the OK button.
+
Note: The direct link allows downloading the file directly without opening it in a web browser. For example, to get a direct link in Nextcloud, find the necessary document in the file list, select the Details option from the file menu. Click the Copy direct link (only works for users who have access to this file/folder) icon on the right of the file name on the details panel. To find out how to get a direct link for downloading the file in a different third-party web storage, please refer to the corresponding third-party service documentation.
+
+
+
+
+
When the second document for combining is selected, the combining process will start and the document will look as if it was opened in the Review mode. All the changes are highlighted with a color, and you can view the changes, navigate between them, accept or reject them one by one or all the changes at once. It's also possible to change the display mode and see how the document looks before combining, in the process of combining, or how it will look after combining if you accept all changes.
+
Choose the changes display mode
-
Click the Display Mode button on the top toolbar and select one of the available modes from the list:
+
Click the Display Mode button on the top toolbar and select one of the available modes from the list:
- Markup - this option is selected by default. It is used to display the document in the process of comparison. This mode allows both viewing the changes and editing the document.
+ Markup and balloons - this option is selected by default. It is used to display the document in the process of comparison/combining. This mode allows both viewing the changes and editing the document. It also includes a baloon that displays the reviewer's name, the date and the time of the revision, and the revision itseltf. Use the balloon to accept (tick mark) or to rejet (cross mark) the change.
+
+
+
+
+ Only markup - this option is used to display the document in the process of comparison/combining, and allows both viewing the changes and editing the document. No ballons are displayed.
- Final - this mode is used to display the document after comparison as if all the changes were accepted. This option does not actually accept all changes, it only allows you to see how the document will look like after you accept all the changes. In this mode, you cannot edit the document.
+ Final - this mode is used to display the document after comparison/combining as if all the changes were accepted. This option does not actually accept all changes, it only allows you to see how the document will look like after you accept all the changes. In this mode, you cannot edit the document.
- Original - this mode is used to display the document before comparison as if all the changes were rejected. This option does not actually reject all changes, it only allows you to view the document without changes. In this mode, you cannot edit the document.
+ Original - this mode is used to display the document before comparison/combining as if all the changes were rejected. This option does not actually reject all changes, it only allows you to view the document without changes. In this mode, you cannot edit the document.
Accept or reject changes
-
Use the Previous and the Next buttons on the top toolbar to navigate through the changes.
+
Use the Previous and the Next buttons on the top toolbar to navigate through the changes.
To accept the currently selected change, you can:
-
click the Accept button on the top toolbar, or
+
click the Accept button on the top toolbar, or
click the downward arrow below the Accept button and select the Accept Current Change option (in this case, the change will be accepted and you will proceed to the next change), or
-
click the Accept button of the change pop-up window.
+
click the Accept button of the change pop-up window.
-
To quickly accept all the changes, click the downward arrow below the Accept button and select the Accept All Changes option.
+
To quickly accept all the changes, click the downward arrow below the Accept button and select the Accept All Changes option.
To reject the current change you can:
-
click the Reject button on the top toolbar, or
+
click the Reject button on the top toolbar, or
click the downward arrow below the Reject button and select the Reject Current Change option (in this case, the change will be rejected and you will move on to the next available change), or
-
click the Reject button of the change pop-up window.
+
click the Reject button of the change pop-up window.
-
To quickly reject all the changes, click the downward arrow below the Reject button and select the Reject All Changes option.
+
To quickly reject all the changes, click the downward arrow below the Reject button and select the Reject All Changes option.
-
Additional info on the comparison feature
+
Additional info on the comparison and combining feature
Method of comparison
Documents are compared by words. If a word contains a change of at least one character (e.g. if a character was removed or replaced), in the result, the difference will be displayed as the change of the entire word, not the character.
The image below illustrates the case when the original file contains the word 'Characters' and the document for comparison contains the word 'Character'.
@@ -88,8 +111,9 @@
Authorship of the document
If the authors of two files are different users, then the author of the second file loaded for comparison is the author of the added/removed changes.
Presence of the tracked changes in the compared document
-
If the original document contains some changes made in the review mode, they will be accepted in the comparison process. When you choose the second file for comparison, you'll see the corresponding warning message.
+
If the original document contains some changes made in the review mode, they will be accepted in the comparison process. When you choose the second file for comparison, you'll see the corresponding warning message.
In this case, when you choose the Original display mode, the document will not contain any changes.
+
If both documents contain some changes made in the review mode, they will be merged into one version in the combining process.
\ No newline at end of file
diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm
index 5e6357d3e0..05f3c58c9a 100644
--- a/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm
+++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm
@@ -346,6 +346,12 @@
Keyboard Shortcuts for Key Tips
⌘ Cmd+V
Insert the previously copied text fragment from the computer clipboard memory to the current cursor position. The text can be previously copied from the same document, from another document, or from some other program.
+
+
Paste text without style formatting
+
Ctrl+⇧ Shift+V,
+
⌘ Cmd+⇧ Shift+V
+
Insert the previously copied text fragment from the computer clipboard memory to the current cursor position without preserving its original formatting. The text can be previously copied from the same document, from another document, or from some other program.
+
Insert hyperlink
Ctrl+K
@@ -354,14 +360,14 @@
Keyboard Shortcuts for Key Tips
Copy style
-
Ctrl+⇧ Shift+C
-
⌘ Cmd+⇧ Shift+C
+
Alt+Ctrl+C
+
⌘ Cmd+Alt+C
Copy the formatting from the selected fragment of the currently edited text. The copied formatting can be later applied to another text fragment in the same document.
Apply style
-
Ctrl+⇧ Shift+V
-
⌘ Cmd+⇧ Shift+V
+
Alt+Ctrl+V
+
⌘ Cmd+Alt+V
Apply the previously copied formatting to the text in the currently edited document.
@@ -701,12 +707,12 @@
Keyboard Shortcuts for Key Tips
⌥ Option+⇧ Shift+-
Insert an em dash ‘—’ within the current document and to the right of the cursor.
-
-
Insert an en dash
-
-
⌥ Option+-
-
Insert an en dash ‘-’ within the current document and to the right of the cursor.
-
+
+
Insert an en dash
+
+
⌥ Option+-
+
Insert an en dash ‘-’ within the current document and to the right of the cursor.
+
Insert a non-breaking hyphen
Ctrl+⇧ Shift+_
@@ -719,6 +725,12 @@
Keyboard Shortcuts for Key Tips
⌥ Option+␣ Spacebar
Insert a no-break space ‘o’ within the current document and to the right of the cursor.
- go to the File tab at the top toolbar and choose the Protect option,
-
or go to the Protection tab and choose the Encrypt option,
+ go to the File tab at the top toolbar and choose the Protect option. Click the Add password button to open the Set password window,
+
or go to the Protection tab and choose the Encrypt option,
set a password in the Password field and repeat it in the Repeat password field below. Click to show or hide password characters when entered.
@@ -39,7 +39,7 @@
Setting a password
Changing a password
- go to the File tab at the top toolbar and choose the Protect option,
+ go to the File tab at the top toolbar and choose the Protect option. Click the Change password button to open the Set password window,
or go to the Protection tab and choose the Encrypt option,
set a new password in the Password field and repeat it in the Repeat password field below. Click to show or hide password characters when entered.