Merge branch feature/window-refactoring into develop
This commit is contained in:
commit
bd44f6b773
|
@ -63,6 +63,12 @@
|
|||
* @cfg {Boolean} animate
|
||||
* Makes the window to animate while showing or hiding
|
||||
*
|
||||
* @cfg {Object} buttons
|
||||
* Use an array for predefined buttons (ok, cancel, yes, no): @example ['yes', 'no']
|
||||
* Use a named array for the custom buttons: {value: caption, ...}
|
||||
* @param {String} value will be returned in callback function
|
||||
* @param {String} caption
|
||||
*
|
||||
* Methods
|
||||
*
|
||||
* @method show
|
||||
|
@ -106,12 +112,6 @@
|
|||
* @window Common.UI.warning
|
||||
* Shows warning message.
|
||||
* @cfg {String} msg
|
||||
* @cfg {Object} buttons
|
||||
* Use an array for predefined buttons (ok, cancel, yes, no): @example ['yes', 'no']
|
||||
* Use a named array for the custom buttons: {value: caption, ...}
|
||||
* @param {String} value will be returned in callback function
|
||||
* @param {String} caption
|
||||
*
|
||||
* @cfg {Function} callback
|
||||
* @param {String} button
|
||||
* If the window is closed via shortcut or header's close tool, the 'button' will be 'close'
|
||||
|
@ -167,7 +167,15 @@ define([
|
|||
'<div class="title"><%= title %></div> ' +
|
||||
'</div>' +
|
||||
'<% } %>' +
|
||||
'<div class="body"><%= tpl %></div>' +
|
||||
'<div class="body"><%= tpl %>' +
|
||||
'<% if (typeof (buttons) !== "undefined" && _.size(buttons) > 0) { %>' +
|
||||
'<div class="footer">' +
|
||||
'<% for(var bt in buttons) { %>' +
|
||||
'<button class="btn normal dlg-btn <%= buttons[bt].cls %>" result="<%= bt %>"><%= buttons[bt].text %></button>'+
|
||||
'<% } %>' +
|
||||
'</div>' +
|
||||
'<% } %>' +
|
||||
'</div>' +
|
||||
'</div>';
|
||||
|
||||
function _getMask() {
|
||||
|
@ -399,31 +407,9 @@ define([
|
|||
|
||||
Common.UI.alert = function(options) {
|
||||
var me = this.Window.prototype;
|
||||
var arrBtns = {ok: me.okButtonText, cancel: me.cancelButtonText,
|
||||
yes: me.yesButtonText, no: me.noButtonText,
|
||||
close: me.closeButtonText};
|
||||
|
||||
if (!options.buttons) {
|
||||
options.buttons = {};
|
||||
options.buttons['ok'] = {text: arrBtns['ok'], cls: 'primary'};
|
||||
} else {
|
||||
if (_.isArray(options.buttons)) {
|
||||
if (options.primary==undefined)
|
||||
options.primary = 'ok';
|
||||
var newBtns = {};
|
||||
_.each(options.buttons, function(b){
|
||||
if (typeof(b) == 'object') {
|
||||
if (b.value !== undefined)
|
||||
newBtns[b.value] = {text: b.caption, cls: 'custom' + ((b.primary || options.primary==b.value) ? ' primary' : '')};
|
||||
} else {
|
||||
newBtns[b] = {text: (b=='custom') ? options.customButtonText : arrBtns[b], cls: (options.primary==b) ? 'primary' : ''};
|
||||
if (b=='custom')
|
||||
newBtns[b].cls += ' custom';
|
||||
}
|
||||
});
|
||||
|
||||
options.buttons = newBtns;
|
||||
}
|
||||
options.buttons = ['ok'];
|
||||
}
|
||||
options.dontshow = options.dontshow || false;
|
||||
|
||||
|
@ -435,14 +421,7 @@ define([
|
|||
'<% if (dontshow) { %><div class="dont-show-checkbox"></div><% } %>' +
|
||||
'</div>' +
|
||||
'</div>' +
|
||||
'<% if (dontshow) { %><div class="separator horizontal" style="width: 100%;"/><% } %>' +
|
||||
'<% if (_.size(buttons) > 0) { %>' +
|
||||
'<div class="footer <% if (dontshow) { %> dontshow <% } %>">' +
|
||||
'<% for(var bt in buttons) { %>' +
|
||||
'<button class="btn normal dlg-btn <%= buttons[bt].cls %>" result="<%= bt %>"><%= buttons[bt].text %></button>'+
|
||||
'<% } %>' +
|
||||
'</div>' +
|
||||
'<% } %>';
|
||||
'<% if (dontshow) { %><div class="separator horizontal" style="width: 100%;"/><% } %>';
|
||||
|
||||
_.extend(options, {
|
||||
cls: 'alert',
|
||||
|
@ -500,7 +479,9 @@ define([
|
|||
|
||||
win.on({
|
||||
'render:after': function(obj){
|
||||
obj.getChild('.footer .dlg-btn').on('click', onBtnClick);
|
||||
var footer = obj.getChild('.footer');
|
||||
options.dontshow && footer.addClass('dontshow');
|
||||
footer.find('.dlg-btn').on('click', onBtnClick);
|
||||
chDontShow = new Common.UI.CheckBox({
|
||||
el: win.$window.find('.dont-show-checkbox'),
|
||||
labelText: win.textDontShow
|
||||
|
@ -572,6 +553,29 @@ define([
|
|||
this.initConfig = {};
|
||||
this.binding = {};
|
||||
|
||||
var arrBtns = {ok: this.okButtonText, cancel: this.cancelButtonText,
|
||||
yes: this.yesButtonText, no: this.noButtonText,
|
||||
close: this.closeButtonText};
|
||||
|
||||
if (options.buttons && _.isArray(options.buttons)) {
|
||||
if (options.primary==undefined)
|
||||
options.primary = 'ok';
|
||||
var newBtns = {};
|
||||
_.each(options.buttons, function(b){
|
||||
if (typeof(b) == 'object') {
|
||||
if (b.value !== undefined)
|
||||
newBtns[b.value] = {text: b.caption, cls: 'custom' + ((b.primary || options.primary==b.value) ? ' primary' : '')};
|
||||
} else {
|
||||
newBtns[b] = {text: (b=='custom') ? options.customButtonText : arrBtns[b], cls: (options.primary==b) ? 'primary' : ''};
|
||||
if (b=='custom')
|
||||
newBtns[b].cls += ' custom';
|
||||
}
|
||||
});
|
||||
|
||||
options.buttons = newBtns;
|
||||
options.footerCls = options.footerCls || 'center';
|
||||
}
|
||||
|
||||
_.extend(this.initConfig, config, options || {});
|
||||
|
||||
!this.initConfig.id && (this.initConfig.id = 'window-' + this.cid);
|
||||
|
@ -632,6 +636,8 @@ define([
|
|||
};
|
||||
Common.NotificationCenter.on('window:close', this.binding.winclose);
|
||||
|
||||
this.initConfig.footerCls && this.$window.find('.footer').addClass(this.initConfig.footerCls);
|
||||
|
||||
this.fireEvent('render:after',this);
|
||||
return this;
|
||||
},
|
||||
|
|
|
@ -51,7 +51,8 @@ define([
|
|||
cls: 'advanced-settings-dlg',
|
||||
toggleGroup: 'advanced-settings-group',
|
||||
contentTemplate: '',
|
||||
items: []
|
||||
items: [],
|
||||
buttons: ['ok', 'cancel']
|
||||
}, options);
|
||||
|
||||
this.template = options.template || [
|
||||
|
@ -64,11 +65,7 @@ define([
|
|||
'<div class="separator"/>',
|
||||
'<div class="content-panel" >' + _options.contentTemplate + '</div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
_options.tpl = _.template(this.template)(_options);
|
||||
|
@ -190,9 +187,6 @@ define([
|
|||
if (this.storageName)
|
||||
Common.localStorage.setItem(this.storageName, this.getActiveCategory());
|
||||
Common.UI.Window.prototype.close.call(this, suppressevent);
|
||||
},
|
||||
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText : 'Ok'
|
||||
}
|
||||
}, Common.Views.AdvancedSettingsWindow || {}));
|
||||
});
|
|
@ -50,12 +50,14 @@ define([
|
|||
options: {
|
||||
width : 500,
|
||||
height : 325,
|
||||
cls : 'modal-dlg copy-warning'
|
||||
cls : 'modal-dlg copy-warning',
|
||||
buttons: ['ok']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
_.extend(this.options, {
|
||||
title: this.textTitle
|
||||
title: this.textTitle,
|
||||
buttons: ['ok']
|
||||
}, options || {});
|
||||
|
||||
this.template = [
|
||||
|
@ -77,10 +79,7 @@ define([
|
|||
'</div>',
|
||||
'<div id="copy-warning-checkbox" style="margin-top: 20px; text-align: left;"></div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary">' + this.okButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
this.options.tpl = _.template(this.template)(this.options);
|
||||
|
|
|
@ -286,7 +286,6 @@ define([
|
|||
return false;
|
||||
},
|
||||
|
||||
cancelButtonText: 'Cancel',
|
||||
addButtonText: 'Add',
|
||||
textNew: 'New',
|
||||
textCurrent: 'Current',
|
||||
|
|
|
@ -61,7 +61,7 @@ define([
|
|||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer" style="text-align: center;">',
|
||||
'<button id="id-btn-diagram-editor-apply" class="btn normal dlg-btn primary custom" result="ok" style="margin-right: 10px;">' + this.textSave + '</button>',
|
||||
'<button id="id-btn-diagram-editor-apply" class="btn normal dlg-btn primary custom" result="ok">' + this.textSave + '</button>',
|
||||
'<button id="id-btn-diagram-editor-cancel" class="btn normal dlg-btn" result="cancel">' + this.textClose + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
|
|
@ -61,7 +61,7 @@ define([
|
|||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer" style="text-align: center;">',
|
||||
'<button id="id-btn-merge-editor-apply" class="btn normal dlg-btn primary custom" result="ok" style="margin-right: 10px;">' + this.textSave + '</button>',
|
||||
'<button id="id-btn-merge-editor-apply" class="btn normal dlg-btn primary custom" result="ok">' + this.textSave + '</button>',
|
||||
'<button id="id-btn-merge-editor-cancel" class="btn normal dlg-btn disabled" result="cancel">' + this.textClose + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
|
|
@ -46,7 +46,9 @@ define([
|
|||
options: {
|
||||
width: 330,
|
||||
header: false,
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel'],
|
||||
footerCls: 'right'
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -58,10 +60,6 @@ define([
|
|||
'<label>' + this.textUrl + '</label>',
|
||||
'</div>',
|
||||
'<div id="id-dlg-url" class="input-row"></div>',
|
||||
'</div>',
|
||||
'<div class="footer right">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -123,8 +121,6 @@ define([
|
|||
},
|
||||
|
||||
textUrl : 'Paste an image URL:',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText : 'Ok',
|
||||
txtEmpty : 'This field is required',
|
||||
txtNotUrl : 'This field should be a URL in the format \"http://www.example.com\"'
|
||||
}, Common.Views.ImageFromUrlDialog || {}));
|
||||
|
|
|
@ -51,7 +51,8 @@ define([
|
|||
height: 156,
|
||||
style: 'min-width: 230px;',
|
||||
cls: 'modal-dlg',
|
||||
split: false
|
||||
split: false,
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -67,10 +68,6 @@ define([
|
|||
'<div class="input-row" style="margin-top: 10px;">',
|
||||
'<label class="text rows-text" style="width: 130px;">' + this.txtRows + '</label><div class="rows-val" style="float: right;"></div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -138,8 +135,6 @@ define([
|
|||
txtColumns: 'Number of Columns',
|
||||
txtRows: 'Number of Rows',
|
||||
textInvalidRowsCols: 'You need to specify valid rows and columns count.',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtMinText: 'The minimum value for this field is {0}',
|
||||
txtMaxText: 'The maximum value for this field is {0}'
|
||||
}, Common.Views.InsertTableDialog || {}))
|
||||
|
|
|
@ -51,7 +51,9 @@ define([
|
|||
options: {
|
||||
header: false,
|
||||
width: 350,
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel'],
|
||||
footerCls: 'right'
|
||||
},
|
||||
|
||||
template: '<div class="box">' +
|
||||
|
@ -60,16 +62,11 @@ define([
|
|||
'</div>' +
|
||||
'<div class="input-row" id="id-document-language">' +
|
||||
'</div>' +
|
||||
'</div>' +
|
||||
'<div class="footer right">' +
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;"><%= btns.ok %></button>'+
|
||||
'<button class="btn normal dlg-btn" result="cancel"><%= btns.cancel %></button>'+
|
||||
'</div>',
|
||||
|
||||
initialize : function(options) {
|
||||
_.extend(this.options, options || {}, {
|
||||
label: this.labelSelect,
|
||||
btns: {ok: this.btnOk, cancel: this.btnCancel}
|
||||
label: this.labelSelect
|
||||
});
|
||||
this.options.tpl = _.template(this.template)(this.options);
|
||||
|
||||
|
@ -144,8 +141,6 @@ define([
|
|||
return false;
|
||||
},
|
||||
|
||||
labelSelect : 'Select document language',
|
||||
btnCancel : 'Cancel',
|
||||
btnOk : 'Ok'
|
||||
labelSelect : 'Select document language'
|
||||
}, Common.Views.LanguageDialog || {}))
|
||||
});
|
|
@ -435,8 +435,6 @@ define([
|
|||
this.updatePreview();
|
||||
},
|
||||
|
||||
okButtonText : "OK",
|
||||
cancelButtonText : "Cancel",
|
||||
txtDelimiter : "Delimiter",
|
||||
txtEncoding : "Encoding ",
|
||||
txtSpace : "Space",
|
||||
|
|
|
@ -59,7 +59,8 @@ define([
|
|||
header : true,
|
||||
cls : 'modal-dlg',
|
||||
contentTemplate : '',
|
||||
title : t.txtTitle
|
||||
title : t.txtTitle,
|
||||
buttons: ['ok', 'cancel']
|
||||
|
||||
}, options);
|
||||
|
||||
|
@ -77,11 +78,7 @@ define([
|
|||
'</div>',
|
||||
'<div id="id-repeat-txt" class="input-row"></div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right:10px;">' + t.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + t.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
this.handler = options.handler;
|
||||
|
@ -154,8 +151,6 @@ define([
|
|||
this.close();
|
||||
},
|
||||
|
||||
okButtonText : "OK",
|
||||
cancelButtonText : "Cancel",
|
||||
txtTitle : "Set Password",
|
||||
txtPassword : "Password",
|
||||
txtDescription : "A Password is required to open this document",
|
||||
|
|
|
@ -368,7 +368,7 @@ define([
|
|||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer" style="text-align: center;">',
|
||||
'<% for(var bt in buttons) { %>',
|
||||
'<button class="btn normal dlg-btn <%= buttons[bt].cls %>" result="<%= bt %>" style="margin-right: 10px;"><%= buttons[bt].text %></button>',
|
||||
'<button class="btn normal dlg-btn <%= buttons[bt].cls %>" result="<%= bt %>"><%= buttons[bt].text %></button>',
|
||||
'<% } %>',
|
||||
'</div>',
|
||||
'<% } %>'
|
||||
|
|
|
@ -47,7 +47,9 @@ define([
|
|||
width: 330,
|
||||
header: false,
|
||||
cls: 'modal-dlg',
|
||||
filename: ''
|
||||
filename: '',
|
||||
buttons: ['ok', 'cancel'],
|
||||
footerCls: 'right'
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -59,10 +61,6 @@ define([
|
|||
'<label>' + this.textName + '</label>',
|
||||
'</div>',
|
||||
'<div id="id-dlg-newname" class="input-row"></div>',
|
||||
'</div>',
|
||||
'<div class="footer right">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -128,8 +126,6 @@ define([
|
|||
},
|
||||
|
||||
textName : 'File name',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText : 'Ok',
|
||||
txtInvalidName : 'The file name cannot contain any of the following characters: '
|
||||
}, Common.Views.RenameDialog || {}));
|
||||
});
|
|
@ -98,10 +98,10 @@
|
|||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer right">',
|
||||
'<button class="btn normal dlg-btn" result="replace" style="margin-right: 6px;">'+this.txtBtnReplace+'</button>',
|
||||
'<button class="btn normal dlg-btn" result="replaceall" style="margin-right: 10px;">'+this.txtBtnReplaceAll+'</button>',
|
||||
'<button class="btn normal dlg-btn iconic" result="back" style="margin-right: 6px;"><span class="icon img-commonctrl back" /></button>',
|
||||
'<button class="btn normal dlg-btn iconic" result="next"><span class="icon img-commonctrl next" /></button>',
|
||||
'<button class="btn normal dlg-btn" result="replace">'+this.txtBtnReplace+'</button>',
|
||||
'<button class="btn normal dlg-btn" result="replaceall" style="margin-left: 6px;">'+this.txtBtnReplaceAll+'</button>',
|
||||
'<button class="btn normal dlg-btn iconic" result="back"><span class="icon img-commonctrl back" /></button>',
|
||||
'<button class="btn normal dlg-btn iconic" result="next" style="margin-left: 6px;"><span class="icon img-commonctrl next" /></button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
|
|
@ -53,7 +53,8 @@ define([
|
|||
options: {
|
||||
width: 370,
|
||||
style: 'min-width: 350px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -106,10 +107,6 @@ define([
|
|||
'</tr>',
|
||||
'<tr><td><div id="id-dlg-sign-certificate" class="hidden" style="max-width: 212px;overflow: hidden;"></td></tr>',
|
||||
'</table>',
|
||||
'</div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -342,8 +339,6 @@ define([
|
|||
textCertificate: 'Certificate',
|
||||
textValid: 'Valid from %1 to %2',
|
||||
textChange: 'Change',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textInputName: 'Input signer name',
|
||||
textUseImage: 'or click \'Select Image\' to use a picture as signature',
|
||||
textSelectImage: 'Select Image',
|
||||
|
|
|
@ -86,7 +86,7 @@ define([
|
|||
'<div id="id-dlg-sign-settings-date"></div>',
|
||||
'</div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn primary" result="ok">' + this.okButtonText + '</button>',
|
||||
'<% if (type == "edit") { %>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'<% } %>',
|
||||
|
@ -200,8 +200,6 @@ define([
|
|||
textInfoTitle: 'Signer Title',
|
||||
textInfoEmail: 'E-mail',
|
||||
textInstructions: 'Instructions for Signer',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtEmpty: 'This field is required',
|
||||
textAllowComment: 'Allow signer to add comment in the signature dialog',
|
||||
textShowDate: 'Show sign date in signature line',
|
||||
|
|
|
@ -236,6 +236,14 @@
|
|||
cursor: inherit !important;
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
button {
|
||||
&:not(:first-child) {
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.modal-dlg {
|
||||
|
|
|
@ -51,7 +51,8 @@ define([
|
|||
DE.Views.BookmarksDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
||||
options: {
|
||||
contentWidth: 310,
|
||||
height: 360
|
||||
height: 360,
|
||||
buttons: null
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
|
|
@ -51,7 +51,8 @@ define([
|
|||
width: 214,
|
||||
header: true,
|
||||
style: 'min-width: 214px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -67,9 +68,6 @@ define([
|
|||
'</div>',
|
||||
'<div id="table-radio-before" style="padding-bottom: 8px;"></div>',
|
||||
'<div id="table-radio-after" style="padding-bottom: 8px;"></div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -152,8 +150,6 @@ define([
|
|||
return false;
|
||||
},
|
||||
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textTitle: 'Insert Several',
|
||||
textLeft: 'To the left',
|
||||
textRight: 'To the right',
|
||||
|
|
|
@ -49,7 +49,8 @@ define([
|
|||
width: 214,
|
||||
header: true,
|
||||
style: 'min-width: 214px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -62,9 +63,6 @@ define([
|
|||
'<div id="table-radio-cells-left" style="padding-bottom: 8px;"></div>',
|
||||
'<div id="table-radio-cells-row" style="padding-bottom: 8px;"></div>',
|
||||
'<div id="table-radio-cells-col" style="padding-bottom: 8px;"></div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -120,8 +118,6 @@ define([
|
|||
return false;
|
||||
},
|
||||
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textTitle: 'Delete Cells',
|
||||
textLeft: 'Shift cells left',
|
||||
textRow: 'Delete entire row',
|
||||
|
|
|
@ -132,10 +132,6 @@ define([
|
|||
'</table>',
|
||||
'</div></div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + me.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + me.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('')
|
||||
}, options);
|
||||
|
@ -349,8 +345,6 @@ define([
|
|||
txtLockDelete: 'Content control cannot be deleted',
|
||||
txtLockEdit: 'Contents cannot be edited',
|
||||
textLock: 'Locking',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textShowAs: 'Show as',
|
||||
textColor: 'Color',
|
||||
textBox: 'Bounding box',
|
||||
|
|
|
@ -49,7 +49,8 @@ define([
|
|||
width: 300,
|
||||
header: true,
|
||||
style: 'min-width: 216px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -69,11 +70,7 @@ define([
|
|||
'<div id="custom-columns-separator"></div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
this.options.tpl = _.template(this.template)(this.options);
|
||||
|
@ -171,8 +168,6 @@ define([
|
|||
textTitle: 'Columns',
|
||||
textSpacing: 'Spacing between columns',
|
||||
textColumns: 'Number of columns',
|
||||
textSeparator: 'Column divider',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok'
|
||||
textSeparator: 'Column divider'
|
||||
}, DE.Views.CustomColumnsDialog || {}))
|
||||
});
|
|
@ -1164,8 +1164,6 @@ define([
|
|||
textBorderColor: 'Border Color',
|
||||
textBackColor: 'Background Color',
|
||||
textBorderDesc: 'Click on diagramm or use buttons to select borders',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtNoBorders: 'No borders',
|
||||
textNewColor: 'Add New Custom Color',
|
||||
textPosition: 'Position',
|
||||
|
|
|
@ -788,7 +788,7 @@ define([
|
|||
|
||||
render: function(node) {
|
||||
var me = this;
|
||||
var $markup = $(me.template());
|
||||
var $markup = $(me.template({scope: me}));
|
||||
|
||||
// server info
|
||||
this.lblPlacement = $markup.findById('#id-info-placement');
|
||||
|
|
|
@ -57,7 +57,9 @@ define([
|
|||
options: {
|
||||
width: 350,
|
||||
style: 'min-width: 230px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel'],
|
||||
footerCls: 'right'
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -88,10 +90,6 @@ define([
|
|||
'<label>' + this.textTooltip + '</label>',
|
||||
'</div>',
|
||||
'<div id="id-dlg-hyperlink-tip" class="input-row" style="margin-bottom: 5px;"></div>',
|
||||
'</div>',
|
||||
'<div class="footer right">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -399,8 +397,6 @@ define([
|
|||
|
||||
textUrl: 'Link to',
|
||||
textDisplay: 'Display',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtEmpty: 'This field is required',
|
||||
txtNotUrl: 'This field should be a URL in the format \"http://www.example.com\"',
|
||||
textTooltip: 'ScreenTip text',
|
||||
|
|
|
@ -2029,8 +2029,6 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
|
|||
textWrapInFrontTooltip: 'In Front',
|
||||
textTitle: 'Image - Advanced Settings',
|
||||
textKeepRatio: 'Constant Proportions',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textBtnWrap: 'Text Wrapping',
|
||||
textCenter: 'Center',
|
||||
textCharacter: 'Character',
|
||||
|
|
|
@ -57,11 +57,7 @@ define([ 'text!documenteditor/main/app/template/MailMergeEmailDlg.template',
|
|||
'<div class="box" style="height:' + (this.options.height-85) + 'px;">',
|
||||
'<div class="content-panel" style="padding: 0;">' + _.template(contentTemplate)({scope: this}) + '</div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px; width: 86px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('')
|
||||
}, options);
|
||||
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
|
||||
|
@ -264,8 +260,6 @@ define([ 'text!documenteditor/main/app/template/MailMergeEmailDlg.template',
|
|||
textAttachPdf: 'Attach as PDF',
|
||||
subjectPlaceholder: 'Theme',
|
||||
filePlaceholder: 'PDF',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Send',
|
||||
textWarning: 'Warning!',
|
||||
textWarningMsg: 'Please note that mailing cannot be stopped once your click the \'Send\' button.'
|
||||
|
||||
|
|
|
@ -49,7 +49,8 @@ define([
|
|||
DE.Views.NoteSettingsDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
||||
options: {
|
||||
contentWidth: 300,
|
||||
height: 380
|
||||
height: 380,
|
||||
buttons: null
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -122,9 +123,9 @@ define([
|
|||
'</div>',
|
||||
'</div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="insert" style="margin-right: 10px; width: 86px;">' + me.textInsert + '</button>',
|
||||
'<button id="note-settings-btn-apply" class="btn normal dlg-btn" result="apply" style="margin-right: 10px; width: 86px;">' + me.textApply + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + me.textCancel + '</button>',
|
||||
'<button class="btn normal dlg-btn primary" result="insert" style="width: 86px;">' + me.textInsert + '</button>',
|
||||
'<button id="note-settings-btn-apply" class="btn normal dlg-btn" result="apply" style="width: 86px;">' + me.textApply + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + me.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('')
|
||||
}, options);
|
||||
|
@ -427,7 +428,6 @@ define([
|
|||
textSection: 'Current section',
|
||||
textApply: 'Apply',
|
||||
textInsert: 'Insert',
|
||||
textCancel: 'Cancel',
|
||||
textCustom: 'Custom Mark'
|
||||
|
||||
}, DE.Views.NoteSettingsDialog || {}))
|
||||
|
|
|
@ -48,7 +48,8 @@ define([
|
|||
width: 214,
|
||||
header: true,
|
||||
style: 'min-width: 214px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -61,9 +62,6 @@ define([
|
|||
'<div class="input-row">',
|
||||
'<div id="id-spin-set-value"></div>',
|
||||
'</div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -253,9 +251,7 @@ define([
|
|||
}
|
||||
|
||||
return result;
|
||||
},
|
||||
}
|
||||
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok'
|
||||
}, DE.Views.NumberingValueDialog || {}))
|
||||
});
|
|
@ -49,7 +49,8 @@ define([
|
|||
header: true,
|
||||
style: 'min-width: 216px;',
|
||||
cls: 'modal-dlg',
|
||||
id: 'window-page-margins'
|
||||
id: 'window-page-margins',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -82,11 +83,7 @@ define([
|
|||
'</tr>',
|
||||
'</table>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
this.options.tpl = _.template(this.template)(this.options);
|
||||
|
@ -222,8 +219,6 @@ define([
|
|||
textLeft: 'Left',
|
||||
textBottom: 'Bottom',
|
||||
textRight: 'Right',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
notcriticalErrorTitle: 'Warning',
|
||||
txtMarginsW: 'Left and right margins are too high for a given page wight',
|
||||
txtMarginsH: 'Top and bottom margins are too high for a given page height'
|
||||
|
|
|
@ -49,7 +49,8 @@ define([
|
|||
header: true,
|
||||
style: 'min-width: 216px;',
|
||||
cls: 'modal-dlg',
|
||||
id: 'window-page-size'
|
||||
id: 'window-page-size',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -78,11 +79,7 @@ define([
|
|||
'</tr>',
|
||||
'</table>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
this.options.tpl = _.template(this.template)(this.options);
|
||||
|
@ -223,8 +220,6 @@ define([
|
|||
textTitle: 'Page Size',
|
||||
textWidth: 'Width',
|
||||
textHeight: 'Height',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textPreset: 'Preset',
|
||||
txtCustom: 'Custom'
|
||||
}, DE.Views.PageSizeDialog || {}))
|
||||
|
|
|
@ -1446,8 +1446,6 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
|||
textBorderColor: 'Border Color',
|
||||
textBackColor: 'Background Color',
|
||||
textBorderDesc: 'Click on diagramm or use buttons to select borders',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtNoBorders: 'No borders',
|
||||
textNewColor: 'Add New Custom Color',
|
||||
textEffects: 'Effects',
|
||||
|
|
|
@ -47,7 +47,9 @@ define([
|
|||
width: 350,
|
||||
height: 200,
|
||||
style: 'min-width: 230px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel'],
|
||||
footerCls: 'right'
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -62,11 +64,6 @@ define([
|
|||
|
||||
'<label class="input-row" style="margin-bottom: -5px; margin-top: 5px;">' + this.textNextStyle + '</label>',
|
||||
'<div id="id-dlg-style-next-par" class="input-group-nr" style="margin-bottom: 5px;" ></div>',
|
||||
'</div>',
|
||||
|
||||
'<div class="footer right">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
|
|
@ -47,7 +47,9 @@ define([
|
|||
options: {
|
||||
width: 300,
|
||||
style: 'min-width: 230px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel'],
|
||||
footerCls: 'right'
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -69,10 +71,6 @@ define([
|
|||
'<div id="id-dlg-formula-function" style="display: inline-block; width: 50%; padding-right: 10px; float: left;"></div>',
|
||||
'<div id="id-dlg-formula-bookmark" style="display: inline-block; width: 50%;"></div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="footer right">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -240,8 +238,6 @@ define([
|
|||
textFormat: 'Number Format',
|
||||
textBookmark: 'Paste Bookmark',
|
||||
textInsertFunction: 'Paste Function',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textTitle: 'Formula Settings'
|
||||
}, DE.Views.TableFormulaDialog || {}))
|
||||
});
|
|
@ -120,11 +120,7 @@ define([
|
|||
'</div></div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px; width: 86px;">' + me.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + me.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('')
|
||||
}, options);
|
||||
|
||||
|
@ -649,8 +645,6 @@ define([
|
|||
textRadioStyles: 'Selected styles',
|
||||
textStyle: 'Style',
|
||||
textLevel: 'Level',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtCurrent: 'Current',
|
||||
txtSimple: 'Simple',
|
||||
txtStandard: 'Standard',
|
||||
|
|
|
@ -823,8 +823,6 @@ define([
|
|||
textSelectBorders : 'Select borders that you want to change',
|
||||
textAdvanced : 'Show advanced settings',
|
||||
txtNoBorders : 'No borders',
|
||||
textOK : 'OK',
|
||||
textCancel : 'Cancel',
|
||||
textNewColor : 'Add New Custom Color',
|
||||
textTemplate : 'Select From Template',
|
||||
textRows : 'Rows',
|
||||
|
|
|
@ -2131,8 +2131,6 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat
|
|||
textPreview: 'Preview',
|
||||
textBorderDesc: 'Click on diagramm or use buttons to select borders',
|
||||
textTableBackColor: 'Table Background',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtNoBorders: 'No borders',
|
||||
textNewColor: 'Add New Custom Color',
|
||||
textCenter: 'Center',
|
||||
|
|
|
@ -93,10 +93,6 @@ define(['text!documenteditor/main/app/template/WatermarkSettings.template',
|
|||
template,
|
||||
'</div></div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + me.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + me.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('')
|
||||
)({
|
||||
|
@ -674,8 +670,6 @@ define(['text!documenteditor/main/app/template/WatermarkSettings.template',
|
|||
textLayout: 'Layout',
|
||||
textDiagonal: 'Diagonal',
|
||||
textHor: 'Horizontal',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textColor: 'Text color',
|
||||
textNewColor: 'Add New Custom Color',
|
||||
textLanguage: 'Language'
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Добави",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Откажи ",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Текущ",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Въведената стойност е неправилна. <br> Моля, въведете стойност между 000000 и FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Нов",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Задвижвани от",
|
||||
"Common.Views.About.txtTel": "тел .: ",
|
||||
"Common.Views.About.txtVersion": "Версия ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Откажи",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "Добре",
|
||||
"Common.Views.Chat.textSend": "Изпращам",
|
||||
"Common.Views.Comments.textAdd": "Добави",
|
||||
"Common.Views.Comments.textAddComment": "Добави",
|
||||
|
@ -173,13 +170,9 @@
|
|||
"Common.Views.History.textShow": "Разширете",
|
||||
"Common.Views.History.textShowAll": "Показване на подробни промени",
|
||||
"Common.Views.History.textVer": "вер.",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Откажи",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "Добре",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Поставете URL адрес на изображение:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Това поле е задължително",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Това поле трябва да е URL адрес във формат \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Откажи",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "Добре",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Трябва да посочите броя на валидните редове и колони.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Брой колони",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Максималната стойност за това поле е {0}.",
|
||||
|
@ -187,12 +180,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Брой редове",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Размер на таблицата",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Разделена клетка",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Откажи",
|
||||
"Common.Views.LanguageDialog.btnOk": "Добре",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Изберете език на документа",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Откажи",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Затвори файла",
|
||||
"Common.Views.OpenDialog.okButtonText": "Добре",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Кодиране",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Паролата е неправилна.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Парола",
|
||||
|
@ -200,8 +189,6 @@
|
|||
"Common.Views.OpenDialog.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Изберете опции %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Защитен файл",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Откажи",
|
||||
"Common.Views.PasswordDialog.okButtonText": "Добре",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Задайте парола, за да защитите този документ",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Паролата за потвърждение не е идентична",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Парола",
|
||||
|
@ -223,8 +210,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Добавете електронен подпис",
|
||||
"Common.Views.Protection.txtSignature": "Подпис",
|
||||
"Common.Views.Protection.txtSignatureLine": "Добавете линия за подпис",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Откажи",
|
||||
"Common.Views.RenameDialog.okButtonText": "Добре",
|
||||
"Common.Views.RenameDialog.textName": "Име на файла",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Името на файла не може да съдържа нито един от следните знаци: ",
|
||||
"Common.Views.ReviewChanges.hintNext": "За следващата промяна",
|
||||
|
@ -289,8 +274,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Папка за запис",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Зареждане",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Изберете източник на данни",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Откажи",
|
||||
"Common.Views.SignDialog.okButtonText": "Добре",
|
||||
"Common.Views.SignDialog.textBold": "Получер",
|
||||
"Common.Views.SignDialog.textCertificate": "Сертификат",
|
||||
"Common.Views.SignDialog.textChange": "Промяна",
|
||||
|
@ -305,8 +288,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Валидно от %1 до %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Име на шрифта",
|
||||
"Common.Views.SignDialog.tipFontSize": "Размер на шрифта",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Откажи",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "Добре",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Позволете на сигналиста да добави коментар в диалога за подпис",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Информация за подписания",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Електронна поща",
|
||||
|
@ -1044,8 +1025,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Стегнат",
|
||||
"DE.Views.ChartSettings.txtTitle": "Диаграма",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Отгоре и отдолу",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Откажи",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "Добре",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Външен вид",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Прилага за всички",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "Ограничителна кутия",
|
||||
|
@ -1060,8 +1039,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Настройки за контрол на съдържанието",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Контролът на съдържанието не може да бъде изтрит",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Съдържанието не може да се редактира",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Откажи",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "Добре",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Брой колони",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Разделител на колони",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Разстояние между колоните",
|
||||
|
@ -1273,8 +1250,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Разгрупира",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Актуализирайте стила на %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Вертикално подравняване",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Откажи ",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "Добре",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Граници и запълване",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Пуснете капачка",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Полета",
|
||||
|
@ -1429,8 +1404,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "Горе вляво",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Начало на страницата",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Горе в дясно",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Откажи",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Добре",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Избран фрагмент от текст",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Показ",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Външен линк",
|
||||
|
@ -1472,8 +1445,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "През",
|
||||
"DE.Views.ImageSettings.txtTight": "Стегнат",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Отгоре и отдолу",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Откажи ",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "Добре",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Попълване на текст",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Абсолютно",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Подравняване",
|
||||
|
@ -1575,7 +1546,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Обновяване на съдържанието",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Добави връзка",
|
||||
"DE.Views.Links.tipNotes": "Вмъкване или редактиране на бележки под линия",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Откажи",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Изпращам",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Тема",
|
||||
|
@ -1636,7 +1606,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Изберете съдържание",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Приложи",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Прилагане на промените към",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Откажи",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Непрекъснат",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Персонализирана марка",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Целият документ",
|
||||
|
@ -1653,11 +1622,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Започни от",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Под текст",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Настройки за бележки",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Откажи",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "Добре",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Откажи",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Внимание",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "Добре",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Дъно",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Наляво",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Прав",
|
||||
|
@ -1665,8 +1630,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Връх",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Горната и долната граници са твърде високи за дадена височина на страницата",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Лявото и дясното поле са твърде широки за дадена ширина на страницата",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Откажи",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "Добре",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Височина",
|
||||
"DE.Views.PageSizeDialog.textPreset": "Предварително",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Размер на страницата",
|
||||
|
@ -1685,14 +1648,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Точно",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Нов потребителски цвят",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Автоматичен",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Откажи",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Посочените раздели ще се появят в това поле",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "Добре",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Всички шапки",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Граници и запълване",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Страницата е прекъсната преди",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Двойно зачертаване",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Първа линия",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Наляво",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Прав",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Поддържайте линиите заедно",
|
||||
|
@ -1836,15 +1796,11 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Заглавие",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "Това поле е задължително",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Полето не трябва да е празно",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Откажи",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "Добре",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "Поставяне на отметката",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "Формат на номера",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Формула",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "Функция за поставяне",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Настройки на формулата",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Откажи",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "Добре",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Надясно подравнете номерата на страниците",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Форматиране на съдържанието като връзки",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Показване на номера на страници",
|
||||
|
@ -1884,7 +1840,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "На ивици",
|
||||
"DE.Views.TableSettings.textBorderColor": "Цвят",
|
||||
"DE.Views.TableSettings.textBorders": "Стил на границите",
|
||||
"DE.Views.TableSettings.textCancel": "Откажи",
|
||||
"DE.Views.TableSettings.textCellSize": "Размер на клетката",
|
||||
"DE.Views.TableSettings.textColumns": "Колони",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Разпределете колони",
|
||||
|
@ -1896,7 +1851,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Височина",
|
||||
"DE.Views.TableSettings.textLast": "Последно",
|
||||
"DE.Views.TableSettings.textNewColor": "Нов потребителски цвят",
|
||||
"DE.Views.TableSettings.textOK": "Добре",
|
||||
"DE.Views.TableSettings.textRows": "Редове",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Изберете граници, които искате да промените, като използвате избрания по-горе стил",
|
||||
"DE.Views.TableSettings.textTemplate": "Изберете от шаблон",
|
||||
|
@ -1913,8 +1867,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Задайте само външна дясна граница",
|
||||
"DE.Views.TableSettings.tipTop": "Задайте само външна горна граница",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Няма граници",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Откажи",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "Добре",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Подравняване",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Подравняване",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Разстояние между клетките",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Přidat",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Zrušit",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Aktuální",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota není správná.<br>Zadejte prosím hodnotu mezi 000000 a FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nový",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Poháněno",
|
||||
"Common.Views.About.txtTel": "tel.:",
|
||||
"Common.Views.About.txtVersion": "Verze",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Zrušit",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Poslat",
|
||||
"Common.Views.Comments.textAdd": "Přidat",
|
||||
"Common.Views.Comments.textAddComment": "Přidat",
|
||||
|
@ -157,13 +154,9 @@
|
|||
"Common.Views.History.textRestore": "Obnovit",
|
||||
"Common.Views.History.textShow": "Rozšířit",
|
||||
"Common.Views.History.textShowAll": "Zobrazit detailní změny",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Vložit URL obrázku:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole je povinné",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole musí být URL adresa ve formátu \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Musíte stanovit platný počet řádků a sloupců.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Počet sloupců",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maximální hodnota tohoto pole je {0}.",
|
||||
|
@ -171,11 +164,7 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Počet řádků",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Rozdělit buňku",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Zrušit",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Vybrat jazyk dokumentu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kódování",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávné",
|
||||
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
||||
|
@ -187,8 +176,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Nahrávám ...",
|
||||
"Common.Views.Plugins.textStart": "Začátek",
|
||||
"Common.Views.Plugins.textStop": "Stop",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Název souboru",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Název souboru nesmí obsahovat žádný z následujících znaků:",
|
||||
"Common.Views.ReviewChanges.hintNext": "K další změně",
|
||||
|
@ -727,8 +714,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Těsný",
|
||||
"DE.Views.ChartSettings.txtTitle": "Graf",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Nahoře a dole",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Zrušit",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Počet sloupců",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Rozdělovač sloupců",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Vzdálenost mezi sloupci",
|
||||
|
@ -899,8 +884,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Oddělit",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Aktualizovat %1 styl",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Svislé zarovnání",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Ohraničení a výplň",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Iniciála",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Okraje",
|
||||
|
@ -1035,8 +1018,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopCenter": "Nahoře uprostřed",
|
||||
"DE.Views.HeaderFooterSettings.textTopLeft": "Nahoře vlevo",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Nahoře vpravo",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Zrušit",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Vybrat část textu",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Zobrazit",
|
||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Nastavení hypertextového odkazu",
|
||||
|
@ -1063,8 +1044,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Přes",
|
||||
"DE.Views.ImageSettings.txtTight": "Těsný",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Nahoře a dole",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Vnitřní odsazení textu",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolutně",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Zarovnání",
|
||||
|
@ -1140,7 +1119,6 @@
|
|||
"DE.Views.LeftMenu.tipSupport": "Zpětná vazba a Podpora",
|
||||
"DE.Views.LeftMenu.tipTitles": "Nadpisy",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "VÝVOJÁŘSKÝ REŽIM",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Zrušit",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Poslat",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma",
|
||||
|
@ -1190,7 +1168,6 @@
|
|||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Spuštění hromadné korespondence se nezdařilo",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Použít",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Použít změny do",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Zrušit",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Nepřetržitý",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Vlastní značka",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Celý dokument",
|
||||
|
@ -1207,9 +1184,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Začít na",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Pod textem",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Nastavení poznámek",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Right",
|
||||
|
@ -1217,8 +1192,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Height",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Page Size",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Width",
|
||||
|
@ -1235,14 +1208,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Přesně",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Přidat novou vlastní barvu",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Automaticky",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Specifikované tabulátory se objeví v tomto poli",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všechno velkým",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Ohraničení a výplň",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Rozdělit stránku před",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité přeškrtnutí",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "První řádek",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vlevo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Ponechat řádky pohromadě",
|
||||
|
@ -1381,7 +1351,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Pruhovaný",
|
||||
"DE.Views.TableSettings.textBorderColor": "Barva",
|
||||
"DE.Views.TableSettings.textBorders": "Styl ohraničení",
|
||||
"DE.Views.TableSettings.textCancel": "Zrušit",
|
||||
"DE.Views.TableSettings.textColumns": "Sloupce",
|
||||
"DE.Views.TableSettings.textEdit": "Řádky a sloupce",
|
||||
"DE.Views.TableSettings.textEmptyTemplate": "Žádné šablony",
|
||||
|
@ -1389,7 +1358,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "Záhlaví",
|
||||
"DE.Views.TableSettings.textLast": "Poslední",
|
||||
"DE.Views.TableSettings.textNewColor": "Přidat novou vlastní barvu",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Řádky",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Vyberte ohraničení, na které chcete použít styl vybraný výše.",
|
||||
"DE.Views.TableSettings.textTemplate": "Vybrat ze šablony",
|
||||
|
@ -1405,8 +1373,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Nastavit pouze vnější pravé ohraničení",
|
||||
"DE.Views.TableSettings.tipTop": "Nastavit pouze vnější horní ohraničení",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Bez ohraničení",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Zarovnání",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Zarovnání",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Povolit odsazení mezi buňkami",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Keine Formate",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Hinzufügen",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Aktuell",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Der eingegebene Wert ist falsch.<br>Bitte geben Sie einen Wert zwischen 000000 und FFFFFF ein.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Neu",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Betrieben von",
|
||||
"Common.Views.About.txtTel": "Tel.: ",
|
||||
"Common.Views.About.txtVersion": "Version ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Senden",
|
||||
"Common.Views.Comments.textAdd": "Hinzufügen",
|
||||
"Common.Views.Comments.textAddComment": "Hinzufügen",
|
||||
|
@ -173,13 +170,9 @@
|
|||
"Common.Views.History.textShow": "Erweitern",
|
||||
"Common.Views.History.textShowAll": "Wesentliche Änderungen anzeigen",
|
||||
"Common.Views.History.textVer": "Ver.",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Bild-URL einfügen:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Dieses Feld muss eine URL im Format \"http://www.example.com\" sein",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Sie müssen eine gültige Anzahl der Zeilen und Spalten angeben.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Anzahl von Spalten",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Der maximale Wert für dieses Feld ist {0}.",
|
||||
|
@ -187,12 +180,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Anzahl von Zeilen",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Größe der Tabelle",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Zelle teilen",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Abbrechen",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Sprache des Dokuments wählen",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Datei schließen",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Zeichenkodierung",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Kennwort ist falsch.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Kennwort",
|
||||
|
@ -200,8 +189,6 @@
|
|||
"Common.Views.OpenDialog.txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.",
|
||||
"Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Legen Sie ein Passwort fest, um dieses Dokument zu schützen",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bestätigungseingabe ist nicht identisch",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Kennwort",
|
||||
|
@ -223,8 +210,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Fügen Sie eine digitale Signatur hinzu",
|
||||
"Common.Views.Protection.txtSignature": "Signatur",
|
||||
"Common.Views.Protection.txtSignatureLine": "Signaturzeile hinzufügen",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Dateiname",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Dieser Dateiname darf keines der folgenden Zeichen enthalten:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Zur nächsten Änderung",
|
||||
|
@ -289,8 +274,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Ordner fürs Speichern",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Ladevorgang",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Datenquelle auswählen",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Fett",
|
||||
"Common.Views.SignDialog.textCertificate": "Zertifikat",
|
||||
"Common.Views.SignDialog.textChange": "Ändern",
|
||||
|
@ -305,8 +288,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Gültig von% 1 bis% 2",
|
||||
"Common.Views.SignDialog.tipFontName": "Schriftart",
|
||||
"Common.Views.SignDialog.tipFontSize": "Schriftgrad",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Signaturgeber verfügt über die Möglichkeit, einen Kommentar im Signaturdialog hinzuzufügen",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Signaturgeberinformationen",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Email Adresse",
|
||||
|
@ -1044,8 +1025,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Passend",
|
||||
"DE.Views.ChartSettings.txtTitle": "Diagramm",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Oben und unten",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Darstellung",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Auf alle anwenden",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "Begrenzungsrahmen",
|
||||
|
@ -1060,8 +1039,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Einstellungen des Inhaltssteuerelements",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Das Inhaltssteuerelement kann nicht gelöscht werden",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Der Inhalt kann nicht bearbeitet werden",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Anzahl von Spalten",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Spaltenunterteilers",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Abstand zwischen Spalten",
|
||||
|
@ -1273,8 +1250,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Format aktualisieren %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Vertikale Ausrichtung",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Rahmen & Füllung",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Initialbuchstaben ",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Ränder",
|
||||
|
@ -1429,8 +1404,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "Oben links",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Seitenanfang",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Oben rechts",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Gewählter Textabschnitt",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Anzeigen",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Externer Link",
|
||||
|
@ -1472,8 +1445,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Durchgehend",
|
||||
"DE.Views.ImageSettings.txtTight": "Passend",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Oben und unten",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Ränder um den Text",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolut",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Ausrichtung",
|
||||
|
@ -1575,7 +1546,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Inhaltsverzeichnis aktualisieren",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Hyperlink hinzufügen",
|
||||
"DE.Views.Links.tipNotes": "Fußnoten einfügen oder bearbeiten",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Senden",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thema",
|
||||
|
@ -1636,7 +1606,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Inhalt auswählen",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Anwenden",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Änderungen anwenden",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Abbrechen",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Kontinuierlich",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Benutzerdefiniert",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Das ganze Dokument",
|
||||
|
@ -1653,11 +1622,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Starten",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Unterhalb des Textes",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Hinweise Einstellungen",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Achtung",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Unten",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Rechts",
|
||||
|
@ -1665,8 +1630,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Oben",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Die oberen und unteren Ränder sind zu hoch für eingegebene Seitenhöhe",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Die Ränder rechts und links sind bei gegebener Seitenbreite zu breit. ",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Höhe",
|
||||
"DE.Views.PageSizeDialog.textPreset": "Voreinstellung",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Seitenformat",
|
||||
|
@ -1685,14 +1648,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Genau",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Die festgelegten Registerkarten werden in diesem Feld erscheinen",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alle Großbuchstaben",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Rahmen & Füllung",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Seitenumbruch oberhalb",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doppeltes Durchstreichen",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Erste Zeile",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Absatz zusammenhalten",
|
||||
|
@ -1836,15 +1796,11 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Titel",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Das Feld darf nicht leer sein",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "OK",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "Lesezeichen einfügen",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "Zahlenformat",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Formula",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "Funktion einfügen",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Formel-Einstellungen",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Seitenzahlen rechtsbündig",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Inhaltsverzeichnis als Links formatieren",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Seitenzahlen anzeigen",
|
||||
|
@ -1884,7 +1840,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Gestreift",
|
||||
"DE.Views.TableSettings.textBorderColor": "Farbe",
|
||||
"DE.Views.TableSettings.textBorders": "Stil des Rahmens",
|
||||
"DE.Views.TableSettings.textCancel": "Abbrechen",
|
||||
"DE.Views.TableSettings.textCellSize": "Zellengröße",
|
||||
"DE.Views.TableSettings.textColumns": "Spalten",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Spalten verteilen",
|
||||
|
@ -1896,7 +1851,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Höhe",
|
||||
"DE.Views.TableSettings.textLast": "Letzte",
|
||||
"DE.Views.TableSettings.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Zeilen",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Wählen Sie Rahmenlinien, auf die ein anderer Stil angewandt wird",
|
||||
"DE.Views.TableSettings.textTemplate": "Vorlage auswählen",
|
||||
|
@ -1913,8 +1867,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Nur äußere rechte Rahmenlinie festlegen",
|
||||
"DE.Views.TableSettings.tipTop": "Nur äußere obere Rahmenlinie festlegen",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Keine Rahmen",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Ausrichtung",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Ausrichtung",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Abstand zwischen Zellen zulassen",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
|
||||
"Common.UI.ComboDataView.emptyComboText": "No styles",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Add",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Current",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.<br>Please enter a value between 000000 and FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "New",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Version ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Send",
|
||||
"Common.Views.Comments.textAdd": "Add",
|
||||
"Common.Views.Comments.textAddComment": "Add Comment",
|
||||
|
@ -174,13 +171,9 @@
|
|||
"Common.Views.History.textShow": "Expand",
|
||||
"Common.Views.History.textShowAll": "Show detailed changes",
|
||||
"Common.Views.History.textVer": "ver.",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns count.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Number of Columns",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.",
|
||||
|
@ -188,12 +181,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Number of Rows",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Table Size",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Split Cell",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Cancel",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Select document language",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Close File",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Password",
|
||||
|
@ -201,8 +190,6 @@
|
|||
"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.txtTitle": "Choose %1 options",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Protected File",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Password",
|
||||
|
@ -224,8 +211,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Add digital signature",
|
||||
"Common.Views.Protection.txtSignature": "Signature",
|
||||
"Common.Views.Protection.txtSignatureLine": "Add signature line",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "File name",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ",
|
||||
"Common.Views.ReviewChanges.hintNext": "To next change",
|
||||
|
@ -291,8 +276,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Folder for save",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Loading",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Select Data Source",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Bold",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificate",
|
||||
"Common.Views.SignDialog.textChange": "Change",
|
||||
|
@ -307,8 +290,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Valid from %1 to %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Font Name",
|
||||
"Common.Views.SignDialog.tipFontSize": "Font Size",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Signer Info",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -352,6 +333,7 @@
|
|||
"DE.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.<br>Use the 'Save as...' option to save the file backup copy to your computer hard drive.",
|
||||
"DE.Controllers.Main.errorEmailClient": "No email client could be found.",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.",
|
||||
"DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
||||
"DE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
||||
"DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
||||
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
||||
|
@ -665,7 +647,6 @@
|
|||
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
||||
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
||||
|
@ -1022,21 +1003,17 @@
|
|||
"DE.Views.BookmarksDialog.textSort": "Sort by",
|
||||
"DE.Views.BookmarksDialog.textTitle": "Bookmarks",
|
||||
"DE.Views.BookmarksDialog.txtInvalidName": "Bookmark name can only contain letters, digits and underscores, and should begin with the letter",
|
||||
"DE.Views.CellsRemoveDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.CellsRemoveDialog.okButtonText": "Ok",
|
||||
"DE.Views.CellsRemoveDialog.textTitle": "Delete Cells",
|
||||
"DE.Views.CellsRemoveDialog.textLeft": "Shift cells left",
|
||||
"DE.Views.CellsRemoveDialog.textRow": "Delete entire row",
|
||||
"DE.Views.CellsRemoveDialog.textCol": "Delete entire column",
|
||||
"DE.Views.CellsAddDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.CellsAddDialog.okButtonText": "Ok",
|
||||
"DE.Views.CellsAddDialog.textTitle": "Insert Several",
|
||||
"DE.Views.CellsAddDialog.textCol": "Columns",
|
||||
"DE.Views.CellsAddDialog.textDown": "Below the cursor",
|
||||
"DE.Views.CellsAddDialog.textLeft": "To the left",
|
||||
"DE.Views.CellsAddDialog.textRight": "To the right",
|
||||
"DE.Views.CellsAddDialog.textUp": "Above the cursor",
|
||||
"DE.Views.CellsAddDialog.textDown": "Below the cursor",
|
||||
"DE.Views.CellsAddDialog.textRow": "Rows",
|
||||
"DE.Views.CellsAddDialog.textCol": "Columns",
|
||||
"DE.Views.CellsAddDialog.textTitle": "Insert Several",
|
||||
"DE.Views.CellsAddDialog.textUp": "Above the cursor",
|
||||
"DE.Views.CellsRemoveDialog.textCol": "Delete entire column",
|
||||
"DE.Views.CellsRemoveDialog.textLeft": "Shift cells left",
|
||||
"DE.Views.CellsRemoveDialog.textRow": "Delete entire row",
|
||||
"DE.Views.CellsRemoveDialog.textTitle": "Delete Cells",
|
||||
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||
"DE.Views.ChartSettings.textArea": "Area",
|
||||
"DE.Views.ChartSettings.textBar": "Bar",
|
||||
|
@ -1063,8 +1040,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Tight",
|
||||
"DE.Views.ChartSettings.txtTitle": "Chart",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Top and bottom",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Appearance",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Apply to All",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "Bounding box",
|
||||
|
@ -1079,8 +1054,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Content Control Settings",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
|
||||
|
@ -1158,6 +1131,7 @@
|
|||
"DE.Views.DocumentHolder.textArrangeBackward": "Send Backward",
|
||||
"DE.Views.DocumentHolder.textArrangeForward": "Bring Forward",
|
||||
"DE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground",
|
||||
"DE.Views.DocumentHolder.textCells": "Cells",
|
||||
"DE.Views.DocumentHolder.textContentControls": "Content control",
|
||||
"DE.Views.DocumentHolder.textContinueNumbering": "Continue numbering",
|
||||
"DE.Views.DocumentHolder.textCopy": "Copy",
|
||||
|
@ -1189,6 +1163,7 @@
|
|||
"DE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise",
|
||||
"DE.Views.DocumentHolder.textSeparateList": "Separate list",
|
||||
"DE.Views.DocumentHolder.textSettings": "Settings",
|
||||
"DE.Views.DocumentHolder.textSeveral": "Several Rows/Columns",
|
||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
||||
"DE.Views.DocumentHolder.textShapeAlignLeft": "Align Left",
|
||||
|
@ -1294,10 +1269,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
||||
"DE.Views.DocumentHolder.textCells": "Cells",
|
||||
"DE.Views.DocumentHolder.textSeveral": "Several Rows/Columns",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margins",
|
||||
|
@ -1364,6 +1335,7 @@
|
|||
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Create a new blank text document which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a document of a certain type or purpose where some styles have already been pre-applied.",
|
||||
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "New Text Document",
|
||||
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "There are no templates",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
|
||||
|
@ -1386,7 +1358,6 @@
|
|||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Words",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply",
|
||||
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights",
|
||||
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights",
|
||||
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning",
|
||||
|
@ -1464,8 +1435,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "Top left",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Top of Page",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Top right",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Display",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "External Link",
|
||||
|
@ -1507,8 +1476,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Through",
|
||||
"DE.Views.ImageSettings.txtTight": "Tight",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Top and bottom",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Text Padding",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolute",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment",
|
||||
|
@ -1610,7 +1577,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Refresh table of contents",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Add hyperlink",
|
||||
"DE.Views.Links.tipNotes": "Insert or edit footnotes",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancel",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme",
|
||||
|
@ -1671,7 +1637,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Select content",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Apply",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Apply changes to",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Cancel",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Continuous",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Custom Mark",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Whole document",
|
||||
|
@ -1688,11 +1653,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Start at",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Below text",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Notes Settings",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Right",
|
||||
|
@ -1700,8 +1661,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Height",
|
||||
"DE.Views.PageSizeDialog.textPreset": "Preset",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Page Size",
|
||||
|
@ -1720,15 +1679,12 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Exactly",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Add New Custom Color",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Borders & Fill",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Page break before",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Indents",
|
||||
"del_DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "First Line",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Outline level",
|
||||
|
@ -1893,15 +1849,11 @@
|
|||
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
|
||||
"DE.Views.StyleTitleDialog.txtSameAs": "Same as created new style",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "OK",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "Paste Bookmark",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "Number Format",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Formula",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "Paste Function",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Formula Settings",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Cancel",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers",
|
||||
|
@ -1941,7 +1893,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Banded",
|
||||
"DE.Views.TableSettings.textBorderColor": "Color",
|
||||
"DE.Views.TableSettings.textBorders": "Borders Style",
|
||||
"DE.Views.TableSettings.textCancel": "Cancel",
|
||||
"DE.Views.TableSettings.textCellSize": "Cell Size",
|
||||
"DE.Views.TableSettings.textColumns": "Columns",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Distribute columns",
|
||||
|
@ -1953,7 +1904,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Height",
|
||||
"DE.Views.TableSettings.textLast": "Last",
|
||||
"DE.Views.TableSettings.textNewColor": "Add New Custom Color",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Rows",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Select borders you want to change applying style chosen above",
|
||||
"DE.Views.TableSettings.textTemplate": "Select From Template",
|
||||
|
@ -1970,8 +1920,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Set outer right border only",
|
||||
"DE.Views.TableSettings.tipTop": "Set outer top border only",
|
||||
"DE.Views.TableSettings.txtNoBorders": "No borders",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Alignment",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignment",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells",
|
||||
|
@ -2254,8 +2202,6 @@
|
|||
"DE.Views.Toolbar.txtScheme7": "Equity",
|
||||
"DE.Views.Toolbar.txtScheme8": "Flow",
|
||||
"DE.Views.Toolbar.txtScheme9": "Foundry",
|
||||
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.WatermarkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
||||
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
|
||||
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Añadir",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Cancelar",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Actual",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "El valor introducido es incorrecto.<br>Por favor, introduzca un valor de 000000 a FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nuevo",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Desarrollado por",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Versión ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancelar",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "Aceptar",
|
||||
"Common.Views.Chat.textSend": "Enviar",
|
||||
"Common.Views.Comments.textAdd": "Añadir",
|
||||
"Common.Views.Comments.textAddComment": "Añadir",
|
||||
|
@ -174,13 +171,9 @@
|
|||
"Common.Views.History.textShow": "Desplegar",
|
||||
"Common.Views.History.textShowAll": "Mostrar cambios detallados",
|
||||
"Common.Views.History.textVer": "ver.",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL de imagen:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo es obligatorio",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "El campo debe ser URL en el formato \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Debe especificar número válido de filas y columnas",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Número de columnas",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "El valor máximo para este campo es{0}.",
|
||||
|
@ -188,12 +181,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Número de filas",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tamaño de tabla",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividir celda",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Cancelar",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Seleccionar el idioma de documento",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Cerrar archivo",
|
||||
"Common.Views.OpenDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Codificación",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "La contraseña es incorrecta",
|
||||
"Common.Views.OpenDialog.txtPassword": "Contraseña",
|
||||
|
@ -201,8 +190,6 @@
|
|||
"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.txtTitle": "Elegir opciones de %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Archivo protegido",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Establezca una contraseña para proteger",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "La contraseña de confirmación es",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Contraseña",
|
||||
|
@ -224,8 +211,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Añadir firma digital",
|
||||
"Common.Views.Protection.txtSignature": "Firma",
|
||||
"Common.Views.Protection.txtSignatureLine": "Añadir línea de firma",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.RenameDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.RenameDialog.textName": "Nombre de archivo",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "El nombre de archivo no debe contener los símbolos siguientes:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Al siguiente cambio",
|
||||
|
@ -290,8 +275,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Carpeta para guardar",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Cargando",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Seleccionar fuente de datos",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.SignDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.SignDialog.textBold": "Negrilla",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificar",
|
||||
"Common.Views.SignDialog.textChange": "Cambiar",
|
||||
|
@ -306,8 +289,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Válido desde %1 hasta %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra",
|
||||
"Common.Views.SignDialog.tipFontSize": "Tamaño del tipo de letra",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Permitir a quien firma añadir comentarios en el diálogo de firma",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Información de quien firma",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -1045,8 +1026,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Estrecho",
|
||||
"DE.Views.ChartSettings.txtTitle": "Gráfico",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Superior e inferior",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Aspecto",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Aplicar a todo",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "Cuadro delimitador",
|
||||
|
@ -1061,8 +1040,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Ajustes de control de contenido",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "El control de contenido no puede",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Los contenidos no se pueden editar",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Número de columnas",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Divisor de columnas",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Espacio entre columnas",
|
||||
|
@ -1274,8 +1251,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Desagrupar",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Actualizar estilo %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Alineación vertical",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "Aceptar",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Bordes y relleno",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Letra capital",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Márgenes",
|
||||
|
@ -1439,8 +1414,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "Superior izquierdo",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Principio de la página",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Superior derecho",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Aceptar",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmento de texto seleccionado",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Mostrar",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Enlace externo",
|
||||
|
@ -1482,8 +1455,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "A través",
|
||||
"DE.Views.ImageSettings.txtTight": "Estrecho",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Superior e inferior",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "Aceptar",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Márgenes interiores",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absoluto",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alineación",
|
||||
|
@ -1585,7 +1556,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Actualize la tabla de contenidos",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Añadir hiperenlace",
|
||||
"DE.Views.Links.tipNotes": "Introducir o editar notas a pie de página",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancelar",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Enviar",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema",
|
||||
|
@ -1646,7 +1616,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Seleccione contenido",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Aplicar",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar cambios a",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Cancelar",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Continua",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Símbolo especial",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Todo el documento",
|
||||
|
@ -1663,11 +1632,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Empezar con",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Bajo el texto",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Ajustes de las notas a pie de página",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Aviso",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "Aceptar",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Inferior",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Izquierdo",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Derecho",
|
||||
|
@ -1675,8 +1640,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Márgenes superior e inferior son demasiado altos para una altura de página determinada ",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Márgenes izquierdo y derecho son demasiado grandes para una anchura determinada de la página",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "Aceptar",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Altura",
|
||||
"DE.Views.PageSizeDialog.textPreset": "Preajuste",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Tamaño de página",
|
||||
|
@ -1695,14 +1658,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Exacto",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Color personalizado",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Las pestañas especificadas aparecerán en este campo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "Aceptar",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Mayúsculas",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordes y relleno",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Salto de página antes",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble tachado",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Primera línea",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Izquierdo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Derecho",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Mantener líneas juntas",
|
||||
|
@ -1846,15 +1806,11 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Title",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "Este campo es obligatorio",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "El campo no puede estar vacío",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "OK",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "Pegar marcador",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "Formato de número",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Fórmula",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "Pegar función",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Ajustes de fórmula",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Cancelar",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Alinee los números de página a la derecha",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Formatear tabla de contenidos",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de página",
|
||||
|
@ -1894,7 +1850,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Con bandas",
|
||||
"DE.Views.TableSettings.textBorderColor": "Color",
|
||||
"DE.Views.TableSettings.textBorders": "Estilo de bordes",
|
||||
"DE.Views.TableSettings.textCancel": "Cancelar",
|
||||
"DE.Views.TableSettings.textCellSize": "Tamaño de la celda",
|
||||
"DE.Views.TableSettings.textColumns": "Columnas",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Distribuir columnas",
|
||||
|
@ -1906,7 +1861,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Altura",
|
||||
"DE.Views.TableSettings.textLast": "Última",
|
||||
"DE.Views.TableSettings.textNewColor": "Color personalizado",
|
||||
"DE.Views.TableSettings.textOK": "Aceptar",
|
||||
"DE.Views.TableSettings.textRows": "Filas",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Seleccione bordes que usted desea cambiar aplicando estilo seleccionado",
|
||||
"DE.Views.TableSettings.textTemplate": "Seleccionar de plantilla",
|
||||
|
@ -1923,8 +1877,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho",
|
||||
"DE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Sin bordes",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "Aceptar",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Alineación",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Alineación",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espacio entre celdas",
|
||||
|
@ -2207,8 +2159,6 @@
|
|||
"DE.Views.Toolbar.txtScheme7": "Equidad ",
|
||||
"DE.Views.Toolbar.txtScheme8": "Flujo",
|
||||
"DE.Views.Toolbar.txtScheme9": "Fundición",
|
||||
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.WatermarkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
||||
"DE.Views.WatermarkSettingsDialog.textBold": "Negrita",
|
||||
"DE.Views.WatermarkSettingsDialog.textColor": "Color de texto",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Ajouter",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Annuler",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Actuelle",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "La valeur saisie est incorrecte. <br>Entrez une valeur de 000000 à FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nouvelle",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tél.: ",
|
||||
"Common.Views.About.txtVersion": "Version ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Annuler",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Envoyer",
|
||||
"Common.Views.Comments.textAdd": "Ajouter",
|
||||
"Common.Views.Comments.textAddComment": "Ajouter",
|
||||
|
@ -174,13 +171,9 @@
|
|||
"Common.Views.History.textShow": "Développer",
|
||||
"Common.Views.History.textShowAll": "Afficher les modifications détaillées",
|
||||
"Common.Views.History.textVer": "ver. ",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Coller URL d'image",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Ce champ est obligatoire",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Specifiez les lignes valides et le total des colonnes.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Nombre de colonnes",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "La valeur maximale pour ce champ est {0}.",
|
||||
|
@ -188,12 +181,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Nombre de lignes",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Taille du tableau",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Fractionner la cellule",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Annuler",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Sélectionner la langue du document",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Fermer le fichier",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Codage ",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Mot de passe",
|
||||
|
@ -201,8 +190,6 @@
|
|||
"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.txtTitle": "Choisir %1 des options ",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Fichier protégé",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Indiquez un mot de passe pour protéger ce document",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Le mot de passe de confirmation n'est pas identique",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
|
||||
|
@ -224,8 +211,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Ajouter une signature électronique",
|
||||
"Common.Views.Protection.txtSignature": "Signature",
|
||||
"Common.Views.Protection.txtSignatureLine": "Ajouter la zone de signature",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Nom de fichier",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Un nom de fichier ne peut pas contenir les caractères suivants :",
|
||||
"Common.Views.ReviewChanges.hintNext": "À la modification suivante",
|
||||
|
@ -290,8 +275,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Dossier pour enregistrement",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Chargement",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Sélectionnez la source de données",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Gras",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificat",
|
||||
"Common.Views.SignDialog.textChange": "Modifier",
|
||||
|
@ -306,8 +289,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Valide de %1 à %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Nom de la police",
|
||||
"Common.Views.SignDialog.tipFontSize": "Taille de la police",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Autoriser le signataire à ajouter un commentaire dans la boîte de dialogue de la signature",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Information à propos du signataire",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Adresse de messagerie",
|
||||
|
@ -1045,8 +1026,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Rapproché",
|
||||
"DE.Views.ChartSettings.txtTitle": "Graphique",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Haut et bas",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Annuler",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Apparence",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Appliquer à tous",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "Boîte d'encombrement",
|
||||
|
@ -1061,8 +1040,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Paramètres de contrôle du contenu",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Le contrôle du contenu ne peut pas être supprimé",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Le contenu ne peut pas être modifié",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Annuler",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Nombre de colonnes",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Diviseur de colonne",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Espacement entre les colonnes",
|
||||
|
@ -1274,8 +1251,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Dissocier",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Mettre à jour le style %1 ",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Alignement vertical",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Bordures et remplissage",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Lettrine",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Marges",
|
||||
|
@ -1435,8 +1410,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "En haut à gauche",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Haut de page",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "En haut à droite",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annuler",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragment du texte sélectionné",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Afficher",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Lien externe",
|
||||
|
@ -1478,8 +1451,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Au travers",
|
||||
"DE.Views.ImageSettings.txtTight": "Rapproché",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Haut et bas",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Rembourrage texte",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolue",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignement",
|
||||
|
@ -1581,7 +1552,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Actualiser la table des matières",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Ajouter un lien hypertexte",
|
||||
"DE.Views.Links.tipNotes": "Insérer ou modifier les notes de bas de page",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Annuler",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Envoyer",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thème",
|
||||
|
@ -1642,7 +1612,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Sélectionner le contenu",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Appliquer",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Appliquer les modifications",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Annuler",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Continue",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Marque personnalisée",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "À tout le document",
|
||||
|
@ -1659,11 +1628,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Début",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Sous le texte",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Annuler",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Annuler",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avertissement",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Bas",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Gauche",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Droite",
|
||||
|
@ -1671,8 +1636,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Haut",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Les marges supérieure et inférieure sont trop élevés pour une hauteur de page donnée",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Les marges gauche et droite sont trop larges pour une largeur de page donnée",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Annuler",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Hauteur",
|
||||
"DE.Views.PageSizeDialog.textPreset": "Prédéfini",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Taille de la page",
|
||||
|
@ -1691,14 +1654,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Exactement",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Couleur personnalisée",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Les onglets spécifiés s'affichent dans ce champ",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Toutes en majuscules",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordures et remplissage",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Saut de page avant",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Première ligne",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Lignes solidaires",
|
||||
|
@ -1842,15 +1802,11 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Titre",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "Ce champ est obligatoire",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Le champ ne doit pas être vide",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Annuler",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "OK",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "Coller Signet ",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "Format de nombre",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Formule",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "Coller Fonction",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Paramètres de formule",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Annuler",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Aligner les numéros de page à droite",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Mettre la table des matières sous forme de liens",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Afficher les numéros de page",
|
||||
|
@ -1890,7 +1846,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Bordé",
|
||||
"DE.Views.TableSettings.textBorderColor": "Couleur",
|
||||
"DE.Views.TableSettings.textBorders": "Style des bordures",
|
||||
"DE.Views.TableSettings.textCancel": "Annuler",
|
||||
"DE.Views.TableSettings.textCellSize": "Taille de la cellule",
|
||||
"DE.Views.TableSettings.textColumns": "Colonnes",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Distribuer les colonnes",
|
||||
|
@ -1902,7 +1857,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Hauteur",
|
||||
"DE.Views.TableSettings.textLast": "Dernier",
|
||||
"DE.Views.TableSettings.textNewColor": "Couleur personnalisée",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Lignes",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Sélectionnez les bordures à modifier en appliquant le style choisi ci-dessus",
|
||||
"DE.Views.TableSettings.textTemplate": "Sélectionner à partir d'un modèle",
|
||||
|
@ -1919,8 +1873,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Seulement bordure extérieure droite",
|
||||
"DE.Views.TableSettings.tipTop": "Seulement bordure extérieure supérieure",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Pas de bordures",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Alignement",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignement",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espacement entre les cellules",
|
||||
|
@ -2201,7 +2153,6 @@
|
|||
"DE.Views.Toolbar.txtScheme7": "Capitaux",
|
||||
"DE.Views.Toolbar.txtScheme8": "Flux",
|
||||
"DE.Views.Toolbar.txtScheme9": "Fonderie",
|
||||
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Annuler",
|
||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
||||
"DE.Views.WatermarkSettingsDialog.textBold": "Gras",
|
||||
"DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Hozzáad",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Mégsem",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Aktuális",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "A megadott érték helytelen.<br>Kérjük, adjon meg egy értéket 000000 és FFFFFF között",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Új",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "Tel.: ",
|
||||
"Common.Views.About.txtVersion": "Verzió",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Mégsem",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Küldés",
|
||||
"Common.Views.Comments.textAdd": "Hozzáad",
|
||||
"Common.Views.Comments.textAddComment": "Hozzászólás hozzáadása",
|
||||
|
@ -167,13 +164,9 @@
|
|||
"Common.Views.History.textShow": "Kibont",
|
||||
"Common.Views.History.textShowAll": "Módosítások részletes megjelenítése",
|
||||
"Common.Views.History.textVer": "ver.",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Mégsem",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Illesszen be egy kép hivatkozást:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Ez egy szükséges mező",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Ennek a mezőnek hivatkozásnak kell lennie a \"http://www.example.com\" formátumban",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Mégsem",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Adjon meg valós sor és oszlop darabszámot.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Oszlopok száma",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "A mező maximális értéke {0}.",
|
||||
|
@ -181,12 +174,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Sorok száma",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Táblázat méret",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Cella felosztása",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Mégsem",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Dokumentum nyelvének kiválasztása",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Mégsem",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Fájl bezárása",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kódol",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Hibás jelszó.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Jelszó",
|
||||
|
@ -194,8 +183,6 @@
|
|||
"Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, az aktuális jelszó visszaáll.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Válassza a %1 opciót",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Védett fájl",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Mégsem",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Állítson be jelszót a dokumentum védelmére",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "A jelszavak nem azonosak",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Jelszó",
|
||||
|
@ -217,8 +204,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Digitális aláírás hozzáadása",
|
||||
"Common.Views.Protection.txtSignature": "Aláírás",
|
||||
"Common.Views.Protection.txtSignatureLine": "Aláírás sor hozzáadása",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Mégsem",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Fájl név",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "A fájlnév nem tartalmazhatja a következő karaktereket:",
|
||||
"Common.Views.ReviewChanges.hintNext": "A következő változáshoz",
|
||||
|
@ -282,8 +267,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Mentési mappa",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Betöltés",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Adatforrás kiválasztása",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Mégsem",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Félkövér",
|
||||
"Common.Views.SignDialog.textCertificate": "Tanúsítvány",
|
||||
"Common.Views.SignDialog.textChange": "Módosítás",
|
||||
|
@ -298,8 +281,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Érvényes %1 és %2 között",
|
||||
"Common.Views.SignDialog.tipFontName": "Betűtípus neve",
|
||||
"Common.Views.SignDialog.tipFontSize": "Betűméret",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Mégsem",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak hozzászólás hozzáadását az aláírási párbeszédablakban",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Aláíró infó",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -967,8 +948,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Szűken",
|
||||
"DE.Views.ChartSettings.txtTitle": "Diagram",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Felül - alul",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Mégsem",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Megjelenítés",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Mindenre alkalmaz",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "Kötő keret",
|
||||
|
@ -982,8 +961,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Tartalomkezelő beállításai",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "A tartalomkezelő nem törölhető",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "A tartalom nem szerkeszthető",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Mégsem",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Hasábok száma",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Hasáb elválasztó",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Hasábtávolság",
|
||||
|
@ -1193,8 +1170,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Csoport szétválasztása",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "%1 stílust frissít",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Függőleges rendezés",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Mégsem",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Szegélyek és kitöltés",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Iniciálé",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margók",
|
||||
|
@ -1349,8 +1324,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "Bal felső",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Oldal teteje",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Jobb felső",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Mégsem",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Kiválasztott szövegrészlet",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Megjelenít",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Külső hivatkozás",
|
||||
|
@ -1392,8 +1365,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Körbefutva",
|
||||
"DE.Views.ImageSettings.txtTight": "Szűken",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Felül - alul",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Mégsem",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Szöveg távolság",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Abszolút",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Elrendezés",
|
||||
|
@ -1495,7 +1466,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Tartalomjegyzék frissítése",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Hivatkozás hozzáadása",
|
||||
"DE.Views.Links.tipNotes": "Lábjegyzet beszúrása vagy szerkesztése",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Mégsem",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Küldés",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma",
|
||||
|
@ -1556,7 +1526,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Tartalom kiválasztása",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Alkalmaz",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Alkalmazás",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Mégsem",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Folyamatos",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Egyéni jel",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Teljes dokumentum",
|
||||
|
@ -1573,11 +1542,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Kezdés",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Alsó szöveg",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Jegyzet beállítások",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Mégsem",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Mégsem",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Figyelmeztetés",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Alsó",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Bal",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Jobb",
|
||||
|
@ -1585,8 +1550,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Felső",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "A felső és alsó margók túl magasak az adott oldalmagassághoz",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "A szélső margók túl szélesek az adott oldal szélességéhez",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Mégsem",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Magasság",
|
||||
"DE.Views.PageSizeDialog.textPreset": "Előzetes beállítás",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Lap méret",
|
||||
|
@ -1605,14 +1568,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Pontosan",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Új egyedi szín hozzáadása",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Mégsem",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "A megadott lapok ezen a területen jelennek meg.",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Minden nagybetű",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Szegélyek és kitöltés",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Oldaltörés elötte",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Duplán áthúzott",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Első sor",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Bal",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Jobb",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Sorok egyben tartása",
|
||||
|
@ -1756,13 +1716,9 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Cím",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "Ez egy szükséges mező",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "A mező nem lehet üres",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Mégse",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "OK",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "Számformátum",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Függvény",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Függvény beállítások",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Mégsem",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Jobbra rendezett oldalszámok",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Tartalomjegyzék formázása hivatkozásként",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Oldalszámok megjelenítése",
|
||||
|
@ -1802,7 +1758,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Csíkos",
|
||||
"DE.Views.TableSettings.textBorderColor": "Szín",
|
||||
"DE.Views.TableSettings.textBorders": "Szegély stílus",
|
||||
"DE.Views.TableSettings.textCancel": "Mégsem",
|
||||
"DE.Views.TableSettings.textCellSize": "Cella méret",
|
||||
"DE.Views.TableSettings.textColumns": "Oszlopok",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Oszlopok elosztása",
|
||||
|
@ -1814,7 +1769,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Magasság",
|
||||
"DE.Views.TableSettings.textLast": "Utolsó",
|
||||
"DE.Views.TableSettings.textNewColor": "Új egyedi szín hozzáadása",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Sorok",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Válassza ki a szegélyeket, amelyeket módosítani szeretne, a fenti stílus kiválasztásával",
|
||||
"DE.Views.TableSettings.textTemplate": "Választás a sablonokból",
|
||||
|
@ -1831,8 +1785,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Csak külső, jobb szegély beállítása",
|
||||
"DE.Views.TableSettings.tipTop": "Csak külső, felső szegély beállítása",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Nincsenek szegélyek",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Mégsem",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Elrendezés",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Elrendezés",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Cellák közti tér",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Aggiungi",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Annulla",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Attuale",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Il valore inserito non è corretto.<br>Inserisci un valore tra 000000 e FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nuovo",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Con tecnologia",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Versione ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Annulla",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Invia",
|
||||
"Common.Views.Comments.textAdd": "Aggiungi",
|
||||
"Common.Views.Comments.textAddComment": "Aggiungi",
|
||||
|
@ -174,13 +171,9 @@
|
|||
"Common.Views.History.textShow": "Espandi",
|
||||
"Common.Views.History.textShowAll": "Mostra modifiche dettagliate",
|
||||
"Common.Views.History.textVer": "ver.",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Incolla URL immagine:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Questo campo è richiesto",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Specifica il numero di righe e colonne valido.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Numero di colonne",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Il valore massimo di questo campo è {0}.",
|
||||
|
@ -188,12 +181,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Numero di righe",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Dimensioni tabella",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividi cella",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Annulla",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Chiudi File",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Codificazione",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Password errata",
|
||||
"Common.Views.OpenDialog.txtPassword": "Password",
|
||||
|
@ -201,8 +190,6 @@
|
|||
"Common.Views.OpenDialog.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "File protetto",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "É richiesta la password per proteggere il documento",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "la password di conferma non corrisponde",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Password",
|
||||
|
@ -224,8 +211,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Aggiungi firma digitale",
|
||||
"Common.Views.Protection.txtSignature": "Firma",
|
||||
"Common.Views.Protection.txtSignatureLine": "Riga della firma",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Nome del file",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Il nome del file non può contenere nessuno dei seguenti caratteri:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Alla modifica successiva",
|
||||
|
@ -291,8 +276,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Cartella di salvataggio",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Caricamento",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Seleziona Sorgente Dati",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Grassetto",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificato",
|
||||
"Common.Views.SignDialog.textChange": "Cambia",
|
||||
|
@ -307,8 +290,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Valido dal %1 al %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Nome carattere",
|
||||
"Common.Views.SignDialog.tipFontSize": "Dimensione carattere",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Consenti al firmatario di aggiungere commenti nella finestra di firma",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Informazioni sul Firmatario",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -1047,8 +1028,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Ravvicinato",
|
||||
"DE.Views.ChartSettings.txtTitle": "Grafico",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Sopra e sotto",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Annulla",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Aspetto",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Applica a tutti",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "Rettangolo di selezione",
|
||||
|
@ -1063,8 +1042,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Impostazioni di controllo del contenuto",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Il controllo del contenuto non può essere eliminato",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "I contenuti non possono essere modificati",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Annulla",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Numero di colonne",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Divisore Colonna",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "spaziatura fra le colonne",
|
||||
|
@ -1278,8 +1255,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Separa",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Aggiorna stile %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Allineamento verticale",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Bordi e riempimento",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Capolettera",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margini",
|
||||
|
@ -1445,8 +1420,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "In alto a sinistra",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Inizio pagina",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "In alto a destra",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annulla",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Testo selezionato",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Visualizza",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Collegamento esterno",
|
||||
|
@ -1488,8 +1461,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "All'interno",
|
||||
"DE.Views.ImageSettings.txtTight": "Ravvicinato",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Sopra e sotto",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Spaziatura interna",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Assoluto",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Allineamento",
|
||||
|
@ -1591,7 +1562,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Aggiorna Sommario",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Aggiungi collegamento ipertestuale",
|
||||
"DE.Views.Links.tipNotes": "Inserisci o modifica Note a piè di pagina",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Annulla",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema",
|
||||
|
@ -1652,7 +1622,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Scegli contenuto",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Applica",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Applica modifiche a",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Annulla",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Continua",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Simbolo personalizzato",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Tutto il documento",
|
||||
|
@ -1669,11 +1638,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Inizia da",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Sotto al testo",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Impostazioni delle note",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Annulla",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Annulla",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avviso",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "In basso",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Right",
|
||||
|
@ -1681,8 +1646,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "I margini superiore e inferiore sono troppo alti per una determinata altezza di pagina",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Annulla",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Height",
|
||||
"DE.Views.PageSizeDialog.textPreset": "Preimpostazione",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Page Size",
|
||||
|
@ -1701,15 +1664,12 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Esatta",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Colore personalizzato",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Le schede specificate appariranno in questo campo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Maiuscole",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordi e riempimento",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Anteponi interruzione",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barrato doppio",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Rientri",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prima riga",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A sinistra",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interlinea",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Livello del contorno",
|
||||
|
@ -1873,15 +1833,11 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Title",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "Campo obbligatorio",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Annulla",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "OK",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "Incolla il segnalibro",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "Formato del numero",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Formula",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "Incolla la funzione",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Impostazioni della formula",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Annulla",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Numeri di pagina allineati a destra",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Formato Sommario come collegamenti",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Mostra numeri di pagina",
|
||||
|
@ -1921,7 +1877,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Altera",
|
||||
"DE.Views.TableSettings.textBorderColor": "Colore",
|
||||
"DE.Views.TableSettings.textBorders": "Stile bordo",
|
||||
"DE.Views.TableSettings.textCancel": "Annulla",
|
||||
"DE.Views.TableSettings.textCellSize": "Dimensioni cella",
|
||||
"DE.Views.TableSettings.textColumns": "Colonne",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Distribuisci colonne",
|
||||
|
@ -1933,7 +1888,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Altezza",
|
||||
"DE.Views.TableSettings.textLast": "Ultima",
|
||||
"DE.Views.TableSettings.textNewColor": "Colore personalizzato",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Righe",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Seleziona i bordi che desideri modificare applicando lo stile scelto sopra",
|
||||
"DE.Views.TableSettings.textTemplate": "Seleziona da modello",
|
||||
|
@ -1950,8 +1904,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Imposta solo bordo esterno destro",
|
||||
"DE.Views.TableSettings.tipTop": "Imposta solo bordo esterno superiore",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Nessun bordo",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Allineamento",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Allineamento",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Consenti spaziatura tra celle",
|
||||
|
@ -2234,8 +2186,6 @@
|
|||
"DE.Views.Toolbar.txtScheme7": "Universo",
|
||||
"DE.Views.Toolbar.txtScheme8": "Flusso",
|
||||
"DE.Views.Toolbar.txtScheme9": "Galassia",
|
||||
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Annulla",
|
||||
"DE.Views.WatermarkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
||||
"DE.Views.WatermarkSettingsDialog.textBold": "Grassetto",
|
||||
"DE.Views.WatermarkSettingsDialog.textColor": "Colore del testo",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "罫線なし",
|
||||
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "追加",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "キャンセル",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "現在",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "入力された値が正しくありません。<br>000000〜FFFFFFの数値を入力してください。",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "新しい",
|
||||
|
@ -104,8 +103,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "電話番号:",
|
||||
"Common.Views.About.txtVersion": "バージョン",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "キャンセル",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "送信",
|
||||
"Common.Views.Comments.textAdd": "追加",
|
||||
"Common.Views.Comments.textAddComment": "コメントの追加",
|
||||
|
@ -136,21 +133,15 @@
|
|||
"Common.Views.ExternalMergeEditor.textSave": "保存&終了",
|
||||
"Common.Views.ExternalMergeEditor.textTitle": "差し込み印刷の宛先",
|
||||
"Common.Views.Header.textBack": "ドキュメントに移動",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "キャンセル",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "画像のURLの貼り付け",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "キャンセル",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "有効な行と列の数を指定する必要があります。",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "列数",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "このフィールドの最大値は{0}です。",
|
||||
"Common.Views.InsertTableDialog.txtMinText": "このフィールドの最小値は{0}です。",
|
||||
"Common.Views.InsertTableDialog.txtRows": "行数",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "表のサイズ",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "キャンセル",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "エンコード",
|
||||
"Common.Views.OpenDialog.txtTitle": "%1オプションの選択",
|
||||
"Common.Views.ReviewChanges.txtAccept": "同意する",
|
||||
|
@ -786,8 +777,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "グループ化解除",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "%1スタイルの更新",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "垂直方向の配置",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "キャンセル",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "罫線と塗りつぶし",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "ドロップ キャップ",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "余白",
|
||||
|
@ -915,8 +904,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopCenter": "上中央",
|
||||
"DE.Views.HeaderFooterSettings.textTopLeft": "左上",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "右上",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "キャンセル",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "テキスト フラグメントの選択",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "ディスプレイ",
|
||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "ハイパーリンクの設定",
|
||||
|
@ -940,8 +927,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "スルー",
|
||||
"DE.Views.ImageSettings.txtTight": "外周",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "上と下",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "キャンセル",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "テキストの埋め込み文字",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "アブソリュート",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "配置",
|
||||
|
@ -1010,7 +995,6 @@
|
|||
"DE.Views.LeftMenu.tipSearch": "検索",
|
||||
"DE.Views.LeftMenu.tipSupport": "フィードバック&サポート",
|
||||
"DE.Views.LeftMenu.tipTitles": "タイトル",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "キャンセル",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "送信",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "テーマ",
|
||||
|
@ -1058,9 +1042,7 @@
|
|||
"DE.Views.MailMergeSettings.txtPrev": "前のレコード",
|
||||
"DE.Views.MailMergeSettings.txtUntitled": "無題",
|
||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "マージの開始に失敗しました",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "キャンセル",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "警告",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "下",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "左",
|
||||
"DE.Views.PageMarginsDialog.textRight": "右",
|
||||
|
@ -1068,8 +1050,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "トップ",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "指定されたページの高さのために上下の余白は高すぎます。",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "左右の余白の合計がページの幅を超えています。",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "キャンセル",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "高さ",
|
||||
"DE.Views.PageSizeDialog.textTitle": "ページ サイズ",
|
||||
"DE.Views.PageSizeDialog.textWidth": "幅",
|
||||
|
@ -1086,14 +1066,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "固定値",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "ユーザー設定の色の追加",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "自動",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "キャンセル",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "指定されたタブは、このフィールドに表示されます。",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "全てのキャップ",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "罫線と塗りつぶし",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "前に改ページ",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "二重取り消し線",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "最初の行",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右に",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "段落を分割しない",
|
||||
|
@ -1231,7 +1208,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "縞模様",
|
||||
"DE.Views.TableSettings.textBorderColor": "色",
|
||||
"DE.Views.TableSettings.textBorders": "罫線のスタイル",
|
||||
"DE.Views.TableSettings.textCancel": "キャンセル",
|
||||
"DE.Views.TableSettings.textColumns": "列",
|
||||
"DE.Views.TableSettings.textEdit": "行/列",
|
||||
"DE.Views.TableSettings.textEmptyTemplate": "テンプレートなし",
|
||||
|
@ -1239,7 +1215,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "ヘッダー",
|
||||
"DE.Views.TableSettings.textLast": "最後",
|
||||
"DE.Views.TableSettings.textNewColor": "ユーザー設定の色の追加",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "行",
|
||||
"DE.Views.TableSettings.textSelectBorders": "選択したスタイルを適用する罫線を選択してください。 ",
|
||||
"DE.Views.TableSettings.textTemplate": "テンプレートから選択する",
|
||||
|
@ -1255,8 +1230,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "外部の罫線(右)だけを設定します。",
|
||||
"DE.Views.TableSettings.tipTop": "外部の罫線(上)だけを設定します。",
|
||||
"DE.Views.TableSettings.txtNoBorders": "罫線なし",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "キャンセル",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "配置",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "配置",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "セルの間隔を指定する",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "테두리 없음",
|
||||
"Common.UI.ComboDataView.emptyComboText": "스타일 없음",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Add",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "취소",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "현재",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "입력 한 값이 잘못되었습니다. <br> 000000에서 FFFFFF 사이의 값을 입력하십시오.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "New",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tel .:",
|
||||
"Common.Views.About.txtVersion": "버전",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "취소",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "보내기",
|
||||
"Common.Views.Comments.textAdd": "추가",
|
||||
"Common.Views.Comments.textAddComment": "덧글 추가",
|
||||
|
@ -166,13 +163,9 @@
|
|||
"Common.Views.History.textRestore": "복원",
|
||||
"Common.Views.History.textShow": "확장",
|
||||
"Common.Views.History.textShowAll": "자세한 변경 사항 표시",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "취소",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "이미지 URL 붙여 넣기 :",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "이 입력란은 필수 항목",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "취소",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "유효한 행 및 열 수를 지정해야합니다.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "열 수",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "이 필드의 최대 값은 {0}입니다.",
|
||||
|
@ -180,20 +173,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "행 수",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "표 크기",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "셀 분할",
|
||||
"Common.Views.LanguageDialog.btnCancel": "취소",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "문서 언어 선택",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "취소",
|
||||
"Common.Views.OpenDialog.closeButtonText": "파일 닫기",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "인코딩",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음",
|
||||
"Common.Views.OpenDialog.txtPassword": "비밀번호",
|
||||
"Common.Views.OpenDialog.txtPreview": "미리보기",
|
||||
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "보호 된 파일",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "취소",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "문서 보호용 비밀번호를 세팅하세요",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "확인 비밀번호가 같지 않음",
|
||||
"Common.Views.PasswordDialog.txtPassword": "암호",
|
||||
|
@ -215,8 +202,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "디지털 서명을 추가",
|
||||
"Common.Views.Protection.txtSignature": "서명",
|
||||
"Common.Views.Protection.txtSignatureLine": "서명 라인",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "취소",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "파일 이름",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "파일 이름에 다음 문자를 포함 할 수 없습니다 :",
|
||||
"Common.Views.ReviewChanges.hintNext": "다음 변경 사항",
|
||||
|
@ -268,8 +253,6 @@
|
|||
"Common.Views.ReviewChangesDialog.txtReject": "거부",
|
||||
"Common.Views.ReviewChangesDialog.txtRejectAll": "모든 변경 사항 거부",
|
||||
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "현재 변경 거부",
|
||||
"Common.Views.SignDialog.cancelButtonText": "취소",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "볼드체",
|
||||
"Common.Views.SignDialog.textCertificate": "인증",
|
||||
"Common.Views.SignDialog.textChange": "변경",
|
||||
|
@ -284,8 +267,6 @@
|
|||
"Common.Views.SignDialog.textValid": "%1에서 %2까지 유효",
|
||||
"Common.Views.SignDialog.tipFontName": "폰트명",
|
||||
"Common.Views.SignDialog.tipFontSize": "글꼴 크기",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "취소",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "서명 대화창에 서명자의 코멘트 추가 허용",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "서명자 정보",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "이메일",
|
||||
|
@ -821,16 +802,12 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Tight",
|
||||
"DE.Views.ChartSettings.txtTitle": "차트",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "상단 및 하단",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "취소",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textLock": "잠그기",
|
||||
"DE.Views.ControlSettingsDialog.textName": "제목",
|
||||
"DE.Views.ControlSettingsDialog.textTag": "꼬리표",
|
||||
"DE.Views.ControlSettingsDialog.textTitle": "콘텐트 제어 세팅",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "콘텐트 제어가 삭제될 수 없슴",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "콘텐트가 편집될 수 없슴",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "취소",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "열 수",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "열 구분선",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "열 사이의 간격",
|
||||
|
@ -1024,8 +1001,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "그룹 해제",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "%1 스타일 업데이트",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "취소",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "테두리 및 채우기",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "드롭 캡",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "여백",
|
||||
|
@ -1178,8 +1153,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "왼쪽 상단",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "페이지 시작",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "오른쪽 상단",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "취소",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "선택한 텍스트 조각",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "표시",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "외부 링크",
|
||||
|
@ -1209,8 +1182,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "통해",
|
||||
"DE.Views.ImageSettings.txtTight": "Tight",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "상단 및 하단",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "취소",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "텍스트 채우기",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolute",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "정렬",
|
||||
|
@ -1305,7 +1276,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "콘텐트 테이블 새로고침",
|
||||
"DE.Views.Links.tipInsertHyperlink": "하이퍼 링크 추가",
|
||||
"DE.Views.Links.tipNotes": "각주 삽입 또는 편집",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "취소",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "보내기",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "테마",
|
||||
|
@ -1366,7 +1336,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "콘텐트 선택",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "적용",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "변경 사항 적용",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "취소",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "연속",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "사용자 정의 표시",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "전체 문서",
|
||||
|
@ -1383,9 +1352,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "시작 시간",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "텍스트 아래에",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "메모 설정",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "취소",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "경고",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "왼쪽",
|
||||
"DE.Views.PageMarginsDialog.textRight": "오른쪽",
|
||||
|
@ -1393,8 +1360,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "주어진 페이지 높이에 대해 위쪽 및 아래쪽 여백이 너무 높습니다.",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "왼쪽 및 오른쪽 여백이 주어진 페이지 너비에 비해 너무 넓습니다.",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "취소",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "높이",
|
||||
"DE.Views.PageSizeDialog.textTitle": "페이지 크기",
|
||||
"DE.Views.PageSizeDialog.textWidth": "너비",
|
||||
|
@ -1412,14 +1377,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "정확히",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "새 사용자 지정 색 추가",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "취소",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "지정된 탭이이 필드에 나타납니다",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "테두리 및 채우기",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "전에 페이지 나누기",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "이중 취소 선",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "First Line",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "줄을 함께 유지",
|
||||
|
@ -1556,8 +1518,6 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "제목",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "이 입력란은 필수 항목",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "필드가 비어 있어서는 안됩니다.",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "취소",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "확인",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "오른쪽 정렬 페이지 번호",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "콘텐츠 테이블을 포맷하세요",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "페이지 번호를 보여주세요",
|
||||
|
@ -1596,7 +1556,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "줄무늬",
|
||||
"DE.Views.TableSettings.textBorderColor": "Color",
|
||||
"DE.Views.TableSettings.textBorders": "테두리 스타일",
|
||||
"DE.Views.TableSettings.textCancel": "취소",
|
||||
"DE.Views.TableSettings.textCellSize": "셀 크기",
|
||||
"DE.Views.TableSettings.textColumns": "열",
|
||||
"DE.Views.TableSettings.textDistributeCols": "컬럼 배포",
|
||||
|
@ -1608,7 +1567,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "높이",
|
||||
"DE.Views.TableSettings.textLast": "Last",
|
||||
"DE.Views.TableSettings.textNewColor": "새 사용자 지정 색 추가",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "행",
|
||||
"DE.Views.TableSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택",
|
||||
"DE.Views.TableSettings.textTemplate": "템플릿에서 선택",
|
||||
|
@ -1625,8 +1583,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "바깥 쪽 테두리 만 설정",
|
||||
"DE.Views.TableSettings.tipTop": "바깥 쪽 테두리 만 설정",
|
||||
"DE.Views.TableSettings.txtNoBorders": "테두리 없음",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "취소",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "정렬",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "정렬",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "셀 사이의 간격",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
|
||||
"Common.UI.ComboDataView.emptyComboText": "No styles",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Pievienot",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Atcelt",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Current",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.<br>Please enter a value between 000000 and FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "New",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Version ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Atcelt",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Sūtīt",
|
||||
"Common.Views.Comments.textAdd": "Pievienot",
|
||||
"Common.Views.Comments.textAddComment": "Pievienot",
|
||||
|
@ -163,13 +160,9 @@
|
|||
"Common.Views.History.textRestore": "Atjaunot",
|
||||
"Common.Views.History.textShow": "Izvērst",
|
||||
"Common.Views.History.textShowAll": "Rādīt detalizētas izmaiņas",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Ielīmēt attēla URL:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Šis lauks ir nepieciešams",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Šis lauks jābūt URL formātā \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Jums jānorāda derīgo rindas un kolonnas skaitu.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Kolonnu skaits",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maksimālā vērtība šajā jomā ir {0}.",
|
||||
|
@ -177,20 +170,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Rindu skaits",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tabulas izmērs",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Sadalīt šūnu",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Atcelt",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Izvēlēties dokumenta valodu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Aizvērt failu",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Parole nav pareiza.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Parole",
|
||||
"Common.Views.OpenDialog.txtPreview": "Priekšskatījums",
|
||||
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Aizsargāts fails",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Lai pasargātu šo dokumentu, uzstādiet paroli",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Apstiprinājuma parole nesakrīt",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Parole",
|
||||
|
@ -212,8 +199,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Pievienot digitālo parakstu",
|
||||
"Common.Views.Protection.txtSignature": "Paraksts",
|
||||
"Common.Views.Protection.txtSignatureLine": "Paraksta līnija",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Faila nosaukums",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Faila nosaukums nedrīkst saturēt šādas zīmes:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Uz nākamo izmaiņu",
|
||||
|
@ -265,8 +250,6 @@
|
|||
"Common.Views.ReviewChangesDialog.txtReject": "Noraidīt",
|
||||
"Common.Views.ReviewChangesDialog.txtRejectAll": "Noraidīt visas izmaiņas",
|
||||
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Noraidīt šībrīža izmaiņu",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Treknraksts",
|
||||
"Common.Views.SignDialog.textCertificate": "sertifikāts",
|
||||
"Common.Views.SignDialog.textChange": "Izmainīt",
|
||||
|
@ -281,8 +264,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Derīgs no %1 līdz %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Fonts",
|
||||
"Common.Views.SignDialog.tipFontSize": "Fonta izmērs",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Atļaut parakstītājam pievienot komentāru paraksta logā",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Informācija par parakstītāju",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-pasts",
|
||||
|
@ -818,16 +799,12 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Tight",
|
||||
"DE.Views.ChartSettings.txtTitle": "Chart",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Top and bottom",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Atcelt",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textLock": "Bloķēšana",
|
||||
"DE.Views.ControlSettingsDialog.textName": "Nosaukums",
|
||||
"DE.Views.ControlSettingsDialog.textTag": "Birka",
|
||||
"DE.Views.ControlSettingsDialog.textTitle": "Satura kontroles uzstādījumi",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Satura kontrole nevar tikt dzēsta",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Saturu nevar rediģēt",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Atcelt",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Kolonnu skaits",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Kolonnu sadalītājs",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Atstarpe starp kolonnām",
|
||||
|
@ -1021,8 +998,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Vertikālā Līdzināšana",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margins",
|
||||
|
@ -1175,8 +1150,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "augšā pa kreisi",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Lappuses augšpuse",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "augšā pa labi",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Atcelt",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Atlasīts teksta fragments",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Radīt",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Ārējā saite",
|
||||
|
@ -1206,8 +1179,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Through",
|
||||
"DE.Views.ImageSettings.txtTight": "Tight",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Top and bottom",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Atcelt",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Margins",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolūtā",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment",
|
||||
|
@ -1302,7 +1273,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Atsvaidzināt satura rādītāju",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Pievienot hipersaiti",
|
||||
"DE.Views.Links.tipNotes": "Ievietot vai rediģēt apakšējās piezīmes",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancel",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme",
|
||||
|
@ -1363,7 +1333,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Izvēlēties saturu",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Piemērot",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Piemērot izmaiņas",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Atcelt",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Nepārtraukts",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Pielāgotā zīme",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Viss dokuments",
|
||||
|
@ -1380,9 +1349,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Sākt ar",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Zem teksta",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Piezīmju uzstādījumi",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "Ok",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Right",
|
||||
|
@ -1390,8 +1357,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Height",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Page Size",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Width",
|
||||
|
@ -1409,14 +1374,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Tieši",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Pievienot jauno krāsu",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Atcelt",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Apmales & Fons",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Lappuses pārtraukums pirms",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Pirma līnija",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Pa kreisi",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Pa labi",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Turēt līnijas kopā",
|
||||
|
@ -1553,8 +1515,6 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Title",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Atcelt",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Lappušu numuru labais izlīdzinājums",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Formatēt satura rādītāju kā saites",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Rādīt lappušu numurus",
|
||||
|
@ -1593,7 +1553,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Banded",
|
||||
"DE.Views.TableSettings.textBorderColor": "Krāsa",
|
||||
"DE.Views.TableSettings.textBorders": "Apmales stils",
|
||||
"DE.Views.TableSettings.textCancel": "Atcelt",
|
||||
"DE.Views.TableSettings.textCellSize": "Šūnas izmērs",
|
||||
"DE.Views.TableSettings.textColumns": "Columns",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Izplatīt kolonnas",
|
||||
|
@ -1605,7 +1564,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Augstums",
|
||||
"DE.Views.TableSettings.textLast": "Last",
|
||||
"DE.Views.TableSettings.textNewColor": "Pievienot jauno krāsu",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Rows",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Apmales stilu piemerošanai",
|
||||
"DE.Views.TableSettings.textTemplate": "Select From Template",
|
||||
|
@ -1622,8 +1580,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Set Outer Right Border Only",
|
||||
"DE.Views.TableSettings.tipTop": "Set Outer Top Border Only",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Nav apmales",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Atcelt",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Nolīdzināšana",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignment",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Atļaut atstarpes starp šūnām",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Toevoegen",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Annuleren",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Huidig",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "De ingevoerde waarde is onjuist.<br>Voer een waarde tussen 000000 en FFFFFF in.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nieuw",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Aangedreven door",
|
||||
"Common.Views.About.txtTel": "Tel.:",
|
||||
"Common.Views.About.txtVersion": "Versie",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Annuleren",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Verzenden",
|
||||
"Common.Views.Comments.textAdd": "Toevoegen",
|
||||
"Common.Views.Comments.textAddComment": "Opmerking toevoegen",
|
||||
|
@ -172,13 +169,9 @@
|
|||
"Common.Views.History.textRestore": "Herstellen",
|
||||
"Common.Views.History.textShow": "Uitvouwen",
|
||||
"Common.Views.History.textShowAll": "Details wijzigingen tonen",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "u moet een geldig aantal rijen en kolommen opgeven.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Aantal kolommen",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "De maximumwaarde voor dit veld is {0}.",
|
||||
|
@ -186,20 +179,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Aantal rijen",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tabelgrootte",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Cel Splitsen",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Annuleren",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
|
||||
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
|
||||
"Common.Views.OpenDialog.txtPreview": "Voorbeeld",
|
||||
"Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Beschermd bestand",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Pas een wachtwoord toe om dit document te beveiligen",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bevestig wachtwoord is niet identiek",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Wachtwoord",
|
||||
|
@ -221,8 +208,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Digitale handtekening toevoegen",
|
||||
"Common.Views.Protection.txtSignature": "Handtekening",
|
||||
"Common.Views.Protection.txtSignatureLine": "Handtekening lijn",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Bestandsnaam",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "De bestandsnaam mag geen van de volgende tekens bevatten:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Naar Volgende Wijziging",
|
||||
|
@ -286,8 +271,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Map voor opslaan",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Laden",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Gegevensbron selecteren",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Vet",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificaat",
|
||||
"Common.Views.SignDialog.textChange": "Wijzigen",
|
||||
|
@ -302,8 +285,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Geldig van %1 tot %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Lettertype",
|
||||
"Common.Views.SignDialog.tipFontSize": "Tekengrootte",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Sta ondertekenaar toe commentaar toe te voegen in het handtekening venster.",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Ondertekenaar info",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -918,8 +899,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Strak",
|
||||
"DE.Views.ChartSettings.txtTitle": "Grafiek",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Boven en onder",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Annuleren",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Verschijning",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Op alles toepassen",
|
||||
"DE.Views.ControlSettingsDialog.textColor": "Kleur",
|
||||
|
@ -933,8 +912,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Inhoud beheer instellingen",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Inhoud beheer kan niet verwijderd worden",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Inhoud kan niet aangepast worden",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Annuleren",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Aantal kolommen",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Scheidingsmarkering kolommen",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Afstand tussen kolommen",
|
||||
|
@ -1139,8 +1116,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Groepering opheffen",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Stijl %1 bijwerken",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Verticale uitlijning",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Randen & opvulling",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Decoratieve initiaal",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Marges",
|
||||
|
@ -1295,8 +1270,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "Linksboven",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Bovenaan de pagina",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Rechtsboven",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annuleren",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Geselecteerd tekstfragment",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Weergeven",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Externe koppeling",
|
||||
|
@ -1335,8 +1308,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Door",
|
||||
"DE.Views.ImageSettings.txtTight": "Strak",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Boven en onder",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Opvulling van tekst",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absoluut",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Uitlijning",
|
||||
|
@ -1434,7 +1405,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Inhoudsopgave verversen",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Hyperlink toevoegen",
|
||||
"DE.Views.Links.tipNotes": "Voetnoten invoegen of bewerken",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Annuleren",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Verzenden",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thema",
|
||||
|
@ -1495,7 +1465,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Selecteer inhoud",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Toepassen",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Wijzigingen toepassen op",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Annuleren",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Doorlopend",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Aangepaste markering",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Hele document",
|
||||
|
@ -1512,11 +1481,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Beginnen bij",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Onder tekst",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Instellingen voor notities",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Annuleren",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Annuleren",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Waarschuwing",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Onder",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Links",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Rechts",
|
||||
|
@ -1524,8 +1489,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Boven",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Boven- en ondermarges zijn te hoog voor de opgegeven paginahoogte",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Linker- en rechtermarge zijn te breed voor opgegeven paginabreedte",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Annuleren",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Hoogte",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Paginaformaat",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Breedte",
|
||||
|
@ -1543,14 +1506,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Exact",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Automatisch",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "De opgegeven tabbladen worden in dit veld weergegeven",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Allemaal hoofdletters",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Randen & opvulling",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Pagina-einde vóór",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dubbel doorhalen",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Eerste regel",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Regels bijeenhouden",
|
||||
|
@ -1692,12 +1652,8 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Titel",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "Dit veld is vereist",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Veld mag niet leeg zijn",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Annuleren",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "OK",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Formule",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Formule instellingen",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Annuleren",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Paginanummers rechts uitlijnen",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Inhoudsopgave als link gebruiken",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Toon paginanummers",
|
||||
|
@ -1737,7 +1693,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Gestreept",
|
||||
"DE.Views.TableSettings.textBorderColor": "Kleur",
|
||||
"DE.Views.TableSettings.textBorders": "Randstijl",
|
||||
"DE.Views.TableSettings.textCancel": "Annuleren",
|
||||
"DE.Views.TableSettings.textCellSize": "Celgrootte",
|
||||
"DE.Views.TableSettings.textColumns": "Kolommen",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Kolommen verdelen",
|
||||
|
@ -1749,7 +1704,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Hoogte",
|
||||
"DE.Views.TableSettings.textLast": "Laatste",
|
||||
"DE.Views.TableSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Rijen",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen",
|
||||
"DE.Views.TableSettings.textTemplate": "Selecteren uit sjabloon",
|
||||
|
@ -1766,8 +1720,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Alleen buitenrand rechts instellen",
|
||||
"DE.Views.TableSettings.tipTop": "Alleen buitenrand boven instellen",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Geen randen",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Uitlijning",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Uitlijning",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Afstand tussen cellen",
|
||||
|
|
|
@ -71,7 +71,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Dodaj",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Anuluj",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Obecny",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Wprowadzona wartość jest nieprawidłowa.<br>Wprowadź wartość w zakresie od 000000 do FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nowy",
|
||||
|
@ -110,8 +109,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "zasilany przez",
|
||||
"Common.Views.About.txtTel": "tel.:",
|
||||
"Common.Views.About.txtVersion": "Wersja",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Anuluj",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Wyślij",
|
||||
"Common.Views.Comments.textAdd": "Dodaj",
|
||||
"Common.Views.Comments.textAddComment": "Dodaj komentarz",
|
||||
|
@ -164,13 +161,9 @@
|
|||
"Common.Views.History.textRestore": "Przywróć",
|
||||
"Common.Views.History.textShow": "Rozszerz",
|
||||
"Common.Views.History.textShowAll": "Pokaż szczegółowe zmiany",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Anuluj",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Wklej link URL do obrazu:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "To pole jest wymagane",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Anuluj",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Musisz podać liczby wierszy i kolumn.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Ilość kolumn",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maksymalna wartość dla tego pola to {0}",
|
||||
|
@ -178,19 +171,13 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Liczba wierszy",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Rozmiar tablicy",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Podziel komórkę",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Anuluj",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Wybierz język dokumentu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Anuluj",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Zamknij plik",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kodowanie",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Hasło",
|
||||
"Common.Views.OpenDialog.txtTitle": "Wybierz %1 opcji",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Plik chroniony",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Anuluj",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Ustaw hasło aby zabezpieczyć ten dokument",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Hasła nie są takie same",
|
||||
"Common.Views.PluginDlg.textLoading": "Ładowanie",
|
||||
|
@ -207,8 +194,6 @@
|
|||
"Common.Views.Protection.txtEncrypt": "Szyfruj",
|
||||
"Common.Views.Protection.txtInvisibleSignature": "Dodaj podpis cyfrowy",
|
||||
"Common.Views.Protection.txtSignatureLine": "Dodaj linię do podpisu",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Anuluj",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Nazwa pliku",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Nazwa pliku nie może zawierać żadnego z następujących znaków:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Do następnej zmiany",
|
||||
|
@ -257,16 +242,12 @@
|
|||
"Common.Views.ReviewPopover.textClose": "Zamknij",
|
||||
"Common.Views.ReviewPopover.textEdit": "OK",
|
||||
"Common.Views.ReviewPopover.textResolve": "Rozwiąż",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Anuluj",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Pogrubienie",
|
||||
"Common.Views.SignDialog.textCertificate": "Certyfikat",
|
||||
"Common.Views.SignDialog.textChange": "Zmień",
|
||||
"Common.Views.SignDialog.textItalic": "Kursywa",
|
||||
"Common.Views.SignDialog.textPurpose": "Cel podpisywania tego dokumentu",
|
||||
"Common.Views.SignDialog.textTitle": "Podpisz dokument",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Anuluj",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
"Common.Views.SignSettingsDialog.textShowDate": "Pokaż datę wykonania podpisu",
|
||||
"DE.Controllers.LeftMenu.leavePageText": "Wszystkie niezapisane zmiany w tym dokumencie zostaną utracone. Kliknij przycisk \"Anuluj\", a następnie \"Zapisz\", aby je zapisać. Kliknij \"OK\", aby usunąć wszystkie niezapisane zmiany.",
|
||||
|
@ -819,8 +800,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "szczelnie",
|
||||
"DE.Views.ChartSettings.txtTitle": "Wykres",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Góra i dół",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Anuluj",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Wygląd",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Zastosuj wszędzie",
|
||||
"DE.Views.ControlSettingsDialog.textColor": "Kolor",
|
||||
|
@ -829,8 +808,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textShowAs": "Pokaż jako",
|
||||
"DE.Views.ControlSettingsDialog.textTitle": "Ustawienia kontroli treści",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Nie można usunąć kontroli treści",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Anuluj",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Ilość kolumn",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Podział kolumn",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Przerwa między kolumnami",
|
||||
|
@ -1019,8 +996,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Rozgrupuj",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Aktualizuj %1 styl",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Wyrównaj pionowo",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Anuluj",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Obramowania i wypełnienie",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Inicjały",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Marginesy",
|
||||
|
@ -1167,8 +1142,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopCenter": "Górny środek",
|
||||
"DE.Views.HeaderFooterSettings.textTopLeft": "Lewy górny",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Prawy górny",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Anuluj",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Wybrany fragment tekstu",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Pokaż",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Link zewnętrzny",
|
||||
|
@ -1202,8 +1175,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Przez",
|
||||
"DE.Views.ImageSettings.txtTight": "szczelnie",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Góra i dół",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Anuluj",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Wypełnienie tekstem",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Bezwzględny",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Wyrównanie",
|
||||
|
@ -1299,7 +1270,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Odśwież tabelę zawartości",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Dodaj link",
|
||||
"DE.Views.Links.tipNotes": "Wstawianie lub edytowanie przypisów",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Anuluj",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Wyślij",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Motyw",
|
||||
|
@ -1352,7 +1322,6 @@
|
|||
"DE.Views.Navigation.txtExpand": "Rozwiń wszystko",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Zatwierdź",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Zatwierdź zmiany do",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Anuluj",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Ciągły",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Znak niestandardowy",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Cały dokument",
|
||||
|
@ -1369,11 +1338,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Zacznij w",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Poniżej tekstu",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Ustawienia notatek",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Anuluj",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Anuluj",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Ostrzeżenie",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Dół",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Lewy",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Prawy",
|
||||
|
@ -1381,8 +1346,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Góra",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Górne i dolne marginesy są za wysokie dla danej wysokości strony",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Lewe i prawe marginesy są zbyt szerokie dla danej szerokości strony",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Anuluj",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Wysokość",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Rozmiar strony",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Szerokość",
|
||||
|
@ -1400,14 +1363,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Dokładnie",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Nowy niestandardowy kolor",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Automatyczny",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Anuluj",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "W tym polu zostaną wyświetlone określone karty",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Wszystkie duże litery",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Obramowania i wypełnienie",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Przerwanie strony przed",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Podwójne przekreślenie",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Pierwszy wiersz",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Lewy",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Prawy",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "po",
|
||||
|
@ -1542,12 +1502,8 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Tytuł",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "To pole jest wymagane",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Pole nie może być puste",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Anuluj",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "OK",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "Wklej funkcję",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Ustawienia formuł",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Anuluj",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Pokaż numery stron",
|
||||
"DE.Views.TableOfContentsSettings.textNone": "Brak",
|
||||
"DE.Views.TableOfContentsSettings.textStyle": "Styl",
|
||||
|
@ -1575,7 +1531,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Na przemian",
|
||||
"DE.Views.TableSettings.textBorderColor": "Kolor",
|
||||
"DE.Views.TableSettings.textBorders": "Style obramowań",
|
||||
"DE.Views.TableSettings.textCancel": "Anuluj",
|
||||
"DE.Views.TableSettings.textCellSize": "Rozmiar komórki",
|
||||
"DE.Views.TableSettings.textColumns": "Kolumny",
|
||||
"DE.Views.TableSettings.textEdit": "Wiersze i Kolumny",
|
||||
|
@ -1584,7 +1539,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "Nagłówek",
|
||||
"DE.Views.TableSettings.textLast": "Ostatni",
|
||||
"DE.Views.TableSettings.textNewColor": "Nowy niestandardowy kolor",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Wiersze",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Wybierz obramowania, które chcesz zmienić stosując styl wybrany powyżej",
|
||||
"DE.Views.TableSettings.textTemplate": "Wybierz z szablonu",
|
||||
|
@ -1600,8 +1554,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Ustaw tylko obramowanie prawej krawędzi",
|
||||
"DE.Views.TableSettings.tipTop": "Ustaw tylko obramowanie górnej krawędzi",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Bez krawędzi",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Anuluj",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Wyrównanie",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Wyrównanie",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Rozstaw między komórkami",
|
||||
|
@ -1874,7 +1826,6 @@
|
|||
"DE.Views.Toolbar.txtScheme7": "Kapitał",
|
||||
"DE.Views.Toolbar.txtScheme8": "Przepływ",
|
||||
"DE.Views.Toolbar.txtScheme9": "Odlewnia",
|
||||
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Anuluj",
|
||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Automatyczny",
|
||||
"DE.Views.WatermarkSettingsDialog.textBold": "Pogrubienie",
|
||||
"DE.Views.WatermarkSettingsDialog.textNewColor": "Nowy niestandardowy kolor",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Adicionar",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Cancelar",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Atual",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "O valor inserido está incorreto.<br>Insira um valor entre 000000 e FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Novo",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Desenvolvido por",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Versão",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancelar",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Enviar",
|
||||
"Common.Views.Comments.textAdd": "Adicionar",
|
||||
"Common.Views.Comments.textAddComment": "Adicionar",
|
||||
|
@ -158,13 +155,9 @@
|
|||
"Common.Views.History.textRestore": "Restaurar",
|
||||
"Common.Views.History.textShow": "Expandir",
|
||||
"Common.Views.History.textShowAll": "Mostrar alterações detalhadas",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Colar uma URL de imagem:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Você precisa especificar a contagem de linhas e colunas válida.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Número de colunas",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "O valor máximo para este campo é {0}.",
|
||||
|
@ -172,12 +165,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Número de linhas",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tamanho da tabela",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividir célula",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Cancelar",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Selecionar idioma do documento",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Fechar Arquivo",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Senha incorreta.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Senha",
|
||||
|
@ -200,8 +189,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Inserir assinatura digital",
|
||||
"Common.Views.Protection.txtSignature": "Assinatura",
|
||||
"Common.Views.Protection.txtSignatureLine": "Linha de assinatura",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.RenameDialog.okButtonText": "Aceitar",
|
||||
"Common.Views.RenameDialog.textName": "Nome de arquivo",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Nome de arquivo não pode conter os seguintes caracteres:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Para a próxima alteração",
|
||||
|
@ -788,8 +775,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Propriedades do controle de conteúdo",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Controle de Conteúdo não pode ser excluído",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Conteúdo não pode ser editado",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Número de colunas",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Divisor de coluna",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Espaçamento entre colunas",
|
||||
|
@ -973,8 +958,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Desagrupar",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Bordas e preenchimento",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Letra capitular",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margens",
|
||||
|
@ -1123,8 +1106,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "Superior esquerdo",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Topo da Página",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Superior direito",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmento de texto selecionado",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Exibir",
|
||||
"DE.Views.HyperlinkSettingsDialog.textInternal": "Colocar no Documento",
|
||||
|
@ -1154,8 +1135,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Através",
|
||||
"DE.Views.ImageSettings.txtTight": "Justo",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Parte superior e inferior",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Preenchimento de texto",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absoluto",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alinhamento",
|
||||
|
@ -1241,7 +1220,6 @@
|
|||
"DE.Views.Links.tipBookmarks": "Criar Favorito",
|
||||
"DE.Views.Links.tipContents": "Inserir tabela de conteúdo",
|
||||
"DE.Views.Links.tipContentsUpdate": "Atualizar a tabela de conteúdo",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancelar",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme",
|
||||
|
@ -1300,7 +1278,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Selecionar conteúdo",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Aplicar",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar alterações a",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Cancelar",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Contínua",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Marca personalizada",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Documento inteiro",
|
||||
|
@ -1317,9 +1294,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Começar em",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Abaixo do texto",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Definições de Notas",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Aviso",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "Aceitar",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Inferior",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Esquerda",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Direita",
|
||||
|
@ -1327,8 +1302,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Parte superior",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Margens superior e inferior são muito altas para uma determinada altura da página",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Margens são muito grandes para uma determinada largura da página",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Cancelar",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "Aceitar",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Altura",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Tamanho da página",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Largura",
|
||||
|
@ -1345,14 +1318,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Exatamente",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Adicionar nova cor personalizada",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Automático",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "As abas especificadas aparecerão neste campo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Todas maiúsculas",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordas e Preenchimento",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Quebra de página antes",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Tachado duplo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Primeira linha",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerda",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Direita",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Manter as linhas juntas",
|
||||
|
@ -1480,7 +1450,6 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Title",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Cancelar",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Números de página alinhados à direita",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Formatar tabela de conteúdo como links",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Mostrar números de páginas",
|
||||
|
@ -1516,7 +1485,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Em tiras",
|
||||
"DE.Views.TableSettings.textBorderColor": "Cor",
|
||||
"DE.Views.TableSettings.textBorders": "Estilo de bordas",
|
||||
"DE.Views.TableSettings.textCancel": "Cancelar",
|
||||
"DE.Views.TableSettings.textColumns": "Colunas",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Colunas distribuídas",
|
||||
"DE.Views.TableSettings.textDistributeRows": "Linhas distribuídas",
|
||||
|
@ -1526,7 +1494,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "Cabeçalho",
|
||||
"DE.Views.TableSettings.textLast": "Último",
|
||||
"DE.Views.TableSettings.textNewColor": "Adicionar nova cor personalizada",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Linhas",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Selecione as bordas que você deseja alterar aplicando o estilo escolhido acima",
|
||||
"DE.Views.TableSettings.textTemplate": "Selecionar a partir do modelo",
|
||||
|
@ -1542,8 +1509,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Definir apenas borda direita externa",
|
||||
"DE.Views.TableSettings.tipTop": "Definir apenas borda superior externa",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Sem bordas",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Alinhamento",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Alinhamento",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Permitir espaçamento entre células",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Без стилей",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Добавить",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Отмена",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Текущий",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Введено некорректное значение.<br>Пожалуйста, введите значение от 000000 до FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Новый",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Разработано",
|
||||
"Common.Views.About.txtTel": "тел.: ",
|
||||
"Common.Views.About.txtVersion": "Версия ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Отмена",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Отправить",
|
||||
"Common.Views.Comments.textAdd": "Добавить",
|
||||
"Common.Views.Comments.textAddComment": "Добавить",
|
||||
|
@ -174,13 +171,9 @@
|
|||
"Common.Views.History.textShow": "Развернуть",
|
||||
"Common.Views.History.textShowAll": "Показать подробные изменения",
|
||||
"Common.Views.History.textVer": "вер.",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Необходимо указать допустимое количество строк и столбцов.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Количество столбцов",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Максимальное значение для этого поля - {0}.",
|
||||
|
@ -188,12 +181,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Количество строк",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Размер таблицы",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Разделить ячейку",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Отмена",
|
||||
"Common.Views.LanguageDialog.btnOk": "ОК",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Выбрать язык документа",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Закрыть файл",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Кодировка",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Указан неверный пароль.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
||||
|
@ -201,8 +190,6 @@
|
|||
"Common.Views.OpenDialog.txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Задайте пароль, чтобы защитить этот документ",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Пароль",
|
||||
|
@ -224,8 +211,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Добавить цифровую подпись",
|
||||
"Common.Views.Protection.txtSignature": "Подпись",
|
||||
"Common.Views.Protection.txtSignatureLine": "Добавить строку подписи",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.RenameDialog.okButtonText": "ОК",
|
||||
"Common.Views.RenameDialog.textName": "Имя файла",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Имя файла не должно содержать следующих символов: ",
|
||||
"Common.Views.ReviewChanges.hintNext": "К следующему изменению",
|
||||
|
@ -291,8 +276,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Папка для сохранения",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Загрузка",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Выбрать источник данных",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.SignDialog.okButtonText": "ОК",
|
||||
"Common.Views.SignDialog.textBold": "Полужирный",
|
||||
"Common.Views.SignDialog.textCertificate": "Сертификат",
|
||||
"Common.Views.SignDialog.textChange": "Изменить",
|
||||
|
@ -307,8 +290,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Действителен с %1 по %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Шрифт",
|
||||
"Common.Views.SignDialog.tipFontSize": "Размер шрифта",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "ОК",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Разрешить подписывающему добавлять примечания в окне подписи",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Сведения о подписывающем",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Адрес электронной почты",
|
||||
|
@ -1047,8 +1028,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "По контуру",
|
||||
"DE.Views.ChartSettings.txtTitle": "Диаграмма",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Сверху и снизу",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Отмена",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "ОК",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "Вид",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Применить ко всем",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "С ограничивающей рамкой",
|
||||
|
@ -1063,8 +1042,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "Параметры элемента управления содержимым",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Элемент управления содержимым нельзя удалить",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Содержимое нельзя редактировать",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Отмена",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "ОК",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Количество колонок",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Разделитель",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Интервал между колонками",
|
||||
|
@ -1278,8 +1255,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Разгруппировать",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Обновить стиль %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "ОК",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Границы и заливка",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Буквица",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Поля",
|
||||
|
@ -1445,8 +1420,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "Сверху слева",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "Вверху страницы",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Сверху справа",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Отмена",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Выделенный фрагмент текста",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Отображать",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Внешняя ссылка",
|
||||
|
@ -1488,8 +1461,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Сквозное",
|
||||
"DE.Views.ImageSettings.txtTight": "По контуру",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Сверху и снизу",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Поля вокруг текста",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Абсолютная",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Выравнивание",
|
||||
|
@ -1591,7 +1562,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "Обновить оглавление",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Добавить гиперссылку",
|
||||
"DE.Views.Links.tipNotes": "Вставить или редактировать сноски",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Отмена",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Отправить",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Тема",
|
||||
|
@ -1652,7 +1622,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "Выделить содержимое",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Применить",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Применить изменения",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Отмена",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Непрерывная",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Особый символ",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Ко всему документу",
|
||||
|
@ -1669,11 +1638,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Начать с",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Под текстом",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Параметры сносок",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Отмена",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "ОК",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Отмена",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Внимание",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "ОК",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Нижнее",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Левое",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Правое",
|
||||
|
@ -1681,8 +1646,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Верхнее",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Верхнее и нижнее поля слишком высокие для заданной высоты страницы",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Левое и правое поля слишком широкие для заданной ширины страницы",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Отмена",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "ОК",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Высота",
|
||||
"DE.Views.PageSizeDialog.textPreset": "Предустановка",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Размер страницы",
|
||||
|
@ -1701,15 +1664,12 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Точно",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Пользовательский цвет",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Авто",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "В этом поле появятся позиции табуляции, которые вы зададите",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Все прописные",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Границы и заливка",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "С новой страницы",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Двойное зачёркивание",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Отступы",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Первая строка",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Слева",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Междустрочный интервал",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Уровень структуры",
|
||||
|
@ -1874,15 +1834,11 @@
|
|||
"DE.Views.StyleTitleDialog.txtEmpty": "Это поле необходимо заполнить",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Поле не может быть пустым",
|
||||
"DE.Views.StyleTitleDialog.txtSameAs": "Такой же, как создаваемый стиль",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "Отмена",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "ОК",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "Вставить закладку",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "Формат числа",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "Формула",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "Вставить функцию",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "Настройки формулы",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Отмена",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "ОК",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "Номера страниц по правому краю",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "Форматировать оглавление как ссылки",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "Показать номера страниц",
|
||||
|
@ -1922,7 +1878,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Чередовать",
|
||||
"DE.Views.TableSettings.textBorderColor": "Цвет",
|
||||
"DE.Views.TableSettings.textBorders": "Стиль границ",
|
||||
"DE.Views.TableSettings.textCancel": "Отмена",
|
||||
"DE.Views.TableSettings.textCellSize": "Размер ячейки",
|
||||
"DE.Views.TableSettings.textColumns": "Столбцы",
|
||||
"DE.Views.TableSettings.textDistributeCols": "Выровнять ширину столбцов",
|
||||
|
@ -1934,7 +1889,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "Высота",
|
||||
"DE.Views.TableSettings.textLast": "Последний",
|
||||
"DE.Views.TableSettings.textNewColor": "Пользовательский цвет",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Строки",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Выберите границы, к которым надо применить выбранный стиль",
|
||||
"DE.Views.TableSettings.textTemplate": "По шаблону",
|
||||
|
@ -1951,8 +1905,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Задать только внешнюю правую границу",
|
||||
"DE.Views.TableSettings.tipTop": "Задать только внешнюю верхнюю границу",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Без границ",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Выравнивание",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Выравнивание",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Интервалы между ячейками",
|
||||
|
@ -2235,8 +2187,6 @@
|
|||
"DE.Views.Toolbar.txtScheme7": "Справедливость",
|
||||
"DE.Views.Toolbar.txtScheme8": "Поток",
|
||||
"DE.Views.Toolbar.txtScheme9": "Литейная",
|
||||
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "Отмена",
|
||||
"DE.Views.WatermarkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Авто",
|
||||
"DE.Views.WatermarkSettingsDialog.textBold": "Полужирный",
|
||||
"DE.Views.WatermarkSettingsDialog.textColor": "Цвет текста",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Pridať",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Aktuálny",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte číselnú hodnotu medzi 000000 a FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nový",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Poháňaný ",
|
||||
"Common.Views.About.txtTel": "tel.:",
|
||||
"Common.Views.About.txtVersion": "Verzia",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Poslať",
|
||||
"Common.Views.Comments.textAdd": "Pridať",
|
||||
"Common.Views.Comments.textAddComment": "Pridať komentár",
|
||||
|
@ -160,13 +157,9 @@
|
|||
"Common.Views.History.textRestore": "Obnoviť",
|
||||
"Common.Views.History.textShow": "Expandovať/rozšíriť",
|
||||
"Common.Views.History.textShowAll": "Zobraziť detailné zmeny",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Vložte obrázok URL:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Musíte zadať počet platných riadkov a stĺpcov.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Počet stĺpcov",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}.",
|
||||
|
@ -174,19 +167,13 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Počet riadkov",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Veľkosť tabuľky",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Rozdeliť bunku",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Zrušiť",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
||||
"Common.Views.OpenDialog.txtPreview": "Náhľad",
|
||||
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú",
|
||||
"Common.Views.PluginDlg.textLoading": "Nahrávanie",
|
||||
"Common.Views.Plugins.groupCaption": "Pluginy",
|
||||
|
@ -201,8 +188,6 @@
|
|||
"Common.Views.Protection.txtDeletePwd": "Odstrániť heslo",
|
||||
"Common.Views.Protection.txtInvisibleSignature": "Pridajte digitálny podpis",
|
||||
"Common.Views.Protection.txtSignature": "Podpis",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Názov súboru",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:",
|
||||
"Common.Views.ReviewChanges.hintNext": "K ďalšej zmene",
|
||||
|
@ -246,8 +231,6 @@
|
|||
"Common.Views.ReviewPopover.textCancel": "Zrušiť",
|
||||
"Common.Views.ReviewPopover.textClose": "Zatvoriť",
|
||||
"Common.Views.ReviewPopover.textEdit": "OK",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Tučné",
|
||||
"Common.Views.SignDialog.textCertificate": "Certifikát",
|
||||
"Common.Views.SignDialog.textChange": "Zmeniť",
|
||||
|
@ -262,8 +245,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Platný od %1 do %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Názov písma",
|
||||
"Common.Views.SignDialog.tipFontSize": "Veľkosť písma",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Povoliť signatárovi pridať komentár do podpisového dialógu",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Informácie o signatárovi",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -791,11 +772,7 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Tesný",
|
||||
"DE.Views.ChartSettings.txtTitle": "Graf",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Hore a dole",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.ControlSettingsDialog.textNewColor": "Pridať novú vlastnú farbu",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Počet stĺpcov",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Rozdeľovač stĺpcov",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Medzera medzi stĺpcami",
|
||||
|
@ -970,8 +947,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Oddeliť",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Aktualizovať %1 štýl",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Vertikálne zarovnanie",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Orámovanie a výplň",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Iniciála",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Okraje",
|
||||
|
@ -1111,8 +1086,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopCenter": "Hore v strede",
|
||||
"DE.Views.HeaderFooterSettings.textTopLeft": "Hore vľavo",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Hore vpravo",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Zobraziť",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "Externý odkaz",
|
||||
|
@ -1141,8 +1114,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Cez",
|
||||
"DE.Views.ImageSettings.txtTight": "Tesný",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Hore a dole",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Textová výplň",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolútny",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Zarovnanie",
|
||||
|
@ -1224,7 +1195,6 @@
|
|||
"DE.Views.Links.mniDelFootnote": "Odstrániť všetky poznámky pod čiarou",
|
||||
"DE.Views.Links.textContentsSettings": "Nastavenia",
|
||||
"DE.Views.Links.tipInsertHyperlink": "Pridať odkaz",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Poslať",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma",
|
||||
|
@ -1275,7 +1245,6 @@
|
|||
"DE.Views.Navigation.txtExpand": "Rozbaliť všetko",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Použiť",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Použiť zmeny na",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Zrušiť",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Nepretržitý",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Vlastná značka",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Celý dokument",
|
||||
|
@ -1292,11 +1261,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Začať na",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Pod textom",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Nastavenia poznámok",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Upozornenie",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Dole",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Vľavo",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Vpravo",
|
||||
|
@ -1304,8 +1269,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Hore",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Horné a spodné okraje sú pre danú výšku stránky príliš vysoké",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Ľavé a pravé okraje sú príliš široké pre danú šírku stránky",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Výška",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Veľkosť stránky",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Šírka",
|
||||
|
@ -1322,14 +1285,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Presne",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Pridať novú vlastnú farbu",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Automaticky",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všetko veľkým",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Orámovanie a výplň",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Zlom strany pred",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prvý riadok",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Zviazať riadky dohromady",
|
||||
|
@ -1454,8 +1414,6 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Názov",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "Toto pole sa vyžaduje",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Pole nesmie byť prázdne",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "OK",
|
||||
"DE.Views.TableOfContentsSettings.textStyle": "Štýl",
|
||||
"DE.Views.TableSettings.deleteColumnText": "Odstrániť stĺpec",
|
||||
"DE.Views.TableSettings.deleteRowText": "Odstrániť riadok",
|
||||
|
@ -1477,7 +1435,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Pruhovaný/pásikovaný",
|
||||
"DE.Views.TableSettings.textBorderColor": "Farba",
|
||||
"DE.Views.TableSettings.textBorders": "Štýl orámovania",
|
||||
"DE.Views.TableSettings.textCancel": "Zrušiť",
|
||||
"DE.Views.TableSettings.textCellSize": "Veľkosť bunky",
|
||||
"DE.Views.TableSettings.textColumns": "Stĺpce",
|
||||
"DE.Views.TableSettings.textEdit": "Riadky a stĺpce",
|
||||
|
@ -1486,7 +1443,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "Hlavička",
|
||||
"DE.Views.TableSettings.textLast": "Trvať/posledný",
|
||||
"DE.Views.TableSettings.textNewColor": "Pridať novú vlastnú farbu",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Riadky",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Vyberte orámovanie, ktoré chcete zmeniť podľa vyššie uvedeného štýlu",
|
||||
"DE.Views.TableSettings.textTemplate": "Vybrať zo šablóny",
|
||||
|
@ -1502,8 +1458,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Nastaviť len pravé vonkajšie orámovanie",
|
||||
"DE.Views.TableSettings.tipTop": "Nastaviť len horné vonkajšie orámovanie",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Bez orámovania",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Zarovnanie",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Zarovnanie",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Medzera medzi bunkami",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Dodaj",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Prekliči",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "trenuten",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Vnesena vrednost je nepravilna.<br>Prosim vnesite vrednost med 000000 in FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Novo",
|
||||
|
@ -101,8 +100,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Poganja",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Različica",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Prekliči",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Pošlji",
|
||||
"Common.Views.Comments.textAdd": "Dodaj",
|
||||
"Common.Views.Comments.textAddComment": "Dodaj",
|
||||
|
@ -133,21 +130,15 @@
|
|||
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
||||
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
||||
"Common.Views.Header.textBack": "Pojdi v dokumente",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Prekliči",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Prilepi URL slike:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "To polje je obvezno",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "To polje mora biti URL v \"http://www.example.com\" formatu",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Prekliči",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Določiti morate veljaven seštevek vrstic in stolpcev.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Število stolpcev",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maksimalna vrednost za to polje je {0}.",
|
||||
"Common.Views.InsertTableDialog.txtMinText": "Minimalna vrednost za to polje je {0}.",
|
||||
"Common.Views.InsertTableDialog.txtRows": "Število vrstic",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Velikost tabele",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
||||
"Common.Views.ReviewChanges.txtAccept": "Accept",
|
||||
|
@ -783,8 +774,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Razdruži",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Vertikalna poravnava",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Prekliči",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Obrobe & Zapolnitev",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Spustni pokrovček",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Meje",
|
||||
|
@ -909,8 +898,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopCenter": "Središče vrha",
|
||||
"DE.Views.HeaderFooterSettings.textTopLeft": "Levo vrha",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Vrh desno",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Prekliči",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Izbran fragment besedila",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Zaslon",
|
||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Nastavitve hiperpovezave",
|
||||
|
@ -934,8 +921,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Preko",
|
||||
"DE.Views.ImageSettings.txtTight": "Tesen",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Vrh in Dno",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Prekliči",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Oblazinjenje besedila",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Poravnava",
|
||||
"DE.Views.ImageSettingsAdvanced.textArrows": "Puščice",
|
||||
|
@ -1000,7 +985,6 @@
|
|||
"DE.Views.LeftMenu.tipSearch": "Iskanje",
|
||||
"DE.Views.LeftMenu.tipSupport": "Povratne informacije & Pomoč",
|
||||
"DE.Views.LeftMenu.tipTitles": "Naslovi",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancel",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme",
|
||||
|
@ -1048,9 +1032,7 @@
|
|||
"DE.Views.MailMergeSettings.txtPrev": "To previous record",
|
||||
"DE.Views.MailMergeSettings.txtUntitled": "Untitled",
|
||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Right",
|
||||
|
@ -1058,8 +1040,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Height",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Page Size",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Width",
|
||||
|
@ -1076,14 +1056,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Točno",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Dodaj novo barvo po meri",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Samodejno",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Prekliči",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Določeni zavihki se bodo pojavili v tem polju",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Vse z veliko",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Obrobe & Zapolnitev",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Prelom strani pred",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojno prečrtanje",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prva vrsta",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Levo",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Desno",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Linije ohrani skupaj",
|
||||
|
@ -1221,7 +1198,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Odvisen",
|
||||
"DE.Views.TableSettings.textBorderColor": "Barva",
|
||||
"DE.Views.TableSettings.textBorders": "Stil obrob",
|
||||
"DE.Views.TableSettings.textCancel": "Prekliči",
|
||||
"DE.Views.TableSettings.textColumns": "Stolpci",
|
||||
"DE.Views.TableSettings.textEdit": "Vrste & Stolpci",
|
||||
"DE.Views.TableSettings.textEmptyTemplate": "Ni predlog",
|
||||
|
@ -1229,7 +1205,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "Glava",
|
||||
"DE.Views.TableSettings.textLast": "zadnji",
|
||||
"DE.Views.TableSettings.textNewColor": "Dodaj novo barvo po meri",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Vrste",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Izberite meje katere želite spremeniti z uporabo zgoraj izbranega sloga",
|
||||
"DE.Views.TableSettings.textTemplate": "Izberi z predloge",
|
||||
|
@ -1245,8 +1220,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Nastavi le zunanjo desno mejo",
|
||||
"DE.Views.TableSettings.tipTop": "Nastavi le zunanjo zgornjo mejo",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Ni mej",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Prekliči",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Poravnava",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Poravnava",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Dovoli razmak med celicami",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Ekle",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "İptal Et",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Mevcut",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Girilen değer yanlış. <br> Lütfen 000000 ile FFFFFF arasında değer giriniz.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Yeni",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tel:",
|
||||
"Common.Views.About.txtVersion": "Versiyon",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "İptal Et",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "TAMAM",
|
||||
"Common.Views.Chat.textSend": "Gönder",
|
||||
"Common.Views.Comments.textAdd": "Ekle",
|
||||
"Common.Views.Comments.textAddComment": "Yorum Ekle",
|
||||
|
@ -160,13 +157,9 @@
|
|||
"Common.Views.History.textRestore": "Geri yükle",
|
||||
"Common.Views.History.textShow": "Genişlet",
|
||||
"Common.Views.History.textShowAll": "Ayrıntılı değişiklikleri göster",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "İptal Et",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Resim URL'sini yapıştır:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Bu alan gereklidir",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Bu alan \"http://www.example.com\" formatında URL olmalıdır",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "İptal Et",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "TAMAM",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Geçerli satır ve sütun miktarı belirtmelisiniz.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Sütun Sayısı",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Bu alan için maksimum değer: {0}.",
|
||||
|
@ -174,19 +167,13 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Sıra Sayısı",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tablo Boyutu",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Hücreyi Böl",
|
||||
"Common.Views.LanguageDialog.btnCancel": "İptal",
|
||||
"Common.Views.LanguageDialog.btnOk": "Tamam",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Belge dilini seçin",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Şifre",
|
||||
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "İptal",
|
||||
"Common.Views.PasswordDialog.okButtonText": "Tamam",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Parola",
|
||||
"Common.Views.PluginDlg.textLoading": "Yükleniyor",
|
||||
"Common.Views.Plugins.groupCaption": "Eklentiler",
|
||||
|
@ -194,8 +181,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Yükleniyor",
|
||||
"Common.Views.Plugins.textStart": "Başlat",
|
||||
"Common.Views.Plugins.textStop": "Bitir",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "İptal",
|
||||
"Common.Views.RenameDialog.okButtonText": "Tamam",
|
||||
"Common.Views.RenameDialog.textName": "Dosya adı",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Dosya adı aşağıdaki karakterlerden herhangi birini içeremez:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Sonraki değişikliğe",
|
||||
|
@ -238,14 +223,10 @@
|
|||
"Common.Views.ReviewPopover.textClose": "Kapat",
|
||||
"Common.Views.ReviewPopover.textEdit": "Tamam",
|
||||
"Common.Views.ReviewPopover.textReply": "Yanıtla",
|
||||
"Common.Views.SignDialog.cancelButtonText": "İptal",
|
||||
"Common.Views.SignDialog.okButtonText": "Tamam",
|
||||
"Common.Views.SignDialog.textBold": "Kalın",
|
||||
"Common.Views.SignDialog.textCertificate": "Sertifika",
|
||||
"Common.Views.SignDialog.textChange": "Değiştir",
|
||||
"Common.Views.SignDialog.textItalic": "İtalik",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "İptal",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "Tamam",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-posta",
|
||||
"Common.Views.SignSettingsDialog.textInfoName": "İsim",
|
||||
"DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
||||
|
@ -766,13 +747,9 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Sıkı",
|
||||
"DE.Views.ChartSettings.txtTitle": "Grafik",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Üst ve alt",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "İptal",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "Tamam",
|
||||
"DE.Views.ControlSettingsDialog.textColor": "Renk",
|
||||
"DE.Views.ControlSettingsDialog.textName": "Başlık",
|
||||
"DE.Views.ControlSettingsDialog.textTag": "Etiket",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "İptal",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "Tamam",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Sütun sayısı",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Sütun ayracı",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Sütunlar arasında boşluk",
|
||||
|
@ -946,8 +923,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Gruptan çıkar",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Dikey Hizalama",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "İptal Et",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "Tamam",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Sınırlar & Dolgu",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Büyük Harf",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Kenar Boşlukları",
|
||||
|
@ -1085,8 +1060,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopCenter": "Üst Orta",
|
||||
"DE.Views.HeaderFooterSettings.textTopLeft": "Üst Sol",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Üst Sağ",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "İptal Et",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "TAMAM",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Seçili metin parçası",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Görüntüle",
|
||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
||||
|
@ -1116,8 +1089,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Sonu",
|
||||
"DE.Views.ImageSettings.txtTight": "Sıkı",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Üst ve alt",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "İptal Et",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "TAMAM",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Metin Dolgulama",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Mutlak",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Hiza",
|
||||
|
@ -1194,7 +1165,6 @@
|
|||
"DE.Views.LeftMenu.tipSupport": "Geri Bildirim & Destek",
|
||||
"DE.Views.LeftMenu.tipTitles": "Başlıklar",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "GELİŞTİRİCİ MODU",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancel",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme",
|
||||
|
@ -1245,7 +1215,6 @@
|
|||
"DE.Views.Navigation.txtCollapse": "Hepsini daralt",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Uygula",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Değişiklikleri uygula",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "İptal",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Sürekli",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Özel mark",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Tüm döküman",
|
||||
|
@ -1262,11 +1231,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Başlatma zamanı",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Aşağıdaki metin",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Not ayarları",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "İptal",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "Tamam",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Right",
|
||||
|
@ -1274,8 +1239,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Cancel",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Height",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Page Size",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Width",
|
||||
|
@ -1292,14 +1255,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Tam olarak",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Yeni Özel Renk Ekle",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Otomatik",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "İptal Et",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Belirtilen sekmeler bu alanda görünecektir",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "TAMAM",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tüm başlıklar",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Sınırlar & Dolgu",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Şundan önce sayfa kesmesi:",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Üstü çift çizili",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "İlk Satır",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Sol",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Sağ",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Satırları birlikte tut",
|
||||
|
@ -1422,10 +1382,6 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "Title",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "İptal",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "Tamam",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "İptal",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "Tamam",
|
||||
"DE.Views.TableOfContentsSettings.textLeader": "Lider",
|
||||
"DE.Views.TableOfContentsSettings.textLevel": "Seviye",
|
||||
"DE.Views.TableOfContentsSettings.textLevels": "Seviyeler",
|
||||
|
@ -1450,7 +1406,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Bağlı",
|
||||
"DE.Views.TableSettings.textBorderColor": "Renk",
|
||||
"DE.Views.TableSettings.textBorders": "Sınır Stili",
|
||||
"DE.Views.TableSettings.textCancel": "İptal Et",
|
||||
"DE.Views.TableSettings.textCellSize": "Hücre boyutu",
|
||||
"DE.Views.TableSettings.textColumns": "Sütunlar",
|
||||
"DE.Views.TableSettings.textEdit": "Satırlar & Sütunlar",
|
||||
|
@ -1459,7 +1414,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "Üst Başlık",
|
||||
"DE.Views.TableSettings.textLast": "Son",
|
||||
"DE.Views.TableSettings.textNewColor": "Yeni Özel Renk Ekle",
|
||||
"DE.Views.TableSettings.textOK": "TAMAM",
|
||||
"DE.Views.TableSettings.textRows": "Satırlar",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Yukarıda seçilen stili uygulayarak değiştirmek istediğiniz sınırları seçin",
|
||||
"DE.Views.TableSettings.textTemplate": "Şablondan Seç",
|
||||
|
@ -1476,8 +1430,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Sadece Dış Sağ Sınırı Belirle",
|
||||
"DE.Views.TableSettings.tipTop": "Sadece Dış Üst Sınırı Belirle",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Sınır yok",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "İptal Et",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "TAMAM",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Hiza",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Hiza",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Hücreler arası aralığa izin ver",
|
||||
|
@ -1739,8 +1691,6 @@
|
|||
"DE.Views.Toolbar.txtScheme7": "Net Değer",
|
||||
"DE.Views.Toolbar.txtScheme8": "Yayılma",
|
||||
"DE.Views.Toolbar.txtScheme9": "Döküm",
|
||||
"DE.Views.WatermarkSettingsDialog.cancelButtonText": "İptal",
|
||||
"DE.Views.WatermarkSettingsDialog.okButtonText": "Tamam",
|
||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Otomatik",
|
||||
"DE.Views.WatermarkSettingsDialog.textBold": "Kalın",
|
||||
"DE.Views.WatermarkSettingsDialog.textHor": "Yatay",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Додати",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Скасувати",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "В данний час",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Введене значення невірно. <br> Будь ласка, введіть значення між 000000 та FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Новий",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Під керуванням",
|
||||
"Common.Views.About.txtTel": "Тел.:",
|
||||
"Common.Views.About.txtVersion": "Версія",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Скасувати",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "Ок",
|
||||
"Common.Views.Chat.textSend": "Надіслати",
|
||||
"Common.Views.Comments.textAdd": "Додати",
|
||||
"Common.Views.Comments.textAddComment": "Добавити коментар",
|
||||
|
@ -157,13 +154,9 @@
|
|||
"Common.Views.History.textRestore": "Відновити",
|
||||
"Common.Views.History.textShow": "Розгорнути",
|
||||
"Common.Views.History.textShowAll": "Показати детальні зміни",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Скасувати",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OК",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Скасувати",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OК",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Потрібно вказати дійсні рядки та стовпці.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Номер стовпчиків",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Максимальне значення для цього поля - {0}.",
|
||||
|
@ -171,11 +164,7 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Номер рядків",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Розмір таблиці",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Розщеплені клітини",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Скасувати",
|
||||
"Common.Views.LanguageDialog.btnOk": "Ок",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Виберіть мову документа",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Скасувати",
|
||||
"Common.Views.OpenDialog.okButtonText": "OК",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Кодування",
|
||||
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
||||
"Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1",
|
||||
|
@ -186,8 +175,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Завантаження",
|
||||
"Common.Views.Plugins.textStart": "Початок",
|
||||
"Common.Views.Plugins.textStop": "Зупинитись",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Скасувати",
|
||||
"Common.Views.RenameDialog.okButtonText": "Ок",
|
||||
"Common.Views.RenameDialog.textName": "Ім'я файлу",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:",
|
||||
"Common.Views.ReviewChanges.hintNext": "До наступної зміни",
|
||||
|
@ -723,8 +710,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Тісно",
|
||||
"DE.Views.ChartSettings.txtTitle": "Діаграма",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Верх і низ",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Скасувати",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "Ок",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Номер стовпчиків",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Дільник колонки",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Розміщення між стовпцями",
|
||||
|
@ -895,8 +880,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Розпакувати",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Оновити стиль %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Вертикальне вирівнювання",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "Ок",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Межі та заповнення",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Буквиця",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Поля",
|
||||
|
@ -1031,8 +1014,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopCenter": "Центр зверху",
|
||||
"DE.Views.HeaderFooterSettings.textTopLeft": "Верх зліва",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Верх справа",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Скасувати",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OК",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Виберіть текстовий фрагмент",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Дісплей",
|
||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Налаштування гіперсилки",
|
||||
|
@ -1059,8 +1040,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Через",
|
||||
"DE.Views.ImageSettings.txtTight": "Тісно",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Верх і низ",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OК",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Текстове накладення тексту",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Абсолютно",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Вирівнювання",
|
||||
|
@ -1136,7 +1115,6 @@
|
|||
"DE.Views.LeftMenu.tipSupport": "Відгуки і підтримка",
|
||||
"DE.Views.LeftMenu.tipTitles": "Назви",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "Режим розробника",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Скасувати",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Надіслати",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Тема",
|
||||
|
@ -1186,7 +1164,6 @@
|
|||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Початок злиття не вдався",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Застосувати",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Застосувати зміни до",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Скасувати",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Безперервний",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Користувальницький знак",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Весь документ",
|
||||
|
@ -1203,9 +1180,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Розпочати з",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Нижче тексту",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Налаштування приміток",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Скасувати",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Застереження",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "Ок",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Внизу",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Лівий",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Право",
|
||||
|
@ -1213,8 +1188,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Верх",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Верхні та нижні поля занадто високі для заданої висоти сторінки",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Ліве та праве поля занадто широкі для заданої ширини сторінки",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Скасувати",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "Ок",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Висота",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Розмір сторінки",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Ширина",
|
||||
|
@ -1231,14 +1204,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Точно",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Додати новий спеціальний колір",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Авто",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Вказані вкладки з'являться в цьому полі",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OК",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Всі шапки",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Межі та заповнення",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Розрив сторінки перед",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Перша лінія",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Лівий",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Право",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Тримайте лінії разом",
|
||||
|
@ -1377,7 +1347,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "У смужку",
|
||||
"DE.Views.TableSettings.textBorderColor": "Колір",
|
||||
"DE.Views.TableSettings.textBorders": "Стиль меж",
|
||||
"DE.Views.TableSettings.textCancel": "Скасувати",
|
||||
"DE.Views.TableSettings.textColumns": "Колонки",
|
||||
"DE.Views.TableSettings.textEdit": "Рядки і колони",
|
||||
"DE.Views.TableSettings.textEmptyTemplate": "Немає шаблонів",
|
||||
|
@ -1385,7 +1354,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "Заголовок",
|
||||
"DE.Views.TableSettings.textLast": "Останній",
|
||||
"DE.Views.TableSettings.textNewColor": "Додати новий спеціальний колір",
|
||||
"DE.Views.TableSettings.textOK": "OК",
|
||||
"DE.Views.TableSettings.textRows": "Рядки",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Виберіть кордони, які ви хочете змінити, застосувавши обраний вище стиль",
|
||||
"DE.Views.TableSettings.textTemplate": "Виберіть з шаблону",
|
||||
|
@ -1401,8 +1369,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Встановити лише зовнішній правий кордон",
|
||||
"DE.Views.TableSettings.tipTop": "Встановити лише зовнішній верхній край",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Немає кордонів",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OК",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Вирівнювання",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Вирівнювання",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Розміщення між клітинами",
|
||||
|
|
|
@ -67,7 +67,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Thêm",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Hủy",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Hiện tại",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Giá trị đã nhập không chính xác.<br>Nhập một giá trị thuộc từ 000000 đến FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Mới",
|
||||
|
@ -106,8 +105,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Được hỗ trợ bởi",
|
||||
"Common.Views.About.txtTel": "ĐT.: ",
|
||||
"Common.Views.About.txtVersion": "Phiên bản",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Hủy",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Gửi",
|
||||
"Common.Views.Comments.textAdd": "Thêm",
|
||||
"Common.Views.Comments.textAddComment": "Thêm bình luận",
|
||||
|
@ -157,13 +154,9 @@
|
|||
"Common.Views.History.textRestore": "Khôi phục",
|
||||
"Common.Views.History.textShow": "Mở rộng",
|
||||
"Common.Views.History.textShowAll": "Hiển thị thay đổi chi tiết",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Hủy",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Dán URL hình ảnh:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Trường bắt buộc",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Trường này phải là một URL có định dạng \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Hủy",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Bạn cần xác định số hàng và cột hợp lệ.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Số cột",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Giá trị lớn nhất cho trường này là {0}.",
|
||||
|
@ -171,11 +164,7 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Số hàng",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Kích thước bảng",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Tách ô",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Hủy",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Chọn ngôn ngữ tài liệu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Hủy",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Mã hóa",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Mật khẩu không đúng.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Mật khẩu",
|
||||
|
@ -187,8 +176,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Đang tải",
|
||||
"Common.Views.Plugins.textStart": "Bắt đầu",
|
||||
"Common.Views.Plugins.textStop": "Dừng",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Hủy",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Tên file",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Tên file không được chứa bất kỳ ký tự nào sau đây:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Đến thay đổi tiếp theo",
|
||||
|
@ -724,8 +711,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "Sát",
|
||||
"DE.Views.ChartSettings.txtTitle": "Biểu đồ",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "Trên cùng và dưới cùng",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Hủy",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "Số cột",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "Chia cột",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "Khoảng cách giữa các cột",
|
||||
|
@ -896,8 +881,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Bỏ nhóm",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Cập nhật kiểu %1",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Căn chỉnh dọc",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Viền & Đổ màu",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Lề",
|
||||
|
@ -1032,8 +1015,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopCenter": "Phía trên chính giữa",
|
||||
"DE.Views.HeaderFooterSettings.textTopLeft": "Phía trên bên trái",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "Phía trên bên phải",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Hủy",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Đoạn văn bản đã chọn",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Hiển thị",
|
||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Cài đặt Siêu liên kết",
|
||||
|
@ -1060,8 +1041,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "Xuyên qua",
|
||||
"DE.Views.ImageSettings.txtTight": "Sát",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "Trên cùng và dưới cùng",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "Thêm padding cho văn bản",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Tuyệt đối",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "Căn chỉnh",
|
||||
|
@ -1137,7 +1116,6 @@
|
|||
"DE.Views.LeftMenu.tipSupport": "Phản hồi & Hỗ trợ",
|
||||
"DE.Views.LeftMenu.tipTitles": "Tiêu đề",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "CHẾ ĐỘ NHÀ PHÁT TRIỂN",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Hủy",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Gửi",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme",
|
||||
|
@ -1187,7 +1165,6 @@
|
|||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Không thể bắt đầu trộn",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Áp dụng",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Áp dụng thay đổi cho",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "Hủy",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Liên tục",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "Tùy chỉnh dấu",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "Toàn bộ tài liệu",
|
||||
|
@ -1204,9 +1181,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "Bắt đầu tại",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "Dưới văn bản",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "Cài đặt Ghi chú",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "Hủy",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Cảnh báo",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "OK",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "Dưới cùng",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "Trái",
|
||||
"DE.Views.PageMarginsDialog.textRight": "Bên phải",
|
||||
|
@ -1214,8 +1189,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "Trên cùng",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "Lề trên và dưới cùng quá cao nên không thể làm chiều cao của trang",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "Lề trái và phải quá rộng nên không thể làm chiều rộng của trang",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "Hủy",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "OK",
|
||||
"DE.Views.PageSizeDialog.textHeight": "Chiều cao",
|
||||
"DE.Views.PageSizeDialog.textTitle": "Kích thước trang",
|
||||
"DE.Views.PageSizeDialog.textWidth": "Chiều rộng",
|
||||
|
@ -1232,14 +1205,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "Chính xác",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Thêm màu tùy chỉnh mới",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Tự động",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Các tab được chỉ định sẽ xuất hiện trong trường này",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tất cả Drop cap",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Viền & Đổ màu",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Ngắt trang đằng trước",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Gạch đôi giữa chữ",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Dòng đầu tiên",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Trái",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Bên phải",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Giữ các dòng cùng nhau",
|
||||
|
@ -1378,7 +1348,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "Gắn dải màu",
|
||||
"DE.Views.TableSettings.textBorderColor": "Màu sắc",
|
||||
"DE.Views.TableSettings.textBorders": "Kiểu đường viền",
|
||||
"DE.Views.TableSettings.textCancel": "Hủy",
|
||||
"DE.Views.TableSettings.textColumns": "Cột",
|
||||
"DE.Views.TableSettings.textEdit": "Hàng & Cột",
|
||||
"DE.Views.TableSettings.textEmptyTemplate": "Không có template",
|
||||
|
@ -1386,7 +1355,6 @@
|
|||
"DE.Views.TableSettings.textHeader": "Header",
|
||||
"DE.Views.TableSettings.textLast": "Cuối cùng",
|
||||
"DE.Views.TableSettings.textNewColor": "Thêm màu tùy chỉnh mới",
|
||||
"DE.Views.TableSettings.textOK": "OK",
|
||||
"DE.Views.TableSettings.textRows": "Hàng",
|
||||
"DE.Views.TableSettings.textSelectBorders": "Chọn đường viền bạn muốn thay đổi áp dụng kiểu đã chọn ở trên",
|
||||
"DE.Views.TableSettings.textTemplate": "Chọn từ Template",
|
||||
|
@ -1402,8 +1370,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "Chỉ đặt viền ngoài bên phải",
|
||||
"DE.Views.TableSettings.tipTop": "Chỉ đặt viền ngoài trên cùng",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Không viền",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "Căn chỉnh",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Căn chỉnh",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Khoảng cách giữa các ô",
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
||||
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "添加",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "取消",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "当前",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "输入的值不正确。<br>请输入000000和FFFFFF之间的值。",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "新",
|
||||
|
@ -112,8 +111,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "技术支持",
|
||||
"Common.Views.About.txtTel": "电话:",
|
||||
"Common.Views.About.txtVersion": "版本",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "取消",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "确定",
|
||||
"Common.Views.Chat.textSend": "发送",
|
||||
"Common.Views.Comments.textAdd": "添加",
|
||||
"Common.Views.Comments.textAddComment": "发表评论",
|
||||
|
@ -173,13 +170,9 @@
|
|||
"Common.Views.History.textShow": "扩大",
|
||||
"Common.Views.History.textShowAll": "显示详细的更改",
|
||||
"Common.Views.History.textVer": "版本",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "取消",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "确定",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "粘贴图片网址:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "这是必填栏",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "该字段应该是“http://www.example.com”格式的URL",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "取消",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "确定",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "您需要指定有效的行数和列数。",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "列数",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "该字段的最大值为{0}。",
|
||||
|
@ -187,12 +180,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "行数",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "表格大小",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "拆分单元格",
|
||||
"Common.Views.LanguageDialog.btnCancel": "取消",
|
||||
"Common.Views.LanguageDialog.btnOk": "确定",
|
||||
"Common.Views.LanguageDialog.labelSelect": "选择文档语言",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "取消",
|
||||
"Common.Views.OpenDialog.closeButtonText": "关闭文件",
|
||||
"Common.Views.OpenDialog.okButtonText": "确定",
|
||||
"Common.Views.OpenDialog.txtEncoding": "编码",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "密码错误",
|
||||
"Common.Views.OpenDialog.txtPassword": "密码",
|
||||
|
@ -200,8 +189,6 @@
|
|||
"Common.Views.OpenDialog.txtProtected": "在您输入密码和打开文件后,该文件的当前密码将被重置。",
|
||||
"Common.Views.OpenDialog.txtTitle": "选择%1个选项",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "受保护的文件",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "取消",
|
||||
"Common.Views.PasswordDialog.okButtonText": "确定",
|
||||
"Common.Views.PasswordDialog.txtDescription": "设置密码以保护此文档",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "确认密码不一致",
|
||||
"Common.Views.PasswordDialog.txtPassword": "密码",
|
||||
|
@ -223,8 +210,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "添加数字签名",
|
||||
"Common.Views.Protection.txtSignature": "签名",
|
||||
"Common.Views.Protection.txtSignatureLine": "添加签名行",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "取消",
|
||||
"Common.Views.RenameDialog.okButtonText": "确定",
|
||||
"Common.Views.RenameDialog.textName": "文件名",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "文件名不能包含以下任何字符:",
|
||||
"Common.Views.ReviewChanges.hintNext": "下一个变化",
|
||||
|
@ -289,8 +274,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "保存文件夹",
|
||||
"Common.Views.SelectFileDlg.textLoading": "载入中",
|
||||
"Common.Views.SelectFileDlg.textTitle": "选择数据源",
|
||||
"Common.Views.SignDialog.cancelButtonText": "取消",
|
||||
"Common.Views.SignDialog.okButtonText": "确定",
|
||||
"Common.Views.SignDialog.textBold": "加粗",
|
||||
"Common.Views.SignDialog.textCertificate": "证书",
|
||||
"Common.Views.SignDialog.textChange": "修改",
|
||||
|
@ -305,8 +288,6 @@
|
|||
"Common.Views.SignDialog.textValid": "从%1到%2有效",
|
||||
"Common.Views.SignDialog.tipFontName": "字体名称",
|
||||
"Common.Views.SignDialog.tipFontSize": "字体大小",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "取消",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "确定",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "允许签名者在签名对话框中添加注释",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "签名者信息",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "电子邮件",
|
||||
|
@ -1044,8 +1025,6 @@
|
|||
"DE.Views.ChartSettings.txtTight": "紧",
|
||||
"DE.Views.ChartSettings.txtTitle": "图表",
|
||||
"DE.Views.ChartSettings.txtTopAndBottom": "上下",
|
||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "取消",
|
||||
"DE.Views.ControlSettingsDialog.okButtonText": "确定",
|
||||
"DE.Views.ControlSettingsDialog.textAppearance": "外观",
|
||||
"DE.Views.ControlSettingsDialog.textApplyAll": "全部应用",
|
||||
"DE.Views.ControlSettingsDialog.textBox": "边界框",
|
||||
|
@ -1060,8 +1039,6 @@
|
|||
"DE.Views.ControlSettingsDialog.textTitle": "内容控制设置",
|
||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "无法删除内容控制",
|
||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "无法编辑内容",
|
||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "取消",
|
||||
"DE.Views.CustomColumnsDialog.okButtonText": "确定",
|
||||
"DE.Views.CustomColumnsDialog.textColumns": "列数",
|
||||
"DE.Views.CustomColumnsDialog.textSeparator": "列分隔符",
|
||||
"DE.Views.CustomColumnsDialog.textSpacing": "列之间的间距",
|
||||
|
@ -1273,8 +1250,6 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "取消组合",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "更新%1样式",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "垂直对齐",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "取消",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "确定",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "边框和填充",
|
||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "下沉",
|
||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "边距",
|
||||
|
@ -1429,8 +1404,6 @@
|
|||
"DE.Views.HeaderFooterSettings.textTopLeft": "左上",
|
||||
"DE.Views.HeaderFooterSettings.textTopPage": "页面顶部",
|
||||
"DE.Views.HeaderFooterSettings.textTopRight": "右上",
|
||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "取消",
|
||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "确定",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "所选文本片段",
|
||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "展示",
|
||||
"DE.Views.HyperlinkSettingsDialog.textExternal": "外部链接",
|
||||
|
@ -1472,8 +1445,6 @@
|
|||
"DE.Views.ImageSettings.txtThrough": "通过",
|
||||
"DE.Views.ImageSettings.txtTight": "紧",
|
||||
"DE.Views.ImageSettings.txtTopAndBottom": "上下",
|
||||
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "取消",
|
||||
"DE.Views.ImageSettingsAdvanced.okButtonText": "确定",
|
||||
"DE.Views.ImageSettingsAdvanced.strMargins": "文字填充",
|
||||
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "绝对",
|
||||
"DE.Views.ImageSettingsAdvanced.textAlignment": "校准",
|
||||
|
@ -1575,7 +1546,6 @@
|
|||
"DE.Views.Links.tipContentsUpdate": "刷新目录",
|
||||
"DE.Views.Links.tipInsertHyperlink": "添加超链接",
|
||||
"DE.Views.Links.tipNotes": "插入或编辑脚注",
|
||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "取消",
|
||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||
"DE.Views.MailMergeEmailDlg.okButtonText": "发送",
|
||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "主题",
|
||||
|
@ -1636,7 +1606,6 @@
|
|||
"DE.Views.Navigation.txtSelect": "选择内容",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "应用",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "应用更改",
|
||||
"DE.Views.NoteSettingsDialog.textCancel": "取消",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "连续",
|
||||
"DE.Views.NoteSettingsDialog.textCustom": "自定义标记",
|
||||
"DE.Views.NoteSettingsDialog.textDocument": "整个文件",
|
||||
|
@ -1653,11 +1622,7 @@
|
|||
"DE.Views.NoteSettingsDialog.textStart": "开始",
|
||||
"DE.Views.NoteSettingsDialog.textTextBottom": "文字下方",
|
||||
"DE.Views.NoteSettingsDialog.textTitle": "笔记设置",
|
||||
"DE.Views.NumberingValueDialog.cancelButtonText": "取消",
|
||||
"DE.Views.NumberingValueDialog.okButtonText": "确定",
|
||||
"DE.Views.PageMarginsDialog.cancelButtonText": "取消",
|
||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "警告",
|
||||
"DE.Views.PageMarginsDialog.okButtonText": "确定",
|
||||
"DE.Views.PageMarginsDialog.textBottom": "底部",
|
||||
"DE.Views.PageMarginsDialog.textLeft": "左",
|
||||
"DE.Views.PageMarginsDialog.textRight": "右",
|
||||
|
@ -1665,8 +1630,6 @@
|
|||
"DE.Views.PageMarginsDialog.textTop": "顶部",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsH": "顶部和底部边距对于给定的页面高度来说太高",
|
||||
"DE.Views.PageMarginsDialog.txtMarginsW": "对于给定的页面宽度,左右边距太宽",
|
||||
"DE.Views.PageSizeDialog.cancelButtonText": "取消",
|
||||
"DE.Views.PageSizeDialog.okButtonText": "确定",
|
||||
"DE.Views.PageSizeDialog.textHeight": "高度",
|
||||
"DE.Views.PageSizeDialog.textPreset": "预设",
|
||||
"DE.Views.PageSizeDialog.textTitle": "页面大小",
|
||||
|
@ -1685,14 +1648,11 @@
|
|||
"DE.Views.ParagraphSettings.textExact": "精确地",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "添加新的自定义颜色",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "自动",
|
||||
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "取消",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "指定的选项卡将显示在此字段中",
|
||||
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "确定",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大写",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "边框和填充",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "分页前",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "双删除线",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "第一行",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "保持同一行",
|
||||
|
@ -1836,15 +1796,11 @@
|
|||
"DE.Views.StyleTitleDialog.textTitle": "标题",
|
||||
"DE.Views.StyleTitleDialog.txtEmpty": "这是必填栏",
|
||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "区域不能为空",
|
||||
"DE.Views.TableFormulaDialog.cancelButtonText": "取消",
|
||||
"DE.Views.TableFormulaDialog.okButtonText": "确定",
|
||||
"DE.Views.TableFormulaDialog.textBookmark": "粘贴书签",
|
||||
"DE.Views.TableFormulaDialog.textFormat": "数字格式",
|
||||
"DE.Views.TableFormulaDialog.textFormula": "公式",
|
||||
"DE.Views.TableFormulaDialog.textInsertFunction": "粘贴函数",
|
||||
"DE.Views.TableFormulaDialog.textTitle": "公式设置",
|
||||
"DE.Views.TableOfContentsSettings.cancelButtonText": "取消",
|
||||
"DE.Views.TableOfContentsSettings.okButtonText": "确定",
|
||||
"DE.Views.TableOfContentsSettings.strAlign": "右对齐页码",
|
||||
"DE.Views.TableOfContentsSettings.strLinks": "格式化目录作为链接",
|
||||
"DE.Views.TableOfContentsSettings.strShowPages": "显示页码",
|
||||
|
@ -1884,7 +1840,6 @@
|
|||
"DE.Views.TableSettings.textBanded": "带状",
|
||||
"DE.Views.TableSettings.textBorderColor": "颜色",
|
||||
"DE.Views.TableSettings.textBorders": "边框风格",
|
||||
"DE.Views.TableSettings.textCancel": "取消",
|
||||
"DE.Views.TableSettings.textCellSize": "单元格大小",
|
||||
"DE.Views.TableSettings.textColumns": "列",
|
||||
"DE.Views.TableSettings.textDistributeCols": "分布列",
|
||||
|
@ -1896,7 +1851,6 @@
|
|||
"DE.Views.TableSettings.textHeight": "高度",
|
||||
"DE.Views.TableSettings.textLast": "最后",
|
||||
"DE.Views.TableSettings.textNewColor": "添加新的自定义颜色",
|
||||
"DE.Views.TableSettings.textOK": "确定",
|
||||
"DE.Views.TableSettings.textRows": "行",
|
||||
"DE.Views.TableSettings.textSelectBorders": "选择您要更改应用样式的边框",
|
||||
"DE.Views.TableSettings.textTemplate": "从模板中选择",
|
||||
|
@ -1913,8 +1867,6 @@
|
|||
"DE.Views.TableSettings.tipRight": "仅设置外边界",
|
||||
"DE.Views.TableSettings.tipTop": "仅限外部边框",
|
||||
"DE.Views.TableSettings.txtNoBorders": "没有边框",
|
||||
"DE.Views.TableSettingsAdvanced.cancelButtonText": "取消",
|
||||
"DE.Views.TableSettingsAdvanced.okButtonText": "确定",
|
||||
"DE.Views.TableSettingsAdvanced.textAlign": "校准",
|
||||
"DE.Views.TableSettingsAdvanced.textAlignment": "校准",
|
||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "细胞之间的距离",
|
||||
|
|
|
@ -127,8 +127,6 @@ define([ 'text!presentationeditor/main/app/template/ChartSettingsAdvanced.tem
|
|||
},
|
||||
|
||||
textTitle: 'Chart - Advanced Settings',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textAlt: 'Alternative Text',
|
||||
textAltTitle: 'Title',
|
||||
textAltDescription: 'Description',
|
||||
|
|
|
@ -49,7 +49,8 @@ define([
|
|||
options: {
|
||||
width: 350,
|
||||
style: 'min-width: 230px;',
|
||||
cls: 'modal-dlg'
|
||||
cls: 'modal-dlg',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function (options) {
|
||||
|
@ -74,10 +75,6 @@ define([
|
|||
'<div id="datetime-dlg-update" style="margin-top: 3px;"></div>',
|
||||
'<button type="button" class="btn btn-text-default auto" id="datetime-dlg-default" style="float: right;">' + this.textDefault + '</button>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -244,8 +241,6 @@ define([
|
|||
},
|
||||
|
||||
//
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'OK',
|
||||
txtTitle: 'Date & Time',
|
||||
textLang: 'Language',
|
||||
textFormat: 'Formats',
|
||||
|
|
|
@ -673,7 +673,7 @@ define([
|
|||
|
||||
render: function(node) {
|
||||
var me = this;
|
||||
var $markup = $(me.template());
|
||||
var $markup = $(me.template({scope: me}));
|
||||
|
||||
// server info
|
||||
this.lblPlacement = $markup.findById('#id-info-placement');
|
||||
|
|
|
@ -48,7 +48,8 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
|
|||
PE.Views.HeaderFooterDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
||||
options: {
|
||||
contentWidth: 360,
|
||||
height: 380
|
||||
height: 380,
|
||||
buttons: null
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -74,8 +75,8 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
|
|||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="all" style="margin-right: 10px;width: auto; min-width: 86px;">' + me.applyAllText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="ok" style="margin-right: 10px;width: auto; min-width: 86px;">' + me.applyText + '</button>',
|
||||
'<button class="btn normal dlg-btn primary" result="all" style="width: auto; min-width: 86px;">' + me.applyAllText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="ok" style="width: auto; min-width: 86px;">' + me.applyText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + me.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('')
|
||||
|
@ -346,7 +347,6 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
|
|||
},
|
||||
|
||||
textTitle: 'Header/Footer Settings',
|
||||
cancelButtonText: 'Cancel',
|
||||
applyAllText: 'Apply to all',
|
||||
applyText: 'Apply',
|
||||
textLang: 'Language',
|
||||
|
|
|
@ -60,7 +60,9 @@ define([
|
|||
width: 350,
|
||||
style: 'min-width: 230px;',
|
||||
cls: 'modal-dlg',
|
||||
id: 'window-hyperlink-settings'
|
||||
id: 'window-hyperlink-settings',
|
||||
buttons: ['ok', 'cancel'],
|
||||
footerCls: 'right'
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -96,10 +98,6 @@ define([
|
|||
'<label>' + this.textTipText + '</label>',
|
||||
'</div>',
|
||||
'<div id="id-dlg-hyperlink-tip" class="input-row" style="margin-bottom: 5px;"></div>',
|
||||
'</div>',
|
||||
'<div class="footer right">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -387,8 +385,6 @@ define([
|
|||
txtEmpty: 'This field is required',
|
||||
txtNotUrl: 'This field should be a URL in the format \"http://www.example.com\"',
|
||||
strPlaceInDocument: 'Select a Place in This Document',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtNext: 'Next Slide',
|
||||
txtPrev: 'Previous Slide',
|
||||
txtFirst: 'First Slide',
|
||||
|
|
|
@ -323,8 +323,6 @@ define([ 'text!presentationeditor/main/app/template/ImageSettingsAdvanced.tem
|
|||
textHeight: 'Height',
|
||||
textTitle: 'Image - Advanced Settings',
|
||||
textKeepRatio: 'Constant Proportions',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textPlacement: 'Placement',
|
||||
textAlt: 'Alternative Text',
|
||||
textAltTitle: 'Title',
|
||||
|
|
|
@ -776,8 +776,6 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced
|
|||
strIndentsRightText: 'Right',
|
||||
strParagraphIndents: 'Indents & Spacing',
|
||||
strParagraphFont: 'Font',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textEffects: 'Effects',
|
||||
textCharacterSpacing: 'Character Spacing',
|
||||
strDoubleStrike: 'Double strikethrough',
|
||||
|
|
|
@ -740,8 +740,6 @@ define([ 'text!presentationeditor/main/app/template/ShapeSettingsAdvanced.tem
|
|||
textFlat: 'Flat',
|
||||
textBevel: 'Bevel',
|
||||
textTitle: 'Shape - Advanced Settings',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtNone: 'None',
|
||||
textWeightArrows: 'Weights & Arrows',
|
||||
textArrows: 'Arrows',
|
||||
|
|
|
@ -49,7 +49,8 @@ define([
|
|||
header: true,
|
||||
style: 'min-width: 250px;',
|
||||
cls: 'modal-dlg',
|
||||
id: 'window-slide-size-settings'
|
||||
id: 'window-slide-size-settings',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -80,11 +81,7 @@ define([
|
|||
'</div>',
|
||||
'<div id="slide-orientation-combo" class="" style="margin-bottom: 10px;"></div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
this.options.tpl = _.template(this.template)(this.options);
|
||||
|
@ -249,8 +246,6 @@ define([
|
|||
textSlideSize: 'Slide Size',
|
||||
textWidth: 'Width',
|
||||
textHeight: 'Height',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
txtStandard: 'Standard (4:3)',
|
||||
txtWidescreen1: 'Widescreen (16:9)',
|
||||
txtWidescreen2: 'Widescreen (16:10)',
|
||||
|
|
|
@ -49,7 +49,8 @@ define([
|
|||
header: true,
|
||||
style: 'min-width: 315px;',
|
||||
cls: 'modal-dlg',
|
||||
id: 'window-slideshow-settings'
|
||||
id: 'window-slideshow-settings',
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -61,11 +62,7 @@ define([
|
|||
'<div class="box" style="height: 20px;">',
|
||||
'<div id="slideshow-checkbox-loop"></div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
this.options.tpl = _.template(this.template)(this.options);
|
||||
|
@ -114,8 +111,6 @@ define([
|
|||
},
|
||||
|
||||
textTitle: 'Show Settings',
|
||||
textLoop: 'Loop continuously until \'Esc\' is pressed',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok'
|
||||
textLoop: 'Loop continuously until \'Esc\' is pressed'
|
||||
}, PE.Views.SlideshowSettings || {}))
|
||||
});
|
|
@ -426,8 +426,6 @@ define([ 'text!presentationeditor/main/app/template/TableSettingsAdvanced.tem
|
|||
textTitle: 'Table - Advanced Settings',
|
||||
textDefaultMargins: 'Default Margins',
|
||||
textCheckMargins: 'Use default margins',
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textAlt: 'Alternative Text',
|
||||
textAltTitle: 'Title',
|
||||
textAltDescription: 'Description',
|
||||
|
|
|
@ -1592,8 +1592,6 @@ define([
|
|||
txtDistribHor: 'Distribute Horizontally',
|
||||
txtDistribVert: 'Distribute Vertically',
|
||||
tipChangeSlide: 'Change Slide Layout',
|
||||
textOK: 'OK',
|
||||
textCancel: 'Cancel',
|
||||
tipColorSchemas: 'Change Color Scheme',
|
||||
textNewColor: 'Add New Custom Color',
|
||||
mniSlideStandard: 'Standard (4:3)',
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Добави",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Отказ",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Текущ",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Въведената стойност е неправилна. <br> Моля, въведете стойност между 000000 и FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Нов",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Задвижвани от",
|
||||
"Common.Views.About.txtTel": "тел .:",
|
||||
"Common.Views.About.txtVersion": "Версия",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Отказ",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "Добре",
|
||||
"Common.Views.Chat.textSend": "Изпращам",
|
||||
"Common.Views.Comments.textAdd": "Добави",
|
||||
"Common.Views.Comments.textAddComment": "Добави коментар",
|
||||
|
@ -99,13 +96,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Прегледайте услугите и управлявайте нашата история за достъп до документи",
|
||||
"Common.Views.Header.txtAccessRights": "Промяна на правата за достъп",
|
||||
"Common.Views.Header.txtRename": "Преименувам",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Отказ",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "Добре",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Поставете URL адреса на изображението:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Това поле е задължително",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Това поле трябва да е URL адрес във формат \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Отказ",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "Добре",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Трябва да посочите номера на валидните редове и колони.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Брой колони",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Максималната стойност за това поле е {0}.",
|
||||
|
@ -113,20 +106,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Брой редове",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Размер на таблицата",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Разделена клетка",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Отказ",
|
||||
"Common.Views.LanguageDialog.btnOk": "Добре",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Изберете език на документа",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Отказ",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Затвори файл",
|
||||
"Common.Views.OpenDialog.okButtonText": "Добре",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Кодиране",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Паролата е неправилна.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Парола",
|
||||
"Common.Views.OpenDialog.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Изберете опции %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Защитен файл",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Отказ",
|
||||
"Common.Views.PasswordDialog.okButtonText": "Добре",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Задайте парола, за да защитите този документ",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Паролата за потвърждение не е идентична",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Парола",
|
||||
|
@ -148,8 +135,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Добавете електронен подпис",
|
||||
"Common.Views.Protection.txtSignature": "Подпис",
|
||||
"Common.Views.Protection.txtSignatureLine": "Добавете линия за подпис",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Отказ",
|
||||
"Common.Views.RenameDialog.okButtonText": "Добре",
|
||||
"Common.Views.RenameDialog.textName": "Име на файла",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Името на файла не може да се съдържа нито един от следните знаци:",
|
||||
"Common.Views.ReviewChanges.hintNext": "За последната промяна",
|
||||
|
@ -204,8 +189,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Папка за запис",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Зареждане",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Изберете източник на данни",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Отказ",
|
||||
"Common.Views.SignDialog.okButtonText": "Добре",
|
||||
"Common.Views.SignDialog.textBold": "Получер",
|
||||
"Common.Views.SignDialog.textCertificate": "Сертификат",
|
||||
"Common.Views.SignDialog.textChange": "Промяна",
|
||||
|
@ -220,8 +203,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Валидно от %1 до %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Име на шрифта",
|
||||
"Common.Views.SignDialog.tipFontSize": "Размер на шрифта",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Отказ",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "Добре",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Позволете на сигналиста да добави коментар в диалога за подпис",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Информация за подписания",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Електронна поща",
|
||||
|
@ -935,8 +916,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Стил",
|
||||
"PE.Views.ChartSettings.textSurface": "Повърхност",
|
||||
"PE.Views.ChartSettings.textWidth": "Ширина",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Отказ",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "Добре",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Алтернативен текст",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Описание",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
|
||||
|
@ -1204,8 +1183,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtPt": "Точка",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка на правописа",
|
||||
"PE.Views.FileMenuPanels.Settings.txtWin": "като Windows",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Отказ",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "Добре",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Показ",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Връзка към",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Изберете място в този документ",
|
||||
|
@ -1244,8 +1221,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "Завъртане",
|
||||
"PE.Views.ImageSettings.textSize": "Размер",
|
||||
"PE.Views.ImageSettings.textWidth": "Ширина",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Отказ",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "Добре",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Алтернативен текст",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Описание",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
|
||||
|
@ -1283,12 +1258,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Многократни",
|
||||
"PE.Views.ParagraphSettings.textExact": "Точно",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Автоматичен",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Отказ",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Посочените раздели ще се появят в това поле",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "Добре",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Всички шапки",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Двойно зачертаване",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Първа линия",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Наляво",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Прав",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт",
|
||||
|
@ -1367,8 +1339,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Няма линия",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Папирус",
|
||||
"PE.Views.ShapeSettings.txtWood": "Дърво",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Отказ",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "Добре",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Колони",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Попълване на текст",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Алтернативен текст",
|
||||
|
@ -1489,12 +1459,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Кожа",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Папирус",
|
||||
"PE.Views.SlideSettings.txtWood": "Дърво",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Отказ",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "Добре",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Прекъсвайте непрекъснато, докато се натисне „Esc“",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Покажи настройките",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Отказ",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "Добре",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Пейзаж",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Портрет",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Височина",
|
||||
|
@ -1575,8 +1541,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Задайте само външна дясна граница",
|
||||
"PE.Views.TableSettings.tipTop": "Задайте само външна горна граница",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Няма граници",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Отказ",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "Добре",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Алтернативен текст",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Описание",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
|
||||
|
@ -1665,13 +1629,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Доведете до преден план",
|
||||
"PE.Views.Toolbar.textBar": "Бар",
|
||||
"PE.Views.Toolbar.textBold": "Получер",
|
||||
"PE.Views.Toolbar.textCancel": "Отказ",
|
||||
"PE.Views.Toolbar.textCharts": "Диаграми",
|
||||
"PE.Views.Toolbar.textColumn": "Колона",
|
||||
"PE.Views.Toolbar.textItalic": "Курсив",
|
||||
"PE.Views.Toolbar.textLine": "Линия",
|
||||
"PE.Views.Toolbar.textNewColor": "Цвят по избор",
|
||||
"PE.Views.Toolbar.textOK": "Добре",
|
||||
"PE.Views.Toolbar.textPie": "Кръгова",
|
||||
"PE.Views.Toolbar.textPoint": "XY (точкова)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Подравняване отдолу",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Přidat",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Zrušit",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Aktuální",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota není správná.<br>Zadejte prosím hodnotu mezi 000000 a FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nový",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Poháněno",
|
||||
"Common.Views.About.txtTel": "tel.:",
|
||||
"Common.Views.About.txtVersion": "Verze",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Zrušit",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Poslat",
|
||||
"Common.Views.Comments.textAdd": "Přidat",
|
||||
"Common.Views.Comments.textAddComment": "Přidat",
|
||||
|
@ -90,13 +87,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Zobrazte uživatele a spravujte přístupová práva k dokumentům",
|
||||
"Common.Views.Header.txtAccessRights": "Změnit přístupová práva",
|
||||
"Common.Views.Header.txtRename": "Přejmenovat",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Vložit URL obrázku:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole je povinné",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole musí být URL adresa ve formátu \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Je třeba zadat platný počet řádky a sloupce.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Počet sloupců",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maximální hodnota tohoto pole je {0}.",
|
||||
|
@ -104,11 +97,7 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Počet řádků",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Rozdělit buňku",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Zrušit",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Vybrat jazyk dokumentu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kódování",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávné",
|
||||
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
||||
|
@ -120,8 +109,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Nahrávám",
|
||||
"Common.Views.Plugins.textStart": "Začátek",
|
||||
"Common.Views.Plugins.textStop": "Stop",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Zrušit",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Název souboru",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Název souboru nesmí obsahovat žádný z následujících znaků:",
|
||||
"Common.Views.ReviewChanges.strFast": "Automatický",
|
||||
|
@ -628,8 +615,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Styl",
|
||||
"PE.Views.ChartSettings.textSurface": "Povrch",
|
||||
"PE.Views.ChartSettings.textWidth": "Šířka",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternativní text",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Popis",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvarování, grafu nebo v tabulce.",
|
||||
|
@ -863,8 +848,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "Zobraz poslední",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Body",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Zrušit",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Zobrazit",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Odkaz na",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Select a Place in This Document",
|
||||
|
@ -893,8 +876,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Výchozí velikost",
|
||||
"PE.Views.ImageSettings.textSize": "Velikost",
|
||||
"PE.Views.ImageSettings.textWidth": "Šířka",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Alternativní text",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Popis",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvarování, grafu nebo v tabulce.",
|
||||
|
@ -926,12 +907,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Násobky",
|
||||
"PE.Views.ParagraphSettings.textExact": "Přesně",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Automaticky",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Specifikované tabulátory se objeví v tomto poli",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všechno velkým",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité přeškrtnutí",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "První řádek",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vlevo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Písmo",
|
||||
|
@ -1002,8 +980,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Bez čáry",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Dřevo",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Sloupce",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Vnitřní odsazení textu",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Alternativní text",
|
||||
|
@ -1108,12 +1084,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Kůže",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.SlideSettings.txtWood": "Dřevo",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Zrušit",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Opakujte cyklus dokud nestisknete klávesu \"Esc\"",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Zobrazit nastavení",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Zrušit",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Na šířku",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Na výšku",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Výška",
|
||||
|
@ -1186,8 +1158,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Nastavit pouze vnější pravé ohraničení",
|
||||
"PE.Views.TableSettings.tipTop": "Nastavit pouze vnější horní ohraničení",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Bez ohraničení",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Zrušit",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Alternativní text",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Popis",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvarování, grafu nebo v tabulce.",
|
||||
|
@ -1275,13 +1245,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Přenést do popředí",
|
||||
"PE.Views.Toolbar.textBar": "Vodorovná čárka",
|
||||
"PE.Views.Toolbar.textBold": "Tučně",
|
||||
"PE.Views.Toolbar.textCancel": "Zrušit",
|
||||
"PE.Views.Toolbar.textCharts": "Grafy",
|
||||
"PE.Views.Toolbar.textColumn": "Sloupec",
|
||||
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
||||
"PE.Views.Toolbar.textLine": "Čára",
|
||||
"PE.Views.Toolbar.textNewColor": "Vlastní barva",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Kruhový diagram",
|
||||
"PE.Views.Toolbar.textPoint": "Bodový graf",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Zarovnat dolů",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Keine Formate",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Hinzufügen",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Aktuell",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Der eingegebene Wert ist falsch.<br>Bitte geben Sie einen Wert zwischen 000000 und FFFFFF ein.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Neu",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Betrieben von",
|
||||
"Common.Views.About.txtTel": "Tel.: ",
|
||||
"Common.Views.About.txtVersion": "Version ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Senden",
|
||||
"Common.Views.Comments.textAdd": "Hinzufügen",
|
||||
"Common.Views.Comments.textAddComment": "Hinzufügen",
|
||||
|
@ -99,13 +96,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
|
||||
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
|
||||
"Common.Views.Header.txtRename": "Umbenennen",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Bild-URL einfügen:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Dieses Feld muss eine URL im Format \"http://www.example.com\" enthalten",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Sie müssen eine gültige Anzahl der Zeilen und Spalten angeben.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Anzahl von Spalten",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Der maximale Wert für dieses Feld ist {0}.",
|
||||
|
@ -113,20 +106,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Anzahl von Zeilen",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Größe der Tabelle",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Zelle teilen",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Abbrechen",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Sprache des Dokuments wählen",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Datei schließen",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Zeichenkodierung",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Kennwort ist falsch.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Kennwort",
|
||||
"Common.Views.OpenDialog.txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt.",
|
||||
"Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Legen Sie ein Passwort fest, um dieses Dokument zu schützen",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bestätigungseingabe ist nicht identisch",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Kennwort",
|
||||
|
@ -148,8 +135,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Fügen Sie eine digitale Signatur hinzu",
|
||||
"Common.Views.Protection.txtSignature": "Signatur",
|
||||
"Common.Views.Protection.txtSignatureLine": "Signaturzeile hinzufügen",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Dateiname",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Dieser Dateiname darf keines der folgenden Zeichen enthalten:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Zur nächsten Änderung",
|
||||
|
@ -204,8 +189,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Ordner fürs Speichern",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Ladevorgang",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Datenquelle auswählen",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Fett",
|
||||
"Common.Views.SignDialog.textCertificate": "Zertifikat",
|
||||
"Common.Views.SignDialog.textChange": "Ändern",
|
||||
|
@ -220,8 +203,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Gültig von% 1 bis% 2",
|
||||
"Common.Views.SignDialog.tipFontName": "Schriftart",
|
||||
"Common.Views.SignDialog.tipFontSize": "Schriftgrad",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Abbrechen",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Signaturgeber verfügt über die Möglichkeit, einen Kommentar im Signaturdialog hinzuzufügen",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Signaturgeberinformationen",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Email Adresse",
|
||||
|
@ -935,8 +916,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Stil",
|
||||
"PE.Views.ChartSettings.textSurface": "Oberfläche",
|
||||
"PE.Views.ChartSettings.textWidth": "Breite",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Der alternative Text",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Beschreibung",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
|
||||
|
@ -1204,8 +1183,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtPt": "Punkt",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Rechtschreibprüfung",
|
||||
"PE.Views.FileMenuPanels.Settings.txtWin": "wie Windows",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Abbrechen",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Anzeigen",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Verknüpfen mit",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Wählen Sie eine Stelle in diesem Dokument",
|
||||
|
@ -1244,8 +1221,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "Rotation",
|
||||
"PE.Views.ImageSettings.textSize": "Größe",
|
||||
"PE.Views.ImageSettings.textWidth": "Breite",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Der alternative Text",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Beschreibung",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
|
||||
|
@ -1283,12 +1258,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Mehrfach",
|
||||
"PE.Views.ParagraphSettings.textExact": "Genau",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Automatisch",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Die festgelegten Registerkarten werden in diesem Feld erscheinen",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alle Großbuchstaben",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doppeltes Durchstreichen",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Erste Zeile",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Schriftart",
|
||||
|
@ -1367,8 +1339,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Keine Linie",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Holz",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Spalten",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Ränder um den Text",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Der alternative Text",
|
||||
|
@ -1489,12 +1459,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Leder",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.SlideSettings.txtWood": "Holz",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Abbrechen",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Wiederholen, bis \"Esc\" gedrückt wird",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Einstellungen anzeigen",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Abbrechen",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Querformat",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Hochformat",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Höhe",
|
||||
|
@ -1575,8 +1541,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Nur äußere rechte Rahmenlinie festlegen",
|
||||
"PE.Views.TableSettings.tipTop": "Nur äußere obere Rahmenlinie festlegen",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Keine Rahmen",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Abbrechen",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Der alternative Text",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Beschreibung",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
|
||||
|
@ -1665,13 +1629,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "In den Vordergrund ",
|
||||
"PE.Views.Toolbar.textBar": "Balken",
|
||||
"PE.Views.Toolbar.textBold": "Fett",
|
||||
"PE.Views.Toolbar.textCancel": "Abbrechen",
|
||||
"PE.Views.Toolbar.textCharts": "Diagramme",
|
||||
"PE.Views.Toolbar.textColumn": "Spalte",
|
||||
"PE.Views.Toolbar.textItalic": "Kursiv",
|
||||
"PE.Views.Toolbar.textLine": "Linie",
|
||||
"PE.Views.Toolbar.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Kreis",
|
||||
"PE.Views.Toolbar.textPoint": "Punkt (XY)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Unten ausrichten",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
|
||||
"Common.UI.ComboDataView.emptyComboText": "No styles",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Add",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Current",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.<br>Please enter a value between 000000 and FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "New",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Version ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Send",
|
||||
"Common.Views.Comments.textAdd": "Add",
|
||||
"Common.Views.Comments.textAddComment": "Add Comment",
|
||||
|
@ -100,13 +97,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
|
||||
"Common.Views.Header.txtAccessRights": "Change access rights",
|
||||
"Common.Views.Header.txtRename": "Rename",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns number.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Number of Columns",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.",
|
||||
|
@ -114,20 +107,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Number of Rows",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Table Size",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Split Cell",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Cancel",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Select document language",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Close File",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Password",
|
||||
"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.txtTitle": "Choose %1 options",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Protected File",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Password",
|
||||
|
@ -149,8 +136,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Add digital signature",
|
||||
"Common.Views.Protection.txtSignature": "Signature",
|
||||
"Common.Views.Protection.txtSignatureLine": "Add signature line",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "File name",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ",
|
||||
"Common.Views.ReviewChanges.hintNext": "To next change",
|
||||
|
@ -206,8 +191,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Folder for save",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Loading",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Select Data Source",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Bold",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificate",
|
||||
"Common.Views.SignDialog.textChange": "Change",
|
||||
|
@ -222,8 +205,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Valid from %1 to %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Font Name",
|
||||
"Common.Views.SignDialog.tipFontSize": "Font Size",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Signer Info",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -260,6 +241,7 @@
|
|||
"PE.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.<br>Use the 'Save as...' option to save the file backup copy to your computer hard drive.",
|
||||
"PE.Controllers.Main.errorEmailClient": "No email client could be found.",
|
||||
"PE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.",
|
||||
"PE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
||||
"PE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
||||
"PE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
||||
"PE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
||||
|
@ -586,7 +568,6 @@
|
|||
"PE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"PE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||
"PE.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?",
|
||||
"PE.Controllers.Toolbar.textAccent": "Accents",
|
||||
|
@ -938,16 +919,12 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Style",
|
||||
"PE.Views.ChartSettings.textSurface": "Surface",
|
||||
"PE.Views.ChartSettings.textWidth": "Width",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternative Text",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Description",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Title",
|
||||
"PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings",
|
||||
"PE.Views.DateTimeDialog.cancelButtonText": "Cancel",
|
||||
"PE.Views.DateTimeDialog.confirmDefault": "Set default format for {0}: \"{1}\"",
|
||||
"PE.Views.DateTimeDialog.okButtonText": "OK",
|
||||
"PE.Views.DateTimeDialog.textDefault": "Set as default",
|
||||
"PE.Views.DateTimeDialog.textFormat": "Formats",
|
||||
"PE.Views.DateTimeDialog.textLang": "Language",
|
||||
|
@ -1161,6 +1138,7 @@
|
|||
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Create a new blank presentation which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a presentation of a certain type or purpose where some styles have already been pre-applied.",
|
||||
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "New Presentation",
|
||||
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "There are no templates",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
|
||||
|
@ -1176,7 +1154,6 @@
|
|||
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded",
|
||||
"PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply",
|
||||
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights",
|
||||
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights",
|
||||
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning",
|
||||
|
@ -1229,7 +1206,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
|
||||
"PE.Views.HeaderFooterDialog.applyAllText": "Apply to all",
|
||||
"PE.Views.HeaderFooterDialog.applyText": "Apply",
|
||||
"PE.Views.HeaderFooterDialog.cancelButtonText": "Cancel",
|
||||
"PE.Views.HeaderFooterDialog.diffLanguage": "You can’t use a date format in a different language than the slide master.<br>To change the master, click 'Apply to all' instead of 'Apply'",
|
||||
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Warning",
|
||||
"PE.Views.HeaderFooterDialog.textDateTime": "Date and time",
|
||||
|
@ -1242,8 +1218,6 @@
|
|||
"PE.Views.HeaderFooterDialog.textSlideNum": "Slide number",
|
||||
"PE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings",
|
||||
"PE.Views.HeaderFooterDialog.textUpdate": "Update automatically",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Display",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link To",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Select a Place in This Document",
|
||||
|
@ -1282,8 +1256,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "Rotation",
|
||||
"PE.Views.ImageSettings.textSize": "Size",
|
||||
"PE.Views.ImageSettings.textWidth": "Width",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
||||
|
@ -1321,13 +1293,10 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Multiple",
|
||||
"PE.Views.ParagraphSettings.textExact": "Exactly",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndent": "Indents",
|
||||
"del_PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "First Line",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
|
||||
|
@ -1419,8 +1388,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "No Line",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Wood",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Columns",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text",
|
||||
|
@ -1543,12 +1510,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Leather",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.SlideSettings.txtWood": "Wood",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Cancel",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Loop continuously until 'Esc' is pressed",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Show Settings",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Cancel",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Landscape",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Portrait",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Height",
|
||||
|
@ -1629,8 +1592,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Set outer right border only",
|
||||
"PE.Views.TableSettings.tipTop": "Set outer top border only",
|
||||
"PE.Views.TableSettings.txtNoBorders": "No borders",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Description",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
||||
|
@ -1722,13 +1683,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Bring To Foreground",
|
||||
"PE.Views.Toolbar.textBar": "Bar",
|
||||
"PE.Views.Toolbar.textBold": "Bold",
|
||||
"PE.Views.Toolbar.textCancel": "Cancel",
|
||||
"PE.Views.Toolbar.textCharts": "Charts",
|
||||
"PE.Views.Toolbar.textColumn": "Column",
|
||||
"PE.Views.Toolbar.textItalic": "Italic",
|
||||
"PE.Views.Toolbar.textLine": "Line",
|
||||
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Pie",
|
||||
"PE.Views.Toolbar.textPoint": "XY (Scatter)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Añadir",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Cancelar",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Actual",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "El valor introducido es incorrecto.<br>Por favor, introduzca un valor de 000000 a FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nuevo",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Desarrollado por",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Versión ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancelar",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "Aceptar",
|
||||
"Common.Views.Chat.textSend": "Enviar",
|
||||
"Common.Views.Comments.textAdd": "Añadir",
|
||||
"Common.Views.Comments.textAddComment": "Añadir",
|
||||
|
@ -100,13 +97,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
|
||||
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
|
||||
"Common.Views.Header.txtRename": "Renombrar",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL de imagen:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo es obligatorio",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo debe ser URL en el formato \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Hay que especificar número válido de filas y columnas.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Número de columnas",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "El valor máximo para este campo es {0}.",
|
||||
|
@ -114,20 +107,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Número de filas",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tamaño de tabla",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividir celda",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Cancelar",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Seleccionar el idioma de documento",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Cerrar archivo",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Codificación",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Clave incorrecta",
|
||||
"Common.Views.OpenDialog.txtPassword": "Contraseña",
|
||||
"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.txtTitle": "Elegir opciones de %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Archivo protegido",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.PasswordDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Establezca una contraseña para proteger este documento",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "La contraseña de confirmación no es idéntica",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Contraseña",
|
||||
|
@ -149,8 +136,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Añadir firma digital",
|
||||
"Common.Views.Protection.txtSignature": "Firma",
|
||||
"Common.Views.Protection.txtSignatureLine": "Añadir línea de firma",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Nombre de archivo",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "El nombre de archivo no debe contener los símbolos siguientes:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Al siguiente cambio",
|
||||
|
@ -205,8 +190,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Carpeta para guardar",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Cargando",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Seleccionar fuente de datos",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.SignDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.SignDialog.textBold": "Negrita",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificar",
|
||||
"Common.Views.SignDialog.textChange": "Cambiar",
|
||||
|
@ -221,8 +204,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Válido desde %1 hasta %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra",
|
||||
"Common.Views.SignDialog.tipFontSize": "Tamaño de letra",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "Aceptar",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Permitir a quien firma añadir comentarios en el diálogo de firma",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Información de quien firma",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Correo electrónico",
|
||||
|
@ -936,16 +917,12 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Estilo",
|
||||
"PE.Views.ChartSettings.textSurface": "Superficie",
|
||||
"PE.Views.ChartSettings.textWidth": "Ancho",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Texto alternativo",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descripción",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Título",
|
||||
"PE.Views.ChartSettingsAdvanced.textTitle": "Gráfico - Ajustes avanzados",
|
||||
"PE.Views.DateTimeDialog.cancelButtonText": "Cancelar",
|
||||
"PE.Views.DateTimeDialog.confirmDefault": "Establecer formato predeterminado para {0}: \"{1}\"",
|
||||
"PE.Views.DateTimeDialog.okButtonText": "OK",
|
||||
"PE.Views.DateTimeDialog.textDefault": "Establecer como el valor predeterminado",
|
||||
"PE.Views.DateTimeDialog.textFormat": "Formatos",
|
||||
"PE.Views.DateTimeDialog.textLang": "Idioma",
|
||||
|
@ -1224,7 +1201,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtWin": "como Windows",
|
||||
"PE.Views.HeaderFooterDialog.applyAllText": "Aplicar a todo",
|
||||
"PE.Views.HeaderFooterDialog.applyText": "Aplicar",
|
||||
"PE.Views.HeaderFooterDialog.cancelButtonText": "Cancelar",
|
||||
"PE.Views.HeaderFooterDialog.diffLanguage": "No se puede usar un formato de fecha en un idioma diferente del patrón de diapositivas.<br> Para cambiar el patrón pulse \"Aplicar a todo\" en vez de \"Aplicar\"",
|
||||
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Aviso",
|
||||
"PE.Views.HeaderFooterDialog.textDateTime": "Fecha y hora",
|
||||
|
@ -1236,8 +1212,6 @@
|
|||
"PE.Views.HeaderFooterDialog.textSlideNum": "Número de diapositiva",
|
||||
"PE.Views.HeaderFooterDialog.textTitle": "Ajustes de encabezado / pie de página",
|
||||
"PE.Views.HeaderFooterDialog.textUpdate": "Actualizar automáticamente",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancelar",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "Aceptar",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Mostrar",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Enlace a",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Seleccionar un lugar en este documento",
|
||||
|
@ -1276,8 +1250,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "Rotación",
|
||||
"PE.Views.ImageSettings.textSize": "Tamaño",
|
||||
"PE.Views.ImageSettings.textWidth": "Ancho",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "Aceptar",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Texto alternativo",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Descripción",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.",
|
||||
|
@ -1315,12 +1287,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Múltiple",
|
||||
"PE.Views.ParagraphSettings.textExact": "Exacto",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Las pestañas especificadas aparecerán en este campo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "Aceptar",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Mayúsculas",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble tachado",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Primera línea",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Izquierdo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Derecho",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Letra ",
|
||||
|
@ -1399,8 +1368,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Sin líneas",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papiro",
|
||||
"PE.Views.ShapeSettings.txtWood": "Madera",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "Aceptar",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Columnas",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Márgenes interiores",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Texto alternativo",
|
||||
|
@ -1523,12 +1490,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Piel",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papiro",
|
||||
"PE.Views.SlideSettings.txtWood": "Madera",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Cancelar",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Repetir el ciclo hasta presionar 'Esc'",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Mostrar los ajustes",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Cancelar",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "Aceptar",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Horizontal",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Vertical",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Altura",
|
||||
|
@ -1609,8 +1572,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho",
|
||||
"PE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Sin bordes",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "Aceptar",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Texto alternativo",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Descripción",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.",
|
||||
|
@ -1699,13 +1660,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Traer al frente",
|
||||
"PE.Views.Toolbar.textBar": "Gráfico de barras",
|
||||
"PE.Views.Toolbar.textBold": "Negrita",
|
||||
"PE.Views.Toolbar.textCancel": "Cancelar",
|
||||
"PE.Views.Toolbar.textCharts": "Gráficos",
|
||||
"PE.Views.Toolbar.textColumn": "Histograma",
|
||||
"PE.Views.Toolbar.textItalic": "Cursiva",
|
||||
"PE.Views.Toolbar.textLine": "Línea",
|
||||
"PE.Views.Toolbar.textNewColor": "Color personalizado",
|
||||
"PE.Views.Toolbar.textOK": "Aceptar",
|
||||
"PE.Views.Toolbar.textPie": "Gráfico circular",
|
||||
"PE.Views.Toolbar.textPoint": "XY (Dispersión)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Alinear en la parte inferior",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Ajouter",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Annuler",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Actuel",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "La valeur saisie est incorrecte. <br>Entrez une valeur de 000000 à FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nouveau",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tél.: ",
|
||||
"Common.Views.About.txtVersion": "Version ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Annuler",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Envoyer",
|
||||
"Common.Views.Comments.textAdd": "Ajouter",
|
||||
"Common.Views.Comments.textAddComment": "Ajouter",
|
||||
|
@ -100,13 +97,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents",
|
||||
"Common.Views.Header.txtAccessRights": "Modifier les droits d'accès",
|
||||
"Common.Views.Header.txtRename": "Renommer",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Coller URL d'image:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Champ obligatoire",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Specifiez les lignes valides et le total des colonnes.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Nombre de colonnes",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "La valeur maximale pour ce champ est {0}.",
|
||||
|
@ -114,20 +107,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Nombre de lignes",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Taille du tableau",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Fractionner la cellule",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Annuler",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Sélectionner la langue du document",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Fermer le fichier",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Codage ",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Mot de passe",
|
||||
"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.txtTitle": "Choisir les options %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Fichier protégé",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Indiquez un mot de passe pour protéger ce document",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Le mot de passe de confirmation n'est pas identique",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
|
||||
|
@ -149,8 +136,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Ajouter une signature électronique",
|
||||
"Common.Views.Protection.txtSignature": "Signature",
|
||||
"Common.Views.Protection.txtSignatureLine": "Ajouter la zone de signature",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Nom de fichier",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Un nom de fichier ne peut pas contenir les caractères suivants :",
|
||||
"Common.Views.ReviewChanges.hintNext": "À la modification suivante",
|
||||
|
@ -205,8 +190,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Dossier pour enregistrement",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Chargement",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Sélectionnez la source de données",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Gras",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificat",
|
||||
"Common.Views.SignDialog.textChange": "Changer",
|
||||
|
@ -221,8 +204,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Valide de %1 à %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Nom de la police",
|
||||
"Common.Views.SignDialog.tipFontSize": "Taille de la police",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Annuler",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Autoriser le signataire à ajouter un commentaire dans la boîte de dialogue de la signature",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Information à propos du signataire",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Adresse de messagerie",
|
||||
|
@ -936,14 +917,11 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Style",
|
||||
"PE.Views.ChartSettings.textSurface": "Surface",
|
||||
"PE.Views.ChartSettings.textWidth": "Largeur",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Texte de remplacement",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Description",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Titre",
|
||||
"PE.Views.ChartSettingsAdvanced.textTitle": "Graphique - Paramètres avancés",
|
||||
"PE.Views.DateTimeDialog.cancelButtonText": "Annuler",
|
||||
"PE.Views.DateTimeDialog.confirmDefault": "Définir le format par défaut pour {0}: \"{1}\"",
|
||||
"PE.Views.DateTimeDialog.textDefault": "Définir par défaut",
|
||||
"PE.Views.DateTimeDialog.textFormat": "Formats",
|
||||
|
@ -1223,7 +1201,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtWin": "comme Windows",
|
||||
"PE.Views.HeaderFooterDialog.applyAllText": "Appliquer à tous",
|
||||
"PE.Views.HeaderFooterDialog.applyText": "Appliquer",
|
||||
"PE.Views.HeaderFooterDialog.cancelButtonText": "Annuler",
|
||||
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avertissement",
|
||||
"PE.Views.HeaderFooterDialog.textDateTime": "Date et heure",
|
||||
"PE.Views.HeaderFooterDialog.textFooter": "Texte en pied de page",
|
||||
|
@ -1234,8 +1211,6 @@
|
|||
"PE.Views.HeaderFooterDialog.textSlideNum": "Numéro de diapositive",
|
||||
"PE.Views.HeaderFooterDialog.textTitle": "Paramètres des en-têtes/pieds de page",
|
||||
"PE.Views.HeaderFooterDialog.textUpdate": "Mettre à jour automatiquement",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annuler",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Afficher",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Lien vers",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Sélectionner un emplacement dans ce document",
|
||||
|
@ -1274,8 +1249,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "Rotation",
|
||||
"PE.Views.ImageSettings.textSize": "Taille",
|
||||
"PE.Views.ImageSettings.textWidth": "Largeur",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Texte de remplacement",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue par les personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.",
|
||||
|
@ -1313,12 +1286,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Plusieurs",
|
||||
"PE.Views.ParagraphSettings.textExact": "Exactement",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majuscules",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Première ligne",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Police",
|
||||
|
@ -1397,8 +1367,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Pas de ligne",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Bois",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Colonnes",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Marges intérieures",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Texte de remplacement",
|
||||
|
@ -1521,12 +1489,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Cuir",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.SlideSettings.txtWood": "Bois",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Annuler",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Boucle continue jusqu'à ce que le bouton «Esc» soit pressé",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Afficher les paramètres",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Annuler",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Paysage",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Portrait",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Hauteur",
|
||||
|
@ -1607,8 +1571,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Seulement bordure extérieure droite",
|
||||
"PE.Views.TableSettings.tipTop": "Seulement bordure extérieure supérieure",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Pas de bordures",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Annuler",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Texte de remplacement",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Description",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.",
|
||||
|
@ -1697,13 +1659,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Mettre au premier plan",
|
||||
"PE.Views.Toolbar.textBar": "À barres",
|
||||
"PE.Views.Toolbar.textBold": "Gras",
|
||||
"PE.Views.Toolbar.textCancel": "Annuler",
|
||||
"PE.Views.Toolbar.textCharts": "Graphiques",
|
||||
"PE.Views.Toolbar.textColumn": "Histogramme",
|
||||
"PE.Views.Toolbar.textItalic": "Italique",
|
||||
"PE.Views.Toolbar.textLine": "En ligne",
|
||||
"PE.Views.Toolbar.textNewColor": "Couleur personnalisée",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "À secteurs",
|
||||
"PE.Views.Toolbar.textPoint": "Nuages de points (XY)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Aligner en bas",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Hozzáad",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Mégse",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "aktuális",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "A megadott érték helytelen.<br>Kérjük, adjon meg egy értéket 000000 és FFFFFF között",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "új",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "Tel.: ",
|
||||
"Common.Views.About.txtVersion": "Verzió",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Mégse",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Küldés",
|
||||
"Common.Views.Comments.textAdd": "Hozzáad",
|
||||
"Common.Views.Comments.textAddComment": "Hozzászólás hozzáadása",
|
||||
|
@ -99,13 +96,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "A felhasználók megtekintése és a dokumentumokhoz való hozzáférési jogok kezelése",
|
||||
"Common.Views.Header.txtAccessRights": "Hozzáférési jogok módosítása",
|
||||
"Common.Views.Header.txtRename": "Név változtatása",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Mégse",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Illesszen be egy kép hivatkozást:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Ez egy szükséges mező",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Ennek a mezőnek hivatkozásnak kell lennie a \"http://www.example.com\" formátumban",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Mégse",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Érvényes értéket kell megadnia sorok és oszlopok számaként.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Oszlopok száma",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "A mező maximális értéke {0}.",
|
||||
|
@ -113,20 +106,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Sorok száma",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Táblázat méret",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Cella felosztása",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Mégse",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Dokumentum nyelvének kiválasztása",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Mégse",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Fájl bezárása",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kódol",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Hibás jelszó.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Jelszó",
|
||||
"Common.Views.OpenDialog.txtProtected": "Miután megadta a jelszót és megnyitotta a fájlt, az aktuális jelszó visszaáll.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Válassza a %1 opciót",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Védett fájl",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Mégse",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Állítson be jelszót a dokumentum védelmére",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "A jelszavak nem azonosak",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Jelszó",
|
||||
|
@ -148,8 +135,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Digitális aláírás hozzáadása",
|
||||
"Common.Views.Protection.txtSignature": "Aláírás",
|
||||
"Common.Views.Protection.txtSignatureLine": "Aláírás sor hozzáadása",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Mégse",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Fájl név",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "A fájlnév nem tartalmazhatja a következő karaktereket:",
|
||||
"Common.Views.ReviewChanges.hintNext": "A következő változáshoz",
|
||||
|
@ -204,8 +189,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Mentési mappa",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Betöltés",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Adatforrás kiválasztása",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Mégse",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Félkövér",
|
||||
"Common.Views.SignDialog.textCertificate": "Tanúsítvány",
|
||||
"Common.Views.SignDialog.textChange": "Módosítás",
|
||||
|
@ -220,8 +203,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Érvényes %1 és %2 között",
|
||||
"Common.Views.SignDialog.tipFontName": "Betűtípus neve",
|
||||
"Common.Views.SignDialog.tipFontSize": "Betűméret",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Mégse",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak hozzászólás hozzáadását az aláírási párbeszédablakban",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Aláíró infó",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -877,8 +858,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Stílus",
|
||||
"PE.Views.ChartSettings.textSurface": "Felület",
|
||||
"PE.Views.ChartSettings.textWidth": "Szélesség",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Mégse",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatív szöveg",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Leírás",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "A vizuális objektumok alternatív szövegalapú ábrázolása, amely a látás vagy kognitív károsodottak számára is olvasható, hogy segítsen nekik jobban megérteni, hogy milyen információ, alakzat, diagram vagy táblázat látható.",
|
||||
|
@ -1143,8 +1122,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtPt": "Pont",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Helyesírás-ellenőrzés",
|
||||
"PE.Views.FileMenuPanels.Settings.txtWin": "Windows-ként",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Mégse",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Megjelenít",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Hivatkozás",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Jelöljön ki egy helyet a dokumentumban",
|
||||
|
@ -1181,8 +1158,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "Forgatás",
|
||||
"PE.Views.ImageSettings.textSize": "Méret",
|
||||
"PE.Views.ImageSettings.textWidth": "Szélesség",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Mégse",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Alternatív szöveg",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Leírás",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "A vizuális objektumok alternatív szövegalapú ábrázolása, amely a látás vagy kognitív károsodottak számára is olvasható, hogy segítsen nekik jobban megérteni, hogy milyen információ, alakzat, diagram vagy táblázat látható.",
|
||||
|
@ -1220,12 +1195,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Többszörös",
|
||||
"PE.Views.ParagraphSettings.textExact": "Pontosan",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Mégse",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "A megadott lapok ezen a területen jelennek meg.",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Minden nagybetű",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dupla áthúzás",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Első sor",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Bal",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Jobb",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Betűtípus",
|
||||
|
@ -1304,8 +1276,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Nincs vonal",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papirusz",
|
||||
"PE.Views.ShapeSettings.txtWood": "Fa",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Mégse",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Hasábok",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Szöveg távolság",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Alternatív szöveg",
|
||||
|
@ -1426,12 +1396,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Bőr",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papirusz",
|
||||
"PE.Views.SlideSettings.txtWood": "Fa",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Mégse",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Folyamatos lejátszás az 'ESC' megnyomásáig",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Beállítások megjelenítése",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Mégse",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Tájkép",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Portré",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Magasság",
|
||||
|
@ -1512,8 +1478,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Csak külső, jobb szegély beállítása",
|
||||
"PE.Views.TableSettings.tipTop": "Csak külső, felső szegély beállítása",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Nincsenek szegélyek",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Mégse",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Alternatív szöveg",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Leírás",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "A vizuális objektumok alternatív szövegalapú ábrázolása, amely a látás vagy kognitív károsodottak számára is olvasható, hogy segítsen nekik jobban megérteni, hogy milyen információ, alakzat, diagram vagy táblázat látható.",
|
||||
|
@ -1602,13 +1566,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Előre hoz",
|
||||
"PE.Views.Toolbar.textBar": "Sáv",
|
||||
"PE.Views.Toolbar.textBold": "Félkövér",
|
||||
"PE.Views.Toolbar.textCancel": "Mégse",
|
||||
"PE.Views.Toolbar.textCharts": "Diagramok",
|
||||
"PE.Views.Toolbar.textColumn": "Hasáb",
|
||||
"PE.Views.Toolbar.textItalic": "Dőlt",
|
||||
"PE.Views.Toolbar.textLine": "Vonal",
|
||||
"PE.Views.Toolbar.textNewColor": "Egyéni szín",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Kördiagram",
|
||||
"PE.Views.Toolbar.textPoint": "Gráf",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Alulra rendez",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Aggiungi",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Annulla",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Attuale",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Il valore inserito non è corretto.<br>Inserisci un valore tra 000000 e FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nuovo",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Con tecnologia",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Versione ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Annulla",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Invia",
|
||||
"Common.Views.Comments.textAdd": "Aggiungi",
|
||||
"Common.Views.Comments.textAddComment": "Aggiungi",
|
||||
|
@ -100,13 +97,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
|
||||
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
|
||||
"Common.Views.Header.txtRename": "Rinomina",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Incolla URL immagine:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Questo campo è richiesto",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Specifica il numero di righe e colonne valido.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Numero di colonne",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Il valore massimo di questo campo è {0}.",
|
||||
|
@ -114,20 +107,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Numero di righe",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Dimensioni tabella",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividi cella",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Annulla",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Chiudi File",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Codifica",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Password errata",
|
||||
"Common.Views.OpenDialog.txtPassword": "Password",
|
||||
"Common.Views.OpenDialog.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "File protetto",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "É richiesta la password per proteggere il documento",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "la password di conferma non corrisponde",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Password",
|
||||
|
@ -149,8 +136,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Aggiungi firma digitale",
|
||||
"Common.Views.Protection.txtSignature": "Firma",
|
||||
"Common.Views.Protection.txtSignatureLine": "Riga della firma",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Nome file",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Il nome del file non può contenere nessuno dei seguenti caratteri:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Alla modifica successiva",
|
||||
|
@ -206,8 +191,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Cartella di salvataggio",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Caricamento",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Seleziona Sorgente Dati",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Grassetto",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificato",
|
||||
"Common.Views.SignDialog.textChange": "Cambia",
|
||||
|
@ -222,8 +205,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Valido dal %1 al %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Nome carattere",
|
||||
"Common.Views.SignDialog.tipFontSize": "Dimensione carattere",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Annulla",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Consenti al firmatario di aggiungere commenti nella finestra di firma",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Informazioni sul Firmatario",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -937,16 +918,12 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Style",
|
||||
"PE.Views.ChartSettings.textSurface": "Superficie",
|
||||
"PE.Views.ChartSettings.textWidth": "Larghezza",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Testo alternativo",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrizione",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "La rappresentazione alternativa del testo delle informazioni riguardanti gli oggetti visivi, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Titolo",
|
||||
"PE.Views.ChartSettingsAdvanced.textTitle": "Grafico - Impostazioni avanzate",
|
||||
"PE.Views.DateTimeDialog.cancelButtonText": "Annulla",
|
||||
"PE.Views.DateTimeDialog.confirmDefault": "Imposta formato definitivo per {0}: \"{1}\"",
|
||||
"PE.Views.DateTimeDialog.okButtonText": "OK",
|
||||
"PE.Views.DateTimeDialog.textDefault": "Imposta come predefinito",
|
||||
"PE.Views.DateTimeDialog.textFormat": "Formati",
|
||||
"PE.Views.DateTimeDialog.textLang": "Lingua",
|
||||
|
@ -1227,7 +1204,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtWin": "come Windows",
|
||||
"PE.Views.HeaderFooterDialog.applyAllText": "Applica a tutti",
|
||||
"PE.Views.HeaderFooterDialog.applyText": "Applica",
|
||||
"PE.Views.HeaderFooterDialog.cancelButtonText": "Annulla",
|
||||
"PE.Views.HeaderFooterDialog.diffLanguage": "Non è possibile utilizzare un formato data in una lingua diversa da quella della diapositiva.<br>Per cambiare il master, fare clic su \"Applica a tutto\" anziché \"Applica\"",
|
||||
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avviso",
|
||||
"PE.Views.HeaderFooterDialog.textDateTime": "Data e ora",
|
||||
|
@ -1240,8 +1216,6 @@
|
|||
"PE.Views.HeaderFooterDialog.textSlideNum": "Numero Diapositiva",
|
||||
"PE.Views.HeaderFooterDialog.textTitle": "Impostazioni intestazione / piè di pagina",
|
||||
"PE.Views.HeaderFooterDialog.textUpdate": "Aggiorna automaticamente",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annulla",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Visualizza",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Collega a",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Seleziona in questo documento",
|
||||
|
@ -1280,8 +1254,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "Rotazione",
|
||||
"PE.Views.ImageSettings.textSize": "Dimensione",
|
||||
"PE.Views.ImageSettings.textWidth": "Larghezza",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Testo alternativo",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Descrizione",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "La rappresentazione alternativa del testo delle informazioni riguardanti gli oggetti visivi, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.",
|
||||
|
@ -1319,13 +1291,10 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Multipla",
|
||||
"PE.Views.ParagraphSettings.textExact": "Esatta",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Le schede specificate appariranno in questo campo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Maiuscole",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barrato doppio",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndent": "Rientri",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prima riga",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A sinistra",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interlinea",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A destra",
|
||||
|
@ -1417,8 +1386,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Nessuna linea",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papiro",
|
||||
"PE.Views.ShapeSettings.txtWood": "Legno",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Colonne",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Spaziatura interna",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Testo alternativo",
|
||||
|
@ -1541,12 +1508,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Cuoio",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papiro",
|
||||
"PE.Views.SlideSettings.txtWood": "Legno",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Annulla",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Loop in continuità fino a che 'Esc' è premuto",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Mostra Impostazioni",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Annulla",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Orizzontale",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Verticale",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Altezza",
|
||||
|
@ -1627,8 +1590,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Imposta solo bordo esterno destro",
|
||||
"PE.Views.TableSettings.tipTop": "Imposta solo bordo esterno superiore",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Nessun bordo",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Annulla",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Testo alternativo",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Descrizione",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "La rappresentazione alternativa del testo delle informazioni riguardanti gli oggetti visivi, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.",
|
||||
|
@ -1720,13 +1681,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Porta in primo piano",
|
||||
"PE.Views.Toolbar.textBar": "Barra",
|
||||
"PE.Views.Toolbar.textBold": "Grassetto",
|
||||
"PE.Views.Toolbar.textCancel": "Annulla",
|
||||
"PE.Views.Toolbar.textCharts": "Grafici",
|
||||
"PE.Views.Toolbar.textColumn": "Colonna",
|
||||
"PE.Views.Toolbar.textItalic": "Corsivo",
|
||||
"PE.Views.Toolbar.textLine": "Linea",
|
||||
"PE.Views.Toolbar.textNewColor": "Colore personalizzato",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Torta",
|
||||
"PE.Views.Toolbar.textPoint": "XY (A dispersione)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Allinea in basso",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "枠線なし",
|
||||
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "追加",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "キャンセル",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "現在",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "入力された値が正しくありません。<br>000000〜FFFFFFの数値を入力してください。",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "新しい",
|
||||
|
@ -46,8 +45,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "電話番号:",
|
||||
"Common.Views.About.txtVersion": "バージョン",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "キャンセル",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "送信",
|
||||
"Common.Views.Comments.textAdd": "追加",
|
||||
"Common.Views.Comments.textAddComment": "コメントの追加",
|
||||
|
@ -75,13 +72,9 @@
|
|||
"Common.Views.ExternalDiagramEditor.textSave": "保存と終了",
|
||||
"Common.Views.ExternalDiagramEditor.textTitle": "グラフの編集",
|
||||
"Common.Views.Header.textBack": "ドキュメントに移動",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "キャンセル",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "画像のURLの貼り付け",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "キャンセル",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "有効な行と列の数を指定する必要があります。",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "列数",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "このフィールドの最大値は{0}です。",
|
||||
|
@ -363,8 +356,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtInput": "代替入力",
|
||||
"PE.Views.FileMenuPanels.Settings.txtLast": "最後の",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "ポイント",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "キャンセル",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "表示",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "リンク",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "ドキュメント内の場所",
|
||||
|
@ -391,8 +382,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "既定サイズ",
|
||||
"PE.Views.ImageSettings.textSize": "サイズ",
|
||||
"PE.Views.ImageSettings.textWidth": "幅",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "キャンセル",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textHeight": "高さ",
|
||||
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "比例の定数",
|
||||
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "既定サイズ",
|
||||
|
@ -417,12 +406,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "複数",
|
||||
"PE.Views.ParagraphSettings.textExact": "固定値",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "自動",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "キャンセル",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "指定されたタブは、このフィールドに表示されます。",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "全てのキャップ",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "二重取り消し線",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "最初の行",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右に",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "フォント",
|
||||
|
@ -492,8 +478,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "線なし",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "パピルス",
|
||||
"PE.Views.ShapeSettings.txtWood": "木",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "キャンセル",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "テキストの埋め込み文字",
|
||||
"PE.Views.ShapeSettingsAdvanced.textArrows": "矢印",
|
||||
"PE.Views.ShapeSettingsAdvanced.textBeginSize": "始点のサイズ",
|
||||
|
@ -591,8 +575,6 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "レザー",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "パピルス",
|
||||
"PE.Views.SlideSettings.txtWood": "木",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "キャンセル",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "高さ",
|
||||
"PE.Views.SlideSizeSettings.textSlideSize": "スライドのサイズ",
|
||||
"PE.Views.SlideSizeSettings.textTitle": "スライドのサイズの設定",
|
||||
|
@ -661,8 +643,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "外部の罫線(右)だけを設定します。",
|
||||
"PE.Views.TableSettings.tipTop": "外部の罫線(上)だけを設定します。",
|
||||
"PE.Views.TableSettings.txtNoBorders": "枠線なし",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "キャンセル",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textBottom": "下",
|
||||
"PE.Views.TableSettingsAdvanced.textCheckMargins": "既定の余白を使用します。",
|
||||
"PE.Views.TableSettingsAdvanced.textDefaultMargins": "既定の余白",
|
||||
|
@ -733,12 +713,10 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "前景に移動",
|
||||
"PE.Views.Toolbar.textBar": "横棒グラフ",
|
||||
"PE.Views.Toolbar.textBold": "太字",
|
||||
"PE.Views.Toolbar.textCancel": "キャンセル",
|
||||
"PE.Views.Toolbar.textColumn": "縦棒グラフ",
|
||||
"PE.Views.Toolbar.textItalic": "斜体",
|
||||
"PE.Views.Toolbar.textLine": "折れ線グラフ",
|
||||
"PE.Views.Toolbar.textNewColor": "ユーザー設定の色",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "円グラフ",
|
||||
"PE.Views.Toolbar.textPoint": "点グラフ",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "下揃え",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "테두리 없음",
|
||||
"Common.UI.ComboDataView.emptyComboText": "스타일 없음",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Add",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "취소",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "현재",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "입력 한 값이 잘못되었습니다. <br> 000000에서 FFFFFF 사이의 값을 입력하십시오.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "New",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tel .:",
|
||||
"Common.Views.About.txtVersion": "버전",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "취소",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "보내기",
|
||||
"Common.Views.Comments.textAdd": "추가",
|
||||
"Common.Views.Comments.textAddComment": "덧글 추가",
|
||||
|
@ -99,13 +96,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "사용자보기 및 문서 액세스 권한 관리",
|
||||
"Common.Views.Header.txtAccessRights": "액세스 권한 변경",
|
||||
"Common.Views.Header.txtRename": "이름 바꾸기",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "취소",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "이미지 URL 붙여 넣기 :",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "이 입력란은 필수 항목",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "취소",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "유효한 행과 열 번호를 지정해야합니다.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "열 수",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "이 필드의 최대 값은 {0}입니다.",
|
||||
|
@ -113,19 +106,13 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "행 수",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "표 크기",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "셀 분할",
|
||||
"Common.Views.LanguageDialog.btnCancel": "취소",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "문서 언어 선택",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "취소",
|
||||
"Common.Views.OpenDialog.closeButtonText": "파일 닫기",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "인코딩",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음",
|
||||
"Common.Views.OpenDialog.txtPassword": "비밀번호",
|
||||
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "보호 된 파일",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "취소",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "문서 보호용 비밀번호를 세팅하세요",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "확인 비밀번호가 같지 않음",
|
||||
"Common.Views.PasswordDialog.txtPassword": "암호",
|
||||
|
@ -147,8 +134,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "디지털 서명을 추가",
|
||||
"Common.Views.Protection.txtSignature": "서명",
|
||||
"Common.Views.Protection.txtSignatureLine": "서명 라인",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "취소",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "파일 이름",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "파일 이름에 다음 문자를 포함 할 수 없습니다 :",
|
||||
"Common.Views.ReviewChanges.hintNext": "다음 변경 사항",
|
||||
|
@ -191,8 +176,6 @@
|
|||
"Common.Views.ReviewChanges.txtSpelling": "맞춤법 검사",
|
||||
"Common.Views.ReviewChanges.txtTurnon": "변경 내용 추적",
|
||||
"Common.Views.ReviewChanges.txtView": "디스플레이 모드",
|
||||
"Common.Views.SignDialog.cancelButtonText": "취소",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "볼드체",
|
||||
"Common.Views.SignDialog.textCertificate": "인증",
|
||||
"Common.Views.SignDialog.textChange": "변경",
|
||||
|
@ -207,8 +190,6 @@
|
|||
"Common.Views.SignDialog.textValid": "%1에서 %2까지 유효",
|
||||
"Common.Views.SignDialog.tipFontName": "폰트명",
|
||||
"Common.Views.SignDialog.tipFontSize": "글꼴 크기",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "취소",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "서명 대화창에 서명자의 코멘트 추가 허용",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "서명자 정보",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "이메일",
|
||||
|
@ -730,8 +711,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "스타일",
|
||||
"PE.Views.ChartSettings.textSurface": "표면",
|
||||
"PE.Views.ChartSettings.textWidth": "너비",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "취소",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "대체 텍스트",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "설명",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ",
|
||||
|
@ -985,8 +964,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "마지막보기",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Point",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "맞춤법 검사",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "취소",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "표시",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "링크 대상",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "이 문서에서 장소 선택",
|
||||
|
@ -1015,8 +992,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "기본 크기",
|
||||
"PE.Views.ImageSettings.textSize": "크기",
|
||||
"PE.Views.ImageSettings.textWidth": "너비",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "취소",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "대체 텍스트",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "설명",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 객체 정보의 대안적인 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 돕고, 차트 또는 표. ",
|
||||
|
@ -1049,12 +1024,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Multiple",
|
||||
"PE.Views.ParagraphSettings.textExact": "정확히",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "자동",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "취소",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "지정된 탭이이 필드에 나타납니다",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "이중 취소 선",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "First Line",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "글꼴",
|
||||
|
@ -1126,8 +1098,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "No Line",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "파피루스",
|
||||
"PE.Views.ShapeSettings.txtWood": "우드",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "취소",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Columns",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "텍스트 채우기",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "대체 텍스트",
|
||||
|
@ -1243,12 +1213,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "가죽",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "파피루스",
|
||||
"PE.Views.SlideSettings.txtWood": "Wood",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "취소",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": " 'Esc'를 누를 때까지 계속 반복합니다.",
|
||||
"PE.Views.SlideshowSettings.textTitle": "설정 표시",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "취소",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Landscape",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Portrait",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "높이",
|
||||
|
@ -1326,8 +1292,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "바깥 쪽 테두리 만 설정",
|
||||
"PE.Views.TableSettings.tipTop": "바깥 쪽 테두리 만 설정",
|
||||
"PE.Views.TableSettings.txtNoBorders": "테두리 없음",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "취소",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "대체 텍스트",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "설명",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "시력이나인지 장애가있는 사람들에게 읽을 수있는 시각적 개체 정보의 대안적인 텍스트 기반 표현으로 이미지에있는 정보를 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ",
|
||||
|
@ -1415,13 +1379,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "전경으로 가져 오기",
|
||||
"PE.Views.Toolbar.textBar": "Bar",
|
||||
"PE.Views.Toolbar.textBold": "Bold",
|
||||
"PE.Views.Toolbar.textCancel": "취소",
|
||||
"PE.Views.Toolbar.textCharts": "차트",
|
||||
"PE.Views.Toolbar.textColumn": "Column",
|
||||
"PE.Views.Toolbar.textItalic": "Italic",
|
||||
"PE.Views.Toolbar.textLine": "Line",
|
||||
"PE.Views.Toolbar.textNewColor": "사용자 정의 색상",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "파이",
|
||||
"PE.Views.Toolbar.textPoint": "XY (분산 형)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "아래쪽 정렬",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
|
||||
"Common.UI.ComboDataView.emptyComboText": "No styles",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Add",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Cancel",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Current",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.<br>Please enter a value between 000000 and FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "New",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Version ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancel",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Send",
|
||||
"Common.Views.Comments.textAdd": "Add",
|
||||
"Common.Views.Comments.textAddComment": "Add Comment",
|
||||
|
@ -96,13 +93,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Apskatīt lietotājus un pārvaldīt dokumentu piekļuves tiesības",
|
||||
"Common.Views.Header.txtAccessRights": "Izmainīt pieejas tiesības",
|
||||
"Common.Views.Header.txtRename": "Pārdēvēt",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Cancel",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns number.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Number of Columns",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.",
|
||||
|
@ -110,19 +103,13 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Number of Rows",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Table Size",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Sadalīt šūnu",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Atcelt",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Izvēlēties dokumenta valodu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Aizvērt failu",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kodēšana",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Parole nav pareiza.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Parole",
|
||||
"Common.Views.OpenDialog.txtTitle": "Izvēlēties %1 iespējas",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Aizsargāts fails",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Lai pasargātu šo dokumentu, uzstādiet paroli",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Apstiprinājuma parole nesakrīt",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Parole",
|
||||
|
@ -144,8 +131,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Pievienot digitālo parakstu",
|
||||
"Common.Views.Protection.txtSignature": "Paraksts",
|
||||
"Common.Views.Protection.txtSignatureLine": "Paraksta līnija",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Faila nosaukums",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Faila nosaukums nedrīkst saturēt šādas zīmes:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Uz nākamo izmaiņu",
|
||||
|
@ -188,8 +173,6 @@
|
|||
"Common.Views.ReviewChanges.txtSpelling": "Pareizrakstības pārbaude",
|
||||
"Common.Views.ReviewChanges.txtTurnon": "Izmaiņu reģistrēšana",
|
||||
"Common.Views.ReviewChanges.txtView": "Attēlošanas režīms",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Treknraksts",
|
||||
"Common.Views.SignDialog.textCertificate": "Sertifikāts",
|
||||
"Common.Views.SignDialog.textChange": "Mainīt",
|
||||
|
@ -204,8 +187,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Derīgs no %1 līdz %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Fonts",
|
||||
"Common.Views.SignDialog.tipFontSize": "Fonta izmērs",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Atcelt",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Atļaut parakstītājam pievienot komentāru paraksta logā",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Informācija par parakstītāju",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-pasts",
|
||||
|
@ -727,8 +708,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Style",
|
||||
"PE.Views.ChartSettings.textSurface": "Virsma",
|
||||
"PE.Views.ChartSettings.textWidth": "Width",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Atcelt",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatīvs teksts",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Apraksts",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redze vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, automātiskajā figūrā, diagrammā vai tabulā.",
|
||||
|
@ -982,8 +961,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "View Last",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Point",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Pareizrakstības pārbaude",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancel",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Display",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link To",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Select a Place in This Document",
|
||||
|
@ -1012,8 +989,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Default Size",
|
||||
"PE.Views.ImageSettings.textSize": "Size",
|
||||
"PE.Views.ImageSettings.textWidth": "Width",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Alternatīvs teksts",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Apraksts",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redze vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, automātiskajā figūrā, diagrammā vai tabulā.",
|
||||
|
@ -1046,12 +1021,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Multiple",
|
||||
"PE.Views.ParagraphSettings.textExact": "Exactly",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "First Line",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font",
|
||||
|
@ -1123,8 +1095,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "No Line",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Wood",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Kolonnas",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Alternatīvs teksts",
|
||||
|
@ -1240,12 +1210,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Leather",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.SlideSettings.txtWood": "Wood",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Atcelt",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Nepārtraukti, līdz tiek nospiests \"Esc\"",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Rādīt uzstādījumus",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Cancel",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Ainava",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Portrets",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Height",
|
||||
|
@ -1323,8 +1289,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Set Outer Right Border Only",
|
||||
"PE.Views.TableSettings.tipTop": "Set Outer Top Border Only",
|
||||
"PE.Views.TableSettings.txtNoBorders": "No borders",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Alternatīvs teksts",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Apraksts",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redze vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, automātiskajā figūrā, diagrammā vai tabulā.",
|
||||
|
@ -1412,13 +1376,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Bring To Foreground",
|
||||
"PE.Views.Toolbar.textBar": "Bar Chart",
|
||||
"PE.Views.Toolbar.textBold": "Bold",
|
||||
"PE.Views.Toolbar.textCancel": "Cancel",
|
||||
"PE.Views.Toolbar.textCharts": "Diagrammas",
|
||||
"PE.Views.Toolbar.textColumn": "Column Chart",
|
||||
"PE.Views.Toolbar.textItalic": "Italic",
|
||||
"PE.Views.Toolbar.textLine": "Line Chart",
|
||||
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Pie Chart",
|
||||
"PE.Views.Toolbar.textPoint": "XY (Scatter) Chart",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Toevoegen",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Annuleren",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Huidig",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "De ingevoerde waarde is onjuist.<br>Voer een waarde tussen 000000 en FFFFFF in.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nieuw",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Aangedreven door",
|
||||
"Common.Views.About.txtTel": "Tel.:",
|
||||
"Common.Views.About.txtVersion": "Versie",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Annuleren",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Verzenden",
|
||||
"Common.Views.Comments.textAdd": "Toevoegen",
|
||||
"Common.Views.Comments.textAddComment": "Opmerking toevoegen",
|
||||
|
@ -99,13 +96,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren",
|
||||
"Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen",
|
||||
"Common.Views.Header.txtRename": "Hernoemen",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "U moet een geldig aantal rijen en kolommen opgeven.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Aantal kolommen",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "De maximumwaarde voor dit veld is {0}.",
|
||||
|
@ -113,19 +106,13 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Aantal rijen",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tabelgrootte",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Cel Splitsen",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Annuleren",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
|
||||
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
|
||||
"Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Beschermd bestand",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Pas een wachtwoord toe om dit document te beveiligen",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bevestig wachtwoord is niet identiek",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Wachtwoord",
|
||||
|
@ -147,8 +134,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Digitale handtekening toevoegen",
|
||||
"Common.Views.Protection.txtSignature": "Handtekening",
|
||||
"Common.Views.Protection.txtSignatureLine": "Handtekening lijn",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Bestandsnaam",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "De bestandsnaam mag geen van de volgende tekens bevatten:",
|
||||
"Common.Views.ReviewChanges.hintNext": "Naar volgende wijziging",
|
||||
|
@ -191,8 +176,6 @@
|
|||
"Common.Views.ReviewChanges.txtSpelling": "Spellingcontrole",
|
||||
"Common.Views.ReviewChanges.txtTurnon": "Wijzigingen bijhouden",
|
||||
"Common.Views.ReviewChanges.txtView": "Weergavemodus",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Vet",
|
||||
"Common.Views.SignDialog.textCertificate": "Certificaat",
|
||||
"Common.Views.SignDialog.textChange": "Wijzigen",
|
||||
|
@ -207,8 +190,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Geldig van %1 tot %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Lettertype",
|
||||
"Common.Views.SignDialog.tipFontSize": "Tekengrootte",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Annuleren",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Sta ondertekenaar toe commentaar toe te voegen in het handtekening venster.",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Ondertekenaar info",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
|
@ -736,8 +717,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Stijl",
|
||||
"PE.Views.ChartSettings.textSurface": "Oppervlak",
|
||||
"PE.Views.ChartSettings.textWidth": "Breedte",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatieve tekst",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Beschrijving",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.",
|
||||
|
@ -991,8 +970,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "Laatste weergeven",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Punt",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spellingcontrole",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annuleren",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Weergeven",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Koppelen aan",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Een positie in dit document selecteren",
|
||||
|
@ -1021,8 +998,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Standaardgrootte",
|
||||
"PE.Views.ImageSettings.textSize": "Grootte",
|
||||
"PE.Views.ImageSettings.textWidth": "Breedte",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Alternatieve tekst",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Beschrijving",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.",
|
||||
|
@ -1055,12 +1030,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Meerdere",
|
||||
"PE.Views.ParagraphSettings.textExact": "Exact",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Automatisch",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "De opgegeven tabbladen worden in dit veld weergegeven",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Allemaal hoofdletters",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dubbel doorhalen",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Eerste regel",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Lettertype",
|
||||
|
@ -1132,8 +1104,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Geen lijn",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Hout",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Kolommen",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Opvulling van tekst",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Alternatieve tekst",
|
||||
|
@ -1249,12 +1219,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Leer",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.SlideSettings.txtWood": "Hout",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Annuleren",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Herhalen tot op ESC wordt gedrukt",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Instellingen tonen",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Annuleren",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Liggend",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Staand",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Hoogte",
|
||||
|
@ -1332,8 +1298,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Alleen buitenrand rechts instellen",
|
||||
"PE.Views.TableSettings.tipTop": "Alleen buitenrand boven instellen",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Geen randen",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Annuleren",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Alternatieve tekst",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Beschrijving",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.",
|
||||
|
@ -1421,13 +1385,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Naar voorgrond brengen",
|
||||
"PE.Views.Toolbar.textBar": "Staaf",
|
||||
"PE.Views.Toolbar.textBold": "Vet",
|
||||
"PE.Views.Toolbar.textCancel": "Annuleren",
|
||||
"PE.Views.Toolbar.textCharts": "Grafieken",
|
||||
"PE.Views.Toolbar.textColumn": "Kolom",
|
||||
"PE.Views.Toolbar.textItalic": "Cursief",
|
||||
"PE.Views.Toolbar.textLine": "Lijn",
|
||||
"PE.Views.Toolbar.textNewColor": "Aangepaste kleur",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Cirkel",
|
||||
"PE.Views.Toolbar.textPoint": "Spreiding",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Onder uitlijnen",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Dodać",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Anulować",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Obecny",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Wprowadzona wartość jest nieprawidłowa.<br>Wprowadź wartość w zakresie od 000000 do FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "nowy",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "zasilany przez",
|
||||
"Common.Views.About.txtTel": "tel.:",
|
||||
"Common.Views.About.txtVersion": "Wersja",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Anulować",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Wyslać",
|
||||
"Common.Views.Comments.textAdd": "Dodać",
|
||||
"Common.Views.Comments.textAddComment": "Dodaj komentarz",
|
||||
|
@ -90,13 +87,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Wyświetl użytkowników i zarządzaj prawami dostępu do dokumentu",
|
||||
"Common.Views.Header.txtAccessRights": "Zmień prawa dostępu",
|
||||
"Common.Views.Header.txtRename": "Zmień nazwę",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Anulować",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Wklej link URL do obrazu:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "To pole jest wymagane",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Anulować",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Musisz określić poprawną liczbę wierszy i kolumn.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Ilość kolumn",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maksymalna wartość dla tego pola to {0}",
|
||||
|
@ -104,11 +97,7 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Liczba wierszy",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Rozmiar tablicy",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Podziel komórkę",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Anulować",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Wybierz język dokumentu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Anulować",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kodowanie",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Hasło",
|
||||
|
@ -120,8 +109,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Ładowanie",
|
||||
"Common.Views.Plugins.textStart": "Start",
|
||||
"Common.Views.Plugins.textStop": "Zatrzymać",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Anulować",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Nazwa pliku",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Nazwa pliku nie może zawierać żadnego z następujących znaków:",
|
||||
"PE.Controllers.LeftMenu.newDocumentTitle": "Nienazwana prezentacja",
|
||||
|
@ -626,8 +613,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Styl",
|
||||
"PE.Views.ChartSettings.textSurface": "Powierzchnia",
|
||||
"PE.Views.ChartSettings.textWidth": "Szerokość",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Anulować",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Tekst alternatywny",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Opis",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Alternatywna prezentacja wizualnych informacji o obiektach, które będą czytane osobom z wadami wzroku lub zmysłu poznawczego, aby lepiej zrozumieć, jakie informacje znajdują się na obrazie, kształtach, wykresie lub tabeli.",
|
||||
|
@ -861,8 +846,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "Pokaż ostatni",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Punkt",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Sprawdzanie pisowni",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Anulować",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Pokaż",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link do",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Wybierz miejsce w tym dokumencie",
|
||||
|
@ -891,8 +874,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Domyślny rozmiar",
|
||||
"PE.Views.ImageSettings.textSize": "Rozmiar",
|
||||
"PE.Views.ImageSettings.textWidth": "Szerokość",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Anulować",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Tekst alternatywny",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Opis",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Alternatywna prezentacja wizualnych informacji o obiektach, które będą czytane osobom z wadami wzroku lub zmysłu poznawczego, aby lepiej zrozumieć, jakie informacje znajdują się na obrazie, kształtach, wykresie lub tabeli.",
|
||||
|
@ -924,12 +905,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Mnożnik",
|
||||
"PE.Views.ParagraphSettings.textExact": "Dokładnie",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Automatyczny",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Anulować",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "W tym polu zostaną wyświetlone określone karty",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Wszystkie duże litery",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Podwójne przekreślenie",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Pierwszy wiersz",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Lewy",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Prawy",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Czcionka",
|
||||
|
@ -1000,8 +978,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Brak krawędzi",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papirus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Drewno",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Anulować",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Kolumny",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Wypełnienie tekstem",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Tekst alternatywny",
|
||||
|
@ -1106,12 +1082,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Skórzany",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papirus",
|
||||
"PE.Views.SlideSettings.txtWood": "Drewno",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Anulować",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Zapętl do momentu, aż zostanie naciśnięty klawisz \"Esc\"",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Pokaż ustawienia",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Anulować",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Krajobraz",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Portret",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Wysokość",
|
||||
|
@ -1184,8 +1156,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Ustaw tylko obramowanie prawej krawędzi",
|
||||
"PE.Views.TableSettings.tipTop": "Ustaw tylko obramowanie górnej krawędzi",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Bez krawędzi",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Anulować",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Tekst alternatywny",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Opis",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Alternatywna prezentacja wizualnych informacji o obiektach, które będą czytane osobom z wadami wzroku lub zmysłu poznawczego, aby lepiej zrozumieć, jakie informacje znajdują się na obrazie, kształtach, wykresie lub tabeli.",
|
||||
|
@ -1273,13 +1243,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Przejdź na pierwszy plan",
|
||||
"PE.Views.Toolbar.textBar": "Pasek",
|
||||
"PE.Views.Toolbar.textBold": "Pogrubione",
|
||||
"PE.Views.Toolbar.textCancel": "Anulować",
|
||||
"PE.Views.Toolbar.textCharts": "Wykresy",
|
||||
"PE.Views.Toolbar.textColumn": "Kolumna",
|
||||
"PE.Views.Toolbar.textItalic": "Kursywa",
|
||||
"PE.Views.Toolbar.textLine": "Wykres",
|
||||
"PE.Views.Toolbar.textNewColor": "Własny kolor",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Kołowe",
|
||||
"PE.Views.Toolbar.textPoint": "XY (Punktowy)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Wyrównaj do dołu",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Adicionar",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Cancelar",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Atual",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "O valor inserido está incorreto.<br>Insira um valor entre 000000 e FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Novo",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Desenvolvido por",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Versão",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Cancelar",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Enviar",
|
||||
"Common.Views.Comments.textAdd": "Adicionar",
|
||||
"Common.Views.Comments.textAddComment": "Adicionar",
|
||||
|
@ -90,13 +87,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Ver usuários e gerenciar direitos de acesso ao documento",
|
||||
"Common.Views.Header.txtAccessRights": "Alterar direitos de acesso",
|
||||
"Common.Views.Header.txtRename": "Renomear",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Colar uma URL de imagem:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Você precisa especificar números de linhas e colunas válidos.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Número de colunas",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "O valor máximo para este campo é {0}.",
|
||||
|
@ -104,11 +97,7 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Número de linhas",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tamanho da tabela",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividir célula",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Cancelar",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Selecionar idioma do documento",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Codificação",
|
||||
"Common.Views.OpenDialog.txtPassword": "Senha",
|
||||
"Common.Views.OpenDialog.txtTitle": "Escolher opções %1",
|
||||
|
@ -119,8 +108,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Carregamento",
|
||||
"Common.Views.Plugins.textStart": "Iniciar",
|
||||
"Common.Views.Plugins.textStop": "Parar",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Cancelar",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Nome do arquivo",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Nome de arquivo não pode conter os seguintes caracteres:",
|
||||
"PE.Controllers.LeftMenu.newDocumentTitle": "Apresentação sem nome",
|
||||
|
@ -625,8 +612,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Estilo",
|
||||
"PE.Views.ChartSettings.textSurface": "Superfície",
|
||||
"PE.Views.ChartSettings.textWidth": "Largura",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Texto Alternativo",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrição",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.",
|
||||
|
@ -860,8 +845,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "Visualizar último",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Ponto",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Verificação ortográfica",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Cancelar",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Exibir",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Vincular a",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Selecionar um lugar neste documento",
|
||||
|
@ -890,8 +873,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Tamanho padrão",
|
||||
"PE.Views.ImageSettings.textSize": "Tamanho",
|
||||
"PE.Views.ImageSettings.textWidth": "Largura",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Texto Alternativo",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Descrição",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.",
|
||||
|
@ -923,12 +904,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Múltiplo",
|
||||
"PE.Views.ParagraphSettings.textExact": "Exatamente",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Automático",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "As abas especificadas aparecerão neste campo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Todas maiúsculas",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Tachado duplo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Primeira linha",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerda",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Direita",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Fonte",
|
||||
|
@ -999,8 +977,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Sem linha",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papiro",
|
||||
"PE.Views.ShapeSettings.txtWood": "Madeira",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Colunas",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Preenchimento de texto",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Texto Alternativo",
|
||||
|
@ -1105,12 +1081,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Couro",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papiro",
|
||||
"PE.Views.SlideSettings.txtWood": "Madeira",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Cancelar",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Loop contínuo até \"Esc\" ser pressionado",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Exibir configurações",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Cancelar",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Paisagem",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Retrato ",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Altura",
|
||||
|
@ -1183,8 +1155,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Definir apenas borda direita externa",
|
||||
"PE.Views.TableSettings.tipTop": "Definir apenas borda superior externa",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Sem bordas",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Cancelar",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Texto Alternativo",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Descrição",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.",
|
||||
|
@ -1272,13 +1242,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Trazer para primeiro plano",
|
||||
"PE.Views.Toolbar.textBar": "Gráfico de barras",
|
||||
"PE.Views.Toolbar.textBold": "Negrito",
|
||||
"PE.Views.Toolbar.textCancel": "Cancelar",
|
||||
"PE.Views.Toolbar.textCharts": "Gráficos",
|
||||
"PE.Views.Toolbar.textColumn": "Gráfico de coluna",
|
||||
"PE.Views.Toolbar.textItalic": "Itálico",
|
||||
"PE.Views.Toolbar.textLine": "Gráfico de linha",
|
||||
"PE.Views.Toolbar.textNewColor": "Cor personalizada",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Gráfico de pizza",
|
||||
"PE.Views.Toolbar.textPoint": "Gráfico de pontos",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Alinhar à parte inferior",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Без стилей",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Добавить",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Отмена",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Текущий",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Введено некорректное значение.<br>Пожалуйста, введите значение от 000000 до FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Новый",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Разработано",
|
||||
"Common.Views.About.txtTel": "тел.: ",
|
||||
"Common.Views.About.txtVersion": "Версия ",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Отмена",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Отправить",
|
||||
"Common.Views.Comments.textAdd": "Добавить",
|
||||
"Common.Views.Comments.textAddComment": "Добавить",
|
||||
|
@ -100,13 +97,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
|
||||
"Common.Views.Header.txtAccessRights": "Изменить права доступа",
|
||||
"Common.Views.Header.txtRename": "Переименовать",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Необходимо указать допустимое количество строк и столбцов.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Количество столбцов",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Максимальное значение для этого поля - {0}.",
|
||||
|
@ -114,20 +107,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Количество строк",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Размер таблицы",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Разделить ячейку",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Отмена",
|
||||
"Common.Views.LanguageDialog.btnOk": "ОК",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Выбрать язык документа",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Закрыть файл",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Кодировка",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Указан неверный пароль.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
||||
"Common.Views.OpenDialog.txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен.",
|
||||
"Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtDescription": "Задайте пароль, чтобы защитить этот документ",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Пароль",
|
||||
|
@ -149,8 +136,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "Добавить цифровую подпись",
|
||||
"Common.Views.Protection.txtSignature": "Подпись",
|
||||
"Common.Views.Protection.txtSignatureLine": "Добавить строку подписи",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.RenameDialog.okButtonText": "ОК",
|
||||
"Common.Views.RenameDialog.textName": "Имя файла",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Имя файла не должно содержать следующих символов: ",
|
||||
"Common.Views.ReviewChanges.hintNext": "К следующему изменению",
|
||||
|
@ -206,8 +191,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "Папка для сохранения",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Загрузка",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Выбрать источник данных",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.SignDialog.okButtonText": "ОК",
|
||||
"Common.Views.SignDialog.textBold": "Полужирный",
|
||||
"Common.Views.SignDialog.textCertificate": "Сертификат",
|
||||
"Common.Views.SignDialog.textChange": "Изменить",
|
||||
|
@ -222,8 +205,6 @@
|
|||
"Common.Views.SignDialog.textValid": "Действителен с %1 по %2",
|
||||
"Common.Views.SignDialog.tipFontName": "Шрифт",
|
||||
"Common.Views.SignDialog.tipFontSize": "Размер шрифта",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Отмена",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "ОК",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Разрешить подписывающему добавлять примечания в окне подписи",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "Сведения о подписывающем",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "Адрес электронной почты",
|
||||
|
@ -937,16 +918,12 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Стиль",
|
||||
"PE.Views.ChartSettings.textSurface": "Поверхность",
|
||||
"PE.Views.ChartSettings.textWidth": "Ширина",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "ОК",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Альтернативный текст",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Описание",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Заголовок",
|
||||
"PE.Views.ChartSettingsAdvanced.textTitle": "Диаграмма - дополнительные параметры",
|
||||
"PE.Views.DateTimeDialog.cancelButtonText": "Отмена",
|
||||
"PE.Views.DateTimeDialog.confirmDefault": "Задать формат по умолчанию для {0}: \"{1}\"",
|
||||
"PE.Views.DateTimeDialog.okButtonText": "Ок",
|
||||
"PE.Views.DateTimeDialog.textDefault": "Установить по умолчанию",
|
||||
"PE.Views.DateTimeDialog.textFormat": "Форматы",
|
||||
"PE.Views.DateTimeDialog.textLang": "Язык",
|
||||
|
@ -1227,7 +1204,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtWin": "как Windows",
|
||||
"PE.Views.HeaderFooterDialog.applyAllText": "Применить ко всем",
|
||||
"PE.Views.HeaderFooterDialog.applyText": "Применить",
|
||||
"PE.Views.HeaderFooterDialog.cancelButtonText": "Отмена",
|
||||
"PE.Views.HeaderFooterDialog.diffLanguage": "Формат даты должен использовать тот же язык, что и образец слайдов.<br>Чтобы изменить образец, вместо кнопки 'Применить' нажмите кнопку 'Применить ко всем'",
|
||||
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Внимание",
|
||||
"PE.Views.HeaderFooterDialog.textDateTime": "Дата и время",
|
||||
|
@ -1240,8 +1216,6 @@
|
|||
"PE.Views.HeaderFooterDialog.textSlideNum": "Номер слайда",
|
||||
"PE.Views.HeaderFooterDialog.textTitle": "Параметры верхнего и нижнего колонтитулов",
|
||||
"PE.Views.HeaderFooterDialog.textUpdate": "Обновлять автоматически",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Отмена",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Отображать",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Связать с",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Выбрать место в этом документе",
|
||||
|
@ -1280,8 +1254,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "Поворот",
|
||||
"PE.Views.ImageSettings.textSize": "Размер",
|
||||
"PE.Views.ImageSettings.textWidth": "Ширина",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Альтернативный текст",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Описание",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
|
||||
|
@ -1319,13 +1291,10 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Множитель",
|
||||
"PE.Views.ParagraphSettings.textExact": "Точно",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Авто",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "В этом поле появятся позиции табуляции, которые вы зададите",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "ОК",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Все прописные",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Двойное зачёркивание",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndent": "Отступы",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Первая строка",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Слева",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Междустрочный интервал",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Справа",
|
||||
|
@ -1417,8 +1386,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Без обводки",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Папирус",
|
||||
"PE.Views.ShapeSettings.txtWood": "Дерево",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Колонки",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Поля вокруг текста",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Альтернативный текст",
|
||||
|
@ -1541,12 +1508,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Кожа",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Папирус",
|
||||
"PE.Views.SlideSettings.txtWood": "Дерево",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Отмена",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "ОК",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Непрерывный цикл до нажатия клавиши 'Esc'",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Параметры показа слайдов",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Отмена",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Альбомная",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Книжная",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Высота",
|
||||
|
@ -1627,8 +1590,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Задать только внешнюю правую границу",
|
||||
"PE.Views.TableSettings.tipTop": "Задать только внешнюю верхнюю границу",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Без границ",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Отмена",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Альтернативный текст",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Описание",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
|
||||
|
@ -1720,13 +1681,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Перенести на передний план",
|
||||
"PE.Views.Toolbar.textBar": "Линейчатая",
|
||||
"PE.Views.Toolbar.textBold": "Полужирный",
|
||||
"PE.Views.Toolbar.textCancel": "Отмена",
|
||||
"PE.Views.Toolbar.textCharts": "Диаграммы",
|
||||
"PE.Views.Toolbar.textColumn": "Гистограмма",
|
||||
"PE.Views.Toolbar.textItalic": "Курсив",
|
||||
"PE.Views.Toolbar.textLine": "График",
|
||||
"PE.Views.Toolbar.textNewColor": "Пользовательский цвет",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Круговая",
|
||||
"PE.Views.Toolbar.textPoint": "Точечная",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Выровнять по нижнему краю",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Pridať",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Aktuálny",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte číselnú hodnotu medzi 000000 a FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Nový",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Poháňaný ",
|
||||
"Common.Views.About.txtTel": "tel.:",
|
||||
"Common.Views.About.txtVersion": "Verzia",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Poslať",
|
||||
"Common.Views.Comments.textAdd": "Pridať",
|
||||
"Common.Views.Comments.textAddComment": "Pridať komentár",
|
||||
|
@ -96,13 +93,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom",
|
||||
"Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva",
|
||||
"Common.Views.Header.txtRename": "Premenovať",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Vložte obrázok URL:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Musíte zadať platné číslo riadkov a stĺpcov.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Počet stĺpcov",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}.",
|
||||
|
@ -110,19 +103,13 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Počet riadkov",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Veľkosť tabuľky",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Rozdeliť bunku",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Zrušiť",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Heslo",
|
||||
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú",
|
||||
"Common.Views.PasswordDialog.txtPassword": "Heslo",
|
||||
"Common.Views.PluginDlg.textLoading": "Nahrávanie",
|
||||
|
@ -138,8 +125,6 @@
|
|||
"Common.Views.Protection.txtDeletePwd": "Odstrániť heslo",
|
||||
"Common.Views.Protection.txtInvisibleSignature": "Pridajte digitálny podpis",
|
||||
"Common.Views.Protection.txtSignature": "Podpis",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Názov súboru",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:",
|
||||
"Common.Views.ReviewChanges.strFast": "Rýchly",
|
||||
|
@ -164,8 +149,6 @@
|
|||
"Common.Views.ReviewPopover.textCancel": "Zrušiť",
|
||||
"Common.Views.ReviewPopover.textClose": "Zatvoriť",
|
||||
"Common.Views.ReviewPopover.textEdit": "OK",
|
||||
"Common.Views.SignDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.SignDialog.okButtonText": "OK",
|
||||
"Common.Views.SignDialog.textBold": "Tučné",
|
||||
"Common.Views.SignDialog.textCertificate": "Certifikát",
|
||||
"Common.Views.SignDialog.textChange": "Zmeniť",
|
||||
|
@ -176,8 +159,6 @@
|
|||
"Common.Views.SignDialog.textUseImage": "alebo kliknite na položku 'Vybrať obrázok' ak chcete použiť obrázok ako podpis",
|
||||
"Common.Views.SignDialog.tipFontName": "Názov písma",
|
||||
"Common.Views.SignDialog.tipFontSize": "Veľkosť písma",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Zrušiť",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "Povoliť signatárovi pridať komentár do podpisového dialógu",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||
"Common.Views.SignSettingsDialog.textInfoName": "Názov",
|
||||
|
@ -690,8 +671,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Štýl",
|
||||
"PE.Views.ChartSettings.textSurface": "Povrch",
|
||||
"PE.Views.ChartSettings.textWidth": "Šírka",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatívny text",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Popis",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ",
|
||||
|
@ -933,8 +912,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Bod",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Zrušiť",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Zobraziť",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Odkaz na",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Vybrať miesto v tomto dokumente",
|
||||
|
@ -963,8 +940,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť",
|
||||
"PE.Views.ImageSettings.textSize": "Veľkosť",
|
||||
"PE.Views.ImageSettings.textWidth": "Šírka",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Alternatívny text",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Popis",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ",
|
||||
|
@ -997,12 +972,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Násobky",
|
||||
"PE.Views.ParagraphSettings.textExact": "Presne",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Automaticky",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všetko veľkým",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prvý riadok",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Písmo",
|
||||
|
@ -1073,8 +1045,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Bez čiary",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Drevo",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Stĺpce",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Textová výplň",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Alternatívny text",
|
||||
|
@ -1182,12 +1152,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Koža/kožený",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
|
||||
"PE.Views.SlideSettings.txtWood": "Drevo",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Zrušiť",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Opakujte cyklus kým nestlačíte 'Esc'",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Ukázať Nastavenia",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Zrušiť",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Na šírku",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Na výšku",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Výška",
|
||||
|
@ -1265,8 +1231,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Nastaviť len pravé vonkajšie orámovanie",
|
||||
"PE.Views.TableSettings.tipTop": "Nastaviť len horné vonkajšie orámovanie",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Bez orámovania",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Zrušiť",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Alternatívny text",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Popis",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ",
|
||||
|
@ -1354,13 +1318,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Premiestniť do popredia",
|
||||
"PE.Views.Toolbar.textBar": "Pruhový graf",
|
||||
"PE.Views.Toolbar.textBold": "Tučné",
|
||||
"PE.Views.Toolbar.textCancel": "Zrušiť",
|
||||
"PE.Views.Toolbar.textCharts": "Grafy",
|
||||
"PE.Views.Toolbar.textColumn": "Stĺpec",
|
||||
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
||||
"PE.Views.Toolbar.textLine": "Čiara/líniový graf",
|
||||
"PE.Views.Toolbar.textNewColor": "Vlastná farba",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Koláčový graf",
|
||||
"PE.Views.Toolbar.textPoint": "Bodový graf",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Zarovnať dole",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Dodaj",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Prekliči",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "trenuten",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Vnesena vrednost je nepravilna.<br>Prosim vnesite vrednost med 000000 in FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Novo",
|
||||
|
@ -43,8 +42,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Poganja",
|
||||
"Common.Views.About.txtTel": "tel.: ",
|
||||
"Common.Views.About.txtVersion": "Različica",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Prekliči",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Pošlji",
|
||||
"Common.Views.Comments.textAdd": "Dodaj",
|
||||
"Common.Views.Comments.textAddComment": "Dodaj",
|
||||
|
@ -72,13 +69,9 @@
|
|||
"Common.Views.ExternalDiagramEditor.textSave": "Shrani & Zapusti",
|
||||
"Common.Views.ExternalDiagramEditor.textTitle": "Urejevalec grafa",
|
||||
"Common.Views.Header.textBack": "Pojdi v dokumente",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Prekliči",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Prilepi URL slike:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "To polje je obvezno",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "To polje mora biti URL v \"http://www.example.com\" formatu",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Prekliči",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Določiti morate veljavna števila vrstic in stolpcev.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Število stolpcev",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Maksimalna vrednost za to polje je {0}.",
|
||||
|
@ -356,8 +349,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtInput": "Nadomestni vhod",
|
||||
"PE.Views.FileMenuPanels.Settings.txtLast": "Poglej zadnjega",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Točka",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Prekliči",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Zaslon",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Povezava k",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Izberi kraj v tem dokumentu",
|
||||
|
@ -384,8 +375,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Privzeta velikost",
|
||||
"PE.Views.ImageSettings.textSize": "Velikost",
|
||||
"PE.Views.ImageSettings.textWidth": "Širina",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Prekliči",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textHeight": "Višina",
|
||||
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Nenehna razmerja",
|
||||
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "Privzeta velikost",
|
||||
|
@ -410,12 +399,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Večkratno",
|
||||
"PE.Views.ParagraphSettings.textExact": "Točno",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Samodejno",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Prekliči",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Določeni zavihki se bodo pojavili v tem polju",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Vse z veliko",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojno prečrtanje",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prva vrsta",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Levo",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Desno",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Pisava",
|
||||
|
@ -485,8 +471,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Ni črte",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papirus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Les",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Prekliči",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Oblazinjenje besedila",
|
||||
"PE.Views.ShapeSettingsAdvanced.textArrows": "Puščice",
|
||||
"PE.Views.ShapeSettingsAdvanced.textBeginSize": "Začetna velikost",
|
||||
|
@ -583,8 +567,6 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Usnje",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papirus",
|
||||
"PE.Views.SlideSettings.txtWood": "Les",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Prekliči",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Višina",
|
||||
"PE.Views.SlideSizeSettings.textSlideSize": "Velikost diapozitiva",
|
||||
"PE.Views.SlideSizeSettings.textTitle": "Nastavitve velikosti diapozitiva",
|
||||
|
@ -653,8 +635,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Nastavi le zunanjo desno mejo",
|
||||
"PE.Views.TableSettings.tipTop": "Nastavi le zunanjo zgornjo mejo",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Ni mej",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Prekliči",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textBottom": "Dno",
|
||||
"PE.Views.TableSettingsAdvanced.textCheckMargins": "Uporabi privzete meje",
|
||||
"PE.Views.TableSettingsAdvanced.textDefaultMargins": "Privzete meje",
|
||||
|
@ -725,12 +705,10 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Premakni v ospredje",
|
||||
"PE.Views.Toolbar.textBar": "Stolpični grafikon",
|
||||
"PE.Views.Toolbar.textBold": "Krepko",
|
||||
"PE.Views.Toolbar.textCancel": "Prekliči",
|
||||
"PE.Views.Toolbar.textColumn": "Stolpični grafikon",
|
||||
"PE.Views.Toolbar.textItalic": "Poševno",
|
||||
"PE.Views.Toolbar.textLine": "Vrstični grafikon",
|
||||
"PE.Views.Toolbar.textNewColor": "Barva po meri",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Tortni grafikon",
|
||||
"PE.Views.Toolbar.textPoint": "Točkovni grafikon",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Poravnaj dno",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Ekle",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "İptal Et",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "mevcut",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Girilen değer yanlış. <br> Lütfen 000000 ile FFFFFF arasında değer giriniz.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Yeni",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Powered by",
|
||||
"Common.Views.About.txtTel": "tel:",
|
||||
"Common.Views.About.txtVersion": "Versiyon",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "İptal Et",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "TAMAM",
|
||||
"Common.Views.Chat.textSend": "Gönder",
|
||||
"Common.Views.Comments.textAdd": "Ekle",
|
||||
"Common.Views.Comments.textAddComment": "Yorum Ekle",
|
||||
|
@ -90,13 +87,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Kullanıcıları görüntüle ve belge erişim haklarını yönet",
|
||||
"Common.Views.Header.txtAccessRights": "Erişim haklarını değiştir",
|
||||
"Common.Views.Header.txtRename": "Yeniden adlandır",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "İptal Et",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Resim URL'sini yapıştır:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Bu alan gereklidir",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Bu alan \"http://www.example.com\" formatında URL olmalıdır",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "İptal Et",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "TAMAM",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Geçerli satır ve sütun sayısı belirtmelisiniz.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Sütun Sayısı",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Bu alan için maksimum değer: {0}.",
|
||||
|
@ -104,12 +97,8 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Sıra Sayısı",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Tablo Boyutu",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Hücreyi Böl",
|
||||
"Common.Views.LanguageDialog.btnCancel": "İptal",
|
||||
"Common.Views.LanguageDialog.btnOk": "Tamam",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Belge dilini seçin",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "İptal",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Dosyayı Kapat",
|
||||
"Common.Views.OpenDialog.okButtonText": "TAMAM",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Kodlama",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Şifre",
|
||||
|
@ -121,8 +110,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Yükleniyor",
|
||||
"Common.Views.Plugins.textStart": "Başlat",
|
||||
"Common.Views.Plugins.textStop": "Durdur",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "İptal",
|
||||
"Common.Views.RenameDialog.okButtonText": "Tamam",
|
||||
"Common.Views.RenameDialog.textName": "Dosya adı",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Dosya adı aşağıdaki karakterlerden herhangi birini içeremez:",
|
||||
"Common.Views.ReviewChanges.strFast": "Hızlı",
|
||||
|
@ -652,8 +639,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Stil",
|
||||
"PE.Views.ChartSettings.textSurface": "Yüzey",
|
||||
"PE.Views.ChartSettings.textWidth": "Genişlik",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "İptal",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "Tamam",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatif Metin",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Açıklama",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.",
|
||||
|
@ -891,8 +876,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Nokta",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Yazım denetimi",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "İptal Et",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "TAMAM",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Görüntüle",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Şuna bağlantıla:",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Bu Dökümanda Yer Seçin",
|
||||
|
@ -922,8 +905,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Varsayılan Boyut",
|
||||
"PE.Views.ImageSettings.textSize": "Boyut",
|
||||
"PE.Views.ImageSettings.textWidth": "Genişlik",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "İptal Et",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "TAMAM",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Alternatif Metin",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Açıklama",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.",
|
||||
|
@ -955,12 +936,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Çoklu",
|
||||
"PE.Views.ParagraphSettings.textExact": "Tam olarak",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Otomatik",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "İptal Et",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Belirtilen sekmeler bu alanda görünecektir",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "TAMAM",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tüm başlıklar",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Üstü çift çizili",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "İlk Satır",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Sol",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Sağ",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Yazı Tipi",
|
||||
|
@ -1031,8 +1009,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Çizgi yok",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Papirus",
|
||||
"PE.Views.ShapeSettings.txtWood": "Ahşap",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "İptal Et",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "TAMAM",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Sütunlar",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Metin Dolgulama",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Alternatif Metin",
|
||||
|
@ -1137,12 +1113,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Deri",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Papirus",
|
||||
"PE.Views.SlideSettings.txtWood": "Ahşap",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "İptal",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "Tamam",
|
||||
"PE.Views.SlideshowSettings.textLoop": "'Esc' tuşuna basılana kadar loop devam eder",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Ayarları göster",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "İptal Et",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "TAMAM",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Yatay",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Portre",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Yükseklik",
|
||||
|
@ -1215,8 +1187,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Sadece Dış Sağ Sınırı Belirle",
|
||||
"PE.Views.TableSettings.tipTop": "Sadece Dış Üst Sınırı Belirle",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Sınır yok",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "İptal Et",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "TAMAM",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Alternatif Metin",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Açıklama",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.",
|
||||
|
@ -1304,13 +1274,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Önplana Getir",
|
||||
"PE.Views.Toolbar.textBar": "Çubuk grafik",
|
||||
"PE.Views.Toolbar.textBold": "Kalın",
|
||||
"PE.Views.Toolbar.textCancel": "İptal Et",
|
||||
"PE.Views.Toolbar.textCharts": "Grafikler",
|
||||
"PE.Views.Toolbar.textColumn": "Sütun grafik",
|
||||
"PE.Views.Toolbar.textItalic": "İtalik",
|
||||
"PE.Views.Toolbar.textLine": "Çizgi grafiği",
|
||||
"PE.Views.Toolbar.textNewColor": "Özel Renk",
|
||||
"PE.Views.Toolbar.textOK": "TAMAM",
|
||||
"PE.Views.Toolbar.textPie": "Dilim grafik",
|
||||
"PE.Views.Toolbar.textPoint": "Nokta grafiği",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Alta Hizala",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Додати",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Скасувати",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "В данний час",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Введене значення невірно. <br> Будь ласка, введіть значення між 000000 та FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Нове",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Під керуванням",
|
||||
"Common.Views.About.txtTel": "Тел.:",
|
||||
"Common.Views.About.txtVersion": "Версія",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Скасувати",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OК",
|
||||
"Common.Views.Chat.textSend": "Надіслати",
|
||||
"Common.Views.Comments.textAdd": "Додати",
|
||||
"Common.Views.Comments.textAddComment": "Добавити коментар",
|
||||
|
@ -90,13 +87,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Переглядайте користувачів та керуйте правами доступу до документів",
|
||||
"Common.Views.Header.txtAccessRights": "Змінити права доступу",
|
||||
"Common.Views.Header.txtRename": "Перейменування",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Скасувати",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OК",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Скасувати",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OК",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Вам потрібно вказати дійсні рядки та номери стовпців.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Номер стовпчиків",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Максимальне значення для цього поля - {0}.",
|
||||
|
@ -104,11 +97,7 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Номер рядків",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Розмір таблиці",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Розщеплені клітини",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Скасувати",
|
||||
"Common.Views.LanguageDialog.btnOk": "Ок",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Виберіть мову документа",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Скасувати",
|
||||
"Common.Views.OpenDialog.okButtonText": "OК",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Кодування",
|
||||
"Common.Views.OpenDialog.txtPassword": "Пароль",
|
||||
"Common.Views.OpenDialog.txtTitle": "Виберіть параметри% 1",
|
||||
|
@ -119,8 +108,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Завантаження",
|
||||
"Common.Views.Plugins.textStart": "Початок",
|
||||
"Common.Views.Plugins.textStop": "Зупинитись",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Скасувати",
|
||||
"Common.Views.RenameDialog.okButtonText": "Ок",
|
||||
"Common.Views.RenameDialog.textName": "Ім'я файлу",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Ім'я файлу не може містити жодного з наступних символів:",
|
||||
"PE.Controllers.LeftMenu.newDocumentTitle": "Презентація без назви",
|
||||
|
@ -624,8 +611,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Стиль",
|
||||
"PE.Views.ChartSettings.textSurface": "Поверхня",
|
||||
"PE.Views.ChartSettings.textWidth": "Ширина",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "Ок",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Альтернативний текст",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Опис",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.",
|
||||
|
@ -859,8 +844,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "Переглянути останнє",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Визначити",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Перевірка орфографії",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Скасувати",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OК",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Дісплей",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "З'єднатися з",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Обрати місце у цьому документі",
|
||||
|
@ -889,8 +872,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Розмір за умовчанням",
|
||||
"PE.Views.ImageSettings.textSize": "Розмір",
|
||||
"PE.Views.ImageSettings.textWidth": "Ширина",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OК",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Альтернативний текст",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Опис",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.",
|
||||
|
@ -922,12 +903,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "Багаторазовий",
|
||||
"PE.Views.ParagraphSettings.textExact": "Точно",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Авто",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Вказані вкладки з'являться в цьому полі",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OК",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Всі шапки",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Перша лінія",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Лівий",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Право",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт",
|
||||
|
@ -998,8 +976,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Немає лінії",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Папірус",
|
||||
"PE.Views.ShapeSettings.txtWood": "Дерево",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OК",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Колонки",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Текстове накладення тексту",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Альтернативний текст",
|
||||
|
@ -1104,12 +1080,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Шкіра",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Папірус",
|
||||
"PE.Views.SlideSettings.txtWood": "Дерево",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Скасувати",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "Ок",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Цикл буде безперезвним до натискання 'Esc' ",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Показати налаштування",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Скасувати",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OК",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "ландшафт",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Портрет",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Висота",
|
||||
|
@ -1182,8 +1154,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Встановити лише зовнішній правий кордон",
|
||||
"PE.Views.TableSettings.tipTop": "Встановити лише зовнішній верхній край",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Немає кордонів",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Скасувати",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OК",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Альтернативний текст",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Опис",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.",
|
||||
|
@ -1271,13 +1241,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Перенести на передній план",
|
||||
"PE.Views.Toolbar.textBar": "Вставити",
|
||||
"PE.Views.Toolbar.textBold": "Жирний",
|
||||
"PE.Views.Toolbar.textCancel": "Скасувати",
|
||||
"PE.Views.Toolbar.textCharts": "Діаграми",
|
||||
"PE.Views.Toolbar.textColumn": "Колона",
|
||||
"PE.Views.Toolbar.textItalic": "Курсив",
|
||||
"PE.Views.Toolbar.textLine": "Лінія",
|
||||
"PE.Views.Toolbar.textNewColor": "Власний колір",
|
||||
"PE.Views.Toolbar.textOK": "OК",
|
||||
"PE.Views.Toolbar.textPie": "Пиріг",
|
||||
"PE.Views.Toolbar.textPoint": "XY (розсіювання)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Вирівняти знизу",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
|
||||
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "Thêm",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "Hủy",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "Hiện tại",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "Giá trị đã nhập không chính xác.<br>Nhập một giá trị thuộc từ 000000 đến FFFFFF.",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "Mới",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "Được hỗ trợ bởi",
|
||||
"Common.Views.About.txtTel": "ĐT.: ",
|
||||
"Common.Views.About.txtVersion": "Phiên bản",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "Hủy",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "OK",
|
||||
"Common.Views.Chat.textSend": "Gửi",
|
||||
"Common.Views.Comments.textAdd": "Thêm",
|
||||
"Common.Views.Comments.textAddComment": "Thêm bình luận",
|
||||
|
@ -90,13 +87,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "Xem người dùng và quản lý quyền truy cập tài liệu",
|
||||
"Common.Views.Header.txtAccessRights": "Thay đổi quyền truy cập",
|
||||
"Common.Views.Header.txtRename": "Đổi tên",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Hủy",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Dán URL hình ảnh:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Trường bắt buộc",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Trường này phải là một URL có định dạng \"http://www.example.com\"",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "Hủy",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "OK",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Bạn cần xác định số hàng và cột hợp lệ.",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "Số cột",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "Giá trị lớn nhất cho trường này là {0}.",
|
||||
|
@ -104,11 +97,7 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "Số hàng",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "Kích thước bảng",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Tách ô",
|
||||
"Common.Views.LanguageDialog.btnCancel": "Hủy",
|
||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Chọn ngôn ngữ tài liệu",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "Hủy",
|
||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Mã hóa",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Mật khẩu không đúng.",
|
||||
"Common.Views.OpenDialog.txtPassword": "Mật khẩu",
|
||||
|
@ -120,8 +109,6 @@
|
|||
"Common.Views.Plugins.textLoading": "Đang tải",
|
||||
"Common.Views.Plugins.textStart": "Bắt đầu",
|
||||
"Common.Views.Plugins.textStop": "Dừng",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "Hủy",
|
||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||
"Common.Views.RenameDialog.textName": "Tên file",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "Tên file không được chứa bất kỳ ký tự nào sau đây:",
|
||||
"PE.Controllers.LeftMenu.newDocumentTitle": "Bản trình chiếu không tên",
|
||||
|
@ -625,8 +612,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "Kiểu",
|
||||
"PE.Views.ChartSettings.textSurface": "Bề mặt",
|
||||
"PE.Views.ChartSettings.textWidth": "Chiều rộng",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Văn bản thay thế",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Mô tả",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "Miêu tả thay thế dưới dạng văn bản thông tin đối tượng trực quan, sẽ được đọc cho những người bị suy giảm thị lực hoặc nhận thức để giúp họ hiểu rõ hơn về những thông tin có trong hình ảnh, autoshape, biểu đồ hoặc bảng.",
|
||||
|
@ -860,8 +845,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtLast": "Xem cuối",
|
||||
"PE.Views.FileMenuPanels.Settings.txtPt": "Điểm",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kiểm tra chính tả",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Hủy",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Hiển thị",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Liên kết tới",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Chọn một vị trí trong tài liệu này",
|
||||
|
@ -890,8 +873,6 @@
|
|||
"PE.Views.ImageSettings.textOriginalSize": "Kích thước mặc định",
|
||||
"PE.Views.ImageSettings.textSize": "Kích thước",
|
||||
"PE.Views.ImageSettings.textWidth": "Chiều rộng",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "Văn bản thay thế",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Mô tả",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "Miêu tả thay thế dưới dạng văn bản thông tin đối tượng trực quan, sẽ được đọc cho những người bị suy giảm thị lực hoặc nhận thức để giúp họ hiểu rõ hơn về những thông tin có trong hình ảnh, autoshape, biểu đồ hoặc bảng.",
|
||||
|
@ -923,12 +904,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "nhiều",
|
||||
"PE.Views.ParagraphSettings.textExact": "Chính xác",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "Tự động",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Các tab được chỉ định sẽ xuất hiện trong trường này",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tất cả Drop cap",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Gạch đôi giữa chữ",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Dòng đầu tiên",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Trái",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Bên phải",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Phông chữ",
|
||||
|
@ -999,8 +977,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "Không đường kẻ",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "Giấy cói",
|
||||
"PE.Views.ShapeSettings.txtWood": "Gỗ",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "Cột",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "Thêm padding cho văn bản",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "Văn bản thay thế",
|
||||
|
@ -1105,12 +1081,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Da",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "Giấy cói",
|
||||
"PE.Views.SlideSettings.txtWood": "Gỗ",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "Hủy",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideshowSettings.textLoop": "Vòng lặp liên tục cho đến khi 'Esc' được ấn",
|
||||
"PE.Views.SlideshowSettings.textTitle": "Hiển thị cài đặt",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "Hủy",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "OK",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "Nằm ngang",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "Thẳng đứng",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "Chiều cao",
|
||||
|
@ -1183,8 +1155,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "Chỉ đặt viền ngoài bên phải",
|
||||
"PE.Views.TableSettings.tipTop": "Chỉ đặt viền ngoài trên cùng",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Không viền",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "Hủy",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "OK",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Văn bản thay thế",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Mô tả",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Miêu tả thay thế dưới dạng văn bản thông tin đối tượng trực quan, sẽ được đọc cho những người bị suy giảm thị lực hoặc nhận thức để giúp họ hiểu rõ hơn về những thông tin có trong hình ảnh, autoshape, biểu đồ hoặc bảng.",
|
||||
|
@ -1272,13 +1242,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "Đưa lên Cận cảnh",
|
||||
"PE.Views.Toolbar.textBar": "Cột",
|
||||
"PE.Views.Toolbar.textBold": "Đậm",
|
||||
"PE.Views.Toolbar.textCancel": "Hủy",
|
||||
"PE.Views.Toolbar.textCharts": "Biểu đồ",
|
||||
"PE.Views.Toolbar.textColumn": "Cột",
|
||||
"PE.Views.Toolbar.textItalic": "Nghiêng",
|
||||
"PE.Views.Toolbar.textLine": "Đường kẻ",
|
||||
"PE.Views.Toolbar.textNewColor": "Màu tùy chỉnh",
|
||||
"PE.Views.Toolbar.textOK": "OK",
|
||||
"PE.Views.Toolbar.textPie": "Hình bánh",
|
||||
"PE.Views.Toolbar.textPoint": "XY (Phân tán)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "Căn dưới cùng",
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
||||
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
||||
"Common.UI.ExtendedColorDialog.addButtonText": "添加",
|
||||
"Common.UI.ExtendedColorDialog.cancelButtonText": "取消",
|
||||
"Common.UI.ExtendedColorDialog.textCurrent": "当前",
|
||||
"Common.UI.ExtendedColorDialog.textHexErr": "输入的值不正确。<br>请输入000000和FFFFFF之间的值。",
|
||||
"Common.UI.ExtendedColorDialog.textNew": "新",
|
||||
|
@ -48,8 +47,6 @@
|
|||
"Common.Views.About.txtPoweredBy": "技术支持",
|
||||
"Common.Views.About.txtTel": "电话:",
|
||||
"Common.Views.About.txtVersion": "版本",
|
||||
"Common.Views.AdvancedSettingsWindow.cancelButtonText": "取消",
|
||||
"Common.Views.AdvancedSettingsWindow.okButtonText": "确定",
|
||||
"Common.Views.Chat.textSend": "发送",
|
||||
"Common.Views.Comments.textAdd": "添加",
|
||||
"Common.Views.Comments.textAddComment": "发表评论",
|
||||
|
@ -99,13 +96,9 @@
|
|||
"Common.Views.Header.tipViewUsers": "查看用户和管理文档访问权限",
|
||||
"Common.Views.Header.txtAccessRights": "更改访问权限",
|
||||
"Common.Views.Header.txtRename": "重命名",
|
||||
"Common.Views.ImageFromUrlDialog.cancelButtonText": "取消",
|
||||
"Common.Views.ImageFromUrlDialog.okButtonText": "确定",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "粘贴图片网址:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "这是必填栏",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "该字段应该是“http://www.example.com”格式的URL",
|
||||
"Common.Views.InsertTableDialog.cancelButtonText": "取消",
|
||||
"Common.Views.InsertTableDialog.okButtonText": "确定",
|
||||
"Common.Views.InsertTableDialog.textInvalidRowsCols": "您需要指定有效的行和列号",
|
||||
"Common.Views.InsertTableDialog.txtColumns": "列数",
|
||||
"Common.Views.InsertTableDialog.txtMaxText": "该字段的最大值为{0}。",
|
||||
|
@ -113,20 +106,14 @@
|
|||
"Common.Views.InsertTableDialog.txtRows": "行数",
|
||||
"Common.Views.InsertTableDialog.txtTitle": "表格大小",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "拆分单元格",
|
||||
"Common.Views.LanguageDialog.btnCancel": "取消",
|
||||
"Common.Views.LanguageDialog.btnOk": "确定",
|
||||
"Common.Views.LanguageDialog.labelSelect": "选择文档语言",
|
||||
"Common.Views.OpenDialog.cancelButtonText": "取消",
|
||||
"Common.Views.OpenDialog.closeButtonText": "关闭文件",
|
||||
"Common.Views.OpenDialog.okButtonText": "确定",
|
||||
"Common.Views.OpenDialog.txtEncoding": "编码",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "密码错误",
|
||||
"Common.Views.OpenDialog.txtPassword": "密码",
|
||||
"Common.Views.OpenDialog.txtProtected": "在您输入密码和打开文件后,该文件的当前密码将被重置。",
|
||||
"Common.Views.OpenDialog.txtTitle": "选择%1个选项",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "受保护的文件",
|
||||
"Common.Views.PasswordDialog.cancelButtonText": "取消",
|
||||
"Common.Views.PasswordDialog.okButtonText": "确定",
|
||||
"Common.Views.PasswordDialog.txtDescription": "设置密码以保护此文档",
|
||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "确认密码不一致",
|
||||
"Common.Views.PasswordDialog.txtPassword": "密码",
|
||||
|
@ -148,8 +135,6 @@
|
|||
"Common.Views.Protection.txtInvisibleSignature": "添加数字签名",
|
||||
"Common.Views.Protection.txtSignature": "签名",
|
||||
"Common.Views.Protection.txtSignatureLine": "添加签名行",
|
||||
"Common.Views.RenameDialog.cancelButtonText": "取消",
|
||||
"Common.Views.RenameDialog.okButtonText": "确定",
|
||||
"Common.Views.RenameDialog.textName": "文件名",
|
||||
"Common.Views.RenameDialog.txtInvalidName": "文件名不能包含以下任何字符:",
|
||||
"Common.Views.ReviewChanges.hintNext": "下一个变化",
|
||||
|
@ -204,8 +189,6 @@
|
|||
"Common.Views.SaveAsDlg.textTitle": "保存文件夹",
|
||||
"Common.Views.SelectFileDlg.textLoading": "载入中",
|
||||
"Common.Views.SelectFileDlg.textTitle": "选择数据源",
|
||||
"Common.Views.SignDialog.cancelButtonText": "取消",
|
||||
"Common.Views.SignDialog.okButtonText": "确定",
|
||||
"Common.Views.SignDialog.textBold": "加粗",
|
||||
"Common.Views.SignDialog.textCertificate": "证书",
|
||||
"Common.Views.SignDialog.textChange": "修改",
|
||||
|
@ -220,8 +203,6 @@
|
|||
"Common.Views.SignDialog.textValid": "从%1到%2有效",
|
||||
"Common.Views.SignDialog.tipFontName": "字体名称",
|
||||
"Common.Views.SignDialog.tipFontSize": "字体大小",
|
||||
"Common.Views.SignSettingsDialog.cancelButtonText": "取消",
|
||||
"Common.Views.SignSettingsDialog.okButtonText": "确定",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "允许签名者在签名对话框中添加注释",
|
||||
"Common.Views.SignSettingsDialog.textInfo": "签名者信息",
|
||||
"Common.Views.SignSettingsDialog.textInfoEmail": "电子邮件",
|
||||
|
@ -935,8 +916,6 @@
|
|||
"PE.Views.ChartSettings.textStyle": "类型",
|
||||
"PE.Views.ChartSettings.textSurface": "平面",
|
||||
"PE.Views.ChartSettings.textWidth": "宽度",
|
||||
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "取消",
|
||||
"PE.Views.ChartSettingsAdvanced.okButtonText": "确定",
|
||||
"PE.Views.ChartSettingsAdvanced.textAlt": "可选文本",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "描述",
|
||||
"PE.Views.ChartSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。",
|
||||
|
@ -1204,8 +1183,6 @@
|
|||
"PE.Views.FileMenuPanels.Settings.txtPt": "点",
|
||||
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼写检查",
|
||||
"PE.Views.FileMenuPanels.Settings.txtWin": "作为Windows",
|
||||
"PE.Views.HyperlinkSettingsDialog.cancelButtonText": "取消",
|
||||
"PE.Views.HyperlinkSettingsDialog.okButtonText": "确定",
|
||||
"PE.Views.HyperlinkSettingsDialog.strDisplay": "展示",
|
||||
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "链接到",
|
||||
"PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "在本文档中选择一个地方",
|
||||
|
@ -1244,8 +1221,6 @@
|
|||
"PE.Views.ImageSettings.textRotation": "旋转",
|
||||
"PE.Views.ImageSettings.textSize": "大小",
|
||||
"PE.Views.ImageSettings.textWidth": "宽度",
|
||||
"PE.Views.ImageSettingsAdvanced.cancelButtonText": "取消",
|
||||
"PE.Views.ImageSettingsAdvanced.okButtonText": "确定",
|
||||
"PE.Views.ImageSettingsAdvanced.textAlt": "替代文本",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltDescription": "说明",
|
||||
"PE.Views.ImageSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。",
|
||||
|
@ -1283,12 +1258,9 @@
|
|||
"PE.Views.ParagraphSettings.textAuto": "多",
|
||||
"PE.Views.ParagraphSettings.textExact": "精确地",
|
||||
"PE.Views.ParagraphSettings.txtAutoText": "自动",
|
||||
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "取消",
|
||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "指定的选项卡将显示在此字段中",
|
||||
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "确定",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大写",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "双删除线",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "第一行",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "对",
|
||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字体",
|
||||
|
@ -1367,8 +1339,6 @@
|
|||
"PE.Views.ShapeSettings.txtNoBorders": "没有线",
|
||||
"PE.Views.ShapeSettings.txtPapyrus": "纸莎草",
|
||||
"PE.Views.ShapeSettings.txtWood": "木头",
|
||||
"PE.Views.ShapeSettingsAdvanced.cancelButtonText": "取消",
|
||||
"PE.Views.ShapeSettingsAdvanced.okButtonText": "确定",
|
||||
"PE.Views.ShapeSettingsAdvanced.strColumns": "列",
|
||||
"PE.Views.ShapeSettingsAdvanced.strMargins": "文字填充",
|
||||
"PE.Views.ShapeSettingsAdvanced.textAlt": "可选文本",
|
||||
|
@ -1489,12 +1459,8 @@
|
|||
"PE.Views.SlideSettings.txtLeather": "Leather",
|
||||
"PE.Views.SlideSettings.txtPapyrus": "纸莎草",
|
||||
"PE.Views.SlideSettings.txtWood": "木头",
|
||||
"PE.Views.SlideshowSettings.cancelButtonText": "取消",
|
||||
"PE.Views.SlideshowSettings.okButtonText": "确定",
|
||||
"PE.Views.SlideshowSettings.textLoop": "连续循环,直到按“Esc”",
|
||||
"PE.Views.SlideshowSettings.textTitle": "显示设置",
|
||||
"PE.Views.SlideSizeSettings.cancelButtonText": "取消",
|
||||
"PE.Views.SlideSizeSettings.okButtonText": "确定",
|
||||
"PE.Views.SlideSizeSettings.strLandscape": "横向",
|
||||
"PE.Views.SlideSizeSettings.strPortrait": "点",
|
||||
"PE.Views.SlideSizeSettings.textHeight": "高度",
|
||||
|
@ -1575,8 +1541,6 @@
|
|||
"PE.Views.TableSettings.tipRight": "仅设置外边界",
|
||||
"PE.Views.TableSettings.tipTop": "仅限外部边框",
|
||||
"PE.Views.TableSettings.txtNoBorders": "没有边框",
|
||||
"PE.Views.TableSettingsAdvanced.cancelButtonText": "取消",
|
||||
"PE.Views.TableSettingsAdvanced.okButtonText": "确定",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "替代文本",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "说明",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。",
|
||||
|
@ -1665,13 +1629,11 @@
|
|||
"PE.Views.Toolbar.textArrangeFront": "放到最上面",
|
||||
"PE.Views.Toolbar.textBar": "条",
|
||||
"PE.Views.Toolbar.textBold": "加粗",
|
||||
"PE.Views.Toolbar.textCancel": "取消",
|
||||
"PE.Views.Toolbar.textCharts": "图表",
|
||||
"PE.Views.Toolbar.textColumn": "列",
|
||||
"PE.Views.Toolbar.textItalic": "斜体",
|
||||
"PE.Views.Toolbar.textLine": "线",
|
||||
"PE.Views.Toolbar.textNewColor": "自定义颜色",
|
||||
"PE.Views.Toolbar.textOK": "确定",
|
||||
"PE.Views.Toolbar.textPie": "派",
|
||||
"PE.Views.Toolbar.textPoint": "XY(散射)",
|
||||
"PE.Views.Toolbar.textShapeAlignBottom": "底部对齐",
|
||||
|
|
|
@ -3438,7 +3438,6 @@ define([
|
|||
warnMergeLostData : 'Operation can destroy data in the selected cells.<br>Continue?',
|
||||
textWarning : 'Warning',
|
||||
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 409',
|
||||
textCancel : 'Cancel',
|
||||
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 device fonts, the saved font will be used when it is available.<br>Do you want to continue?',
|
||||
textSymbols : 'Symbols',
|
||||
textFraction : 'Fraction',
|
||||
|
|
|
@ -84,7 +84,7 @@ define([
|
|||
'</div>',
|
||||
'<div class="separator horizontal" style="width:100%"></div>',
|
||||
'<div class="footer right" style="margin-left:-15px;">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right:10px;">', t.okButtonText, '</button>',
|
||||
'<button class="btn normal dlg-btn primary" result="ok">', t.okButtonText, '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">', t.cancelButtonText, '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
@ -276,7 +276,6 @@ define([
|
|||
return false;
|
||||
},
|
||||
|
||||
cancelButtonText : "Cancel",
|
||||
capAnd : "And",
|
||||
capCondition1 : "equals",
|
||||
capCondition10 : "does not end with",
|
||||
|
@ -312,7 +311,8 @@ define([
|
|||
cls : 'filter-dlg',
|
||||
contentTemplate : '',
|
||||
title : t.txtTitle,
|
||||
items : []
|
||||
items : [],
|
||||
buttons: ['ok', 'cancel']
|
||||
}, options);
|
||||
|
||||
this.template = options.template || [
|
||||
|
@ -332,11 +332,7 @@ define([
|
|||
'</div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal" style="width:100%"></div>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right:10px;">', t.okButtonText, '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">', t.cancelButtonText, '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal" style="width:100%"></div>'
|
||||
].join('');
|
||||
|
||||
this.api = options.api;
|
||||
|
@ -461,8 +457,6 @@ define([
|
|||
return false;
|
||||
},
|
||||
|
||||
cancelButtonText : "Cancel",
|
||||
okButtonText : 'OK',
|
||||
txtTitle : "Top 10 AutoFilter",
|
||||
textType : 'Show',
|
||||
txtTop : 'Top',
|
||||
|
@ -548,7 +542,6 @@ define([
|
|||
this.btnOk = new Common.UI.Button({
|
||||
cls: 'btn normal dlg-btn primary',
|
||||
caption : this.okButtonText,
|
||||
style: 'margin-right:10px;',
|
||||
enableToggle: false,
|
||||
allowDepress: false
|
||||
});
|
||||
|
@ -1406,13 +1399,11 @@ define([
|
|||
Common.Utils.InternalSettings.set('sse-settings-size-filter-window', size);
|
||||
},
|
||||
|
||||
okButtonText : 'Ok',
|
||||
btnCustomFilter : 'Custom Filter',
|
||||
textSelectAll : 'Select All',
|
||||
txtTitle : 'Filter',
|
||||
warnNoSelected : 'You must choose at least one value',
|
||||
textWarning : 'Warning',
|
||||
cancelButtonText : 'Cancel',
|
||||
textEmptyItem : '{Blanks}',
|
||||
txtEmpty : 'Enter cell\'s filter',
|
||||
txtSortLow2High : 'Sort Lowest to Highest',
|
||||
|
|
|
@ -51,7 +51,9 @@ define([
|
|||
options: {
|
||||
width : 350,
|
||||
cls : 'modal-dlg',
|
||||
modal : false
|
||||
modal : false,
|
||||
buttons: ['ok', 'cancel'],
|
||||
footerCls: 'right'
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
@ -62,10 +64,6 @@ define([
|
|||
this.template = [
|
||||
'<div class="box">',
|
||||
'<div id="id-dlg-cell-range" class="input-row" style="margin-bottom: 5px;"></div>',
|
||||
'</div>',
|
||||
'<div class="footer right">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + this.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + this.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
].join('');
|
||||
|
||||
|
@ -170,7 +168,6 @@ define([
|
|||
},
|
||||
|
||||
txtTitle : 'Select Data Range',
|
||||
textCancel : 'Cancel',
|
||||
txtEmpty : 'This field is required',
|
||||
txtInvalidRange: 'ERROR! Invalid cells range',
|
||||
errorMaxRows: 'ERROR! The maximum number of data series per chart is 255.',
|
||||
|
|
|
@ -1651,7 +1651,6 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template'
|
|||
textYAxisTitle: 'Y Axis Title',
|
||||
txtEmpty: 'This field is required',
|
||||
textInvalidRange: 'ERROR! Invalid cells range',
|
||||
cancelButtonText: 'Cancel',
|
||||
textTypeStyle: 'Chart Type, Style &<br/>Data Range',
|
||||
textChartElementsLegend: 'Chart Elements &<br/>Chart Legend',
|
||||
textLayout: 'Layout',
|
||||
|
|
|
@ -298,8 +298,6 @@ define([ 'text!spreadsheeteditor/main/app/template/FieldSettingsDialog.templa
|
|||
},
|
||||
|
||||
textTitle: 'Field Settings',
|
||||
textCancel: 'Cancel',
|
||||
textOk: 'OK',
|
||||
strSubtotals: 'Subtotals',
|
||||
strLayout: 'Layout',
|
||||
txtSourceName: 'Source name: ',
|
||||
|
|
|
@ -1126,7 +1126,7 @@ define([
|
|||
|
||||
render: function(node) {
|
||||
var me = this;
|
||||
var $markup = $(me.template());
|
||||
var $markup = $(me.template({scope: me}));
|
||||
|
||||
// server info
|
||||
this.lblPlacement = $markup.findById('#id-info-placement');
|
||||
|
|
|
@ -146,11 +146,7 @@ define([
|
|||
'</div></div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px; width: 86px;">' + me.textOk + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + me.textCancel + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('')
|
||||
}, options);
|
||||
|
||||
|
@ -501,8 +497,6 @@ define([
|
|||
textSeparator: 'Use 1000 separator',
|
||||
textFormat: 'Format',
|
||||
textSymbols: 'Symbols',
|
||||
textCancel: 'Cancel',
|
||||
textOk: 'OK',
|
||||
txtGeneral: 'General',
|
||||
txtNumber: 'Number',
|
||||
txtCustom: 'Custom',
|
||||
|
|
|
@ -62,7 +62,8 @@ define([
|
|||
cls : 'formula-dlg',
|
||||
contentTemplate : '',
|
||||
title : t.txtTitle,
|
||||
items : []
|
||||
items : [],
|
||||
buttons: ['ok', 'cancel']
|
||||
}, options);
|
||||
|
||||
this.template = options.template || [
|
||||
|
@ -78,12 +79,7 @@ define([
|
|||
|
||||
'</div>',
|
||||
'</div>',
|
||||
|
||||
'<div class="separator horizontal"/>',
|
||||
'<div class="footer center">',
|
||||
'<button class="btn normal dlg-btn primary" result="ok" style="margin-right: 10px;">' + t.okButtonText + '</button>',
|
||||
'<button class="btn normal dlg-btn" result="cancel">' + t.cancelButtonText + '</button>',
|
||||
'</div>'
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('');
|
||||
|
||||
this.api = options.api;
|
||||
|
@ -375,8 +371,6 @@ define([
|
|||
}
|
||||
},
|
||||
|
||||
cancelButtonText: 'Cancel',
|
||||
okButtonText: 'Ok',
|
||||
textGroupDescription: 'Select Function Group',
|
||||
textListDescription: 'Select Function',
|
||||
sDescription: 'Description',
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue