Merge branch 'develop' into feature/sse-conditional-formatting
3
.github/workflows/check.yml
vendored
|
@ -12,4 +12,7 @@ jobs:
|
||||||
- name: Build using grunt
|
- name: Build using grunt
|
||||||
run: |
|
run: |
|
||||||
npm install --prefix build
|
npm install --prefix build
|
||||||
|
cd ..
|
||||||
|
git clone --branch=develop --depth=1 https://github.com/ONLYOFFICE/sdkjs.git
|
||||||
|
cd web-apps
|
||||||
grunt --level=ADVANCED --base build --gruntfile build/Gruntfile.js
|
grunt --level=ADVANCED --base build --gruntfile build/Gruntfile.js
|
||||||
|
|
|
@ -105,6 +105,7 @@
|
||||||
, feedback: {
|
, feedback: {
|
||||||
url: "https://helpdesk.onlyoffice.com/?desktop=true"
|
url: "https://helpdesk.onlyoffice.com/?desktop=true"
|
||||||
}
|
}
|
||||||
|
, uiTheme: urlParams["uitheme"]
|
||||||
},
|
},
|
||||||
mode : urlParams["mode"] || 'edit',
|
mode : urlParams["mode"] || 'edit',
|
||||||
lang : urlParams["lang"] || 'en',
|
lang : urlParams["lang"] || 'en',
|
||||||
|
|
|
@ -41,12 +41,15 @@ define([
|
||||||
], function () {
|
], function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var native = window.AscDesktopEditor;
|
var features = {
|
||||||
!!native && native.execCommand('webapps:features', JSON.stringify({
|
|
||||||
version: '{{PRODUCT_VERSION}}',
|
version: '{{PRODUCT_VERSION}}',
|
||||||
eventloading: true,
|
eventloading: true,
|
||||||
titlebuttons: true
|
titlebuttons: true,
|
||||||
}));
|
uithemes: true
|
||||||
|
};
|
||||||
|
|
||||||
|
var native = window.AscDesktopEditor;
|
||||||
|
!!native && native.execCommand('webapps:features', JSON.stringify(features));
|
||||||
|
|
||||||
var Desktop = function () {
|
var Desktop = function () {
|
||||||
var config = {version:'{{PRODUCT_VERSION}}'};
|
var config = {version:'{{PRODUCT_VERSION}}'};
|
||||||
|
@ -115,6 +118,9 @@ define([
|
||||||
titlebuttons[obj.action].btn.click();
|
titlebuttons[obj.action].btn.click();
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
if (/theme:changed/.test(cmd)) {
|
||||||
|
Common.UI.Themes.setTheme(param);
|
||||||
|
} else
|
||||||
if (/element:show/.test(cmd)) {
|
if (/element:show/.test(cmd)) {
|
||||||
var _mr = /title:(?:(true|show)|(false|hide))/.exec(param);
|
var _mr = /title:(?:(true|show)|(false|hide))/.exec(param);
|
||||||
if ( _mr ) {
|
if ( _mr ) {
|
||||||
|
@ -131,7 +137,7 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
native.execCommand('webapps:features', JSON.stringify({version: config.version, eventloading:true, titlebuttons:true}));
|
native.execCommand('webapps:features', JSON.stringify(features));
|
||||||
|
|
||||||
// hide mask for modal window
|
// hide mask for modal window
|
||||||
var style = document.createElement('style');
|
var style = document.createElement('style');
|
||||||
|
@ -193,8 +199,9 @@ define([
|
||||||
});
|
});
|
||||||
|
|
||||||
Common.NotificationCenter.on('app:face', function (mode) {
|
Common.NotificationCenter.on('app:face', function (mode) {
|
||||||
native.execCommand('webapps:features', JSON.stringify(
|
features.viewmode = !mode.isEdit;
|
||||||
{version: config.version, eventloading:true, titlebuttons:true, viewmode:!mode.isEdit, crypted:mode.isCrypted} ));
|
features.crypted = mode.isCrypted;
|
||||||
|
native.execCommand('webapps:features', JSON.stringify(features));
|
||||||
|
|
||||||
titlebuttons = {};
|
titlebuttons = {};
|
||||||
if ( mode.isEdit ) {
|
if ( mode.isEdit ) {
|
||||||
|
@ -235,6 +242,9 @@ define([
|
||||||
Common.NotificationCenter.on({
|
Common.NotificationCenter.on({
|
||||||
'modal:show': _onModalDialog.bind(this, 'open'),
|
'modal:show': _onModalDialog.bind(this, 'open'),
|
||||||
'modal:close': _onModalDialog.bind(this, 'close')
|
'modal:close': _onModalDialog.bind(this, 'close')
|
||||||
|
, 'uitheme:changed' : function (name) {
|
||||||
|
native.execCommand("uitheme:changed", name);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -562,24 +562,27 @@ define([
|
||||||
this.view.turnChanges(true);
|
this.view.turnChanges(true);
|
||||||
} else
|
} else
|
||||||
if ( this.appConfig.canReview ) {
|
if ( this.appConfig.canReview ) {
|
||||||
var sendMessage = !fromApi;
|
if (!!global) {
|
||||||
var saveToFile = !!global; // save track changes flag (state) to file
|
this.api.asc_SetLocalTrackRevisions(null);
|
||||||
this.api.asc_SetTrackRevisions(!!state, saveToFile, sendMessage);
|
this.api.asc_SetGlobalTrackRevisions(!!state);
|
||||||
Common.Utils.InternalSettings.set(this.view.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0));
|
} else
|
||||||
this.view.turnChanges(state, global);
|
this.api.asc_SetLocalTrackRevisions(!!state);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onApiTrackRevisionsChange: function(state, global, userId) {
|
onApiTrackRevisionsChange: function(localFlag, globalFlag, userId) {
|
||||||
// change local or global state
|
if ( this.appConfig.isReviewOnly ) {
|
||||||
if (userId && this.getUserName(userId)) {
|
this.view.turnChanges(true);
|
||||||
if (state)
|
} else
|
||||||
this.showTips(Common.Utils.String.format(global ? this.textOnGlobal : this.textOn, this.getUserName(userId)));
|
if ( this.appConfig.canReview ) {
|
||||||
else
|
var global = (localFlag===null),
|
||||||
this.showTips(Common.Utils.String.format(global ? this.textOffGlobal : this.textOff, this.getUserName(userId)));
|
state = global ? globalFlag : localFlag;
|
||||||
}
|
Common.Utils.InternalSettings.set(this.view.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0));
|
||||||
if (global && Common.Utils.InternalSettings.get(this.view.appPrefix + "track-changes")>1) {
|
this.view.turnChanges(state, global);
|
||||||
Common.NotificationCenter.trigger('reviewchanges:turn', state, global, true);
|
if (userId && this.userCollection) {
|
||||||
|
var rec = this.userCollection.findOriginalUser(userId);
|
||||||
|
rec && this.showTips(Common.Utils.String.format(globalFlag ? this.textOnGlobal : this.textOffGlobal, Common.Utils.UserInfoParser.getParsedName(rec.get('username'))));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -778,18 +781,20 @@ define([
|
||||||
(new Promise(function (resolve) {
|
(new Promise(function (resolve) {
|
||||||
resolve();
|
resolve();
|
||||||
})).then(function () {
|
})).then(function () {
|
||||||
function _setReviewStatus(state, global) {
|
// function _setReviewStatus(state, global) {
|
||||||
me.view.turnChanges(state, global);
|
// me.view.turnChanges(state, global);
|
||||||
me.api.asc_SetTrackRevisions(state);
|
// !global && me.api.asc_SetLocalTrackRevisions(state);
|
||||||
Common.Utils.InternalSettings.set(me.view.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0));
|
// Common.Utils.InternalSettings.set(me.view.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0));
|
||||||
};
|
// };
|
||||||
|
|
||||||
var trackChanges = typeof (me.appConfig.customization) == 'object' ? me.appConfig.customization.trackChanges : undefined,
|
|
||||||
state = config.isReviewOnly || trackChanges===true || (trackChanges!==false) && me.api.asc_IsTrackRevisions(),
|
|
||||||
global = !config.isReviewOnly && (trackChanges===undefined);
|
|
||||||
|
|
||||||
|
var trackChanges = typeof (me.appConfig.customization) == 'object' ? me.appConfig.customization.trackChanges : undefined;
|
||||||
|
if (config.isReviewOnly || trackChanges!==undefined)
|
||||||
|
me.api.asc_SetLocalTrackRevisions(config.isReviewOnly || trackChanges===true);
|
||||||
|
else
|
||||||
|
me.onApiTrackRevisionsChange(me.api.asc_GetLocalTrackRevisions(), me.api.asc_GetGlobalTrackRevisions());
|
||||||
me.api.asc_HaveRevisionsChanges() && me.view.markChanges(true);
|
me.api.asc_HaveRevisionsChanges() && me.view.markChanges(true);
|
||||||
_setReviewStatus(state, global);
|
|
||||||
|
// _setReviewStatus(state, global);
|
||||||
|
|
||||||
if ( typeof (me.appConfig.customization) == 'object' && (me.appConfig.customization.showReviewChanges==true) ) {
|
if ( typeof (me.appConfig.customization) == 'object' && (me.appConfig.customization.showReviewChanges==true) ) {
|
||||||
me.dlgChanges = (new Common.Views.ReviewChangesDialog({
|
me.dlgChanges = (new Common.Views.ReviewChangesDialog({
|
||||||
|
@ -848,8 +853,10 @@ define([
|
||||||
offset: 30
|
offset: 30
|
||||||
});
|
});
|
||||||
this.tooltip.on('tooltip:hide', function(cmp){
|
this.tooltip.on('tooltip:hide', function(cmp){
|
||||||
clearTimeout(me.tipTimeout);
|
if (cmp==me.tooltip) {
|
||||||
(cmp==me.tooltip) && setTimeout(showNextTip, 300);
|
clearTimeout(me.tipTimeout);
|
||||||
|
setTimeout(showNextTip, 300);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,7 @@ define([
|
||||||
}
|
}
|
||||||
|
|
||||||
Common.localStorage.setItem('ui-theme', name);
|
Common.localStorage.setItem('ui-theme', name);
|
||||||
Common.NotificationCenter.trigger('uitheme:change', name);
|
Common.NotificationCenter.trigger('uitheme:changed', name);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,10 @@ var params = (function() {
|
||||||
return urlParams;
|
return urlParams;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
var ui_theme_name = params.uitheme || localStorage.getItem("ui-theme");
|
if ( !!params.uitheme && localStorage.getItem("ui-theme") != params.uitheme)
|
||||||
|
localStorage.setItem("ui-theme", params.uitheme);
|
||||||
|
|
||||||
|
var ui_theme_name = localStorage.getItem("ui-theme");
|
||||||
if ( !!ui_theme_name ) {
|
if ( !!ui_theme_name ) {
|
||||||
document.body.classList.add(ui_theme_name);
|
document.body.classList.add(ui_theme_name);
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,7 +59,7 @@ define([
|
||||||
width = 414;
|
width = 414;
|
||||||
height = 277;
|
height = 277;
|
||||||
} else {
|
} else {
|
||||||
width = (options.type !== Common.Utils.importTextType.DRM) ? 340 : (options.warning ? 420 : 262);
|
width = (options.type !== Common.Utils.importTextType.DRM) ? 340 : (options.warning ? 420 : 280);
|
||||||
height = (options.type == Common.Utils.importTextType.CSV || options.type == Common.Utils.importTextType.Paste || options.type == Common.Utils.importTextType.Columns) ? 190 : (options.warning ? 187 : 147);
|
height = (options.type == Common.Utils.importTextType.CSV || options.type == Common.Utils.importTextType.Paste || options.type == Common.Utils.importTextType.Columns) ? 190 : (options.warning ? 187 : 147);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ define([
|
||||||
'</div>',
|
'</div>',
|
||||||
'<% } else { %>',
|
'<% } else { %>',
|
||||||
'<div>',
|
'<div>',
|
||||||
'<label class="header">' + t.txtPassword + '</label>',
|
'<label class="">' + t.txtOpenFile + '</label>',
|
||||||
'<div id="id-password-txt"></div>',
|
'<div id="id-password-txt"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<% } %>',
|
'<% } %>',
|
||||||
|
@ -507,7 +507,8 @@ define([
|
||||||
txtColon: 'Colon',
|
txtColon: 'Colon',
|
||||||
txtSemicolon: 'Semicolon',
|
txtSemicolon: 'Semicolon',
|
||||||
txtProtected: 'Once you enter the password and open the file, the current password to the file will be reset.',
|
txtProtected: 'Once you enter the password and open the file, the current password to the file will be reset.',
|
||||||
txtAdvanced: 'Advanced'
|
txtAdvanced: 'Advanced',
|
||||||
|
txtOpenFile: "Enter a password to open the file"
|
||||||
|
|
||||||
}, Common.Views.OpenDialog || {}));
|
}, Common.Views.OpenDialog || {}));
|
||||||
});
|
});
|
|
@ -54,8 +54,8 @@ define([
|
||||||
_options = {};
|
_options = {};
|
||||||
|
|
||||||
_.extend(_options, {
|
_.extend(_options, {
|
||||||
width : 350,
|
width : 395,
|
||||||
height : 238,
|
height : 270,
|
||||||
header : true,
|
header : true,
|
||||||
cls : 'modal-dlg',
|
cls : 'modal-dlg',
|
||||||
contentTemplate : '',
|
contentTemplate : '',
|
||||||
|
@ -77,6 +77,7 @@ define([
|
||||||
'<label>' + t.txtRepeat + '</label>',
|
'<label>' + t.txtRepeat + '</label>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div id="id-repeat-txt" class="input-row" style="margin-bottom: 10px;"></div>',
|
'<div id="id-repeat-txt" class="input-row" style="margin-bottom: 10px;"></div>',
|
||||||
|
'<label>' + t.txtWarning + '</label>',
|
||||||
'</div>'
|
'</div>'
|
||||||
].join('');
|
].join('');
|
||||||
|
|
||||||
|
@ -154,7 +155,8 @@ define([
|
||||||
txtPassword : "Password",
|
txtPassword : "Password",
|
||||||
txtDescription : "A Password is required to open this document",
|
txtDescription : "A Password is required to open this document",
|
||||||
txtRepeat: 'Repeat password',
|
txtRepeat: 'Repeat password',
|
||||||
txtIncorrectPwd: 'Confirmation password is not identical'
|
txtIncorrectPwd: 'Confirmation password is not identical',
|
||||||
|
txtWarning: 'Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.'
|
||||||
|
|
||||||
}, Common.Views.PasswordDialog || {}));
|
}, Common.Views.PasswordDialog || {}));
|
||||||
});
|
});
|
|
@ -74,6 +74,8 @@ define([
|
||||||
bold: false,
|
bold: false,
|
||||||
italic: false
|
italic: false
|
||||||
};
|
};
|
||||||
|
var filter = Common.localStorage.getKeysFilter();
|
||||||
|
this.appPrefix = (filter && filter.length) ? filter.split(',')[0] : '';
|
||||||
|
|
||||||
this.template = [
|
this.template = [
|
||||||
'<div class="box" style="height: ' + ((this.signType == 'invisible') ? '132px;' : '300px;') + '">',
|
'<div class="box" style="height: ' + ((this.signType == 'invisible') ? '132px;' : '300px;') + '">',
|
||||||
|
@ -145,6 +147,7 @@ define([
|
||||||
menuStyle : 'min-width: 234px;max-height: 270px;',
|
menuStyle : 'min-width: 234px;max-height: 270px;',
|
||||||
store : new Common.Collections.Fonts(),
|
store : new Common.Collections.Fonts(),
|
||||||
recent : 0,
|
recent : 0,
|
||||||
|
takeFocusOnClose: true,
|
||||||
hint : me.tipFontName
|
hint : me.tipFontName
|
||||||
}).on('selected', function(combo, record) {
|
}).on('selected', function(combo, record) {
|
||||||
if (me.signObject) {
|
if (me.signObject) {
|
||||||
|
@ -160,6 +163,7 @@ define([
|
||||||
menuCls : 'scrollable-menu',
|
menuCls : 'scrollable-menu',
|
||||||
menuStyle: 'min-width: 55px;max-height: 270px;',
|
menuStyle: 'min-width: 55px;max-height: 270px;',
|
||||||
hint: this.tipFontSize,
|
hint: this.tipFontSize,
|
||||||
|
takeFocusOnClose: true,
|
||||||
data: [
|
data: [
|
||||||
{ value: 8, displayValue: "8" },
|
{ value: 8, displayValue: "8" },
|
||||||
{ value: 9, displayValue: "9" },
|
{ value: 9, displayValue: "9" },
|
||||||
|
@ -186,11 +190,13 @@ define([
|
||||||
me.font.size = record.value;
|
me.font.size = record.value;
|
||||||
});
|
});
|
||||||
this.cmbFontSize.setValue(this.font.size);
|
this.cmbFontSize.setValue(this.font.size);
|
||||||
|
this.cmbFontSize.on('changed:before', _.bind(this.onFontSizeChanged, this, true));
|
||||||
|
this.cmbFontSize.on('changed:after', _.bind(this.onFontSizeChanged, this, false));
|
||||||
|
|
||||||
me.btnBold = new Common.UI.Button({
|
me.btnBold = new Common.UI.Button({
|
||||||
parentEl: $('#id-dlg-sign-bold'),
|
parentEl: $('#id-dlg-sign-bold'),
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'btn-bold',
|
iconCls: 'toolbar__icon btn-bold',
|
||||||
enableToggle: true,
|
enableToggle: true,
|
||||||
hint: me.textBold
|
hint: me.textBold
|
||||||
});
|
});
|
||||||
|
@ -204,7 +210,7 @@ define([
|
||||||
me.btnItalic = new Common.UI.Button({
|
me.btnItalic = new Common.UI.Button({
|
||||||
parentEl: $('#id-dlg-sign-italic'),
|
parentEl: $('#id-dlg-sign-italic'),
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'btn-italic',
|
iconCls: 'toolbar__icon btn-italic',
|
||||||
enableToggle: true,
|
enableToggle: true,
|
||||||
hint: me.textItalic
|
hint: me.textItalic
|
||||||
});
|
});
|
||||||
|
@ -241,6 +247,10 @@ define([
|
||||||
me.afterRender();
|
me.afterRender();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
getFocusedComponents: function() {
|
||||||
|
return [this.inputPurpose, this.inputName, this.cmbFonts, this.cmbFontSize];
|
||||||
|
},
|
||||||
|
|
||||||
show: function() {
|
show: function() {
|
||||||
Common.UI.Window.prototype.show.apply(this, arguments);
|
Common.UI.Window.prototype.show.apply(this, arguments);
|
||||||
|
|
||||||
|
@ -301,8 +311,14 @@ define([
|
||||||
|
|
||||||
_handleInput: function(state) {
|
_handleInput: function(state) {
|
||||||
if (this.options.handler) {
|
if (this.options.handler) {
|
||||||
if (state == 'ok' && (this.btnOk.isDisabled() || this.signObject && !this.signObject.isValid()))
|
if (state == 'ok' && (this.btnOk.isDisabled() || this.signObject && !this.signObject.isValid())) {
|
||||||
return;
|
if (!this.btnOk.isDisabled()) {
|
||||||
|
this.inputName.showError([this.textNameError]);
|
||||||
|
this.inputName.focus();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
this.options.handler.call(this, this, state);
|
this.options.handler.call(this, this, state);
|
||||||
}
|
}
|
||||||
|
@ -334,6 +350,39 @@ define([
|
||||||
this.signObject.setText(value, this.font.name, this.font.size, this.font.italic, this.font.bold);
|
this.signObject.setText(value, this.font.name, this.font.size, this.font.italic, this.font.bold);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onFontSizeChanged: function(before, combo, record, e) {
|
||||||
|
var value,
|
||||||
|
me = this;
|
||||||
|
|
||||||
|
if (before) {
|
||||||
|
var item = combo.store.findWhere({
|
||||||
|
displayValue: record.value
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!item) {
|
||||||
|
value = /^\+?(\d*(\.|,)?\d+)$|^\+?(\d+(\.|,)?\d*)$/.exec(record.value);
|
||||||
|
|
||||||
|
if (!value) {
|
||||||
|
value = combo.getValue();
|
||||||
|
combo.setRawValue(value);
|
||||||
|
e.preventDefault();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
var maxvalue = (this.appPrefix=='sse-') ? 409 : 300;
|
||||||
|
value = Common.Utils.String.parseFloat(record.value);
|
||||||
|
value = value > maxvalue ? maxvalue :
|
||||||
|
value < 1 ? 1 : Math.floor((value+0.4)*2)/2;
|
||||||
|
|
||||||
|
combo.setRawValue(value);
|
||||||
|
if (this.signObject) {
|
||||||
|
this.signObject.setText(this.inputName.getValue(), this.font.name, value, this.font.italic, this.font.bold);
|
||||||
|
}
|
||||||
|
this.font.size = value;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
textTitle: 'Sign Document',
|
textTitle: 'Sign Document',
|
||||||
textPurpose: 'Purpose for signing this document',
|
textPurpose: 'Purpose for signing this document',
|
||||||
textCertificate: 'Certificate',
|
textCertificate: 'Certificate',
|
||||||
|
@ -347,7 +396,8 @@ define([
|
||||||
tipFontSize: 'Font Size',
|
tipFontSize: 'Font Size',
|
||||||
textBold: 'Bold',
|
textBold: 'Bold',
|
||||||
textItalic: 'Italic',
|
textItalic: 'Italic',
|
||||||
textSelect: 'Select'
|
textSelect: 'Select',
|
||||||
|
textNameError: 'Signer name must not be empty.'
|
||||||
|
|
||||||
}, Common.Views.SignDialog || {}))
|
}, Common.Views.SignDialog || {}))
|
||||||
});
|
});
|
|
@ -142,13 +142,12 @@ define([
|
||||||
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
|
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function() {
|
getFocusedComponents: function() {
|
||||||
Common.UI.Window.prototype.show.apply(this, arguments);
|
return [this.inputName, this.inputTitle, this.inputEmail, this.textareaInstructions];
|
||||||
|
},
|
||||||
|
|
||||||
var me = this;
|
getDefaultFocusableComponent: function () {
|
||||||
_.delay(function(){
|
return this.inputName;
|
||||||
me.inputName.cmpEl.find('input').focus();
|
|
||||||
},500);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
setSettings: function (props) {
|
setSettings: function (props) {
|
||||||
|
@ -164,6 +163,8 @@ define([
|
||||||
value = props.asc_getInstructions();
|
value = props.asc_getInstructions();
|
||||||
me.textareaInstructions.val(value ? value : '');
|
me.textareaInstructions.val(value ? value : '');
|
||||||
me.chDate.setValue(props.asc_getShowDate());
|
me.chDate.setValue(props.asc_getShowDate());
|
||||||
|
|
||||||
|
me._currentGuid = props.asc_getGuid();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -176,6 +177,7 @@ define([
|
||||||
props.asc_setEmail(me.inputEmail.getValue());
|
props.asc_setEmail(me.inputEmail.getValue());
|
||||||
props.asc_setInstructions(me.textareaInstructions.val());
|
props.asc_setInstructions(me.textareaInstructions.val());
|
||||||
props.asc_setShowDate(me.chDate.getValue()=='checked');
|
props.asc_setShowDate(me.chDate.getValue()=='checked');
|
||||||
|
(me._currentGuid!==undefined) && props.asc_setGuid(me._currentGuid);
|
||||||
|
|
||||||
return props;
|
return props;
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
@x-huge-btn-height: 46px;
|
@x-huge-btn-height: 46px;
|
||||||
@btn-disabled-opacity: .4;
|
|
||||||
@x-huge-btn-icon-size: 28px;
|
@x-huge-btn-icon-size: 28px;
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
|
@ -40,7 +39,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&[disabled] {
|
&[disabled] {
|
||||||
opacity: @btn-disabled-opacity;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
|
@ -432,7 +431,7 @@
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
//color: #000; btn-category has no text
|
//color: #000; btn-category has no text
|
||||||
opacity: @btn-disabled-opacity;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -502,7 +501,7 @@
|
||||||
}
|
}
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -519,7 +518,7 @@
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
&.scale-menu {
|
&.scale-menu {
|
||||||
li.disabled {
|
li.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -614,7 +613,7 @@
|
||||||
|
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.35;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
.color-transparent {
|
.color-transparent {
|
||||||
|
@ -721,7 +720,7 @@
|
||||||
|
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -759,7 +758,7 @@
|
||||||
|
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -798,7 +797,7 @@
|
||||||
|
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -838,7 +837,7 @@
|
||||||
|
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -905,7 +904,7 @@
|
||||||
|
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -943,7 +942,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&[disabled] {
|
&[disabled] {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.custom {
|
&.custom {
|
||||||
|
|
|
@ -58,11 +58,9 @@
|
||||||
|
|
||||||
&.disabled,
|
&.disabled,
|
||||||
&:disabled {
|
&:disabled {
|
||||||
opacity: .4;
|
|
||||||
|
|
||||||
+ label {
|
+ label {
|
||||||
&::before {
|
&::before {
|
||||||
opacity: .4;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -106,6 +106,7 @@
|
||||||
--image-border-types-filter: invert(100%) brightness(4);
|
--image-border-types-filter: invert(100%) brightness(4);
|
||||||
--image-border-types-filter-selected: invert(100%) brightness(4);
|
--image-border-types-filter-selected: invert(100%) brightness(4);
|
||||||
--component-normal-icon-filter: invert(100%);
|
--component-normal-icon-filter: invert(100%);
|
||||||
|
--component-disabled-opacity: .3;
|
||||||
|
|
||||||
--menu-icon-item-checked-offset-x: -20px;
|
--menu-icon-item-checked-offset-x: -20px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,6 +120,7 @@
|
||||||
--image-border-types-filter: none;
|
--image-border-types-filter: none;
|
||||||
--image-border-types-filter-selected: none;
|
--image-border-types-filter-selected: none;
|
||||||
--component-normal-icon-filter: none;
|
--component-normal-icon-filter: none;
|
||||||
|
--component-disabled-opacity: .4;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Background
|
// Background
|
||||||
|
@ -188,6 +189,7 @@
|
||||||
@button-header-active-icon-offset-x: var(--button-header-active-icon-offset-x, -20px);
|
@button-header-active-icon-offset-x: var(--button-header-active-icon-offset-x, -20px);
|
||||||
|
|
||||||
@component-normal-icon-filer: var(--component-normal-icon-filter);
|
@component-normal-icon-filer: var(--component-normal-icon-filter);
|
||||||
|
@component-disabled-opacity: var(--component-disabled-opacity, .4);
|
||||||
|
|
||||||
@menu-icon-item-checked-offset-x: var(--menu-icon-item-checked-offset-x, 0);
|
@menu-icon-item-checked-offset-x: var(--menu-icon-item-checked-offset-x, 0);
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
|
|
||||||
.dataview.inner {
|
.dataview.inner {
|
||||||
> .item {
|
> .item {
|
||||||
|
|
|
@ -20,7 +20,7 @@ label {
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.5;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -200,7 +200,7 @@ label {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
cursor: default !important;
|
cursor: default !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.5;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box-shadow(0 0 0 @scaled-one-px-value-ie @border-regular-control-ie);
|
.box-shadow(0 0 0 @scaled-one-px-value-ie @border-regular-control-ie);
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
.dropdown-menu > .disabled > a {
|
.dropdown-menu > .disabled > a {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
|
color: @text-normal-ie;
|
||||||
|
color: @text-normal;
|
||||||
|
|
||||||
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
|
@ -89,7 +94,6 @@
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
.menu-item-icon {
|
.menu-item-icon {
|
||||||
opacity: .4;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -197,7 +197,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -359,7 +359,7 @@
|
||||||
|
|
||||||
.btn&[disabled],
|
.btn&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
|
@ -95,7 +95,7 @@ input.error {
|
||||||
}
|
}
|
||||||
|
|
||||||
.disabled .form-control {
|
.disabled .form-control {
|
||||||
opacity: 0.65;
|
opacity: @component-disabled-opacity;
|
||||||
cursor: default !important;
|
cursor: default !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
&.disabled {
|
&.disabled {
|
||||||
> .item {
|
> .item {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
opacity: 0.5;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,11 +42,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled, &:disabled {
|
&.disabled, &:disabled {
|
||||||
opacity: .4;
|
|
||||||
|
|
||||||
+ label {
|
+ label {
|
||||||
&::before {
|
&::before {
|
||||||
opacity: .4;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,10 +35,10 @@
|
||||||
.border-radius(2px);
|
.border-radius(2px);
|
||||||
border: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
border: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
||||||
border: @scaled-one-px-value solid @border-regular-control;
|
border: @scaled-one-px-value solid @border-regular-control;
|
||||||
-o-transition: background-color .5s 0 linear;
|
-o-transition: background-color .2s linear;
|
||||||
-webkit-transition: background-color .5s 0 linear;
|
-webkit-transition: background-color .2s linear;
|
||||||
-moz-transition: background-color .5s 0 linear;
|
-moz-transition: background-color .2s linear;
|
||||||
transition: background-color .5s 0 linear;
|
transition: background-color .2s linear;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,10 +95,10 @@
|
||||||
.border-radius(2px);
|
.border-radius(2px);
|
||||||
border: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
border: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
||||||
border: @scaled-one-px-value solid @border-regular-control;
|
border: @scaled-one-px-value solid @border-regular-control;
|
||||||
-o-transition: background-color .5s 0 linear;
|
-o-transition: background-color .2s linear;
|
||||||
-webkit-transition: background-color .5s 0 linear;
|
-webkit-transition: background-color .2s linear;
|
||||||
-moz-transition: background-color .5s 0 linear;
|
-moz-transition: background-color .2s linear;
|
||||||
transition: background-color .5s 0 linear;
|
transition: background-color .2s linear;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.35;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
button {
|
button {
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: .35;
|
opacity: @component-disabled-opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
|
@ -134,7 +134,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.3;
|
opacity: @component-disabled-opacity;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2364,7 +2364,7 @@ define([
|
||||||
var _disable_ui = function (disable) {
|
var _disable_ui = function (disable) {
|
||||||
me.disableEditing(disable);
|
me.disableEditing(disable);
|
||||||
var app = me.getApplication();
|
var app = me.getApplication();
|
||||||
app.getController('DocumentHolder').getView().SetDisabled(disable, true);
|
app.getController('DocumentHolder').getView().SetDisabled(disable);
|
||||||
app.getController('Navigation') && app.getController('Navigation').SetDisabled(disable);
|
app.getController('Navigation') && app.getController('Navigation').SetDisabled(disable);
|
||||||
|
|
||||||
var leftMenu = app.getController('LeftMenu');
|
var leftMenu = app.getController('LeftMenu');
|
||||||
|
|
|
@ -70,7 +70,7 @@ define([
|
||||||
Common.localStorage.setBool('de-hidden-status', status);
|
Common.localStorage.setBool('de-hidden-status', status);
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('layout:changed', 'status');
|
Common.NotificationCenter.trigger('layout:changed', 'status');
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.statusbar);
|
Common.NotificationCenter.trigger('edit:complete', me.statusbar);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -117,7 +117,6 @@ define([
|
||||||
});
|
});
|
||||||
|
|
||||||
Common.NotificationCenter.on('app:ready', me.onAppReady.bind(me));
|
Common.NotificationCenter.on('app:ready', me.onAppReady.bind(me));
|
||||||
Common.NotificationCenter.on('reviewchanges:turn', me.onTurnPreview.bind(me));
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onAppReady: function (config) {
|
onAppReady: function (config) {
|
||||||
|
@ -137,6 +136,7 @@ define([
|
||||||
if (me.changesTooltip === undefined)
|
if (me.changesTooltip === undefined)
|
||||||
me.changesTooltip = me.createChangesTip(me.textTrackChanges, 'de-track-changes-tip');
|
me.changesTooltip = me.createChangesTip(me.textTrackChanges, 'de-track-changes-tip');
|
||||||
|
|
||||||
|
me.hideTips();
|
||||||
me.changesTooltip.show();
|
me.changesTooltip.show();
|
||||||
} else {
|
} else {
|
||||||
me.btnTurnReview.updateHint(me.tipReview);
|
me.btnTurnReview.updateHint(me.tipReview);
|
||||||
|
@ -155,6 +155,7 @@ define([
|
||||||
if (me.newChangesTooltip === undefined)
|
if (me.newChangesTooltip === undefined)
|
||||||
me.newChangesTooltip = me.createChangesTip(me.textHasChanges, 'de-new-changes');
|
me.newChangesTooltip = me.createChangesTip(me.textHasChanges, 'de-new-changes');
|
||||||
|
|
||||||
|
me.hideTips();
|
||||||
me.newChangesTooltip.show();
|
me.newChangesTooltip.show();
|
||||||
} else
|
} else
|
||||||
me.btnTurnReview.updateHint(me.tipReview);
|
me.btnTurnReview.updateHint(me.tipReview);
|
||||||
|
@ -163,14 +164,21 @@ define([
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
onTurnPreview: function(state, global, fromApi) {
|
onApiTrackRevisionsChange: function(localFlag, globalFlag, userId) {
|
||||||
if (!state && this.changesTooltip && this.changesTooltip.isVisible()) {
|
var global = (localFlag===null),
|
||||||
this.changesTooltip.hide();
|
state = global ? globalFlag : localFlag;
|
||||||
this.btnTurnReview.updateHint(this.tipReview);
|
if (this.btnTurnReview) {
|
||||||
} else if (fromApi && state && global ) {
|
if (!state) {
|
||||||
if (this.globalChangesTooltip === undefined)
|
this.hideTips();
|
||||||
this.globalChangesTooltip = this.createChangesTip(this.textSetTrackChanges);
|
this.btnTurnReview.updateHint(this.tipReview);
|
||||||
!this.globalChangesTooltip.isVisible() && this.globalChangesTooltip.show();
|
} else if (userId && state && global ) {
|
||||||
|
if (this.globalChangesTooltip === undefined)
|
||||||
|
this.globalChangesTooltip = this.createChangesTip(this.textSetTrackChanges);
|
||||||
|
if (!this.globalChangesTooltip.isVisible()) {
|
||||||
|
this.hideTips();
|
||||||
|
this.globalChangesTooltip.show();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -178,6 +186,7 @@ define([
|
||||||
this.api = api;
|
this.api = api;
|
||||||
this.api.asc_registerCallback('asc_onZoomChange', _.bind(this._onZoomChange, this));
|
this.api.asc_registerCallback('asc_onZoomChange', _.bind(this._onZoomChange, this));
|
||||||
this.api.asc_registerCallback('asc_onTextLanguage', _.bind(this._onTextLanguage, this));
|
this.api.asc_registerCallback('asc_onTextLanguage', _.bind(this._onTextLanguage, this));
|
||||||
|
this.api.asc_registerCallback('asc_onOnTrackRevisionsChange', _.bind(this.onApiTrackRevisionsChange, this));
|
||||||
|
|
||||||
this.statusbar.setApi(api);
|
this.statusbar.setApi(api);
|
||||||
},
|
},
|
||||||
|
@ -257,6 +266,12 @@ define([
|
||||||
this.setStatusCaption('');
|
this.setStatusCaption('');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
hideTips: function () {
|
||||||
|
this.changesTooltip && this.changesTooltip.isVisible() && this.changesTooltip.hide();
|
||||||
|
this.newChangesTooltip && this.newChangesTooltip.isVisible() && this.newChangesTooltip.hide();
|
||||||
|
this.globalChangesTooltip && this.globalChangesTooltip.isVisible() && this.globalChangesTooltip.hide();
|
||||||
|
},
|
||||||
|
|
||||||
createChangesTip: function (text, storage) {
|
createChangesTip: function (text, storage) {
|
||||||
var me = this;
|
var me = this;
|
||||||
var tip = new Common.UI.SynchronizeTip({
|
var tip = new Common.UI.SynchronizeTip({
|
||||||
|
|
|
@ -295,6 +295,12 @@ define([
|
||||||
toolbar.mnuMarkerSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 0));
|
toolbar.mnuMarkerSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 0));
|
||||||
toolbar.mnuNumberSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 1));
|
toolbar.mnuNumberSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 1));
|
||||||
toolbar.mnuMultilevelSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 2));
|
toolbar.mnuMultilevelSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 2));
|
||||||
|
toolbar.mnuMarkerChangeLevel && toolbar.mnuMarkerChangeLevel.menu &&
|
||||||
|
toolbar.mnuMarkerChangeLevel.menu.on('show:after', _.bind(this.onChangeLevelShowAfter, this, 0));
|
||||||
|
toolbar.mnuMarkerChangeLevel.menu.on('item:click', _.bind(this.onChangeLevelClick, this, 0));
|
||||||
|
toolbar.mnuNumberChangeLevel && toolbar.mnuNumberChangeLevel.menu &&
|
||||||
|
toolbar.mnuNumberChangeLevel.menu.on('show:after', _.bind(this.onChangeLevelShowAfter, this, 1));
|
||||||
|
toolbar.mnuNumberChangeLevel.menu.on('item:click', _.bind(this.onChangeLevelClick, this, 1));
|
||||||
toolbar.btnHighlightColor.on('click', _.bind(this.onBtnHighlightColor, this));
|
toolbar.btnHighlightColor.on('click', _.bind(this.onBtnHighlightColor, this));
|
||||||
toolbar.btnFontColor.on('click', _.bind(this.onBtnFontColor, this));
|
toolbar.btnFontColor.on('click', _.bind(this.onBtnFontColor, this));
|
||||||
toolbar.btnParagraphColor.on('click', _.bind(this.onBtnParagraphColor, this));
|
toolbar.btnParagraphColor.on('click', _.bind(this.onBtnParagraphColor, this));
|
||||||
|
@ -518,6 +524,7 @@ define([
|
||||||
this.toolbar.mnuMarkersPicker.deselectAll(true);
|
this.toolbar.mnuMarkersPicker.deselectAll(true);
|
||||||
this.toolbar.mnuMultilevelPicker.deselectAll(true);
|
this.toolbar.mnuMultilevelPicker.deselectAll(true);
|
||||||
this.toolbar.mnuMarkerSettings && this.toolbar.mnuMarkerSettings.setDisabled(this._state.bullets.subtype<0);
|
this.toolbar.mnuMarkerSettings && this.toolbar.mnuMarkerSettings.setDisabled(this._state.bullets.subtype<0);
|
||||||
|
this.toolbar.mnuMarkerChangeLevel && this.toolbar.mnuMarkerChangeLevel.setDisabled(this._state.bullets.subtype<0);
|
||||||
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(this._state.bullets.subtype<0);
|
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(this._state.bullets.subtype<0);
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -552,6 +559,7 @@ define([
|
||||||
this.toolbar.mnuNumbersPicker.deselectAll(true);
|
this.toolbar.mnuNumbersPicker.deselectAll(true);
|
||||||
this.toolbar.mnuMultilevelPicker.deselectAll(true);
|
this.toolbar.mnuMultilevelPicker.deselectAll(true);
|
||||||
this.toolbar.mnuNumberSettings && this.toolbar.mnuNumberSettings.setDisabled(idx==0);
|
this.toolbar.mnuNumberSettings && this.toolbar.mnuNumberSettings.setDisabled(idx==0);
|
||||||
|
this.toolbar.mnuNumberChangeLevel && this.toolbar.mnuNumberChangeLevel.setDisabled(idx==0);
|
||||||
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(idx==0);
|
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(idx==0);
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
|
@ -1398,6 +1406,24 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onChangeLevelShowAfter: function(type, menu) {
|
||||||
|
var me = this;
|
||||||
|
var listId = me.api.asc_GetCurrentNumberingId(),
|
||||||
|
level = me.api.asc_GetCurrentNumberingLvl(),
|
||||||
|
props = (listId !== null) ? me.api.asc_GetNumberingPr(listId) : null;
|
||||||
|
if (props) {
|
||||||
|
this.api.SetDrawImagePreviewBulletChangeListLevel(menu.options.previewIds, props);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onChangeLevelClick: function(type, menu, item) {
|
||||||
|
if (this.api) {
|
||||||
|
this.api.asc_SetNumberingLvl(item.options.level);
|
||||||
|
}
|
||||||
|
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
||||||
|
},
|
||||||
|
|
||||||
onLineSpaceToggle: function(menu, item, state, e) {
|
onLineSpaceToggle: function(menu, item, state, e) {
|
||||||
if (!!state) {
|
if (!!state) {
|
||||||
this._state.linespace = undefined;
|
this._state.linespace = undefined;
|
||||||
|
@ -2359,6 +2385,8 @@ define([
|
||||||
this.toolbar.mnuMarkerSettings && this.toolbar.mnuMarkerSettings.setDisabled(true);
|
this.toolbar.mnuMarkerSettings && this.toolbar.mnuMarkerSettings.setDisabled(true);
|
||||||
this.toolbar.mnuNumberSettings && this.toolbar.mnuNumberSettings.setDisabled(true);
|
this.toolbar.mnuNumberSettings && this.toolbar.mnuNumberSettings.setDisabled(true);
|
||||||
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(true);
|
this.toolbar.mnuMultilevelSettings && this.toolbar.mnuMultilevelSettings.setDisabled(true);
|
||||||
|
this.toolbar.mnuMarkerChangeLevel && this.toolbar.mnuMarkerChangeLevel.setDisabled(true);
|
||||||
|
this.toolbar.mnuNumberChangeLevel && this.toolbar.mnuNumberChangeLevel.setDisabled(true);
|
||||||
},
|
},
|
||||||
|
|
||||||
_getApiTextSize: function () {
|
_getApiTextSize: function () {
|
||||||
|
@ -3193,7 +3221,7 @@ define([
|
||||||
|
|
||||||
textEmptyImgUrl : 'You need to specify image URL.',
|
textEmptyImgUrl : 'You need to specify image URL.',
|
||||||
textWarning : 'Warning',
|
textWarning : 'Warning',
|
||||||
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 100',
|
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 300',
|
||||||
textSymbols : 'Symbols',
|
textSymbols : 'Symbols',
|
||||||
textFraction : 'Fraction',
|
textFraction : 'Fraction',
|
||||||
textScript : 'Script',
|
textScript : 'Script',
|
||||||
|
|
|
@ -313,21 +313,6 @@ define([
|
||||||
cls : 'btn-toolbar'
|
cls : 'btn-toolbar'
|
||||||
})).on('click', _on_btn_zoom.bind(me, 'up'));
|
})).on('click', _on_btn_zoom.bind(me, 'up'));
|
||||||
|
|
||||||
if ( Common.UI.Themes.available() ) {
|
|
||||||
var mnuitemDarkTheme = new Common.UI.MenuItem({
|
|
||||||
caption: me.header.textDarkTheme,
|
|
||||||
checked: Common.UI.Themes.isDarkTheme(),
|
|
||||||
checkable: true,
|
|
||||||
value: 'theme:dark'
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
me.header.btnOptions.menu.insertItem(7, mnuitemDarkTheme);
|
|
||||||
me.header.btnOptions.menu.insertItem(7, {caption:'--'});
|
|
||||||
Common.NotificationCenter.on('uitheme:change', function (name) {
|
|
||||||
mnuitemDarkTheme.setChecked(Common.UI.Themes.isDarkTheme());
|
|
||||||
});
|
|
||||||
}
|
|
||||||
me.header.btnOptions.menu.on('item:click', me.onOptionsItemClick.bind(this));
|
me.header.btnOptions.menu.on('item:click', me.onOptionsItemClick.bind(this));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -415,10 +400,6 @@ define([
|
||||||
Common.NotificationCenter.trigger('edit:complete', me.header);
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
break;
|
break;
|
||||||
case 'advanced': me.header.fireEvent('file:settings', me.header); break;
|
case 'advanced': me.header.fireEvent('file:settings', me.header); break;
|
||||||
case 'theme:dark':
|
|
||||||
if ( item.isChecked() != Common.UI.Themes.isDarkTheme() )
|
|
||||||
Common.UI.Themes.toggleTheme();
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<label class="input-label"><%= scope.strIndentsRightText %></label>
|
<label class="input-label"><%= scope.strIndentsRightText %></label>
|
||||||
<div id="paragraphadv-spin-indent-right"></div>
|
<div id="paragraphadv-spin-indent-right"></div>
|
||||||
</div><!--
|
</div><!--
|
||||||
--><div class="padding-large" style="display: inline-block;">
|
--><div class="padding-large" style="display: inline-block;vertical-align: top">
|
||||||
<div>
|
<div>
|
||||||
<label class="input-label"><%= scope.strIndentsSpecial %></label>
|
<label class="input-label"><%= scope.strIndentsSpecial %></label>
|
||||||
</div>
|
</div>
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
<label class="input-label"><%= scope.strIndentsSpacingAfter %></label>
|
<label class="input-label"><%= scope.strIndentsSpacingAfter %></label>
|
||||||
<div id="paragraphadv-spin-spacing-after"></div>
|
<div id="paragraphadv-spin-spacing-after"></div>
|
||||||
</div><!--
|
</div><!--
|
||||||
--><div style="display: inline-block;">
|
--><div style="display: inline-block;vertical-align: top">
|
||||||
<div>
|
<div>
|
||||||
<label class="input-label"><%= scope.strIndentsLineSpacing %></label>
|
<label class="input-label"><%= scope.strIndentsLineSpacing %></label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -139,7 +139,7 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
|
||||||
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
|
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
|
||||||
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
|
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
|
||||||
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
|
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
|
||||||
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', '99CCFF', 'CC99FF', 'FFFFFF'
|
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
|
||||||
],
|
],
|
||||||
paletteHeight: 94
|
paletteHeight: 94
|
||||||
});
|
});
|
||||||
|
|
|
@ -809,7 +809,7 @@ define([
|
||||||
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
|
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
|
||||||
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
|
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
|
||||||
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
|
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
|
||||||
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', '99CCFF', 'CC99FF', 'FFFFFF'
|
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
|
||||||
],
|
],
|
||||||
paletteHeight: 94
|
paletteHeight: 94
|
||||||
});
|
});
|
||||||
|
|
|
@ -408,7 +408,7 @@ define([
|
||||||
arr = (version || '').split('.'),
|
arr = (version || '').split('.'),
|
||||||
ver = '';
|
ver = '';
|
||||||
(arr.length>0) && (ver += ('v. ' + arr[0]));
|
(arr.length>0) && (ver += ('v. ' + arr[0]));
|
||||||
(arr.length>1) && (ver += ('.' + arr[0]));
|
(arr.length>1) && (ver += ('.' + arr[1]));
|
||||||
this.betaHint = $('<div id="beta-hint"' + style + '>' + (ver + ' (beta)' ) + '</div>').appendTo(this.$el);
|
this.betaHint = $('<div id="beta-hint"' + style + '>' + (ver + ' (beta)' ) + '</div>').appendTo(this.$el);
|
||||||
this.betaHeight = this.betaHint.outerHeight();
|
this.betaHeight = this.betaHint.outerHeight();
|
||||||
!this.devHintInited && $(window).on('resize', _.bind(this.onWindowResize, this));
|
!this.devHintInited && $(window).on('resize', _.bind(this.onWindowResize, this));
|
||||||
|
|
|
@ -118,6 +118,7 @@ define([
|
||||||
width: 80,
|
width: 80,
|
||||||
defaultUnit : 'cm',
|
defaultUnit : 'cm',
|
||||||
value: 'Auto',
|
value: 'Auto',
|
||||||
|
autoText : this.txtAutoText,
|
||||||
maxValue: 55.87,
|
maxValue: 55.87,
|
||||||
minValue: 0.1,
|
minValue: 0.1,
|
||||||
allowAuto: true,
|
allowAuto: true,
|
||||||
|
@ -253,6 +254,7 @@ define([
|
||||||
textApplyTo: 'Apply changes to',
|
textApplyTo: 'Apply changes to',
|
||||||
textDocument: 'Whole document',
|
textDocument: 'Whole document',
|
||||||
textSection: 'Current section',
|
textSection: 'Current section',
|
||||||
textForward: 'This point forward'
|
textForward: 'This point forward',
|
||||||
|
txtAutoText: 'Auto'
|
||||||
}, DE.Views.LineNumbersDialog || {}))
|
}, DE.Views.LineNumbersDialog || {}))
|
||||||
});
|
});
|
|
@ -256,6 +256,8 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
showSignatureMenu: function(record, showPoint) {
|
showSignatureMenu: function(record, showPoint) {
|
||||||
|
this.api.asc_gotoSignature(record.get('guid'));
|
||||||
|
|
||||||
var menu = this.signatureMenu,
|
var menu = this.signatureMenu,
|
||||||
parent = $(this.el),
|
parent = $(this.el),
|
||||||
menuContainer = parent.find('#menu-signature-container');
|
menuContainer = parent.find('#menu-signature-container');
|
||||||
|
|
|
@ -224,7 +224,7 @@ define([
|
||||||
|
|
||||||
this.chLinks = new Common.UI.CheckBox({
|
this.chLinks = new Common.UI.CheckBox({
|
||||||
el: $('#tableofcontents-chb-links'),
|
el: $('#tableofcontents-chb-links'),
|
||||||
labelText: this.strLinks,
|
labelText: (this.type==1) ? this.strLinksOF : this.strLinks,
|
||||||
value: 'checked'
|
value: 'checked'
|
||||||
});
|
});
|
||||||
this.chLinks.on('change', _.bind(function(field, newValue, oldValue, eOpts){
|
this.chLinks.on('change', _.bind(function(field, newValue, oldValue, eOpts){
|
||||||
|
@ -376,7 +376,7 @@ define([
|
||||||
template: _.template(['<div class="listview inner" style=""></div>'].join('')),
|
template: _.template(['<div class="listview inner" style=""></div>'].join('')),
|
||||||
itemTemplate: _.template([
|
itemTemplate: _.template([
|
||||||
'<div id="<%= id %>" class="list-item">',
|
'<div id="<%= id %>" class="list-item">',
|
||||||
'<div class="<% if (checked) { %>checked<% } %>"><%= name %></div>',
|
'<div class="<% if (checked) { %>checked<% } %>"><%= displayValue %></div>',
|
||||||
'<div>',
|
'<div>',
|
||||||
'<div class="input-field" style="width:40px;"><input type="text" class="form-control" value="<%= value %>" style="text-align: right;" maxLength="1">',
|
'<div class="input-field" style="width:40px;"><input type="text" class="form-control" value="<%= value %>" style="text-align: right;" maxLength="1">',
|
||||||
'</div>',
|
'</div>',
|
||||||
|
@ -519,6 +519,7 @@ define([
|
||||||
if (style.get_QFormat() || level>=0) {
|
if (style.get_QFormat() || level>=0) {
|
||||||
styles.push({
|
styles.push({
|
||||||
name: name,
|
name: name,
|
||||||
|
displayValue: style.get_TranslatedName(),
|
||||||
allowSelected: false,
|
allowSelected: false,
|
||||||
checked: false,
|
checked: false,
|
||||||
value: '',
|
value: '',
|
||||||
|
@ -553,6 +554,7 @@ define([
|
||||||
} else {
|
} else {
|
||||||
styles.push({
|
styles.push({
|
||||||
name: style,
|
name: style,
|
||||||
|
displayValue: style,
|
||||||
allowSelected: false,
|
allowSelected: false,
|
||||||
checked: true,
|
checked: true,
|
||||||
value: level,
|
value: level,
|
||||||
|
@ -609,8 +611,8 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
styles.sort(function(a, b){
|
styles.sort(function(a, b){
|
||||||
var aname = a.name.toLocaleLowerCase(),
|
var aname = a.displayValue.toLocaleLowerCase(),
|
||||||
bname = b.name.toLocaleLowerCase();
|
bname = b.displayValue.toLocaleLowerCase();
|
||||||
if (aname < bname) return -1;
|
if (aname < bname) return -1;
|
||||||
if (aname > bname) return 1;
|
if (aname > bname) return 1;
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -657,18 +659,25 @@ define([
|
||||||
|
|
||||||
arr = [];
|
arr = [];
|
||||||
_.each(this.api.asc_getAllUsedParagraphStyles(), function (style, index) {
|
_.each(this.api.asc_getAllUsedParagraphStyles(), function (style, index) {
|
||||||
var name = style.get_Name();
|
|
||||||
arr.push({
|
arr.push({
|
||||||
displayValue: name,
|
displayValue: style.get_TranslatedName(),
|
||||||
|
styleName: style.get_Name(),
|
||||||
value: index
|
value: index
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
arr.sort(function(a, b){
|
||||||
|
var aname = a.displayValue.toLocaleLowerCase(),
|
||||||
|
bname = b.displayValue.toLocaleLowerCase();
|
||||||
|
if (aname < bname) return -1;
|
||||||
|
if (aname > bname) return 1;
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
this.cmbTOFStyles.setData(arr);
|
this.cmbTOFStyles.setData(arr);
|
||||||
value = undefined;
|
value = undefined;
|
||||||
if (props) {
|
if (props) {
|
||||||
var count = props.get_StylesCount();
|
var count = props.get_StylesCount();
|
||||||
if (count>0) {
|
if (count>0) {
|
||||||
var rec = this.cmbTOFStyles.store.findWhere({displayValue: props.get_StyleName(0)});
|
var rec = this.cmbTOFStyles.store.findWhere({styleName: props.get_StyleName(0)});
|
||||||
rec && (value = rec.get('value'));
|
rec && (value = rec.get('value'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -759,7 +768,7 @@ define([
|
||||||
} else {
|
} else {
|
||||||
props.put_Caption(null);
|
props.put_Caption(null);
|
||||||
var rec = this.cmbTOFStyles.getSelectedRecord();
|
var rec = this.cmbTOFStyles.getSelectedRecord();
|
||||||
rec && props.add_Style(rec.displayValue);
|
rec && props.add_Style(rec.styleName);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (this._needUpdateOutlineLevels) {
|
if (this._needUpdateOutlineLevels) {
|
||||||
|
@ -837,7 +846,7 @@ define([
|
||||||
var properties = (this._originalProps) ? this._originalProps : new Asc.CTableOfContentsPr();
|
var properties = (this._originalProps) ? this._originalProps : new Asc.CTableOfContentsPr();
|
||||||
properties.put_Caption(null);
|
properties.put_Caption(null);
|
||||||
properties.clear_Styles();
|
properties.clear_Styles();
|
||||||
properties.add_Style(record.displayValue);
|
properties.add_Style(record.styleName);
|
||||||
this.api.SetDrawImagePlaceTableOfFigures('tableofcontents-img', properties);
|
this.api.SetDrawImagePlaceTableOfFigures('tableofcontents-img', properties);
|
||||||
this.scrollerY.update();
|
this.scrollerY.update();
|
||||||
}
|
}
|
||||||
|
@ -896,7 +905,8 @@ define([
|
||||||
textTable: 'Table',
|
textTable: 'Table',
|
||||||
txtDistinctive: 'Distinctive',
|
txtDistinctive: 'Distinctive',
|
||||||
txtCentered: 'Centered',
|
txtCentered: 'Centered',
|
||||||
txtFormal: 'Formal'
|
txtFormal: 'Formal',
|
||||||
|
strLinksOF: 'Format table of figures as links'
|
||||||
|
|
||||||
}, DE.Views.TableOfContentsSettings || {}))
|
}, DE.Views.TableOfContentsSettings || {}))
|
||||||
});
|
});
|
|
@ -1694,13 +1694,28 @@ define([
|
||||||
// set menus
|
// set menus
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
|
var levelTemplate = _.template('<a id="<%= id %>" tabindex="-1" type="menuitem"><div id="<%= options.previewId %>" class="menu-list-preview" style="width: 160px; height: 30px;"></div></a>');
|
||||||
|
var items = [], ids = [];
|
||||||
|
for (var i=0; i<9; i++) {
|
||||||
|
ids.push('id-toolbar-menu-markers-level-' + i);
|
||||||
|
items.push({template: levelTemplate, previewId: ids[i], level: i });
|
||||||
|
}
|
||||||
this.btnMarkers.setMenu(
|
this.btnMarkers.setMenu(
|
||||||
new Common.UI.Menu({
|
new Common.UI.Menu({
|
||||||
cls: 'shifted-left',
|
cls: 'shifted-left',
|
||||||
style: 'min-width: 139px',
|
style: 'min-width: 139px',
|
||||||
items: [
|
items: [
|
||||||
{template: _.template('<div id="id-toolbar-menu-markers" class="menu-markers" style="width: 139px; margin: 0 9px;"></div>')},
|
{template: _.template('<div id="id-toolbar-menu-markers" class="menu-markers" style="width: 139px; margin: 0 9px;"></div>')},
|
||||||
|
this.mnuMarkerChangeLevel = new Common.UI.MenuItem({
|
||||||
|
caption: this.textChangeLevel,
|
||||||
|
style: 'padding-right:20px;',
|
||||||
|
menu: new Common.UI.Menu({
|
||||||
|
cls: 'list-settings-level',
|
||||||
|
menuAlign: 'tl-tr',
|
||||||
|
items: items,
|
||||||
|
previewIds: ids
|
||||||
|
})
|
||||||
|
}),
|
||||||
this.mnuMarkerSettings = new Common.UI.MenuItem({
|
this.mnuMarkerSettings = new Common.UI.MenuItem({
|
||||||
caption: this.textListSettings,
|
caption: this.textListSettings,
|
||||||
disabled: (this.mnuMarkersPicker.conf.index || 0)==0,
|
disabled: (this.mnuMarkersPicker.conf.index || 0)==0,
|
||||||
|
@ -1710,11 +1725,26 @@ define([
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
items = [], ids = [];
|
||||||
|
for (var i=0; i<9; i++) {
|
||||||
|
ids.push('id-toolbar-menu-numbering-level-' + i);
|
||||||
|
items.push({template: levelTemplate, previewId: ids[i], level: i });
|
||||||
|
}
|
||||||
this.btnNumbers.setMenu(
|
this.btnNumbers.setMenu(
|
||||||
new Common.UI.Menu({
|
new Common.UI.Menu({
|
||||||
cls: 'shifted-left',
|
cls: 'shifted-left',
|
||||||
items: [
|
items: [
|
||||||
{template: _.template('<div id="id-toolbar-menu-numbering" class="menu-markers" style="width: 185px; margin: 0 9px;"></div>')},
|
{template: _.template('<div id="id-toolbar-menu-numbering" class="menu-markers" style="width: 185px; margin: 0 9px;"></div>')},
|
||||||
|
this.mnuNumberChangeLevel = new Common.UI.MenuItem({
|
||||||
|
caption: this.textChangeLevel,
|
||||||
|
style: 'padding-right:20px;',
|
||||||
|
menu: new Common.UI.Menu({
|
||||||
|
cls: 'list-settings-level',
|
||||||
|
menuAlign: 'tl-tr',
|
||||||
|
items: items,
|
||||||
|
previewIds: ids
|
||||||
|
})
|
||||||
|
}),
|
||||||
this.mnuNumberSettings = new Common.UI.MenuItem({
|
this.mnuNumberSettings = new Common.UI.MenuItem({
|
||||||
caption: this.textListSettings,
|
caption: this.textListSettings,
|
||||||
disabled: (this.mnuNumbersPicker.conf.index || 0)==0,
|
disabled: (this.mnuNumbersPicker.conf.index || 0)==0,
|
||||||
|
@ -1981,7 +2011,7 @@ define([
|
||||||
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
|
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
|
||||||
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
|
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
|
||||||
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
|
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
|
||||||
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', '99CCFF', 'CC99FF', 'FFFFFF'
|
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -2417,7 +2447,8 @@ define([
|
||||||
mniLowerCase: 'lowercase',
|
mniLowerCase: 'lowercase',
|
||||||
mniUpperCase: 'UPPERCASE',
|
mniUpperCase: 'UPPERCASE',
|
||||||
mniCapitalizeWords: 'Capitalize Each Word',
|
mniCapitalizeWords: 'Capitalize Each Word',
|
||||||
mniToggleCase: 'tOGGLE cASE'
|
mniToggleCase: 'tOGGLE cASE',
|
||||||
|
textChangeLevel: 'Change List Level'
|
||||||
}
|
}
|
||||||
})(), DE.Views.Toolbar || {}));
|
})(), DE.Views.Toolbar || {}));
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,6 +10,16 @@
|
||||||
<!-- splash -->
|
<!-- splash -->
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
|
.theme-dark {
|
||||||
|
--toolbar-header-document: #2a2a2a;
|
||||||
|
--background-toolbar: #404040;
|
||||||
|
--border-toolbar: #2a2a2a;
|
||||||
|
--highlight-button-pressed: #606060;
|
||||||
|
--canvas-background: #666666;
|
||||||
|
/*--canvas-content-background: #fff;*/
|
||||||
|
--canvas-page-border: #555;
|
||||||
|
}
|
||||||
|
|
||||||
.loadmask {
|
.loadmask {
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -18,7 +28,8 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
background: #e2e2e2;
|
background: #f0f0f0;
|
||||||
|
background: var(--canvas-background, #f0f0f0);
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,6 +37,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 28px;
|
min-height: 28px;
|
||||||
background: #446995;
|
background: #446995;
|
||||||
|
background: var(--toolbar-header-document, #446995);
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel > div {
|
.loadmask > .brendpanel > div {
|
||||||
|
@ -61,8 +73,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar {
|
.loadmask > .sktoolbar {
|
||||||
background: #f1f1f1;
|
background: #f7f7f7;
|
||||||
border-bottom: var(--scaled-one-px-value, 1px) solid #cfcfcf;
|
background: var(--background-toolbar, #f7f7f7);
|
||||||
|
border-bottom: 1px solid #cbcbcb;
|
||||||
|
border-bottom: var(--scaled-one-px-value, 1px) solid var(--border-toolbar, #cbcbcb);
|
||||||
height: 46px;
|
height: 46px;
|
||||||
padding: 10px 6px;
|
padding: 10px 6px;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
|
@ -76,7 +90,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar li {
|
.loadmask > .sktoolbar li {
|
||||||
background: #e2e2e2;
|
background: #ccc;
|
||||||
|
background: var(--highlight-button-pressed, #ccc);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
@ -100,11 +115,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .placeholder {
|
.loadmask > .placeholder {
|
||||||
background: #fbfbfb;
|
background: #fff;
|
||||||
|
background: var(--canvas-content-background, #fff);
|
||||||
width: 794px;
|
width: 794px;
|
||||||
margin: 46px auto;
|
margin: 46px auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: var(--scaled-one-px-value, 1px) solid #bebebe;
|
border: 1px solid #ccc;
|
||||||
|
border: var(--scaled-one-px-value, 1px) solid var(--canvas-page-border, #ccc);
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,8 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
background: #e2e2e2;
|
background: #f0f0f0;
|
||||||
|
background: var(--canvas-background, #f0f0f0);
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,6 +28,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 28px;
|
min-height: 28px;
|
||||||
background: #446995;
|
background: #446995;
|
||||||
|
background: var(--toolbar-header-document, #446995);
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel > div {
|
.loadmask > .brendpanel > div {
|
||||||
|
@ -62,8 +64,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar {
|
.loadmask > .sktoolbar {
|
||||||
background: #f1f1f1;
|
background: #f7f7f7;
|
||||||
border-bottom: var(--scaled-one-px-value, 1px) solid #cfcfcf;
|
background: var(--background-toolbar, #f7f7f7);
|
||||||
|
border-bottom: 1px solid #cbcbcb;
|
||||||
|
border-bottom: var(--scaled-one-px-value, 1px) solid var(--border-toolbar, #cbcbcb);
|
||||||
height: 46px;
|
height: 46px;
|
||||||
padding: 10px 6px;
|
padding: 10px 6px;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
|
@ -77,7 +81,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar li {
|
.loadmask > .sktoolbar li {
|
||||||
background: #e2e2e2;
|
background: #ccc;
|
||||||
|
background: var(--highlight-button-pressed, #ccc);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
@ -101,11 +106,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .placeholder {
|
.loadmask > .placeholder {
|
||||||
background: #fbfbfb;
|
background: #fff;
|
||||||
|
background: var(--canvas-content-background, #fff);
|
||||||
width: 794px;
|
width: 794px;
|
||||||
margin: 46px auto;
|
margin: 46px auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: var(--scaled-one-px-value, 1px) solid #bebebe;
|
border: 1px solid #ccc;
|
||||||
|
border: var(--scaled-one-px-value, 1px) solid var(--canvas-page-border, #ccc);
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,8 +153,8 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// don't add zoom for mobile devices
|
// don't add zoom for mobile devices
|
||||||
if (!(/android|avantgo|playbook|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od|ad)|iris|kindle|lge |maemo|midp|mmp|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent || navigator.vendor || window.opera)))
|
// if (!(/android|avantgo|playbook|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od|ad)|iris|kindle|lge |maemo|midp|mmp|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent || navigator.vendor || window.opera)))
|
||||||
document.getElementsByTagName('html')[0].setAttribute('style', 'zoom: ' + 1 / (window.devicePixelRatio < 2 ? window.devicePixelRatio : window.devicePixelRatio / 2) + ';');
|
// document.getElementsByTagName('html')[0].setAttribute('style', 'zoom: ' + 1 / (window.devicePixelRatio < 2 ? window.devicePixelRatio : window.devicePixelRatio / 2) + ';');
|
||||||
|
|
||||||
var userAgent = navigator.userAgent.toLowerCase(),
|
var userAgent = navigator.userAgent.toLowerCase(),
|
||||||
check = function(regex){ return regex.test(userAgent); },
|
check = function(regex){ return regex.test(userAgent); },
|
||||||
|
|
|
@ -250,6 +250,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Закрыць файл",
|
"Common.Views.OpenDialog.closeButtonText": "Закрыць файл",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Кадаванне",
|
"Common.Views.OpenDialog.txtEncoding": "Кадаванне",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Уведзены хібны пароль.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Уведзены хібны пароль.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Каб адкрыць файл, увядзіце пароль",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Прагляд",
|
"Common.Views.OpenDialog.txtPreview": "Прагляд",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Калі вы ўвядзеце пароль і адкрыеце файл бягучы пароль да файла скінецца.",
|
"Common.Views.OpenDialog.txtProtected": "Калі вы ўвядзеце пароль і адкрыеце файл бягучы пароль да файла скінецца.",
|
||||||
|
@ -260,6 +261,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Пароль",
|
"Common.Views.PasswordDialog.txtPassword": "Пароль",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Паўтарыць пароль",
|
"Common.Views.PasswordDialog.txtRepeat": "Паўтарыць пароль",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Прызначыць пароль",
|
"Common.Views.PasswordDialog.txtTitle": "Прызначыць пароль",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Увага: Страчаны або забыты пароль аднавіць немагчыма. Захоўвайце яго ў надзейным месцы.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Загрузка",
|
"Common.Views.PluginDlg.textLoading": "Загрузка",
|
||||||
"Common.Views.Plugins.groupCaption": "Убудовы",
|
"Common.Views.Plugins.groupCaption": "Убудовы",
|
||||||
"Common.Views.Plugins.strPlugins": "Убудовы",
|
"Common.Views.Plugins.strPlugins": "Убудовы",
|
||||||
|
|
|
@ -211,6 +211,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Затвори файла",
|
"Common.Views.OpenDialog.closeButtonText": "Затвори файла",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Кодиране",
|
"Common.Views.OpenDialog.txtEncoding": "Кодиране",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Паролата е неправилна.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Паролата е неправилна.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Въведете парола, за да отворите файла",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Парола",
|
"Common.Views.OpenDialog.txtPassword": "Парола",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Предварителен преглед",
|
"Common.Views.OpenDialog.txtPreview": "Предварителен преглед",
|
||||||
"Common.Views.OpenDialog.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана.",
|
"Common.Views.OpenDialog.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана.",
|
||||||
|
@ -221,6 +222,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Парола",
|
"Common.Views.PasswordDialog.txtPassword": "Парола",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Повтори паролата",
|
"Common.Views.PasswordDialog.txtRepeat": "Повтори паролата",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Задайте парола",
|
"Common.Views.PasswordDialog.txtTitle": "Задайте парола",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Внимание: Ако загубите или забравите паролата, тя не може да се възстанови. Го съхранявайте на сигурно място.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Зареждане",
|
"Common.Views.PluginDlg.textLoading": "Зареждане",
|
||||||
"Common.Views.Plugins.groupCaption": "Добавки",
|
"Common.Views.Plugins.groupCaption": "Добавки",
|
||||||
"Common.Views.Plugins.strPlugins": "Добавки",
|
"Common.Views.Plugins.strPlugins": "Добавки",
|
||||||
|
|
|
@ -250,6 +250,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Tancar Arxiu",
|
"Common.Views.OpenDialog.closeButtonText": "Tancar Arxiu",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Codificació",
|
"Common.Views.OpenDialog.txtEncoding": "Codificació",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya es incorrecta.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya es incorrecta.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Contrasenya",
|
"Common.Views.OpenDialog.txtPassword": "Contrasenya",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Vista prèvia",
|
"Common.Views.OpenDialog.txtPreview": "Vista prèvia",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer.",
|
"Common.Views.OpenDialog.txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer.",
|
||||||
|
@ -260,6 +261,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Contrasenya",
|
"Common.Views.PasswordDialog.txtPassword": "Contrasenya",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Repeteix la contrasenya",
|
"Common.Views.PasswordDialog.txtRepeat": "Repeteix la contrasenya",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Estableix la contrasenya",
|
"Common.Views.PasswordDialog.txtTitle": "Estableix la contrasenya",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Avis: si perdeu o oblideu la contrasenya, no es podrà recuperar. Desa-la en un lloc segur.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Carregant",
|
"Common.Views.PluginDlg.textLoading": "Carregant",
|
||||||
"Common.Views.Plugins.groupCaption": "Connectors",
|
"Common.Views.Plugins.groupCaption": "Connectors",
|
||||||
"Common.Views.Plugins.strPlugins": "Connectors",
|
"Common.Views.Plugins.strPlugins": "Connectors",
|
||||||
|
|
|
@ -231,6 +231,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Zavřít soubor",
|
"Common.Views.OpenDialog.closeButtonText": "Zavřít soubor",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Kódování",
|
"Common.Views.OpenDialog.txtEncoding": "Kódování",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo není správné.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo není správné.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Zadejte heslo pro otevření souboru",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Náhled",
|
"Common.Views.OpenDialog.txtPreview": "Náhled",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Jakmile zadáte heslo a soubor otevřete, stávající heslo k souboru bude resetováno.",
|
"Common.Views.OpenDialog.txtProtected": "Jakmile zadáte heslo a soubor otevřete, stávající heslo k souboru bude resetováno.",
|
||||||
|
@ -241,6 +242,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Heslo",
|
"Common.Views.PasswordDialog.txtPassword": "Heslo",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Zopakovat heslo",
|
"Common.Views.PasswordDialog.txtRepeat": "Zopakovat heslo",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Nastavit heslo",
|
"Common.Views.PasswordDialog.txtTitle": "Nastavit heslo",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Varování: Ztracené nebo zapomenuté heslo nelze obnovit. Uložte ji na bezpečném místě.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Načítání…",
|
"Common.Views.PluginDlg.textLoading": "Načítání…",
|
||||||
"Common.Views.Plugins.groupCaption": "Zásuvné moduly",
|
"Common.Views.Plugins.groupCaption": "Zásuvné moduly",
|
||||||
"Common.Views.Plugins.strPlugins": "Zásuvné moduly",
|
"Common.Views.Plugins.strPlugins": "Zásuvné moduly",
|
||||||
|
|
|
@ -230,6 +230,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Luk fil",
|
"Common.Views.OpenDialog.closeButtonText": "Luk fil",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Dekoder",
|
"Common.Views.OpenDialog.txtEncoding": "Dekoder",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Kodeordet er forkert",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Kodeordet er forkert",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Angiv en adgangskode for at åbne filen",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Kodeord",
|
"Common.Views.OpenDialog.txtPassword": "Kodeord",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Forhåndvisning",
|
"Common.Views.OpenDialog.txtPreview": "Forhåndvisning",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Når du indtastet kodeorderet og åbner filen, nulstilles det aktuelle kodeord til filen. ",
|
"Common.Views.OpenDialog.txtProtected": "Når du indtastet kodeorderet og åbner filen, nulstilles det aktuelle kodeord til filen. ",
|
||||||
|
@ -240,6 +241,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Kodeord",
|
"Common.Views.PasswordDialog.txtPassword": "Kodeord",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Gentag kodeord",
|
"Common.Views.PasswordDialog.txtRepeat": "Gentag kodeord",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Indstil kodeord",
|
"Common.Views.PasswordDialog.txtTitle": "Indstil kodeord",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Advarsel! Hvis du mister eller glemmer adgangskoden, kan den ikke genoprettes. Opbevar den et sikkert sted.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Indlæser",
|
"Common.Views.PluginDlg.textLoading": "Indlæser",
|
||||||
"Common.Views.Plugins.groupCaption": "Tilføjelsesprogrammer",
|
"Common.Views.Plugins.groupCaption": "Tilføjelsesprogrammer",
|
||||||
"Common.Views.Plugins.strPlugins": "Tilføjelsesprogrammer",
|
"Common.Views.Plugins.strPlugins": "Tilføjelsesprogrammer",
|
||||||
|
|
|
@ -256,6 +256,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Datei schließen",
|
"Common.Views.OpenDialog.closeButtonText": "Datei schließen",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Zeichenkodierung",
|
"Common.Views.OpenDialog.txtEncoding": "Zeichenkodierung",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Kennwort ist falsch.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Kennwort ist falsch.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Kennwort zum Öffnen der Datei eingeben",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Kennwort",
|
"Common.Views.OpenDialog.txtPassword": "Kennwort",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Vorschau",
|
"Common.Views.OpenDialog.txtPreview": "Vorschau",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.",
|
"Common.Views.OpenDialog.txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.",
|
||||||
|
@ -266,6 +267,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Kennwort",
|
"Common.Views.PasswordDialog.txtPassword": "Kennwort",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Kennwort wiederholen",
|
"Common.Views.PasswordDialog.txtRepeat": "Kennwort wiederholen",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Kennwort festlegen",
|
"Common.Views.PasswordDialog.txtTitle": "Kennwort festlegen",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie ihn an einem sicheren Ort auf.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
|
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugins",
|
"Common.Views.Plugins.groupCaption": "Plugins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
"Common.Views.Plugins.strPlugins": "Plugins",
|
||||||
|
@ -366,6 +368,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "Ändern",
|
"Common.Views.SignDialog.textChange": "Ändern",
|
||||||
"Common.Views.SignDialog.textInputName": "Name des Signaturgebers eingeben",
|
"Common.Views.SignDialog.textInputName": "Name des Signaturgebers eingeben",
|
||||||
"Common.Views.SignDialog.textItalic": "Kursiv",
|
"Common.Views.SignDialog.textItalic": "Kursiv",
|
||||||
|
"Common.Views.SignDialog.textNameError": "Der Name des Signaturgebers darf nicht leer sein.",
|
||||||
"Common.Views.SignDialog.textPurpose": "Zweck der Signierung dieses Dokuments",
|
"Common.Views.SignDialog.textPurpose": "Zweck der Signierung dieses Dokuments",
|
||||||
"Common.Views.SignDialog.textSelect": "Wählen",
|
"Common.Views.SignDialog.textSelect": "Wählen",
|
||||||
"Common.Views.SignDialog.textSelectImage": "Bild auswählen",
|
"Common.Views.SignDialog.textSelectImage": "Bild auswählen",
|
||||||
|
@ -1863,6 +1866,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textSection": "Aktueller Abschnitt",
|
"DE.Views.LineNumbersDialog.textSection": "Aktueller Abschnitt",
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Beginnen mit",
|
"DE.Views.LineNumbersDialog.textStartAt": "Beginnen mit",
|
||||||
"DE.Views.LineNumbersDialog.textTitle": "Zeilennummern",
|
"DE.Views.LineNumbersDialog.textTitle": "Zeilennummern",
|
||||||
|
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Lesezeichen",
|
"DE.Views.Links.capBtnBookmarks": "Lesezeichen",
|
||||||
"DE.Views.Links.capBtnCaption": "Beschriftung",
|
"DE.Views.Links.capBtnCaption": "Beschriftung",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Aktualisierung",
|
"DE.Views.Links.capBtnContentsUpdate": "Aktualisierung",
|
||||||
|
@ -2216,6 +2220,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Seitenzahlen rechtsbündig",
|
"DE.Views.TableOfContentsSettings.strAlign": "Seitenzahlen rechtsbündig",
|
||||||
"DE.Views.TableOfContentsSettings.strFullCaption": "Bezeichnung und Nummer einschließen",
|
"DE.Views.TableOfContentsSettings.strFullCaption": "Bezeichnung und Nummer einschließen",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Inhaltsverzeichnis als Links formatieren",
|
"DE.Views.TableOfContentsSettings.strLinks": "Inhaltsverzeichnis als Links formatieren",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinksOF": "Abbildungsverzeichnis als Links formatieren",
|
||||||
"DE.Views.TableOfContentsSettings.strShowPages": "Seitenzahlen anzeigen",
|
"DE.Views.TableOfContentsSettings.strShowPages": "Seitenzahlen anzeigen",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTable": "Erstellen eines Inhaltsverzeichnisses mithilfe von",
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Erstellen eines Inhaltsverzeichnisses mithilfe von",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Abbildungsverzeichnis aus",
|
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Abbildungsverzeichnis aus",
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
"Common.Controllers.ReviewChanges.textPosition": "Θέση",
|
"Common.Controllers.ReviewChanges.textPosition": "Θέση",
|
||||||
"Common.Controllers.ReviewChanges.textRight": "Στοίχιση δεξιά",
|
"Common.Controllers.ReviewChanges.textRight": "Στοίχιση δεξιά",
|
||||||
"Common.Controllers.ReviewChanges.textShape": "Σχήμα",
|
"Common.Controllers.ReviewChanges.textShape": "Σχήμα",
|
||||||
"Common.Controllers.ReviewChanges.textShd": "Χρώμα φόντου",
|
"Common.Controllers.ReviewChanges.textShd": "Χρώμα παρασκηνίου",
|
||||||
"Common.Controllers.ReviewChanges.textShow": "Εμφάνιση αλλαγών σε",
|
"Common.Controllers.ReviewChanges.textShow": "Εμφάνιση αλλαγών σε",
|
||||||
"Common.Controllers.ReviewChanges.textSmallCaps": "Μικρά κεφαλαία",
|
"Common.Controllers.ReviewChanges.textSmallCaps": "Μικρά κεφαλαία",
|
||||||
"Common.Controllers.ReviewChanges.textSpacing": "Απόσταση",
|
"Common.Controllers.ReviewChanges.textSpacing": "Απόσταση",
|
||||||
|
@ -76,12 +76,45 @@
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Έλεγχος μεμονωμένων γραμμών",
|
"Common.Controllers.ReviewChanges.textWidow": "Έλεγχος μεμονωμένων γραμμών",
|
||||||
"Common.Controllers.ReviewChanges.textWord": "Επίπεδο λέξεων",
|
"Common.Controllers.ReviewChanges.textWord": "Επίπεδο λέξεων",
|
||||||
"Common.define.chartData.textArea": "Περιοχή",
|
"Common.define.chartData.textArea": "Περιοχή",
|
||||||
|
"Common.define.chartData.textAreaStacked": "Σωρευμένη περιοχή",
|
||||||
|
"Common.define.chartData.textAreaStackedPer": "100% Σωρευμένη περιοχή",
|
||||||
"Common.define.chartData.textBar": "Μπάρα",
|
"Common.define.chartData.textBar": "Μπάρα",
|
||||||
|
"Common.define.chartData.textBarNormal": "Ομαδοποιημένη στήλη",
|
||||||
|
"Common.define.chartData.textBarNormal3d": "3-D Ομαδοποιημένη στήλη",
|
||||||
|
"Common.define.chartData.textBarNormal3dPerspective": "3-D στήλη",
|
||||||
|
"Common.define.chartData.textBarStacked": "Σωρευμένη στήλη",
|
||||||
|
"Common.define.chartData.textBarStacked3d": "3-D Σωρευμένη στήλη",
|
||||||
|
"Common.define.chartData.textBarStackedPer": "100% Σωρευμένη στήλη",
|
||||||
|
"Common.define.chartData.textBarStackedPer3d": "3-D 100% Σωρευμένη στήλη",
|
||||||
"Common.define.chartData.textCharts": "Γραφήματα",
|
"Common.define.chartData.textCharts": "Γραφήματα",
|
||||||
"Common.define.chartData.textColumn": "Στήλη",
|
"Common.define.chartData.textColumn": "Στήλη",
|
||||||
|
"Common.define.chartData.textCombo": "Συνδυασμός",
|
||||||
|
"Common.define.chartData.textComboAreaBar": "Σωρευμένη στήλη ομαδοποιημένη ανά περιοχή",
|
||||||
|
"Common.define.chartData.textComboBarLine": "Ομαδοποιημένη γραμμή - στήλης",
|
||||||
|
"Common.define.chartData.textComboBarLineSecondary": "Ομαδοποιημένη γραμμή - στήλης σε δευτερεύοντα άξονα",
|
||||||
|
"Common.define.chartData.textComboCustom": "Προσαρμοσμένος συνδυασμός",
|
||||||
|
"Common.define.chartData.textDoughnut": "Ντόνατ",
|
||||||
|
"Common.define.chartData.textHBarNormal": "Ομαδοποιημένη μπάρα",
|
||||||
|
"Common.define.chartData.textHBarNormal3d": "3-D Ομαδοποιημένη μπάρα",
|
||||||
|
"Common.define.chartData.textHBarStacked": "Σωρευμένη μπάρα",
|
||||||
|
"Common.define.chartData.textHBarStacked3d": "3-D Σωρευμένη μπάρα",
|
||||||
|
"Common.define.chartData.textHBarStackedPer": "100% Σωρευμένη μπάρα",
|
||||||
|
"Common.define.chartData.textHBarStackedPer3d": "3-D 100% Σωρευμένη μπάρα",
|
||||||
"Common.define.chartData.textLine": "Γραμμή",
|
"Common.define.chartData.textLine": "Γραμμή",
|
||||||
|
"Common.define.chartData.textLine3d": "3-D γραμμή",
|
||||||
|
"Common.define.chartData.textLineMarker": "Γραμμή με δείκτες",
|
||||||
|
"Common.define.chartData.textLineStacked": "Σωρευμένη γραμμή",
|
||||||
|
"Common.define.chartData.textLineStackedMarker": "Σωρευμένη γραμμή με δείκτες",
|
||||||
|
"Common.define.chartData.textLineStackedPer": "100% Σωρευμένη γραμμή",
|
||||||
|
"Common.define.chartData.textLineStackedPerMarker": "100% Σωρευμένη γραμμή με δείκτες",
|
||||||
"Common.define.chartData.textPie": "Πίτα",
|
"Common.define.chartData.textPie": "Πίτα",
|
||||||
|
"Common.define.chartData.textPie3d": "3-D πίτα",
|
||||||
"Common.define.chartData.textPoint": "ΧΥ (Διασπορά)",
|
"Common.define.chartData.textPoint": "ΧΥ (Διασπορά)",
|
||||||
|
"Common.define.chartData.textScatter": "Διασπορά",
|
||||||
|
"Common.define.chartData.textScatterLine": "Διασπορά με ευθείες γραμμές",
|
||||||
|
"Common.define.chartData.textScatterLineMarker": "Διασπορά με ευθείες γραμμές και δείκτες",
|
||||||
|
"Common.define.chartData.textScatterSmooth": "Διασπορά με ομαλές γραμμές",
|
||||||
|
"Common.define.chartData.textScatterSmoothMarker": "Διασπορά με ομαλές γραμμές και δείκτες",
|
||||||
"Common.define.chartData.textStock": "Μετοχή",
|
"Common.define.chartData.textStock": "Μετοχή",
|
||||||
"Common.define.chartData.textSurface": "Επιφάνεια",
|
"Common.define.chartData.textSurface": "Επιφάνεια",
|
||||||
"Common.Translation.warnFileLocked": "Δεν μπορείτε να επεξεργαστείτε αυτό το αρχείο επειδή επεξεργάζεται σε άλλη εφαρμογή.",
|
"Common.Translation.warnFileLocked": "Δεν μπορείτε να επεξεργαστείτε αυτό το αρχείο επειδή επεξεργάζεται σε άλλη εφαρμογή.",
|
||||||
|
@ -120,6 +153,7 @@
|
||||||
"Common.UI.Calendar.textShortTuesday": "Τρι",
|
"Common.UI.Calendar.textShortTuesday": "Τρι",
|
||||||
"Common.UI.Calendar.textShortWednesday": "Τετ",
|
"Common.UI.Calendar.textShortWednesday": "Τετ",
|
||||||
"Common.UI.Calendar.textYears": "Έτη",
|
"Common.UI.Calendar.textYears": "Έτη",
|
||||||
|
"Common.UI.ColorButton.textAutoColor": "Αυτόματα",
|
||||||
"Common.UI.ColorButton.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος",
|
"Common.UI.ColorButton.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Χωρίς περιγράμματα",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Χωρίς περιγράμματα",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Χωρίς περιγράμματα",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Χωρίς περιγράμματα",
|
||||||
|
@ -218,11 +252,14 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Αποθήκευση & Έξοδος",
|
"Common.Views.ExternalMergeEditor.textSave": "Αποθήκευση & Έξοδος",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Παραλήπτες Συγχωνευμένης Αλληλογραφίας",
|
"Common.Views.ExternalMergeEditor.textTitle": "Παραλήπτες Συγχωνευμένης Αλληλογραφίας",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Οι χρήστες που επεξεργάζονται το αρχείο:",
|
"Common.Views.Header.labelCoUsersDescr": "Οι χρήστες που επεξεργάζονται το αρχείο:",
|
||||||
|
"Common.Views.Header.textAddFavorite": "Σημείωση ως αγαπημένο",
|
||||||
"Common.Views.Header.textAdvSettings": "Προηγμένες ρυθμίσεις",
|
"Common.Views.Header.textAdvSettings": "Προηγμένες ρυθμίσεις",
|
||||||
"Common.Views.Header.textBack": "Άνοιγμα τοποθεσίας αρχείου",
|
"Common.Views.Header.textBack": "Άνοιγμα τοποθεσίας αρχείου",
|
||||||
"Common.Views.Header.textCompactView": "Απόκρυψη Γραμμής Εργαλείων",
|
"Common.Views.Header.textCompactView": "Απόκρυψη Γραμμής Εργαλείων",
|
||||||
|
"Common.Views.Header.textDarkTheme": "Σκούρο θέμα",
|
||||||
"Common.Views.Header.textHideLines": "Απόκρυψη Χαράκων",
|
"Common.Views.Header.textHideLines": "Απόκρυψη Χαράκων",
|
||||||
"Common.Views.Header.textHideStatusBar": "Απόκρυψη Γραμμής Κατάστασης",
|
"Common.Views.Header.textHideStatusBar": "Απόκρυψη Γραμμής Κατάστασης",
|
||||||
|
"Common.Views.Header.textRemoveFavorite": "Αφαίρεση από τα Αγαπημένα",
|
||||||
"Common.Views.Header.textZoom": "Εστίαση",
|
"Common.Views.Header.textZoom": "Εστίαση",
|
||||||
"Common.Views.Header.tipAccessRights": "Διαχείριση δικαιωμάτων πρόσβασης εγγράφου",
|
"Common.Views.Header.tipAccessRights": "Διαχείριση δικαιωμάτων πρόσβασης εγγράφου",
|
||||||
"Common.Views.Header.tipDownload": "Λήψη αρχείου",
|
"Common.Views.Header.tipDownload": "Λήψη αρχείου",
|
||||||
|
@ -256,6 +293,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Κλείσιμο Αρχείου",
|
"Common.Views.OpenDialog.closeButtonText": "Κλείσιμο Αρχείου",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση",
|
"Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Εισαγάγετε κωδικό πρόσβασης για να ανοίξτε το αρχείο",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Συνθηματικό",
|
"Common.Views.OpenDialog.txtPassword": "Συνθηματικό",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση",
|
"Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε τον κωδικό και ανοίξετε το αρχείο, ο τρέχων κωδικός αρχείου θα αρχικοποιηθεί.",
|
"Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε τον κωδικό και ανοίξετε το αρχείο, ο τρέχων κωδικός αρχείου θα αρχικοποιηθεί.",
|
||||||
|
@ -266,6 +304,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Συνθηματικό",
|
"Common.Views.PasswordDialog.txtPassword": "Συνθηματικό",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Επανάληψη συνθηματικού",
|
"Common.Views.PasswordDialog.txtRepeat": "Επανάληψη συνθηματικού",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Ορισμός Συνθηματικού",
|
"Common.Views.PasswordDialog.txtTitle": "Ορισμός Συνθηματικού",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Προσοχή: Εάν χάσετε ή ξεχάσετε τον κωδικό πρόσβασης, δεν είναι δυνατή η ανάκτησή του. διατηρήστε τον σε ασφαλές μέρος.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Γίνεται φόρτωση",
|
"Common.Views.PluginDlg.textLoading": "Γίνεται φόρτωση",
|
||||||
"Common.Views.Plugins.groupCaption": "Πρόσθετα",
|
"Common.Views.Plugins.groupCaption": "Πρόσθετα",
|
||||||
"Common.Views.Plugins.strPlugins": "Πρόσθετα",
|
"Common.Views.Plugins.strPlugins": "Πρόσθετα",
|
||||||
|
@ -312,7 +351,7 @@
|
||||||
"Common.Views.ReviewChanges.txtAcceptCurrent": "Αποδοχή Τρέχουσας Αλλαγής",
|
"Common.Views.ReviewChanges.txtAcceptCurrent": "Αποδοχή Τρέχουσας Αλλαγής",
|
||||||
"Common.Views.ReviewChanges.txtChat": "Συνομιλία",
|
"Common.Views.ReviewChanges.txtChat": "Συνομιλία",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Κλείσιμο",
|
"Common.Views.ReviewChanges.txtClose": "Κλείσιμο",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Κατάσταση Συνεργατικής Επεξεργασίας",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Κατάσταση Συν-επεξεργασίας",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemAll": "Αφαίρεση Όλων των Σχολίων",
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Αφαίρεση Όλων των Σχολίων",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Αφαίρεση Υφιστάμενων Σχολίων",
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Αφαίρεση Υφιστάμενων Σχολίων",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMy": "Αφαίρεση των Σχολίων Μου",
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Αφαίρεση των Σχολίων Μου",
|
||||||
|
@ -411,6 +450,9 @@
|
||||||
"Common.Views.SymbolTableDialog.textSymbols": "Σύμβολα",
|
"Common.Views.SymbolTableDialog.textSymbols": "Σύμβολα",
|
||||||
"Common.Views.SymbolTableDialog.textTitle": "Σύμβολο",
|
"Common.Views.SymbolTableDialog.textTitle": "Σύμβολο",
|
||||||
"Common.Views.SymbolTableDialog.textTradeMark": "Σύμβολο Εμπορικού Σήματος",
|
"Common.Views.SymbolTableDialog.textTradeMark": "Σύμβολο Εμπορικού Σήματος",
|
||||||
|
"Common.Views.UserNameDialog.textDontShow": "Να μην ερωτηθώ ξανά",
|
||||||
|
"Common.Views.UserNameDialog.textLabel": "Ετικέτα:",
|
||||||
|
"Common.Views.UserNameDialog.textLabelError": "Η ετικέτα δεν μπορεί να είναι κενή.",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "Όλες οι μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο θα χαθούν.<br>Κάντε κλικ στο «Ακύρωση» και στη συνέχεια στο «Αποθήκευση» για να τις αποθηκεύσετε. Κάντε κλικ στο «Εντάξει» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.",
|
"DE.Controllers.LeftMenu.leavePageText": "Όλες οι μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο θα χαθούν.<br>Κάντε κλικ στο «Ακύρωση» και στη συνέχεια στο «Αποθήκευση» για να τις αποθηκεύσετε. Κάντε κλικ στο «Εντάξει» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Έγγραφο χωρίς όνομα",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Έγγραφο χωρίς όνομα",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Προειδοποίηση",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Προειδοποίηση",
|
||||||
|
@ -436,6 +478,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.<br>Παρακαλούμε να επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων.",
|
"DE.Controllers.Main.errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.<br>Παρακαλούμε να επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας",
|
"DE.Controllers.Main.errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Χάθηκε η σύνδεση με τον εξυπηρετητή. Δεν μπορείτε να επεξεργαστείτε το έγγραφο αυτή τη στιγμή.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Χάθηκε η σύνδεση με τον εξυπηρετητή. Δεν μπορείτε να επεξεργαστείτε το έγγραφο αυτή τη στιγμή.",
|
||||||
|
"DE.Controllers.Main.errorComboSeries": "Για να δημιουργήσετε συνδυαστικό γράφημα, επιλέξτε τουλάχιστον δύο σειρές δεδομένων.",
|
||||||
"DE.Controllers.Main.errorCompare": "Το χαρακτηριστικό Σύγκρισης Εγγράφων δεν είναι διαθέσιμο στην συν-επεξεργασία.",
|
"DE.Controllers.Main.errorCompare": "Το χαρακτηριστικό Σύγκρισης Εγγράφων δεν είναι διαθέσιμο στην συν-επεξεργασία.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Δεν ήταν δυνατή η αποθήκευση του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή σας.<br>Όταν πατήσετε 'ΟΚ', θα μπορέσετε να κατεβάσετε το έγγραφο.",
|
"DE.Controllers.Main.errorConnectToServer": "Δεν ήταν δυνατή η αποθήκευση του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή σας.<br>Όταν πατήσετε 'ΟΚ', θα μπορέσετε να κατεβάσετε το έγγραφο.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Εξωτερικό σφάλμα.<br>Σφάλμα σύνδεσης βάσης δεδομένων. Παρακαλούμε επικοινωνήστε με την υποστήριξη σε περίπτωση που το σφάλμα παραμένει.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Εξωτερικό σφάλμα.<br>Σφάλμα σύνδεσης βάσης δεδομένων. Παρακαλούμε επικοινωνήστε με την υποστήριξη σε περίπτωση που το σφάλμα παραμένει.",
|
||||||
|
@ -458,7 +501,9 @@
|
||||||
"DE.Controllers.Main.errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε επαναφορτώστε τη σελίδα.",
|
"DE.Controllers.Main.errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε επαναφορτώστε τη σελίδα.",
|
||||||
"DE.Controllers.Main.errorSessionIdle": "Το έγγραφο δεν έχει επεξεργαστεί εδώ και πολύ ώρα. Παρακαλούμε φορτώστε ξανά τη σελίδα.",
|
"DE.Controllers.Main.errorSessionIdle": "Το έγγραφο δεν έχει επεξεργαστεί εδώ και πολύ ώρα. Παρακαλούμε φορτώστε ξανά τη σελίδα.",
|
||||||
"DE.Controllers.Main.errorSessionToken": "Η επικοινωνία με τον εξυπηρετητή διακόπηκε. Παρακαλούμε ανανεώστε τη σελίδα.",
|
"DE.Controllers.Main.errorSessionToken": "Η επικοινωνία με τον εξυπηρετητή διακόπηκε. Παρακαλούμε ανανεώστε τη σελίδα.",
|
||||||
|
"DE.Controllers.Main.errorSetPassword": "Δεν ήταν δυνατός ο ορισμός του συνθηματικού.",
|
||||||
"DE.Controllers.Main.errorStockChart": "Λανθασμένη διάταξη γραμμών. Για να δημιουργήσετε ένα γράφημα μετοχών τοποθετήστε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:<br>τιμή ανοίγματος, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.",
|
"DE.Controllers.Main.errorStockChart": "Λανθασμένη διάταξη γραμμών. Για να δημιουργήσετε ένα γράφημα μετοχών τοποθετήστε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:<br>τιμή ανοίγματος, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.",
|
||||||
|
"DE.Controllers.Main.errorSubmit": "Η υποβολή απέτυχε.",
|
||||||
"DE.Controllers.Main.errorToken": "Το κλειδί ασφαλείας του εγγράφου δεν είναι σωστά σχηματισμένο.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.",
|
"DE.Controllers.Main.errorToken": "Το κλειδί ασφαλείας του εγγράφου δεν είναι σωστά σχηματισμένο.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "Το κλειδί ασφαλείας του εγγράφου έληξε.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.",
|
"DE.Controllers.Main.errorTokenExpire": "Το κλειδί ασφαλείας του εγγράφου έληξε.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.",
|
"DE.Controllers.Main.errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.",
|
||||||
|
@ -509,12 +554,16 @@
|
||||||
"DE.Controllers.Main.textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων",
|
"DE.Controllers.Main.textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων",
|
||||||
"DE.Controllers.Main.textConvertEquation": "Η εξίσωση αυτή δημιουργήθηκε με παλαιότερη έκδοση του συντάκτη εξισώσεων που δεν υποστηρίζεται πια. Για να την επεξεργαστείτε, μετατρέψτε την σε μορφή Office Math ML.<br>Να μετατραπεί τώρα;",
|
"DE.Controllers.Main.textConvertEquation": "Η εξίσωση αυτή δημιουργήθηκε με παλαιότερη έκδοση του συντάκτη εξισώσεων που δεν υποστηρίζεται πια. Για να την επεξεργαστείτε, μετατρέψτε την σε μορφή Office Math ML.<br>Να μετατραπεί τώρα;",
|
||||||
"DE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.<br>Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.",
|
"DE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.<br>Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.",
|
||||||
|
"DE.Controllers.Main.textGuest": "Επισκέπτης",
|
||||||
"DE.Controllers.Main.textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.<br>Θέλετε να εκτελέσετε μακροεντολές;",
|
"DE.Controllers.Main.textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.<br>Θέλετε να εκτελέσετε μακροεντολές;",
|
||||||
"DE.Controllers.Main.textLearnMore": "Μάθετε Περισσότερα",
|
"DE.Controllers.Main.textLearnMore": "Μάθετε Περισσότερα",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Φόρτωση εγγράφου",
|
"DE.Controllers.Main.textLoadingDocument": "Φόρτωση εγγράφου",
|
||||||
|
"DE.Controllers.Main.textLongName": "Εισάγετε ένα όνομα μικρότερο από 128 χαρακτήρες.",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.",
|
"DE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.",
|
||||||
"DE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή",
|
"DE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή",
|
||||||
"DE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία",
|
"DE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία",
|
||||||
|
"DE.Controllers.Main.textRenameError": "Το όνομα χρήστη δεν μπορεί να είναι κενό.",
|
||||||
|
"DE.Controllers.Main.textRenameLabel": "Εισάγετε ένα όνομα για συνεργατική χρήση",
|
||||||
"DE.Controllers.Main.textShape": "Σχήμα",
|
"DE.Controllers.Main.textShape": "Σχήμα",
|
||||||
"DE.Controllers.Main.textStrict": "Αυστηρή κατάσταση",
|
"DE.Controllers.Main.textStrict": "Αυστηρή κατάσταση",
|
||||||
"DE.Controllers.Main.textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.<br>Κάντε κλικ στο κουμπί 'Αυστηρή κατάσταση' για να μεταβείτε στην Αυστηρή κατάσταση συν-επεξεργασίας όπου επεξεργάζεστε το αρχείο χωρίς παρέμβαση άλλων χρηστών και στέλνετε τις αλλαγές σας αφού τις αποθηκεύσετε. Η μετάβαση μεταξύ των δύο καταστάσεων γίνεται μέσω των Προηγμένων Ρυθμίσεων.",
|
"DE.Controllers.Main.textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.<br>Κάντε κλικ στο κουμπί 'Αυστηρή κατάσταση' για να μεταβείτε στην Αυστηρή κατάσταση συν-επεξεργασίας όπου επεξεργάζεστε το αρχείο χωρίς παρέμβαση άλλων χρηστών και στέλνετε τις αλλαγές σας αφού τις αποθηκεύσετε. Η μετάβαση μεταξύ των δύο καταστάσεων γίνεται μέσω των Προηγμένων Ρυθμίσεων.",
|
||||||
|
@ -720,7 +769,7 @@
|
||||||
"DE.Controllers.Main.txtShape_sun": "Ήλιος",
|
"DE.Controllers.Main.txtShape_sun": "Ήλιος",
|
||||||
"DE.Controllers.Main.txtShape_teardrop": "Δάκρυ",
|
"DE.Controllers.Main.txtShape_teardrop": "Δάκρυ",
|
||||||
"DE.Controllers.Main.txtShape_textRect": "Πλαίσιο Κειμένου",
|
"DE.Controllers.Main.txtShape_textRect": "Πλαίσιο Κειμένου",
|
||||||
"DE.Controllers.Main.txtShape_trapezoid": "Τραπεζοειδές",
|
"DE.Controllers.Main.txtShape_trapezoid": "Τραπέζιο",
|
||||||
"DE.Controllers.Main.txtShape_triangle": "Τρίγωνο",
|
"DE.Controllers.Main.txtShape_triangle": "Τρίγωνο",
|
||||||
"DE.Controllers.Main.txtShape_upArrow": "Πάνω Βέλος",
|
"DE.Controllers.Main.txtShape_upArrow": "Πάνω Βέλος",
|
||||||
"DE.Controllers.Main.txtShape_upArrowCallout": "Επεξήγηση με Πάνω Βέλος",
|
"DE.Controllers.Main.txtShape_upArrowCallout": "Επεξήγηση με Πάνω Βέλος",
|
||||||
|
@ -1499,7 +1548,7 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.textAlign": "Στοίχιση",
|
"DE.Views.DropcapSettingsAdvanced.textAlign": "Στοίχιση",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Τουλάχιστον",
|
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Τουλάχιστον",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textAuto": "Αυτόματα",
|
"DE.Views.DropcapSettingsAdvanced.textAuto": "Αυτόματα",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Χρώμα Φόντου",
|
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Χρώμα Παρασκηνίου",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Χρώμα",
|
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Χρώμα",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα",
|
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
|
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
|
||||||
|
@ -1602,7 +1651,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Ενεργοποίηση οδηγών στοίχισης",
|
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Ενεργοποίηση οδηγών στοίχισης",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Ενεργοποίηση αυτόματης αποκατάστασης",
|
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Ενεργοποίηση αυτόματης αποκατάστασης",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAutosave": "Ενεργοποίηση αυτόματης αποθήκευσης",
|
"DE.Views.FileMenuPanels.Settings.strAutosave": "Ενεργοποίηση αυτόματης αποθήκευσης",
|
||||||
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Κατάσταση Συνεργατικής Επεξεργασίας",
|
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Κατάσταση Συν-επεξεργασίας",
|
||||||
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Οι άλλοι χρήστες θα δουν αμέσως τις αλλαγές σας",
|
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Οι άλλοι χρήστες θα δουν αμέσως τις αλλαγές σας",
|
||||||
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Θα χρειαστεί να αποδεχτείτε τις αλλαγές προτού τις δείτε",
|
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Θα χρειαστεί να αποδεχτείτε τις αλλαγές προτού τις δείτε",
|
||||||
"DE.Views.FileMenuPanels.Settings.strFast": "Γρήγορη",
|
"DE.Views.FileMenuPanels.Settings.strFast": "Γρήγορη",
|
||||||
|
@ -1617,6 +1666,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Αλλαγές Συνεργασίας Πραγματικού Χρόνου",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Αλλαγές Συνεργασίας Πραγματικού Χρόνου",
|
||||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ενεργοποίηση επιλογής ορθογραφικού ελέγχου",
|
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ενεργοποίηση επιλογής ορθογραφικού ελέγχου",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Αυστηρή",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "Αυστηρή",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strTheme": "Θέμα",
|
||||||
"DE.Views.FileMenuPanels.Settings.strUnit": "Μονάδα Μέτρησης",
|
"DE.Views.FileMenuPanels.Settings.strUnit": "Μονάδα Μέτρησης",
|
||||||
"DE.Views.FileMenuPanels.Settings.strZoom": "Προεπιλεγμένη Τιμή Εστίασης",
|
"DE.Views.FileMenuPanels.Settings.strZoom": "Προεπιλεγμένη Τιμή Εστίασης",
|
||||||
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Κάθε 10 Λεπτά",
|
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Κάθε 10 Λεπτά",
|
||||||
|
@ -1651,6 +1701,8 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Έλεγχος Ορθογραφίας",
|
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Έλεγχος Ορθογραφίας",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Απενεργοποίηση Όλων",
|
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Απενεργοποίηση Όλων",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση",
|
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtThemeDark": "Σκούρο",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtThemeLight": "Ανοιχτό",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Εμφάνιση Ειδοποίησης",
|
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Εμφάνιση Ειδοποίησης",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση",
|
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "ως Windows",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "ως Windows",
|
||||||
|
@ -1687,18 +1739,26 @@
|
||||||
"DE.Views.FormsTab.capBtnComboBox": "Πολλαπλές Επιλογές",
|
"DE.Views.FormsTab.capBtnComboBox": "Πολλαπλές Επιλογές",
|
||||||
"DE.Views.FormsTab.capBtnDropDown": "Πτυσσόμενη Λίστα",
|
"DE.Views.FormsTab.capBtnDropDown": "Πτυσσόμενη Λίστα",
|
||||||
"DE.Views.FormsTab.capBtnImage": "Εικόνα",
|
"DE.Views.FormsTab.capBtnImage": "Εικόνα",
|
||||||
|
"DE.Views.FormsTab.capBtnNext": "Επόμενο Πεδίο",
|
||||||
|
"DE.Views.FormsTab.capBtnPrev": "Προηγούμενο Πεδίο",
|
||||||
"DE.Views.FormsTab.capBtnRadioBox": "Κουμπί Επιλογής",
|
"DE.Views.FormsTab.capBtnRadioBox": "Κουμπί Επιλογής",
|
||||||
|
"DE.Views.FormsTab.capBtnSubmit": "Υποβολή",
|
||||||
"DE.Views.FormsTab.capBtnText": "Πεδίο Κειμένου",
|
"DE.Views.FormsTab.capBtnText": "Πεδίο Κειμένου",
|
||||||
"DE.Views.FormsTab.capBtnView": "Προβολή Φόρμας",
|
"DE.Views.FormsTab.capBtnView": "Προβολή Φόρμας",
|
||||||
"DE.Views.FormsTab.textClearFields": "Καθαρισμός Όλων των Πεδίων",
|
"DE.Views.FormsTab.textClear": "Εκκαθάριση Πεδίων",
|
||||||
|
"DE.Views.FormsTab.textClearFields": "Εκκαθάριση Όλων των Πεδίων",
|
||||||
"DE.Views.FormsTab.textHighlight": "Ρυθμίσεις Επισήμανσης",
|
"DE.Views.FormsTab.textHighlight": "Ρυθμίσεις Επισήμανσης",
|
||||||
"DE.Views.FormsTab.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος",
|
"DE.Views.FormsTab.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος",
|
||||||
"DE.Views.FormsTab.textNoHighlight": "Χωρίς επισήμανση",
|
"DE.Views.FormsTab.textNoHighlight": "Χωρίς επισήμανση",
|
||||||
|
"DE.Views.FormsTab.textSubmited": "Η φόρμα υποβλήθηκε επιτυχώς",
|
||||||
"DE.Views.FormsTab.tipCheckBox": "Εισαγωγή πλαισίου επιλογής",
|
"DE.Views.FormsTab.tipCheckBox": "Εισαγωγή πλαισίου επιλογής",
|
||||||
"DE.Views.FormsTab.tipComboBox": "Εισαγωγή πολλαπλών επιλογών",
|
"DE.Views.FormsTab.tipComboBox": "Εισαγωγή πολλαπλών επιλογών",
|
||||||
"DE.Views.FormsTab.tipDropDown": "Εισαγωγή πτυσσόμενης λίστας",
|
"DE.Views.FormsTab.tipDropDown": "Εισαγωγή πτυσσόμενης λίστας",
|
||||||
"DE.Views.FormsTab.tipImageField": "Εισαγωγή εικόνας",
|
"DE.Views.FormsTab.tipImageField": "Εισαγωγή εικόνας",
|
||||||
|
"DE.Views.FormsTab.tipNextForm": "Μετάβαση στο επόμενο πεδίο",
|
||||||
|
"DE.Views.FormsTab.tipPrevForm": "Μετάβαση στο προηγούμενο πεδίο",
|
||||||
"DE.Views.FormsTab.tipRadioBox": "Εισαγωγή κουμπιού επιλογής",
|
"DE.Views.FormsTab.tipRadioBox": "Εισαγωγή κουμπιού επιλογής",
|
||||||
|
"DE.Views.FormsTab.tipSubmit": "Υποβολή φόρμας",
|
||||||
"DE.Views.FormsTab.tipTextField": "Εισαγωγή πεδίου κειμένου",
|
"DE.Views.FormsTab.tipTextField": "Εισαγωγή πεδίου κειμένου",
|
||||||
"DE.Views.FormsTab.tipViewForm": "Κατάσταση συμπλήρωσης φόρμας",
|
"DE.Views.FormsTab.tipViewForm": "Κατάσταση συμπλήρωσης φόρμας",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomCenter": "Κάτω κέντρο",
|
"DE.Views.HeaderFooterSettings.textBottomCenter": "Κάτω κέντρο",
|
||||||
|
@ -1768,7 +1828,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Στοίχιση",
|
"DE.Views.ImageSettingsAdvanced.textAlignment": "Στοίχιση",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAlt": "Εναλλακτικό Κείμενο",
|
"DE.Views.ImageSettingsAdvanced.textAlt": "Εναλλακτικό Κείμενο",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Περιγραφή",
|
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Περιγραφή",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltTip": "Η εναλλακτική με βάση κείμενο αναπαράσταση των πληροφοριών οπτικού αντικειμένου, η οποία θα αναγνωσθεί στα άτομα με προβλήματα όρασης ή γνωστικών προβλημάτων για να τους βοηθήσουν να κατανοήσουν καλύτερα ποιες πληροφορίες υπάρχουν στην εικόνα, σε αυτόματο σχήμα, στο διάγραμμα ή στον πίνακα.",
|
"DE.Views.ImageSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, αυτόματο σχήμα, γράφημα ή πίνακα.",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Τίτλος",
|
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Τίτλος",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAngle": "Γωνία",
|
"DE.Views.ImageSettingsAdvanced.textAngle": "Γωνία",
|
||||||
"DE.Views.ImageSettingsAdvanced.textArrows": "Βέλη",
|
"DE.Views.ImageSettingsAdvanced.textArrows": "Βέλη",
|
||||||
|
@ -1863,6 +1923,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textSection": "Τρέχουσα επιλογή",
|
"DE.Views.LineNumbersDialog.textSection": "Τρέχουσα επιλογή",
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Έναρξη από",
|
"DE.Views.LineNumbersDialog.textStartAt": "Έναρξη από",
|
||||||
"DE.Views.LineNumbersDialog.textTitle": "Αριθμοί Γραμμών",
|
"DE.Views.LineNumbersDialog.textTitle": "Αριθμοί Γραμμών",
|
||||||
|
"DE.Views.LineNumbersDialog.txtAutoText": "Αυτόματα",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Σελιδοδείκτης",
|
"DE.Views.Links.capBtnBookmarks": "Σελιδοδείκτης",
|
||||||
"DE.Views.Links.capBtnCaption": "Λεζάντα",
|
"DE.Views.Links.capBtnCaption": "Λεζάντα",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Ανανέωση",
|
"DE.Views.Links.capBtnContentsUpdate": "Ανανέωση",
|
||||||
|
@ -2020,6 +2081,10 @@
|
||||||
"DE.Views.PageSizeDialog.textTitle": "Μέγεθος Σελίδας",
|
"DE.Views.PageSizeDialog.textTitle": "Μέγεθος Σελίδας",
|
||||||
"DE.Views.PageSizeDialog.textWidth": "Πλάτος",
|
"DE.Views.PageSizeDialog.textWidth": "Πλάτος",
|
||||||
"DE.Views.PageSizeDialog.txtCustom": "Προσαρμοσμένο",
|
"DE.Views.PageSizeDialog.txtCustom": "Προσαρμοσμένο",
|
||||||
|
"DE.Views.ParagraphSettings.strIndent": "Εσοχές",
|
||||||
|
"DE.Views.ParagraphSettings.strIndentsLeftText": "Αριστερά",
|
||||||
|
"DE.Views.ParagraphSettings.strIndentsRightText": "Δεξιά",
|
||||||
|
"DE.Views.ParagraphSettings.strIndentsSpecial": "Ειδικό",
|
||||||
"DE.Views.ParagraphSettings.strLineHeight": "Διάστιχο",
|
"DE.Views.ParagraphSettings.strLineHeight": "Διάστιχο",
|
||||||
"DE.Views.ParagraphSettings.strParagraphSpacing": "Απόσταση Παραγράφων",
|
"DE.Views.ParagraphSettings.strParagraphSpacing": "Απόσταση Παραγράφων",
|
||||||
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Να μην προστίθεται διάστημα μεταξύ παραγράφων της ίδιας τεχνοτροπίας",
|
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Να μην προστίθεται διάστημα μεταξύ παραγράφων της ίδιας τεχνοτροπίας",
|
||||||
|
@ -2029,8 +2094,11 @@
|
||||||
"DE.Views.ParagraphSettings.textAt": "Σε",
|
"DE.Views.ParagraphSettings.textAt": "Σε",
|
||||||
"DE.Views.ParagraphSettings.textAtLeast": "Τουλάχιστον",
|
"DE.Views.ParagraphSettings.textAtLeast": "Τουλάχιστον",
|
||||||
"DE.Views.ParagraphSettings.textAuto": "Πολλαπλό",
|
"DE.Views.ParagraphSettings.textAuto": "Πολλαπλό",
|
||||||
"DE.Views.ParagraphSettings.textBackColor": "Χρώμα φόντου",
|
"DE.Views.ParagraphSettings.textBackColor": "Χρώμα παρασκηνίου",
|
||||||
"DE.Views.ParagraphSettings.textExact": "Ακριβώς",
|
"DE.Views.ParagraphSettings.textExact": "Ακριβώς",
|
||||||
|
"DE.Views.ParagraphSettings.textFirstLine": "Πρώτη γραμμή",
|
||||||
|
"DE.Views.ParagraphSettings.textHanging": "Κρέμεται",
|
||||||
|
"DE.Views.ParagraphSettings.textNoneSpecial": "(κανένα)",
|
||||||
"DE.Views.ParagraphSettings.txtAutoText": "Αυτόματα",
|
"DE.Views.ParagraphSettings.txtAutoText": "Αυτόματα",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Οι καθορισμένες καρτέλες θα εμφανίζονται σε αυτό το πεδίο",
|
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Οι καθορισμένες καρτέλες θα εμφανίζονται σε αυτό το πεδίο",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Όλα κεφαλαία",
|
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Όλα κεφαλαία",
|
||||||
|
@ -2064,7 +2132,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Στοίχιση",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Στοίχιση",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Τουλάχιστον",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Τουλάχιστον",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Πολλαπλό",
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Πολλαπλό",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Χρώμα Φόντου",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Χρώμα Παρασκηνίου",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Βασικό Κείμενο",
|
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Βασικό Κείμενο",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Χρώμα",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Χρώμα",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα και να εφαρμόσετε την επιλεγμένη τεχνοτροπία σε αυτά",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα και να εφαρμόσετε την επιλεγμένη τεχνοτροπία σε αυτά",
|
||||||
|
@ -2115,7 +2183,7 @@
|
||||||
"DE.Views.RightMenu.txtSignatureSettings": "Ρυθμίσεις υπογραφής",
|
"DE.Views.RightMenu.txtSignatureSettings": "Ρυθμίσεις υπογραφής",
|
||||||
"DE.Views.RightMenu.txtTableSettings": "Ρυθμίσεις πίνακα",
|
"DE.Views.RightMenu.txtTableSettings": "Ρυθμίσεις πίνακα",
|
||||||
"DE.Views.RightMenu.txtTextArtSettings": "Ρυθμίσεις τεχνοκειμένου",
|
"DE.Views.RightMenu.txtTextArtSettings": "Ρυθμίσεις τεχνοκειμένου",
|
||||||
"DE.Views.ShapeSettings.strBackground": "Χρώμα φόντου",
|
"DE.Views.ShapeSettings.strBackground": "Χρώμα παρασκηνίου",
|
||||||
"DE.Views.ShapeSettings.strChange": "Αλλαγή Αυτόματου Σχήματος",
|
"DE.Views.ShapeSettings.strChange": "Αλλαγή Αυτόματου Σχήματος",
|
||||||
"DE.Views.ShapeSettings.strColor": "Χρώμα",
|
"DE.Views.ShapeSettings.strColor": "Χρώμα",
|
||||||
"DE.Views.ShapeSettings.strFill": "Γέμισμα",
|
"DE.Views.ShapeSettings.strFill": "Γέμισμα",
|
||||||
|
@ -2216,6 +2284,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Δεξιά στοίχιση αριθμών σελίδων",
|
"DE.Views.TableOfContentsSettings.strAlign": "Δεξιά στοίχιση αριθμών σελίδων",
|
||||||
"DE.Views.TableOfContentsSettings.strFullCaption": "Συμπερίληψη ετικέτας και αριθμού",
|
"DE.Views.TableOfContentsSettings.strFullCaption": "Συμπερίληψη ετικέτας και αριθμού",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Διαμόρφωση Πίνακα Περιεχομένων ως συνδέσμων",
|
"DE.Views.TableOfContentsSettings.strLinks": "Διαμόρφωση Πίνακα Περιεχομένων ως συνδέσμων",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinksOF": "Μορφοποίηση πίνακα εικόνων ως συνδέσμων",
|
||||||
"DE.Views.TableOfContentsSettings.strShowPages": "Εμφάνιση αριθμών σελίδων",
|
"DE.Views.TableOfContentsSettings.strShowPages": "Εμφάνιση αριθμών σελίδων",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTable": "Δημιουργία πίνακα περιεχομένων από",
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Δημιουργία πίνακα περιεχομένων από",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Δημιουργία πίνακα εικόνων από",
|
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Δημιουργία πίνακα εικόνων από",
|
||||||
|
@ -2260,7 +2329,7 @@
|
||||||
"DE.Views.TableSettings.strRepeatRow": "Επανάληψη ως γραμμή επικεφαλίδας στην αρχή κάθε σελίδας",
|
"DE.Views.TableSettings.strRepeatRow": "Επανάληψη ως γραμμή επικεφαλίδας στην αρχή κάθε σελίδας",
|
||||||
"DE.Views.TableSettings.textAddFormula": "Προσθήκη τύπου",
|
"DE.Views.TableSettings.textAddFormula": "Προσθήκη τύπου",
|
||||||
"DE.Views.TableSettings.textAdvanced": "Εμφάνιση προηγμένων ρυθμίσεων",
|
"DE.Views.TableSettings.textAdvanced": "Εμφάνιση προηγμένων ρυθμίσεων",
|
||||||
"DE.Views.TableSettings.textBackColor": "Χρώμα Φόντου",
|
"DE.Views.TableSettings.textBackColor": "Χρώμα Παρασκηνίου",
|
||||||
"DE.Views.TableSettings.textBanded": "Με Εναλλαγή Σκίασης",
|
"DE.Views.TableSettings.textBanded": "Με Εναλλαγή Σκίασης",
|
||||||
"DE.Views.TableSettings.textBorderColor": "Χρώμα",
|
"DE.Views.TableSettings.textBorderColor": "Χρώμα",
|
||||||
"DE.Views.TableSettings.textBorders": "Τεχνοτροπία Περιγραμμάτων",
|
"DE.Views.TableSettings.textBorders": "Τεχνοτροπία Περιγραμμάτων",
|
||||||
|
@ -2294,7 +2363,7 @@
|
||||||
"DE.Views.TableSettings.txtTable_Colorful": "Πολύχρωμο",
|
"DE.Views.TableSettings.txtTable_Colorful": "Πολύχρωμο",
|
||||||
"DE.Views.TableSettings.txtTable_Dark": "Σκούρο",
|
"DE.Views.TableSettings.txtTable_Dark": "Σκούρο",
|
||||||
"DE.Views.TableSettings.txtTable_GridTable": "Πίνακας Πλέγματος",
|
"DE.Views.TableSettings.txtTable_GridTable": "Πίνακας Πλέγματος",
|
||||||
"DE.Views.TableSettings.txtTable_Light": "Φως",
|
"DE.Views.TableSettings.txtTable_Light": "Ανοιχτό",
|
||||||
"DE.Views.TableSettings.txtTable_ListTable": "Πίνακας Λίστας",
|
"DE.Views.TableSettings.txtTable_ListTable": "Πίνακας Λίστας",
|
||||||
"DE.Views.TableSettings.txtTable_PlainTable": "Απλός Πίνακας",
|
"DE.Views.TableSettings.txtTable_PlainTable": "Απλός Πίνακας",
|
||||||
"DE.Views.TableSettings.txtTable_TableGrid": "Πλέγμα Πίνακα",
|
"DE.Views.TableSettings.txtTable_TableGrid": "Πλέγμα Πίνακα",
|
||||||
|
@ -2303,15 +2372,15 @@
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Απόσταση μεταξύ κελιών",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Απόσταση μεταξύ κελιών",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlt": "Εναλλακτικό Κείμενο",
|
"DE.Views.TableSettingsAdvanced.textAlt": "Εναλλακτικό Κείμενο",
|
||||||
"DE.Views.TableSettingsAdvanced.textAltDescription": "Περιγραφή",
|
"DE.Views.TableSettingsAdvanced.textAltDescription": "Περιγραφή",
|
||||||
"DE.Views.TableSettingsAdvanced.textAltTip": "Η εναλλακτική με βάση κείμενο αναπαράσταση των πληροφοριών οπτικού αντικειμένου, η οποία θα αναγνωσθεί στα άτομα με προβλήματα όρασης ή γνωστικών προβλημάτων για να τους βοηθήσουν να κατανοήσουν καλύτερα ποιες πληροφορίες υπάρχουν στην εικόνα, σε αυτόματο σχήμα, στο διάγραμμα ή στον πίνακα.",
|
"DE.Views.TableSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, αυτόματο σχήμα, γράφημα ή πίνακα.",
|
||||||
"DE.Views.TableSettingsAdvanced.textAltTitle": "Τίτλος",
|
"DE.Views.TableSettingsAdvanced.textAltTitle": "Τίτλος",
|
||||||
"DE.Views.TableSettingsAdvanced.textAnchorText": "Κείμενο",
|
"DE.Views.TableSettingsAdvanced.textAnchorText": "Κείμενο",
|
||||||
"DE.Views.TableSettingsAdvanced.textAutofit": "Αυτόματη αλλαγή μεγέθους για προσαρμογή περιεχομένου",
|
"DE.Views.TableSettingsAdvanced.textAutofit": "Αυτόματη αλλαγή μεγέθους για προσαρμογή περιεχομένου",
|
||||||
"DE.Views.TableSettingsAdvanced.textBackColor": "Φόντο Κελιού",
|
"DE.Views.TableSettingsAdvanced.textBackColor": "Παρασκήνιο Κελιού",
|
||||||
"DE.Views.TableSettingsAdvanced.textBelow": "παρακάτω",
|
"DE.Views.TableSettingsAdvanced.textBelow": "παρακάτω",
|
||||||
"DE.Views.TableSettingsAdvanced.textBorderColor": "Χρώμα",
|
"DE.Views.TableSettingsAdvanced.textBorderColor": "Χρώμα",
|
||||||
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα και να εφαρμόσετε την επιλεγμένη τεχνοτροπία σε αυτά",
|
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα και να εφαρμόσετε την επιλεγμένη τεχνοτροπία σε αυτά",
|
||||||
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Περιγράμματα & Φόντο",
|
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Περιγράμματα & Παρασκήνιο",
|
||||||
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
|
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
|
||||||
"DE.Views.TableSettingsAdvanced.textBottom": "Κάτω",
|
"DE.Views.TableSettingsAdvanced.textBottom": "Κάτω",
|
||||||
"DE.Views.TableSettingsAdvanced.textCellOptions": "Επιλογές Κελιού",
|
"DE.Views.TableSettingsAdvanced.textCellOptions": "Επιλογές Κελιού",
|
||||||
|
@ -2420,6 +2489,7 @@
|
||||||
"DE.Views.Toolbar.capImgForward": "Μεταφορά Προς τα Εμπρός",
|
"DE.Views.Toolbar.capImgForward": "Μεταφορά Προς τα Εμπρός",
|
||||||
"DE.Views.Toolbar.capImgGroup": "Ομάδα",
|
"DE.Views.Toolbar.capImgGroup": "Ομάδα",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "Αναδίπλωση",
|
"DE.Views.Toolbar.capImgWrapping": "Αναδίπλωση",
|
||||||
|
"DE.Views.Toolbar.mniCapitalizeWords": "Κεφαλαία Πρώτα Γράμματα",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "Εισαγωγή Προσαρμοσμένου Πίνακα",
|
"DE.Views.Toolbar.mniCustomTable": "Εισαγωγή Προσαρμοσμένου Πίνακα",
|
||||||
"DE.Views.Toolbar.mniDrawTable": "Σχεδίαση Πίνακα",
|
"DE.Views.Toolbar.mniDrawTable": "Σχεδίαση Πίνακα",
|
||||||
"DE.Views.Toolbar.mniEditControls": "Ρυθμίσεις Ελέγχου",
|
"DE.Views.Toolbar.mniEditControls": "Ρυθμίσεις Ελέγχου",
|
||||||
|
@ -2433,6 +2503,10 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Εικόνα από Αρχείο",
|
"DE.Views.Toolbar.mniImageFromFile": "Εικόνα από Αρχείο",
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Εικόνα από Μέσο Αποθήκευσης",
|
"DE.Views.Toolbar.mniImageFromStorage": "Εικόνα από Μέσο Αποθήκευσης",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Εικόνα από διεύθυνση URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Εικόνα από διεύθυνση URL",
|
||||||
|
"DE.Views.Toolbar.mniLowerCase": "πεζά",
|
||||||
|
"DE.Views.Toolbar.mniSentenceCase": "Πεζά-κεφαλαία πρότασης.",
|
||||||
|
"DE.Views.Toolbar.mniToggleCase": "εΝΑΛΛΑΓΗ πΕΖΩΝ-κΕΦΑΛΑΙΩΝ",
|
||||||
|
"DE.Views.Toolbar.mniUpperCase": "ΚΕΦΑΛΑΙΑ",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Χωρίς Γέμισμα",
|
"DE.Views.Toolbar.strMenuNoFill": "Χωρίς Γέμισμα",
|
||||||
"DE.Views.Toolbar.textAutoColor": "Αυτόματα",
|
"DE.Views.Toolbar.textAutoColor": "Αυτόματα",
|
||||||
"DE.Views.Toolbar.textBold": "Έντονα",
|
"DE.Views.Toolbar.textBold": "Έντονα",
|
||||||
|
@ -2513,6 +2587,7 @@
|
||||||
"DE.Views.Toolbar.tipAlignRight": "Στοίχιση δεξιά",
|
"DE.Views.Toolbar.tipAlignRight": "Στοίχιση δεξιά",
|
||||||
"DE.Views.Toolbar.tipBack": "Πίσω",
|
"DE.Views.Toolbar.tipBack": "Πίσω",
|
||||||
"DE.Views.Toolbar.tipBlankPage": "Εισαγωγή κενής σελίδας",
|
"DE.Views.Toolbar.tipBlankPage": "Εισαγωγή κενής σελίδας",
|
||||||
|
"DE.Views.Toolbar.tipChangeCase:": "Αλλαγή πεζών-κεφαλαίων",
|
||||||
"DE.Views.Toolbar.tipChangeChart": "Αλλαγή τύπου γραφήματος",
|
"DE.Views.Toolbar.tipChangeChart": "Αλλαγή τύπου γραφήματος",
|
||||||
"DE.Views.Toolbar.tipClearStyle": "Εκκαθάριση τεχνοτροπίας",
|
"DE.Views.Toolbar.tipClearStyle": "Εκκαθάριση τεχνοτροπίας",
|
||||||
"DE.Views.Toolbar.tipColorSchemas": "Αλλαγή χρωματικού σχεδίου",
|
"DE.Views.Toolbar.tipColorSchemas": "Αλλαγή χρωματικού σχεδίου",
|
||||||
|
@ -2555,7 +2630,7 @@
|
||||||
"DE.Views.Toolbar.tipPageSize": "Μέγεθος σελίδας",
|
"DE.Views.Toolbar.tipPageSize": "Μέγεθος σελίδας",
|
||||||
"DE.Views.Toolbar.tipParagraphStyle": "Τεχνοτροπία Παραγράφου",
|
"DE.Views.Toolbar.tipParagraphStyle": "Τεχνοτροπία Παραγράφου",
|
||||||
"DE.Views.Toolbar.tipPaste": "Επικόλληση",
|
"DE.Views.Toolbar.tipPaste": "Επικόλληση",
|
||||||
"DE.Views.Toolbar.tipPrColor": "Χρώμα φόντου παραγράφου",
|
"DE.Views.Toolbar.tipPrColor": "Χρώμα παρασκηνίου παραγράφου",
|
||||||
"DE.Views.Toolbar.tipPrint": "Εκτύπωση",
|
"DE.Views.Toolbar.tipPrint": "Εκτύπωση",
|
||||||
"DE.Views.Toolbar.tipRedo": "Επανάληψη",
|
"DE.Views.Toolbar.tipRedo": "Επανάληψη",
|
||||||
"DE.Views.Toolbar.tipSave": "Αποθήκευση",
|
"DE.Views.Toolbar.tipSave": "Αποθήκευση",
|
||||||
|
|
|
@ -48,6 +48,10 @@
|
||||||
"Common.Controllers.ReviewChanges.textNot": "Not ",
|
"Common.Controllers.ReviewChanges.textNot": "Not ",
|
||||||
"Common.Controllers.ReviewChanges.textNoWidow": "No widow control",
|
"Common.Controllers.ReviewChanges.textNoWidow": "No widow control",
|
||||||
"Common.Controllers.ReviewChanges.textNum": "Change numbering",
|
"Common.Controllers.ReviewChanges.textNum": "Change numbering",
|
||||||
|
"Common.Controllers.ReviewChanges.textOff": "{0} is no longer using Track Changes.",
|
||||||
|
"Common.Controllers.ReviewChanges.textOffGlobal": "{0} disabled Track Changes for everyone.",
|
||||||
|
"Common.Controllers.ReviewChanges.textOn": "{0} is now using Track Changes.",
|
||||||
|
"Common.Controllers.ReviewChanges.textOnGlobal": "{0} enabled Track Changes for everyone.",
|
||||||
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Paragraph Deleted</b>",
|
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Paragraph Deleted</b>",
|
||||||
"Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted",
|
"Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted",
|
||||||
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Paragraph Inserted</b>",
|
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Paragraph Inserted</b>",
|
||||||
|
@ -75,10 +79,6 @@
|
||||||
"Common.Controllers.ReviewChanges.textUrl": "Paste a document URL",
|
"Common.Controllers.ReviewChanges.textUrl": "Paste a document URL",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
"Common.Controllers.ReviewChanges.textWord": "Word level",
|
"Common.Controllers.ReviewChanges.textWord": "Word level",
|
||||||
"Common.Controllers.ReviewChanges.textOnGlobal": "{0} enabled Track Changes for everyone.",
|
|
||||||
"Common.Controllers.ReviewChanges.textOffGlobal": "{0} disabled Track Changes for everyone.",
|
|
||||||
"Common.Controllers.ReviewChanges.textOn": "{0} is now using Track Changes.",
|
|
||||||
"Common.Controllers.ReviewChanges.textOff": "{0} is no longer using Track Changes.",
|
|
||||||
"Common.define.chartData.textArea": "Area",
|
"Common.define.chartData.textArea": "Area",
|
||||||
"Common.define.chartData.textAreaStacked": "Stacked area",
|
"Common.define.chartData.textAreaStacked": "Stacked area",
|
||||||
"Common.define.chartData.textAreaStackedPer": "100% Stacked area",
|
"Common.define.chartData.textAreaStackedPer": "100% Stacked area",
|
||||||
|
@ -297,6 +297,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Close File",
|
"Common.Views.OpenDialog.closeButtonText": "Close File",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Password",
|
"Common.Views.OpenDialog.txtPassword": "Password",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Preview",
|
"Common.Views.OpenDialog.txtPreview": "Preview",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.",
|
"Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.",
|
||||||
|
@ -307,6 +308,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Password",
|
"Common.Views.PasswordDialog.txtPassword": "Password",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Repeat password",
|
"Common.Views.PasswordDialog.txtRepeat": "Repeat password",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Set Password",
|
"Common.Views.PasswordDialog.txtTitle": "Set Password",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Loading",
|
"Common.Views.PluginDlg.textLoading": "Loading",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugins",
|
"Common.Views.Plugins.groupCaption": "Plugins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
"Common.Views.Plugins.strPlugins": "Plugins",
|
||||||
|
@ -335,6 +337,9 @@
|
||||||
"Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.",
|
"Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.",
|
||||||
"Common.Views.ReviewChanges.strStrict": "Strict",
|
"Common.Views.ReviewChanges.strStrict": "Strict",
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
|
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
|
||||||
|
"Common.Views.ReviewChanges.textEnable": "Enable",
|
||||||
|
"Common.Views.ReviewChanges.textWarnTrackChanges": "Track Changes will be switched ON for all users with full access. The next time anyone opens the doc, Track Changes will remain enabled.",
|
||||||
|
"Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Enable Track Changes for everyone?",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
|
||||||
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
|
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
|
||||||
|
@ -367,6 +372,10 @@
|
||||||
"Common.Views.ReviewChanges.txtMarkup": "All changes (Editing)",
|
"Common.Views.ReviewChanges.txtMarkup": "All changes (Editing)",
|
||||||
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
|
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
|
||||||
"Common.Views.ReviewChanges.txtNext": "Next",
|
"Common.Views.ReviewChanges.txtNext": "Next",
|
||||||
|
"Common.Views.ReviewChanges.txtOff": "OFF for me",
|
||||||
|
"Common.Views.ReviewChanges.txtOffGlobal": "OFF for me and everyone",
|
||||||
|
"Common.Views.ReviewChanges.txtOn": "ON for me",
|
||||||
|
"Common.Views.ReviewChanges.txtOnGlobal": "ON for me and everyone",
|
||||||
"Common.Views.ReviewChanges.txtOriginal": "All changes rejected (Preview)",
|
"Common.Views.ReviewChanges.txtOriginal": "All changes rejected (Preview)",
|
||||||
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
|
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
|
||||||
"Common.Views.ReviewChanges.txtPrev": "Previous",
|
"Common.Views.ReviewChanges.txtPrev": "Previous",
|
||||||
|
@ -378,13 +387,6 @@
|
||||||
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
|
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
|
||||||
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
|
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
|
||||||
"Common.Views.ReviewChanges.txtView": "Display Mode",
|
"Common.Views.ReviewChanges.txtView": "Display Mode",
|
||||||
"Common.Views.ReviewChanges.txtOnGlobal": "ON for me and everyone",
|
|
||||||
"Common.Views.ReviewChanges.txtOffGlobal": "OFF for me and everyone",
|
|
||||||
"Common.Views.ReviewChanges.txtOn": "ON for me",
|
|
||||||
"Common.Views.ReviewChanges.txtOff": "OFF for me",
|
|
||||||
"Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Enable Track Changes for everyone?",
|
|
||||||
"Common.Views.ReviewChanges.textWarnTrackChanges": "Track Changes will be switched ON for all users with full access. The next time anyone opens the doc, Track Changes will remain enabled.",
|
|
||||||
"Common.Views.ReviewChanges.textEnable": "Enable",
|
|
||||||
"Common.Views.ReviewChangesDialog.textTitle": "Review Changes",
|
"Common.Views.ReviewChangesDialog.textTitle": "Review Changes",
|
||||||
"Common.Views.ReviewChangesDialog.txtAccept": "Accept",
|
"Common.Views.ReviewChangesDialog.txtAccept": "Accept",
|
||||||
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes",
|
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes",
|
||||||
|
@ -414,6 +416,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "Change",
|
"Common.Views.SignDialog.textChange": "Change",
|
||||||
"Common.Views.SignDialog.textInputName": "Input signer name",
|
"Common.Views.SignDialog.textInputName": "Input signer name",
|
||||||
"Common.Views.SignDialog.textItalic": "Italic",
|
"Common.Views.SignDialog.textItalic": "Italic",
|
||||||
|
"Common.Views.SignDialog.textNameError": "Signer name must not be empty.",
|
||||||
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
|
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
|
||||||
"Common.Views.SignDialog.textSelect": "Select",
|
"Common.Views.SignDialog.textSelect": "Select",
|
||||||
"Common.Views.SignDialog.textSelectImage": "Select Image",
|
"Common.Views.SignDialog.textSelectImage": "Select Image",
|
||||||
|
@ -841,10 +844,10 @@
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
||||||
|
"DE.Controllers.Statusbar.textSetTrackChanges": "You are in Track Changes mode",
|
||||||
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
|
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
|
||||||
"DE.Controllers.Statusbar.tipReview": "Track changes",
|
"DE.Controllers.Statusbar.tipReview": "Track changes",
|
||||||
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
"DE.Controllers.Statusbar.textSetTrackChanges": "You are in Track Changes mode",
|
|
||||||
"DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the system fonts, the saved font will be used when it is available.<br>Do you want to continue?",
|
"DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the system fonts, the saved font will be used when it is available.<br>Do you want to continue?",
|
||||||
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning",
|
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning",
|
||||||
"DE.Controllers.Toolbar.textAccent": "Accents",
|
"DE.Controllers.Toolbar.textAccent": "Accents",
|
||||||
|
@ -1933,6 +1936,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textSection": "Current section",
|
"DE.Views.LineNumbersDialog.textSection": "Current section",
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Start at",
|
"DE.Views.LineNumbersDialog.textStartAt": "Start at",
|
||||||
"DE.Views.LineNumbersDialog.textTitle": "Line Numbers",
|
"DE.Views.LineNumbersDialog.textTitle": "Line Numbers",
|
||||||
|
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Bookmark",
|
"DE.Views.Links.capBtnBookmarks": "Bookmark",
|
||||||
"DE.Views.Links.capBtnCaption": "Caption",
|
"DE.Views.Links.capBtnCaption": "Caption",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Refresh",
|
"DE.Views.Links.capBtnContentsUpdate": "Refresh",
|
||||||
|
@ -2293,6 +2297,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers",
|
"DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers",
|
||||||
"DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number",
|
"DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links",
|
"DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinksOF": "Format table of figures as links",
|
||||||
"DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers",
|
"DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from",
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Build table of figures from",
|
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Build table of figures from",
|
||||||
|
@ -2519,6 +2524,7 @@
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatic",
|
"DE.Views.Toolbar.textAutoColor": "Automatic",
|
||||||
"DE.Views.Toolbar.textBold": "Bold",
|
"DE.Views.Toolbar.textBold": "Bold",
|
||||||
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
||||||
|
"DE.Views.Toolbar.textChangeLevel": "Change List Level",
|
||||||
"DE.Views.Toolbar.textCheckboxControl": "Check box",
|
"DE.Views.Toolbar.textCheckboxControl": "Check box",
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
|
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
||||||
|
|
|
@ -256,6 +256,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Cerrar archivo",
|
"Common.Views.OpenDialog.closeButtonText": "Cerrar archivo",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Codificación",
|
"Common.Views.OpenDialog.txtEncoding": "Codificación",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "La contraseña es incorrecta",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "La contraseña es incorrecta",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Escribir la contraseña para abrir el archivo",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Contraseña",
|
"Common.Views.OpenDialog.txtPassword": "Contraseña",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Vista previa",
|
"Common.Views.OpenDialog.txtPreview": "Vista previa",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Una vez que se ha introducido la contraseña y abierto el archivo, la contraseña actual al archivo se restablecerá",
|
"Common.Views.OpenDialog.txtProtected": "Una vez que se ha introducido la contraseña y abierto el archivo, la contraseña actual al archivo se restablecerá",
|
||||||
|
@ -266,6 +267,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Contraseña",
|
"Common.Views.PasswordDialog.txtPassword": "Contraseña",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Repita la contraseña",
|
"Common.Views.PasswordDialog.txtRepeat": "Repita la contraseña",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Establezca una contraseña",
|
"Common.Views.PasswordDialog.txtTitle": "Establezca una contraseña",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdalo en un lugar seguro.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Cargando",
|
"Common.Views.PluginDlg.textLoading": "Cargando",
|
||||||
"Common.Views.Plugins.groupCaption": "Extensiones",
|
"Common.Views.Plugins.groupCaption": "Extensiones",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
"Common.Views.Plugins.strPlugins": "Plugins",
|
||||||
|
@ -366,6 +368,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "Cambiar",
|
"Common.Views.SignDialog.textChange": "Cambiar",
|
||||||
"Common.Views.SignDialog.textInputName": "Ingresar nombre de quien firma",
|
"Common.Views.SignDialog.textInputName": "Ingresar nombre de quien firma",
|
||||||
"Common.Views.SignDialog.textItalic": "Itálica",
|
"Common.Views.SignDialog.textItalic": "Itálica",
|
||||||
|
"Common.Views.SignDialog.textNameError": "El nombre del firmante no debe estar vacío.",
|
||||||
"Common.Views.SignDialog.textPurpose": "Propósito al firmar este documento",
|
"Common.Views.SignDialog.textPurpose": "Propósito al firmar este documento",
|
||||||
"Common.Views.SignDialog.textSelect": "Seleccionar",
|
"Common.Views.SignDialog.textSelect": "Seleccionar",
|
||||||
"Common.Views.SignDialog.textSelectImage": "Seleccionar Imagen",
|
"Common.Views.SignDialog.textSelectImage": "Seleccionar Imagen",
|
||||||
|
@ -1863,6 +1866,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textSection": "Sección actual",
|
"DE.Views.LineNumbersDialog.textSection": "Sección actual",
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Empezar en",
|
"DE.Views.LineNumbersDialog.textStartAt": "Empezar en",
|
||||||
"DE.Views.LineNumbersDialog.textTitle": "Numeración de Líneas",
|
"DE.Views.LineNumbersDialog.textTitle": "Numeración de Líneas",
|
||||||
|
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Marcador",
|
"DE.Views.Links.capBtnBookmarks": "Marcador",
|
||||||
"DE.Views.Links.capBtnCaption": "Leyenda",
|
"DE.Views.Links.capBtnCaption": "Leyenda",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Actualizar",
|
"DE.Views.Links.capBtnContentsUpdate": "Actualizar",
|
||||||
|
@ -2216,6 +2220,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Alinee los números de página a la derecha",
|
"DE.Views.TableOfContentsSettings.strAlign": "Alinee los números de página a la derecha",
|
||||||
"DE.Views.TableOfContentsSettings.strFullCaption": "Incluir etiqueta y número",
|
"DE.Views.TableOfContentsSettings.strFullCaption": "Incluir etiqueta y número",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Formatear tabla de ilustraciones como enlaces",
|
"DE.Views.TableOfContentsSettings.strLinks": "Formatear tabla de ilustraciones como enlaces",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinksOF": "Formatear tabla de ilustraciones como enlaces",
|
||||||
"DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de página",
|
"DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de página",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTable": "Crear tabla de contenidos desde",
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Crear tabla de contenidos desde",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Generar tabla de ilustraciones a partir de:",
|
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Generar tabla de ilustraciones a partir de:",
|
||||||
|
|
|
@ -173,12 +173,14 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Sulje tiedosto",
|
"Common.Views.OpenDialog.closeButtonText": "Sulje tiedosto",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Koodaus",
|
"Common.Views.OpenDialog.txtEncoding": "Koodaus",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Väärä salasana.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Väärä salasana.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Kirjoita tiedoston avauksen salasana",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Salasana",
|
"Common.Views.OpenDialog.txtPassword": "Salasana",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Esikatselu",
|
"Common.Views.OpenDialog.txtPreview": "Esikatselu",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Valitse %1 vaihtoehtoa",
|
"Common.Views.OpenDialog.txtTitle": "Valitse %1 vaihtoehtoa",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Suojattu tiedosto",
|
"Common.Views.OpenDialog.txtTitleProtected": "Suojattu tiedosto",
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Salasana",
|
"Common.Views.PasswordDialog.txtPassword": "Salasana",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Aseta salasana",
|
"Common.Views.PasswordDialog.txtTitle": "Aseta salasana",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Varoitus: Jos kadotat tai unohdat salasanan, sitä ei voi palauttaa. Säilytä sitä turvallisessa paikassa.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Ladataan",
|
"Common.Views.PluginDlg.textLoading": "Ladataan",
|
||||||
"Common.Views.Plugins.groupCaption": "Laajennukset",
|
"Common.Views.Plugins.groupCaption": "Laajennukset",
|
||||||
"Common.Views.Plugins.strPlugins": "Lisätoiminnot",
|
"Common.Views.Plugins.strPlugins": "Lisätoiminnot",
|
||||||
|
|
|
@ -256,6 +256,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Fermer le fichier",
|
"Common.Views.OpenDialog.closeButtonText": "Fermer le fichier",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Codage ",
|
"Common.Views.OpenDialog.txtEncoding": "Codage ",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Entrer le mot de passe pour ouvrir le fichier",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Mot de passe",
|
"Common.Views.OpenDialog.txtPassword": "Mot de passe",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Aperçu",
|
"Common.Views.OpenDialog.txtPreview": "Aperçu",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé.",
|
"Common.Views.OpenDialog.txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé.",
|
||||||
|
@ -266,6 +267,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
|
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Confirmer le mot de passe",
|
"Common.Views.PasswordDialog.txtRepeat": "Confirmer le mot de passe",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Définir un mot de passe",
|
"Common.Views.PasswordDialog.txtTitle": "Définir un mot de passe",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Attention : si vous oubliez ou perdez votre mot de passe, il sera impossible de le récupérer. Conservez-le en lieu sûr.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Chargement",
|
"Common.Views.PluginDlg.textLoading": "Chargement",
|
||||||
"Common.Views.Plugins.groupCaption": "Modules complémentaires",
|
"Common.Views.Plugins.groupCaption": "Modules complémentaires",
|
||||||
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
||||||
|
@ -366,6 +368,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "Modifier",
|
"Common.Views.SignDialog.textChange": "Modifier",
|
||||||
"Common.Views.SignDialog.textInputName": "Nom du signataire d'entrée",
|
"Common.Views.SignDialog.textInputName": "Nom du signataire d'entrée",
|
||||||
"Common.Views.SignDialog.textItalic": "Italique",
|
"Common.Views.SignDialog.textItalic": "Italique",
|
||||||
|
"Common.Views.SignDialog.textNameError": "Veuillez indiquer le nom du signataire.",
|
||||||
"Common.Views.SignDialog.textPurpose": "But de la signature du document",
|
"Common.Views.SignDialog.textPurpose": "But de la signature du document",
|
||||||
"Common.Views.SignDialog.textSelect": "Sélectionner",
|
"Common.Views.SignDialog.textSelect": "Sélectionner",
|
||||||
"Common.Views.SignDialog.textSelectImage": "Sélectionner une image",
|
"Common.Views.SignDialog.textSelectImage": "Sélectionner une image",
|
||||||
|
@ -1863,6 +1866,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textSection": "Section active",
|
"DE.Views.LineNumbersDialog.textSection": "Section active",
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Commencer par",
|
"DE.Views.LineNumbersDialog.textStartAt": "Commencer par",
|
||||||
"DE.Views.LineNumbersDialog.textTitle": "Numéros des lignes",
|
"DE.Views.LineNumbersDialog.textTitle": "Numéros des lignes",
|
||||||
|
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Signet",
|
"DE.Views.Links.capBtnBookmarks": "Signet",
|
||||||
"DE.Views.Links.capBtnCaption": "Légende",
|
"DE.Views.Links.capBtnCaption": "Légende",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Actualiser",
|
"DE.Views.Links.capBtnContentsUpdate": "Actualiser",
|
||||||
|
@ -2216,6 +2220,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Aligner les numéros de page à droite",
|
"DE.Views.TableOfContentsSettings.strAlign": "Aligner les numéros de page à droite",
|
||||||
"DE.Views.TableOfContentsSettings.strFullCaption": "Inclure l'étiquette et le numéro",
|
"DE.Views.TableOfContentsSettings.strFullCaption": "Inclure l'étiquette et le numéro",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Mettre la table des matières sous forme de liens",
|
"DE.Views.TableOfContentsSettings.strLinks": "Mettre la table des matières sous forme de liens",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinksOF": "Mettre la table des figures sous forme de liens",
|
||||||
"DE.Views.TableOfContentsSettings.strShowPages": "Afficher les numéros de page",
|
"DE.Views.TableOfContentsSettings.strShowPages": "Afficher les numéros de page",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTable": "Construire la table des matières à partir de",
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Construire la table des matières à partir de",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Construire un table des figures à partir de",
|
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Construire un table des figures à partir de",
|
||||||
|
|
|
@ -254,6 +254,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Fájl bezárása",
|
"Common.Views.OpenDialog.closeButtonText": "Fájl bezárása",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Kódol",
|
"Common.Views.OpenDialog.txtEncoding": "Kódol",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Hibás jelszó.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Hibás jelszó.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Írja be a megnyitáshoz szükséges jelszót",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Jelszó",
|
"Common.Views.OpenDialog.txtPassword": "Jelszó",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Előnézet",
|
"Common.Views.OpenDialog.txtPreview": "Előnézet",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, az aktuális jelszó visszaáll.",
|
"Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, az aktuális jelszó visszaáll.",
|
||||||
|
@ -264,6 +265,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Jelszó",
|
"Common.Views.PasswordDialog.txtPassword": "Jelszó",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Jelszó ismétlése",
|
"Common.Views.PasswordDialog.txtRepeat": "Jelszó ismétlése",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Jelszó beállítása",
|
"Common.Views.PasswordDialog.txtTitle": "Jelszó beállítása",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Figyelem: ha elveszti vagy elfelejti a jelszót, annak visszaállítására nincs mód. Tárolja biztonságos helyen.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Betöltés",
|
"Common.Views.PluginDlg.textLoading": "Betöltés",
|
||||||
"Common.Views.Plugins.groupCaption": "Kiegészítők",
|
"Common.Views.Plugins.groupCaption": "Kiegészítők",
|
||||||
"Common.Views.Plugins.strPlugins": "Kiegészítők",
|
"Common.Views.Plugins.strPlugins": "Kiegészítők",
|
||||||
|
|
|
@ -141,7 +141,9 @@
|
||||||
"Common.Views.InsertTableDialog.txtRows": "Jumlah Baris",
|
"Common.Views.InsertTableDialog.txtRows": "Jumlah Baris",
|
||||||
"Common.Views.InsertTableDialog.txtTitle": "Ukuran Tabel",
|
"Common.Views.InsertTableDialog.txtTitle": "Ukuran Tabel",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.",
|
||||||
"Common.Views.ReviewChanges.txtAccept": "Accept",
|
"Common.Views.ReviewChanges.txtAccept": "Accept",
|
||||||
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
|
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
|
||||||
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",
|
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",
|
||||||
|
|
|
@ -245,6 +245,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Chiudi File",
|
"Common.Views.OpenDialog.closeButtonText": "Chiudi File",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Codifica",
|
"Common.Views.OpenDialog.txtEncoding": "Codifica",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Password errata",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Password errata",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Immettere la password per aprire il file",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Password",
|
"Common.Views.OpenDialog.txtPassword": "Password",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Anteprima",
|
"Common.Views.OpenDialog.txtPreview": "Anteprima",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file.",
|
"Common.Views.OpenDialog.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file.",
|
||||||
|
@ -255,6 +256,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Password",
|
"Common.Views.PasswordDialog.txtPassword": "Password",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Ripeti password",
|
"Common.Views.PasswordDialog.txtRepeat": "Ripeti password",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Imposta password",
|
"Common.Views.PasswordDialog.txtTitle": "Imposta password",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Importante: una volta persa o dimenticata, la password non potrà più essere recuperata. Conservalo in un luogo sicuro.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Caricamento",
|
"Common.Views.PluginDlg.textLoading": "Caricamento",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugin",
|
"Common.Views.Plugins.groupCaption": "Plugin",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugin",
|
"Common.Views.Plugins.strPlugins": "Plugin",
|
||||||
|
@ -355,6 +357,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "Cambia",
|
"Common.Views.SignDialog.textChange": "Cambia",
|
||||||
"Common.Views.SignDialog.textInputName": "Inserisci nome firmatario",
|
"Common.Views.SignDialog.textInputName": "Inserisci nome firmatario",
|
||||||
"Common.Views.SignDialog.textItalic": "Corsivo",
|
"Common.Views.SignDialog.textItalic": "Corsivo",
|
||||||
|
"Common.Views.SignDialog.textNameError": "Il nome firmatario non può essere vuoto.",
|
||||||
"Common.Views.SignDialog.textPurpose": "Motivo della firma del documento",
|
"Common.Views.SignDialog.textPurpose": "Motivo della firma del documento",
|
||||||
"Common.Views.SignDialog.textSelect": "Seleziona",
|
"Common.Views.SignDialog.textSelect": "Seleziona",
|
||||||
"Common.Views.SignDialog.textSelectImage": "Seleziona Immagine",
|
"Common.Views.SignDialog.textSelectImage": "Seleziona Immagine",
|
||||||
|
@ -1824,6 +1827,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textRestartEachSection": "Ricomincia a ogni sezione",
|
"DE.Views.LineNumbersDialog.textRestartEachSection": "Ricomincia a ogni sezione",
|
||||||
"DE.Views.LineNumbersDialog.textSection": "Sezione attiva",
|
"DE.Views.LineNumbersDialog.textSection": "Sezione attiva",
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Inizia da",
|
"DE.Views.LineNumbersDialog.textStartAt": "Inizia da",
|
||||||
|
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Segnalibro",
|
"DE.Views.Links.capBtnBookmarks": "Segnalibro",
|
||||||
"DE.Views.Links.capBtnCaption": "Didascalia",
|
"DE.Views.Links.capBtnCaption": "Didascalia",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Aggiorna",
|
"DE.Views.Links.capBtnContentsUpdate": "Aggiorna",
|
||||||
|
@ -2168,6 +2172,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Numeri di pagina allineati a destra",
|
"DE.Views.TableOfContentsSettings.strAlign": "Numeri di pagina allineati a destra",
|
||||||
"DE.Views.TableOfContentsSettings.strFullCaption": "Includi etichetta e numero",
|
"DE.Views.TableOfContentsSettings.strFullCaption": "Includi etichetta e numero",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Formato Sommario come collegamenti",
|
"DE.Views.TableOfContentsSettings.strLinks": "Formato Sommario come collegamenti",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinksOF": "Formato l'indice delle figure come collegamenti",
|
||||||
"DE.Views.TableOfContentsSettings.strShowPages": "Mostra numeri di pagina",
|
"DE.Views.TableOfContentsSettings.strShowPages": "Mostra numeri di pagina",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTable": "Crea Sommario da",
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Crea Sommario da",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Costruisci l'Indice delle figure",
|
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Costruisci l'Indice delle figure",
|
||||||
|
|
|
@ -254,6 +254,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる",
|
"Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "エンコード",
|
"Common.Views.OpenDialog.txtEncoding": "エンコード",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "パスワードが正しくありません。",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "パスワードが正しくありません。",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "ファイルを開くためのパスワードを入力する",
|
||||||
"Common.Views.OpenDialog.txtPassword": "パスワード",
|
"Common.Views.OpenDialog.txtPassword": "パスワード",
|
||||||
"Common.Views.OpenDialog.txtPreview": "下見",
|
"Common.Views.OpenDialog.txtPreview": "下見",
|
||||||
"Common.Views.OpenDialog.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。",
|
"Common.Views.OpenDialog.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。",
|
||||||
|
@ -264,6 +265,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "パスワード",
|
"Common.Views.PasswordDialog.txtPassword": "パスワード",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "パスワードを再入力",
|
"Common.Views.PasswordDialog.txtRepeat": "パスワードを再入力",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "パスワードの設定",
|
"Common.Views.PasswordDialog.txtTitle": "パスワードの設定",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "注意: パスワードを忘れると、元に戻せません。",
|
||||||
"Common.Views.PluginDlg.textLoading": "読み込み中",
|
"Common.Views.PluginDlg.textLoading": "読み込み中",
|
||||||
"Common.Views.Plugins.groupCaption": "プラグイン",
|
"Common.Views.Plugins.groupCaption": "プラグイン",
|
||||||
"Common.Views.Plugins.strPlugins": "プラグイン",
|
"Common.Views.Plugins.strPlugins": "プラグイン",
|
||||||
|
@ -364,6 +366,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "変更する",
|
"Common.Views.SignDialog.textChange": "変更する",
|
||||||
"Common.Views.SignDialog.textInputName": "署名者の名前を入力",
|
"Common.Views.SignDialog.textInputName": "署名者の名前を入力",
|
||||||
"Common.Views.SignDialog.textItalic": "斜体",
|
"Common.Views.SignDialog.textItalic": "斜体",
|
||||||
|
"Common.Views.SignDialog.textNameError": "署名者の名前を空にしておくことはできません。",
|
||||||
"Common.Views.SignDialog.textPurpose": "この文書にサインする目的",
|
"Common.Views.SignDialog.textPurpose": "この文書にサインする目的",
|
||||||
"Common.Views.SignDialog.textSelect": "選択",
|
"Common.Views.SignDialog.textSelect": "選択",
|
||||||
"Common.Views.SignDialog.textSelectImage": "画像を選択する",
|
"Common.Views.SignDialog.textSelectImage": "画像を選択する",
|
||||||
|
|
|
@ -174,6 +174,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "파일 닫기",
|
"Common.Views.OpenDialog.closeButtonText": "파일 닫기",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "인코딩",
|
"Common.Views.OpenDialog.txtEncoding": "인코딩",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "파일을 열려면 암호를 입력하십시오.",
|
||||||
"Common.Views.OpenDialog.txtPassword": "비밀번호",
|
"Common.Views.OpenDialog.txtPassword": "비밀번호",
|
||||||
"Common.Views.OpenDialog.txtPreview": "미리보기",
|
"Common.Views.OpenDialog.txtPreview": "미리보기",
|
||||||
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
|
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
|
||||||
|
@ -183,6 +184,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "암호",
|
"Common.Views.PasswordDialog.txtPassword": "암호",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "비밀번호 반복",
|
"Common.Views.PasswordDialog.txtRepeat": "비밀번호 반복",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "비밀번호 설정",
|
"Common.Views.PasswordDialog.txtTitle": "비밀번호 설정",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "주의: 암호를 잊으면 복구할 수 없습니다. 암호는 대/소문자를 구분합니다. 이 코드를 안전한 곳에 보관하세요.",
|
||||||
"Common.Views.PluginDlg.textLoading": "로드 중",
|
"Common.Views.PluginDlg.textLoading": "로드 중",
|
||||||
"Common.Views.Plugins.groupCaption": "플러그인",
|
"Common.Views.Plugins.groupCaption": "플러그인",
|
||||||
"Common.Views.Plugins.strPlugins": "플러그인",
|
"Common.Views.Plugins.strPlugins": "플러그인",
|
||||||
|
|
|
@ -256,6 +256,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "ປິດຟາຍ",
|
"Common.Views.OpenDialog.closeButtonText": "ປິດຟາຍ",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "ການເຂົ້າລະຫັດ",
|
"Common.Views.OpenDialog.txtEncoding": "ການເຂົ້າລະຫັດ",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "ລະຫັດບໍ່ຖືກຕ້ອງ",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "ລະຫັດບໍ່ຖືກຕ້ອງ",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "ລະຫັດ",
|
||||||
"Common.Views.OpenDialog.txtPassword": "ລະຫັດ",
|
"Common.Views.OpenDialog.txtPassword": "ລະຫັດ",
|
||||||
"Common.Views.OpenDialog.txtPreview": "ເບິ່ງຕົວຢ່າງ",
|
"Common.Views.OpenDialog.txtPreview": "ເບິ່ງຕົວຢ່າງ",
|
||||||
"Common.Views.OpenDialog.txtProtected": "ເມື່ອທ່ານໃສ່ລະຫັດຜ່ານເປີດເອກະສານ, ລະຫັດຜ່ານໃນປະຈຸບັນຈະຖືກຕັ້ງຄ່າ ໃໝ່.",
|
"Common.Views.OpenDialog.txtProtected": "ເມື່ອທ່ານໃສ່ລະຫັດຜ່ານເປີດເອກະສານ, ລະຫັດຜ່ານໃນປະຈຸບັນຈະຖືກຕັ້ງຄ່າ ໃໝ່.",
|
||||||
|
|
|
@ -171,6 +171,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Aizvērt failu",
|
"Common.Views.OpenDialog.closeButtonText": "Aizvērt failu",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Parole nav pareiza.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Parole nav pareiza.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Ievadiet paroli, lai atvērtu failu",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Parole",
|
"Common.Views.OpenDialog.txtPassword": "Parole",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Priekšskatījums",
|
"Common.Views.OpenDialog.txtPreview": "Priekšskatījums",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
||||||
|
@ -180,6 +181,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Parole",
|
"Common.Views.PasswordDialog.txtPassword": "Parole",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Atkārtot paroli",
|
"Common.Views.PasswordDialog.txtRepeat": "Atkārtot paroli",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Uzstādīt paroli",
|
"Common.Views.PasswordDialog.txtTitle": "Uzstādīt paroli",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Uzmanību! Pazaudētu vai aizmirstu paroli nevar atgūt. Glabājiet drošā vietā.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Ielādē",
|
"Common.Views.PluginDlg.textLoading": "Ielādē",
|
||||||
"Common.Views.Plugins.groupCaption": "Spraudņi",
|
"Common.Views.Plugins.groupCaption": "Spraudņi",
|
||||||
"Common.Views.Plugins.strPlugins": "Spraudņi",
|
"Common.Views.Plugins.strPlugins": "Spraudņi",
|
||||||
|
|
|
@ -68,8 +68,10 @@
|
||||||
"Common.Views.History.textCloseHistory": "Lukk loggen",
|
"Common.Views.History.textCloseHistory": "Lukk loggen",
|
||||||
"Common.Views.History.textHide": "Lukk",
|
"Common.Views.History.textHide": "Lukk",
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Lukk filen",
|
"Common.Views.OpenDialog.closeButtonText": "Lukk filen",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Skriv inn passordet for å opne fila",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Velg %1 alternativer",
|
"Common.Views.OpenDialog.txtTitle": "Velg %1 alternativer",
|
||||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bekreftet passord er ikke identisk",
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bekreftet passord er ikke identisk",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Åtvaring! Dersom du mister eller gløymer passordet, kan det ikkje gjenopprettast. Oppbevare han på ein trygg stad.",
|
||||||
"Common.Views.Protection.hintPwd": "Endre eller slett passord",
|
"Common.Views.Protection.hintPwd": "Endre eller slett passord",
|
||||||
"Common.Views.Protection.hintSignature": "Legg til digital signatur eller signaturlinje",
|
"Common.Views.Protection.hintSignature": "Legg til digital signatur eller signaturlinje",
|
||||||
"Common.Views.Protection.txtAddPwd": "Angi passord",
|
"Common.Views.Protection.txtAddPwd": "Angi passord",
|
||||||
|
|
|
@ -256,6 +256,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
|
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
|
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
|
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Voorbeeld",
|
"Common.Views.OpenDialog.txtPreview": "Voorbeeld",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Nadat u het wachtwoord heeft ingevoerd en het bestand heeft geopend, wordt het huidige wachtwoord voor het bestand gereset.",
|
"Common.Views.OpenDialog.txtProtected": "Nadat u het wachtwoord heeft ingevoerd en het bestand heeft geopend, wordt het huidige wachtwoord voor het bestand gereset.",
|
||||||
|
@ -266,6 +267,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Wachtwoord",
|
"Common.Views.PasswordDialog.txtPassword": "Wachtwoord",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Herhaal wachtwoord",
|
"Common.Views.PasswordDialog.txtRepeat": "Herhaal wachtwoord",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Wachtwoord instellen",
|
"Common.Views.PasswordDialog.txtTitle": "Wachtwoord instellen",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Waarschuwing: Als u het wachtwoord kwijtraakt of vergeet, kan dit niet meer worden hersteld. Bewaar deze op een veilige plaats.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Laden",
|
"Common.Views.PluginDlg.textLoading": "Laden",
|
||||||
"Common.Views.Plugins.groupCaption": "Plug-ins",
|
"Common.Views.Plugins.groupCaption": "Plug-ins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
||||||
|
|
|
@ -183,11 +183,13 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Zamknij plik",
|
"Common.Views.OpenDialog.closeButtonText": "Zamknij plik",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Kodowanie",
|
"Common.Views.OpenDialog.txtEncoding": "Kodowanie",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Wprowadź hasło, aby otworzyć plik",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Hasło",
|
"Common.Views.OpenDialog.txtPassword": "Hasło",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Wybierz %1 opcji",
|
"Common.Views.OpenDialog.txtTitle": "Wybierz %1 opcji",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Plik chroniony",
|
"Common.Views.OpenDialog.txtTitleProtected": "Plik chroniony",
|
||||||
"Common.Views.PasswordDialog.txtDescription": "Ustaw hasło aby zabezpieczyć ten dokument",
|
"Common.Views.PasswordDialog.txtDescription": "Ustaw hasło aby zabezpieczyć ten dokument",
|
||||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Hasła nie są takie same",
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "Hasła nie są takie same",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Uwaga: Jeśli zapomnisz lub zgubisz hasło, nie będzie możliwości odzyskania go. Zapisz go i nikomu nie udostępniaj.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Ładowanie",
|
"Common.Views.PluginDlg.textLoading": "Ładowanie",
|
||||||
"Common.Views.Plugins.groupCaption": "Wtyczki",
|
"Common.Views.Plugins.groupCaption": "Wtyczki",
|
||||||
"Common.Views.Plugins.strPlugins": "Wtyczki",
|
"Common.Views.Plugins.strPlugins": "Wtyczki",
|
||||||
|
|
|
@ -76,10 +76,24 @@
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
"Common.Controllers.ReviewChanges.textWord": "Nível de palavra",
|
"Common.Controllers.ReviewChanges.textWord": "Nível de palavra",
|
||||||
"Common.define.chartData.textArea": "Área",
|
"Common.define.chartData.textArea": "Área",
|
||||||
|
"Common.define.chartData.textAreaStackedPer": "100% Área alinhada",
|
||||||
"Common.define.chartData.textBar": "Barra",
|
"Common.define.chartData.textBar": "Barra",
|
||||||
|
"Common.define.chartData.textBarNormal3d": "3-D Coluna agrupada",
|
||||||
|
"Common.define.chartData.textBarNormal3dPerspective": "3-D Coluna",
|
||||||
|
"Common.define.chartData.textBarStacked": "Coluna alinhada",
|
||||||
|
"Common.define.chartData.textBarStackedPer": "100% Coluna alinhada",
|
||||||
|
"Common.define.chartData.textBarStackedPer3d": "3-D 100% Coluna alinhada",
|
||||||
"Common.define.chartData.textCharts": "Gráficos",
|
"Common.define.chartData.textCharts": "Gráficos",
|
||||||
"Common.define.chartData.textColumn": "Coluna",
|
"Common.define.chartData.textColumn": "Coluna",
|
||||||
|
"Common.define.chartData.textHBarNormal3d": "3-D Barra agrupada",
|
||||||
|
"Common.define.chartData.textHBarStacked": "Barra alinhada",
|
||||||
|
"Common.define.chartData.textHBarStackedPer": "100% Barra alinhada",
|
||||||
|
"Common.define.chartData.textHBarStackedPer3d": "3-D 100% Barra alinhada",
|
||||||
"Common.define.chartData.textLine": "Linha",
|
"Common.define.chartData.textLine": "Linha",
|
||||||
|
"Common.define.chartData.textLine3d": "3-D Linha",
|
||||||
|
"Common.define.chartData.textLineStacked": "Alinhado",
|
||||||
|
"Common.define.chartData.textLineStackedPer": "100% Alinhado",
|
||||||
|
"Common.define.chartData.textLineStackedPerMarker": "100% Alinhado com",
|
||||||
"Common.define.chartData.textPie": "Gráfico de pizza",
|
"Common.define.chartData.textPie": "Gráfico de pizza",
|
||||||
"Common.define.chartData.textPoint": "Gráfico de pontos",
|
"Common.define.chartData.textPoint": "Gráfico de pontos",
|
||||||
"Common.define.chartData.textStock": "Gráfico de ações",
|
"Common.define.chartData.textStock": "Gráfico de ações",
|
||||||
|
@ -120,6 +134,7 @@
|
||||||
"Common.UI.Calendar.textShortTuesday": "Ter",
|
"Common.UI.Calendar.textShortTuesday": "Ter",
|
||||||
"Common.UI.Calendar.textShortWednesday": "Qua",
|
"Common.UI.Calendar.textShortWednesday": "Qua",
|
||||||
"Common.UI.Calendar.textYears": "Anos",
|
"Common.UI.Calendar.textYears": "Anos",
|
||||||
|
"Common.UI.ColorButton.textAutoColor": "Automático",
|
||||||
"Common.UI.ColorButton.textNewColor": "Adicionar nova cor personalizada",
|
"Common.UI.ColorButton.textNewColor": "Adicionar nova cor personalizada",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
||||||
|
@ -221,6 +236,7 @@
|
||||||
"Common.Views.Header.textAdvSettings": "Configurações avançadas",
|
"Common.Views.Header.textAdvSettings": "Configurações avançadas",
|
||||||
"Common.Views.Header.textBack": "Local do arquivo aberto",
|
"Common.Views.Header.textBack": "Local do arquivo aberto",
|
||||||
"Common.Views.Header.textCompactView": "Ocultar Barra de Ferramentas",
|
"Common.Views.Header.textCompactView": "Ocultar Barra de Ferramentas",
|
||||||
|
"Common.Views.Header.textDarkTheme": "Tema Dark",
|
||||||
"Common.Views.Header.textHideLines": "Ocultar Réguas",
|
"Common.Views.Header.textHideLines": "Ocultar Réguas",
|
||||||
"Common.Views.Header.textHideStatusBar": "Ocultar Barra de Status",
|
"Common.Views.Header.textHideStatusBar": "Ocultar Barra de Status",
|
||||||
"Common.Views.Header.textZoom": "Zoom",
|
"Common.Views.Header.textZoom": "Zoom",
|
||||||
|
@ -256,6 +272,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Fechar Arquivo",
|
"Common.Views.OpenDialog.closeButtonText": "Fechar Arquivo",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Senha incorreta.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Senha incorreta.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Inserir a Senha para Abrir o Arquivo",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Senha",
|
"Common.Views.OpenDialog.txtPassword": "Senha",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Visualizar",
|
"Common.Views.OpenDialog.txtPreview": "Visualizar",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.",
|
"Common.Views.OpenDialog.txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.",
|
||||||
|
@ -266,6 +283,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Senha",
|
"Common.Views.PasswordDialog.txtPassword": "Senha",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Repetir a senha",
|
"Common.Views.PasswordDialog.txtRepeat": "Repetir a senha",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Definir senha",
|
"Common.Views.PasswordDialog.txtTitle": "Definir senha",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Carregamento",
|
"Common.Views.PluginDlg.textLoading": "Carregamento",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugins",
|
"Common.Views.Plugins.groupCaption": "Plugins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
"Common.Views.Plugins.strPlugins": "Plugins",
|
||||||
|
@ -366,6 +384,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "Alterar",
|
"Common.Views.SignDialog.textChange": "Alterar",
|
||||||
"Common.Views.SignDialog.textInputName": "Nome do signatário de entrada",
|
"Common.Views.SignDialog.textInputName": "Nome do signatário de entrada",
|
||||||
"Common.Views.SignDialog.textItalic": "Itálico",
|
"Common.Views.SignDialog.textItalic": "Itálico",
|
||||||
|
"Common.Views.SignDialog.textNameError": "Nome de assinante não deve estar vazio.",
|
||||||
"Common.Views.SignDialog.textPurpose": "Objetivo para assinar o documento",
|
"Common.Views.SignDialog.textPurpose": "Objetivo para assinar o documento",
|
||||||
"Common.Views.SignDialog.textSelect": "Selecionar",
|
"Common.Views.SignDialog.textSelect": "Selecionar",
|
||||||
"Common.Views.SignDialog.textSelectImage": "Selecionar Imagem",
|
"Common.Views.SignDialog.textSelectImage": "Selecionar Imagem",
|
||||||
|
@ -411,6 +430,7 @@
|
||||||
"Common.Views.SymbolTableDialog.textSymbols": "Símbolos",
|
"Common.Views.SymbolTableDialog.textSymbols": "Símbolos",
|
||||||
"Common.Views.SymbolTableDialog.textTitle": "Símbolo",
|
"Common.Views.SymbolTableDialog.textTitle": "Símbolo",
|
||||||
"Common.Views.SymbolTableDialog.textTradeMark": "Símbolo de marca registrada",
|
"Common.Views.SymbolTableDialog.textTradeMark": "Símbolo de marca registrada",
|
||||||
|
"Common.Views.UserNameDialog.textDontShow": "Não perguntar novamente",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
"DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Documento sem nome",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Documento sem nome",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
|
||||||
|
@ -459,6 +479,7 @@
|
||||||
"DE.Controllers.Main.errorSessionIdle": "O documento ficou sem edição por muito tempo. Por favor atualize a página.",
|
"DE.Controllers.Main.errorSessionIdle": "O documento ficou sem edição por muito tempo. Por favor atualize a página.",
|
||||||
"DE.Controllers.Main.errorSessionToken": "A conexão com o servidor foi interrompida. Por favor atualize a página.",
|
"DE.Controllers.Main.errorSessionToken": "A conexão com o servidor foi interrompida. Por favor atualize a página.",
|
||||||
"DE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:<br>preço de abertura, preço máx., preço mín., preço de fechamento.",
|
"DE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:<br>preço de abertura, preço máx., preço mín., preço de fechamento.",
|
||||||
|
"DE.Controllers.Main.errorSubmit": "Falha no envio.",
|
||||||
"DE.Controllers.Main.errorToken": "O token de segurança do documento não foi formado corretamente. <br> Entre em contato com o administrador do Document Server.",
|
"DE.Controllers.Main.errorToken": "O token de segurança do documento não foi formado corretamente. <br> Entre em contato com o administrador do Document Server.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou. <br> Entre em contato com o administrador do Document Server.",
|
"DE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou. <br> Entre em contato com o administrador do Document Server.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
|
"DE.Controllers.Main.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
|
||||||
|
@ -509,12 +530,16 @@
|
||||||
"DE.Controllers.Main.textContactUs": "Contate as vendas",
|
"DE.Controllers.Main.textContactUs": "Contate as vendas",
|
||||||
"DE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão antiga do editor de equação que não é mais compatível. Para editá-lo, converta a equação para o formato Office Math ML. <br> Converter agora?",
|
"DE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão antiga do editor de equação que não é mais compatível. Para editá-lo, converta a equação para o formato Office Math ML. <br> Converter agora?",
|
||||||
"DE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador. <br> Por favor, contate o Departamento de Vendas para fazer cotação.",
|
"DE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador. <br> Por favor, contate o Departamento de Vendas para fazer cotação.",
|
||||||
|
"DE.Controllers.Main.textGuest": "Convidado (a)",
|
||||||
"DE.Controllers.Main.textHasMacros": "O arquivo contém macros automáticas.<br> Você quer executar macros?",
|
"DE.Controllers.Main.textHasMacros": "O arquivo contém macros automáticas.<br> Você quer executar macros?",
|
||||||
"DE.Controllers.Main.textLearnMore": "Saiba mais",
|
"DE.Controllers.Main.textLearnMore": "Saiba mais",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Carregando documento",
|
"DE.Controllers.Main.textLoadingDocument": "Carregando documento",
|
||||||
|
"DE.Controllers.Main.textLongName": "Insira um nome com menos de 128 caracteres.",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido",
|
"DE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido",
|
||||||
"DE.Controllers.Main.textPaidFeature": "Recurso pago",
|
"DE.Controllers.Main.textPaidFeature": "Recurso pago",
|
||||||
"DE.Controllers.Main.textRemember": "Lembre-se da minha escolha",
|
"DE.Controllers.Main.textRemember": "Lembre-se da minha escolha",
|
||||||
|
"DE.Controllers.Main.textRenameError": "O nome de usuário não pode estar vazio.",
|
||||||
|
"DE.Controllers.Main.textRenameLabel": "Insira um nome a ser usado para colaboração",
|
||||||
"DE.Controllers.Main.textShape": "Forma",
|
"DE.Controllers.Main.textShape": "Forma",
|
||||||
"DE.Controllers.Main.textStrict": "Modo estrito",
|
"DE.Controllers.Main.textStrict": "Modo estrito",
|
||||||
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.<br>Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",",
|
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.<br>Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",",
|
||||||
|
@ -1617,6 +1642,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real",
|
||||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica",
|
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Estrito",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "Estrito",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strTheme": "Tema",
|
||||||
"DE.Views.FileMenuPanels.Settings.strUnit": "Unidade de medida",
|
"DE.Views.FileMenuPanels.Settings.strUnit": "Unidade de medida",
|
||||||
"DE.Views.FileMenuPanels.Settings.strZoom": "Valor de zoom padrão",
|
"DE.Views.FileMenuPanels.Settings.strZoom": "Valor de zoom padrão",
|
||||||
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Cada 10 minutos",
|
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Cada 10 minutos",
|
||||||
|
@ -1688,17 +1714,20 @@
|
||||||
"DE.Views.FormsTab.capBtnDropDown": "Suspenso",
|
"DE.Views.FormsTab.capBtnDropDown": "Suspenso",
|
||||||
"DE.Views.FormsTab.capBtnImage": "Imagem",
|
"DE.Views.FormsTab.capBtnImage": "Imagem",
|
||||||
"DE.Views.FormsTab.capBtnRadioBox": "Botao de radio",
|
"DE.Views.FormsTab.capBtnRadioBox": "Botao de radio",
|
||||||
|
"DE.Views.FormsTab.capBtnSubmit": "Enviar",
|
||||||
"DE.Views.FormsTab.capBtnText": "Campo de texto",
|
"DE.Views.FormsTab.capBtnText": "Campo de texto",
|
||||||
"DE.Views.FormsTab.capBtnView": "Ver formulário",
|
"DE.Views.FormsTab.capBtnView": "Ver formulário",
|
||||||
"DE.Views.FormsTab.textClearFields": "Limpar todos os campos",
|
"DE.Views.FormsTab.textClearFields": "Limpar todos os campos",
|
||||||
"DE.Views.FormsTab.textHighlight": "Configurações de destaque",
|
"DE.Views.FormsTab.textHighlight": "Configurações de destaque",
|
||||||
"DE.Views.FormsTab.textNewColor": "Adicionar nova cor personalizada",
|
"DE.Views.FormsTab.textNewColor": "Adicionar nova cor personalizada",
|
||||||
"DE.Views.FormsTab.textNoHighlight": "Sem destaque",
|
"DE.Views.FormsTab.textNoHighlight": "Sem destaque",
|
||||||
|
"DE.Views.FormsTab.textSubmited": "Formulário enviado com sucesso",
|
||||||
"DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção",
|
"DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção",
|
||||||
"DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação",
|
"DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação",
|
||||||
"DE.Views.FormsTab.tipDropDown": "Inserir lista suspensa",
|
"DE.Views.FormsTab.tipDropDown": "Inserir lista suspensa",
|
||||||
"DE.Views.FormsTab.tipImageField": "Inserir imagem",
|
"DE.Views.FormsTab.tipImageField": "Inserir imagem",
|
||||||
"DE.Views.FormsTab.tipRadioBox": "Inserir botão de rádio",
|
"DE.Views.FormsTab.tipRadioBox": "Inserir botão de rádio",
|
||||||
|
"DE.Views.FormsTab.tipSubmit": "Enviar para",
|
||||||
"DE.Views.FormsTab.tipTextField": "Inserir campo de texto",
|
"DE.Views.FormsTab.tipTextField": "Inserir campo de texto",
|
||||||
"DE.Views.FormsTab.tipViewForm": "Modo de preenchimento do formulário",
|
"DE.Views.FormsTab.tipViewForm": "Modo de preenchimento do formulário",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomCenter": "Centro inferior",
|
"DE.Views.HeaderFooterSettings.textBottomCenter": "Centro inferior",
|
||||||
|
@ -2020,6 +2049,7 @@
|
||||||
"DE.Views.PageSizeDialog.textTitle": "Tamanho da página",
|
"DE.Views.PageSizeDialog.textTitle": "Tamanho da página",
|
||||||
"DE.Views.PageSizeDialog.textWidth": "Largura",
|
"DE.Views.PageSizeDialog.textWidth": "Largura",
|
||||||
"DE.Views.PageSizeDialog.txtCustom": "Personalizar",
|
"DE.Views.PageSizeDialog.txtCustom": "Personalizar",
|
||||||
|
"DE.Views.ParagraphSettings.strIndent": "Recuos",
|
||||||
"DE.Views.ParagraphSettings.strLineHeight": "Espaçamento de linha",
|
"DE.Views.ParagraphSettings.strLineHeight": "Espaçamento de linha",
|
||||||
"DE.Views.ParagraphSettings.strParagraphSpacing": "Espaçamento",
|
"DE.Views.ParagraphSettings.strParagraphSpacing": "Espaçamento",
|
||||||
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Não adicionar intervalo entre parágrafos do mesmo estilo",
|
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Não adicionar intervalo entre parágrafos do mesmo estilo",
|
||||||
|
@ -2031,6 +2061,7 @@
|
||||||
"DE.Views.ParagraphSettings.textAuto": "Múltiplo",
|
"DE.Views.ParagraphSettings.textAuto": "Múltiplo",
|
||||||
"DE.Views.ParagraphSettings.textBackColor": "Cor do plano de fundo",
|
"DE.Views.ParagraphSettings.textBackColor": "Cor do plano de fundo",
|
||||||
"DE.Views.ParagraphSettings.textExact": "Exatamente",
|
"DE.Views.ParagraphSettings.textExact": "Exatamente",
|
||||||
|
"DE.Views.ParagraphSettings.textFirstLine": "Primeira linha",
|
||||||
"DE.Views.ParagraphSettings.txtAutoText": "Automático",
|
"DE.Views.ParagraphSettings.txtAutoText": "Automático",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "As abas especificadas aparecerão neste campo",
|
"DE.Views.ParagraphSettingsAdvanced.noTabs": "As abas especificadas aparecerão neste campo",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Todas maiúsculas",
|
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Todas maiúsculas",
|
||||||
|
@ -2420,6 +2451,7 @@
|
||||||
"DE.Views.Toolbar.capImgForward": "Mover para frente",
|
"DE.Views.Toolbar.capImgForward": "Mover para frente",
|
||||||
"DE.Views.Toolbar.capImgGroup": "Grupo",
|
"DE.Views.Toolbar.capImgGroup": "Grupo",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "Quebra Automática",
|
"DE.Views.Toolbar.capImgWrapping": "Quebra Automática",
|
||||||
|
"DE.Views.Toolbar.mniCapitalizeWords": "Utilize cada palavra",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "Inserir tabela personalizada",
|
"DE.Views.Toolbar.mniCustomTable": "Inserir tabela personalizada",
|
||||||
"DE.Views.Toolbar.mniDrawTable": "Desenhar Tabela",
|
"DE.Views.Toolbar.mniDrawTable": "Desenhar Tabela",
|
||||||
"DE.Views.Toolbar.mniEditControls": "Propriedades de Controle",
|
"DE.Views.Toolbar.mniEditControls": "Propriedades de Controle",
|
||||||
|
@ -2433,6 +2465,8 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Imagem do arquivo",
|
"DE.Views.Toolbar.mniImageFromFile": "Imagem do arquivo",
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Imagem de Armazenamento",
|
"DE.Views.Toolbar.mniImageFromStorage": "Imagem de Armazenamento",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Imagem da URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Imagem da URL",
|
||||||
|
"DE.Views.Toolbar.mniToggleCase": "aLTERNAR",
|
||||||
|
"DE.Views.Toolbar.mniUpperCase": "MAIÚSCULO",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Sem preenchimento",
|
"DE.Views.Toolbar.strMenuNoFill": "Sem preenchimento",
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automático",
|
"DE.Views.Toolbar.textAutoColor": "Automático",
|
||||||
"DE.Views.Toolbar.textBold": "Negrito",
|
"DE.Views.Toolbar.textBold": "Negrito",
|
||||||
|
|
|
@ -120,7 +120,7 @@
|
||||||
"Common.UI.Calendar.textShortTuesday": "Ma",
|
"Common.UI.Calendar.textShortTuesday": "Ma",
|
||||||
"Common.UI.Calendar.textShortWednesday": "Mi",
|
"Common.UI.Calendar.textShortWednesday": "Mi",
|
||||||
"Common.UI.Calendar.textYears": "An",
|
"Common.UI.Calendar.textYears": "An",
|
||||||
"Common.UI.ColorButton.textNewColor": "Adăugare culoarea particularizată nouă",
|
"Common.UI.ColorButton.textNewColor": "Сuloare particularizată",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Fără borduri",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Fără borduri",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Fără borduri",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Fără borduri",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Fără stiluri",
|
"Common.UI.ComboDataView.emptyComboText": "Fără stiluri",
|
||||||
|
@ -256,6 +256,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Închide fișierul",
|
"Common.Views.OpenDialog.closeButtonText": "Închide fișierul",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Codificare",
|
"Common.Views.OpenDialog.txtEncoding": "Codificare",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Parolă incorectă",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Parolă incorectă",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Introduceți parola pentru deschidere fișier",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Parola",
|
"Common.Views.OpenDialog.txtPassword": "Parola",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Previzualizare",
|
"Common.Views.OpenDialog.txtPreview": "Previzualizare",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Parola curentă la fișierul va fi resetată, de îndată ce este introdusă și fișierul este deschis.",
|
"Common.Views.OpenDialog.txtProtected": "Parola curentă la fișierul va fi resetată, de îndată ce este introdusă și fișierul este deschis.",
|
||||||
|
@ -266,6 +267,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Parola",
|
"Common.Views.PasswordDialog.txtPassword": "Parola",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Reintroduceți parola",
|
"Common.Views.PasswordDialog.txtRepeat": "Reintroduceți parola",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Setare parolă",
|
"Common.Views.PasswordDialog.txtTitle": "Setare parolă",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Atenție: Dacă pierdeți sau uitați parola, ea nu poate fi recuperată. Să îl păstrați într-un loc sigur.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Încărcare",
|
"Common.Views.PluginDlg.textLoading": "Încărcare",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugin-uri",
|
"Common.Views.Plugins.groupCaption": "Plugin-uri",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugin-uri",
|
"Common.Views.Plugins.strPlugins": "Plugin-uri",
|
||||||
|
@ -1692,7 +1694,7 @@
|
||||||
"DE.Views.FormsTab.capBtnView": "Vizualizare formular",
|
"DE.Views.FormsTab.capBtnView": "Vizualizare formular",
|
||||||
"DE.Views.FormsTab.textClearFields": "Goleşte toate câmpurile",
|
"DE.Views.FormsTab.textClearFields": "Goleşte toate câmpurile",
|
||||||
"DE.Views.FormsTab.textHighlight": "Evidențiere setări",
|
"DE.Views.FormsTab.textHighlight": "Evidențiere setări",
|
||||||
"DE.Views.FormsTab.textNewColor": "Adăugare culoarea particularizată nouă",
|
"DE.Views.FormsTab.textNewColor": "Сuloare particularizată",
|
||||||
"DE.Views.FormsTab.textNoHighlight": "Fără evidențiere",
|
"DE.Views.FormsTab.textNoHighlight": "Fără evidențiere",
|
||||||
"DE.Views.FormsTab.tipCheckBox": "Se inserează un control casetă de selectare",
|
"DE.Views.FormsTab.tipCheckBox": "Se inserează un control casetă de selectare",
|
||||||
"DE.Views.FormsTab.tipComboBox": "Se inserează un control casetă combo",
|
"DE.Views.FormsTab.tipComboBox": "Se inserează un control casetă combo",
|
||||||
|
@ -1863,6 +1865,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textSection": "Secțiunea curentă",
|
"DE.Views.LineNumbersDialog.textSection": "Secțiunea curentă",
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Pornire de la",
|
"DE.Views.LineNumbersDialog.textStartAt": "Pornire de la",
|
||||||
"DE.Views.LineNumbersDialog.textTitle": "Numere de linie",
|
"DE.Views.LineNumbersDialog.textTitle": "Numere de linie",
|
||||||
|
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Marcaj",
|
"DE.Views.Links.capBtnBookmarks": "Marcaj",
|
||||||
"DE.Views.Links.capBtnCaption": "Legenda",
|
"DE.Views.Links.capBtnCaption": "Legenda",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Actualizare",
|
"DE.Views.Links.capBtnContentsUpdate": "Actualizare",
|
||||||
|
@ -2216,6 +2219,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Alinierea numărul de pagină la dreapta",
|
"DE.Views.TableOfContentsSettings.strAlign": "Alinierea numărul de pagină la dreapta",
|
||||||
"DE.Views.TableOfContentsSettings.strFullCaption": "Cu etichetă și număr",
|
"DE.Views.TableOfContentsSettings.strFullCaption": "Cu etichetă și număr",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Formatare cuprins utilizând linkuri",
|
"DE.Views.TableOfContentsSettings.strLinks": "Formatare cuprins utilizând linkuri",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinksOF": "Formatare tabel de figuri ca",
|
||||||
"DE.Views.TableOfContentsSettings.strShowPages": "Afișare număr de pagină",
|
"DE.Views.TableOfContentsSettings.strShowPages": "Afișare număr de pagină",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTable": "Construire cuprins din",
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Construire cuprins din",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Construire tabel de figuri din ",
|
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Construire tabel de figuri din ",
|
||||||
|
@ -2469,7 +2473,7 @@
|
||||||
"DE.Views.Toolbar.textMarginsNormal": "Normal",
|
"DE.Views.Toolbar.textMarginsNormal": "Normal",
|
||||||
"DE.Views.Toolbar.textMarginsUsNormal": "Normal",
|
"DE.Views.Toolbar.textMarginsUsNormal": "Normal",
|
||||||
"DE.Views.Toolbar.textMarginsWide": "Lat",
|
"DE.Views.Toolbar.textMarginsWide": "Lat",
|
||||||
"DE.Views.Toolbar.textNewColor": "Adăugare culoarea particularizată nouă",
|
"DE.Views.Toolbar.textNewColor": "Сuloare particularizată",
|
||||||
"DE.Views.Toolbar.textNextPage": "Pagina următoare",
|
"DE.Views.Toolbar.textNextPage": "Pagina următoare",
|
||||||
"DE.Views.Toolbar.textNoHighlight": "Fără evidențiere",
|
"DE.Views.Toolbar.textNoHighlight": "Fără evidențiere",
|
||||||
"DE.Views.Toolbar.textNone": "Niciunul",
|
"DE.Views.Toolbar.textNone": "Niciunul",
|
||||||
|
@ -2605,7 +2609,7 @@
|
||||||
"DE.Views.WatermarkSettingsDialog.textItalic": "Cursiv",
|
"DE.Views.WatermarkSettingsDialog.textItalic": "Cursiv",
|
||||||
"DE.Views.WatermarkSettingsDialog.textLanguage": "Limbă",
|
"DE.Views.WatermarkSettingsDialog.textLanguage": "Limbă",
|
||||||
"DE.Views.WatermarkSettingsDialog.textLayout": "Aspect",
|
"DE.Views.WatermarkSettingsDialog.textLayout": "Aspect",
|
||||||
"DE.Views.WatermarkSettingsDialog.textNewColor": "Adăugare culoarea particularizată nouă",
|
"DE.Views.WatermarkSettingsDialog.textNewColor": "Сuloare particularizată",
|
||||||
"DE.Views.WatermarkSettingsDialog.textNone": "Niciunul",
|
"DE.Views.WatermarkSettingsDialog.textNone": "Niciunul",
|
||||||
"DE.Views.WatermarkSettingsDialog.textScale": "Scară",
|
"DE.Views.WatermarkSettingsDialog.textScale": "Scară",
|
||||||
"DE.Views.WatermarkSettingsDialog.textSelect": "Selectați imaginea",
|
"DE.Views.WatermarkSettingsDialog.textSelect": "Selectați imaginea",
|
||||||
|
|
|
@ -76,12 +76,45 @@
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Запрет висячих строк",
|
"Common.Controllers.ReviewChanges.textWidow": "Запрет висячих строк",
|
||||||
"Common.Controllers.ReviewChanges.textWord": "По словам",
|
"Common.Controllers.ReviewChanges.textWord": "По словам",
|
||||||
"Common.define.chartData.textArea": "С областями",
|
"Common.define.chartData.textArea": "С областями",
|
||||||
|
"Common.define.chartData.textAreaStacked": "Диаграмма с областями с накоплением",
|
||||||
|
"Common.define.chartData.textAreaStackedPer": "Нормированная с областями и накоплением",
|
||||||
"Common.define.chartData.textBar": "Линейчатая",
|
"Common.define.chartData.textBar": "Линейчатая",
|
||||||
|
"Common.define.chartData.textBarNormal": "Гистограмма с группировкой",
|
||||||
|
"Common.define.chartData.textBarNormal3d": "Трехмерная гистограмма с группировкой",
|
||||||
|
"Common.define.chartData.textBarNormal3dPerspective": "Трехмерная гистограмма",
|
||||||
|
"Common.define.chartData.textBarStacked": "Гистограмма с накоплением",
|
||||||
|
"Common.define.chartData.textBarStacked3d": "Трехмерная гистограмма с накоплением",
|
||||||
|
"Common.define.chartData.textBarStackedPer": "Нормированная гистограмма с накоплением",
|
||||||
|
"Common.define.chartData.textBarStackedPer3d": "Трехмерная нормированная гистограмма с накоплением",
|
||||||
"Common.define.chartData.textCharts": "Диаграммы",
|
"Common.define.chartData.textCharts": "Диаграммы",
|
||||||
"Common.define.chartData.textColumn": "Гистограмма",
|
"Common.define.chartData.textColumn": "Гистограмма",
|
||||||
|
"Common.define.chartData.textCombo": "Комбинированные",
|
||||||
|
"Common.define.chartData.textComboAreaBar": "С областями с накоплением и гистограмма с группировкой",
|
||||||
|
"Common.define.chartData.textComboBarLine": "Гистограмма с группировкой и график",
|
||||||
|
"Common.define.chartData.textComboBarLineSecondary": "Гистограмма с группировкой и график на вспомогательной оси",
|
||||||
|
"Common.define.chartData.textComboCustom": "Пользовательская комбинация",
|
||||||
|
"Common.define.chartData.textDoughnut": "Кольцевая диаграмма",
|
||||||
|
"Common.define.chartData.textHBarNormal": "Линейчатая с группировкой",
|
||||||
|
"Common.define.chartData.textHBarNormal3d": "Трехмерная линейчатая с группировкой",
|
||||||
|
"Common.define.chartData.textHBarStacked": "Линейчатая с накоплением",
|
||||||
|
"Common.define.chartData.textHBarStacked3d": "Трехмерная линейчатая с накоплением",
|
||||||
|
"Common.define.chartData.textHBarStackedPer": "Нормированная линейчатая с накоплением",
|
||||||
|
"Common.define.chartData.textHBarStackedPer3d": "Трехмерная нормированная линейчатая с накоплением",
|
||||||
"Common.define.chartData.textLine": "График",
|
"Common.define.chartData.textLine": "График",
|
||||||
|
"Common.define.chartData.textLine3d": "Трехмерный график",
|
||||||
|
"Common.define.chartData.textLineMarker": "График с маркерами",
|
||||||
|
"Common.define.chartData.textLineStacked": "График с накоплением",
|
||||||
|
"Common.define.chartData.textLineStackedMarker": "График с накоплением с маркерами",
|
||||||
|
"Common.define.chartData.textLineStackedPer": "Нормированный график с накоплением",
|
||||||
|
"Common.define.chartData.textLineStackedPerMarker": "Нормированный график с маркерами и накоплением",
|
||||||
"Common.define.chartData.textPie": "Круговая",
|
"Common.define.chartData.textPie": "Круговая",
|
||||||
|
"Common.define.chartData.textPie3d": "Трехмерная круговая диаграмма",
|
||||||
"Common.define.chartData.textPoint": "Точечная",
|
"Common.define.chartData.textPoint": "Точечная",
|
||||||
|
"Common.define.chartData.textScatter": "Точечная диаграмма",
|
||||||
|
"Common.define.chartData.textScatterLine": "Точечная с прямыми отрезками",
|
||||||
|
"Common.define.chartData.textScatterLineMarker": "Точечная с прямыми отрезками и маркерами",
|
||||||
|
"Common.define.chartData.textScatterSmooth": "Точечная с гладкими кривыми",
|
||||||
|
"Common.define.chartData.textScatterSmoothMarker": "Точечная с гладкими кривыми и маркерами",
|
||||||
"Common.define.chartData.textStock": "Биржевая",
|
"Common.define.chartData.textStock": "Биржевая",
|
||||||
"Common.define.chartData.textSurface": "Поверхность",
|
"Common.define.chartData.textSurface": "Поверхность",
|
||||||
"Common.Translation.warnFileLocked": "Вы не можете редактировать этот файл, потому что он уже редактируется в другом приложении.",
|
"Common.Translation.warnFileLocked": "Вы не можете редактировать этот файл, потому что он уже редактируется в другом приложении.",
|
||||||
|
@ -120,6 +153,7 @@
|
||||||
"Common.UI.Calendar.textShortTuesday": "Вт",
|
"Common.UI.Calendar.textShortTuesday": "Вт",
|
||||||
"Common.UI.Calendar.textShortWednesday": "Ср",
|
"Common.UI.Calendar.textShortWednesday": "Ср",
|
||||||
"Common.UI.Calendar.textYears": "Годы",
|
"Common.UI.Calendar.textYears": "Годы",
|
||||||
|
"Common.UI.ColorButton.textAutoColor": "Автоматический",
|
||||||
"Common.UI.ColorButton.textNewColor": "Пользовательский цвет",
|
"Common.UI.ColorButton.textNewColor": "Пользовательский цвет",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Без границ",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Без границ",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ",
|
||||||
|
@ -218,11 +252,14 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Сохранить и выйти",
|
"Common.Views.ExternalMergeEditor.textSave": "Сохранить и выйти",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния",
|
"Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Пользователи, редактирующие документ:",
|
"Common.Views.Header.labelCoUsersDescr": "Пользователи, редактирующие документ:",
|
||||||
|
"Common.Views.Header.textAddFavorite": "Добавить в избранное",
|
||||||
"Common.Views.Header.textAdvSettings": "Дополнительные параметры",
|
"Common.Views.Header.textAdvSettings": "Дополнительные параметры",
|
||||||
"Common.Views.Header.textBack": "Открыть расположение файла",
|
"Common.Views.Header.textBack": "Открыть расположение файла",
|
||||||
"Common.Views.Header.textCompactView": "Скрыть панель инструментов",
|
"Common.Views.Header.textCompactView": "Скрыть панель инструментов",
|
||||||
|
"Common.Views.Header.textDarkTheme": "Темная тема",
|
||||||
"Common.Views.Header.textHideLines": "Скрыть линейки",
|
"Common.Views.Header.textHideLines": "Скрыть линейки",
|
||||||
"Common.Views.Header.textHideStatusBar": "Скрыть строку состояния",
|
"Common.Views.Header.textHideStatusBar": "Скрыть строку состояния",
|
||||||
|
"Common.Views.Header.textRemoveFavorite": "Удалить из избранного",
|
||||||
"Common.Views.Header.textZoom": "Масштаб",
|
"Common.Views.Header.textZoom": "Масштаб",
|
||||||
"Common.Views.Header.tipAccessRights": "Управление правами доступа к документу",
|
"Common.Views.Header.tipAccessRights": "Управление правами доступа к документу",
|
||||||
"Common.Views.Header.tipDownload": "Скачать файл",
|
"Common.Views.Header.tipDownload": "Скачать файл",
|
||||||
|
@ -256,6 +293,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Закрыть файл",
|
"Common.Views.OpenDialog.closeButtonText": "Закрыть файл",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Кодировка",
|
"Common.Views.OpenDialog.txtEncoding": "Кодировка",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Указан неверный пароль.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Указан неверный пароль.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Введите пароль для открытия файла",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Просмотр",
|
"Common.Views.OpenDialog.txtPreview": "Просмотр",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен.",
|
"Common.Views.OpenDialog.txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен.",
|
||||||
|
@ -266,6 +304,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Пароль",
|
"Common.Views.PasswordDialog.txtPassword": "Пароль",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Повторить пароль",
|
"Common.Views.PasswordDialog.txtRepeat": "Повторить пароль",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Установка пароля",
|
"Common.Views.PasswordDialog.txtTitle": "Установка пароля",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Загрузка",
|
"Common.Views.PluginDlg.textLoading": "Загрузка",
|
||||||
"Common.Views.Plugins.groupCaption": "Плагины",
|
"Common.Views.Plugins.groupCaption": "Плагины",
|
||||||
"Common.Views.Plugins.strPlugins": "Плагины",
|
"Common.Views.Plugins.strPlugins": "Плагины",
|
||||||
|
@ -366,6 +405,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "Изменить",
|
"Common.Views.SignDialog.textChange": "Изменить",
|
||||||
"Common.Views.SignDialog.textInputName": "Введите имя подписывающего",
|
"Common.Views.SignDialog.textInputName": "Введите имя подписывающего",
|
||||||
"Common.Views.SignDialog.textItalic": "Курсив",
|
"Common.Views.SignDialog.textItalic": "Курсив",
|
||||||
|
"Common.Views.SignDialog.textNameError": "Имя подписывающего не должно быть пустым.",
|
||||||
"Common.Views.SignDialog.textPurpose": "Цель подписания документа",
|
"Common.Views.SignDialog.textPurpose": "Цель подписания документа",
|
||||||
"Common.Views.SignDialog.textSelect": "Выбрать",
|
"Common.Views.SignDialog.textSelect": "Выбрать",
|
||||||
"Common.Views.SignDialog.textSelectImage": "Выбрать изображение",
|
"Common.Views.SignDialog.textSelectImage": "Выбрать изображение",
|
||||||
|
@ -411,6 +451,9 @@
|
||||||
"Common.Views.SymbolTableDialog.textSymbols": "Символы",
|
"Common.Views.SymbolTableDialog.textSymbols": "Символы",
|
||||||
"Common.Views.SymbolTableDialog.textTitle": "Символ",
|
"Common.Views.SymbolTableDialog.textTitle": "Символ",
|
||||||
"Common.Views.SymbolTableDialog.textTradeMark": "Символ товарного знака",
|
"Common.Views.SymbolTableDialog.textTradeMark": "Символ товарного знака",
|
||||||
|
"Common.Views.UserNameDialog.textDontShow": "Больше не спрашивать",
|
||||||
|
"Common.Views.UserNameDialog.textLabel": "Подпись:",
|
||||||
|
"Common.Views.UserNameDialog.textLabelError": "Подпись не должна быть пустой.",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны.<br> Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.",
|
"DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны.<br> Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
|
||||||
|
@ -436,6 +479,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
|
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
|
||||||
|
"DE.Controllers.Main.errorComboSeries": "Для создания комбинированной диаграммы выберите не менее двух рядов данных.",
|
||||||
"DE.Controllers.Main.errorCompare": "Функция сравнения документов недоступна в режиме совместного редактирования.",
|
"DE.Controllers.Main.errorCompare": "Функция сравнения документов недоступна в режиме совместного редактирования.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.",
|
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
|
||||||
|
@ -458,7 +502,9 @@
|
||||||
"DE.Controllers.Main.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.",
|
"DE.Controllers.Main.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.",
|
||||||
"DE.Controllers.Main.errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.",
|
"DE.Controllers.Main.errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.",
|
||||||
"DE.Controllers.Main.errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.",
|
"DE.Controllers.Main.errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.",
|
||||||
|
"DE.Controllers.Main.errorSetPassword": "Не удалось задать пароль.",
|
||||||
"DE.Controllers.Main.errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:<br> цена открытия, максимальная цена, минимальная цена, цена закрытия.",
|
"DE.Controllers.Main.errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:<br> цена открытия, максимальная цена, минимальная цена, цена закрытия.",
|
||||||
|
"DE.Controllers.Main.errorSubmit": "Не удалось отправить.",
|
||||||
"DE.Controllers.Main.errorToken": "Токен безопасности документа имеет неправильный формат.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"DE.Controllers.Main.errorToken": "Токен безопасности документа имеет неправильный формат.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"DE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
"DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
||||||
|
@ -509,12 +555,16 @@
|
||||||
"DE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
|
"DE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
|
||||||
"DE.Controllers.Main.textConvertEquation": "Это уравнение создано в старой версии редактора уравнений, которая больше не поддерживается. Чтобы изменить это уравнение, его необходимо преобразовать в формат Office Math ML.<br>Преобразовать сейчас?",
|
"DE.Controllers.Main.textConvertEquation": "Это уравнение создано в старой версии редактора уравнений, которая больше не поддерживается. Чтобы изменить это уравнение, его необходимо преобразовать в формат Office Math ML.<br>Преобразовать сейчас?",
|
||||||
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
||||||
|
"DE.Controllers.Main.textGuest": "Гость",
|
||||||
"DE.Controllers.Main.textHasMacros": "Файл содержит автозапускаемые макросы.<br>Хотите запустить макросы?",
|
"DE.Controllers.Main.textHasMacros": "Файл содержит автозапускаемые макросы.<br>Хотите запустить макросы?",
|
||||||
"DE.Controllers.Main.textLearnMore": "Подробнее",
|
"DE.Controllers.Main.textLearnMore": "Подробнее",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Загрузка документа",
|
"DE.Controllers.Main.textLoadingDocument": "Загрузка документа",
|
||||||
|
"DE.Controllers.Main.textLongName": "Введите имя длиной менее 128 символов.",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение",
|
"DE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение",
|
||||||
"DE.Controllers.Main.textPaidFeature": "Платная функция",
|
"DE.Controllers.Main.textPaidFeature": "Платная функция",
|
||||||
"DE.Controllers.Main.textRemember": "Запомнить мой выбор для всех файлов",
|
"DE.Controllers.Main.textRemember": "Запомнить мой выбор для всех файлов",
|
||||||
|
"DE.Controllers.Main.textRenameError": "Имя пользователя не должно быть пустым.",
|
||||||
|
"DE.Controllers.Main.textRenameLabel": "Введите имя, которое будет использоваться для совместной работы",
|
||||||
"DE.Controllers.Main.textShape": "Фигура",
|
"DE.Controllers.Main.textShape": "Фигура",
|
||||||
"DE.Controllers.Main.textStrict": "Строгий режим",
|
"DE.Controllers.Main.textStrict": "Строгий режим",
|
||||||
"DE.Controllers.Main.textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.<br>Нажмите на кнопку 'Строгий режим' для переключения в Строгий режим совместного редактирования, чтобы редактировать файл без вмешательства других пользователей и отправлять изменения только после того, как вы их сохраните. Переключаться между режимами совместного редактирования можно с помощью Дополнительных параметров редактора.",
|
"DE.Controllers.Main.textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.<br>Нажмите на кнопку 'Строгий режим' для переключения в Строгий режим совместного редактирования, чтобы редактировать файл без вмешательства других пользователей и отправлять изменения только после того, как вы их сохраните. Переключаться между режимами совместного редактирования можно с помощью Дополнительных параметров редактора.",
|
||||||
|
@ -1617,6 +1667,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Отображать изменения при совместной работе",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Отображать изменения при совместной работе",
|
||||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Включить проверку орфографии",
|
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Включить проверку орфографии",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Строгий",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "Строгий",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strTheme": "Тема",
|
||||||
"DE.Views.FileMenuPanels.Settings.strUnit": "Единица измерения",
|
"DE.Views.FileMenuPanels.Settings.strUnit": "Единица измерения",
|
||||||
"DE.Views.FileMenuPanels.Settings.strZoom": "Стандартное значение масштаба",
|
"DE.Views.FileMenuPanels.Settings.strZoom": "Стандартное значение масштаба",
|
||||||
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Каждые 10 минут",
|
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Каждые 10 минут",
|
||||||
|
@ -1651,6 +1702,8 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка орфографии",
|
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка орфографии",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Отключить все",
|
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Отключить все",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Отключить все макросы без уведомления",
|
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Отключить все макросы без уведомления",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtThemeDark": "Темная",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtThemeLight": "Светлая",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Показывать уведомление",
|
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Показывать уведомление",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Отключить все макросы с уведомлением",
|
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Отключить все макросы с уведомлением",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "как Windows",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "как Windows",
|
||||||
|
@ -1687,18 +1740,26 @@
|
||||||
"DE.Views.FormsTab.capBtnComboBox": "Поле со списком",
|
"DE.Views.FormsTab.capBtnComboBox": "Поле со списком",
|
||||||
"DE.Views.FormsTab.capBtnDropDown": "Выпадающий список",
|
"DE.Views.FormsTab.capBtnDropDown": "Выпадающий список",
|
||||||
"DE.Views.FormsTab.capBtnImage": "Изображение",
|
"DE.Views.FormsTab.capBtnImage": "Изображение",
|
||||||
|
"DE.Views.FormsTab.capBtnNext": "Следующее поле",
|
||||||
|
"DE.Views.FormsTab.capBtnPrev": "Предыдущее поле",
|
||||||
"DE.Views.FormsTab.capBtnRadioBox": "Переключатель",
|
"DE.Views.FormsTab.capBtnRadioBox": "Переключатель",
|
||||||
|
"DE.Views.FormsTab.capBtnSubmit": "Отправить",
|
||||||
"DE.Views.FormsTab.capBtnText": "Текстовое поле",
|
"DE.Views.FormsTab.capBtnText": "Текстовое поле",
|
||||||
"DE.Views.FormsTab.capBtnView": "Просмотреть форму",
|
"DE.Views.FormsTab.capBtnView": "Просмотреть форму",
|
||||||
|
"DE.Views.FormsTab.textClear": "Очистить поля",
|
||||||
"DE.Views.FormsTab.textClearFields": "Очистить все поля",
|
"DE.Views.FormsTab.textClearFields": "Очистить все поля",
|
||||||
"DE.Views.FormsTab.textHighlight": "Цвет подсветки",
|
"DE.Views.FormsTab.textHighlight": "Цвет подсветки",
|
||||||
"DE.Views.FormsTab.textNewColor": "Пользовательский цвет",
|
"DE.Views.FormsTab.textNewColor": "Пользовательский цвет",
|
||||||
"DE.Views.FormsTab.textNoHighlight": "Без подсветки",
|
"DE.Views.FormsTab.textNoHighlight": "Без подсветки",
|
||||||
|
"DE.Views.FormsTab.textSubmited": "Форма успешно отправлена",
|
||||||
"DE.Views.FormsTab.tipCheckBox": "Вставить флажок",
|
"DE.Views.FormsTab.tipCheckBox": "Вставить флажок",
|
||||||
"DE.Views.FormsTab.tipComboBox": "Вставить поле со списком",
|
"DE.Views.FormsTab.tipComboBox": "Вставить поле со списком",
|
||||||
"DE.Views.FormsTab.tipDropDown": "Вставить выпадающий список",
|
"DE.Views.FormsTab.tipDropDown": "Вставить выпадающий список",
|
||||||
"DE.Views.FormsTab.tipImageField": "Вставить изображение",
|
"DE.Views.FormsTab.tipImageField": "Вставить изображение",
|
||||||
|
"DE.Views.FormsTab.tipNextForm": "Перейти к следующему полю",
|
||||||
|
"DE.Views.FormsTab.tipPrevForm": "Перейти к предыдущему полю",
|
||||||
"DE.Views.FormsTab.tipRadioBox": "Вставить переключатель",
|
"DE.Views.FormsTab.tipRadioBox": "Вставить переключатель",
|
||||||
|
"DE.Views.FormsTab.tipSubmit": "Отправить форму",
|
||||||
"DE.Views.FormsTab.tipTextField": "Вставить текстовое поле",
|
"DE.Views.FormsTab.tipTextField": "Вставить текстовое поле",
|
||||||
"DE.Views.FormsTab.tipViewForm": "Режим заполнения форм",
|
"DE.Views.FormsTab.tipViewForm": "Режим заполнения форм",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomCenter": "Снизу по центру",
|
"DE.Views.HeaderFooterSettings.textBottomCenter": "Снизу по центру",
|
||||||
|
@ -1863,6 +1924,7 @@
|
||||||
"DE.Views.LineNumbersDialog.textSection": "К текущему разделу",
|
"DE.Views.LineNumbersDialog.textSection": "К текущему разделу",
|
||||||
"DE.Views.LineNumbersDialog.textStartAt": "Начать с",
|
"DE.Views.LineNumbersDialog.textStartAt": "Начать с",
|
||||||
"DE.Views.LineNumbersDialog.textTitle": "Нумерация строк",
|
"DE.Views.LineNumbersDialog.textTitle": "Нумерация строк",
|
||||||
|
"DE.Views.LineNumbersDialog.txtAutoText": "Авто",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Закладка",
|
"DE.Views.Links.capBtnBookmarks": "Закладка",
|
||||||
"DE.Views.Links.capBtnCaption": "Название",
|
"DE.Views.Links.capBtnCaption": "Название",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Обновить",
|
"DE.Views.Links.capBtnContentsUpdate": "Обновить",
|
||||||
|
@ -2020,6 +2082,10 @@
|
||||||
"DE.Views.PageSizeDialog.textTitle": "Размер страницы",
|
"DE.Views.PageSizeDialog.textTitle": "Размер страницы",
|
||||||
"DE.Views.PageSizeDialog.textWidth": "Ширина",
|
"DE.Views.PageSizeDialog.textWidth": "Ширина",
|
||||||
"DE.Views.PageSizeDialog.txtCustom": "Особый",
|
"DE.Views.PageSizeDialog.txtCustom": "Особый",
|
||||||
|
"DE.Views.ParagraphSettings.strIndent": "Отступы",
|
||||||
|
"DE.Views.ParagraphSettings.strIndentsLeftText": "Слева",
|
||||||
|
"DE.Views.ParagraphSettings.strIndentsRightText": "Справа",
|
||||||
|
"DE.Views.ParagraphSettings.strIndentsSpecial": "Первая строка",
|
||||||
"DE.Views.ParagraphSettings.strLineHeight": "Междустрочный интервал",
|
"DE.Views.ParagraphSettings.strLineHeight": "Междустрочный интервал",
|
||||||
"DE.Views.ParagraphSettings.strParagraphSpacing": "Интервал между абзацами",
|
"DE.Views.ParagraphSettings.strParagraphSpacing": "Интервал между абзацами",
|
||||||
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Не добавлять интервал между абзацами одного стиля",
|
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Не добавлять интервал между абзацами одного стиля",
|
||||||
|
@ -2031,6 +2097,9 @@
|
||||||
"DE.Views.ParagraphSettings.textAuto": "Множитель",
|
"DE.Views.ParagraphSettings.textAuto": "Множитель",
|
||||||
"DE.Views.ParagraphSettings.textBackColor": "Цвет фона",
|
"DE.Views.ParagraphSettings.textBackColor": "Цвет фона",
|
||||||
"DE.Views.ParagraphSettings.textExact": "Точно",
|
"DE.Views.ParagraphSettings.textExact": "Точно",
|
||||||
|
"DE.Views.ParagraphSettings.textFirstLine": "Отступ",
|
||||||
|
"DE.Views.ParagraphSettings.textHanging": "Выступ",
|
||||||
|
"DE.Views.ParagraphSettings.textNoneSpecial": "(нет)",
|
||||||
"DE.Views.ParagraphSettings.txtAutoText": "Авто",
|
"DE.Views.ParagraphSettings.txtAutoText": "Авто",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "В этом поле появятся позиции табуляции, которые вы зададите",
|
"DE.Views.ParagraphSettingsAdvanced.noTabs": "В этом поле появятся позиции табуляции, которые вы зададите",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Все прописные",
|
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Все прописные",
|
||||||
|
@ -2216,6 +2285,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Номера страниц по правому краю",
|
"DE.Views.TableOfContentsSettings.strAlign": "Номера страниц по правому краю",
|
||||||
"DE.Views.TableOfContentsSettings.strFullCaption": "Полное название",
|
"DE.Views.TableOfContentsSettings.strFullCaption": "Полное название",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Форматировать оглавление как ссылки",
|
"DE.Views.TableOfContentsSettings.strLinks": "Форматировать оглавление как ссылки",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinksOF": "Форматировать список иллюстраций как ссылки",
|
||||||
"DE.Views.TableOfContentsSettings.strShowPages": "Показать номера страниц",
|
"DE.Views.TableOfContentsSettings.strShowPages": "Показать номера страниц",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTable": "Собрать оглавление, используя:",
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Собрать оглавление, используя:",
|
||||||
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Собрать список иллюстраций, используя:",
|
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Собрать список иллюстраций, используя:",
|
||||||
|
@ -2420,6 +2490,7 @@
|
||||||
"DE.Views.Toolbar.capImgForward": "Перенести вперед",
|
"DE.Views.Toolbar.capImgForward": "Перенести вперед",
|
||||||
"DE.Views.Toolbar.capImgGroup": "Группировка",
|
"DE.Views.Toolbar.capImgGroup": "Группировка",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "Обтекание",
|
"DE.Views.Toolbar.capImgWrapping": "Обтекание",
|
||||||
|
"DE.Views.Toolbar.mniCapitalizeWords": "Каждое Слово С Прописной",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "Пользовательская таблица",
|
"DE.Views.Toolbar.mniCustomTable": "Пользовательская таблица",
|
||||||
"DE.Views.Toolbar.mniDrawTable": "Нарисовать таблицу",
|
"DE.Views.Toolbar.mniDrawTable": "Нарисовать таблицу",
|
||||||
"DE.Views.Toolbar.mniEditControls": "Параметры элемента управления",
|
"DE.Views.Toolbar.mniEditControls": "Параметры элемента управления",
|
||||||
|
@ -2433,6 +2504,10 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Изображение из файла",
|
"DE.Views.Toolbar.mniImageFromFile": "Изображение из файла",
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Изображение из хранилища",
|
"DE.Views.Toolbar.mniImageFromStorage": "Изображение из хранилища",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Изображение по URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Изображение по URL",
|
||||||
|
"DE.Views.Toolbar.mniLowerCase": "нижний регистр",
|
||||||
|
"DE.Views.Toolbar.mniSentenceCase": "Как в предложениях.",
|
||||||
|
"DE.Views.Toolbar.mniToggleCase": "иЗМЕНИТЬ рЕГИСТР",
|
||||||
|
"DE.Views.Toolbar.mniUpperCase": "ВЕРХНИЙ РЕГИСТР",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Без заливки",
|
"DE.Views.Toolbar.strMenuNoFill": "Без заливки",
|
||||||
"DE.Views.Toolbar.textAutoColor": "Автоматический",
|
"DE.Views.Toolbar.textAutoColor": "Автоматический",
|
||||||
"DE.Views.Toolbar.textBold": "Полужирный",
|
"DE.Views.Toolbar.textBold": "Полужирный",
|
||||||
|
@ -2513,6 +2588,7 @@
|
||||||
"DE.Views.Toolbar.tipAlignRight": "Выравнивание по правому краю",
|
"DE.Views.Toolbar.tipAlignRight": "Выравнивание по правому краю",
|
||||||
"DE.Views.Toolbar.tipBack": "Назад",
|
"DE.Views.Toolbar.tipBack": "Назад",
|
||||||
"DE.Views.Toolbar.tipBlankPage": "Вставить пустую страницу",
|
"DE.Views.Toolbar.tipBlankPage": "Вставить пустую страницу",
|
||||||
|
"DE.Views.Toolbar.tipChangeCase:": "Изменить регистр",
|
||||||
"DE.Views.Toolbar.tipChangeChart": "Изменить тип диаграммы",
|
"DE.Views.Toolbar.tipChangeChart": "Изменить тип диаграммы",
|
||||||
"DE.Views.Toolbar.tipClearStyle": "Очистить стиль",
|
"DE.Views.Toolbar.tipClearStyle": "Очистить стиль",
|
||||||
"DE.Views.Toolbar.tipColorSchemas": "Изменение цветовой схемы",
|
"DE.Views.Toolbar.tipColorSchemas": "Изменение цветовой схемы",
|
||||||
|
|
|
@ -247,6 +247,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor",
|
"Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
|
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Zadajte heslo na otvorenie súboru",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Náhľad",
|
"Common.Views.OpenDialog.txtPreview": "Náhľad",
|
||||||
"Common.Views.OpenDialog.txtProtected": "Po zadaní hesla a otvorení súboru bude súčasné heslo k súboru resetované.",
|
"Common.Views.OpenDialog.txtProtected": "Po zadaní hesla a otvorení súboru bude súčasné heslo k súboru resetované.",
|
||||||
|
@ -256,6 +257,7 @@
|
||||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú",
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú",
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Heslo",
|
"Common.Views.PasswordDialog.txtPassword": "Heslo",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Zopakujte heslo",
|
"Common.Views.PasswordDialog.txtRepeat": "Zopakujte heslo",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Upozornenie: Ak stratíte alebo zabudnete heslo, nemožno ho obnoviť. Uschovajte ho na bezpečnom mieste.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Nahrávanie",
|
"Common.Views.PluginDlg.textLoading": "Nahrávanie",
|
||||||
"Common.Views.Plugins.groupCaption": "Pluginy",
|
"Common.Views.Plugins.groupCaption": "Pluginy",
|
||||||
"Common.Views.Plugins.strPlugins": "Pluginy",
|
"Common.Views.Plugins.strPlugins": "Pluginy",
|
||||||
|
|
|
@ -199,6 +199,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Zapri datoteko",
|
"Common.Views.OpenDialog.closeButtonText": "Zapri datoteko",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Geslo je napačno",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Geslo je napačno",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Vnesite geslo za odpiranje datoteke",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Geslo",
|
"Common.Views.OpenDialog.txtPassword": "Geslo",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Predogled",
|
"Common.Views.OpenDialog.txtPreview": "Predogled",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
||||||
|
@ -207,6 +208,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Geslo",
|
"Common.Views.PasswordDialog.txtPassword": "Geslo",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Ponovite geslo",
|
"Common.Views.PasswordDialog.txtRepeat": "Ponovite geslo",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Nastavi geslo",
|
"Common.Views.PasswordDialog.txtTitle": "Nastavi geslo",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Pozor: Če izgubite geslo ali ga pozabite, ga ne morete več obnoviti. Hranite ga na varnem mestu.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Nalaganje",
|
"Common.Views.PluginDlg.textLoading": "Nalaganje",
|
||||||
"Common.Views.Plugins.groupCaption": "Razširitve",
|
"Common.Views.Plugins.groupCaption": "Razširitve",
|
||||||
"Common.Views.Plugins.strPlugins": "Razširitve",
|
"Common.Views.Plugins.strPlugins": "Razširitve",
|
||||||
|
|
|
@ -225,6 +225,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Stäng fil",
|
"Common.Views.OpenDialog.closeButtonText": "Stäng fil",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Teckentabell",
|
"Common.Views.OpenDialog.txtEncoding": "Teckentabell",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Skriv in lösenord för att öppna filen",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Lösenord",
|
"Common.Views.OpenDialog.txtPassword": "Lösenord",
|
||||||
"Common.Views.OpenDialog.txtPreview": "Förhandsgranska",
|
"Common.Views.OpenDialog.txtPreview": "Förhandsgranska",
|
||||||
"Common.Views.OpenDialog.txtProtected": "När du har skrivit in lösenordet och öppnat filen, återställs det aktuella lösenordet till filen.",
|
"Common.Views.OpenDialog.txtProtected": "När du har skrivit in lösenordet och öppnat filen, återställs det aktuella lösenordet till filen.",
|
||||||
|
@ -235,6 +236,7 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Lösenord",
|
"Common.Views.PasswordDialog.txtPassword": "Lösenord",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Repetera lösenord",
|
"Common.Views.PasswordDialog.txtRepeat": "Repetera lösenord",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "Ange lösenord",
|
"Common.Views.PasswordDialog.txtTitle": "Ange lösenord",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Varning! Om du glömmer lösenordet kan det inte återskapas.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Laddar",
|
"Common.Views.PluginDlg.textLoading": "Laddar",
|
||||||
"Common.Views.Plugins.groupCaption": "Tillägg",
|
"Common.Views.Plugins.groupCaption": "Tillägg",
|
||||||
"Common.Views.Plugins.strPlugins": "Tillägg",
|
"Common.Views.Plugins.strPlugins": "Tillägg",
|
||||||
|
|
|
@ -186,10 +186,12 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat",
|
"Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Dosyayı Açmak için Parola Girin",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Şifre",
|
"Common.Views.OpenDialog.txtPassword": "Şifre",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya",
|
"Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya",
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Parola",
|
"Common.Views.PasswordDialog.txtPassword": "Parola",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Dikkat: Parolayı kaybeder veya unutursanız, kurtarılamaz.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Yükleniyor",
|
"Common.Views.PluginDlg.textLoading": "Yükleniyor",
|
||||||
"Common.Views.Plugins.groupCaption": "Eklentiler",
|
"Common.Views.Plugins.groupCaption": "Eklentiler",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugin",
|
"Common.Views.Plugins.strPlugins": "Plugin",
|
||||||
|
|
|
@ -181,9 +181,11 @@
|
||||||
"Common.Views.LanguageDialog.labelSelect": "Виберіть мову документа",
|
"Common.Views.LanguageDialog.labelSelect": "Виберіть мову документа",
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Закрити файл",
|
"Common.Views.OpenDialog.closeButtonText": "Закрити файл",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Кодування",
|
"Common.Views.OpenDialog.txtEncoding": "Кодування",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Введіть пароль для відкриття файлу",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1",
|
"Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Захищений файл",
|
"Common.Views.OpenDialog.txtTitleProtected": "Захищений файл",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Увага! Якщо ви втратили або не можете пригадати пароль, відновити його неможливо. Зберігайте його в надійному місці.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Завантаження",
|
"Common.Views.PluginDlg.textLoading": "Завантаження",
|
||||||
"Common.Views.Plugins.groupCaption": "Плагіни",
|
"Common.Views.Plugins.groupCaption": "Плагіни",
|
||||||
"Common.Views.Plugins.strPlugins": "Плагіни",
|
"Common.Views.Plugins.strPlugins": "Плагіни",
|
||||||
|
|
|
@ -172,9 +172,11 @@
|
||||||
"Common.Views.LanguageDialog.labelSelect": "Chọn ngôn ngữ tài liệu",
|
"Common.Views.LanguageDialog.labelSelect": "Chọn ngôn ngữ tài liệu",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Mã hóa",
|
"Common.Views.OpenDialog.txtEncoding": "Mã hóa",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Mật khẩu không đúng.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Mật khẩu không đúng.",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "Nhập mật khẩu để mở tệp",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Mật khẩu",
|
"Common.Views.OpenDialog.txtPassword": "Mật khẩu",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Chọn %1 lựa chọn",
|
"Common.Views.OpenDialog.txtTitle": "Chọn %1 lựa chọn",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "File được bảo vệ",
|
"Common.Views.OpenDialog.txtTitleProtected": "File được bảo vệ",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "Chú ý: Nếu bạn mất hoặc quên mật khẩu, bạn không thể khôi phục mật khẩu.",
|
||||||
"Common.Views.PluginDlg.textLoading": "Đang tải",
|
"Common.Views.PluginDlg.textLoading": "Đang tải",
|
||||||
"Common.Views.Plugins.groupCaption": "Plugin",
|
"Common.Views.Plugins.groupCaption": "Plugin",
|
||||||
"Common.Views.Plugins.strPlugins": "Plugin",
|
"Common.Views.Plugins.strPlugins": "Plugin",
|
||||||
|
|
|
@ -182,16 +182,16 @@
|
||||||
"Common.Views.AutoCorrectDialog.warnRestore": "关于%1的自动更正条目将恢复默认值。确认继续?",
|
"Common.Views.AutoCorrectDialog.warnRestore": "关于%1的自动更正条目将恢复默认值。确认继续?",
|
||||||
"Common.Views.Chat.textSend": "发送",
|
"Common.Views.Chat.textSend": "发送",
|
||||||
"Common.Views.Comments.textAdd": "添加",
|
"Common.Views.Comments.textAdd": "添加",
|
||||||
"Common.Views.Comments.textAddComment": "发表评论",
|
"Common.Views.Comments.textAddComment": "添加批注",
|
||||||
"Common.Views.Comments.textAddCommentToDoc": "向文件添加评论",
|
"Common.Views.Comments.textAddCommentToDoc": "添加批注到文档",
|
||||||
"Common.Views.Comments.textAddReply": "添加回复",
|
"Common.Views.Comments.textAddReply": "添加回复",
|
||||||
"Common.Views.Comments.textAnonym": "游客",
|
"Common.Views.Comments.textAnonym": "游客",
|
||||||
"Common.Views.Comments.textCancel": "取消",
|
"Common.Views.Comments.textCancel": "取消",
|
||||||
"Common.Views.Comments.textClose": "关闭",
|
"Common.Views.Comments.textClose": "关闭",
|
||||||
"Common.Views.Comments.textComments": "评论",
|
"Common.Views.Comments.textComments": "批注",
|
||||||
"Common.Views.Comments.textEdit": "确定",
|
"Common.Views.Comments.textEdit": "确定",
|
||||||
"Common.Views.Comments.textEnterCommentHint": "在这里输入您的评论",
|
"Common.Views.Comments.textEnterCommentHint": "在此输入您的批注",
|
||||||
"Common.Views.Comments.textHintAddComment": "发表评论",
|
"Common.Views.Comments.textHintAddComment": "添加批注",
|
||||||
"Common.Views.Comments.textOpenAgain": "再次打开",
|
"Common.Views.Comments.textOpenAgain": "再次打开",
|
||||||
"Common.Views.Comments.textReply": "回复",
|
"Common.Views.Comments.textReply": "回复",
|
||||||
"Common.Views.Comments.textResolve": "解决",
|
"Common.Views.Comments.textResolve": "解决",
|
||||||
|
@ -249,6 +249,7 @@
|
||||||
"Common.Views.OpenDialog.closeButtonText": "关闭文件",
|
"Common.Views.OpenDialog.closeButtonText": "关闭文件",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "编码",
|
"Common.Views.OpenDialog.txtEncoding": "编码",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "密码错误",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "密码错误",
|
||||||
|
"Common.Views.OpenDialog.txtOpenFile": "输入密码来打开文件",
|
||||||
"Common.Views.OpenDialog.txtPassword": "密码",
|
"Common.Views.OpenDialog.txtPassword": "密码",
|
||||||
"Common.Views.OpenDialog.txtPreview": "预览",
|
"Common.Views.OpenDialog.txtPreview": "预览",
|
||||||
"Common.Views.OpenDialog.txtProtected": "在您输入密码和打开文件后,该文件的当前密码将被重置。",
|
"Common.Views.OpenDialog.txtProtected": "在您输入密码和打开文件后,该文件的当前密码将被重置。",
|
||||||
|
@ -259,9 +260,10 @@
|
||||||
"Common.Views.PasswordDialog.txtPassword": "密码",
|
"Common.Views.PasswordDialog.txtPassword": "密码",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "重复输入密码",
|
"Common.Views.PasswordDialog.txtRepeat": "重复输入密码",
|
||||||
"Common.Views.PasswordDialog.txtTitle": "设置密码",
|
"Common.Views.PasswordDialog.txtTitle": "设置密码",
|
||||||
|
"Common.Views.PasswordDialog.txtWarning": "警告: 如果丢失或忘记密码,则无法将其恢复。将其保存在安全位置。",
|
||||||
"Common.Views.PluginDlg.textLoading": "载入中",
|
"Common.Views.PluginDlg.textLoading": "载入中",
|
||||||
"Common.Views.Plugins.groupCaption": "组件",
|
"Common.Views.Plugins.groupCaption": "插件",
|
||||||
"Common.Views.Plugins.strPlugins": "组件",
|
"Common.Views.Plugins.strPlugins": "插件",
|
||||||
"Common.Views.Plugins.textLoading": "载入中",
|
"Common.Views.Plugins.textLoading": "载入中",
|
||||||
"Common.Views.Plugins.textStart": "开始",
|
"Common.Views.Plugins.textStart": "开始",
|
||||||
"Common.Views.Plugins.textStop": "停止",
|
"Common.Views.Plugins.textStop": "停止",
|
||||||
|
@ -289,8 +291,8 @@
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按钮同步您和其他人所做的更改。",
|
"Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按钮同步您和其他人所做的更改。",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "接受当前的变化",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "接受当前的变化",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "设置共同编辑模式",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "设置共同编辑模式",
|
||||||
"Common.Views.ReviewChanges.tipCommentRem": "删除评论",
|
"Common.Views.ReviewChanges.tipCommentRem": "移除批注",
|
||||||
"Common.Views.ReviewChanges.tipCommentRemCurrent": "删除现在的评论",
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "移除当前批注",
|
||||||
"Common.Views.ReviewChanges.tipCompare": "将当前文档与另一个文档进行比较",
|
"Common.Views.ReviewChanges.tipCompare": "将当前文档与另一个文档进行比较",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "显示历史版本",
|
"Common.Views.ReviewChanges.tipHistory": "显示历史版本",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "拒绝当前的变化",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "拒绝当前的变化",
|
||||||
|
@ -306,10 +308,10 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "聊天",
|
"Common.Views.ReviewChanges.txtChat": "聊天",
|
||||||
"Common.Views.ReviewChanges.txtClose": "关闭",
|
"Common.Views.ReviewChanges.txtClose": "关闭",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "共同编辑模式",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "共同编辑模式",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemAll": "删除全评论",
|
"Common.Views.ReviewChanges.txtCommentRemAll": "移除所有批注",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemCurrent": "删除现在的评论",
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "移除当前批注",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMy": "删除我评论",
|
"Common.Views.ReviewChanges.txtCommentRemMy": "移除我的批注",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "删除我现在评论",
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "移除我的当前批注",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemove": "删除",
|
"Common.Views.ReviewChanges.txtCommentRemove": "删除",
|
||||||
"Common.Views.ReviewChanges.txtCompare": "比较",
|
"Common.Views.ReviewChanges.txtCompare": "比较",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "语言",
|
"Common.Views.ReviewChanges.txtDocLang": "语言",
|
||||||
|
@ -359,6 +361,7 @@
|
||||||
"Common.Views.SignDialog.textChange": "修改",
|
"Common.Views.SignDialog.textChange": "修改",
|
||||||
"Common.Views.SignDialog.textInputName": "输入签名者姓名",
|
"Common.Views.SignDialog.textInputName": "输入签名者姓名",
|
||||||
"Common.Views.SignDialog.textItalic": "斜体",
|
"Common.Views.SignDialog.textItalic": "斜体",
|
||||||
|
"Common.Views.SignDialog.textNameError": "签名者名称不能为空",
|
||||||
"Common.Views.SignDialog.textPurpose": "签署本文档的目的",
|
"Common.Views.SignDialog.textPurpose": "签署本文档的目的",
|
||||||
"Common.Views.SignDialog.textSelect": "请选择",
|
"Common.Views.SignDialog.textSelect": "请选择",
|
||||||
"Common.Views.SignDialog.textSelectImage": "选择图像",
|
"Common.Views.SignDialog.textSelectImage": "选择图像",
|
||||||
|
@ -368,7 +371,7 @@
|
||||||
"Common.Views.SignDialog.textValid": "从%1到%2有效",
|
"Common.Views.SignDialog.textValid": "从%1到%2有效",
|
||||||
"Common.Views.SignDialog.tipFontName": "字体名称",
|
"Common.Views.SignDialog.tipFontName": "字体名称",
|
||||||
"Common.Views.SignDialog.tipFontSize": "字体大小",
|
"Common.Views.SignDialog.tipFontSize": "字体大小",
|
||||||
"Common.Views.SignSettingsDialog.textAllowComment": "允许签名者在签名对话框中添加注释",
|
"Common.Views.SignSettingsDialog.textAllowComment": "允许签名者在签名对话框中添加批注",
|
||||||
"Common.Views.SignSettingsDialog.textInfo": "签名者信息",
|
"Common.Views.SignSettingsDialog.textInfo": "签名者信息",
|
||||||
"Common.Views.SignSettingsDialog.textInfoEmail": "电子邮件",
|
"Common.Views.SignSettingsDialog.textInfoEmail": "电子邮件",
|
||||||
"Common.Views.SignSettingsDialog.textInfoName": "名称",
|
"Common.Views.SignSettingsDialog.textInfoName": "名称",
|
||||||
|
@ -412,7 +415,7 @@
|
||||||
"DE.Controllers.LeftMenu.textNoTextFound": "您搜索的数据无法找到。请调整您的搜索选项。",
|
"DE.Controllers.LeftMenu.textNoTextFound": "您搜索的数据无法找到。请调整您的搜索选项。",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSkipped": "已经更换了。{0}次跳过。",
|
"DE.Controllers.LeftMenu.textReplaceSkipped": "已经更换了。{0}次跳过。",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSuccess": "他的搜索已经完成。发生次数:{0}",
|
"DE.Controllers.LeftMenu.textReplaceSuccess": "他的搜索已经完成。发生次数:{0}",
|
||||||
"DE.Controllers.LeftMenu.txtCompatible": "文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局。<br>如果要使文件与较旧的MS Word版本兼容,请使用高级设置的“兼容性”选项。",
|
"DE.Controllers.LeftMenu.txtCompatible": "文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局。<br>如果要使文档与旧版微软 Word 兼容,请使用高级设置的“兼容性”选项。",
|
||||||
"DE.Controllers.LeftMenu.txtUntitled": "无标题",
|
"DE.Controllers.LeftMenu.txtUntitled": "无标题",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。<br>您确定要继续吗?",
|
"DE.Controllers.LeftMenu.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。<br>您确定要继续吗?",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果您继续以此格式保存,一些格式可能会丢失。<br>您确定要继续吗?",
|
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果您继续以此格式保存,一些格式可能会丢失。<br>您确定要继续吗?",
|
||||||
|
@ -1095,7 +1098,7 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_propto": "比例到",
|
"DE.Controllers.Toolbar.txtSymbol_propto": "比例到",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_psi": "PSI",
|
"DE.Controllers.Toolbar.txtSymbol_psi": "PSI",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_qdrt": "第四根",
|
"DE.Controllers.Toolbar.txtSymbol_qdrt": "第四根",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_qed": "证明结束",
|
"DE.Controllers.Toolbar.txtSymbol_qed": "审校结束",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_rddots": "向右对角线省略号",
|
"DE.Controllers.Toolbar.txtSymbol_rddots": "向右对角线省略号",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_rho": "Rho",
|
"DE.Controllers.Toolbar.txtSymbol_rho": "Rho",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_rightarrow": "右箭头",
|
"DE.Controllers.Toolbar.txtSymbol_rightarrow": "右箭头",
|
||||||
|
@ -1128,7 +1131,7 @@
|
||||||
"DE.Views.BookmarksDialog.textGetLink": "获取链接",
|
"DE.Views.BookmarksDialog.textGetLink": "获取链接",
|
||||||
"DE.Views.BookmarksDialog.textGoto": "转到",
|
"DE.Views.BookmarksDialog.textGoto": "转到",
|
||||||
"DE.Views.BookmarksDialog.textHidden": "隐藏的书签",
|
"DE.Views.BookmarksDialog.textHidden": "隐藏的书签",
|
||||||
"DE.Views.BookmarksDialog.textLocation": "地址",
|
"DE.Views.BookmarksDialog.textLocation": "位置",
|
||||||
"DE.Views.BookmarksDialog.textName": "名称",
|
"DE.Views.BookmarksDialog.textName": "名称",
|
||||||
"DE.Views.BookmarksDialog.textSort": "排序方式",
|
"DE.Views.BookmarksDialog.textSort": "排序方式",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "书签",
|
"DE.Views.BookmarksDialog.textTitle": "书签",
|
||||||
|
@ -1215,6 +1218,7 @@
|
||||||
"DE.Views.CrossReferenceDialog.textBookmark": "书签",
|
"DE.Views.CrossReferenceDialog.textBookmark": "书签",
|
||||||
"DE.Views.CrossReferenceDialog.textBookmarkText": "书签文字",
|
"DE.Views.CrossReferenceDialog.textBookmarkText": "书签文字",
|
||||||
"DE.Views.CrossReferenceDialog.textCaption": "整个标题",
|
"DE.Views.CrossReferenceDialog.textCaption": "整个标题",
|
||||||
|
"DE.Views.CrossReferenceDialog.textEmpty": "请求的引用为空。",
|
||||||
"DE.Views.CrossReferenceDialog.textEndnote": "尾注",
|
"DE.Views.CrossReferenceDialog.textEndnote": "尾注",
|
||||||
"DE.Views.CrossReferenceDialog.textEndNoteNum": "尾注编号",
|
"DE.Views.CrossReferenceDialog.textEndNoteNum": "尾注编号",
|
||||||
"DE.Views.CrossReferenceDialog.textEndNoteNumForm": "尾注编号(带格式)",
|
"DE.Views.CrossReferenceDialog.textEndNoteNumForm": "尾注编号(带格式)",
|
||||||
|
@ -1233,7 +1237,9 @@
|
||||||
"DE.Views.CrossReferenceDialog.textSeparate": "数字分隔符",
|
"DE.Views.CrossReferenceDialog.textSeparate": "数字分隔符",
|
||||||
"DE.Views.CrossReferenceDialog.textTable": "表格",
|
"DE.Views.CrossReferenceDialog.textTable": "表格",
|
||||||
"DE.Views.CrossReferenceDialog.textText": "段落文字",
|
"DE.Views.CrossReferenceDialog.textText": "段落文字",
|
||||||
|
"DE.Views.CrossReferenceDialog.txtReference": "插入引用到",
|
||||||
"DE.Views.CrossReferenceDialog.txtTitle": "交叉引用",
|
"DE.Views.CrossReferenceDialog.txtTitle": "交叉引用",
|
||||||
|
"DE.Views.CrossReferenceDialog.txtType": "引用类型",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "列数",
|
"DE.Views.CustomColumnsDialog.textColumns": "列数",
|
||||||
"DE.Views.CustomColumnsDialog.textSeparator": "列分隔符",
|
"DE.Views.CustomColumnsDialog.textSeparator": "列分隔符",
|
||||||
"DE.Views.CustomColumnsDialog.textSpacing": "列之间的间距",
|
"DE.Views.CustomColumnsDialog.textSpacing": "列之间的间距",
|
||||||
|
@ -1245,13 +1251,13 @@
|
||||||
"DE.Views.DateTimeDialog.textUpdate": "自动更新",
|
"DE.Views.DateTimeDialog.textUpdate": "自动更新",
|
||||||
"DE.Views.DateTimeDialog.txtTitle": "日期、时间",
|
"DE.Views.DateTimeDialog.txtTitle": "日期、时间",
|
||||||
"DE.Views.DocumentHolder.aboveText": "以上",
|
"DE.Views.DocumentHolder.aboveText": "以上",
|
||||||
"DE.Views.DocumentHolder.addCommentText": "发表评论",
|
"DE.Views.DocumentHolder.addCommentText": "添加批注",
|
||||||
"DE.Views.DocumentHolder.advancedDropCapText": "下沉设置",
|
"DE.Views.DocumentHolder.advancedDropCapText": "下沉设置",
|
||||||
"DE.Views.DocumentHolder.advancedFrameText": "框架高级设置",
|
"DE.Views.DocumentHolder.advancedFrameText": "框架高级设置",
|
||||||
"DE.Views.DocumentHolder.advancedParagraphText": "段落高级设置",
|
"DE.Views.DocumentHolder.advancedParagraphText": "段落高级设置",
|
||||||
"DE.Views.DocumentHolder.advancedTableText": "高级表设置",
|
"DE.Views.DocumentHolder.advancedTableText": "高级表设置",
|
||||||
"DE.Views.DocumentHolder.advancedText": "高级设置",
|
"DE.Views.DocumentHolder.advancedText": "高级设置",
|
||||||
"DE.Views.DocumentHolder.alignmentText": "校准",
|
"DE.Views.DocumentHolder.alignmentText": "对齐",
|
||||||
"DE.Views.DocumentHolder.belowText": "下面",
|
"DE.Views.DocumentHolder.belowText": "下面",
|
||||||
"DE.Views.DocumentHolder.breakBeforeText": "分页前",
|
"DE.Views.DocumentHolder.breakBeforeText": "分页前",
|
||||||
"DE.Views.DocumentHolder.bulletsText": "子弹和编号",
|
"DE.Views.DocumentHolder.bulletsText": "子弹和编号",
|
||||||
|
@ -1470,7 +1476,7 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "边框和填充",
|
"DE.Views.DropcapSettingsAdvanced.strBorders": "边框和填充",
|
||||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "下沉",
|
"DE.Views.DropcapSettingsAdvanced.strDropcap": "下沉",
|
||||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "边距",
|
"DE.Views.DropcapSettingsAdvanced.strMargins": "边距",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textAlign": "校准",
|
"DE.Views.DropcapSettingsAdvanced.textAlign": "对齐",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "至少",
|
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "至少",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textAuto": "自动",
|
"DE.Views.DropcapSettingsAdvanced.textAuto": "自动",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBackColor": "背景颜色",
|
"DE.Views.DropcapSettingsAdvanced.textBackColor": "背景颜色",
|
||||||
|
@ -1542,7 +1548,7 @@
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "应用",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "应用",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改访问权限",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改访问权限",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "评论",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "批注",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已创建",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已创建",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "载入中……",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "载入中……",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "上次修改时间",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "上次修改时间",
|
||||||
|
@ -1550,7 +1556,7 @@
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "创建者",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "创建者",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "页面",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "页面",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "地址",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "符号和空格",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "符号和空格",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计",
|
||||||
|
@ -1573,38 +1579,38 @@
|
||||||
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文档中的某些数字签名无效或无法验证。该文档已限制编辑。",
|
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文档中的某些数字签名无效或无法验证。该文档已限制编辑。",
|
||||||
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "查看签名",
|
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "查看签名",
|
||||||
"DE.Views.FileMenuPanels.Settings.okButtonText": "应用",
|
"DE.Views.FileMenuPanels.Settings.okButtonText": "应用",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "打开对齐指南",
|
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "显示对齐辅助线",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "打开自动复原",
|
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "启用自动恢复",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAutosave": "打开自动保存",
|
"DE.Views.FileMenuPanels.Settings.strAutosave": "启用自动保存",
|
||||||
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同编辑模式",
|
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同编辑模式",
|
||||||
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "其他用户将一次看到您的更改",
|
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "其他用户将一次看到您的更改",
|
||||||
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您将需要接受更改才能看到它们",
|
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您将需要接受更改才能看到它们",
|
||||||
"DE.Views.FileMenuPanels.Settings.strFast": "快速",
|
"DE.Views.FileMenuPanels.Settings.strFast": "快速",
|
||||||
"DE.Views.FileMenuPanels.Settings.strFontRender": "字体提示",
|
"DE.Views.FileMenuPanels.Settings.strFontRender": "字体微调方式",
|
||||||
"DE.Views.FileMenuPanels.Settings.strForcesave": "始终保存到服务器(否则在文档关闭时保存到服务器)",
|
"DE.Views.FileMenuPanels.Settings.strForcesave": "始终保存到服务器(否则在文档关闭时保存到服务器)",
|
||||||
"DE.Views.FileMenuPanels.Settings.strInputMode": "该又是象形文字",
|
"DE.Views.FileMenuPanels.Settings.strInputMode": "显示象形文字",
|
||||||
"DE.Views.FileMenuPanels.Settings.strLiveComment": "打开评论的显示",
|
"DE.Views.FileMenuPanels.Settings.strLiveComment": "显示批注",
|
||||||
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置",
|
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置",
|
||||||
"DE.Views.FileMenuPanels.Settings.strPaste": "剪切、拷贝、黏贴",
|
"DE.Views.FileMenuPanels.Settings.strPaste": "剪切、拷贝、黏贴",
|
||||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮",
|
"DE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮",
|
||||||
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "打开已解决的注释的显示",
|
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "显示已解决批注",
|
||||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更",
|
"DE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更",
|
||||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "打开拼写检查选项",
|
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "显示拼写检查选项",
|
||||||
"DE.Views.FileMenuPanels.Settings.strStrict": "严格",
|
"DE.Views.FileMenuPanels.Settings.strStrict": "严格",
|
||||||
"DE.Views.FileMenuPanels.Settings.strUnit": "测量单位",
|
"DE.Views.FileMenuPanels.Settings.strUnit": "测量单位",
|
||||||
"DE.Views.FileMenuPanels.Settings.strZoom": "默认缩放值",
|
"DE.Views.FileMenuPanels.Settings.strZoom": "默认缩放比率",
|
||||||
"DE.Views.FileMenuPanels.Settings.text10Minutes": "每10分钟",
|
"DE.Views.FileMenuPanels.Settings.text10Minutes": "每10分钟",
|
||||||
"DE.Views.FileMenuPanels.Settings.text30Minutes": "每30分钟",
|
"DE.Views.FileMenuPanels.Settings.text30Minutes": "每30分钟",
|
||||||
"DE.Views.FileMenuPanels.Settings.text5Minutes": "每5分钟",
|
"DE.Views.FileMenuPanels.Settings.text5Minutes": "每5分钟",
|
||||||
"DE.Views.FileMenuPanels.Settings.text60Minutes": "每隔一小时",
|
"DE.Views.FileMenuPanels.Settings.text60Minutes": "每隔一小时",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "对齐指南",
|
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "对齐辅助线",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "自动恢复",
|
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "自动恢复",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoSave": "自动保存",
|
"DE.Views.FileMenuPanels.Settings.textAutoSave": "自动保存",
|
||||||
"DE.Views.FileMenuPanels.Settings.textCompatible": "兼容性",
|
"DE.Views.FileMenuPanels.Settings.textCompatible": "兼容性",
|
||||||
"DE.Views.FileMenuPanels.Settings.textDisabled": "已禁用",
|
"DE.Views.FileMenuPanels.Settings.textDisabled": "已禁用",
|
||||||
"DE.Views.FileMenuPanels.Settings.textForceSave": "保存到服务器",
|
"DE.Views.FileMenuPanels.Settings.textForceSave": "保存到服务器",
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "每一分钟",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "每一分钟",
|
||||||
"DE.Views.FileMenuPanels.Settings.textOldVersions": "将文件保存为DOCX时,使其与较旧的MS-Word版本兼容",
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "使用与旧版微软 Word 兼容的方式保存 DOCX 文档",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "查看全部",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "查看全部",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自动修正选项...",
|
"DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自动修正选项...",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "默认缓存模式",
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "默认缓存模式",
|
||||||
|
@ -1612,13 +1618,13 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "适合页面",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "适合页面",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "适合宽度",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "适合宽度",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtInch": "寸",
|
"DE.Views.FileMenuPanels.Settings.txtInch": "寸",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtInput": "备用输入",
|
"DE.Views.FileMenuPanels.Settings.txtInput": "备选输入",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtLast": "最后查看",
|
"DE.Views.FileMenuPanels.Settings.txtLast": "最后查看",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtLiveComment": "评论显示",
|
"DE.Views.FileMenuPanels.Settings.txtLiveComment": "批注显示",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtMac": "作为OS X",
|
"DE.Views.FileMenuPanels.Settings.txtMac": "仿照 OS X",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtNative": "本地",
|
"DE.Views.FileMenuPanels.Settings.txtNative": "本机系统原生",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtNone": "无查看",
|
"DE.Views.FileMenuPanels.Settings.txtNone": "无查看",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtProofing": "审订",
|
"DE.Views.FileMenuPanels.Settings.txtProofing": "审校",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtPt": "点",
|
"DE.Views.FileMenuPanels.Settings.txtPt": "点",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "启动所有项目",
|
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "启动所有项目",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "启动所有不带通知的宏",
|
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "启动所有不带通知的宏",
|
||||||
|
@ -1627,7 +1633,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "解除所有不带通知的宏",
|
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "解除所有不带通知的宏",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "显示通知",
|
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "显示通知",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "解除所有带通知的宏",
|
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "解除所有带通知的宏",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "作为Windows",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "仿照 Windows",
|
||||||
"DE.Views.FormSettings.textCheckbox": "多选框",
|
"DE.Views.FormSettings.textCheckbox": "多选框",
|
||||||
"DE.Views.FormSettings.textColor": "边框颜色",
|
"DE.Views.FormSettings.textColor": "边框颜色",
|
||||||
"DE.Views.FormSettings.textCombobox": "\n组合框",
|
"DE.Views.FormSettings.textCombobox": "\n组合框",
|
||||||
|
@ -1730,7 +1736,7 @@
|
||||||
"DE.Views.ImageSettings.txtTopAndBottom": "上下",
|
"DE.Views.ImageSettings.txtTopAndBottom": "上下",
|
||||||
"DE.Views.ImageSettingsAdvanced.strMargins": "文字填充",
|
"DE.Views.ImageSettingsAdvanced.strMargins": "文字填充",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "绝对",
|
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "绝对",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "校准",
|
"DE.Views.ImageSettingsAdvanced.textAlignment": "对齐",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAlt": "替代文本",
|
"DE.Views.ImageSettingsAdvanced.textAlt": "替代文本",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltDescription": "说明",
|
"DE.Views.ImageSettingsAdvanced.textAltDescription": "说明",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。",
|
"DE.Views.ImageSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。",
|
||||||
|
@ -1805,9 +1811,9 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "上下",
|
"DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "上下",
|
||||||
"DE.Views.LeftMenu.tipAbout": "关于",
|
"DE.Views.LeftMenu.tipAbout": "关于",
|
||||||
"DE.Views.LeftMenu.tipChat": "聊天",
|
"DE.Views.LeftMenu.tipChat": "聊天",
|
||||||
"DE.Views.LeftMenu.tipComments": "评论",
|
"DE.Views.LeftMenu.tipComments": "批注",
|
||||||
"DE.Views.LeftMenu.tipNavigation": "导航",
|
"DE.Views.LeftMenu.tipNavigation": "导航",
|
||||||
"DE.Views.LeftMenu.tipPlugins": "组件",
|
"DE.Views.LeftMenu.tipPlugins": "插件",
|
||||||
"DE.Views.LeftMenu.tipSearch": "搜索",
|
"DE.Views.LeftMenu.tipSearch": "搜索",
|
||||||
"DE.Views.LeftMenu.tipSupport": "反馈和支持",
|
"DE.Views.LeftMenu.tipSupport": "反馈和支持",
|
||||||
"DE.Views.LeftMenu.tipTitles": "标题",
|
"DE.Views.LeftMenu.tipTitles": "标题",
|
||||||
|
@ -1862,7 +1868,7 @@
|
||||||
"DE.Views.ListSettingsDialog.textLevel": "级别",
|
"DE.Views.ListSettingsDialog.textLevel": "级别",
|
||||||
"DE.Views.ListSettingsDialog.textPreview": "预览",
|
"DE.Views.ListSettingsDialog.textPreview": "预览",
|
||||||
"DE.Views.ListSettingsDialog.textRight": "右",
|
"DE.Views.ListSettingsDialog.textRight": "右",
|
||||||
"DE.Views.ListSettingsDialog.txtAlign": "校准",
|
"DE.Views.ListSettingsDialog.txtAlign": "对齐",
|
||||||
"DE.Views.ListSettingsDialog.txtBullet": "项目点",
|
"DE.Views.ListSettingsDialog.txtBullet": "项目点",
|
||||||
"DE.Views.ListSettingsDialog.txtColor": "颜色",
|
"DE.Views.ListSettingsDialog.txtColor": "颜色",
|
||||||
"DE.Views.ListSettingsDialog.txtFont": "字体和符号",
|
"DE.Views.ListSettingsDialog.txtFont": "字体和符号",
|
||||||
|
@ -1943,7 +1949,7 @@
|
||||||
"DE.Views.NoteSettingsDialog.textFootnote": "脚注",
|
"DE.Views.NoteSettingsDialog.textFootnote": "脚注",
|
||||||
"DE.Views.NoteSettingsDialog.textFormat": "格式",
|
"DE.Views.NoteSettingsDialog.textFormat": "格式",
|
||||||
"DE.Views.NoteSettingsDialog.textInsert": "插入",
|
"DE.Views.NoteSettingsDialog.textInsert": "插入",
|
||||||
"DE.Views.NoteSettingsDialog.textLocation": "地址",
|
"DE.Views.NoteSettingsDialog.textLocation": "位置",
|
||||||
"DE.Views.NoteSettingsDialog.textNumbering": "编号",
|
"DE.Views.NoteSettingsDialog.textNumbering": "编号",
|
||||||
"DE.Views.NoteSettingsDialog.textNumFormat": "数字格式",
|
"DE.Views.NoteSettingsDialog.textNumFormat": "数字格式",
|
||||||
"DE.Views.NoteSettingsDialog.textPageBottom": "页面底部",
|
"DE.Views.NoteSettingsDialog.textPageBottom": "页面底部",
|
||||||
|
@ -2019,7 +2025,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "下标",
|
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "下标",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "上标",
|
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "上标",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "标签",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "标签",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "校准",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "对齐",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "至少",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "至少",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAuto": "倍数",
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "倍数",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "背景颜色",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "背景颜色",
|
||||||
|
@ -2255,8 +2261,8 @@
|
||||||
"DE.Views.TableSettings.txtTable_ListTable": "列表表",
|
"DE.Views.TableSettings.txtTable_ListTable": "列表表",
|
||||||
"DE.Views.TableSettings.txtTable_PlainTable": "简单的表",
|
"DE.Views.TableSettings.txtTable_PlainTable": "简单的表",
|
||||||
"DE.Views.TableSettings.txtTable_TableGrid": "表格的网格",
|
"DE.Views.TableSettings.txtTable_TableGrid": "表格的网格",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlign": "校准",
|
"DE.Views.TableSettingsAdvanced.textAlign": "对齐",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlignment": "校准",
|
"DE.Views.TableSettingsAdvanced.textAlignment": "对齐",
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "细胞之间的距离",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "细胞之间的距离",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlt": "替代文本",
|
"DE.Views.TableSettingsAdvanced.textAlt": "替代文本",
|
||||||
"DE.Views.TableSettingsAdvanced.textAltDescription": "说明",
|
"DE.Views.TableSettingsAdvanced.textAltDescription": "说明",
|
||||||
|
@ -2350,7 +2356,7 @@
|
||||||
"DE.Views.TextArtSettings.tipAddGradientPoint": "新增渐变点",
|
"DE.Views.TextArtSettings.tipAddGradientPoint": "新增渐变点",
|
||||||
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "删除渐变点",
|
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "删除渐变点",
|
||||||
"DE.Views.TextArtSettings.txtNoBorders": "无线条",
|
"DE.Views.TextArtSettings.txtNoBorders": "无线条",
|
||||||
"DE.Views.Toolbar.capBtnAddComment": "添加评论",
|
"DE.Views.Toolbar.capBtnAddComment": "添加批注",
|
||||||
"DE.Views.Toolbar.capBtnBlankPage": "空白页",
|
"DE.Views.Toolbar.capBtnBlankPage": "空白页",
|
||||||
"DE.Views.Toolbar.capBtnColumns": "列",
|
"DE.Views.Toolbar.capBtnColumns": "列",
|
||||||
"DE.Views.Toolbar.capBtnComment": "批注",
|
"DE.Views.Toolbar.capBtnComment": "批注",
|
||||||
|
@ -2454,7 +2460,7 @@
|
||||||
"DE.Views.Toolbar.textTabHome": "主页",
|
"DE.Views.Toolbar.textTabHome": "主页",
|
||||||
"DE.Views.Toolbar.textTabInsert": "插入",
|
"DE.Views.Toolbar.textTabInsert": "插入",
|
||||||
"DE.Views.Toolbar.textTabLayout": "布局",
|
"DE.Views.Toolbar.textTabLayout": "布局",
|
||||||
"DE.Views.Toolbar.textTabLinks": "参考",
|
"DE.Views.Toolbar.textTabLinks": "引用",
|
||||||
"DE.Views.Toolbar.textTabProtect": "保护",
|
"DE.Views.Toolbar.textTabProtect": "保护",
|
||||||
"DE.Views.Toolbar.textTabReview": "审阅",
|
"DE.Views.Toolbar.textTabReview": "审阅",
|
||||||
"DE.Views.Toolbar.textTitleError": "错误",
|
"DE.Views.Toolbar.textTitleError": "错误",
|
||||||
|
|
|
@ -169,10 +169,11 @@
|
||||||
"src": "UsageInstructions/InsertContentControls.htm",
|
"src": "UsageInstructions/InsertContentControls.htm",
|
||||||
"name": "Inhaltssteuerelemente einfügen"
|
"name": "Inhaltssteuerelemente einfügen"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "UsageInstructions/CreateTableOfContents.htm",
|
"src": "UsageInstructions/CreateTableOfContents.htm",
|
||||||
"name": "Inhaltsverzeichnis erstellen"
|
"name": "Inhaltsverzeichnis erstellen"
|
||||||
},
|
},
|
||||||
|
{"src": "UsageInstructions/AddTableofFigures.htm", "name": "Abbildungsverzeichnis hinzufügen und formatieren" },
|
||||||
{
|
{
|
||||||
"src": "UsageInstructions/AlignArrangeObjects.htm",
|
"src": "UsageInstructions/AlignArrangeObjects.htm",
|
||||||
"name": "Objekte auf einer Seite anordnen und ausrichten"
|
"name": "Objekte auf einer Seite anordnen und ausrichten"
|
||||||
|
|
|
@ -25,11 +25,13 @@
|
||||||
</div>
|
</div>
|
||||||
<p>Auf dieser Registerkarte können Sie:</p>
|
<p>Auf dieser Registerkarte können Sie:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Ein <a href="../UsageInstructions/CreateTableOfContents.htm" onclick="onhyperlinkclick(this)">Inhaltsverzeichnis</a> erstellen und aktualisieren,</li>
|
<li>ein <a href="../UsageInstructions/CreateTableOfContents.htm" onclick="onhyperlinkclick(this)">Inhaltsverzeichnis</a> erstellen und aktualisieren,</li>
|
||||||
<li><a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">Fußnoten</a> einfügen,</li>
|
<li><a href="../UsageInstructions/InsertFootnotes.htm" onclick="onhyperlinkclick(this)">Fußnoten</a> und <a href="../UsageInstructions/InsertEndnotes.htm">Endnoten</a> einfügen,</li>
|
||||||
<li><a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">Verknüpfungen</a> einfügen,</li>
|
<li><a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">Hyperlinks</a> einfügen,</li>
|
||||||
<li><a href="../UsageInstructions/InsertBookmarks.htm" onclick="onhyperlinkclick(this)">Lesezeichen</a> hinzufügen,</li>
|
<li><a href="../UsageInstructions/InsertBookmarks.htm" onclick="onhyperlinkclick(this)">Lesezeichen</a> hinzufügen,</li>
|
||||||
<li><a href="../UsageInstructions/Addcaption.htm" onclick="onhyperlinkclick(this)">Bildbeschriftungen</a> hinzufügen.</li>
|
<li><a href="../UsageInstructions/Addcaption.htm" onclick="onhyperlinkclick(this)">Bildbeschriftungen</a> hinzufügen,</li>
|
||||||
|
<li><a href="../UsageInstructions/InsertCrossReference.htm" onclick="onhyperlinkclick(this)">Querverweise</a> einfügen,</li>
|
||||||
|
<li><a href="../UsageInstructions/AddTableofFigures.htm" onclick="onhyperlinkclick(this)">Abbildungsverzeichnisse</a> erstellen.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -0,0 +1,93 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Abbildungsverzeichnis hinzufügen und formatieren</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="Abbildungsverzeichnis hinzufügen, formatieren und aktualisieren: Mit Objekten und Stilen" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||||
|
<script type="text/javascript" src="../callback.js"></script>
|
||||||
|
<script type="text/javascript" src="../search/js/page-search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="mainpart">
|
||||||
|
<div class="search-field">
|
||||||
|
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Abbildungsverzeichnis hinzufügen und formatieren</h1>
|
||||||
|
<p><b>Abbildungsverzeichnis</b> bietet einen Überblick über Gleichungen, Abbildungen und Tabellen, die einem Dokument hinzugefügt wurden. Ähnlich wie bei einem Inhaltsverzeichnis werden in einem <b>Abbildungsverzeichnis</b> Objekte oder Textüberschriften mit einem bestimmten Stil aufgelistet, sortiert und angeordnet. Dies macht es einfach, sie in Ihrem Dokument zu referenzieren und zwischen Abbildungen zu navigieren. Klicken Sie auf den Link im als Links formatierten <b>Abbildungsverzeichnis</b>, und Sie werden direkt zur Abbildung oder Überschrift weitergeleitet. Alle Tabellen, Gleichungen, Diagramme, Zeichnungen, Schaubilder, Fotos oder anderen Arten von Illustration werden als Abbildungen dargestellt.
|
||||||
|
<p><img alt="Registerkarte Verweise" src="../images/referencestab.png" /></p>
|
||||||
|
<p>Um ein <b>Abbildungsverzeichnis</b> hinzuzufügen, öffnen Sie die Registerkarte <b>Verweise</b> und klicken Sie auf das Symbol <b>Abbildungsverzeichnis</b> <img alt="Abbildungsverzeichnus Schaltfläche" src="../images/table_figures_button.png" />, um ein Abbildungsverzeichnis zu erstellen und formatieren. Verwenden Sie die Schaltfläche <b>Aktualisieren</b>, um das Abbildungsverzeichnis jedes Mal zu aktualisieren, wenn Sie Ihrem Dokument eine neue Abbildung hinzufügen.</p>
|
||||||
|
<h2>Abbildungsverzeichnis erstellen</h2>
|
||||||
|
<p class="note"><b>Hinweis:</b> Sie können ein Abbildungsverzeichnis entweder mit Beschriftungen oder mit Stilen erstellen. Eine <a href="../UsageInstructions/AddCaption.htm" onclick="onhyperlinkclick(this)">Beschriftung</a> soll jeder Gleichung, jedem Abbildungsverzeichnis hinzugefügt werden, oder ein <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">Stil</a> soll auf dem Text angewendet werden, damit der Text korrekt in ein Abbildungsverzeichnis aufgenommen ist.</p>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
Wenn Sie Beschriftungen oder Stile hinzugefügt haben, positionieren Sie den Cursor an der Stelle, an der Sie ein <b>Abbildungsverzeichnis</b> einfügen möchten, und wechseln Sie zur Registerkarte <b>Verweise</b>. Klicken Sie auf die Schaltfläche <b>Abbildungsverzeichnis</b>, um das Dialogfeld <b>Abbildungsverzeichnis</b> zu öffnen und eine Liste der Abbildungen zu erstellen.
|
||||||
|
<p><img alt="Abbildungsverzeichnis - Einstellungen" src="../images/table_figures_settings.png" /></p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Wählen Sie eine Option zum Erstellen eines <b>Abbildungsverzeichnisses</b> aus <b>Beschriftungen</b> oder <b>Stilen</b>.
|
||||||
|
<ul style="list-style-type:disc">
|
||||||
|
<li>
|
||||||
|
Sie können ein Abbildungsverzeichnis basierend auf beschrifteten Objekten erstellen. Aktivieren Sie das Kontrollkästchen <b>Beschriftung</b> und wählen Sie ein beschriftetes Objekt aus der Dropdown-Liste aus:
|
||||||
|
<ul style="list-style-type:circle">
|
||||||
|
<li>Kein</li>
|
||||||
|
<li>Gleichung</li>
|
||||||
|
<li>Abbildung</li>
|
||||||
|
<li>
|
||||||
|
Tabelle
|
||||||
|
<p><img alt="Abbildungsverzeichnis - Beschriftet" src="../images/table_figures_captioned.png" /></p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>Sie können ein <b>Abbildungsverzeichnis</b> basierend auf den Stilen erstellen, die zur Textformatierung verwendet sind. Aktivieren Sie das Kontrollkästchen <b>Stil</b> und wählen Sie einen Stil aus der Dropdown-Liste aus. Die Liste der Optionen kann je nach angewendetem Stil variieren:
|
||||||
|
<ul style="list-style-type:circle">
|
||||||
|
<li>Überschrift 1</li>
|
||||||
|
<li>Überschrift 2</li>
|
||||||
|
<li>Beschriftung</li>
|
||||||
|
<li>Abbildungsverzeichnis</li>
|
||||||
|
<li>
|
||||||
|
Normal
|
||||||
|
<p><img alt="Abbildungsverzeichnis - Stil" src="../images/table_figures_style.png" /></p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h2>Abbildungsverzeichnis formatieren</h2>
|
||||||
|
<p>Mit den Kontrollkästchenoptionen können Sie ein <b>Abbildungsverzeichnis</b> formatieren. Alle Kontrollkästchen für Formatierung sind standardmäßig aktiviert, da es in den meisten Fällen am vernünftigsten ist. Deaktivieren Sie die Kontrollkästchen, die Sie nicht benötigen.</p>
|
||||||
|
<ul style="list-style-type:none">
|
||||||
|
<li><b>Seitenzahlen anzeigen</b>: Um die Seitenzahl anzuzeigen, auf der die Abbildung ist;</li>
|
||||||
|
<li><b>Seitenzahlen rechtsbündig</b>: Um Seitenzahlen rechts anzuzeigen, wenn <b>Seitenzahlen anzeigen</b> aktiv ist; deaktivieren Sie diese Option, um Seitenzahlen direkt nach dem Titel anzuzeigen;</li>
|
||||||
|
<li><b>Inhaltsverzeichnis als Links formatieren</b>: Um Hyperlinks dem <b>Abbildungsverzeichnis</b> hinzuzufügen;</li>
|
||||||
|
<li><b>Bezeichnung und Nummer einschließen</b>: Um dem Abbildungsverzeichnis eine Bezeichnung und eine Nummer hinzuzufügen.</li>
|
||||||
|
</ul>
|
||||||
|
<ul style="list-style-type:disc">
|
||||||
|
<li>Wählen Sie den Füllzeichen-Stil aus der Dropdown-Liste, um Titel mit Seitenzahlen für eine bessere Visualisierung zu verbinden.</li>
|
||||||
|
<li>
|
||||||
|
Passen Sie die Textstile des Abbildungsverzeichnisses an, indem Sie einen der verfügbaren Stile aus der Dropdown-Liste auswählen:
|
||||||
|
<ul style="list-style-type:circle">
|
||||||
|
<li><b>Aktuell</b> - zeigt den zuvor ausgewählten Stil an.</li>
|
||||||
|
<li><b>Einfach</b> - hebt Text als fett hervor.</li>
|
||||||
|
<li><b>Online</b> - hebt Text als Hyperlink hervor und ordnet ihn an.</li>
|
||||||
|
<li><b>Klassisch</b> - macht alle Buchstaben als Großbuchstaben.</li>
|
||||||
|
<li><b>Elegant</b> - hebt Text als kursiv hervor.</li>
|
||||||
|
<li><b>Zentriert</b> - zentriert den Text und zeigt kein Füllzeichen an.</li>
|
||||||
|
<li><b>Formell</b> - zeigt Text in 11 pt Arial an, um eine formellere Darstellung zu haben.</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>Das Vorschaufenster zeigt an, wie das Abbildungsverzeichnis im Dokument oder beim Drucken angezeigt wird.</li>
|
||||||
|
</ul>
|
||||||
|
<h2>Abbildungsverzeichnis aktualisieren</h2>
|
||||||
|
<p>Aktualisieren Sie ein <b>Abbildungsverzeichnis</b> jedes Mal, wenn Sie Ihrem Dokument eine neue Gleichung, Abbildung oder Tabelle hinzufügen. Die Schaltfläche <b>Aktualisieren</b> wird aktiv, wenn Sie auf das Abbildungsverzeichnis klicken oder es auswählen. Klicken Sie auf der Registerkarte <b>Verweise</b> in der oberen Symbolleiste auf die Schaltfläche <b>Aktualisieren</b> <img alt="Aktualisieren" src="../images/refresh_button.png"> und wählen Sie die gewünschte Option aus dem Menü:</p>
|
||||||
|
<img alt="Aktualisieren - Pop-Up" src="../images/refresh_table-figures_popup.png" />
|
||||||
|
<ul style="list-style-type:disc">
|
||||||
|
<li><b>Nur Seitenzahlen aktualisieren</b> - um Seitenzahlen zu aktualisieren, ohne Änderungen an den Überschriften vorzunehmen.</li>
|
||||||
|
<li><b>Gesamtes Verzeichnis aktualisieren</b> - um alle geänderten Überschriften und Seitenzahlen zu aktualisieren.</li>
|
||||||
|
</ul>
|
||||||
|
<p>Klicken Sie auf <b>OK</b></p>
|
||||||
|
<p>oder</p>
|
||||||
|
<p>Klicken Sie mit der rechten Maustaste auf das <b>Abbildungsverzeichnis</b> in Ihrem Dokument, um das Kontextmenü zu öffnen, und wählen Sie die Option <b>Feld aktualisieren</b>, um das <b>Abbildungsverzeichnis</b> zu aktualisieren.</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -14,8 +14,10 @@
|
||||||
<input id="search" class="searchBar" placeholder="Suche" type="text" onkeypress="doSearch(event)">
|
<input id="search" class="searchBar" placeholder="Suche" type="text" onkeypress="doSearch(event)">
|
||||||
</div>
|
</div>
|
||||||
<h1>Inhaltssteuerelemente einfügen</h1>
|
<h1>Inhaltssteuerelemente einfügen</h1>
|
||||||
<p>Mithilfe von Inhaltssteuerelementen können Sie ein Formular mit Eingabefeldern erstellen, die von anderen Benutzern ausgefüllt werden können; oder Sie können Teile des Dokuments davor schützen, bearbeitet oder gelöscht zu werden. Inhaltssteuerelemente sind Objekte die Text enthalten, der formatiert werden kann. Inhaltssteuerelemente für einfachen Text können nur einen Absatz enthalten, während Steuerelemente für Rich-Text-Inhalte mehrere Absätze, Listen und Objekte (Bilder, Formen, Tabellen usw.) enthalten können.</p>
|
<p>Inhaltssteuerelemente sind Objekte, die verschiedene Arten von Inhalten haben, z.B. Text, Objekte usw. Abhängig vom ausgewählten Inhaltssteuerelementtyp können Sie mithilfe des verfügbaren Arrays für Inhaltssteuerelemente an Dokumenten zusammenarbeiten oder die Inhaltssteuerelemente sperren, die nicht weiter bearbeitet werden sollen, oder diejenigen entsperren, die Eingaben Ihrer Kollegen erfordern. Inhaltssteuerelemente werden normalerweise verwendet, um das Sammeln und Verarbeiten von Daten zu erleichtern oder um die erforderlichen Grenzen für Dokumente festzulegen, die von anderen Benutzern bearbeitet wurden.</p>
|
||||||
<h3>Inhaltssteuerelemente hinzufügen</h3>
|
<p>Mit ONLYOFFICE Dokumenteneditor können Sie <b>klassische</b> Inhaltssteuerelemente einfügen, d.h. diese Elemente sind vollständig <b>abwärtskompatibel</b> mit Textverarbeitungsanlagen von Drittanbietern wie Microsoft Word.</p>
|
||||||
|
<p>ONLYOFFICE Dokumenteneditor unterstützt die folgenden klassischen Inhaltssteuerelemente: <em>Einfacher Text</em>, <em>Rich-Text</em>, <em>Bild</em>, <em>Kombinationsfeld</em>, <em>Dropdownliste</em>, <em>Datum und Kontrollkästchen</em>.</p>
|
||||||
|
<h3>Inhaltssteuerelemente hinzufügen</h3>
|
||||||
<p>Neues <b>Inhaltssteuerelement für einfachen Text</b> erstellen:</p>
|
<p>Neues <b>Inhaltssteuerelement für einfachen Text</b> erstellen:</p>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Positionieren Sie den Einfügepunkt innerhalb einer Textzeile, in die das Steuerelement eingefügt werden soll<br />oder wählen Sie eine Textpassage aus, die Sie zum Steuerungsinhalt machen wollen.</li>
|
<li>Positionieren Sie den Einfügepunkt innerhalb einer Textzeile, in die das Steuerelement eingefügt werden soll<br />oder wählen Sie eine Textpassage aus, die Sie zum Steuerungsinhalt machen wollen.</li>
|
||||||
|
|
Before Width: | Height: | Size: 416 B After Width: | Height: | Size: 273 B |
Before Width: | Height: | Size: 97 B After Width: | Height: | Size: 209 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 275 B |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 116 B |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 141 B After Width: | Height: | Size: 208 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 106 B |
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 100 B |
|
@ -5,7 +5,6 @@
|
||||||
{"src": "ProgramInterface/InsertTab.htm", "name": "Insert tab"},
|
{"src": "ProgramInterface/InsertTab.htm", "name": "Insert tab"},
|
||||||
{"src": "ProgramInterface/LayoutTab.htm", "name": "Layout tab" },
|
{"src": "ProgramInterface/LayoutTab.htm", "name": "Layout tab" },
|
||||||
{ "src": "ProgramInterface/ReferencesTab.htm", "name": "References tab" },
|
{ "src": "ProgramInterface/ReferencesTab.htm", "name": "References tab" },
|
||||||
{"src": "ProgramInterface/FormsTab.htm", "name": "Forms tab"},
|
|
||||||
{"src": "ProgramInterface/ReviewTab.htm", "name": "Collaboration tab"},
|
{"src": "ProgramInterface/ReviewTab.htm", "name": "Collaboration tab"},
|
||||||
{"src": "ProgramInterface/PluginsTab.htm", "name": "Plugins tab"},
|
{"src": "ProgramInterface/PluginsTab.htm", "name": "Plugins tab"},
|
||||||
{"src": "UsageInstructions/OpenCreateNew.htm", "name": "Create a new document or open an existing one", "headername": "Basic operations"},
|
{"src": "UsageInstructions/OpenCreateNew.htm", "name": "Create a new document or open an existing one", "headername": "Basic operations"},
|
||||||
|
@ -52,7 +51,6 @@
|
||||||
{"src": "UsageInstructions/InsertContentControls.htm", "name": "Insert content controls" },
|
{"src": "UsageInstructions/InsertContentControls.htm", "name": "Insert content controls" },
|
||||||
{ "src": "UsageInstructions/CreateTableOfContents.htm", "name": "Create table of contents" },
|
{ "src": "UsageInstructions/CreateTableOfContents.htm", "name": "Create table of contents" },
|
||||||
{"src": "UsageInstructions/AddTableofFigures.htm", "name": "Add and Format a Table of Figures" },
|
{"src": "UsageInstructions/AddTableofFigures.htm", "name": "Add and Format a Table of Figures" },
|
||||||
{ "src": "UsageInstructions/CreateFillableForms.htm", "name": "Create fillable forms", "headername": "Fillable forms" },
|
|
||||||
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge", "headername": "Mail Merge"},
|
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge", "headername": "Mail Merge"},
|
||||||
{ "src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" },
|
{ "src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations", "headername": "Math equations" },
|
||||||
{"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative document editing", "headername": "Document co-editing"},
|
{"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative document editing", "headername": "Document co-editing"},
|
||||||
|
|
|
@ -51,6 +51,19 @@
|
||||||
<li>Choose <b>As Windows</b> if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting.</li>
|
<li>Choose <b>As Windows</b> if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting.</li>
|
||||||
<li>Choose <b>As OS X</b> if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all.</li>
|
<li>Choose <b>As OS X</b> if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all.</li>
|
||||||
<li>Choose <b>Native</b> if you want your text to be displayed with the hinting embedded into font files.</li>
|
<li>Choose <b>Native</b> if you want your text to be displayed with the hinting embedded into font files.</li>
|
||||||
|
<li>
|
||||||
|
<b>Default cache mode</b> - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs.
|
||||||
|
<p>The Document Editor has two cache modes:</p>
|
||||||
|
<ol>
|
||||||
|
<li>In the <b>first cache mode</b>, each letter is cached as a separate picture.</li>
|
||||||
|
<li>In the <b>second cache mode</b>, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc.</li>
|
||||||
|
</ol>
|
||||||
|
<p>The <b>Default cache mode</b> setting applies two above mentioned cache modes separately for different browsers:</p>
|
||||||
|
<ul>
|
||||||
|
<li>When the <b>Default cache mode</b> setting is enabled, Internet Explorer (v. 9, 10, 11) uses the <b>second cache mode</b>, other browsers use the <b>first cache mode</b>.</li>
|
||||||
|
<li>When the <b>Default cache mode</b> setting is disabled, Internet Explorer (v. 9, 10, 11) uses the <b>first cache mode</b>, other browsers use the <b>second cache mode</b>.</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><b>Unit of Measurement</b> is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the <b>Centimeter</b>, <b>Point</b>, or <b>Inch</b> option.</li>
|
<li><b>Unit of Measurement</b> is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the <b>Centimeter</b>, <b>Point</b>, or <b>Inch</b> option.</li>
|
||||||
|
|
|
@ -243,7 +243,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Navigate between controls in modal dialogues</td>
|
<td>Navigate between controls in modal dialogues</td>
|
||||||
<td><kbd>Tab</kbd>/<kbd>Shift</kbd>+<kbd>Tab</kbd></td>
|
<td><kbd>↹ Tab</kbd>/<kbd>⇧ Shift</kbd>+<kbd>↹ Tab</kbd></td>
|
||||||
<td><kbd>↹ Tab</kbd>/<kbd>⇧ Shift</kbd>+<kbd>↹ Tab</kbd></td>
|
<td><kbd>↹ Tab</kbd>/<kbd>⇧ Shift</kbd>+<kbd>↹ Tab</kbd></td>
|
||||||
<td>Navigate between controls to give focus to the next or previous control in modal dialogues.</td>
|
<td>Navigate between controls to give focus to the next or previous control in modal dialogues.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -37,8 +37,8 @@
|
||||||
<p>The <b>Zoom</b> buttons are situated in the right lower corner and are used to zoom in and out the current document.
|
<p>The <b>Zoom</b> buttons are situated in the right lower corner and are used to zoom in and out the current document.
|
||||||
To change the currently selected zoom value that is displayed in percent, click it and select one of the available zoom options from the list
|
To change the currently selected zoom value that is displayed in percent, click it and select one of the available zoom options from the list
|
||||||
or use the <b>Zoom in</b> <img alt="Zoom in button" src="../images/zoomin.png" /> or <b>Zoom out</b> <img alt="Zoom out button" src="../images/zoomout.png" /> buttons.
|
or use the <b>Zoom in</b> <img alt="Zoom in button" src="../images/zoomin.png" /> or <b>Zoom out</b> <img alt="Zoom out button" src="../images/zoomout.png" /> buttons.
|
||||||
Click the <b>Fit width</b> <img alt="Fit width button" src="../images/fitwidth.png" /> icon to fit the document page width to the visible part of the working area.
|
Click the <b>Fit to width</b> <img alt="Fit to width button" src="../images/fitwidth.png" /> icon to fit the document page width to the visible part of the working area.
|
||||||
To fit the whole document page to the visible part of the working area, click the <b>Fit page</b> <img alt="Fit page button" src="../images/fitpage.png" /> icon.
|
To fit the whole document page to the visible part of the working area, click the <b>Fit to page</b> <img alt="Fit to page button" src="../images/fitpage.png" /> icon.
|
||||||
Zoom settings are also available in the <b>View settings</b> <img alt="View settings icon" src="../images/viewsettingsicon.png" /> drop-down list that can be useful if you decide to hide the <b>Status Bar</b>.</p>
|
Zoom settings are also available in the <b>View settings</b> <img alt="View settings icon" src="../images/viewsettingsicon.png" /> drop-down list that can be useful if you decide to hide the <b>Status Bar</b>.</p>
|
||||||
<p>The <b>Page Number Indicator</b> shows the current page as a part of all the pages in the current document (page 'n' of 'nn').
|
<p>The <b>Page Number Indicator</b> shows the current page as a part of all the pages in the current document (page 'n' of 'nn').
|
||||||
Click this caption to open the window where you can enter the page number and quickly go to it.</p>
|
Click this caption to open the window where you can enter the page number and quickly go to it.</p>
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
<li class="onlineDocumentFeatures"><img alt="Manage document access rights icon" src="../images/access_rights.png" /> <b>Manage document access rights</b> (available in the <em>online version</em> only). It allows adjusting <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">access rights</a> for the documents stored in the cloud.</li>
|
<li class="onlineDocumentFeatures"><img alt="Manage document access rights icon" src="../images/access_rights.png" /> <b>Manage document access rights</b> (available in the <em>online version</em> only). It allows adjusting <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">access rights</a> for the documents stored in the cloud.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>The <b>Top toolbar</b> displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: <a href="../ProgramInterface/FileTab.htm" onclick="onhyperlinkclick(this)">File</a>, <a href="../ProgramInterface/HomeTab.htm" onclick="onhyperlinkclick(this)">Home</a>, <a href="../ProgramInterface/InsertTab.htm" onclick="onhyperlinkclick(this)">Insert</a>, <a href="../ProgramInterface/LayoutTab.htm" onclick="onhyperlinkclick(this)">Layout</a>, <a href="../ProgramInterface/ReferencesTab.htm" onclick="onhyperlinkclick(this)">References</a>, <a href="../ProgramInterface/FormsTab.htm" onclick="onhyperlinkclick(this)">Forms</a>, <a href="../ProgramInterface/ReviewTab.htm" onclick="onhyperlinkclick(this)">Collaboration</a>, <span class="desktopDocumentFeatures">Protection,</span> <a href="../ProgramInterface/PluginsTab.htm" onclick="onhyperlinkclick(this)">Plugins</a>.
|
<li>The <b>Top toolbar</b> displays a set of editing commands depending on the selected menu tab. Currently, the following tabs are available: <a href="../ProgramInterface/FileTab.htm" onclick="onhyperlinkclick(this)">File</a>, <a href="../ProgramInterface/HomeTab.htm" onclick="onhyperlinkclick(this)">Home</a>, <a href="../ProgramInterface/InsertTab.htm" onclick="onhyperlinkclick(this)">Insert</a>, <a href="../ProgramInterface/LayoutTab.htm" onclick="onhyperlinkclick(this)">Layout</a>, <a href="../ProgramInterface/ReferencesTab.htm" onclick="onhyperlinkclick(this)">References</a>, <a href="../ProgramInterface/ReviewTab.htm" onclick="onhyperlinkclick(this)">Collaboration</a>, <span class="desktopDocumentFeatures">Protection,</span> <a href="../ProgramInterface/PluginsTab.htm" onclick="onhyperlinkclick(this)">Plugins</a>.
|
||||||
<p>The <img alt="Copy icon" src="../images/copy.png" /> <b>Copy</b> and <img alt="Paste icon" src="../images/paste.png" /> <b>Paste</b> options are always available on the left side of the <b>Top toolbar</b> regardless of the selected tab.</p>
|
<p>The <img alt="Copy icon" src="../images/copy.png" /> <b>Copy</b> and <img alt="Paste icon" src="../images/paste.png" /> <b>Paste</b> options are always available on the left side of the <b>Top toolbar</b> regardless of the selected tab.</p>
|
||||||
</li>
|
</li>
|
||||||
<li>The <b>Status bar</b> located at the bottom of the editor window indicates the page number and displays some notifications (for example, "All changes saved", etc.). It also allows <a href="../HelpfulHints/SpellChecking.htm" onclick="onhyperlinkclick(this)">setting the text language, enabling spell checking</a>, turning on the <a href="../HelpfulHints/Review.htm" onclick="onhyperlinkclick(this)">track changes mode</a> and adjusting <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">zoom</a>.</li>
|
<li>The <b>Status bar</b> located at the bottom of the editor window indicates the page number and displays some notifications (for example, "All changes saved", etc.). It also allows <a href="../HelpfulHints/SpellChecking.htm" onclick="onhyperlinkclick(this)">setting the text language, enabling spell checking</a>, turning on the <a href="../HelpfulHints/Review.htm" onclick="onhyperlinkclick(this)">track changes mode</a> and adjusting <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">zoom</a>.</li>
|
||||||
|
|
|
@ -27,21 +27,21 @@
|
||||||
<ul style = "list-style-type:disc">
|
<ul style = "list-style-type:disc">
|
||||||
<li>You can create a Table of Figures based on captioned objects. Check the Caption box and select a captioned object from the drop-down list:
|
<li>You can create a Table of Figures based on captioned objects. Check the Caption box and select a captioned object from the drop-down list:
|
||||||
<ul style = "list-style-type:circle">
|
<ul style = "list-style-type:circle">
|
||||||
<li>None</li>
|
<li>None;</li>
|
||||||
<li>Equation</li>
|
<li>Equation;</li>
|
||||||
<li>Figure</li>
|
<li>Figure;</li>
|
||||||
<li>Table
|
<li>Table.
|
||||||
<p><img alt="Table of Figures Captioned" src="../images/table_figures_captioned.png" /></p>
|
<p><img alt="Table of Figures Captioned" src="../images/table_figures_captioned.png" /></p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>You can create a <b>Table of Figures</b> based on the styles used to format text. Check the <b>Style</b> box and select a style from the drop-down list. The list of options may vary depending on the style applied:
|
<li>You can create a <b>Table of Figures</b> based on the styles used to format text. Check the <b>Style</b> box and select a style from the drop-down list. The list of options may vary depending on the style applied:
|
||||||
<ul style = "list-style-type:circle">
|
<ul style = "list-style-type:circle">
|
||||||
<li>Heading 1</li>
|
<li>Heading 1;</li>
|
||||||
<li>Heading 2</li>
|
<li>Heading 2;</li>
|
||||||
<li>Caption</li>
|
<li>Caption;</li>
|
||||||
<li>Table of Figures</li>
|
<li>Table of Figures;</li>
|
||||||
<li>Normal
|
<li>Normal.
|
||||||
<p><img alt="Table of Figures Style" src="../images/table_figures_style.png" /></p>
|
<p><img alt="Table of Figures Style" src="../images/table_figures_style.png" /></p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -59,18 +59,15 @@
|
||||||
</ul>
|
</ul>
|
||||||
<ul style = "list-style-type:disc">
|
<ul style = "list-style-type:disc">
|
||||||
<li>Choose the Leader style from the drop-down list to connect titles to page numbers for a better visualization.</li>
|
<li>Choose the Leader style from the drop-down list to connect titles to page numbers for a better visualization.</li>
|
||||||
<li>Choose the Leader style from the drop-down list to connect titles to page numbers for a better visualization.</li>
|
|
||||||
<li>Customize the table of figures text styles by choosing one of the available styles from the drop-down list:
|
<li>Customize the table of figures text styles by choosing one of the available styles from the drop-down list:
|
||||||
<ul style = "list-style-type:circle">
|
<ul style = "list-style-type:circle">
|
||||||
<li><b>Current</b> - displays the style chosen previously.</li>
|
<li><b>Current</b> - displays the style chosen previously.</li>
|
||||||
<li><b>Simple</b> - highlights text in bold.</li>
|
<li><b>Simple</b> - highlights text in bold.</li>
|
||||||
<li><b>Simple</b> - highlights text in bold.</li>
|
<li><b>Online</b> - highlights and arranges text as a hyperlink.</li>
|
||||||
<li><b>Online</b> - highlights and arranges text as a hyperlink</li>
|
<li><b>Classic</b> - makes the text all caps.</li>
|
||||||
<li><b>Classic</b> - makes the text all caps</li>
|
<li><b>Distinctive</b> - highlights text in italic.</li>
|
||||||
<li><b>Distinctive</b> - highlights text in italic</li>
|
<li><b>Centered</b> - centers the text and displays no leader.</li>
|
||||||
<li><b>Distinctive</b> - highlights text in italic</li>
|
<li><b>Formal</b> - displays text in 11 pt Arial to give a more formal look.</li>
|
||||||
<li><b>Centered</b> - centers the text and displays no leader</li>
|
|
||||||
<li><b>Formal</b> - displays text in 11 pt Arial to give a more formal look</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>Preview window displays how the Table of Figures appears in the document or when printed.</li>
|
<li>Preview window displays how the Table of Figures appears in the document or when printed.</li>
|
||||||
|
|
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 273 B |
Before Width: | Height: | Size: 97 B After Width: | Height: | Size: 209 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 273 B |
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 105 KiB |