Merge branch 'release/v7.3.0' into develop

This commit is contained in:
Maxim Kadushkin 2022-12-27 21:52:16 +03:00
commit 744526841a
329 changed files with 9668 additions and 2952 deletions

View file

@ -28,12 +28,12 @@
html {
height: 100%;
width: 100%;
font-family: Arial, Helvetica, "Helvetica Neue", sans-serif;
}
body {
background: #fff;
color: #333;
font-family: Arial, Tahoma,sans-serif;
font-size: 12px;
font-weight: normal;
height: 100%;
@ -45,58 +45,157 @@ body {
.form {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
div {
margin: 0;
padding: 0;
}
.app-error-panel {
position: absolute;
width: 100%;
height: 100%;
top: 0;
background-color: #f4f4f4;
z-index: 10;
}
.message-block {
display: inline-block;
vertical-align: middle;
width: 100%;
}
.message-inner {
width: 550px;
margin: auto;
padding: 30px;
background-color: #e3e3e3;
text-align: center;
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
}
.title {
font-size: 24px;
margin: 0 0 14px;
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 160%;
display: flex;
align-items: center;
text-align: center;
color: #333333;
}
.text {
font-size: 16px;
.description {
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 160%;
display: flex;
align-items: center;
text-align: center;
margin-top: 8px;
color: #333333;
}
.icon {
margin-top: 49px;
width: 34px;
height: 48px;
}
.icon-succes {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAwCAYAAAB0WahSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAENSURBVHgB7ZnBDYJAEEX/oN4pQTvQmxcTO7EEsQLtQKyA2AF2QOLFm5ZAB3InZB0WRDOJXCQbNPMSkmX3wGMyn8NAYEywHMMUES+nfPlwRwzKNxReUqolro4F3slYZjZkib2VIByBQUBhksEBtgAodjBYwYwiMuuFsSeUT8oSwSEs43Mh7rzMvOema4nqmU31fQ89QUUkKiLpjciw7bD5xnQEHc706ew3KtL2Bl2jzSrR1Eg0NRJtVommRqKpkWizSjQ1Ek2NRJtV8n+p+bafNDUSbVaJikhURFKK2FmnHb46ppo+v0Ru1W6xN8F8DEfUU+dtdYNTb34KeDyGTkGDGWvFcAu3hElKiXL8/gBwm2fFT+wjuQAAAABJRU5ErkJggg==");
}
.icon-error {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAwCAYAAAB0WahSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEBSURBVHgB7ZfRDYIwEIavtAM4QkfpA3uoE6gTiJswCIl99NEJSNyAAUhqz0BiGoOoVyjmvoTk6EP7c/ffAQDM0snz3OEFkciAiQBF2bg0DBmfGPIb8yZjVgEz02cuo5gBFHsomJmqqt5XhepFN2YfnqzMYhC9m1+1EfWn4dAZyXTN4EAbNWyISCYjLCRk0CNTdE0Pd00ImzXk/7rmVz9x14SwWUNYSAgLCUEhDQbGmBVMzPOZKOSKgVJqDxMjpVx3ocXfCeODc7dwaNu2tNY2EBHMhH/wnQ8LvHfObR6T04vBhSPMw8lP8EJiVNe11VrfhBBYMw3xwYxf/LX1IkpcuAMGtltNGCBFYAAAAABJRU5ErkJggg==");
}
#error .icon {
margin-bottom: 107px;
}
.spiner-image {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDQ0IiBzdHJva2Utd2lkdGg9IjEuNSIgcj0iNy4yNSIgc3Ryb2tlLWRhc2hhcnJheT0iMTYwJSwgNDAlIiAvPjwvc3ZnPg==");
margin-top: 49px;
width: 48px;
height: 48px;
}
#spiner {
animation-duration: .8s;
animation-name: rotation;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes rotation {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}
.button {
margin-top: 50px;
cursor: pointer;
display: inline-block;
border-width: 0px;
border-radius: 3px;
font-weight: 600;
line-height: 133%;
letter-spacing: 0.04em;
padding: 19px 24px;
text-align: center;
text-transform: uppercase;
}
button:disabled, button[disabled]{
cursor: default;
}
.button.gray {
color: #AAAAAA;
background: #444444;
}
.button.orange {
color: #FFFFFF;
border: 1px solid #FF6F3D;
background: #FF6F3D;
}
.button.orange:not(:disabled):hover {
background: #ff7a4b;
}
.button.orange:disabled, .button.orange[disabled]{
background: #EDC2B3;
border: 1px solid #EDC2B3;
cursor: default;
}
</style>
</head>
<body>
<div id="progress">
Converting your file so you can edit it...
<a id="btn_end" style="display: none;">
<button type="button">Click here to open the converted file</button>
</a>
<div class="form">
<div id="progress">
<div class="content">
<div class="title">Converting your file so you can edit it...</div>
<i id="spiner" class="spiner-image"></i>
<button class="button orange" disabled>Open converted file</button>
</div>
</div>
<div id="success" style="display: none;">
<div class="content">
<div class="title">Converting your file so you can edit it...</div>
<i class="icon icon-succes"></i>
<button class="button orange" id="btn_end">Open converted file</button>
</div>
</div>
<div id="error" style="display: none;">
<div class="content">
<div class="title">Conversion failed</div>
<div class="description">Sorry, we weren't able to convert the file for editing.</div>
<i class="icon icon-error"></i>
</div>
</div>
</div>
</div>
<div id="error" style="display: none;">
Conversion failed<br/>Sorry, we weren't able to convert the file for editing.<br/>Try again Go back
</div>
<script type="text/javascript" language="javascript">
function redirect(url) {
@ -140,10 +239,9 @@ div {
}
function success(url) {
// redirect(url);
let btn = document.getElementById('btn_end');
btn.style.display = 'block';
btn.onclick = function() {
document.getElementById('progress').style.display = 'none';
document.getElementById('success').style.display = 'block';
document.getElementById('btn_end').onclick = function() {
redirect(url);
};
}

View file

@ -202,6 +202,13 @@
text-overflow: ellipsis;
}
}
.separator {
height: 22px;
margin: 0 9px;
border-left: 1px solid @border-divider-ie;
border-left: 1px solid @border-divider;
}
}
.margin-right-small {

View file

@ -311,7 +311,10 @@ define([
var $list = this.cmpEl.find('ul');
if ($list.hasClass('menu-absolute')) {
var offset = this.cmpEl.offset();
$list.css({left: offset.left, top: offset.top + this.cmpEl.outerHeight() + 2});
var left = offset.left;
if (left + $list.outerWidth()>Common.Utils.innerWidth())
left += (this.cmpEl.outerWidth() - $list.outerWidth());
$list.css({left: left, top: offset.top + this.cmpEl.outerHeight() + 2});
} else if ($list.hasClass('menu-aligned')) {
var offset = this.cmpEl.offset();
$list.toggleClass('show-top', offset.top + this.cmpEl.outerHeight() + $list.outerHeight() > Common.Utils.innerHeight());
@ -710,8 +713,8 @@ define([
this.options.updateFormControl.call(this, this._selectedItem);
},
setValue: function(value) {
Common.UI.ComboBox.prototype.setValue.call(this, value);
setValue: function(value, defValue) {
Common.UI.ComboBox.prototype.setValue.call(this, value, defValue);
if (this.options.updateFormControl)
this.options.updateFormControl.call(this, this._selectedItem);
},

View file

@ -716,6 +716,14 @@ define([
}
},
getChecked: function() {
for (var i=0; i<this.items.length; i++) {
var item = this.items[i];
if (item.isChecked && item.isChecked())
return item;
}
},
clearAll: function() {
_.each(this.items, function(item){
if (item.setChecked)

View file

@ -56,7 +56,8 @@ define([
maxlength : undefined,
placeHolder : '',
spellcheck : false,
disabled: false
disabled: false,
resize: false
},
template: _.template([
@ -133,6 +134,7 @@ define([
this._input.on('blur', _.bind(this.onInputChanged, this));
this._input.on('keydown', _.bind(this.onKeyDown, this));
if (this.maxLength) this._input.attr('maxlength', this.maxLength);
if (!this.resize) this._input.css('resize', 'none');
if (this.disabled)
this.setDisabled(this.disabled);
@ -140,6 +142,9 @@ define([
me.rendered = true;
if (me.value)
me.setValue(me.value);
return this;
},

View file

@ -62,7 +62,8 @@ define([
'btn-save-coauth': 'coauth',
'btn-synch': 'synch' };
var nativevars;
var nativevars,
helpUrl;
if ( !!native ) {
native.features = native.features || {};
@ -236,6 +237,188 @@ define([
}
}
const _checkHelpAvailable = function () {
const me = this;
const build_url = function (arg1, arg2, arg3) {
const re_ls = /\/$/;
return (re_ls.test(arg1) ? arg1 : arg1 + '/') + arg2 + arg3;
}
fetch(build_url('resources/help/', Common.Locale.getDefaultLanguage(), '/Contents.json'))
.then(function (response) {
if ( response.ok ) {
/* local help avail */
fetch(build_url('resources/help/', Common.Locale.getCurrentLanguage(), '/Contents.json'))
.then(function (response){
if ( response.ok )
helpUrl = build_url('resources/help/', Common.Locale.getCurrentLanguage(), '');
})
.catch(function (e) {
helpUrl = build_url('resources/help/', Common.Locale.getDefaultLanguage(), '');
})
}
}).catch(function (e) {
if ( me.helpUrl() ) {
fetch(build_url(me.helpUrl(), Common.Locale.getDefaultLanguage(), '/Contents.json'))
.then(function (response) {
if ( response.ok ) {
/* remote help avail */
fetch(build_url(me.helpUrl(), Common.Locale.getCurrentLanguage(), '/Contents.json'))
.then(function (response) {
if ( response.ok ) {
helpUrl = build_url(me.helpUrl(), Common.Locale.getCurrentLanguage(), '');
}
})
.catch(function (e) {
helpUrl = build_url(me.helpUrl(), Common.Locale.getDefaultLanguage(), '');
});
}
})
}
});
}
const _onAppReady = function (opts) {
_.extend(config, opts);
!!native && native.execCommand('doc:onready', '');
$('.toolbar').addClass('editor-native-color');
}
const _onDocumentReady = function () {
if ( config.isEdit ) {
function get_locked_message (t) {
switch (t) {
// case Asc.c_oAscLocalRestrictionType.Nosafe:
case Asc.c_oAscLocalRestrictionType.ReadOnly:
return Common.Locale.get("tipFileReadOnly",{name:"Common.Translation", default: "Document is read only. You can make changes and save its local copy later."});
default: return Common.Locale.get("tipFileLocked",{name:"Common.Translation", default: "Document is locked for editing. You can make changes and save its local copy later."});
}
}
const header = webapp.getController('Viewport').getView('Common.Views.Header');
const api = webapp.getController('Main').api;
const locktype = api.asc_getLocalRestrictions ? api.asc_getLocalRestrictions() : Asc.c_oAscLocalRestrictionType.None;
if ( Asc.c_oAscLocalRestrictionType.None !== locktype ) {
features.readonly = true;
header.setDocumentReadOnly(true);
api.asc_setLocalRestrictions(Asc.c_oAscLocalRestrictionType.None);
(new Common.UI.SynchronizeTip({
extCls: 'no-arrow',
placement: 'bottom',
target: $('.toolbar'),
text: get_locked_message(locktype),
showLink: false,
})).on('closeclick', function () {
this.close();
}).show();
native.execCommand('webapps:features', JSON.stringify(features));
api.asc_registerCallback('asc_onDocumentName', function () {
if ( features.readonly ) {
if ( api.asc_getLocalRestrictions() == Asc.c_oAscLocalRestrictionType.None ) {
features.readonly = false;
header.setDocumentReadOnly(false);
native.execCommand('webapps:features', JSON.stringify(features));
}
}
});
}
_checkHelpAvailable.call(this);
}
}
const _onHidePreloader = function (mode) {
features.viewmode = !mode.isEdit;
features.crypted = mode.isCrypted;
native.execCommand('webapps:features', JSON.stringify(features));
titlebuttons = {};
if ( mode.isEdit ) {
var header = webapp.getController('Viewport').getView('Common.Views.Header');
{
header.btnHome = (new Common.UI.Button({
cls: 'btn-header',
iconCls: 'toolbar__icon icon--inverse btn-home',
visible: false,
hint: 'Show Main window',
dataHint:'0',
dataHintDirection: 'right',
dataHintOffset: '10, -18',
dataHintTitle: 'K'
})).render($('#box-document-title #slot-btn-dt-home'));
titlebuttons['home'] = {btn: header.btnHome};
header.btnHome.on('click', function (e) {
native.execCommand('title:button', JSON.stringify({click: "home"}));
});
$('#id-box-doc-name').on({
'dblclick': function (e) {
native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mousedown': function (e) {
native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mousemove': function (e) {
native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mouseup': function (e) {
native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
}
});
}
if (!!header.btnSave) {
titlebuttons['save'] = {btn: header.btnSave};
var iconname = /\s?([^\s]+)$/.exec(titlebuttons.save.btn.$icon.attr('class'));
!!iconname && iconname.length && (titlebuttons.save.icon = btnsave_icons[iconname]);
}
if (!!header.btnPrint)
titlebuttons['print'] = {btn: header.btnPrint};
if (!!header.btnPrintQuick) {
titlebuttons['quickprint'] = {
btn: header.btnPrintQuick,
visible: header.btnPrintQuick.isVisible(),
};
}
if (!!header.btnUndo)
titlebuttons['undo'] = {btn: header.btnUndo};
if (!!header.btnRedo)
titlebuttons['redo'] = {btn: header.btnRedo};
for (var i in titlebuttons) {
titlebuttons[i].btn.options.signals = ['disabled'];
titlebuttons[i].btn.on('disabled', _onTitleButtonDisabled.bind(this, i));
}
if (!!titlebuttons.save) {
titlebuttons.save.btn.options.signals.push('icon:changed');
titlebuttons.save.btn.on('icon:changed', _onSaveIconChanged.bind(this));
}
}
if ( !!config.callback_editorconfig ) {
config.callback_editorconfig();
delete config.callback_editorconfig;
}
if ( native.features.singlewindow !== undefined ) {
// $('#box-document-title .hedset')[native.features.singlewindow ? 'hide' : 'show']();
!!titlebuttons.home && titlebuttons.home.btn.setVisible(native.features.singlewindow);
}
}
return {
init: function (opts) {
_.extend(config, opts);
@ -244,136 +427,13 @@ define([
let is_win_xp = nativevars && nativevars.os === 'winxp';
Common.UI.Themes.setAvailable(!is_win_xp);
Common.NotificationCenter.on('app:ready', function (opts) {
_.extend(config, opts);
!!native && native.execCommand('doc:onready', '');
$('.toolbar').addClass('editor-native-color');
});
Common.NotificationCenter.on('document:ready', function () {
if ( config.isEdit ) {
function get_locked_message (t) {
switch (t) {
// case Asc.c_oAscLocalRestrictionType.Nosafe:
case Asc.c_oAscLocalRestrictionType.ReadOnly:
return Common.Locale.get("tipFileReadOnly",{name:"Common.Translation", default: "Document is read only. You can make changes and save its local copy later."});
default: return Common.Locale.get("tipFileLocked",{name:"Common.Translation", default: "Document is locked for editing. You can make changes and save its local copy later."});
}
}
const header = webapp.getController('Viewport').getView('Common.Views.Header');
const api = webapp.getController('Main').api;
const locktype = api.asc_getLocalRestrictions ? api.asc_getLocalRestrictions() : Asc.c_oAscLocalRestrictionType.None;
if ( Asc.c_oAscLocalRestrictionType.None !== locktype ) {
features.readonly = true;
header.setDocumentReadOnly(true);
api.asc_setLocalRestrictions(Asc.c_oAscLocalRestrictionType.None);
(new Common.UI.SynchronizeTip({
extCls: 'no-arrow',
placement: 'bottom',
target: $('.toolbar'),
text: get_locked_message(locktype),
showLink: false,
})).on('closeclick', function () {
this.close();
}).show();
}
}
});
Common.NotificationCenter.on('app:face', function (mode) {
features.viewmode = !mode.isEdit;
features.crypted = mode.isCrypted;
native.execCommand('webapps:features', JSON.stringify(features));
titlebuttons = {};
if ( mode.isEdit ) {
var header = webapp.getController('Viewport').getView('Common.Views.Header');
{
header.btnHome = (new Common.UI.Button({
cls: 'btn-header',
iconCls: 'toolbar__icon icon--inverse btn-home',
visible: false,
hint: 'Show Main window',
dataHint:'0',
dataHintDirection: 'right',
dataHintOffset: '10, -18',
dataHintTitle: 'K'
})).render($('#box-document-title #slot-btn-dt-home'));
titlebuttons['home'] = {btn: header.btnHome};
header.btnHome.on('click', function (e) {
native.execCommand('title:button', JSON.stringify({click: "home"}));
});
$('#id-box-doc-name').on({
'dblclick': function (e) {
native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mousedown': function (e) {
native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mousemove': function (e) {
native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mouseup': function (e) {
native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
}
});
}
if (!!header.btnSave) {
titlebuttons['save'] = {btn: header.btnSave};
var iconname = /\s?([^\s]+)$/.exec(titlebuttons.save.btn.$icon.attr('class'));
!!iconname && iconname.length && (titlebuttons.save.icon = btnsave_icons[iconname]);
}
if (!!header.btnPrint)
titlebuttons['print'] = {btn: header.btnPrint};
if (!!header.btnPrintQuick) {
titlebuttons['quickprint'] = {
btn: header.btnPrintQuick,
visible: header.btnPrintQuick.isVisible(),
};
}
if (!!header.btnUndo)
titlebuttons['undo'] = {btn: header.btnUndo};
if (!!header.btnRedo)
titlebuttons['redo'] = {btn: header.btnRedo};
for (var i in titlebuttons) {
titlebuttons[i].btn.options.signals = ['disabled'];
titlebuttons[i].btn.on('disabled', _onTitleButtonDisabled.bind(this, i));
}
if (!!titlebuttons.save) {
titlebuttons.save.btn.options.signals.push('icon:changed');
titlebuttons.save.btn.on('icon:changed', _onSaveIconChanged.bind(this));
}
}
if ( !!config.callback_editorconfig ) {
config.callback_editorconfig();
delete config.callback_editorconfig;
}
if ( native.features.singlewindow !== undefined ) {
// $('#box-document-title .hedset')[native.features.singlewindow ? 'hide' : 'show']();
!!titlebuttons.home && titlebuttons.home.btn.setVisible(native.features.singlewindow);
}
});
Common.NotificationCenter.on({
'app:ready': _onAppReady,
'document:ready': _onDocumentReady.bind(this),
'app:face': _onHidePreloader.bind(this),
'modal:show': _onModalDialog.bind(this, 'open'),
'modal:close': _onModalDialog.bind(this, 'close'),
'modal:hide': _onModalDialog.bind(this, 'hide'),
'uitheme:changed' : function (name) {
if (Common.localStorage.getBool('ui-theme-use-system', false)) {
native.execCommand("uitheme:changed", JSON.stringify({name:'theme-system'}));
@ -449,6 +509,9 @@ define([
}
},
helpUrl: function () {
if ( helpUrl )
return helpUrl;
if ( !!nativevars && nativevars.helpUrl ) {
var webapp = window.SSE ? 'spreadsheeteditor' :
window.PE ? 'presentationeditor' : 'documenteditor';
@ -457,6 +520,9 @@ define([
return undefined;
},
isHelpAvailable: function () {
return !!helpUrl;
},
getDefaultPrinterName: function () {
return nativevars ? nativevars.defaultPrinterName : '';
},

View file

@ -324,7 +324,7 @@ Common.UI.HintManager = new(function() {
index++;
}
var title = el.attr('data-hint-title');
if (!title) {
if (!title && !(index > _arrLetters.length)) {
el.attr('data-hint-title', _arrLetters[index].toUpperCase());
index++;
}

View file

@ -147,6 +147,23 @@ define([
},
onAppReady: function (config) {
var me = this;
(new Promise(function (accept, reject) {
accept();
})).then(function(){
me.onChangeProtectDocument();
Common.NotificationCenter.on('protect:doclock', _.bind(me.onChangeProtectDocument, me));
});
},
onChangeProtectDocument: function(props) {
if (!props) {
var docprotect = this.getApplication().getController('DocProtection');
props = docprotect ? docprotect.getDocProps() : null;
}
if (props && this.view) {
this.view._state.docProtection = props;
}
},
addPassword: function() {

View file

@ -1053,12 +1053,13 @@ define([
Common.Utils.lockControls(Common.enumLock.docLockReview, props.isReviewOnly, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]});
Common.Utils.lockControls(Common.enumLock.docLockComments, props.isCommentsOnly, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]});
}
if (this.appConfig.canReview) {
if (!this.appConfig.isReviewOnly) {
// protection in document is more important than permissions.review, call asc_SetLocalTrackRevisions even if canReview is false
if (props.isReviewOnly) {
this.onTurnPreview(true);
this.api.asc_SetLocalTrackRevisions(true);
this.onApiShowChange();
} else if (this._state.prevReviewProtected) {
this.onTurnPreview(false);
this.api.asc_SetLocalTrackRevisions(false);
this.onApiShowChange();
}
this._state.prevReviewProtected = props.isReviewOnly;

View file

@ -3,6 +3,7 @@
<label id="search-adv-title"></label>
<div id="search-btn-close"></div>
</div>
<div id="search-container">
<div id="search-adv-settings">
<table cols="1">
<tbody>
@ -60,4 +61,5 @@
</div>
<div id="search-results" class="ps-container oo">
</div>
</div>
</div>

View file

@ -87,10 +87,17 @@ define([
}
if (me.appConfig.isSignatureSupport) {
if (this.btnSignature.menu)
if (this.btnSignature.menu) {
this.btnSignature.menu.on('item:click', function (menu, item, e) {
me.fireEvent('protect:signature', [item.value, false]);
});
this.btnSignature.menu.on('show:after', function (menu, e) {
if (me._state) {
var isProtected = me._state.docProtection ? me._state.docProtection.isReadOnly || me._state.docProtection.isFormsOnly || me._state.docProtection.isCommentsOnly : false;
menu.items && menu.items[1].setDisabled(isProtected || me._state.disabled);
}
});
}
this.btnsInvisibleSignature.forEach(function(button) {
button.on('click', function (b, e) {
@ -310,13 +317,14 @@ define([
SetDisabled: function (state, canProtect) {
this._state.disabled = state;
this._state.invisibleSignDisabled = state && !canProtect;
var isProtected = this._state.docProtection ? this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly : false;
this.btnsInvisibleSignature && this.btnsInvisibleSignature.forEach(function(button) {
if ( button ) {
button.setDisabled(state && !canProtect);
}
}, this);
if (this.btnSignature && this.btnSignature.menu) {
this.btnSignature.menu.items && this.btnSignature.menu.items[1].setDisabled(state); // disable adding signature line
this.btnSignature.menu.items && this.btnSignature.menu.items[1].setDisabled(state || isProtected); // disable adding signature line
this.btnSignature.setDisabled(state && !canProtect); // disable adding any signature
}
this.btnsAddPwd.concat(this.btnsDelPwd, this.btnsChangePwd).forEach(function(button) {

View file

@ -584,7 +584,7 @@ define([
}
me.btnSharing && me.btnSharing.updateHint(me.tipSharing);
me.btnHistory && me.btnHistory.updateHint(me.tipHistory);
me.btnChat && me.btnChat.updateHint(me.txtChat + Common.Utils.String.platformKey('Alt+Q'));
me.btnChat && me.btnChat.updateHint(me.txtChat + (!Common.Utils.isMac ? Common.Utils.String.platformKey('Alt+Q') : ''));
if (me.btnCoAuthMode) {
me.btnCoAuthMode.setMenu(

View file

@ -176,6 +176,13 @@ define([
this.$resultsContainer = $('#search-results');
this.$resultsContainer.hide();
this.$searchContainer = $('#search-container');
this.$searchContainer.scroller = new Common.UI.Scroller({
el : $('#search-container'),
useKeyboard : true,
minScrollbarLength: 40
});
Common.NotificationCenter.on('search:updateresults', _.bind(this.disableNavButtons, this));
if (window.SSE) {
this.cmbWithin = new Common.UI.ComboBox({
@ -327,10 +334,23 @@ define([
ChangeSettings: function(props) {
},
updateScrollers: function () {
this.$resultsContainer.scroller.update({alwaysVisibleY: true});
this.$searchContainer.scroller.update({alwaysVisibleY: true});
setTimeout(_.bind(function () {
if (this.$searchContainer.find('> .ps-scrollbar-y-rail').is(':visible')) {
this.$resultsContainer.find('.ps-scrollbar-y-rail').addClass('set-left');
} else {
this.$resultsContainer.find('.ps-scrollbar-y-rail').removeClass('set-left');
}
}, this), 100);
},
updateResultsContainerHeight: function () {
if (this.$resultsContainer) {
this.$resultsContainer.outerHeight($('#search-box').outerHeight() - $('#search-header').outerHeight() - $('#search-adv-settings').outerHeight());
this.$resultsContainer.scroller.update({alwaysVisibleY: true});
this.$resultsContainer.outerHeight(Math.max($('#search-box').outerHeight() - $('#search-header').outerHeight() - $('#search-adv-settings').outerHeight(), 112));
this.updateScrollers();
}
},

View file

@ -79,7 +79,7 @@ define([
'<div class="input-row">',
'<label>' + this.textInstructions + '</label>',
'</div>',
'<textarea id="id-dlg-sign-settings-instructions" class="form-control" style="width: 100%;height: 35px;margin-bottom: 10px;resize: none;"></textarea>',
'<div id="id-dlg-sign-settings-instructions">',
'<div id="id-dlg-sign-settings-date"></div>',
'</div>',
'<div class="footer center">',
@ -121,15 +121,12 @@ define([
disabled : this.type=='view'
});
me.textareaInstructions = this.$window.find('textarea');
me.textareaInstructions.val(this.textDefInstruction);
me.textareaInstructions.keydown(function (event) {
if (event.keyCode == Common.UI.Keys.RETURN) {
event.stopPropagation();
}
me.textareaInstructions = new Common.UI.TextareaField({
el : $window.find('#id-dlg-sign-settings-instructions'),
style : 'width: 100%; height: 35px;margin-bottom: 10px;',
value : this.textDefInstruction,
disabled : this.type=='view'
});
(this.type=='view') ? this.textareaInstructions.attr('disabled', 'disabled') : this.textareaInstructions.removeAttr('disabled');
this.textareaInstructions.toggleClass('disabled', this.type=='view');
this.chDate = new Common.UI.CheckBox({
el: $('#id-dlg-sign-settings-date'),
@ -160,7 +157,7 @@ define([
value = props.asc_getEmail();
me.inputEmail.setValue(value ? value : '');
value = props.asc_getInstructions();
me.textareaInstructions.val(value ? value : '');
me.textareaInstructions.setValue(value ? value : '');
me.chDate.setValue(props.asc_getShowDate());
me._currentGuid = props.asc_getGuid();
@ -174,7 +171,7 @@ define([
props.asc_setSigner1(me.inputName.getValue());
props.asc_setSigner2(me.inputTitle.getValue());
props.asc_setEmail(me.inputEmail.getValue());
props.asc_setInstructions(me.textareaInstructions.val());
props.asc_setInstructions(me.textareaInstructions.getValue());
props.asc_setShowDate(me.chDate.getValue()=='checked');
(me._currentGuid!==undefined) && props.asc_setGuid(me._currentGuid);

View file

@ -136,10 +136,7 @@
}
#search-adv-settings {
position: absolute;
left: 0;
right: 0;
top: 45px;
position: relative;
padding: 10px 15px 0 15px;
table {
@ -238,10 +235,7 @@
}
#search-results {
position: absolute;
left: 0;
right: 0;
bottom: 0;
position: relative;
width: 100%;
border-top: @scaled-one-px-value-ie solid @border-toolbar-ie;
border-top: @scaled-one-px-value solid @border-toolbar;
@ -268,6 +262,21 @@
font-style: italic;
}
}
.ps-scrollbar-y-rail {
&.set-left {
right: 11px !important;
}
}
}
#search-container {
position: absolute;
overflow: hidden;
top: 45px;
left: 0;
right: 0;
bottom: 0;
}
}

View file

@ -704,17 +704,22 @@
margin: 0;
-webkit-box-shadow: none;
box-shadow: none;
&:hover {
background-color: @highlight-button-hover-ie;
background-color: @highlight-button-hover;
}
&.active {
background-color: @highlight-button-pressed-ie;
background-color: @highlight-button-pressed;
}
svg.icon {
fill: @icon-normal-pressed-ie;
fill: @icon-normal-pressed;
&:not(.disabled) {
.item {
&:hover {
background-color: @highlight-button-hover-ie;
background-color: @highlight-button-hover;
}
&.active {
background-color: @highlight-button-pressed-ie;
background-color: @highlight-button-pressed;
svg.icon {
fill: @icon-normal-pressed-ie;
fill: @icon-normal-pressed;
}
}
}
}

View file

@ -28,7 +28,7 @@ const SharingSettingsController = props => {
if (msgData?.needUpdate) {
setSharingSettings(msgData.sharingSettings);
}
f7.views.current.router.back();
props.f7router.back();
}
}
};

View file

@ -92,8 +92,10 @@ class CommentsController extends Component {
}
addComment (id, data) {
const comment = this.readSDKComment(id, data);
if (comment) {
this.storeComments.addComment(comment);
this.changeShowComments([comment.uid]);
}
}
addComments (data) {
@ -294,6 +296,7 @@ class AddCommentController extends Component {
!!comment.asc_putDocumentFlag && comment.asc_putDocumentFlag(documentFlag);
api.asc_addComment(comment);
Common.Notifications.trigger('viewcomment');
}
}
render() {

View file

@ -10,6 +10,7 @@ export class storeComments {
showComments: observable,
changeShowComment: action,
removeShowComment: action,
addComment: action,
removeComment: action,

View file

@ -2,6 +2,7 @@ import React, { Fragment } from 'react';
import { observer, inject } from "mobx-react";
import { Page, Navbar, Link } from "framework7-react";
import { useTranslation } from "react-i18next";
import { Device } from '../../utils/device';
const PageAbout = props => {
const { t } = useTranslation();
@ -31,93 +32,87 @@ const PageAbout = props => {
const nameEditor = (_t.textEditor || editors[editorType]).toUpperCase();
return (
<Page className="about">
<Page className={"about" + (!Device.phone ? " about_tablet" : Device.ios ? " about_ios" : " about_android")}>
<Navbar title={_t.textAbout} backLink={_t.textBack} />
{licInfo && typeof licInfo == 'object' && typeof(customer) == 'object' ? (
<Fragment>
<div className="content-block">
<div className="logo-block">
{logoCustomer && logoCustomer.length ? (
<div id="settings-about-logo" className="settings-about-logo">
<div id="settings-about-logo" className="logo-block__elem">
<img src={logoCustomer} alt="" />
</div>
) : null}
</div>
<div className="content-block">
<h3>{nameEditor}</h3>
<h3>{_t.textVersion} {__PRODUCT_VERSION__}</h3>
<div className="about__editor">
<p className="about__text">{nameEditor}</p>
<p className="about__text">{_t.textVersion} {__PRODUCT_VERSION__}</p>
</div>
<div className="content-block">
{nameCustomer && nameCustomer.length ? (
<h3 id="settings-about-name" className="vendor">{nameCustomer}</h3>
) : null}
{addressCustomer && addressCustomer.length ? (
<p>
<label>{_t.textAddress}:</label>
{mailCustomer || phoneCustomer ? (
<div className="about__customer">
{mailCustomer && mailCustomer.length ? (
<p className="about__text">
<Link id="settings-about-email" external={true} href={"mailto:"+mailCustomer}>{mailCustomer}</Link>
</p>
) : null}
{phoneCustomer && phoneCustomer.length ? (
<p className="about__text">
<Link id="settings-about-tel" external={true} href={"tel:"+phoneCustomer}>{phoneCustomer}</Link>
</p>
) : null}
</div>
) : null}
{addressCustomer && addressCustomer.length ? (
<div className="about__customer">
<p className="about__text">
<Link id="settings-about-address" external={true}>{addressCustomer}</Link>
</p>
</div>
) : null}
{nameCustomer || infoCustomer || urlCustomer ? (
<div className="about__customer">
{nameCustomer && nameCustomer.length ? (
<p id="settings-about-name" className="about__text">{nameCustomer}</p>
) : null}
{infoCustomer && infoCustomer.length ? (
<p className="about__text">{infoCustomer}</p>
) : null}
{urlCustomer && urlCustomer.length ? (
<p className="about__text">
<Link id="settings-about-url" external={true} target="_blank"
href={!/^https?:\/{2}/i.test(urlCustomer) ? "http:\/\/" : '' + urlCustomer}>
{urlCustomer}
</Link>
</p>
) : null}
{mailCustomer && mailCustomer.length ? (
<p>
<label>{_t.textEmail}:</label>
<Link id="settings-about-email" external={true} href={"mailto:"+mailCustomer}>{mailCustomer}</Link>
</p>
) : null}
{phoneCustomer && phoneCustomer.length ? (
<p>
<label>{_t.textTel}:</label>
<Link id="settings-about-tel" external={true} href={"tel:"+phoneCustomer}>{phoneCustomer}</Link>
</p>
) : null}
{urlCustomer && urlCustomer.length ? (
<p>
<Link id="settings-about-url" external={true} target="_blank"
href={!/^https?:\/{2}/i.test(urlCustomer) ? "http:\/\/" : '' + urlCustomer}>
{urlCustomer}
</Link>
</p>
) : null}
{infoCustomer && infoCustomer.length ? (
<p>
<label id="settings-about-info">{infoCustomer}</label>
</p>
) : null}
</div>
<div className="content-block" id="settings-about-licensor">
<div className="content-block-inner"></div>
<p>
<label>{_t.textPoweredBy}</label>
</div>
) : null}
<div className="about__contacts">
<p className="about__text" id="settings-about-address">
{__PUBLISHER_ADDRESS__}
</p>
<h3 className="vendor">{publisherName}</h3>
<p>
</div>
<div className="about__licensor" id="settings-about-licensor">
<p className="about__text">{publisherName}</p>
<p className="about__text">
<Link external={true} target="_blank" href={publisherUrl}>{publisherPrintUrl}</Link>
</p>
</div>
</Fragment>
) : (
<Fragment>
<div className="content-block">
<div className="logo"></div>
<div className="about__logo"></div>
<div className="about__editor">
<p className="about__text">{nameEditor}</p>
<p className="about__text">{_t.textVersion} {__PRODUCT_VERSION__}</p>
</div>
<div className="content-block">
<h3>{nameEditor}</h3>
<h3>{_t.textVersion} {__PRODUCT_VERSION__}</h3>
<div className="about__contacts">
<p className="about__text" id="settings-about-address">
{__PUBLISHER_ADDRESS__}
</p>
</div>
<div className="content-block">
<h3 id="settings-about-name" className="vendor">{publisherName}</h3>
<p>
<label>{_t.textAddress}:</label>
<a id="settings-about-address" className="external">{__PUBLISHER_ADDRESS__}</a>
</p>
<p>
<label>{_t.textEmail}:</label>
<Link id="settings-about-email" external={true} href={`mailto:${__SUPPORT_EMAIL__}`}>{__SUPPORT_EMAIL__}</Link>
</p>
<p>
<label>{_t.textTel}:</label>
<Link id="settings-about-tel" external={true} href={`tel:${__PUBLISHER_PHONE__}`}>{__PUBLISHER_PHONE__}</Link>
</p>
<p>
<div className="about__licensor">
<p className="about__text" id="settings-about-name">{publisherName}</p>
<p className="about__text">
<Link id="settings-about-url" external={true} target="_blank" href={publisherUrl}>{publisherPrintUrl}</Link>
</p>
</div>

View file

@ -7,20 +7,11 @@ const ViewSharingSettings = props => {
const sharingSettingsUrl = props.sharingSettingsUrl;
const _t = t('Common.Collaboration', {returnObjects: true});
function resizeHeightIframe(selector) {
const iFrame = document.querySelector(selector);
iFrame.height = iFrame.contentWindow.document.body.scrollHeight;
};
useEffect(() => {
resizeHeightIframe('#sharing-placeholder iframe');
}, []);
return (
<Page>
<Navbar title={t('Common.Collaboration.textSharingSettings')} backLink={_t.textBack} />
<div id="sharing-placeholder" className="sharing-placeholder">
<iframe width="100%" frameBorder={0} scrolling="0" align="top" src={sharingSettingsUrl}></iframe>
<iframe width="100%" height="500" frameBorder={0} scrolling="0" align="top" src={sharingSettingsUrl}></iframe>
</div>
</Page>
)

View file

@ -92,6 +92,9 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => {
const { t } = useTranslation();
const _t = t('Common.Collaboration', {returnObjects: true});
const appOptions = props.storeAppOptions;
const documentInfo = props.documentInfo;
const dataDoc = documentInfo && documentInfo.dataDoc;
const fileType = dataDoc && dataDoc.fileType;
const sharingSettingsUrl = appOptions.sharingSettingsUrl;
const isViewer = appOptions.isViewer;
@ -108,7 +111,7 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => {
}
</Navbar>
<List>
{sharingSettingsUrl &&
{(sharingSettingsUrl && fileType !== 'oform') &&
<ListItem title={t('Common.Collaboration.textSharingSettings')} link="/sharing-settings/">
<Icon slot="media" icon="icon-sharing-settings"></Icon>
</ListItem>
@ -148,10 +151,10 @@ class CollaborationView extends Component {
return (
show_popover ?
<Popover id="coauth-popover" className="popover__titled" onPopoverClosed={() => this.props.onclosed()} closeByOutsideClick={false}>
<PageCollaboration style={{height: '410px'}} page={this.props.page}/>
<PageCollaboration documentInfo={this.props.documentInfo} style={{height: '410px'}} page={this.props.page}/>
</Popover> :
<Sheet className="coauth__sheet" push onSheetClosed={() => this.props.onclosed()}>
<PageCollaboration page={this.props.page}/>
<PageCollaboration documentInfo={this.props.documentInfo} page={this.props.page}/>
</Sheet>
)
}
@ -177,9 +180,9 @@ const Collaboration = props => {
};
return (
<CollaborationView usePopover={!Device.phone} onclosed={onviewclosed} page={props.page}/>
<CollaborationView usePopover={!Device.phone} documentInfo={props.storeDocumentInfo} onclosed={onviewclosed} page={props.page}/>
)
};
export {PageCollaboration}
export default Collaboration;
const CollaborationDocument = inject('storeDocumentInfo')(observer(Collaboration));
export {Collaboration, CollaborationDocument};

View file

@ -791,10 +791,12 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
{isEdit && !viewMode &&
<Link className={`btn-add-reply${(wsProps?.Objects || isViewer) && !canEditComments ? ' disabled' : ''}`} href='#' onClick={() => {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply}</Link>
}
<div className='comment-navigation row'>
<Link href='#' onClick={onViewPrevComment}><Icon slot='media' icon='icon-prev'/></Link>
<Link href='#' onClick={onViewNextComment}><Icon slot='media' icon='icon-next'/></Link>
</div>
{comments.length > 1 &&
<div className='comment-navigation row'>
<Link href='#' onClick={onViewPrevComment}><Icon slot='media' icon='icon-prev'/></Link>
<Link href='#' onClick={onViewNextComment}><Icon slot='media' icon='icon-next'/></Link>
</div>
}
</Toolbar>
<div className='pages'>
<Page className='page-current-comment'>

View file

@ -127,7 +127,9 @@ body.theme-type-dark {
:root .theme-type-dark {
--f7-navbar-bg-color: #232323;
--f7-bars-bg-color-rgb: 35,35,35;
--f7-subnavbar-bg-color: #232323;
--f7-bars-translucent-opacity: 1;
}
.md .word-editor {

View file

@ -0,0 +1,24 @@
<svg width="187" height="80" viewBox="0 0 187 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M107.133 71.7924C107.133 73.5073 106.683 74.8051 105.784 75.6859C104.884 76.562 103.563 77 101.82 77H99.3738V66.7804H102.135C103.766 66.7804 105.005 67.2068 105.854 68.0596C106.706 68.9124 107.133 70.1567 107.133 71.7924ZM106.357 71.8203C106.357 70.357 105.984 69.2573 105.238 68.521C104.498 67.78 103.407 67.4095 101.967 67.4095H100.087V76.3709H101.778C104.831 76.3709 106.357 74.854 106.357 71.8203Z" fill="white"/>
<path d="M118.072 71.8762C118.072 73.4979 117.667 74.7818 116.856 75.7278C116.045 76.6691 114.927 77.1398 113.501 77.1398C112.08 77.1398 110.963 76.6691 110.153 75.7278C109.342 74.7818 108.936 73.4933 108.936 71.8623C108.936 70.2359 109.344 68.9567 110.16 68.0247C110.98 67.088 112.098 66.6197 113.515 66.6197C114.941 66.6197 116.057 67.0903 116.863 68.0317C117.669 68.9683 118.072 70.2499 118.072 71.8762ZM109.712 71.8762C109.712 73.3395 110.038 74.4719 110.691 75.2734C111.343 76.0703 112.28 76.4688 113.501 76.4688C114.731 76.4688 115.67 76.0726 116.318 75.2804C116.97 74.4882 117.296 73.3535 117.296 71.8762C117.296 70.4037 116.97 69.2759 116.318 68.493C115.67 67.7055 114.736 67.3117 113.515 67.3117C112.299 67.3117 111.36 67.7078 110.698 68.5C110.041 69.2922 109.712 70.4176 109.712 71.8762Z" fill="white"/>
<path d="M124.79 67.2767C123.508 67.2767 122.499 67.6868 121.763 68.507C121.027 69.3272 120.659 70.4503 120.659 71.8762C120.659 73.3348 121.006 74.4672 121.7 75.2734C122.395 76.0796 123.387 76.4827 124.678 76.4827C125.536 76.4827 126.323 76.3732 127.041 76.1542V76.7833C126.365 77.021 125.522 77.1398 124.51 77.1398C123.075 77.1398 121.945 76.6761 121.12 75.7488C120.295 74.8214 119.883 73.5259 119.883 71.8623C119.883 70.8231 120.079 69.9074 120.47 69.1151C120.866 68.3229 121.432 67.7125 122.169 67.2837C122.91 66.8503 123.769 66.6336 124.748 66.6336C125.745 66.6336 126.638 66.82 127.425 67.1929L127.139 67.8359C126.393 67.4631 125.61 67.2767 124.79 67.2767Z" fill="white"/>
<path d="M136.834 66.7804V73.3931C136.834 74.5674 136.494 75.4855 135.813 76.1472C135.133 76.8089 134.185 77.1398 132.968 77.1398C131.785 77.1398 130.86 76.8089 130.193 76.1472C129.532 75.4808 129.201 74.5535 129.201 73.3651V66.7804H129.921V73.3931C129.921 74.3764 130.193 75.143 130.738 75.6929C131.284 76.2381 132.055 76.5107 133.052 76.5107C134.026 76.5107 134.781 76.2427 135.317 75.7068C135.853 75.1663 136.121 74.4183 136.121 73.463V66.7804H136.834Z" fill="white"/>
<path d="M144.118 77L140.308 67.5633H140.252C140.289 68.1412 140.308 68.733 140.308 69.3388V77H139.623V66.7804H140.727L144.348 75.7697H144.39L148.011 66.7804H149.088V77H148.368V69.2549C148.368 68.7144 148.396 68.1552 148.451 67.5773H148.396L144.572 77H144.118Z" fill="white"/>
<path d="M157.567 77H151.982V66.7804H157.567V67.4375H152.694V71.303H157.294V71.9601H152.694V76.3429H157.567V77Z" fill="white"/>
<path d="M167.311 77H166.591L160.537 67.9268H160.482C160.537 69.008 160.565 69.8235 160.565 70.3734V77H159.88V66.7804H160.593L166.64 75.8396H166.682C166.64 75.0008 166.619 74.204 166.619 73.449V66.7804H167.311V77Z" fill="white"/>
<path d="M172.875 77H172.155V67.4515H168.835V66.7804H176.195V67.4515H172.875V77Z" fill="white"/>
<path d="M183.36 74.3647C183.36 75.2175 183.046 75.8932 182.417 76.3919C181.792 76.8905 180.96 77.1398 179.921 77.1398C178.672 77.1398 177.715 77.0023 177.048 76.7274V76.0144C177.784 76.3266 178.723 76.4827 179.865 76.4827C180.704 76.4827 181.368 76.2917 181.857 75.9095C182.351 75.5228 182.598 75.0171 182.598 74.3927C182.598 74.0059 182.517 73.6867 182.354 73.435C182.191 73.1787 181.925 72.9457 181.557 72.736C181.189 72.5263 180.648 72.3003 179.935 72.058C178.891 71.6992 178.169 71.3124 177.768 70.8976C177.372 70.4782 177.174 69.9213 177.174 69.227C177.174 68.4627 177.472 67.8406 178.069 67.3606C178.67 66.876 179.441 66.6336 180.382 66.6336C181.342 66.6336 182.244 66.8154 183.088 67.1789L182.829 67.794C181.981 67.4398 181.17 67.2628 180.396 67.2628C179.641 67.2628 179.04 67.4375 178.593 67.787C178.146 68.1365 177.922 68.6118 177.922 69.213C177.922 69.5905 177.989 69.9004 178.125 70.1427C178.264 70.385 178.49 70.604 178.803 70.7998C179.115 70.9908 179.651 71.2215 180.41 71.4918C181.207 71.7667 181.806 72.0347 182.207 72.2956C182.608 72.552 182.899 72.8455 183.081 73.1764C183.267 73.5026 183.36 73.8987 183.36 74.3647Z" fill="white"/>
<path d="M84.7491 66.0992H91.4194V67.7954H87.0331V70.4894H91.0301V72.1606H87.0331V75.1788H91.4194V76.8501H84.7491V66.0992Z" fill="white"/>
<path d="M82.9323 66.3491V68.2199C82.543 68.0952 82.1277 67.9954 81.7124 67.9205C81.2712 67.8457 80.804 67.8208 80.3109 67.8208C79.117 67.8208 78.2086 68.17 77.5857 68.8684C76.9628 69.5668 76.6254 70.4648 76.6254 71.5374C76.6254 72.5601 76.9109 73.4331 77.5078 74.1316C78.1048 74.83 78.9613 75.1792 80.1033 75.1792C80.4926 75.1792 80.9078 75.1543 81.375 75.1044C81.8422 75.0545 82.3094 74.9298 82.8025 74.7053L82.9582 76.5262C82.8804 76.5511 82.7766 76.601 82.6468 76.626C82.517 76.6509 82.3613 76.7008 82.1796 76.7507C81.8682 76.8006 81.5307 76.8754 81.1155 76.9253C80.7002 76.9752 80.259 77.0001 79.7918 77.0001C79.7399 77.0001 79.662 77.0001 79.6101 77.0001C79.5582 77.0001 79.4804 77.0001 79.4285 76.9752C78.1307 76.9003 76.9628 76.4514 75.8727 75.5783C74.8086 74.7302 74.2635 73.3833 74.2635 71.5624C74.2635 69.7913 74.7826 68.4444 75.8468 67.4716C76.9109 66.4987 78.3124 66.0248 80.0773 66.0248C80.5445 66.0248 80.9598 66.0498 81.3491 66.0747C81.7384 66.0996 82.1277 66.1745 82.4911 66.2493C82.5689 66.2742 82.6468 66.2992 82.7506 66.2992C82.7506 66.3241 82.8544 66.3491 82.9323 66.3491Z" fill="white"/>
<path d="M70.0331 76.8501V66.0992H72.3171V76.8501H70.0331Z" fill="white"/>
<path d="M62.4803 66.0992H68.7353V67.9201H64.7384V70.5393H68.5536V72.3352H64.7384V76.8501H62.4803V66.0992Z" fill="white"/>
<path d="M54.5383 66.0992H60.8193V67.9201H56.8223V70.5393H60.6116V72.3352H56.8223V76.8501H54.5383V66.0992Z" fill="white"/>
<path d="M42.0803 71.4877C42.0803 69.6668 42.6254 68.2948 43.7154 67.3719C44.8055 66.449 46.0773 66 47.5307 66C48.9842 66 50.2559 66.449 51.346 67.3719C52.4361 68.2948 52.9811 69.6668 52.9811 71.4877C52.9811 73.3086 52.4361 74.6805 51.346 75.6034C50.2559 76.5263 48.9842 76.9753 47.5307 76.9753C46.0773 76.9753 44.8055 76.5263 43.7154 75.6034C42.6254 74.6805 42.0803 73.3086 42.0803 71.4877ZM44.4422 71.4877C44.4422 72.7348 44.6757 73.6827 45.1689 74.2564C45.662 74.8551 46.1811 75.2043 46.778 75.3789C46.9078 75.4038 47.0376 75.4288 47.1674 75.4537C47.2971 75.4787 47.4269 75.4787 47.5307 75.4787C47.6605 75.4787 47.7903 75.4787 47.92 75.4537C48.0498 75.4288 48.1796 75.4038 48.3093 75.3789C48.8803 75.2292 49.3994 74.8551 49.8926 74.2564C50.3597 73.6578 50.6193 72.7598 50.6193 71.5126C50.6193 70.2654 50.3857 69.3674 49.8926 68.7688C49.4254 68.1701 48.8803 67.8209 48.3093 67.6463C48.1796 67.5964 48.0498 67.5715 47.92 67.5715C47.7903 67.5465 47.6605 67.5465 47.5307 67.5465C47.4009 67.5465 47.2712 67.5465 47.1674 67.5715C47.0376 67.5964 46.9078 67.6214 46.778 67.6463C46.2071 67.796 45.662 68.1701 45.1689 68.7688C44.7017 69.3425 44.4422 70.2405 44.4422 71.4877Z" fill="white"/>
<path d="M31.9322 66.1002H34.5536L36.8376 69.8917L37.201 70.6151H37.2529L37.6162 69.8917L39.9521 66.1002H42.3399L38.317 72.4859V76.851H36.033V72.4609L31.9322 66.1002Z" fill="white"/>
<path d="M26.5856 66.1002H28.8436V75.0551H33.3077V76.851H26.5856V66.1002Z" fill="white"/>
<path d="M14.6206 66.1002H17.5534L21.4206 72.885L22.0176 74.3317H22.0695L22.0176 72.436V66.1002H24.2756V76.851H21.3428L17.4496 69.8169L16.8786 68.6196H16.8267L16.8786 70.5402V76.851H14.6206V66.1002Z" fill="white"/>
<path d="M2.5 71.4881C2.5 69.6672 3.04504 68.2953 4.13512 67.3724C5.2252 66.4494 6.49696 66.0004 7.9504 66.0004C9.40384 66.0004 10.6756 66.4494 11.7657 67.3724C12.8558 68.2953 13.4008 69.6672 13.4008 71.4881C13.4008 73.309 12.8558 74.6809 11.7657 75.6038C10.6756 76.5268 9.40384 76.9758 7.9504 76.9758C6.49696 76.9758 5.2252 76.5268 4.13512 75.6038C3.07099 74.6809 2.5 73.309 2.5 71.4881ZM4.88779 71.4881C4.88779 72.7353 5.12138 73.6832 5.61451 74.2569C6.10764 74.8555 6.62673 75.2047 7.22368 75.3793C7.35345 75.4043 7.48322 75.4292 7.61299 75.4542C7.74276 75.4791 7.87254 75.4791 7.97635 75.4791C8.10613 75.4791 8.2359 75.4791 8.36567 75.4542C8.49544 75.4292 8.62521 75.4043 8.75498 75.3793C9.32598 75.2297 9.84506 74.8555 10.3382 74.2569C10.8054 73.6582 11.0649 72.7602 11.0649 71.513C11.0649 70.2658 10.8313 69.3679 10.3382 68.7692C9.87101 68.1706 9.32598 67.8213 8.75498 67.6467C8.62521 67.5969 8.49544 67.5719 8.36567 67.5719C8.2359 67.547 8.10613 67.547 7.97635 67.547C7.84658 67.547 7.71681 67.547 7.61299 67.5719C7.48322 67.5969 7.35345 67.6218 7.22368 67.6467C6.65268 67.7964 6.10764 68.1706 5.61451 68.7692C5.12138 69.3429 4.88779 70.2409 4.88779 71.4881Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.6387 51.3873L67.9496 41.0935C66.0168 40.1948 66.0168 38.806 67.9496 37.989L75.8487 34.3944L90.5546 41.0935C92.4874 41.9922 95.5966 41.9922 97.4454 41.0935L112.151 34.3944L120.05 37.989C121.983 38.8877 121.983 40.2765 120.05 41.0935L97.3613 51.3873C95.5966 52.2042 92.4874 52.2042 90.6387 51.3873Z" fill="#FF6F3D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.5651 38.6492L67.9452 28.3434C66.0183 27.4437 66.0183 26.0533 67.9452 25.2353L75.6527 21.7183L90.5651 28.507C92.492 29.4067 95.5918 29.4067 97.4349 28.507L112.347 21.7183L120.055 25.2353C121.982 26.135 121.982 27.5255 120.055 28.3434L97.4349 38.6492C95.508 39.5489 92.4082 39.5489 90.5651 38.6492Z" fill="#95C038"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.5651 26.0433L67.9452 15.8859C66.0183 14.9991 66.0183 13.6286 67.9452 12.8225L90.5651 2.66507C92.492 1.77831 95.5918 1.77831 97.4349 2.66507L120.055 12.8225C121.982 13.7093 121.982 15.0797 120.055 15.8859L97.4349 26.0433C95.508 26.8494 92.4082 26.8494 90.5651 26.0433Z" fill="#5DC0E8"/>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

View file

@ -0,0 +1,24 @@
<svg width="187" height="80" viewBox="0 0 187 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M107.133 71.7924C107.133 73.5073 106.683 74.8051 105.784 75.6859C104.884 76.562 103.563 77 101.82 77H99.3738V66.7804H102.135C103.766 66.7804 105.005 67.2068 105.854 68.0596C106.706 68.9124 107.133 70.1567 107.133 71.7924ZM106.357 71.8203C106.357 70.357 105.984 69.2573 105.238 68.521C104.498 67.78 103.407 67.4095 101.967 67.4095H100.087V76.3709H101.778C104.831 76.3709 106.357 74.854 106.357 71.8203Z" fill="black" fill-opacity="0.6"/>
<path d="M118.072 71.8762C118.072 73.4979 117.667 74.7818 116.856 75.7278C116.045 76.6691 114.927 77.1398 113.501 77.1398C112.08 77.1398 110.963 76.6691 110.153 75.7278C109.342 74.7818 108.936 73.4933 108.936 71.8623C108.936 70.2359 109.344 68.9567 110.16 68.0247C110.98 67.088 112.098 66.6197 113.515 66.6197C114.941 66.6197 116.057 67.0903 116.863 68.0317C117.669 68.9683 118.072 70.2499 118.072 71.8762ZM109.712 71.8762C109.712 73.3395 110.038 74.4719 110.691 75.2734C111.343 76.0703 112.28 76.4688 113.501 76.4688C114.731 76.4688 115.67 76.0726 116.318 75.2804C116.97 74.4882 117.296 73.3535 117.296 71.8762C117.296 70.4037 116.97 69.2759 116.318 68.493C115.67 67.7055 114.736 67.3117 113.515 67.3117C112.299 67.3117 111.36 67.7078 110.698 68.5C110.041 69.2922 109.712 70.4176 109.712 71.8762Z" fill="black" fill-opacity="0.6"/>
<path d="M124.79 67.2767C123.508 67.2767 122.499 67.6868 121.763 68.507C121.027 69.3272 120.659 70.4503 120.659 71.8762C120.659 73.3348 121.006 74.4672 121.7 75.2734C122.395 76.0796 123.387 76.4827 124.678 76.4827C125.536 76.4827 126.323 76.3732 127.041 76.1542V76.7833C126.365 77.021 125.522 77.1398 124.51 77.1398C123.075 77.1398 121.945 76.6761 121.12 75.7488C120.295 74.8214 119.883 73.5259 119.883 71.8623C119.883 70.8231 120.079 69.9074 120.47 69.1151C120.866 68.3229 121.432 67.7125 122.169 67.2837C122.91 66.8503 123.769 66.6336 124.748 66.6336C125.745 66.6336 126.638 66.82 127.425 67.1929L127.139 67.8359C126.393 67.4631 125.61 67.2767 124.79 67.2767Z" fill="black" fill-opacity="0.6"/>
<path d="M136.834 66.7804V73.3931C136.834 74.5674 136.494 75.4855 135.813 76.1472C135.133 76.8089 134.185 77.1398 132.968 77.1398C131.785 77.1398 130.86 76.8089 130.193 76.1472C129.532 75.4808 129.201 74.5535 129.201 73.3651V66.7804H129.921V73.3931C129.921 74.3764 130.193 75.143 130.738 75.6929C131.284 76.2381 132.055 76.5107 133.052 76.5107C134.026 76.5107 134.781 76.2427 135.317 75.7068C135.853 75.1663 136.121 74.4183 136.121 73.463V66.7804H136.834Z" fill="black" fill-opacity="0.6"/>
<path d="M144.118 77L140.308 67.5633H140.252C140.289 68.1412 140.308 68.733 140.308 69.3388V77H139.623V66.7804H140.727L144.348 75.7697H144.39L148.011 66.7804H149.088V77H148.368V69.2549C148.368 68.7144 148.396 68.1552 148.451 67.5773H148.396L144.572 77H144.118Z" fill="black" fill-opacity="0.6"/>
<path d="M157.567 77H151.982V66.7804H157.567V67.4375H152.694V71.303H157.294V71.9601H152.694V76.3429H157.567V77Z" fill="black" fill-opacity="0.6"/>
<path d="M167.311 77H166.591L160.537 67.9268H160.482C160.537 69.008 160.565 69.8235 160.565 70.3734V77H159.88V66.7804H160.593L166.64 75.8396H166.682C166.64 75.0008 166.619 74.204 166.619 73.449V66.7804H167.311V77Z" fill="black" fill-opacity="0.6"/>
<path d="M172.875 77H172.155V67.4515H168.835V66.7804H176.195V67.4515H172.875V77Z" fill="black" fill-opacity="0.6"/>
<path d="M183.36 74.3647C183.36 75.2175 183.046 75.8932 182.417 76.3919C181.792 76.8905 180.96 77.1398 179.921 77.1398C178.672 77.1398 177.715 77.0023 177.048 76.7274V76.0144C177.784 76.3266 178.723 76.4827 179.865 76.4827C180.704 76.4827 181.368 76.2917 181.857 75.9095C182.351 75.5228 182.598 75.0171 182.598 74.3927C182.598 74.0059 182.517 73.6867 182.354 73.435C182.191 73.1787 181.925 72.9457 181.557 72.736C181.189 72.5263 180.648 72.3003 179.935 72.058C178.891 71.6992 178.169 71.3124 177.768 70.8976C177.372 70.4782 177.174 69.9213 177.174 69.227C177.174 68.4627 177.472 67.8406 178.069 67.3606C178.67 66.876 179.441 66.6336 180.382 66.6336C181.342 66.6336 182.244 66.8154 183.088 67.1789L182.829 67.794C181.981 67.4398 181.17 67.2628 180.396 67.2628C179.641 67.2628 179.04 67.4375 178.593 67.787C178.146 68.1365 177.922 68.6118 177.922 69.213C177.922 69.5905 177.989 69.9004 178.125 70.1427C178.264 70.385 178.49 70.604 178.803 70.7998C179.115 70.9908 179.651 71.2215 180.41 71.4918C181.207 71.7667 181.806 72.0347 182.207 72.2956C182.608 72.552 182.899 72.8455 183.081 73.1764C183.267 73.5026 183.36 73.8987 183.36 74.3647Z" fill="black" fill-opacity="0.6"/>
<path d="M84.7491 66.0992H91.4193V67.7954H87.0331V70.4894H91.03V72.1606H87.0331V75.1788H91.4193V76.8501H84.7491V66.0992Z" fill="#333333"/>
<path d="M82.9323 66.3491V68.2199C82.543 68.0952 82.1278 67.9954 81.7125 67.9205C81.2713 67.8457 80.8041 67.8208 80.311 67.8208C79.1171 67.8208 78.2087 68.17 77.5858 68.8684C76.9629 69.5668 76.6255 70.4648 76.6255 71.5374C76.6255 72.5601 76.9109 73.4331 77.5079 74.1316C78.1048 74.83 78.9613 75.1792 80.1033 75.1792C80.4926 75.1792 80.9079 75.1543 81.3751 75.1044C81.8423 75.0545 82.3094 74.9298 82.8026 74.7053L82.9583 76.5262C82.8804 76.5511 82.7766 76.601 82.6468 76.626C82.5171 76.6509 82.3613 76.7008 82.1797 76.7507C81.8682 76.8006 81.5308 76.8754 81.1155 76.9253C80.7003 76.9752 80.259 77.0001 79.7919 77.0001C79.74 77.0001 79.6621 77.0001 79.6102 77.0001C79.5583 77.0001 79.4804 77.0001 79.4285 76.9752C78.1308 76.9003 76.9629 76.4514 75.8728 75.5783C74.8087 74.7302 74.2636 73.3833 74.2636 71.5624C74.2636 69.7913 74.7827 68.4444 75.8468 67.4716C76.9109 66.4987 78.3125 66.0248 80.0774 66.0248C80.5445 66.0248 80.9598 66.0498 81.3491 66.0747C81.7384 66.0996 82.1278 66.1745 82.4911 66.2493C82.569 66.2742 82.6468 66.2992 82.7507 66.2992C82.7507 66.3241 82.8545 66.3491 82.9323 66.3491Z" fill="#333333"/>
<path d="M70.0331 76.8501V66.0992H72.3171V76.8501H70.0331Z" fill="#333333"/>
<path d="M62.4804 66.0992H68.7354V67.9201H64.7384V70.5393H68.5537V72.3352H64.7384V76.8501H62.4804V66.0992Z" fill="#333333"/>
<path d="M54.5383 66.0992H60.8193V67.9201H56.8223V70.5393H60.6116V72.3352H56.8223V76.8501H54.5383V66.0992Z" fill="#333333"/>
<path d="M42.0803 71.4877C42.0803 69.6668 42.6254 68.2948 43.7154 67.3719C44.8055 66.449 46.0773 66 47.5307 66C48.9842 66 50.2559 66.449 51.346 67.3719C52.4361 68.2948 52.9811 69.6668 52.9811 71.4877C52.9811 73.3086 52.4361 74.6805 51.346 75.6034C50.2559 76.5263 48.9842 76.9753 47.5307 76.9753C46.0773 76.9753 44.8055 76.5263 43.7154 75.6034C42.6254 74.6805 42.0803 73.3086 42.0803 71.4877ZM44.4422 71.4877C44.4422 72.7348 44.6757 73.6827 45.1689 74.2564C45.662 74.8551 46.1811 75.2043 46.778 75.3789C46.9078 75.4038 47.0376 75.4288 47.1674 75.4537C47.2971 75.4787 47.4269 75.4787 47.5307 75.4787C47.6605 75.4787 47.7903 75.4787 47.92 75.4537C48.0498 75.4288 48.1796 75.4038 48.3093 75.3789C48.8803 75.2292 49.3994 74.8551 49.8926 74.2564C50.3597 73.6578 50.6193 72.7598 50.6193 71.5126C50.6193 70.2654 50.3857 69.3674 49.8926 68.7688C49.4254 68.1701 48.8803 67.8209 48.3093 67.6463C48.1796 67.5964 48.0498 67.5715 47.92 67.5715C47.7903 67.5465 47.6605 67.5465 47.5307 67.5465C47.4009 67.5465 47.2712 67.5465 47.1674 67.5715C47.0376 67.5964 46.9078 67.6214 46.778 67.6463C46.2071 67.796 45.662 68.1701 45.1689 68.7688C44.7017 69.3425 44.4422 70.2405 44.4422 71.4877Z" fill="#333333"/>
<path d="M31.9322 66.1002H34.5536L36.8376 69.8917L37.201 70.6151H37.2529L37.6162 69.8917L39.9521 66.1002H42.3399L38.317 72.4859V76.851H36.033V72.4609L31.9322 66.1002Z" fill="#333333"/>
<path d="M26.5855 66.1002H28.8435V75.0551H33.3077V76.851H26.5855V66.1002Z" fill="#333333"/>
<path d="M14.6206 66.1002H17.5534L21.4206 72.885L22.0176 74.3317H22.0695L22.0176 72.436V66.1002H24.2756V76.851H21.3428L17.4496 69.8169L16.8786 68.6196H16.8267L16.8786 70.5402V76.851H14.6206V66.1002Z" fill="#333333"/>
<path d="M2.5 71.4881C2.5 69.6672 3.04504 68.2953 4.13512 67.3724C5.2252 66.4494 6.49696 66.0004 7.9504 66.0004C9.40384 66.0004 10.6756 66.4494 11.7657 67.3724C12.8558 68.2953 13.4008 69.6672 13.4008 71.4881C13.4008 73.309 12.8558 74.6809 11.7657 75.6038C10.6756 76.5268 9.40384 76.9758 7.9504 76.9758C6.49696 76.9758 5.2252 76.5268 4.13512 75.6038C3.07099 74.6809 2.5 73.309 2.5 71.4881ZM4.88779 71.4881C4.88779 72.7353 5.12138 73.6832 5.61451 74.2569C6.10764 74.8555 6.62673 75.2047 7.22368 75.3793C7.35345 75.4043 7.48322 75.4292 7.61299 75.4542C7.74276 75.4791 7.87254 75.4791 7.97635 75.4791C8.10613 75.4791 8.2359 75.4791 8.36567 75.4542C8.49544 75.4292 8.62521 75.4043 8.75498 75.3793C9.32598 75.2297 9.84506 74.8555 10.3382 74.2569C10.8054 73.6582 11.0649 72.7602 11.0649 71.513C11.0649 70.2658 10.8313 69.3679 10.3382 68.7692C9.87101 68.1706 9.32598 67.8213 8.75498 67.6467C8.62521 67.5969 8.49544 67.5719 8.36567 67.5719C8.2359 67.547 8.10613 67.547 7.97635 67.547C7.84658 67.547 7.71681 67.547 7.61299 67.5719C7.48322 67.5969 7.35345 67.6218 7.22368 67.6467C6.65268 67.7964 6.10764 68.1706 5.61451 68.7692C5.12138 69.3429 4.88779 70.2409 4.88779 71.4881Z" fill="#333333"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.6387 51.3873L67.9496 41.0935C66.0168 40.1948 66.0168 38.806 67.9496 37.989L75.8487 34.3944L90.5546 41.0935C92.4874 41.9922 95.5966 41.9922 97.4454 41.0935L112.151 34.3944L120.05 37.989C121.983 38.8877 121.983 40.2765 120.05 41.0935L97.3613 51.3873C95.5966 52.2042 92.4874 52.2042 90.6387 51.3873Z" fill="#FF6F3D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.5651 38.6492L67.9452 28.3434C66.0183 27.4437 66.0183 26.0533 67.9452 25.2353L75.6527 21.7183L90.5651 28.507C92.492 29.4067 95.5918 29.4067 97.4349 28.507L112.347 21.7183L120.055 25.2353C121.982 26.135 121.982 27.5255 120.055 28.3434L97.4349 38.6492C95.508 39.5489 92.4082 39.5489 90.5651 38.6492Z" fill="#95C038"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.5651 26.0433L67.9452 15.8859C66.0183 14.9991 66.0183 13.6286 67.9452 12.8225L90.5651 2.66507C92.492 1.77831 95.5918 1.77831 97.4349 2.66507L120.055 12.8225C121.982 13.7093 121.982 15.0797 120.055 15.8859L97.4349 26.0433C95.508 26.8494 92.4082 26.8494 90.5651 26.0433Z" fill="#5DC0E8"/>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

View file

@ -4,63 +4,75 @@
.about {
.page-content {
text-align: center /*rtl:ignore*/;
}
.content-block:first-child {
margin: 15px 0 /*rtl:append20px*/;
}
.content-block {
margin: 0 auto 15px;
a {
color: @text-normal;
}
}
.settings-about-logo {
display: flex;
justify-content: center;
img {
max-width: 100%;
height: auto;
}
flex-direction: column;
}
h3 {
font-weight: normal;
margin: 0;
color: @text-secondary;
&.vendor {
color: @text-normal;
font-weight: bold;
margin-top: 15px;
}
&_ios {
padding-top: 120px;
padding-bottom: 30px;
}
p > label {
&_android {
padding-top: 60px;
padding-bottom: 16px;
}
&_tablet {
padding-top: 12px;
padding-bottom: 12px;
}
&__text {
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
text-align: center;
color: @text-normal;
margin-right: 5px;
color: @text-secondary;
margin: 0;
}
.logo {
display: inline-block;
width: 100%;
height: 55px;
background: ~"url(@{common-image-path}/about/logo_s.svg) no-repeat center";
a {
color: @brandColor;
}
.theme-type-dark {
.about .logo {
background: ~"url(@{common-image-path}/about/logo-white_s.svg) no-repeat center";
.logo-block {
&__elem {
display: flex;
justify-content: center;
img {
max-width: 100%;
height: auto;
}
}
}
&__logo {
width: 100%;
height: 80px;
background: ~"url(@{common-image-path}/about/logo-new.svg) no-repeat center";
}
&__editor {
flex-grow: 1;
margin-top: 20px;
}
&__contacts {
text-align: center;
padding-left: 72px;
padding-right: 72px;
}
&__licensor, &__customer {
text-align: center;
margin-top: 12px;
}
}
.theme-type-dark {
.about .logo {
background: ~"url(@{common-image-path}/about/logo-white_s.svg) no-repeat center";
.about__logo {
background: ~"url(@{common-image-path}/about/logo-new-white.svg) no-repeat center";
}
}

View file

@ -366,12 +366,6 @@
}
}
.about {
.logo {
margin-top: 20px;
}
}
.content-block {
color: @blockTitleColor;
}
@ -511,8 +505,8 @@
}
.actions-button-text {
height: 57px;
line-height: 57px;
// height: 57px;
// line-height: 57px;
font-size: 20px;
color: @text-normal;
white-space: normal;

View file

@ -279,17 +279,6 @@
}
}
.about {
.content-block {
margin: 0 auto 15px;
p:last-child a{
color: var(--brand-word);
text-decoration: underline;
}
}
}
.content-block {
margin: 32px 0;
padding: 0 16px;

View file

@ -603,6 +603,9 @@ define([
me.view.btnPrev.setVisible(false);
me.view.btnNext.setVisible(false);
me.view.btnClear.setVisible(false);
me.view.btnUndo.setVisible(false);
me.view.btnRedo.setVisible(false);
me.view.btnRedo.$el.next().hide();
} else {
me.view.btnPrev.on('click', function(){
me.api.asc_MoveToFillingForm(false);
@ -626,6 +629,12 @@ define([
}
}
});
me.view.btnUndo.on('click', function(){
me.api.Undo(false);
});
me.view.btnRedo.on('click', function(){
me.api.Redo(false);
});
this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyForms);
this.api.asc_SetFastCollaborative(true);
@ -1363,6 +1372,8 @@ define([
if (this.appOptions.canFillForms) {
this.api.asc_registerCallback('asc_onShowContentControlsActions', _.bind(this.onShowContentControlsActions, this));
this.api.asc_registerCallback('asc_onHideContentControlsActions', _.bind(this.onHideContentControlsActions, this));
this.api.asc_registerCallback('asc_onCanUndo', _.bind(this.onApiCanRevert, this, 'undo'));
this.api.asc_registerCallback('asc_onCanRedo', _.bind(this.onApiCanRevert, this, 'redo'));
this.api.asc_SetHighlightRequiredFields(true);
Common.Gateway.on('insertimage', _.bind(this.insertImage, this));
Common.NotificationCenter.on('storage:image-load', _.bind(this.openImageFromStorage, this)); // try to load image from storage
@ -1800,9 +1811,10 @@ define([
this.textMenu.items[0].setDisabled(disabled || !this.api.asc_getCanUndo()); // undo
this.textMenu.items[1].setDisabled(disabled || !this.api.asc_getCanRedo()); // redo
this.textMenu.items[3].setDisabled(disabled || !cancopy); // cut
this.textMenu.items[4].setDisabled(!cancopy); // copy
this.textMenu.items[5].setDisabled(disabled) // paste;
this.textMenu.items[3].setDisabled(disabled); // clear
this.textMenu.items[5].setDisabled(disabled || !cancopy); // cut
this.textMenu.items[6].setDisabled(!cancopy); // copy
this.textMenu.items[7].setDisabled(disabled) // paste;
this.showPopupMenu(this.textMenu, {}, event);
}
@ -1832,6 +1844,14 @@ define([
}
}
break;
case 'clear':
if (this.api) {
var props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null;
if (props) {
this.api.asc_ClearContentControl(props.get_InternalId());
}
}
break;
}
},
@ -1839,6 +1859,8 @@ define([
this._state.isDisconnected = true;
this._isDisabled = true;
this.view && this.view.btnClear && this.view.btnClear.setDisabled(true);
this.view && this.view.btnUndo && this.view.btnUndo.setDisabled(true);
this.view && this.view.btnRedo && this.view.btnRedo.setDisabled(true);
if (!enableDownload) {
this.appOptions.canPrint = this.appOptions.canDownload = false;
this.view && this.view.btnDownload.setDisabled(true);
@ -1852,6 +1874,12 @@ define([
}
},
onApiCanRevert: function(which, can) {
if (!this.view) return;
(which=='undo') ? this.view.btnUndo.setDisabled(!can) : this.view.btnRedo.setDisabled(!can);
},
errorDefaultMessage : 'Error code: %1',
unknownErrorText : 'Unknown error.',
convertationTimeoutText : 'Conversion timeout exceeded.',

View file

@ -89,6 +89,20 @@ define([
});
this.btnPrev.render($('#id-btn-prev-field'));
this.btnUndo = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon undo',
hint: this.tipUndo + Common.Utils.String.platformKey('Ctrl+Z')
});
this.btnUndo.render($('#id-btn-undo'));
this.btnRedo = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon redo',
hint: this.tipRedo + Common.Utils.String.platformKey('Ctrl+Y')
});
this.btnRedo.render($('#id-btn-redo'));
this.btnSubmit = new Common.UI.Button({
cls: 'btn-text-default colored margin-left-small margin-right-small',
caption: this.textSubmit
@ -121,6 +135,8 @@ define([
{ caption: this.textUndo, value: 'undo', iconCls: 'mi-icon svg-icon undo' },
{ caption: this.textRedo, value: 'redo', iconCls: 'mi-icon svg-icon redo' },
{ caption: '--' },
{ caption: this.textClearField, value: 'clear', iconCls: 'mi-icon svg-icon clear-style' },
{ caption: '--' },
{ caption: this.textCut, value: 'cut', iconCls: 'mi-icon svg-icon cut' },
{ caption: this.textCopy, value: 'copy', iconCls: 'mi-icon svg-icon copy' },
{ caption: this.textPaste, value: 'paste', iconCls: 'mi-icon svg-icon paste' }
@ -150,7 +166,10 @@ define([
textZoom: 'Zoom',
textFitToPage: 'Fit to Page',
textFitToWidth: 'Fit to Width',
txtSearch: 'Search'
txtSearch: 'Search',
tipUndo: 'Undo',
tipRedo: 'Redo',
textClearField: 'Clear field'
}, DE.Views.ApplicationView || {}));
});

View file

@ -259,7 +259,10 @@
<div class="toolbar" id="toolbar">
<div class="group left">
<div class="margin-right-large"><a id="header-logo" class="brand-logo" href="http://www.onlyoffice.com/" target="_blank"></a></div>
<span id="id-btn-prev-field" class="margin-right-small"></span>
<span id="id-btn-undo" class="margin-right-small"></span>
<span id="id-btn-redo" class="margin-right-small"></span>
<div class="separator"></div>
<span id="id-btn-prev-field" class="margin-left-small margin-right-small"></span>
<span id="id-btn-next-field" class="margin-right-large"></span>
<span id="id-btn-clear-fields"></span>
</div>

View file

@ -241,7 +241,10 @@
<div class="toolbar" id="toolbar">
<div class="group left">
<div class="margin-right-large"><a id="header-logo" class="brand-logo" href="http://www.onlyoffice.com/" target="_blank"></a></div>
<span id="id-btn-prev-field" class="margin-right-small"></span>
<span id="id-btn-undo" class="margin-right-small"></span>
<span id="id-btn-redo" class="margin-right-small"></span>
<div class="separator"></div>
<span id="id-btn-prev-field" class="margin-left-small margin-right-small"></span>
<span id="id-btn-next-field" class="margin-right-large"></span>
<span id="id-btn-clear-fields"></span>
</div>

View file

@ -73,12 +73,12 @@
"Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση",
"Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε το συνθηματικό και ανοίξετε το αρχείο, το τρέχον συνθηματικό αρχείου θα αρχικοποιηθεί.",
"Common.Views.OpenDialog.txtTitle": "Διαλέξτε %1 επιλογές",
"Common.Views.OpenDialog.txtTitleProtected": "Προστατευμένο Αρχείο",
"Common.Views.OpenDialog.txtTitleProtected": "Προστατευμένο αρχείο",
"Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση",
"Common.Views.SaveAsDlg.textTitle": "Φάκελος για αποθήκευση",
"Common.Views.SelectFileDlg.textLoading": "Γίνεται φόρτωση",
"Common.Views.SelectFileDlg.textTitle": "Επιλογή Πηγής Δεδομένων",
"Common.Views.ShareDialog.textTitle": "Διαμοιρασμός Συνδέσμου",
"Common.Views.SelectFileDlg.textTitle": "Επιλογή πηγής δεδομένων",
"Common.Views.ShareDialog.textTitle": "Διαμοιρασμός συνδέσμου",
"Common.Views.ShareDialog.txtCopy": "Αντιγραφή στο πρόχειρο",
"Common.Views.ShareDialog.warnCopy": "Σφάλμα φυλλομετρητή! Χρησιμοποιείστε τη συντόμευση [Ctrl]+[C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Αποτυχία μετατροπής.",

View file

@ -159,6 +159,7 @@
"DE.Controllers.ApplicationController.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"DE.Views.ApplicationView.textClear": "Clear All Fields",
"DE.Views.ApplicationView.textClearField": "Clear field",
"DE.Views.ApplicationView.textCopy": "Copy",
"DE.Views.ApplicationView.textCut": "Cut",
"DE.Views.ApplicationView.textFitToPage": "Fit to Page",
@ -170,6 +171,8 @@
"DE.Views.ApplicationView.textSubmit": "Submit",
"DE.Views.ApplicationView.textUndo": "Undo",
"DE.Views.ApplicationView.textZoom": "Zoom",
"DE.Views.ApplicationView.tipRedo": "Redo",
"DE.Views.ApplicationView.tipUndo": "Undo",
"DE.Views.ApplicationView.txtDarkMode": "Dark mode",
"DE.Views.ApplicationView.txtDownload": "Download",
"DE.Views.ApplicationView.txtDownloadDocx": "Download as docx",

View file

@ -159,6 +159,7 @@
"DE.Controllers.ApplicationController.warnNoLicense": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Այս փաստաթուղթը կբացվի միայն ընթերցման համար։<br>Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի %1 բաժին։",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի %1 բաժին։",
"DE.Views.ApplicationView.textClear": "Մաքրել բոլոր դաշտերը",
"DE.Views.ApplicationView.textClearField": "Մաքուր դաշտ",
"DE.Views.ApplicationView.textCopy": "Պատճենել",
"DE.Views.ApplicationView.textCut": "Կտրել",
"DE.Views.ApplicationView.textFitToPage": "Հարմարեցնել էջին",
@ -170,6 +171,8 @@
"DE.Views.ApplicationView.textSubmit": "Հաստատել",
"DE.Views.ApplicationView.textUndo": "Հետարկել",
"DE.Views.ApplicationView.textZoom": "Խոշորացնել",
"DE.Views.ApplicationView.tipRedo": "Վերարկել",
"DE.Views.ApplicationView.tipUndo": "Հետարկել",
"DE.Views.ApplicationView.txtDarkMode": "Մուգ ռեժիմ",
"DE.Views.ApplicationView.txtDownload": "Ներբեռնել",
"DE.Views.ApplicationView.txtDownloadDocx": "Ներբեռնել որպես docx",

View file

@ -77,7 +77,7 @@
"Common.Views.SaveAsDlg.textLoading": "A carregar",
"Common.Views.SaveAsDlg.textTitle": "Pasta para guardar",
"Common.Views.SelectFileDlg.textLoading": "A carregar",
"Common.Views.SelectFileDlg.textTitle": "Selecione a origem dos dados",
"Common.Views.SelectFileDlg.textTitle": "Selecione a fonte dos dados",
"Common.Views.ShareDialog.textTitle": "Partilhar ligação",
"Common.Views.ShareDialog.txtCopy": "Copiar para a área de transferência",
"Common.Views.ShareDialog.warnCopy": "Erro do navegador! Utilize a tecla de atalho [Ctrl] + [C]",

View file

@ -159,6 +159,7 @@
"DE.Controllers.ApplicationController.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
"DE.Views.ApplicationView.textClear": "Limpar todos os campos",
"DE.Views.ApplicationView.textClearField": "Limpar campo",
"DE.Views.ApplicationView.textCopy": "Copiar",
"DE.Views.ApplicationView.textCut": "Cortar",
"DE.Views.ApplicationView.textFitToPage": "Ajustar a página",
@ -170,6 +171,8 @@
"DE.Views.ApplicationView.textSubmit": "Enviar",
"DE.Views.ApplicationView.textUndo": "Desfazer",
"DE.Views.ApplicationView.textZoom": "Zoom",
"DE.Views.ApplicationView.tipRedo": "Refazer",
"DE.Views.ApplicationView.tipUndo": "Desfazer",
"DE.Views.ApplicationView.txtDarkMode": "Modo escuro",
"DE.Views.ApplicationView.txtDownload": "Download",
"DE.Views.ApplicationView.txtDownloadDocx": "Baixar como docx",

View file

@ -159,6 +159,7 @@
"DE.Controllers.ApplicationController.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.",
"DE.Views.ApplicationView.textClear": "Очистить все поля",
"DE.Views.ApplicationView.textClearField": "Очистить поле",
"DE.Views.ApplicationView.textCopy": "Копировать",
"DE.Views.ApplicationView.textCut": "Вырезать",
"DE.Views.ApplicationView.textFitToPage": "По размеру страницы",
@ -170,6 +171,8 @@
"DE.Views.ApplicationView.textSubmit": "Отправить",
"DE.Views.ApplicationView.textUndo": "Отменить",
"DE.Views.ApplicationView.textZoom": "Масштаб",
"DE.Views.ApplicationView.tipRedo": "Повторить",
"DE.Views.ApplicationView.tipUndo": "Отменить",
"DE.Views.ApplicationView.txtDarkMode": "Темный режим",
"DE.Views.ApplicationView.txtDownload": "Скачать файл",
"DE.Views.ApplicationView.txtDownloadDocx": "Скачать как docx",

View file

@ -86,6 +86,7 @@ define([
this.setApi(api);
},
setApi: function (api) {
this.userCollection = this.getApplication().getCollection('Common.Collections.Users');
if (api) {
this.api = api;
this.api.asc_registerCallback('asc_onChangeDocumentProtection',_.bind(this.onChangeProtectDocument, this));
@ -95,6 +96,7 @@ define([
setMode: function(mode) {
this.appConfig = mode;
this.currentUserId = mode.user.id;
this.appConfig.isEdit && (this.view = this.createView('DocProtection', {
mode: mode
@ -138,10 +140,10 @@ define([
props = me.api.asc_getDocumentProtection();
if (props && props.asc_getIsPassword()) {
var win = new Common.Views.OpenDialog({
title: me.view.txtWBUnlockTitle,
title: me.view.txtUnlockTitle,
closable: true,
type: Common.Utils.importTextType.DRM,
txtOpenFile: me.view.txtWBUnlockDescription,
txtOpenFile: me.view.txtDocUnlockDescription,
validatePwd: false,
maxPasswordLength: 15,
handler: function (result, value) {
@ -168,7 +170,7 @@ define([
},
onAppReady: function (config) {
if (!this.view) return;
if (!this.api) return;
var me = this;
(new Promise(function (resolve) {
@ -178,12 +180,47 @@ define([
type = props ? props.asc_getEditType() : Asc.c_oAscEDocProtect.None,
isProtected = (type === Asc.c_oAscEDocProtect.ReadOnly || type === Asc.c_oAscEDocProtect.Comments ||
type === Asc.c_oAscEDocProtect.TrackedChanges || type === Asc.c_oAscEDocProtect.Forms);
me.view.btnProtectDoc.toggle(!!isProtected, true);
me.view && me.view.btnProtectDoc.toggle(!!isProtected, true);
if (isProtected) {
var str;
switch (type) {
case Asc.c_oAscEDocProtect.ReadOnly:
str = me.txtIsProtectedView;
break;
case Asc.c_oAscEDocProtect.Comments:
str = me.txtIsProtectedComment;
break;
case Asc.c_oAscEDocProtect.Forms:
str = me.txtIsProtectedForms;
break;
case Asc.c_oAscEDocProtect.TrackedChanges:
str = me.txtIsProtectedTrack;
break;
}
me._protectionTip = new Common.UI.SynchronizeTip({
extCls: 'no-arrow',
placement: 'bottom',
target: $('.toolbar'),
text: str,
showLink: false,
style: 'max-width: 400px;'
});
me._protectionTip.on('closeclick', function () {
this.close();
}).show();
}
props && me.applyRestrictions(type);
});
},
onChangeProtectDocument: function() {
onChangeProtectDocument: function(userId) {
if (this._protectionTip && this._protectionTip.isVisible()) {
this._protectionTip.close();
this._protectionTip = undefined;
}
var props = this.getDocProps(true),
isProtected = props && (props.isReadOnly || props.isCommentsOnly || props.isFormsOnly || props.isReviewOnly);
this.view && this.view.btnProtectDoc.toggle(isProtected, true);
@ -204,6 +241,27 @@ define([
if (this._docProtectDlg && this._docProtectDlg.isVisible())
this._docProtectDlg.SetDisabled(!!this._state.lockDocProtect || isProtected);
Common.NotificationCenter.trigger('protect:doclock', props);
if (userId && this.userCollection) {
var recUser = this.userCollection.findOriginalUser(userId);
if (recUser && (recUser.get('idOriginal') !== this.currentUserId)) {
var str = this.txtWasUnprotected;
switch (this._state.docProtection.type) {
case Asc.c_oAscEDocProtect.ReadOnly:
str = this.txtWasProtectedView;
break;
case Asc.c_oAscEDocProtect.Comments:
str = this.txtWasProtectedComment;
break;
case Asc.c_oAscEDocProtect.Forms:
str = this.txtWasProtectedForms;
break;
case Asc.c_oAscEDocProtect.TrackedChanges:
str = this.txtWasProtectedTrack;
break;
}
str && Common.NotificationCenter.trigger('showmessage', {msg: str}, {timeout: 5000, hideCloseTip: true});
}
}
},
getDocProps: function(update) {
@ -246,7 +304,17 @@ define([
if (this._docProtectDlg && this._docProtectDlg.isVisible())
this._docProtectDlg.SetDisabled(state || this._state.docProtection && (this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly ||
this._state.docProtection.isCommentsOnly || this._state.docProtection.isReviewOnly));
}
},
txtWasProtectedView: 'Document has been protected by another user.\nYou may only view this document.',
txtWasProtectedTrack: 'Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.',
txtWasProtectedComment: 'Document has been protected by another user.\nYou may only insert comments to this document.',
txtWasProtectedForms: 'Document has been protected by another user.\nYou may only fill in forms in this document.',
txtWasUnprotected: 'Document has been unprotected.',
txtIsProtectedView: 'Document is protected. You may only view this document.',
txtIsProtectedTrack: 'Document is protected. You may edit this document, but all changes will be tracked.',
txtIsProtectedComment: 'Document is protected. You may only insert comments to this document.',
txtIsProtectedForms: 'Document is protected. You may only fill in forms in this document.'
}, DE.Controllers.DocProtection || {}));
});

View file

@ -148,7 +148,7 @@ define([
};
var keymap = {};
me.hkComments = 'alt+h';
me.hkComments = Common.Utils.isMac ? 'command+alt+a' : 'alt+h';
keymap[me.hkComments] = function() {
if (me.api.can_AddQuotedComment()!==false) {
me.addComment();
@ -214,6 +214,9 @@ define([
this.api.asc_registerCallback('asc_onUnLockDocumentProps', _.bind(this.onApiUnLockDocumentProps, this));
this.api.asc_registerCallback('asc_onShowMathTrack', _.bind(this.onShowMathTrack, this));
this.api.asc_registerCallback('asc_onHideMathTrack', _.bind(this.onHideMathTrack, this));
this.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.Image, _.bind(this.onInsertImage, this));
this.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.ImageUrl, _.bind(this.onInsertImageUrl, this));
}
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onCoAuthoringDisconnect, this));
Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this));
@ -2502,6 +2505,29 @@ define([
}
},
onInsertImage: function(obj, x, y) {
if (this.api)
this.api.asc_addImage(obj);
this.editComplete();
},
onInsertImageUrl: function(obj, x, y) {
var me = this;
(new Common.Views.ImageFromUrlDialog({
handler: function(result, value) {
if (result == 'ok') {
if (me.api) {
var checkUrl = value.replace(/ /g, '');
if (!_.isEmpty(checkUrl)) {
me.api.AddImageUrl([checkUrl], undefined, undefined, obj);
}
}
}
me.editComplete();
}
})).show();
},
editComplete: function() {
this.documentHolder && this.documentHolder.fireEvent('editcomplete', this.documentHolder);
}

View file

@ -41,7 +41,9 @@
define([
'core',
'documenteditor/main/app/view/FormsTab'
'documenteditor/main/app/view/FormsTab',
'documenteditor/main/app/view/RolesManagerDlg',
'documenteditor/main/app/view/SaveFormDlg'
], function () {
'use strict';
@ -57,7 +59,10 @@ define([
initialize: function () {
},
onLaunch: function () {
this._state = {};
this._state = {
lastViewRole: undefined, // last selected role in the preview mode
lastRoleInList: undefined // last role in the roles list
};
},
setApi: function (api) {
@ -66,12 +71,13 @@ define([
this.api.asc_registerCallback('asc_onFocusObject', this.onApiFocusObject.bind(this));
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this));
Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this));
this.api.asc_registerCallback('asc_onChangeSpecialFormsGlobalSettings', _.bind(this.onChangeSpecialFormsGlobalSettings, this));
// this.api.asc_registerCallback('asc_onChangeSpecialFormsGlobalSettings', _.bind(this.onChangeSpecialFormsGlobalSettings, this));
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
this.api.asc_registerCallback('asc_onStartAction', _.bind(this.onLongActionBegin, this));
this.api.asc_registerCallback('asc_onEndAction', _.bind(this.onLongActionEnd, this));
this.api.asc_registerCallback('asc_onError', _.bind(this.onError, this));
this.api.asc_registerCallback('asc_onDownloadUrl', _.bind(this.onDownloadUrl, this));
this.api.asc_registerCallback('asc_onUpdateOFormRoles', _.bind(this.onRefreshRolesList, this));
// this.api.asc_registerCallback('asc_onShowContentControlsActions',_.bind(this.onShowContentControlsActions, this));
// this.api.asc_registerCallback('asc_onHideContentControlsActions',_.bind(this.onHideContentControlsActions, this));
@ -91,12 +97,13 @@ define([
'FormsTab': {
'forms:insert': this.onControlsSelect,
'forms:clear': this.onClearClick,
'forms:no-color': this.onNoControlsColor,
'forms:select-color': this.onSelectControlsColor,
// 'forms:no-color': this.onNoControlsColor,
// 'forms:select-color': this.onSelectControlsColor,
'forms:mode': this.onModeClick,
'forms:goto': this.onGoTo,
'forms:submit': this.onSubmitClick,
'forms:save': this.onSaveFormClick
'forms:save': this.onSaveFormClick,
'forms:manager': this.onManagerClick
},
'Toolbar': {
'tab:active': this.onActiveTab
@ -126,7 +133,8 @@ define([
var pr, i = -1, type,
paragraph_locked = false,
header_locked = false;
header_locked = false,
shape_pr = undefined;
while (++i < selectedObjects.length) {
type = selectedObjects[i].get_ObjectType();
@ -136,6 +144,9 @@ define([
paragraph_locked = pr.get_Locked();
} else if (type === Asc.c_oAscTypeSelectElement.Header) {
header_locked = pr.get_Locked();
} else if (type === Asc.c_oAscTypeSelectElement.Image) {
if (pr && pr.get_ShapeProperties())
shape_pr = pr.get_ShapeProperties();
}
}
var in_control = this.api.asc_IsContentControl();
@ -145,34 +156,41 @@ define([
(lock_type===undefined) && (lock_type = Asc.c_oAscSdtLockType.Unlocked);
var content_locked = lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.ContentLocked;
var arr = [ this.view.btnTextField, this.view.btnComboBox, this.view.btnDropDown, this.view.btnCheckBox,
this.view.btnRadioBox, this.view.btnImageField, this.view.btnEmailField, this.view.btnPhoneField, this.view.btnComplexField ];
this.view.btnRadioBox, this.view.btnImageField, this.view.btnEmailField, this.view.btnPhoneField, this.view.btnComplexField,
this.view.btnCreditCard, this.view.btnZipCode, this.view.btnDateTime];
Common.Utils.lockControls(Common.enumLock.paragraphLock, paragraph_locked, {array: arr});
Common.Utils.lockControls(Common.enumLock.headerLock, header_locked, {array: arr});
Common.Utils.lockControls(Common.enumLock.controlPlain, control_plain, {array: arr});
Common.Utils.lockControls(Common.enumLock.contentLock, content_locked, {array: arr});
Common.Utils.lockControls(Common.enumLock.complexForm, in_control && !!control_props && !!control_props.get_ComplexFormPr(), {array: [this.view.btnComplexField, this.view.btnImageField]});
var in_smart_art = shape_pr && shape_pr.asc_getFromSmartArt(),
in_smart_art_internal = shape_pr && shape_pr.asc_getFromSmartArtInternal();
Common.Utils.lockControls(Common.enumLock.inSmartart, in_smart_art, {array: arr});
Common.Utils.lockControls(Common.enumLock.inSmartartInternal, in_smart_art_internal, {array: arr});
},
onChangeSpecialFormsGlobalSettings: function() {
if (this.view && this.view.mnuFormsColorPicker) {
var clr = this.api.asc_GetSpecialFormsHighlightColor(),
show = !!clr;
this.view.mnuNoFormsColor.setChecked(!show, true);
this.view.mnuFormsColorPicker.clearSelection();
if (clr) {
clr = Common.Utils.ThemeColor.getHexColor(clr.get_r(), clr.get_g(), clr.get_b());
this.view.mnuFormsColorPicker.selectByRGB(clr, true);
}
this.view.btnHighlight.currentColor = clr;
this.view.btnHighlight.setColor(this.view.btnHighlight.currentColor || 'transparent');
}
},
// onChangeSpecialFormsGlobalSettings: function() {
// if (this.view && this.view.mnuFormsColorPicker) {
// var clr = this.api.asc_GetSpecialFormsHighlightColor(),
// show = !!clr;
// this.view.mnuNoFormsColor.setChecked(!show, true);
// this.view.mnuFormsColorPicker.clearSelection();
// if (clr) {
// clr = Common.Utils.ThemeColor.getHexColor(clr.get_r(), clr.get_g(), clr.get_b());
// this.view.mnuFormsColorPicker.selectByRGB(clr, true);
// }
// this.view.btnHighlight.currentColor = clr;
// this.view.btnHighlight.setColor(this.view.btnHighlight.currentColor || 'transparent');
// }
// },
onControlsSelect: function(type, options) {
if (!(this.toolbar.mode && this.toolbar.mode.canFeatureContentControl && this.toolbar.mode.canFeatureForms)) return;
var oPr,
oFormPr = new AscCommon.CSdtFormPr();
oFormPr.put_Role(Common.Utils.InternalSettings.get('de-last-form-role') || this._state.lastRoleInList);
this.toolbar.toolbar.fireEvent('insertcontrol', this.toolbar.toolbar);
if (type == 'picture')
this.api.asc_AddContentControlPicture(oFormPr);
@ -182,6 +200,8 @@ define([
this.api.asc_AddContentControlCheckBox(oPr, oFormPr);
} else if (type == 'combobox' || type == 'dropdown')
this.api.asc_AddContentControlList(type == 'combobox', oPr, oFormPr);
else if (type == 'datetime')
this.api.asc_AddContentControlDatePicker(); // !!!! change for datetime form
else if (type == 'text') {
var props = new AscCommon.CContentControlPr();
oPr = new AscCommon.CSdtTextFormPr();
@ -192,6 +212,8 @@ define([
oPr.put_MaskFormat(options.mask);
if (options.placeholder)
props.put_PlaceholderText(options.placeholder);
if (options.fixed!==undefined)
oFormPr.put_Fixed && oFormPr.put_Fixed(options.fixed);
}
props.put_TextFormPr(oPr);
props.put_FormPr(oFormPr);
@ -207,19 +229,23 @@ define([
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
},
onModeClick: function(state) {
onModeClick: function(state, lastViewRole) {
if (this.api) {
this.disableEditing(state);
this.api.asc_setRestriction(state ? Asc.c_oAscRestrictionType.OnlyForms : Asc.c_oAscRestrictionType.None);
this.view && this.view.setPreviewMode(state); // send role name - lastViewRole
var role = new AscCommon.CRestrictionSettings();
role.put_OFormRole(lastViewRole);
this.api.asc_setRestriction(state ? Asc.c_oAscRestrictionType.OnlyForms : Asc.c_oAscRestrictionType.None, role);
this.api.asc_SetPerformContentControlActionByClick(state);
this.api.asc_SetHighlightRequiredFields(state);
state && (this._state.lastViewRole = lastViewRole);
}
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
},
changeViewFormMode: function(state) {
if (this.view && (state !== this.view.btnViewForm.isActive())) {
this.view.btnViewForm.toggle(state, true);
if (this.view && (state !== this.view.btnViewFormRoles.isActive())) {
this.view.btnViewFormRoles.toggle(state, true);
this.onModeClick(state);
}
},
@ -231,21 +257,21 @@ define([
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
},
onNoControlsColor: function(item) {
if (!item.isChecked())
this.api.asc_SetSpecialFormsHighlightColor(201, 200, 255);
else
this.api.asc_SetSpecialFormsHighlightColor();
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
},
// onNoControlsColor: function(item) {
// if (!item.isChecked())
// this.api.asc_SetSpecialFormsHighlightColor(201, 200, 255);
// else
// this.api.asc_SetSpecialFormsHighlightColor();
// Common.NotificationCenter.trigger('edit:complete', this.toolbar);
// },
onSelectControlsColor: function(color) {
var clr = Common.Utils.ThemeColor.getRgbColor(color);
if (this.api) {
this.api.asc_SetSpecialFormsHighlightColor(clr.get_r(), clr.get_g(), clr.get_b());
}
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
},
// onSelectControlsColor: function(color) {
// var clr = Common.Utils.ThemeColor.getRgbColor(color);
// if (this.api) {
// this.api.asc_SetSpecialFormsHighlightColor(clr.get_r(), clr.get_g(), clr.get_b());
// }
// Common.NotificationCenter.trigger('edit:complete', this.toolbar);
// },
onGoTo: function(type) {
if (this.api)
@ -271,8 +297,10 @@ define([
},
onSaveFormClick: function() {
this.isFromFormSaveAs = this.appConfig.canRequestSaveAs || !!this.appConfig.saveAsUrl;
this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.OFORM, this.isFromFormSaveAs));
this.showRolesList(function() {
this.isFromFormSaveAs = this.appConfig.canRequestSaveAs || !!this.appConfig.saveAsUrl;
this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.OFORM, this.isFromFormSaveAs));
});
},
onDownloadUrl: function(url, fileType) {
@ -379,12 +407,13 @@ define([
(new Promise(function (accept, reject) {
accept();
})).then(function(){
if (config.canEditContentControl && me.view.btnHighlight) {
var clr = me.api.asc_GetSpecialFormsHighlightColor();
clr && (clr = Common.Utils.ThemeColor.getHexColor(clr.get_r(), clr.get_g(), clr.get_b()));
me.view.btnHighlight.currentColor = clr;
}
// if (config.canEditContentControl && me.view.btnHighlight) {
// var clr = me.api.asc_GetSpecialFormsHighlightColor();
// clr && (clr = Common.Utils.ThemeColor.getHexColor(clr.get_r(), clr.get_g(), clr.get_b()));
// me.view.btnHighlight.currentColor = clr;
// }
config.isEdit && config.canFeatureContentControl && config.isFormCreator && me.showCreateFormTip(); // show tip only when create form in docxf
me.onRefreshRolesList();
me.onChangeProtectDocument();
});
},
@ -435,6 +464,42 @@ define([
}
},
onRefreshRolesList: function(roles) {
if (!roles) {
var oform = this.api.asc_GetOForm();
oform && (roles = oform.asc_getAllRoles());
}
this._state.lastRoleInList = (roles && roles.length>0) ? roles[roles.length-1].asc_getSettings().asc_getName() : undefined;
this.view && this.view.fillRolesMenu(roles, this._state.lastViewRole);
},
onManagerClick: function() {
var me = this;
this.api.asc_GetOForm() && (new DE.Views.RolesManagerDlg({
api: me.api,
handler: function(result, settings) {
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
},
props : undefined
})).on('close', function(win){
}).show();
},
showRolesList: function(callback) {
var me = this,
oform = this.api.asc_GetOForm();
oform && (new DE.Views.SaveFormDlg({
handler: function(result, settings) {
if (result=='ok')
callback.call(me);
else
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
},
roles: oform.asc_getAllRoles()
})).show();
},
onActiveTab: function(tab) {
if (tab !== 'forms') {
this.tipSaveForm && this.tipSaveForm.close();

View file

@ -130,21 +130,22 @@ define([
isCommentsOnly: false
}
};
Common.util.Shortcuts.delegateShortcuts({
shortcuts: {
'command+shift+s,ctrl+shift+s': _.bind(this.onShortcut, this, 'save'),
'command+f,ctrl+f': _.bind(this.onShortcut, this, 'search'),
'ctrl+h': _.bind(this.onShortcut, this, 'replace'),
'alt+f': _.bind(this.onShortcut, this, 'file'),
'esc': _.bind(this.onShortcut, this, 'escape'),
/** coauthoring begin **/
'alt+q': _.bind(this.onShortcut, this, 'chat'),
'command+shift+h,ctrl+shift+h': _.bind(this.onShortcut, this, 'comments'),
/** coauthoring end **/
'f1': _.bind(this.onShortcut, this, 'help')
}
});
var keymap = {
'command+shift+s,ctrl+shift+s': _.bind(this.onShortcut, this, 'save'),
'command+f,ctrl+f': _.bind(this.onShortcut, this, 'search'),
'ctrl+h': _.bind(this.onShortcut, this, 'replace'),
'esc': _.bind(this.onShortcut, this, 'escape'),
/** coauthoring begin **/
'command+shift+h,ctrl+shift+h': _.bind(this.onShortcut, this, 'comments'),
/** coauthoring end **/
'f1': _.bind(this.onShortcut, this, 'help')
};
if (!Common.Utils.isMac) {
keymap['alt+f'] = _.bind(this.onShortcut, this, 'file');
keymap['alt+q'] = _.bind(this.onShortcut, this, 'chat');
}
Common.util.Shortcuts.delegateShortcuts({shortcuts:keymap});
Common.util.Shortcuts.suspendEvents();
},
@ -602,7 +603,7 @@ define([
},
updatePreviewMode: function() {
var viewmode = this._state.disableEditing || this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly;
var viewmode = this._state.disableEditing || this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly;
if (this.viewmode === viewmode) return;
this.viewmode = viewmode;

View file

@ -207,6 +207,14 @@ define([
case '2': this.api.SetFontRenderingMode(2); break;
}
if ( !Common.Utils.isIE ) {
if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_DE}}') ) {
const _url_obj = new URL('{{HELP_CENTER_WEB_DE}}');
_url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage());
Common.Utils.InternalSettings.set("url-help-center", _url_obj.toString());
}
}
this.api.asc_registerCallback('asc_onError', _.bind(this.onError, this));
this.api.asc_registerCallback('asc_onDocumentContentReady', _.bind(this.onDocumentContentReady, this));
this.api.asc_registerCallback('asc_onOpenDocumentProgress', _.bind(this.onOpenDocument, this));
@ -1515,8 +1523,7 @@ define([
this.appOptions.canEditStyles = this.appOptions.canLicense && this.appOptions.canEdit;
this.appOptions.canPrint = (this.permissions.print !== false);
this.appOptions.canPreviewPrint = this.appOptions.canPrint && !Common.Utils.isMac && this.appOptions.isDesktopApp;
this.appOptions.canQuickPrint = this.appOptions.canPrint && !Common.Utils.isMac && this.appOptions.isDesktopApp &&
!(this.editorConfig.customization && this.editorConfig.customization.compactHeader);
this.appOptions.canQuickPrint = this.appOptions.canPrint && !Common.Utils.isMac && this.appOptions.isDesktopApp;
this.appOptions.canRename = this.editorConfig.canRename;
this.appOptions.buildVersion = params.asc_getBuildVersion();
this.appOptions.canForcesave = this.appOptions.isEdit && !this.appOptions.isOffline && (typeof (this.editorConfig.customization) == 'object' && !!this.editorConfig.customization.forcesave);
@ -1545,7 +1552,7 @@ define([
this.appOptions.canEditContentControl = (this.permissions.modifyContentControl!==false);
this.appOptions.canHelp = !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.help===false);
this.appOptions.canSubmitForms = false; // this.appOptions.canLicense && (typeof (this.editorConfig.customization) == 'object') && !!this.editorConfig.customization.submitForm;
this.appOptions.canFillForms = this.appOptions.canLicense && ((this.permissions.fillForms===undefined) ? this.appOptions.isEdit : this.permissions.fillForms) && (this.editorConfig.mode !== 'view');
this.appOptions.canFillForms = this.appOptions.canLicense && (this.appOptions.isEdit ? true : this.permissions.fillForms) && (this.editorConfig.mode !== 'view');
this.appOptions.isRestrictedEdit = !this.appOptions.isEdit && (this.appOptions.canComments || this.appOptions.canFillForms);
if (this.appOptions.isRestrictedEdit && this.appOptions.canComments && this.appOptions.canFillForms) // must be one restricted mode, priority for filling forms
this.appOptions.canComments = false;

View file

@ -525,6 +525,7 @@ define([
paperOrientation: size ? (size['H'] > size['W'] ? 'portrait' : 'landscape') : null
});
this.printSettings.menu.hide();
if ( print ) {
var opts = new Asc.asc_CDownloadOptions(null, Common.Utils.isChrome || Common.Utils.isOpera || Common.Utils.isGecko && Common.Utils.firefoxVersion>86);
opts.asc_setAdvancedOptions(this.adjPrintParams);
@ -534,7 +535,6 @@ define([
opts.asc_setAdvancedOptions(this.adjPrintParams);
this.api.asc_DownloadAs(opts);
}
this.printSettings.menu.hide();
},
inputPagesChanging: function (input, value) {

View file

@ -215,7 +215,7 @@ define([
if (!this._settings[Common.Utils.documentSettingsType.MailMerge].locked) // lock MailMerge-InsertField, если хотя бы один объект locked
this._settings[Common.Utils.documentSettingsType.MailMerge].locked = value.get_Locked() || isProtected;
if (!this._settings[Common.Utils.documentSettingsType.Signature].locked) // lock Signature, если хотя бы один объект locked
this._settings[Common.Utils.documentSettingsType.Signature].locked = value.get_Locked() || isProtected;
this._settings[Common.Utils.documentSettingsType.Signature].locked = value.get_Locked();
}
if(is_form && is_form.get_Fixed()) {
@ -225,7 +225,8 @@ define([
if (is_form && this.rightmenu.formSettings) {
var spectype = control_props.get_SpecificType();
if (spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.Complex ||
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.None) {
spectype==Asc.c_oAscContentControlSpecificType.ComboBox || spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.None ||
spectype==Asc.c_oAscContentControlSpecificType.DateTime) {
settingsType = Common.Utils.documentSettingsType.Form;
this._settings[settingsType].props = control_props;
this._settings[settingsType].locked = control_lock || isProtected;
@ -270,6 +271,9 @@ define([
if (!this._settings[Common.Utils.documentSettingsType.MailMerge].hidden)
this._settings[Common.Utils.documentSettingsType.MailMerge].panel.setLocked(this._settings[Common.Utils.documentSettingsType.MailMerge].locked);
if (!this._settings[Common.Utils.documentSettingsType.Signature].hidden)
this._settings[Common.Utils.documentSettingsType.Signature].panel.setProtected(isProtected);
if (!this.rightmenu.minimizedMode || open) {
var active;
@ -433,6 +437,7 @@ define([
this._settings[type].hidden = disabled ? 1 : 0;
this._settings[type].btn.setDisabled(disabled);
this._settings[type].panel.setLocked(this._settings[type].locked);
this._settings[type].panel.setProtected(this._state.docProtection ? this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly : false);
},
SetDisabled: function(disabled, allowMerge, allowSignature) {
@ -468,7 +473,8 @@ define([
} else {
var selectedElements = this.api.getSelectedElements();
if (selectedElements.length > 0)
this.onFocusObject(selectedElements, false, !Common.Utils.InternalSettings.get("de-hide-right-settings"));
this.onFocusObject(selectedElements, false, !Common.Utils.InternalSettings.get("de-hide-right-settings") && // user didn't close panel
!Common.Utils.InternalSettings.get("de-hidden-rightmenu")); // user didn't hide right menu
}
}
},
@ -501,11 +507,17 @@ define([
}
},
onRightMenuHide: function (view, status) {
onRightMenuHide: function (view, status) { // status = true when show panel
if (this.rightmenu) {
!status && this.rightmenu.clearSelection();
status ? this.rightmenu.show() : this.rightmenu.hide();
Common.localStorage.setBool('de-hidden-rightmenu', !status);
Common.Utils.InternalSettings.set("de-hidden-rightmenu", !status);
if (status) {
var selectedElements = this.api.getSelectedElements();
if (selectedElements.length > 0)
this.onFocusObject(selectedElements, false, !Common.Utils.InternalSettings.get("de-hide-right-settings"));
}
}
Common.NotificationCenter.trigger('layout:changed', 'main');

View file

@ -124,7 +124,7 @@ define([
for (var l = 0; l < text.length; l++) {
var charCode = text.charCodeAt(l),
char = text.charAt(l);
if (AscCommon.IsPunctuation(charCode) !== undefined || char.trim() === '') {
if (AscCommon.IsPunctuation(charCode) || char.trim() === '') {
isPunctuation = true;
break;
}
@ -333,7 +333,7 @@ define([
onEndTextAroundSearch: function () {
if (this.view) {
this._state.isStartedAddingResults = false;
this.view.$resultsContainer.scroller.update({alwaysVisibleY: true});
this.view.updateScrollers();
}
},

View file

@ -377,6 +377,7 @@ define([
Common.Gateway.on('setmailmergerecipients', _.bind(this.setMailMergeRecipients, this));
$('#id-toolbar-menu-new-control-color').on('click', _.bind(this.onNewControlsColor, this));
toolbar.listStylesAdditionalMenuItem.on('click', this.onMenuSaveStyle.bind(this));
toolbar.btnPrint.menu && toolbar.btnPrint.menu.on('item:click', _.bind(this.onPrintMenu, this));
this.onSetupCopyStyleButton();
this.onBtnChangeState('undo:disabled', toolbar.btnUndo, toolbar.btnUndo.isDisabled());
@ -843,8 +844,8 @@ define([
toolbar.btnInsDateTime, toolbar.btnBlankPage, toolbar.btnInsertEquation, toolbar.btnInsertSymbol ])});
this.toolbar.lockToolbar(Common.enumLock.inChart, in_chart, {array: toolbar.textOnlyControls.concat([toolbar.btnClearStyle, toolbar.btnInsertEquation])});
this.toolbar.lockToolbar(Common.enumLock.inSmartart, in_smart_art, {array: toolbar.textOnlyControls.concat([toolbar.btnClearStyle])});
this.toolbar.lockToolbar(Common.enumLock.inSmartartInternal, in_smart_art_internal, {array: toolbar.textOnlyControls.concat([toolbar.btnClearStyle, toolbar.btnDecLeftOffset, toolbar.btnIncLeftOffset])});
this.toolbar.lockToolbar(Common.enumLock.inSmartart, in_smart_art, {array: toolbar.textOnlyControls.concat([toolbar.btnClearStyle, toolbar.btnContentControls])});
this.toolbar.lockToolbar(Common.enumLock.inSmartartInternal, in_smart_art_internal, {array: toolbar.textOnlyControls.concat([toolbar.btnClearStyle, toolbar.btnDecLeftOffset, toolbar.btnIncLeftOffset, toolbar.btnContentControls])});
this.toolbar.lockToolbar(Common.enumLock.inEquation, in_equation, {array: toolbar.btnsPageBreak.concat([toolbar.btnDropCap, toolbar.btnInsertTable, toolbar.btnBlankPage, toolbar.btnInsertShape,
toolbar.btnInsertText, toolbar.btnInsertTextArt, toolbar.btnInsertImage, toolbar.btnInsertSmartArt, toolbar.btnSuperscript, toolbar.btnSubscript, toolbar.btnEditHeader])});
@ -1076,11 +1077,31 @@ define([
},
onPrint: function(e) {
Common.NotificationCenter.trigger('file:print', this.toolbar);
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
if (this.toolbar.btnPrint.options.printType == 'print') {
Common.NotificationCenter.trigger('file:print', this.toolbar);
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
} else {
var _main = this.getApplication().getController('Main');
_main.onPrintQuick();
}
Common.component.Analytics.trackEvent('Print');
Common.component.Analytics.trackEvent('ToolBar', 'Print');
},
onPrintMenu: function (btn, e){
var oldType = this.toolbar.btnPrint.options.printType;
var newType = e.value;
if(newType != oldType) {
this.toolbar.btnPrint.changeIcon({
next: e.options.iconClsForMainBtn,
curr: this.toolbar.btnPrint.menu.items.filter(function(item){return item.value == oldType;})[0].options.iconClsForMainBtn
});
this.toolbar.btnPrint.updateHint([e.caption + e.options.platformKey]);
this.toolbar.btnPrint.options.printType = newType;
}
this.onPrint(e);
},
onSave: function(e) {
@ -3151,7 +3172,8 @@ define([
toolbar.onCollaborativeChanges();
}
}
disable ? Common.util.Shortcuts.suspendEvents('alt+h') : Common.util.Shortcuts.resumeEvents('alt+h');
var hkComments = Common.Utils.isMac ? 'command+alt+a' : 'alt+h';
disable ? Common.util.Shortcuts.suspendEvents(hkComments) : Common.util.Shortcuts.resumeEvents(hkComments);
},
onSelectRecepientsClick: function(menu, item, e) {

View file

@ -4,6 +4,17 @@
<label class="header padding-small" id="form-settings-name"><%= scope.textField %></label>
</td>
</tr>
<tr>
<td class="padding-small">
<label class="input-label"><%= scope.textFillRoles %></label>
<div id="form-combo-roles" style="width: 100%;"></div>
</td>
</tr>
<tr>
<td class="padding-small">
<div class="separator horizontal"></div>
</td>
</tr>
<tr class="form-keyfield">
<td class="padding-small">
<label class="input-label"><%= scope.textKey %></label>
@ -48,7 +59,12 @@
</tr>
<tr class="form-textfield-mask">
<td class="padding-small">
<div id="form-txt-mask"></div>
<div id="form-txt-mask" style="width: 100%;"></div>
</td>
</tr>
<tr class="form-textfield-regexp">
<td class="padding-small">
<div id="form-txt-regexp"></div>
</td>
</tr>
<tr class="form-textfield">
@ -83,6 +99,20 @@
</td>
</tr>
</table>
<table cols="1">
<tr class="form-datetime">
<td class="padding-small">
<label class="input-label"><%= scope.textDateFormat %></label>
<div id="form-cmb-date-format" style="width: 100%;"></div>
</td>
</tr>
<tr class="form-datetime">
<td class="padding-small">
<label class="input-label"><%= scope.textLang %></label>
<div id="form-cmb-date-lang" style="width: 100%;"></div>
</td>
</tr>
</table>
<table cols="1">
<tr class="form-fixed">
<td class="padding-small">

View file

@ -0,0 +1,27 @@
<div class="settings-panel active">
<div class="inner-content">
<table cols="2" style="width: 100%;">
<tr>
<td class="padding-small">
<label><%= scope.textDescription %></label>
</td>
<td class="padding-small" style="width: 60px;">
<div id="roles-manager-btn-down" style="display: inline-block;float: right;margin-left: 5px;"></div>
<div id="roles-manager-btn-up" style="display: inline-block;float: right;"></div>
</td>
</tr>
<tr>
<td colspan=2 class="padding-small">
<div id="roles-manager-roles-list" class="roles-tableview no-borders" style="width:100%; height: 170px;"></div>
</td>
</tr>
<tr>
<td colspan=2 class="padding-large">
<button type="button" class="btn btn-text-default" id="roles-manager-btn-new" style="min-width: 100px;margin-right:5px;"><%= scope.textNew %></button>
<button type="button" class="btn btn-text-default" id="roles-manager-btn-edit" style="min-width: 100px;"><%= scope.textEdit %></button>
<button type="button" class="btn btn-text-default" id="roles-manager-btn-delete" style="min-width: 100px; float: right;"><%= scope.textDelete %></button>
</td>
</tr>
</table>
</div>
</div>

View file

@ -7,6 +7,10 @@
<div id="status-goto-page" style="display:inline-block;"></div>
</div>
</div>
<div class="separator short"></div>
<div class="status-group">
<div id="slot-status-btn-info" style="display: inline-block;" class="margin-top-small"></div>
</div>
<div class="status-group" style="width:100%; text-align:center;">
<label id="label-action" class="status-label margin-top-large" data-layout-name="statusBar-actionStatus"></label>
</div>

View file

@ -357,7 +357,7 @@ define([
});
this.lockedControls.push(this.btnLeft);
this.btnLeft.on('click', _.bind(function() {
this.spnX.setValue(this.spnX.getNumberValue() - 10);
this.spnX.setValue(Math.ceil((this.spnX.getNumberValue() - 10)/10)*10);
}, this));
this.btnRight = new Common.UI.Button({
@ -370,7 +370,7 @@ define([
});
this.lockedControls.push(this.btnRight);
this.btnRight.on('click', _.bind(function() {
this.spnX.setValue(this.spnX.getNumberValue() + 10);
this.spnX.setValue(Math.floor((this.spnX.getNumberValue() + 10)/10)*10);
}, this));
this.spnY = new Common.UI.MetricSpinner({
@ -399,7 +399,7 @@ define([
});
this.lockedControls.push(this.btnUp);
this.btnUp.on('click', _.bind(function() {
this.spnY.setValue(this.spnY.getNumberValue() - 10);
this.spnY.setValue(Math.ceil((this.spnY.getNumberValue() - 10)/10)*10);
}, this));
this.btnDown= new Common.UI.Button({
@ -412,7 +412,7 @@ define([
});
this.lockedControls.push(this.btnDown);
this.btnDown.on('click', _.bind(function() {
this.spnY.setValue(this.spnY.getNumberValue() + 10);
this.spnY.setValue(Math.floor((this.spnY.getNumberValue() + 10)/10)*10);
}, this));
this.spnPerspective = new Common.UI.MetricSpinner({
@ -441,7 +441,7 @@ define([
});
this.lockedControls.push(this.btnNarrow);
this.btnNarrow.on('click', _.bind(function() {
this.spnPerspective.setValue(this.spnPerspective.getNumberValue() - 5);
this.spnPerspective.setValue(Math.ceil((this.spnPerspective.getNumberValue() - 5)/5)*5);
}, this));
this.btnWiden= new Common.UI.Button({
@ -454,7 +454,7 @@ define([
});
this.lockedControls.push(this.btnWiden);
this.btnWiden.on('click', _.bind(function() {
this.spnPerspective.setValue(this.spnPerspective.getNumberValue() + 5);
this.spnPerspective.setValue(Math.floor((this.spnPerspective.getNumberValue() + 5)/5)*5);
}, this));
this.chRightAngle = new Common.UI.CheckBox({

View file

@ -141,7 +141,8 @@ define([
txtDocProtectedComment: 'Document is protected.<br>You may only insert comments to this document.',
txtDocProtectedForms: 'Document is protected.<br>You may only fill in forms in this document.',
hintProtectDoc: 'Protect document',
txtDocUnlockDescription: 'Enter a password to unprotect document'
txtDocUnlockDescription: 'Enter a password to unprotect document',
txtUnlockTitle: 'Unprotect Document'
}
}()), DE.Views.DocProtection || {}));
});

View file

@ -2926,7 +2926,7 @@ define([
SetDisabled: function(state, canProtect, fillFormMode) {
this._isDisabled = state;
this._canProtect = canProtect;
this._canProtect = state ? canProtect : true;
this._fillFormMode = state ? fillFormMode : false;
},

View file

@ -69,7 +69,8 @@ define([
if (item.options.action === 'help') {
if ( panel.noHelpContents === true && navigator.onLine ) {
this.fireEvent('item:click', [this, 'external-help', true]);
!!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank');
const helpCenter = Common.Utils.InternalSettings.get('url-help-center');
!!helpCenter && window.open(helpCenter, '_blank');
return;
}
}

View file

@ -838,7 +838,7 @@ define([
$('tr.comments', this.el)[mode.canCoAuthoring ? 'show' : 'hide']();
/** coauthoring end **/
$('tr.quick-print', this.el)[mode.canQuickPrint ? 'show' : 'hide']();
$('tr.quick-print', this.el)[mode.canQuickPrint && !(mode.customization && mode.customization.compactHeader && mode.isEdit) ? 'show' : 'hide']();
$('tr.macros', this.el)[(mode.customization && mode.customization.macros===false) ? 'hide' : 'show']();
if ( !Common.UI.Themes.available() ) {
$('tr.themes, tr.themes + tr.divider', this.el).hide();
@ -2105,14 +2105,6 @@ define([
this.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
this.openUrl = null;
if ( !Common.Utils.isIE ) {
if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_DE}}') ) {
const _url_obj = new URL('{{HELP_CENTER_WEB_DE}}');
_url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage());
this.urlHelpCenter = _url_obj.toString();
}
}
this.en_data = [
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"},
{"src": "ProgramInterface/FileTab.htm", "name": "File tab"},
@ -2234,20 +2226,8 @@ define([
store.url = 'resources/help/{{DEFAULT_LANG}}/Contents.json';
store.fetch(config);
} else {
if ( Common.Controllers.Desktop.isActive() ) {
if ( store.contentLang === '{{DEFAULT_LANG}}' || !Common.Controllers.Desktop.helpUrl() ) {
me.noHelpContents = true;
me.iFrame.src = '../../common/main/resources/help/download.html';
} else {
store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang;
me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/';
store.url = me.urlPref + 'Contents.json';
store.fetch(config);
}
} else {
me.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
store.reset(me.en_data);
}
me.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
store.reset(me.en_data);
}
},
success: function () {
@ -2261,9 +2241,21 @@ define([
me.onSelectItem(me.openUrl ? me.openUrl : rec.get('src'));
}
};
store.url = 'resources/help/' + lang + '/Contents.json';
store.fetch(config);
this.urlPref = 'resources/help/' + lang + '/';
if ( Common.Controllers.Desktop.isActive() ) {
if ( !Common.Controllers.Desktop.isHelpAvailable() ) {
me.noHelpContents = true;
me.iFrame.src = '../../common/main/resources/help/download.html';
} else {
me.urlPref = Common.Controllers.Desktop.helpUrl() + '/';
store.url = me.urlPref + 'Contents.json';
store.fetch(config);
}
} else {
store.url = 'resources/help/' + lang + '/Contents.json';
store.fetch(config);
this.urlPref = 'resources/help/' + lang + '/';
}
}
},
@ -2588,23 +2580,23 @@ define([
takeFocusOnClose: true,
cls: 'input-group-nr',
data: [
{ value: 0, displayValue:'US Letter (21,59cm x 27,94cm)', caption: 'US Letter', size: [215.9, 279.4]},
{ value: 1, displayValue:'US Legal (21,59cm x 35,56cm)', caption: 'US Legal', size: [215.9, 355.6]},
{ value: 2, displayValue:'A4 (21cm x 29,7cm)', caption: 'A4', size: [210, 297]},
{ value: 3, displayValue:'A5 (14,8cm x 21cm)', caption: 'A5', size: [148, 210]},
{ value: 4, displayValue:'B5 (17,6cm x 25cm)', caption: 'B5', size: [176, 250]},
{ value: 5, displayValue:'Envelope #10 (10,48cm x 24,13cm)', caption: 'Envelope #10', size: [104.8, 241.3]},
{ value: 6, displayValue:'Envelope DL (11cm x 22cm)', caption: 'Envelope DL', size: [110, 220]},
{ value: 7, displayValue:'Tabloid (27,94cm x 43,18cm)', caption: 'Tabloid', size: [279.4, 431.8]},
{ value: 8, displayValue:'A3 (29,7cm x 42cm)', caption: 'A3', size: [297, 420]},
{ value: 9, displayValue:'Tabloid Oversize (30,48cm x 45,71cm)', caption: 'Tabloid Oversize', size: [304.8, 457.1]},
{ value: 10, displayValue:'ROC 16K (19,68cm x 27,3cm)', caption: 'ROC 16K', size: [196.8, 273]},
{ value: 11, displayValue:'Envelope Choukei 3 (11,99cm x 23,49cm)', caption: 'Envelope Choukei 3', size: [119.9, 234.9]},
{ value: 12, displayValue:'Super B/A3 (33,02cm x 48,25cm)', caption: 'Super B/A3', size: [330.2, 482.5]},
{ value: 13, displayValue:'A4 (84,1cm x 118,9cm)', caption: 'A0', size: [841, 1189]},
{ value: 14, displayValue:'A4 (59,4cm x 84,1cm)', caption: 'A1', size: [594, 841]},
{ value: 16, displayValue:'A4 (42cm x 59,4cm)', caption: 'A2', size: [420, 594]},
{ value: 17, displayValue:'A4 (10,5cm x 14,8cm)', caption: 'A6', size: [105, 148]},
{ value: 0, displayValue:'US Letter (21,59 cm x 27,94 cm)', caption: 'US Letter', size: [215.9, 279.4]},
{ value: 1, displayValue:'US Legal (21,59 cm x 35,56 cm)', caption: 'US Legal', size: [215.9, 355.6]},
{ value: 2, displayValue:'A4 (21 cm x 29,7 cm)', caption: 'A4', size: [210, 297]},
{ value: 3, displayValue:'A5 (14,8 cm x 21 cm)', caption: 'A5', size: [148, 210]},
{ value: 4, displayValue:'B5 (17,6 cm x 25 cm)', caption: 'B5', size: [176, 250]},
{ value: 5, displayValue:'Envelope #10 (10,48 cm x 24,13 cm)', caption: 'Envelope #10', size: [104.8, 241.3]},
{ value: 6, displayValue:'Envelope DL (11 cm x 22 cm)', caption: 'Envelope DL', size: [110, 220]},
{ value: 7, displayValue:'Tabloid (27,94 cm x 43,18 cm)', caption: 'Tabloid', size: [279.4, 431.8]},
{ value: 8, displayValue:'A3 (29,7 cm x 42 cm)', caption: 'A3', size: [297, 420]},
{ value: 9, displayValue:'Tabloid Oversize (30,48 cm x 45,71 cm)', caption: 'Tabloid Oversize', size: [304.8, 457.1]},
{ value: 10, displayValue:'ROC 16K (19,68 cm x 27,3 cm)', caption: 'ROC 16K', size: [196.8, 273]},
{ value: 11, displayValue:'Envelope Choukei 3 (11,99 cm x 23,49 cm)', caption: 'Envelope Choukei 3', size: [119.9, 234.9]},
{ value: 12, displayValue:'Super B/A3 (33,02 cm x 48,25 cm)', caption: 'Super B/A3', size: [330.2, 482.5]},
{ value: 13, displayValue:'A4 (84,1 cm x 118,9 cm)', caption: 'A0', size: [841, 1189]},
{ value: 14, displayValue:'A4 (59,4 cm x 84,1 cm)', caption: 'A1', size: [594, 841]},
{ value: 16, displayValue:'A4 (42 cm x 59,4 cm)', caption: 'A2', size: [420, 594]},
{ value: 17, displayValue:'A4 (10,5 cm x 14,8 cm)', caption: 'A6', size: [105, 148]},
{ value: -1, displayValue: this.txtCustom, caption: this.txtCustom, size: []}
],
dataHint: '2',
@ -2767,8 +2759,8 @@ define([
pagewidth = size[0],
pageheight = size[1];
item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ' x ' +
parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ')');
item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ' x ' +
parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ')');
}
this.cmbPaperSize.onResetItems();
this.cmbPaperMargins.onResetItems();

View file

@ -98,6 +98,7 @@ define([
this.TextOnlySettings = el.find('.form-textfield');
this.TextOnlySimpleSettings = el.find('.form-textfield-simple'); // text field not in complex form
this.TextOnlySettingsMask = el.find('.form-textfield-mask');
this.TextOnlySettingsRegExp = el.find('.form-textfield-regexp');
this.PlaceholderSettings = el.find('.form-placeholder');
this.KeySettings = el.find('.form-keyfield');
this.KeySettingsTd = this.KeySettings.find('td');
@ -108,6 +109,7 @@ define([
this.ConnectedSettings = el.find('.form-connected');
this.FixedSettings = el.find('.form-fixed');
this.NotInComplexSettings = el.find('.form-not-in-complex');
this.DateOnlySettings = el.find('.form-datetime');
},
createDelayedElements: function() {
@ -125,7 +127,8 @@ define([
this.cmbKey = new Common.UI.ComboBox({
el: $markup.findById('#form-combo-key'),
cls: 'input-group-nr',
menuStyle: 'min-width: 100%;',
menuCls: 'menu-absolute',
menuStyle: 'min-width: 195px; max-height: 190px;',
editable: true,
data: [],
dataHint: '1',
@ -295,7 +298,8 @@ define([
this.cmbGroupKey = new Common.UI.ComboBox({
el: $markup.findById('#form-combo-group-key'),
cls: 'input-group-nr',
menuStyle: 'min-width: 100%;',
menuCls: 'menu-absolute',
menuStyle: 'min-width: 195px; max-height: 190px;',
editable: true,
data: [],
dataHint: '1',
@ -503,6 +507,53 @@ define([
yValue = this.sldrPreviewPositionY.getValue();
this.imagePositionLabel.text(xValue + ',' + yValue);
// Roles
var itemsTemplate =
[
'<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem" style="padding-left: 10px;">',
'<span class="color" style="background: <%= item.color %>;"></span>',
'<%= item.displayValue %>',
'</a></li>',
'<% }); %>'
];
var template = [
'<div class="input-group combobox input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">',
'<div class="form-control" style="display: block; padding-top:3px; line-height: 14px; cursor: pointer; <%= style %>"></div>',
'<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">'].concat(itemsTemplate).concat([
'</ul>',
'</div>'
]);
this.cmbRoles = new Common.UI.ComboBoxCustom({
el: $markup.findById('#form-combo-roles'),
cls: 'menu-roles',
menuCls: 'menu-absolute',
menuStyle: 'min-width: 195px; max-height: 190px;',
style: 'width: 100%;',
editable: false,
template : _.template(template.join('')),
itemsTemplate: _.template(itemsTemplate.join('')),
data: [],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'big',
updateFormControl: function(record) {
var formcontrol = $(this.el).find('.form-control');
if (record) {
formcontrol[0].innerHTML = '<span class="color" style="background:' + record.get('color') + ';"></span>' + record.get('displayValue');
} else
formcontrol[0].innerHTML = '';
}
});
this.onRefreshRolesList(this.roles);
this.lockedControls.push(this.cmbRoles);
this.cmbRoles.on('selected', this.onRolesChanged.bind(this));
this.cmbFormat = new Common.UI.ComboBox({
el: $markup.findById('#form-combo-format'),
cls: 'input-group-nr',
@ -521,8 +572,8 @@ define([
this.cmbFormat.setValue(Asc.TextFormFormatType.None);
this.cmbFormat.on('selected', this.onFormatSelect.bind(this));
this.txtMask = new Common.UI.InputField({
el : $markup.findById('#form-txt-mask'),
this.txtRegExp = new Common.UI.InputField({
el : $markup.findById('#form-txt-regexp'),
allowBlank : true,
validateOnChange: false,
validateOnBlur: false,
@ -532,11 +583,41 @@ define([
dataHintDirection: 'left',
dataHintOffset: 'small'
});
this.lockedControls.push(this.txtMask);
this.txtMask.on('changed:after', this.onMaskChanged.bind(this));
this.txtMask.on('inputleave', function(){ me.fireEvent('editcomplete', me);});
this.txtMask.cmpEl.on('focus', 'input.form-control', function() {
setTimeout(function(){me.txtMask._input && me.txtMask._input.select();}, 1);
this.lockedControls.push(this.txtRegExp);
this.txtRegExp.on('changed:after', this.onRegExpChanged.bind(this));
this.txtRegExp.on('inputleave', function(){ me.fireEvent('editcomplete', me);});
this.txtRegExp.cmpEl.on('focus', 'input.form-control', function() {
setTimeout(function(){me.txtRegExp._input && me.txtRegExp._input.select();}, 1);
});
this.cmbMask = new Common.UI.ComboBoxCustom({
el: $markup.findById('#form-txt-mask'),
cls: 'input-group-nr',
menuCls: 'menu-absolute',
menuStyle: 'min-width: 195px;',
editable: true,
data: [
{ displayValue: this.textPhone1, value: '(999)999-9999' },
{ displayValue: this.textPhone2, value: '+999999999999' },
{ displayValue: this.textZipCodeUS, value: '99999-9999' },
{ displayValue: this.textUSSSN, value: '999-99-9999' },
{ displayValue: this.textUKPassport, value: '999999999' },
{ displayValue: this.textCreditCard, value: '9999-9999-9999-9999' }],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'big',
updateFormControl: function(record) {
record && this.setRawValue(record.get('value'));
// $('.selected', $(this.el)).removeClass('selected');
}
});
this.cmbMask.setValue('');
this.lockedControls.push(this.cmbMask);
this.cmbMask.on('selected', this.onMaskChanged.bind(this));
this.cmbMask.on('changed:after', this.onMaskChanged.bind(this));
this.cmbMask.on('hide:after', this.onHideMenus.bind(this));
this.cmbMask.cmpEl.on('focus', 'input.form-control', function() {
setTimeout(function(){me.cmbMask._input && me.cmbMask._input.select();}, 1);
});
this.txtFormatSymbols = new Common.UI.InputField({
@ -557,6 +638,53 @@ define([
setTimeout(function(){me.txtFormatSymbols._input && me.txtFormatSymbols._input.select();}, 1);
});
// Date & Time
this.cmbDateFormat = new Common.UI.ComboBox({
el: $markup.findById('#form-cmb-date-format'),
cls: 'input-group-nr',
menuCls: 'menu-absolute',
menuStyle: 'min-width: 195px; max-height: 190px;',
editable: true,
data: [],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'big'
});
this.cmbDateFormat.setValue('');
this.lockedControls.push(this.cmbDateFormat);
this.cmbDateFormat.on('selected', this.onDateFormatChanged.bind(this));
this.cmbDateFormat.on('changed:after', this.onDateFormatChanged.bind(this));
this.cmbDateFormat.on('hide:after', this.onHideMenus.bind(this));
this.cmbDateFormat.cmpEl.on('focus', 'input.form-control', function() {
setTimeout(function(){me.cmbDateFormat._input && me.cmbDateFormat._input.select();}, 1);
});
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
{ value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value);
item.displayValue = langinfo[1];
item.langName = langinfo[0];
});
this.cmbLang = new Common.UI.ComboBox({
el: $markup.findById('#form-cmb-date-lang'),
cls: 'input-group-nr',
menuCls: 'menu-absolute',
menuStyle: 'min-width: 195px; max-height: 190px;',
editable: false,
data: data,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'big'
});
this.lockedControls.push(this.cmbLang);
this.cmbLang.setValue(0x0409);
this.cmbLang.on('selected',function(combo, record) {
me.updateDateFormats(record.value);
});
this.updateMetricUnit();
this.UpdateThemeColors();
},
@ -565,6 +693,7 @@ define([
this.api = api;
if (this.api) {
// this.api.asc_registerCallback('asc_onParaSpacingLine', _.bind(this._onLineSpacing, this));
this.api.asc_registerCallback('asc_onUpdateOFormRoles', _.bind(this.onRefreshRolesList, this));
}
Common.NotificationCenter.on('storage:image-insert', _.bind(this.insertImageFromStorage, this));
return this;
@ -951,12 +1080,12 @@ define([
formTextPr.put_LetterFormat();
break;
case Asc.TextFormFormatType.Mask:
this.txtMask.setValue('*');
formTextPr.put_MaskFormat(this.txtMask.getValue());
this.cmbMask.setValue('*');
formTextPr.put_MaskFormat(this.cmbMask.getValue());
break;
case Asc.TextFormFormatType.RegExp:
this.txtMask.setValue('.');
formTextPr.put_RegExpFormat(this.txtMask.getValue());
this.txtRegExp.setValue('.');
formTextPr.put_RegExpFormat(this.txtRegExp.getValue());
break;
}
props.put_TextFormPr(formTextPr);
@ -965,15 +1094,27 @@ define([
}
},
onMaskChanged: function(input, newValue, oldValue, e) {
onMaskChanged: function(combo, record) {
if (this.api && !this._noApply) {
var props = this._originalProps || new AscCommon.CContentControlPr();
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
formTextPr.put_MaskFormat(record.value);
if (this._state.placeholder===this._state.Mask)
props.put_PlaceholderText(record.value);
props.put_TextFormPr(formTextPr);
this.api.asc_SetContentControlProperties(props, this.internalId);
this.fireEvent('editcomplete', this);
} else {
this.cmbMask.setValue(this._state.Mask ? this._state.Mask : '');
this.fireEvent('editcomplete', this);
}
},
onRegExpChanged: function(input, newValue, oldValue, e) {
if (this.api && !this._noApply && (newValue!==oldValue)) {
var props = this._originalProps || new AscCommon.CContentControlPr();
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
if (this.cmbFormat.getValue()===Asc.TextFormFormatType.Mask) {
formTextPr.put_MaskFormat(newValue);
} else if (this.cmbFormat.getValue()===Asc.TextFormFormatType.RegExp) {
formTextPr.put_RegExpFormat(newValue);
}
formTextPr.put_RegExpFormat(newValue);
props.put_TextFormPr(formTextPr);
this.api.asc_SetContentControlProperties(props, this.internalId);
if (!e.relatedTarget || (e.relatedTarget.localName != 'input' && e.relatedTarget.localName != 'textarea') || !/form-control/.test(e.relatedTarget.className))
@ -1082,6 +1223,12 @@ define([
this._state.arrKey=data;
}
val = formPr.get_Role();
if (this._state.Role!==val) {
this.cmbRoles.setValue(val ? val : '');
this._state.Role=val;
}
val = formPr.get_Key();
if (this._state.Key!==val) {
this.cmbKey.setValue(val ? val : '');
@ -1294,12 +1441,18 @@ define([
this._state.FormatType=val;
}
if ( this._state.FormatType===Asc.TextFormFormatType.Mask || this._state.FormatType===Asc.TextFormFormatType.RegExp ) {
val = (this._state.FormatType===Asc.TextFormFormatType.Mask) ? formTextPr.get_MaskFormat() : formTextPr.get_RegExpFormat();
this.txtMask.setValue((val !== null && val !== undefined) ? val : '');
if ( this._state.FormatType===Asc.TextFormFormatType.Mask ) {
val = formTextPr.get_MaskFormat();
this.cmbMask.setValue((val !== null && val !== undefined) ? val : '');
this._state.Mask=val;
}
if ( this._state.FormatType===Asc.TextFormFormatType.RegExp ) {
val = formTextPr.get_RegExpFormat();
this.txtRegExp.setValue((val !== null && val !== undefined) ? val : '');
this._state.RegExp=val;
}
val = formTextPr.get_FormatSymbols();
if ( this._state.FormatSymbols!==val ) {
this.txtFormatSymbols.setValue((val !== null && val !== undefined) ? val : '');
@ -1317,6 +1470,22 @@ define([
} else
this._originalTextFormProps = null;
var datePr = props.get_DateTimePr();
if (datePr && type == Asc.c_oAscContentControlSpecificType.DateTime) {
this.labelFormName.text(this.textDateField);
this._originalDateProps = datePr;
var lang = datePr.get_LangId() || this.options.controlLang;
if (lang) {
var item = this.cmbLang.store.findWhere({value: lang});
item = item ? item.get('value') : 0x0409;
this.cmbLang.setValue(item);
}
this.updateDateFormats(this.cmbLang.getValue());
var format = datePr.get_DateFormat();
this.cmbDateFormat.setValue(format);
this._state.DateFormat=format;
}
var isComplex = !!props.get_ComplexFormPr(), // is complex form
isSimpleInsideComplex = !!this.api.asc_GetCurrentComplexForm() && !isComplex;
@ -1327,7 +1496,8 @@ define([
this.KeySettingsTd.toggleClass('padding-small', !connected);
this.ConnectedSettings.toggleClass('hidden', !connected);
this.TextOnlySettingsMask.toggleClass('hidden', !(type === Asc.c_oAscContentControlSpecificType.None && !!formTextPr) || !(this._state.FormatType===Asc.TextFormFormatType.Mask || this._state.FormatType===Asc.TextFormFormatType.RegExp));
this.TextOnlySettingsMask.toggleClass('hidden', !(type === Asc.c_oAscContentControlSpecificType.None && !!formTextPr) || this._state.FormatType!==Asc.TextFormFormatType.Mask);
this.TextOnlySettingsRegExp.toggleClass('hidden', !(type === Asc.c_oAscContentControlSpecificType.None && !!formTextPr) || this._state.FormatType!==Asc.TextFormFormatType.RegExp);
if (this.type !== type || this.isSimpleInsideComplex !== isSimpleInsideComplex || needUpdateTextControls || type == Asc.c_oAscContentControlSpecificType.CheckBox)
this.showHideControls(type, formTextPr, specProps, isSimpleInsideComplex);
this.type = type;
@ -1364,11 +1534,8 @@ define([
checkable: true
}), {caption: '--'}],
menu : true,
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
],
colors: ['FEF8E5', 'FFEFBF', 'E2EFD8', 'C6E0B3', 'EDEDED', 'DBDBDB', 'CDD6E4', 'A2B2CA', '800000', 'FF6600', 'F2F2F2', 'D9D9D9', 'DDEBF6', 'C2DDF2', 'FBECE2',
'F7D9C6', 'D6E3EE', 'B9CAE7', 'F2DADA', 'F2C2C2', 'F0DDF6', 'E5C2F2', 'E6FBD6', 'CDF7AC', 'EED6D6', 'E7B9B9', 'CCE1FF', '9AC4FF', 'E4CDDB', 'D9ADC7'],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'big'
@ -1433,7 +1600,8 @@ define([
checkboxOnly = false,
radioboxOnly = false,
listOnly = false,
imageOnly = false;
imageOnly = false,
dateOnly = false;
if (type == Asc.c_oAscContentControlSpecificType.ComboBox || type == Asc.c_oAscContentControlSpecificType.DropDownList) {
listOnly = !!specProps;
} else if (type == Asc.c_oAscContentControlSpecificType.CheckBox) {
@ -1443,6 +1611,8 @@ define([
}
} else if (type == Asc.c_oAscContentControlSpecificType.Picture) {
imageOnly = true;
} else if (type == Asc.c_oAscContentControlSpecificType.DateTime) {
dateOnly = true;
} else if (type == Asc.c_oAscContentControlSpecificType.None || type == Asc.c_oAscContentControlSpecificType.Complex) {
textOnly = !!textProps;
}
@ -1457,6 +1627,7 @@ define([
this.CheckOnlySettings.toggleClass('hidden', !value);
this.FixedSettings.toggleClass('hidden', imageOnly || isSimpleInsideComplex);
this.NotInComplexSettings.toggleClass('hidden', isSimpleInsideComplex);
this.DateOnlySettings.toggleClass('hidden', !dateOnly);
},
onSelectItem: function(listView, itemView, record) {
@ -1525,6 +1696,88 @@ define([
}
},
onRefreshRolesList: function(roles) {
if (this._initSettings) {
this.roles = roles;
return;
}
if (!roles) {
roles = this.api.asc_GetOForm().asc_getAllRoles();
// change to event asc_onRefreshRolesList
// roles = [
// {name: 'employee 1', color: Common.Utils.ThemeColor.getRgbColor('ff0000'), fields: 5},
// {name: 'employee 2', color: Common.Utils.ThemeColor.getRgbColor('00ff00'), fields: 1},
// {name: 'manager', color: null, fields: 10}
// ];
}
var lastrole = this.cmbRoles.getSelectedRecord();
lastrole = lastrole ? lastrole.value : '';
var arr = [];
var me = this;
roles && roles.forEach(function(item) {
var role = item.asc_getSettings(),
color = role.asc_getColor();
arr.push({
displayValue: role.asc_getName() || me.textAnyone,
value: role.asc_getName(),
color: color ? '#' + Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()) : 'transparent'
});
});
this.cmbRoles.setData(arr);
this.cmbRoles.setValue(lastrole);
},
onRolesChanged: function(combo, record) {
if (this.api && !this._noApply) {
this._state.Role = undefined;
var props = this._originalProps || new AscCommon.CContentControlPr();
var formPr = this._originalFormProps || new AscCommon.CSdtFormPr();
formPr.put_Role(record.value);
props.put_FormPr(formPr);
this.api.asc_SetContentControlProperties(props, this.internalId);
Common.Utils.InternalSettings.set('de-last-form-role', record.value)
this.fireEvent('editcomplete', this);
}
},
updateDateFormats: function(lang) {
if (this._originalDateProps) {
var props = this._originalDateProps,
formats = props.get_FormatsExamples(),
arr = [];
for (var i = 0, len = formats.length; i < len; i++)
{
arr.push({
value: formats[i],
displayValue: props.get_String(formats[i], undefined, lang)
});
}
this.cmbDateFormat.setData(arr);
this.cmbDateFormat.setValue(arr[0].value);
if (this.api && !this._noApply)
this.onDateFormatChanged();
}
},
onDateFormatChanged: function(combo, record) {
if (this.api && !this._noApply) {
var props = this._originalProps || new AscCommon.CContentControlPr();
var formDatePr = this._originalDateProps || new AscCommon.CSdtDatePickerPr();
formDatePr.put_DateFormat(this.cmbDateFormat.getValue());
formDatePr.put_LangId(this.cmbLang.getValue());
props.put_DateTimePr(formDatePr);
this.api.asc_SetContentControlProperties(props, this.internalId);
this.fireEvent('editcomplete', this);
} else {
this.cmbDateFormat.setValue(this._state.DateFormat ? this._state.DateFormat : '');
this.fireEvent('editcomplete', this);
}
},
textField: 'Text Field',
textKey: 'Key',
textPlaceholder: 'Placeholder',
@ -1565,6 +1818,7 @@ define([
textTooSmall: 'Image is Too Small',
textScale: 'When to scale',
textBackgroundColor: 'Background Color',
textFillRoles: 'Who needs to fill this out?',
textTag: 'Tag',
textAuto: 'Auto',
textAtLeast: 'At least',
@ -1576,7 +1830,17 @@ define([
textLetters: 'Letters',
textDigits: 'Digits',
textNone: 'None',
textComplex: 'Complex Field'
textComplex: 'Complex Field',
textAnyone: 'Anyone',
textPhone1: 'Phone Number (e.g. (123) 456-7890)',
textPhone2: 'Phone Number (e.g. +447911123456)',
textZipCodeUS: 'US Zip Code (e.g. 92663 or 92663-1234)',
textUSSSN: 'US SSN (e.g. 123-45-6789)',
textUKPassport: 'UK Passport Number (e.g. 925665416)',
textCreditCard: 'Credit Card Number (e.g 4111-1111-1111-1111)',
textDateField: 'Date & Time Field',
textDateFormat: 'Display the date like this',
textLang: 'Language'
}, DE.Views.FormSettings || {}));
});

View file

@ -61,25 +61,21 @@ define([
'<div class="group forms-buttons" style="display: none;">' +
'<span class="btn-slot text x-huge" id="slot-btn-form-email"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-phone"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-datetime"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-zipcode"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-credit"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-complex"></span>' +
'</div>' +
'<div class="separator long forms" style="display: none;"></div>' +
'<div class="group no-group-mask inner-elset small" style="display: none;">' +
'<div class="elset no-group-mask form-view">' +
'<span class="btn-slot text" id="slot-form-clear-fields"></span>' +
'</div>' +
'<div class="elset">' +
'<span class="btn-slot text" id="slot-form-highlight"></span>' +
'</div>' +
'<div class="separator long forms-buttons" style="display: none;"></div>' +
'<div class="group forms-buttons" style="display: none;">' +
'<span class="btn-slot text x-huge" id="slot-btn-manager"></span>' +
'</div>' +
'<div class="group no-group-mask form-view">' +
'<span class="btn-slot text x-huge" id="slot-btn-form-clear"></span>' +
'<div class="separator long forms-buttons" style="display: none;"></div>' +
'<div class="group no-group-mask" style="">' +
'<span class="btn-slot text x-huge" id="slot-btn-form-view-roles"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-prev"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-next"></span>' +
'</div>' +
'<div class="separator long submit" style="display: none;"></div>' +
'<div class="group no-group-mask form-view" style="display: none;">' +
'<span class="btn-slot text x-huge" id="slot-btn-form-view"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-clear"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-submit"></span>' +
'<span class="btn-slot text x-huge" id="slot-btn-form-save"></span>' +
'</div>' +
@ -88,7 +84,22 @@ define([
function setEvents() {
var me = this;
this.btnTextField && this.btnTextField.on('click', function (b, e) {
me.fireEvent('forms:insert', ['text']);
me.fireEvent('forms:insert', ['text', {fixed: b.options.fieldType==='fixed'}]);
});
this.btnTextField && this.btnTextField.menu.on('item:click', function (menu, item) {
var oldType = me.btnTextField.options.fieldType;
var newType = item.value;
if(newType !== oldType){
me.btnTextField.changeIcon({
next: item.options.iconClsForMainBtn,
curr: me.btnTextField.menu.items.filter(function(mnu){return mnu.value === oldType})[0].options.iconClsForMainBtn
});
me.btnTextField.updateHint(item.options.hintForMainBtn);
me.btnTextField.options.fieldType = newType;
Common.localStorage.setBool("de-text-form-fixed", newType==='fixed')
}
me.fireEvent('forms:insert', ['text', {fixed: newType==='fixed'}]);
});
this.btnComboBox && this.btnComboBox.on('click', function (b, e) {
me.fireEvent('forms:insert', ['combobox']);
@ -114,23 +125,43 @@ define([
this.btnPhoneField && this.btnPhoneField.on('click', function (b, e) {
me.fireEvent('forms:insert', ['text', {mask: "(999)999-9999", placeholder: '(999)999-9999'}]);
});
this.btnViewForm && this.btnViewForm.on('click', function (b, e) {
me.fireEvent('forms:mode', [b.pressed]);
this.btnCreditCard && this.btnCreditCard.on('click', function (b, e) {
me.fireEvent('forms:insert', ['text', {mask: "9999-9999-9999-9999", placeholder: '9999-9999-9999-9999'}]);
});
this.btnClearFields && this.btnClearFields.on('click', function (b, e) {
me.fireEvent('forms:clear');
this.btnZipCode && this.btnZipCode.on('click', function (b, e) {
me.fireEvent('forms:insert', ['text', {mask: "99999-9999", placeholder: '99999-9999'}]);
});
this.btnDateTime && this.btnDateTime.on('click', function (b, e) {
me.fireEvent('forms:insert', ['datetime']);
});
this.btnViewFormRoles && this.btnViewFormRoles.on('click', function (b, e) {
var item = b.menu.getChecked();
me.fireEvent('forms:mode', [b.pressed, item ? item.caption : undefined]);
});
this.btnViewFormRoles.menu.on('item:toggle', _.bind(function (menu, item, state) {
if (!!state) {
me.btnViewFormRoles.toggle(true, true);
me.fireEvent('forms:mode', [true, item.caption]);
}
}, me));
this.btnViewFormRoles.menu.on('show:after', function (menu) {
me.fillRolesMenu();
});
this.btnManager && this.btnManager.on('click', function (b, e) {
me.fireEvent('forms:manager');
});
this.btnClear && this.btnClear.on('click', function (b, e) {
me.fireEvent('forms:clear');
});
if (this.mnuFormsColorPicker) {
this.btnHighlight.on('color:select', function(btn, color) {
me.fireEvent('forms:select-color', [color]);
});
this.mnuNoFormsColor.on('click', function (item) {
me.fireEvent('forms:no-color', [item]);
});
}
// if (this.mnuFormsColorPicker) {
// this.btnHighlight.on('color:select', function(btn, color) {
// me.fireEvent('forms:select-color', [color]);
// });
// this.mnuNoFormsColor.on('click', function (item) {
// me.fireEvent('forms:no-color', [item]);
// });
// }
this.btnPrevForm && this.btnPrevForm.on('click', function (b, e) {
me.fireEvent('forms:goto', ['prev']);
});
@ -155,22 +186,23 @@ define([
this.appConfig = options.config;
this.paragraphControls = [];
this._state = {};
var me = this;
var _set = Common.enumLock;
if (this.appConfig.isRestrictedEdit && this.appConfig.canFillForms) {
this.btnClear = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon clear-style',
caption: this.textClear
});
} else {
var isfixed = Common.localStorage.getBool("de-text-form-fixed", true);
this.btnTextField = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-text-field',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
iconCls: 'toolbar__icon ' + (isfixed ? 'btn-fixed-field' : 'btn-text-field'),
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnText,
fieldType: isfixed ? 'fixed' : 'inline',
split: true,
menu: true,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
@ -180,7 +212,7 @@ define([
this.btnComboBox = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-combo-box',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnComboBox,
dataHint: '1',
dataHintDirection: 'bottom',
@ -191,7 +223,7 @@ define([
this.btnDropDown = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-dropdown',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnDropDown,
dataHint: '1',
dataHintDirection: 'bottom',
@ -202,7 +234,7 @@ define([
this.btnCheckBox = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-checkbox',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnCheckBox,
dataHint: '1',
dataHintDirection: 'bottom',
@ -213,7 +245,7 @@ define([
this.btnRadioBox = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-radio-button',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnRadioBox,
dataHint: '1',
dataHintDirection: 'bottom',
@ -224,7 +256,7 @@ define([
this.btnImageField = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-insertimage',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnImage,
dataHint: '1',
dataHintDirection: 'bottom',
@ -232,10 +264,21 @@ define([
});
this.paragraphControls.push(this.btnImageField);
this.btnManager = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-ic-sharing',
lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
caption: this.capBtnManager,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
});
this.paragraphControls.push(this.btnManager);
this.btnEmailField = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-email',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnEmail,
dataHint: '1',
dataHintDirection: 'bottom',
@ -246,7 +289,7 @@ define([
this.btnPhoneField = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-phone',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnPhone,
dataHint: '1',
dataHintDirection: 'bottom',
@ -254,10 +297,43 @@ define([
});
this.paragraphControls.push(this.btnPhoneField);
this.btnZipCode = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-zip-code',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capZipCode,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
});
this.paragraphControls.push(this.btnZipCode);
this.btnCreditCard = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-credit-card',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capCreditCard,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
});
this.paragraphControls.push(this.btnCreditCard);
this.btnDateTime = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-datetime',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capDateTime,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
});
this.paragraphControls.push(this.btnDateTime);
this.btnComplexField = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon complex-field',
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: this.capBtnComplex,
dataHint: '1',
dataHintDirection: 'bottom',
@ -265,59 +341,64 @@ define([
});
this.paragraphControls.push(this.btnComplexField);
this.btnViewForm = new Common.UI.Button({
this.btnViewFormRoles = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-sheet-view',
lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [ _set.previewReviewMode, _set.formsNoRoles, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
caption: this.capBtnView,
split: true,
menu: new Common.UI.Menu({
cls: 'menu-roles',
maxHeight: 270,
items: []
}),
enableToggle: true,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
});
this.paragraphControls.push(this.btnViewForm);
this.paragraphControls.push(this.btnViewFormRoles);
this.btnClearFields = new Common.UI.Button({
cls : 'btn-toolbar',
iconCls : 'toolbar__icon btn-clearstyle',
lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments],
caption : this.textClearFields,
dataHint : '1',
dataHintDirection: 'left',
dataHintOffset: 'small'
});
this.paragraphControls.push(this.btnClearFields);
this.btnHighlight = new Common.UI.ButtonColored({
cls : 'btn-toolbar',
iconCls : 'toolbar__icon btn-highlight',
lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
caption : this.textHighlight,
menu : true,
additionalItems: [ this.mnuNoFormsColor = new Common.UI.MenuItem({
id: 'id-toolbar-menu-no-highlight-form',
caption: this.textNoHighlight,
checkable: true,
style: 'padding-left: 20px;'
}),
{caption: '--'}],
colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
'808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
'33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
'993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
],
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'small'
});
this.paragraphControls.push(this.btnHighlight);
// this.btnHighlight = new Common.UI.ButtonColored({
// cls : 'btn-toolbar',
// iconCls : 'toolbar__icon btn-highlight',
// lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart],
// caption : this.textHighlight,
// menu : true,
// additionalItems: [ this.mnuNoFormsColor = new Common.UI.MenuItem({
// id: 'id-toolbar-menu-no-highlight-form',
// caption: this.textNoHighlight,
// checkable: true,
// style: 'padding-left: 20px;'
// }),
// {caption: '--'}],
// colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600',
// '808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966',
// '33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF',
// '993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF'
// ],
// dataHint: '1',
// dataHintDirection: 'left',
// dataHintOffset: 'small'
// });
}
this.btnClear = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon clear-style',
caption: this.textClear,
visible: false,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
});
this.btnPrevForm = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon previous-field',
lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments],
caption: this.capBtnPrev,
visible: false,
// disabled: this.appConfig.isEdit && this.appConfig.canFeatureContentControl && this.appConfig.canFeatureForms, // disable only for edit mode
dataHint: '1',
dataHintDirection: 'bottom',
@ -330,6 +411,7 @@ define([
iconCls: 'toolbar__icon next-field',
lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments],
caption: this.capBtnNext,
visible: false,
// disabled: this.appConfig.isEdit && this.appConfig.canFeatureContentControl && this.appConfig.canFeatureForms, // disable only for edit mode,
dataHint: '1',
dataHintDirection: 'bottom',
@ -380,29 +462,62 @@ define([
accept();
})).then(function(){
if (config.isEdit && config.canFeatureContentControl && config.canFeatureForms) {
if (config.canEditContentControl) {
me.btnHighlight.setMenu();
me.mnuFormsColorPicker = me.btnHighlight.getPicker();
me.btnHighlight.currentColor && me.mnuFormsColorPicker.selectByRGB(me.btnHighlight.currentColor, true);
me.mnuNoFormsColor.setChecked(me.btnHighlight.currentColor === null);
me.btnHighlight.setColor(me.btnHighlight.currentColor || 'transparent');
} else {
me.btnHighlight.cmpEl.parents('.group').hide().prev('.separator').hide();
}
// if (config.canEditContentControl) {
// me.btnHighlight.setMenu();
// me.mnuFormsColorPicker = me.btnHighlight.getPicker();
// me.btnHighlight.currentColor && me.mnuFormsColorPicker.selectByRGB(me.btnHighlight.currentColor, true);
// me.mnuNoFormsColor.setChecked(me.btnHighlight.currentColor === null);
// me.btnHighlight.setColor(me.btnHighlight.currentColor || 'transparent');
// } else {
// me.btnHighlight.cmpEl.parents('.group').hide().prev('.separator').hide();
// }
var menuTemplate = _.template('<a id="<%= id %>" tabindex="-1" type="menuitem">'+
'<% if (!_.isEmpty(iconCls)) { %>'+
'<span class="menu-item-icon <%= iconCls %>"></span>'+
'<% } %>'+
'<div><%= caption %></div>' +
'<% if (options.description !== null) { %><label style="display: block;cursor: pointer;white-space: normal;"><%= options.description %></label>' +
'<% } %></a>');
me.btnTextField.setMenu(new Common.UI.Menu({
items: [
{
caption: me.txtInlineText,
template: menuTemplate,
description: me.txtInlineDesc,
iconCls : 'menu__icon btn-field',
value: 'inline',
iconClsForMainBtn: 'btn-text-field',
hintForMainBtn: [me.tipInlineText, me.tipTextField]
},
{
caption: me.txtFixedText,
template: menuTemplate,
description: me.txtFixedDesc,
iconCls : 'menu__icon btn-fixed-field',
value: 'fixed',
iconClsForMainBtn: 'btn-fixed-field',
hintForMainBtn: [me.tipFixedText, me.tipTextField]
}
]
}));
me.btnTextField.updateHint([Common.localStorage.getBool("de-text-form-fixed", true) ? me.tipFixedText : me.tipInlineText, me.tipTextField]);
me.btnTextField.updateHint(me.tipTextField);
me.btnComboBox.updateHint(me.tipComboBox);
me.btnDropDown.updateHint(me.tipDropDown);
me.btnCheckBox.updateHint(me.tipCheckBox);
me.btnRadioBox.updateHint(me.tipRadioBox);
me.btnImageField.updateHint(me.tipImageField);
me.btnViewForm.updateHint(me.tipViewForm);
me.btnViewFormRoles.updateHint(me.tipViewForm);
me.btnManager.updateHint(me.tipManager);
me.btnEmailField.updateHint(me.tipEmailField);
me.btnPhoneField.updateHint(me.tipPhoneField);
me.btnComplexField.updateHint(me.tipComplexField);
} else {
me.btnClear.updateHint(me.textClearFields);
me.btnZipCode.updateHint(me.tipZipCode);
me.btnCreditCard.updateHint(me.tipCreditCard);
me.btnDateTime.updateHint(me.tipDateTime);
}
me.btnClear.updateHint(me.textClearFields);
me.btnPrevForm.updateHint(me.tipPrevForm);
me.btnNextForm.updateHint(me.tipNextForm);
me.btnSubmit && me.btnSubmit.updateHint(me.tipSubmit);
@ -420,8 +535,6 @@ define([
this.appConfig.canDownloadForms && this.btnSaveForm.render($host.find('#slot-btn-form-save'));
if (this.appConfig.isRestrictedEdit && this.appConfig.canFillForms) {
this.btnClear.render($host.find('#slot-btn-form-clear'));
(this.btnSubmit || this.btnSaveForm) && $host.find('.separator.submit').show().next('.group').show();
} else {
this.btnTextField.render($host.find('#slot-btn-form-field'));
this.btnComboBox.render($host.find('#slot-btn-form-combobox'));
@ -429,23 +542,66 @@ define([
this.btnCheckBox.render($host.find('#slot-btn-form-checkbox'));
this.btnRadioBox.render($host.find('#slot-btn-form-radiobox'));
this.btnImageField.render($host.find('#slot-btn-form-image'));
this.btnViewForm.render($host.find('#slot-btn-form-view'));
this.btnClearFields.render($host.find('#slot-form-clear-fields'));
this.btnHighlight.render($host.find('#slot-form-highlight'));
this.btnViewFormRoles.render($host.find('#slot-btn-form-view-roles'));
this.btnManager.render($host.find('#slot-btn-manager'));
// this.btnHighlight.render($host.find('#slot-form-highlight'));
this.btnEmailField.render($host.find('#slot-btn-form-email'));
this.btnPhoneField.render($host.find('#slot-btn-form-phone'));
this.btnComplexField.render($host.find('#slot-btn-form-complex'));
this.btnZipCode.render($host.find('#slot-btn-form-zipcode'));
this.btnCreditCard.render($host.find('#slot-btn-form-credit'));
this.btnDateTime.render($host.find('#slot-btn-form-datetime'));
$host.find('.forms-buttons').show();
$host.find('.separator.forms').show().next('.group').show();
$host.find('.separator.submit').show().next('.group').show();
}
this.btnClear.render($host.find('#slot-btn-form-clear'));
this.btnPrevForm.render($host.find('#slot-btn-form-prev'));
this.btnNextForm.render($host.find('#slot-btn-form-next'));
return this.$el;
},
fillRolesMenu: function(roles, lastViewRole) {
if (!(this.btnViewFormRoles && this.btnViewFormRoles.menu && this.btnViewFormRoles.menu.isVisible())) {
this._state.roles = roles;
this._state.lastViewRole = lastViewRole;
return;
}
roles = roles || this._state.roles;
lastViewRole = lastViewRole || this._state.lastViewRole;
this._state.roles = this._state.lastViewRole = undefined;
if (!roles) return;
var checkedIndex = 0,
me = this;
this.btnViewFormRoles.menu.removeAll();
roles && roles.forEach(function(item, index) {
var role = item.asc_getSettings(),
color = role.asc_getColor();
if (role.asc_getName()===lastViewRole)
checkedIndex = index;
me.btnViewFormRoles.menu.addItem(new Common.UI.MenuItem({
caption: role.asc_getName() || me.textAnyone,
color: color ? '#' + Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()) : 'transparent',
checkable: true,
toggleGroup: 'formtab-view-role',
template: _.template([
'<a id="<%= id %>" tabindex="-1" type="menuitem" class="<%= options.cls %>">',
'<span class="color" style="background: <%= options.color %>;"></span>',
'<%= caption %>',
'</a>'
].join(''))
}));
});
var len = this.btnViewFormRoles.menu.items.length>0;
len && this.btnViewFormRoles.menu.items[checkedIndex].setChecked(true, true);
Common.Utils.lockControls(Common.enumLock.formsNoRoles, !len,{array: [this.btnViewFormRoles]});
},
show: function () {
Common.UI.BaseView.prototype.show.call(this);
this.fireEvent('show', this);
@ -455,6 +611,14 @@ define([
return this.paragraphControls;
},
setPreviewMode: function(state) {
this.btnClear.setVisible(state);
this.btnPrevForm.setVisible(state);
this.btnNextForm.setVisible(state);
this.btnSubmit && this.btnSubmit.setVisible(!state);
this.btnSaveForm && this.btnSaveForm.setVisible(!state);
},
SetDisabled: function (state) {
this._state.disabled = state;
this.paragraphControls.forEach(function(button) {
@ -495,6 +659,8 @@ define([
txtUntitled: 'Untitled',
textCreateForm: 'Add fields and create a fillable OFORM document',
textGotIt: 'Got it',
capBtnManager: 'Manage Roles',
tipManager: 'Manage Roles',
capBtnDownloadForm: 'Download as oform',
tipDownloadForm: 'Download a file as a fillable OFORM document',
capBtnEmail: 'Email Address',
@ -502,7 +668,20 @@ define([
capBtnComplex: 'Complex Field',
tipEmailField: 'Insert email address',
tipPhoneField: 'Insert phone number',
tipComplexField: 'Insert complex field'
tipComplexField: 'Insert complex field',
textAnyone: 'Anyone',
txtInlineText: 'Inline',
txtInlineDesc: 'Insert inline text field',
txtFixedText: 'Fixed',
txtFixedDesc: 'Insert fixed text field',
tipInlineText: 'Insert inline text field',
tipFixedText: 'Insert fixed text field',
capZipCode: 'Zip Code',
capCreditCard: 'Credit Card',
tipZipCode: 'Insert zip code',
tipCreditCard: 'Insert credit card number',
capDateTime: 'Date & Time',
tipDateTime: 'Insert date and time'
}
}()), DE.Views.FormsTab || {}));
});

View file

@ -1398,7 +1398,8 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
var spectype = control_props.get_SpecificType();
fixed_size = (spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.ComboBox ||
spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.None ||
spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.Complex) &&
spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.Complex ||
spectype==Asc.c_oAscContentControlSpecificType.DateTime) &&
control_props.get_FormPr() && control_props.get_FormPr().get_Fixed();
}

View file

@ -126,7 +126,7 @@ define([
this.btnChat = new Common.UI.Button({
el: $markup.elementById('#left-btn-chat'),
hint: this.tipChat + Common.Utils.String.platformKey('Alt+Q'),
hint: this.tipChat + (!Common.Utils.isMac ? Common.Utils.String.platformKey('Alt+Q') : ''),
enableToggle: true,
disabled: true,
toggleGroup: 'leftMenuGroup'

View file

@ -114,7 +114,10 @@ define([
maxLength: 15,
validateOnBlur: false,
repeatInput: this.repeatPwd,
showPwdOnClick: true
showPwdOnClick: true,
validation : function(value) {
return (value.length>15) ? me.txtLimit : true;
}
});
this.rbView = new Common.UI.RadioBox({
@ -198,9 +201,6 @@ define([
_setDefaults: function (props) {
if (props) {
this.rbReview.setDisabled(!props.canReview);
this.rbForms.setDisabled(!props.canFillForms);
this.rbComments.setDisabled(!props.canComments);
}
},
@ -230,7 +230,8 @@ define([
textView: 'No changes (Read only)',
textForms: 'Filling forms',
textReview: 'Tracked changes',
textComments: 'Comments'
textComments: 'Comments',
txtLimit: 'Password is limited to 15 characters'
}, DE.Views.ProtectDialog || {}));
});

View file

@ -0,0 +1,144 @@
/*
*
* (c) Copyright Ascensio System SIA 2010-2022
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
/**
* RoleDeleteDlg.js
*
* Created by Julia Radzhabova on 15/04/22
* Copyright (c) 2022 Ascensio System SIA. All rights reserved.
*
*/
define([
'common/main/lib/component/Window',
'common/main/lib/component/ComboBox'
], function () { 'use strict';
DE.Views.RoleDeleteDlg = Common.UI.Window.extend(_.extend({
options: {
width: 300,
cls: 'modal-dlg',
buttons: ['ok', 'cancel']
},
initialize : function(options) {
_.extend(this.options, {
title: this.textTitle
}, options || {});
this.template = [
'<div class="box">',
'<div class="" style="margin-bottom: 10px;">',
'<label>' + this.textLabel + '</label>',
'</div>',
'<div class="input-row" style="">',
'<label>' + this.textSelect + '</label>',
'</div>',
'<div style="margin-bottom: 12px;">',
'<div id="id-role-del-remove" class="input-group-nr"></div>',
'</div>',
'</div>'
].join('');
this.options.tpl = _.template(this.template)(this.options);
this.props = options.props;
Common.UI.Window.prototype.initialize.call(this, this.options);
},
render: function() {
Common.UI.Window.prototype.render.call(this);
var $window = this.getChild();
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
this.cmbRole = new Common.UI.ComboBox({
el: $('#id-role-del-remove', $window),
style: 'width: 100%;',
menuStyle: 'min-width: 100%;max-height: 190px;',
cls: 'input-group-nr',
data: [],
editable: false,
takeFocusOnClose: true
});
this.afterRender();
},
getFocusedComponents: function() {
return [this.cmbRole];
},
getDefaultFocusableComponent: function () {
return this.cmbRole;
},
afterRender: function() {
this._setDefaults(this.props);
},
_setDefaults: function (props) {
if (props) {
var arr = [];
props.roles.each(function(item, index){
var name = item.get('name');
if (name!==props.excludeName)
arr.push({value: name, displayValue: name});
});
this.cmbRole.setData(arr);
(arr.length>0) && this.cmbRole.setValue(arr[0].value);
}
},
onPrimary: function(event) {
this._handleInput('ok');
return false;
},
onBtnClick: function(event) {
this._handleInput(event.currentTarget.attributes['result'].value);
},
_handleInput: function(state) {
if (this.options.handler) {
this.options.handler.call(this, state, this.cmbRole.getValue());
}
this.close();
},
textTitle: 'Delete Role',
textLabel: 'To delete this role, you need to move the fields associated with it to another role.',
textSelect: 'Select for field merger role'
}, DE.Views.RoleDeleteDlg || {}));
});

View file

@ -0,0 +1,209 @@
/*
*
* (c) Copyright Ascensio System SIA 2010-2022
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
/**
* RoleEditDlg.js
*
* Created by Julia Radzhabova on 13/04/22
* Copyright (c) 2022 Ascensio System SIA. All rights reserved.
*
*/
define([
'common/main/lib/component/Window',
'common/main/lib/component/InputField'
], function () { 'use strict';
DE.Views.RoleEditDlg = Common.UI.Window.extend(_.extend({
options: {
width: 330,
cls: 'modal-dlg',
buttons: ['ok', 'cancel']
},
initialize : function(options) {
_.extend(this.options, options || {});
this.template = [
'<div class="box">',
'<table cols="2" style="width: 100%;">',
'<tr>',
'<td style="width: 50px; padding-right: 10px;">',
'<label></label>',
'<div id="id-dlg-role-color" style="margin-bottom: 10px;"></div>',
'</td>',
'<td>',
'<label>' + this.textName + '</label>',
'<div id="id-dlg-role-name" class="input-row" style="margin-bottom: 10px; "></div>',
'</td>',
'</tr>',
'</table>',
'</div>'
].join('');
this.options.tpl = _.template(this.template)(this.options);
this.props = this.options.props;
this.lastColor = 'C9C8FF';
this.oformManager = this.options.oformManager;
Common.UI.Window.prototype.initialize.call(this, this.options);
},
render: function() {
Common.UI.Window.prototype.render.call(this);
var me = this;
var $window = this.getChild();
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
me.inputName = new Common.UI.InputField({
el : $window.find('#id-dlg-role-name'),
allowBlank : false,
blankError : me.textEmptyError,
style : 'width: 100%;',
validateOnBlur: false,
validation : function(value) {
value = value.trim();
if (_.isEmpty(value))
return '';
if (!(me.props && value === me.props.name) && me.oformManager.asc_haveRole(value))
return me.errNameExists;
return true;
}
});
this.btnColor = new Common.UI.ColorButton({
parentEl: $window.find('#id-dlg-role-color'),
additionalItems: [ this.mnuNoFormsColor = new Common.UI.MenuItem({
id: 'id-dlg-role-menu-no-highlight',
caption: this.textNoHighlight,
checkable: true,
style: 'padding-left: 20px;'
}),
{caption: '--'}],
additionalAlign: this.menuAddAlign,
colors: ['FEF8E5', 'FFEFBF', 'E2EFD8', 'C6E0B3', 'EDEDED', 'DBDBDB', 'CDD6E4', 'A2B2CA', '800000', 'FF6600', 'F2F2F2', 'D9D9D9', 'DDEBF6', 'C2DDF2', 'FBECE2',
'F7D9C6', 'D6E3EE', 'B9CAE7', 'F2DADA', 'F2C2C2', 'F0DDF6', 'E5C2F2', 'E6FBD6', 'CDF7AC', 'EED6D6', 'E7B9B9', 'CCE1FF', '9AC4FF', 'E4CDDB', 'D9ADC7'],
color: this.lastColor,
cls: 'move-focus',
takeFocusOnClose: true
});
this.btnColor.on('color:select', _.bind(this.onColorsSelect, this));
this.mnuNoFormsColor.on('click', _.bind(this.onNoColorClick, this));
this.mnuColorPicker = this.btnColor.getPicker();
this.afterRender();
},
afterRender: function() {
this.setSettings(this.props);
this.setTitle((this.options.isEdit) ? this.txtTitleEdit : this.txtTitleNew);
},
show: function() {
Common.UI.Window.prototype.show.apply(this, arguments);
},
setSettings: function (props) {
if (props) {
var clr = props.color,
show = !!clr;
this.mnuNoFormsColor.setChecked(!show, true);
this.mnuColorPicker.clearSelection();
if (clr) {
clr = Common.Utils.ThemeColor.getHexColor(clr.get_r(), clr.get_g(), clr.get_b());
this.mnuColorPicker.selectByRGB(clr, true);
this.lastColor = clr;
}
this.btnColor.setColor(clr || 'transparent');
this.inputName.setValue(props.name || '');
}
},
getSettings: function() {
return {name: this.inputName.getValue(), color: this.mnuNoFormsColor.isChecked() ? null : Common.Utils.ThemeColor.getRgbColor(this.lastColor)};
},
onColorsSelect: function(btn, color) {
this.lastColor = color;
this.mnuNoFormsColor.setChecked(false, true);
},
onNoColorClick: function(item) {
if (!item.isChecked()) {
this.btnColor.setColor(this.lastColor);
this.mnuColorPicker.selectByRGB(this.lastColor, true);
} else {
this.mnuColorPicker.clearSelection();
}
},
onPrimary: function(event) {
this._handleInput('ok');
return false;
},
onBtnClick: function(event) {
this._handleInput(event.currentTarget.attributes['result'].value);
},
getFocusedComponents: function() {
return [this.btnColor, this.inputName];
},
getDefaultFocusableComponent: function () {
return this.inputName;
},
_handleInput: function(state) {
if (this.options.handler) {
if (state == 'ok') {
if (this.inputName.checkValidate() !== true) {
this.inputName.cmpEl.find('input').focus();
return;
}
}
this.options.handler.call(this, state, (state == 'ok') ? this.getSettings() : undefined);
}
this.close();
},
txtTitleEdit: 'Edit Role',
txtTitleNew: 'Create New Role',
textName: 'Role name',
textEmptyError: 'Role name must not be empty.',
textNoHighlight: 'No highlighting',
errNameExists: 'Role with such a name already exists.'
}, DE.Views.RoleEditDlg || {}));
});

View file

@ -0,0 +1,372 @@
/*
*
* (c) Copyright Ascensio System SIA 2010-2022
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
/**
*
* RolesManagerDlg.js
*
* Created by Julia.Radzhabova on 12.04.22
* Copyright (c) 2022 Ascensio System SIA. All rights reserved.
*
*/
define([ 'text!documenteditor/main/app/template/RolesManagerDlg.template',
'common/main/lib/view/AdvancedSettingsWindow',
'common/main/lib/component/ListView',
'documenteditor/main/app/view/RoleEditDlg',
'documenteditor/main/app/view/RoleDeleteDlg'
], function (contentTemplate) {
'use strict';
DE.Views = DE.Views || {};
DE.Views.RolesManagerDlg = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
alias: 'RolesManagerDlg',
contentWidth: 500,
height: 353,
buttons: null
},
initialize: function (options) {
var me = this;
_.extend(this.options, {
title: this.txtTitle,
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>',
'<div class="footer center">',
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + this.closeButtonText + '</button>',
'</div>'
].join('')
}, options);
this.api = options.api;
this.handler = options.handler;
this.props = options.props;
this.oformManager = this.api.asc_GetOForm();
this.wrapEvents = {
onRefreshRolesList: _.bind(this.onRefreshRolesList, this)
};
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
},
render: function () {
Common.Views.AdvancedSettingsWindow.prototype.render.call(this);
var me = this;
this.rolesList = new Common.UI.ListView({
el: $('#roles-manager-roles-list', this.$window),
store: new Common.UI.DataViewStore(),
emptyText: this.textEmpty,
itemTemplate: _.template([
'<div id="<%= id %>" class="list-item" style="">',
'<div class="listitem-icon"><svg class=""><use xlink:href="#svg-icon-<%= scope.getIconCls(index) %>"></use></svg></div>',
'<div style="min-width: 25px;text-align:center; padding-right: 5px;"><%= index+1 %></div>',
'<div style="min-width: 25px;">',
'<span class="color" style="background: <% if (color) { %>#<%= Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()) %><% } else { %> transparent <% } %>;"></span>',
'</div>',
'<div style="flex-grow: 1;padding-right: 5px;"><%= Common.Utils.String.htmlEncode(name) %></div>',
'<div style="min-width: 25px;text-align: right;opacity: 0.8;"><%= fields %></div>',
'</div>'
].join('')),
tabindex: 1
});
this.rolesList.on('item:select', _.bind(this.onSelectRoleItem, this))
.on('item:keydown', _.bind(this.onKeyDown, this))
.on('item:dblclick', _.bind(this.onDblClickItem, this))
.on('entervalue', _.bind(this.onDblClickItem, this));
this.btnNewRole = new Common.UI.Button({
el: $('#roles-manager-btn-new', this.$window)
});
this.btnNewRole.on('click', _.bind(this.onEditRole, this, false));
this.btnEditRole = new Common.UI.Button({
el: $('#roles-manager-btn-edit', this.$window)
});
this.btnEditRole.on('click', _.bind(this.onEditRole, this, true));
this.btnDeleteRole = new Common.UI.Button({
el: $('#roles-manager-btn-delete', this.$window)
});
this.btnDeleteRole.on('click', _.bind(this.onDeleteRole, this));
this.btnUp = new Common.UI.Button({
parentEl: $('#roles-manager-btn-up', this.$window),
cls: 'btn-toolbar bg-white',
iconCls: 'caret-up',
hint: this.textUp
});
this.btnUp.on('click', _.bind(this.onMoveClick, this, true));
this.btnDown = new Common.UI.Button({
parentEl: $('#roles-manager-btn-down', this.$window),
cls: 'btn-toolbar bg-white',
iconCls: 'caret-down',
hint: this.textDown
});
this.btnDown.on('click', _.bind(this.onMoveClick, this, false));
this.afterRender();
},
getFocusedComponents: function() {
return [ this.btnUp, this.btnDown, this.rolesList, this.btnNewRole, this.btnEditRole, this.btnDeleteRole ];
},
getDefaultFocusableComponent: function () {
return this.rolesList;
},
afterRender: function() {
this._setDefaults(this.props);
},
_setDefaults: function (props) {
this.refreshRolesList(this.oformManager.asc_getAllRoles(), 0);
this.api.asc_registerCallback('asc_onUpdateOFormRoles', this.wrapEvents.onRefreshRolesList);
},
onRefreshRolesList: function(roles) {
this.refreshRolesList(roles);
},
refreshRolesList: function(roles, selectedRole) {
(selectedRole===undefined) && (selectedRole = this.lastSelectedRole); // when add or delete roles
this.lastSelectedRole = undefined;
if (selectedRole===undefined && this.rolesList.store.length>0) {
var rec = this.rolesList.getSelectedRec();
rec && (selectedRole = rec.get('name'));
}
if (roles) {
var arr = [];
for (var i=0; i<roles.length; i++) {
var role = roles[i].asc_getSettings();
arr.push({
name: role.asc_getName() || this.textAnyone,
color: role.asc_getColor(),
fields: role.asc_getFieldCount() || 0,
index: i,
scope: this
});
}
this.rolesList.store.reset(arr);
}
if (this.rolesList.store.length>0) {
var me = this,
rec;
(selectedRole===undefined) && (selectedRole = 0);
if (typeof selectedRole === 'string') { // name
rec = this.rolesList.store.findWhere({name: selectedRole});
this.rolesList.selectRecord(rec);
} else {
selectedRole = Math.min(selectedRole, this.rolesList.store.length-1);
rec = this.rolesList.selectByIndex(selectedRole);
}
setTimeout(function() {
me.rolesList.scrollToRecord(rec || me.rolesList.store.at(0));
}, 50);
}
this.updateButtons();
},
getIconCls: function(index) {
if (this.rolesList.store.length===1)
return 'Point';
return (index===0) ? 'StartPoint' : (index===this.rolesList.store.length-1 ? 'EndPoint' : 'MiddlePoint');
},
onEditRole: function (isEdit) {
if (this._isWarningVisible) return;
var me = this,
xy = me.$window.offset(),
rec = this.rolesList.getSelectedRec();
var win = new DE.Views.RoleEditDlg({
oformManager: me.oformManager,
props : (isEdit && rec) ? {name: rec.get('name'), color: rec.get('color')} : null,
isEdit : (isEdit && rec),
handler : function(result, settings) {
if (result == 'ok' && settings) {
me.lastSelectedRole = settings.name;
var role = new AscCommon.CRoleSettings();
role.asc_putName(settings.name);
role.asc_putColor(settings.color);
if (isEdit && rec) {
me.oformManager.asc_editRole(rec.get('name'), role);
} else {
me.oformManager.asc_addRole(role);
}
}
}
}).on('close', function() {
me.show();
setTimeout(function(){ me.getDefaultFocusableComponent().focus(); }, 100);
});
me.hide();
win.show(xy.left + 65, xy.top + 77);
},
onDeleteRole: function () {
var me = this,
store = this.rolesList.store,
rec = this.rolesList.getSelectedRec();
if (!rec) return;
if (store.length===1 && rec.get('fields')>0) {
Common.UI.warning({
msg: me.warnCantDelete,
buttons: ['ok']
});
return;
}
var callback = function(toRole) {
me.lastSelectedRole = store.indexOf(rec);
me.oformManager.asc_removeRole(rec.get('name'), toRole); // remove role and move it's fields
};
if (rec.get('fields')<1) {
me._isWarningVisible = true;
Common.UI.warning({
msg: Common.Utils.String.format(me.warnDelete, rec.get('name')),
buttons: ['ok', 'cancel'],
callback: function(btn) {
if (btn == 'ok') {
callback();
}
setTimeout(function(){ me.getDefaultFocusableComponent().focus(); }, 100);
me._isWarningVisible = false;
}
});
} else {
var xy = me.$window.offset();
var win = new DE.Views.RoleDeleteDlg({
props : {roles: this.rolesList.store, excludeName: rec.get('name')},
handler : function(result, settings) {
if (result == 'ok' && settings) {
callback(settings);
}
}
}).on('close', function() {
me.show();
setTimeout(function(){ me.getDefaultFocusableComponent().focus(); }, 100);
});
me.hide();
win.show(xy.left + 65, xy.top + 77);
}
},
getSettings: function() {
},
onPrimary: function() {
return true;
},
onDlgBtnClick: function(event) {
this.handler && this.handler.call(this, event.currentTarget.attributes['result'].value, this.getSettings());
this.close();
},
onSelectRoleItem: function(lisvView, itemView, record) {
if (!record) return;
this.lastSelectedRole = undefined;
this.updateMoveButtons();
},
onMoveClick: function(up) {
var rec = this.rolesList.getSelectedRec();
if (rec) {
this.lastSelectedRole = rec.get('name');
up ? this.oformManager.asc_moveUpRole(rec.get('name')) : this.oformManager.asc_moveDownRole(rec.get('name'));
}
},
updateButtons: function() {
this.btnEditRole.setDisabled(this.rolesList.store.length<1);
this.btnDeleteRole.setDisabled(this.rolesList.store.length<1);
this.updateMoveButtons();
this.rolesList.scroller && this.rolesList.scroller.update();
},
updateMoveButtons: function() {
var rec = this.rolesList.getSelectedRec(),
index = rec ? this.rolesList.store.indexOf(rec) : -1;
this.btnUp.setDisabled(index<1);
this.btnDown.setDisabled(index<0 || index==this.rolesList.store.length-1);
},
hide: function () {
Common.UI.Window.prototype.hide.call(this);
},
close: function () {
this.api.asc_unregisterCallback('asc_onUpdateOFormRoles', this.wrapEvents.onRefreshRolesList);
Common.UI.Window.prototype.close.call(this);
},
onKeyDown: function (lisvView, record, e) {
if (e.keyCode==Common.UI.Keys.DELETE && !this.btnDeleteRole.isDisabled())
this.onDeleteRole();
},
onDblClickItem: function (lisvView, record, e) {
if (!this.btnEditRole.isDisabled())
this.onEditRole(true);
},
txtTitle: 'Manage Roles',
closeButtonText : 'Close',
textNew: 'New',
textEdit: 'Edit',
textDelete: 'Delete',
textEmpty: 'No roles have been created yet.<br>Create at least one role and it will appear in this field.',
warnDelete: 'Are you sure you want to delete the role {0}?',
warnCantDelete: 'You cannot delete this role because it has associated fields.',
textUp: 'Move role up',
textDown: 'Move role down',
textDescription: 'Add roles and set the order in which the fillers receive and sign the document',
textAnyone: 'Anyone'
}, DE.Views.RolesManagerDlg || {}));
});

View file

@ -0,0 +1,162 @@
/*
*
* (c) Copyright Ascensio System SIA 2010-2022
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
/**
*
* SaveFormDlg.js
*
* Created by Julia.Radzhabova on 12.04.22
* Copyright (c) 2022 Ascensio System SIA. All rights reserved.
*
*/
define([ 'common/main/lib/view/AdvancedSettingsWindow',
'common/main/lib/component/ListView',
'documenteditor/main/app/view/RoleEditDlg',
'documenteditor/main/app/view/RoleDeleteDlg'
], function (contentTemplate) {
'use strict';
DE.Views = DE.Views || {};
DE.Views.SaveFormDlg = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
alias: 'SaveFormDlg',
contentWidth: 320,
height: 280,
buttons: null
},
initialize: function (options) {
var me = this;
_.extend(this.options, {
title: this.txtTitle,
template: [
'<div class="box" style="height:' + (this.options.height-85) + 'px;">',
'<div class="content-panel" style="padding: 0;">',
'<div class="settings-panel active">',
'<div class="inner-content">',
'<table style="width: 100%;">',
'<tr>',
'<td class="padding-small">',
'<label>' + this.textDescription + '</label>',
'</td>',
'</tr>',
'<tr>',
'<td>',
'<label>' + this.textFill + '</label>',
'</td>',
'</tr>',
'<tr>',
'<td>',
'<div id="save-form-roles-list" class="roles-tableview no-borders" style="width:100%; height: 116px;"></div>',
'</td>',
'</tr>',
'</table>',
'</div>',
'</div>',
'</div>',
'</div>',
'<div class="footer center">',
'<button class="btn normal dlg-btn primary" result="ok" style="width: 86px;">' + this.saveButtonText + '</button>',
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + this.cancelButtonText + '</button>',
'</div>'
].join('')
}, options);
this.handler = options.handler;
this.roles = options.roles;
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
},
render: function () {
Common.Views.AdvancedSettingsWindow.prototype.render.call(this);
var me = this;
this.rolesList = new Common.UI.ListView({
el: $('#save-form-roles-list', this.$window),
store: new Common.UI.DataViewStore(),
simpleAddMode: true,
handleSelect: false,
enableKeyEvents: false,
showLast: false,
emptyText: this.textEmpty,
itemTemplate: _.template([
'<div id="<%= id %>" class="list-item" style="border-color: transparent;">',
'<div class="listitem-icon"><svg class=""><use xlink:href="#svg-icon-<%= scope.getIconCls(index) %>"></use></svg></div>',
'<div style="flex-grow: 1;padding-right: 5px;"><%= Common.Utils.String.htmlEncode(name) %></div>',
'</div>'
].join(''))
});
this.afterRender();
},
afterRender: function() {
this.refreshRolesList(this.roles);
},
refreshRolesList: function(roles, selectedItem) {
if (roles) {
this.roles = roles;
var arr = [];
var me = this;
for (var i=0; i<this.roles.length; i++) {
var role = roles[i].asc_getSettings(),
fields = role.asc_getFieldCount();
(fields>0) && arr.push({
name: role.asc_getName() || me.textAnyone,
color: role.asc_getColor(),
fields: fields,
index: i,
scope: this
});
}
this.rolesList.store.reset(arr);
}
},
getIconCls: function(index) {
if (this.rolesList.store.length===1)
return 'Point';
return (index===0) ? 'StartPoint' : (index===this.rolesList.store.length-1 ? 'EndPoint' : 'MiddlePoint');
},
txtTitle: 'Save as Form',
saveButtonText : 'Save',
textEmpty: 'There are no roles associated with fields.',
textDescription: 'When saving to the oform, only roles with fields are added to the filling list',
textFill: 'Filling list',
textAnyone: 'Anyone'
}, DE.Views.SaveFormDlg || {}));
});

View file

@ -810,7 +810,8 @@ define([
var spectype = control_props.get_SpecificType();
control_props = (spectype==Asc.c_oAscContentControlSpecificType.CheckBox || spectype==Asc.c_oAscContentControlSpecificType.ComboBox ||
spectype==Asc.c_oAscContentControlSpecificType.DropDownList || spectype==Asc.c_oAscContentControlSpecificType.None ||
spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.Complex) &&
spectype==Asc.c_oAscContentControlSpecificType.Picture || spectype==Asc.c_oAscContentControlSpecificType.Complex ||
spectype==Asc.c_oAscContentControlSpecificType.DateTime) &&
control_props.get_FormPr() && control_props.get_FormPr().get_Fixed();
} else
control_props = false;
@ -1112,7 +1113,7 @@ define([
if (w!==null) w = this._mm2pt(w);
var _selectedItem = (w===null) ? w : _.find(this.cmbBorderSize.store.models, function(item) {
if ( w<item.attributes.value+0.00001 && w>item.attributes.value-0.00001) {
if ( w<item.attributes.value+0.0001 && w>item.attributes.value-0.0001) {
return true;
}
});
@ -1214,7 +1215,7 @@ define([
this._state.GradColor = color;
}
this.chShadow.setDisabled(!!shapeprops.get_FromChart());
this.chShadow.setDisabled(!!shapeprops.get_FromChart() || this._locked);
this.chShadow.setValue(!!shapeprops.asc_getShadow(), true);
this._noApply = false;

View file

@ -71,6 +71,7 @@ define([
tip: undefined
};
this._locked = false;
this._protected = false;
this.render();
},
@ -156,6 +157,10 @@ define([
this._locked = locked;
},
setProtected: function (value) {
this._protected = value;
},
setMode: function(mode) {
this.mode = mode;
},
@ -288,7 +293,7 @@ define([
menu.items[3].setVisible(!requested);
menu.items[0].setDisabled(this._locked);
menu.items[3].setDisabled(this._locked);
menu.items[3].setDisabled(this._locked || this._protected);
menu.items[1].cmpEl.attr('data-value', record.get('certificateId')); // view certificate
menu.items[2].cmpEl.attr('data-value', signed ? 1 : 0); // view or edit signature settings
@ -307,7 +312,7 @@ define([
this.api.asc_ViewCertificate(item.cmpEl.attr('data-value'));
break;
case 2:
Common.NotificationCenter.trigger('protect:signature', 'visible', !!parseInt(item.cmpEl.attr('data-value')), guid);// can edit settings for requested signature
Common.NotificationCenter.trigger('protect:signature', 'visible', !!parseInt(item.cmpEl.attr('data-value')) || this._protected, guid);// can edit settings for requested signature
break;
case 3:
var me = this;

View file

@ -161,6 +161,8 @@ define([
me.fireEvent('zoom:value', [item.value]);
});
me.btnDocInfo.menu.on('show:after', _.bind(this.onDocInfoShow, this));
me.onChangeProtectDocument();
}
@ -289,6 +291,36 @@ define([
}
});
var template = _.template(
// '<a id="<%= id %>" tabindex="-1" type="menuitem">' +
'<div style="display: flex;padding: 5px 20px;line-height: 16px;">' +
'<div style="flex-grow: 1;"><%= caption %></div>' +
'<div style="word-break: normal; margin-left: 20px; min-width: 35px;text-align: right;"><%= options.value%></div>' +
'</div>'
// '</a>'
);
this.btnDocInfo = new Common.UI.Button({
cls : 'btn-toolbar no-caret',
caption : this.txtWordCount,
iconCls: 'toolbar__icon word-count',
hintAnchor : 'top-left',
dataHint : '0',
dataHintDirection: 'top',
menu: new Common.UI.Menu({
style: 'margin-top:-5px;',
menuAlign: 'bl-tl',
itemTemplate: template,
items: [
{ caption: this.txtPages, value: 0 },
{ caption: this.txtParagraphs, value: 0 },
{ caption: this.txtWords, value: 0 },
{ caption: this.txtSymbols, value: 0 },
{ caption: this.txtSpaces, value: 0 }
]
})
});
var promise = new Promise(function (accept, reject) {
accept();
});
@ -320,6 +352,7 @@ define([
me.btnLanguage.setMenu(me.langMenu);
me.langMenu.prevTip = 'en';
}
me.btnDocInfo.render($('#slot-status-btn-info', me.$layout));
if (config.canUseSelectHandTools) {
_btn_render(me.btnSelectTool, $('#btn-select-tool', me.$layout));
@ -341,11 +374,14 @@ define([
if (this.api) {
this.api.asc_registerCallback('asc_onCountPages', _.bind(_onCountPages, this));
this.api.asc_registerCallback('asc_onCurrentPage', _.bind(_onCurrentPage, this));
this.api.asc_registerCallback('asc_onGetDocInfoStart', _.bind(this.onGetDocInfoStart, this));
this.api.asc_registerCallback('asc_onGetDocInfoStop', _.bind(this.onGetDocInfoEnd, this));
this.api.asc_registerCallback('asc_onDocInfo', _.bind(this.onDocInfo, this));
this.api.asc_registerCallback('asc_onGetDocInfoEnd', _.bind(this.onGetDocInfoEnd, this));
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onApiCoAuthoringDisconnect, this));
Common.NotificationCenter.on('api:disconnect', _.bind(this.onApiCoAuthoringDisconnect, this));
Common.NotificationCenter.on('protect:doclock', _.bind(this.onChangeProtectDocument, this));
}
return this;
},
@ -428,6 +464,50 @@ define([
}
},
onDocInfoShow: function() {
this.api && this.api.startGetDocInfo();
},
onGetDocInfoStart: function() {
this.infoObj = {PageCount: 0, WordsCount: 0, ParagraphCount: 0, SymbolsCount: 0, SymbolsWSCount:0};
},
onDocInfo: function(obj) {
if (obj && this.btnDocInfo && this.btnDocInfo.menu) {
if (obj.get_PageCount()>-1)
this.btnDocInfo.menu.items[0].options.value = obj.get_PageCount();
if (obj.get_ParagraphCount()>-1)
this.btnDocInfo.menu.items[1].options.value = obj.get_ParagraphCount();
if (obj.get_WordsCount()>-1)
this.btnDocInfo.menu.items[2].options.value = obj.get_WordsCount();
if (obj.get_SymbolsCount()>-1)
this.btnDocInfo.menu.items[3].options.value = obj.get_SymbolsCount();
if (obj.get_SymbolsWSCount()>-1)
this.btnDocInfo.menu.items[4].options.value = obj.get_SymbolsWSCount();
if (!this.timerDocInfo) { // start timer for filling info
var me = this;
this.timerDocInfo = setInterval(function(){
me.fillDocInfo();
}, 300);
this.fillDocInfo();
}
}
},
onGetDocInfoEnd: function() {
clearInterval(this.timerDocInfo);
this.timerDocInfo = undefined;
this.fillDocInfo();
},
fillDocInfo: function() {
if (!this.btnDocInfo || !this.btnDocInfo.menu || !this.btnDocInfo.menu.isVisible()) return;
this.btnDocInfo.menu.items.forEach(function(item){
$(item.el).html(item.template({id: item.id, caption : item.caption, options : item.options}));
});
},
onApiCoAuthoringDisconnect: function() {
this.setMode({isDisconnected:true});
this.SetDisabled(true);
@ -445,7 +525,13 @@ define([
textTrackChanges : 'Track Changes',
textChangesPanel : 'Changes panel',
tipSelectTool : 'Select tool',
tipHandTool : 'Hand tool'
tipHandTool : 'Hand tool',
txtWordCount: 'Word count',
txtPages: 'Pages',
txtWords: 'Words',
txtParagraphs: 'Paragraphs',
txtSymbols: 'Symbols',
txtSpaces: 'Symbols with spaces'
}, DE.Views.Statusbar || {}));
}
);

View file

@ -773,7 +773,7 @@ define([
if (w!==null) w = this._mm2pt(w);
var _selectedItem = (w===null) ? w : _.find(this.cmbBorderSize.store.models, function(item) {
if ( w<item.attributes.value+0.00001 && w>item.attributes.value-0.00001) {
if ( w<item.attributes.value+0.0001 && w>item.attributes.value-0.0001) {
return true;
}
});

View file

@ -117,6 +117,7 @@ define([
lostConnect: 'disconnect',
disableOnStart: 'on-start',
complexForm: 'complex-form',
formsNoRoles: 'no-roles',
fixedForm: 'fixed-form'
};
for (var key in enumLock) {
@ -192,9 +193,12 @@ define([
iconCls: 'toolbar__icon btn-print no-mask',
lock: [_set.cantPrint, _set.disableOnStart],
signals: ['disabled'],
split: config.canQuickPrint,
menu: config.canQuickPrint,
dataHint: '1',
dataHintDirection: 'bottom',
dataHintTitle: 'P'
dataHintTitle: 'P',
printType: 'print'
});
this.toolbarControls.push(this.btnPrint);
@ -875,7 +879,7 @@ define([
id: 'tlbtn-controls',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon btn-controls',
lock: [_set.paragraphLock, _set.headerLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments],
lock: [_set.paragraphLock, _set.headerLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.inSmartart, _set.inSmartartInternal],
caption: me.capBtnInsControls,
menu: new Common.UI.Menu({
cls: 'ppm-toolbar shifted-right',
@ -1752,7 +1756,7 @@ define([
true, true, undefined, '1', 'bottom', 'small');
Array.prototype.push.apply(this.paragraphControls, this.btnsPageBreak);
Array.prototype.push.apply(this.lockControls, this.btnsPageBreak);
this.btnPrint.menu && this.btnPrint.$el.addClass('split');
return $host;
},
@ -1763,6 +1767,30 @@ define([
})).then(function () {
if ( !config.isEdit ) return;
if(me.btnPrint.menu){
me.btnPrint.setMenu(
new Common.UI.Menu({
items:[
{
caption: me.tipPrint,
iconCls: 'menu__icon btn-print',
toggleGroup: 'viewPrint',
value: 'print',
iconClsForMainBtn: 'btn-print',
platformKey: Common.Utils.String.platformKey('Ctrl+P')
},
{
caption: me.tipPrintQuick,
iconCls: 'menu__icon btn-quick-print',
toggleGroup: 'viewPrint',
value: 'print-quick',
iconClsForMainBtn: 'btn-quick-print',
platformKey: ''
}
]
}));
}
me.btnsPageBreak.forEach( function(btn) {
btn.updateHint( [me.textInsPageBreak, me.tipPageBreak] );
@ -2050,6 +2078,7 @@ define([
ids.push('id-toolbar-menu-markers-level-' + i);
items.push({template: levelTemplate, previewId: ids[i], level: i, checkable: true });
}
this.btnMarkers.setMenu(
new Common.UI.Menu({
cls: 'shifted-left',
@ -2769,6 +2798,7 @@ define([
tipUndo: 'Undo',
tipRedo: 'Redo',
tipPrint: 'Print',
tipPrintQuick: 'Quick print',
tipSave: 'Save',
tipIncFont: 'Increment font size',
tipDecFont: 'Decrement font size',

View file

@ -144,6 +144,7 @@ define([
var value = Common.UI.LayoutManager.getInitValue('rightMenu');
value = (value!==undefined) ? !value : false;
Common.localStorage.getBool("de-hidden-rightmenu", value) && me._rightMenu.hide();
Common.Utils.InternalSettings.set("de-hidden-rightmenu", Common.localStorage.getBool("de-hidden-rightmenu", value));
},
applyCommonMode: function() {

View file

@ -333,6 +333,7 @@
<img class="inline-svg" src="../../common/main/resources/img/toolbar/charttypes.svg">
<img class="inline-svg" src="../../common/main/resources/img/toolbar/equationicons.svg">
<img class="inline-svg" src="../../common/main/resources/img/right-panels/arrows.svg">
<img class="inline-svg" src="resources/img/form-points.svg">
<script>
var svgpoints = document.querySelectorAll('img.inline-svg');
SVGInjector(svgpoints);

View file

@ -323,6 +323,7 @@
<inline src="../../common/main/resources/img/toolbar/charttypes.svg" />
<inline src="../../common/main/resources/img/toolbar/equationicons.svg" />
<inline src="../../common/main/resources/img/right-panels/arrows.svg" />
<inline src="resources/img/form-points.svg" />
<script src="../../../../../../sdkjs/common/device_scale.js?__inline=true"></script>
<script data-main="app" src="../../../vendor/requirejs/require.js"></script>

View file

@ -273,6 +273,7 @@
<img class="inline-svg" src="../../common/main/resources/img/toolbar/charttypes.svg">
<img class="inline-svg" src="../../common/main/resources/img/toolbar/equationicons.svg">
<img class="inline-svg" src="../../common/main/resources/img/right-panels/arrows.svg">
<img class="inline-svg" src="resources/img/form-points.svg">
<script>
var svgpoints = document.querySelectorAll('img.inline-svg');
SVGInjector(svgpoints);

View file

@ -322,7 +322,7 @@
<inline src="../../common/main/resources/img/toolbar/charttypes.svg" />
<inline src="../../common/main/resources/img/toolbar/equationicons.svg" />
<inline src="../../common/main/resources/img/right-panels/arrows.svg" />
<inline src="resources/img/form-points.svg" />
<div id="viewport"></div>
<script data-main="app" src="../../../vendor/requirejs/require.js"></script>

View file

@ -187,6 +187,8 @@
"Common.define.smartArt.textGridMatrix": "Matriu de quadrícula",
"Common.define.smartArt.textGroupedList": "Llista agrupada",
"Common.Translation.textMoreButton": "Més",
"Common.Translation.tipFileLocked": "El document està bloquejat per editar-lo. Podeu fer canvis i desar-los com a còpia local més tard.",
"Common.Translation.tipFileReadOnly": "El document és només de lectura, l'edició està bloquejada. Podeu fer canvis i desar la còpia local més tard.",
"Common.Translation.warnFileLocked": "No pots editar aquest fitxer perquè és obert en una altra aplicació.",
"Common.Translation.warnFileLockedBtnEdit": "Crea una còpia",
"Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització",
@ -1000,6 +1002,8 @@
"DE.Controllers.Main.warnProcessRightsChange": "No tens permís per editar el fitxer.",
"DE.Controllers.Navigation.txtBeginning": "Inici del document",
"DE.Controllers.Navigation.txtGotoBeginning": "Ves al començament del document",
"DE.Controllers.Print.txtCustom": "Personalització",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Introduïu un sol número de pàgina o un sol interval de pàgines (per exemple, 5-12). O podeu imprimir en PDF.",
"DE.Controllers.Search.notcriticalErrorTitle": "Advertiment",
"DE.Controllers.Search.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.",
"DE.Controllers.Search.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.",
@ -2461,6 +2465,11 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Estableix només la vora superior",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sense vores",
"DE.Views.PrintWithPreview.txtAllPages": "Totes les pàgines",
"DE.Views.PrintWithPreview.txtBottom": "Inferior",
"DE.Views.PrintWithPreview.txtCurrentPage": "Pàgina actual",
"DE.Views.PrintWithPreview.txtCustom": "Personalització",
"DE.Views.PrintWithPreview.txtCustomPages": "Impressió personalitzada",
"DE.Views.ProtectDialog.textComments": "Comentaris",
"DE.Views.ProtectDialog.textForms": "Omplir formularis",
"DE.Views.ProtectDialog.txtAllow": "Només permet aquest tipus d'edició del document",

View file

@ -125,6 +125,7 @@
"Common.define.chartData.textScatterSmoothMarker": "Scatter med jævne linjer og markører",
"Common.define.chartData.textStock": "Aktie",
"Common.define.chartData.textSurface": "Overflade",
"Common.define.smartArt.textAccentProcess": "(intet)",
"Common.Translation.warnFileLocked": "Dokumentet er i brug af en anden applikation. Du kan fortsætte med at redigere og gemme en kopi.",
"Common.Translation.warnFileLockedBtnEdit": "Opret en kopi",
"Common.Translation.warnFileLockedBtnView": "Åben for visning",

View file

@ -285,6 +285,8 @@
"Common.define.smartArt.textVerticalPictureList": "Vertikale Bildliste",
"Common.define.smartArt.textVerticalProcess": "Vertikaler Prozess",
"Common.Translation.textMoreButton": "Mehr",
"Common.Translation.tipFileLocked": "Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die Datei später als lokale Kopie speichern.",
"Common.Translation.tipFileReadOnly": "Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.",
"Common.Translation.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.",
"Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen",
"Common.Translation.warnFileLockedBtnView": "Schreibgeschützt öffnen",
@ -458,6 +460,7 @@
"Common.Views.Header.textCompactView": "Symbolleiste ausblenden",
"Common.Views.Header.textHideLines": "Lineale verbergen",
"Common.Views.Header.textHideStatusBar": "Statusleiste verbergen",
"Common.Views.Header.textReadOnly": "Schreibgeschützt",
"Common.Views.Header.textRemoveFavorite": "Aus Favoriten entfernen",
"Common.Views.Header.textShare": "Freigeben",
"Common.Views.Header.textZoom": "Zoom",
@ -465,6 +468,7 @@
"Common.Views.Header.tipDownload": "Datei herunterladen",
"Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten",
"Common.Views.Header.tipPrint": "Datei drucken",
"Common.Views.Header.tipPrintQuick": "Schnelldruck",
"Common.Views.Header.tipRedo": "Wiederholen",
"Common.Views.Header.tipSave": "Speichern",
"Common.Views.Header.tipSearch": "Suchen",
@ -829,6 +833,7 @@
"DE.Controllers.Main.textRequestMacros": "Ein Makro stellt eine Anfrage an die URL. Möchten Sie die Anfrage an die %1 zulassen?",
"DE.Controllers.Main.textShape": "Form",
"DE.Controllers.Main.textStrict": "Formaler Modus",
"DE.Controllers.Main.textTryQuickPrint": "Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.<br>Sollen Sie fortfahren?",
"DE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.<br>Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.",
"DE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.",
"DE.Controllers.Main.textUndo": "Rückgängig",
@ -1102,6 +1107,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
"DE.Controllers.Navigation.txtBeginning": "Anfang des Dokuments",
"DE.Controllers.Navigation.txtGotoBeginning": "Zum Anfang des Dokuments übergehnen",
"DE.Controllers.Print.textMarginsLast": " Benutzerdefiniert als letzte",
"DE.Controllers.Print.txtCustom": "Benutzerdefiniert",
"DE.Controllers.Print.txtPrintRangeInvalid": "Ungültiger Druckbereich",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Geben Sie entweder eine einzelne Seitenzahl oder einen einzelnen Seitenbereich ein (z. B. 5-12). Oder Sie können in PDF drucken.",
"DE.Controllers.Search.notcriticalErrorTitle": "Achtung",
"DE.Controllers.Search.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.",
"DE.Controllers.Search.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.",
@ -2020,6 +2029,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Keine",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Rechtschreibprüfung",
"DE.Views.FileMenuPanels.Settings.txtPt": "Punkt",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Alle aktivieren",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Alle Makros ohne Benachrichtigung aktivieren",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Änderungen anzeigen",
@ -2577,6 +2588,33 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen",
"DE.Views.PrintWithPreview.textMarginsLast": " Benutzerdefiniert als letzte",
"DE.Views.PrintWithPreview.textMarginsModerate": "Mittelmäßig",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Schmal",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normal",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "Normal (US)",
"DE.Views.PrintWithPreview.textMarginsWide": "Breit",
"DE.Views.PrintWithPreview.txtAllPages": "Alle Seiten",
"DE.Views.PrintWithPreview.txtBottom": "Unten",
"DE.Views.PrintWithPreview.txtCurrentPage": "Aktuelle Seite",
"DE.Views.PrintWithPreview.txtCustom": "Benutzerdefiniert",
"DE.Views.PrintWithPreview.txtCustomPages": "Benutzerdefinierter Druck",
"DE.Views.PrintWithPreview.txtLandscape": "Querformat",
"DE.Views.PrintWithPreview.txtLeft": "Links",
"DE.Views.PrintWithPreview.txtMargins": "Ränder",
"DE.Views.PrintWithPreview.txtOf": "von {0}",
"DE.Views.PrintWithPreview.txtPage": "Seite",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Ungültige Seitennummer",
"DE.Views.PrintWithPreview.txtPageOrientation": "Seitenausrichtung",
"DE.Views.PrintWithPreview.txtPages": "Seiten",
"DE.Views.PrintWithPreview.txtPageSize": "Seitengröße",
"DE.Views.PrintWithPreview.txtPortrait": "Hochformat",
"DE.Views.PrintWithPreview.txtPrint": "Drucken",
"DE.Views.PrintWithPreview.txtPrintPdf": "Als PDF-Datei drucken",
"DE.Views.PrintWithPreview.txtPrintRange": "Druckbereich",
"DE.Views.PrintWithPreview.txtRight": "Rechts",
"DE.Views.PrintWithPreview.txtSelection": "Auswahl",
"DE.Views.PrintWithPreview.txtTop": "Oben",
"DE.Views.ProtectDialog.textComments": "Kommentare",
"DE.Views.ProtectDialog.textForms": "Ausfüllen von Formularen",
"DE.Views.ProtectDialog.textReview": "Überarbeitungen",

View file

@ -11,6 +11,7 @@
"Common.Controllers.ExternalMergeEditor.warningTitle": "Προειδοποίηση",
"Common.Controllers.ExternalOleEditor.textAnonymous": "Ανώνυμος",
"Common.Controllers.ExternalOleEditor.textClose": "Κλείσιμο",
"Common.Controllers.ExternalOleEditor.warningTitle": "Προειδοποίηση",
"Common.Controllers.History.notcriticalErrorTitle": "Προειδοποίηση",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Για να γίνει σύγκριση εγγράφων όλες οι σημειωμένες αλλαγές εντός τους θα θεωρηθούν αποδεκτές. Θέλετε να συνεχίσετε;",
"Common.Controllers.ReviewChanges.textAtLeast": "τουλάχιστον",
@ -123,7 +124,45 @@
"Common.define.chartData.textScatterSmoothMarker": "Διασπορά με ομαλές γραμμές και δείκτες",
"Common.define.chartData.textStock": "Μετοχή",
"Common.define.chartData.textSurface": "Επιφάνεια",
"Common.define.smartArt.textAccentedPicture": "Εικόνα με Τόνους",
"Common.define.smartArt.textAccentProcess": "Διεργασία Τονισμού",
"Common.define.smartArt.textAlternatingFlow": "Εναλλασσόμενη Ροή",
"Common.define.smartArt.textAlternatingHexagons": "Εναλλασσόμενα Εξάγωνα",
"Common.define.smartArt.textAlternatingPictureBlocks": "Εναλλασσόμενα Μπλοκ Εικόνων",
"Common.define.smartArt.textAlternatingPictureCircles": "Εναλλασσόμενοι Κύκλοι Εικόνων",
"Common.define.smartArt.textArchitectureLayout": "Αρχιτεκτονικό Σχέδιο",
"Common.define.smartArt.textArrowRibbon": "Κορδέλα με Βέλος",
"Common.define.smartArt.textAscendingPictureAccentProcess": "Αύξουσα έμφαση εικόνας",
"Common.define.smartArt.textBalance": "Ισορροπία",
"Common.define.smartArt.textBasicBendingProcess": "Βασική Διεργασία Κλίσης",
"Common.define.smartArt.textBasicBlockList": "Βασική Λίστα Μπλοκ",
"Common.define.smartArt.textBasicCycle": "Βασικός Κύκλος",
"Common.define.smartArt.textBasicMatrix": "Βασικός Πίνακας",
"Common.define.smartArt.textBasicPie": "Βασική Πίτα",
"Common.define.smartArt.textBasicProcess": "Βασική Διεργασία",
"Common.define.smartArt.textBasicPyramid": "Βασική Πυραμίδα",
"Common.define.smartArt.textBasicRadial": "Βασικό Ακτινικό ",
"Common.define.smartArt.textBasicTarget": "Βασικός Στόχος",
"Common.define.smartArt.textBasicTimeline": "Βασική Χρονική Ακολουθία",
"Common.define.smartArt.textBasicVenn": "Βασικό Venn",
"Common.define.smartArt.textBendingPictureBlocks": "Κεκλιμένα Μπλοκ Εικόνων",
"Common.define.smartArt.textBendingPictureCaption": "Κεκλιμένη Λεζάντα Εικόνας",
"Common.define.smartArt.textBendingPictureCaptionList": "Κεκλιμένη Λίστα Λεζάντων Εικόνας",
"Common.define.smartArt.textCaptionedPictures": "Εικόνες με Λεζάντα",
"Common.define.smartArt.textConvergingArrows": "Συμβαλλόμενα Βέλη",
"Common.define.smartArt.textDivergingArrows": "Αποκλίνοντα Βέλη",
"Common.define.smartArt.textEquation": "Εξίσωση",
"Common.define.smartArt.textHierarchy": "Ιεραρχία",
"Common.define.smartArt.textList": "Λίστα",
"Common.define.smartArt.textNameAndTitleOrganizationChart": "Όνομα και Τίτλος",
"Common.define.smartArt.textOther": "Άλλα",
"Common.define.smartArt.textPicture": "Εικόνα",
"Common.define.smartArt.textProcess": "Διεργασία",
"Common.define.smartArt.textProcessList": "Λίστα διεργασιών",
"Common.define.smartArt.textPyramid": "Πυραμίδα",
"Common.define.smartArt.textReverseList": "Αντίστροφη λίστα",
"Common.Translation.textMoreButton": "Περισσότερα",
"Common.Translation.tipFileLocked": "Το έγγραφο είναι κλειδωμένο για επεξεργασία. Μπορείτε να κάνετε αλλαγές και να τις αποθηκεύσετε αργότερα ως τοπικό αντίγραφο.",
"Common.Translation.warnFileLocked": "Δεν μπορείτε να επεξεργαστείτε αυτό το αρχείο επειδή επεξεργάζεται σε άλλη εφαρμογή.",
"Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου",
"Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή",
@ -219,7 +258,7 @@
"Common.Views.About.txtTel": "Tηλ.: ",
"Common.Views.About.txtVersion": "Έκδοση ",
"Common.Views.AutoCorrectDialog.textAdd": "Προσθήκη",
"Common.Views.AutoCorrectDialog.textApplyText": "Εφαρμογή Κατά Την Πληκτρολόγηση",
"Common.Views.AutoCorrectDialog.textApplyText": "Εφαρμογή κατά την πληκτρολόγηση",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "Αυτόματη Διόρθωση",
"Common.Views.AutoCorrectDialog.textAutoFormat": "Αυτόματη Μορφοποίηση Κατά Την Πληκτρολόγηση",
"Common.Views.AutoCorrectDialog.textBulleted": "Αυτόματες λίστες κουκκίδων",
@ -284,6 +323,8 @@
"Common.Views.DocumentAccessDialog.textLoading": "Φόρτωση ...",
"Common.Views.DocumentAccessDialog.textTitle": "Ρυθμίσεις Διαμοιρασμού",
"Common.Views.ExternalDiagramEditor.textTitle": "Συντάκτης Γραφήματος",
"Common.Views.ExternalEditor.textClose": "Κλείσιμο",
"Common.Views.ExternalEditor.textSave": "Αποθήκευση & Έξοδος",
"Common.Views.ExternalMergeEditor.textTitle": "Παραλήπτες Συγχωνευμένης Αλληλογραφίας",
"Common.Views.Header.labelCoUsersDescr": "Οι χρήστες που επεξεργάζονται το αρχείο:",
"Common.Views.Header.textAddFavorite": "Σημείωση ως αγαπημένο",
@ -292,6 +333,7 @@
"Common.Views.Header.textCompactView": "Απόκρυψη Γραμμής Εργαλείων",
"Common.Views.Header.textHideLines": "Απόκρυψη Χαράκων",
"Common.Views.Header.textHideStatusBar": "Απόκρυψη Γραμμής Κατάστασης",
"Common.Views.Header.textReadOnly": "Μόνο για ανάγνωση",
"Common.Views.Header.textRemoveFavorite": "Αφαίρεση από τα Αγαπημένα",
"Common.Views.Header.textShare": "Διαμοιρασμός",
"Common.Views.Header.textZoom": "Εστίαση",
@ -349,6 +391,7 @@
"Common.Views.Plugins.textStart": "Εκκίνηση",
"Common.Views.Plugins.textStop": "Διακοπή",
"Common.Views.Protection.hintAddPwd": "Κρυπτογράφηση με συνθηματικό",
"Common.Views.Protection.hintDelPwd": "Διαγραφή συνθηματικού",
"Common.Views.Protection.hintPwd": "Αλλαγή ή διαγραφή συνθηματικού",
"Common.Views.Protection.hintSignature": "Προσθήκη ψηφιακής υπογραφής ή γραμμής υπογραφής",
"Common.Views.Protection.txtAddPwd": "Προσθήκη συνθηματικού",
@ -460,6 +503,7 @@
"Common.Views.SaveAsDlg.textTitle": "Φάκελος για αποθήκευση",
"Common.Views.SearchPanel.textCaseSensitive": "Διάκριση Πεζών-Κεφαλαίων",
"Common.Views.SearchPanel.textCloseSearch": "Κλείσιμο αναζήτησης",
"Common.Views.SearchPanel.textContentChanged": "Το έγγραφο τροποποιήθηκε.",
"Common.Views.SearchPanel.textFind": "Εύρεση",
"Common.Views.SearchPanel.textFindAndReplace": "Εύρεση και Αντικατάσταση",
"Common.Views.SearchPanel.textMatchUsingRegExp": "Ταίριασμα χρησιμοποιώντας κανονικές εκφράσεις (regexp)",
@ -468,6 +512,7 @@
"Common.Views.SearchPanel.textReplace": "Αντικατάσταση",
"Common.Views.SearchPanel.textReplaceAll": "Αντικατάσταση Όλων",
"Common.Views.SearchPanel.textReplaceWith": "Αντικατάσταση με",
"Common.Views.SearchPanel.textSearchAgain": "{0}Διενέργεια νέας αναζήτησης{1} για ακριβή αποτελέσματα.",
"Common.Views.SearchPanel.textSearchResults": "Αποτελέσματα αναζήτησης: {0}/{1}",
"Common.Views.SearchPanel.textTooManyResults": "Υπάρχουν πάρα πολλά αποτελέσματα για εμφάνιση εδώ",
"Common.Views.SearchPanel.textWholeWords": "Ολόκληρες λέξεις μόνο",
@ -491,6 +536,7 @@
"Common.Views.SignDialog.tipFontName": "Όνομα Γραμματοσειράς",
"Common.Views.SignDialog.tipFontSize": "Μέγεθος Γραμματοσειράς",
"Common.Views.SignSettingsDialog.textAllowComment": "Να επιτρέπεται στον υπογράφοντα να προσθέτει σχόλιο στο διάλογο υπογραφής",
"Common.Views.SignSettingsDialog.textDefInstruction": "Πριν υπογράψετε το έγγραφο, βεβαιωθείτε για την ορθότητα των περιεχομένων.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Ηλεκτρονική Διεύθυνση",
"Common.Views.SignSettingsDialog.textInfoName": "Όνομα",
"Common.Views.SignSettingsDialog.textInfoTitle": "Τίτλος Υπογράφοντος",
@ -570,12 +616,18 @@
"DE.Controllers.Main.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.",
"DE.Controllers.Main.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων για λεπτομέρειες.",
"DE.Controllers.Main.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.",
"DE.Controllers.Main.errorInconsistentExt": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου δεν αντιστοιχούν στην κατάληξή του ονόματός του.",
"DE.Controllers.Main.errorInconsistentExtDocx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου αντιστοιχούν σε αρχεία κειμένου (π.χ. docx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.",
"DE.Controllers.Main.errorInconsistentExtPdf": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου αντιστοιχούν σε μια από τις ακόλουθες μορφές: pdf/djvu/xps/oxps, αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.",
"DE.Controllers.Main.errorInconsistentExtPptx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου αντιστοιχούν σε παρουσιάσεις (π.χ. pptx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.",
"DE.Controllers.Main.errorInconsistentExtXlsx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.<br>Τα περιεχόμενα του αρχείου αντιστοιχούν σε υπολογιστικά φύλλα (π.χ. xlsx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού",
"DE.Controllers.Main.errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει",
"DE.Controllers.Main.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.",
"DE.Controllers.Main.errorMailMergeLoadFile": "Η φόρτωση του εγγράφου απέτυχε. Παρακαλούμε επιλέξτε ένα διαφορετικό αρχείο.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Η συγχώνευση απέτυχε.",
"DE.Controllers.Main.errorNoTOC": "Δεν υπάρχει πίνακας περιεχομένων για ενημέρωση. Μπορείτε να εισαγάγετε ένα από την καρτέλα Αναφορές.",
"DE.Controllers.Main.errorPasswordIsNotCorrect": "Ο κωδικός που εισάγατε δεν είναι σωστός.<br>Βεβαιωθείτε ότι το πλήκτρο CAPS LOCK είναι ανενεργό και ότι χρησιμοποιείτε κεφαλαία όπου χρειάζεται.",
"DE.Controllers.Main.errorProcessSaveResult": "Αποτυχία αποθήκευσης.",
"DE.Controllers.Main.errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.",
"DE.Controllers.Main.errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε επαναφορτώστε τη σελίδα.",
@ -631,6 +683,7 @@
"DE.Controllers.Main.textClose": "Κλείσιμο",
"DE.Controllers.Main.textCloseTip": "Κάντε κλικ για να κλείσει η υπόδειξη",
"DE.Controllers.Main.textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων",
"DE.Controllers.Main.textContinue": "Συνέχεια",
"DE.Controllers.Main.textConvertEquation": "Η εξίσωση αυτή δημιουργήθηκε με παλαιότερη έκδοση του συντάκτη εξισώσεων που δεν υποστηρίζεται πια. Για να την επεξεργαστείτε, μετατρέψτε την σε μορφή Office Math ML.<br>Να μετατραπεί τώρα;",
"DE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.<br>Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.",
"DE.Controllers.Main.textDisconnect": "Η σύνδεση χάθηκε",
@ -651,6 +704,7 @@
"DE.Controllers.Main.textStrict": "Αυστηρή κατάσταση",
"DE.Controllers.Main.textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.<br>Κάντε κλικ στο κουμπί 'Αυστηρή κατάσταση' για να μεταβείτε στην Αυστηρή κατάσταση συν-επεξεργασίας όπου επεξεργάζεστε το αρχείο χωρίς παρέμβαση άλλων χρηστών και στέλνετε τις αλλαγές σας αφού τις αποθηκεύσετε. Η μετάβαση μεταξύ των δύο καταστάσεων γίνεται μέσω των Προηγμένων Ρυθμίσεων.",
"DE.Controllers.Main.textTryUndoRedoWarn": "Οι λειτουργίες Αναίρεση/Επανάληψη απενεργοποιούνται για τη λειτουργία γρήγορης συν-επεξεργασίας.",
"DE.Controllers.Main.textUndo": "Αναίρεση",
"DE.Controllers.Main.titleLicenseExp": "Η άδεια έληξε",
"DE.Controllers.Main.titleServerVersion": "Ο συντάκτης ενημερώθηκε",
"DE.Controllers.Main.titleUpdateVersion": "Η έκδοση άλλαξε",
@ -921,7 +975,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.",
"DE.Controllers.Navigation.txtBeginning": "Έναρξη εγγράφου",
"DE.Controllers.Navigation.txtGotoBeginning": "Μετάβαση στην αρχή του εγγράφου",
"DE.Controllers.Print.textMarginsLast": "Τελευταίο προσαρμοσμένο",
"DE.Controllers.Print.txtCustom": "Προσαρμοσμένο",
"DE.Controllers.Search.notcriticalErrorTitle": "Προειδοποίηση",
"DE.Controllers.Search.textReplaceSkipped": "Η αντικατάσταση έχει γίνει. {0} περιστατικά παραλείφθηκαν.",
"DE.Controllers.Search.warnReplaceString": "{0} δεν είναι ένας έγκυρος ειδικός χαρακτήρας για το πλαίσιο Αντικατάσταση με.",
"DE.Controllers.Statusbar.textDisconnect": "<b>Η σύνδεση χάθηκε</b><br>Απόπειρα επανασύνδεσης. Παρακαλούμε, ελέγξτε τις ρυθμίσεις σύνδεσης.",
"DE.Controllers.Statusbar.textHasChanges": "Έχουν εντοπιστεί νέες αλλαγές",
@ -1317,14 +1374,22 @@
"DE.Views.CellsAddDialog.textRow": "Γραμμές",
"DE.Views.CellsAddDialog.textTitle": "Εισαγωγή Πολλών",
"DE.Views.CellsAddDialog.textUp": "Πάνω από τον δρομέα",
"DE.Views.ChartSettings.text3dDepth": "Βάθος (% της βάσης)",
"DE.Views.ChartSettings.text3dRotation": "Περιστροφή 3Δ",
"DE.Views.ChartSettings.textAdvanced": "Εμφάνιση προηγμένων ρυθμίσεων",
"DE.Views.ChartSettings.textAutoscale": "Αυτόματη κλιμάκωση",
"DE.Views.ChartSettings.textChartType": "Αλλαγή Τύπου Γραφήματος",
"DE.Views.ChartSettings.textDefault": "Προεπιλεγμένη Περιστροφή",
"DE.Views.ChartSettings.textDown": "Κάτω",
"DE.Views.ChartSettings.textEditData": "Επεξεργασία Δεδομένων",
"DE.Views.ChartSettings.textHeight": "Ύψος",
"DE.Views.ChartSettings.textLeft": "Αριστερά",
"DE.Views.ChartSettings.textOriginalSize": "Πραγματικό Μέγεθος",
"DE.Views.ChartSettings.textRight": "Δεξιά",
"DE.Views.ChartSettings.textSize": "Μέγεθος",
"DE.Views.ChartSettings.textStyle": "Τεχνοτροπία",
"DE.Views.ChartSettings.textUndock": "Απαγκίστρωση από τον πίνακα",
"DE.Views.ChartSettings.textUp": "Επάνω",
"DE.Views.ChartSettings.textWidth": "Πλάτος",
"DE.Views.ChartSettings.textWrap": "Τεχνοτροπία Αναδίπλωσης",
"DE.Views.ChartSettings.txtBehind": "Πίσω από το Κείμενο",
@ -1338,7 +1403,7 @@
"DE.Views.ControlSettingsDialog.strGeneral": "Γενικά",
"DE.Views.ControlSettingsDialog.textAdd": "Προσθήκη",
"DE.Views.ControlSettingsDialog.textAppearance": "Εμφάνιση",
"DE.Views.ControlSettingsDialog.textApplyAll": "Εφαρμογή σε Όλα",
"DE.Views.ControlSettingsDialog.textApplyAll": "Εφαρμογή σε όλα",
"DE.Views.ControlSettingsDialog.textBox": "Οριοθετημένο κουτί",
"DE.Views.ControlSettingsDialog.textChange": "Επεξεργασία",
"DE.Views.ControlSettingsDialog.textCheckbox": "Πλαίσιο ελέγχου",
@ -1416,14 +1481,23 @@
"DE.Views.DateTimeDialog.textLang": "Γλώσσα",
"DE.Views.DateTimeDialog.textUpdate": "Αυτόματη ενημέρωση",
"DE.Views.DateTimeDialog.txtTitle": "Ημερομηνία & Ώρα",
"DE.Views.DocProtection.hintProtectDoc": "Προστασία εγγράφου",
"DE.Views.DocProtection.txtDocProtectedComment": "Το έγγραφο προστατεύεται.<br>Μπορείτε μόνο να εισάγετε σχόλια στο έγγραφο.",
"DE.Views.DocProtection.txtDocProtectedForms": "Το έγγραφο προστατεύεται.<br>Μπορείτε μόνο να συμπληρώσετε φόρμες μέσα στο έγγραφο.",
"DE.Views.DocProtection.txtDocProtectedTrack": "Το έγγραφο προστατεύεται.<br>Μπορείτε να επεξεργαστείτε το έγγραφο, αλλά όλες οι αλλαγές θα καταγραφούν.",
"DE.Views.DocProtection.txtDocProtectedView": "Το έγγραφο προστατεύεται.<br>Μπορείτε μόνο να δείτε το έγγραφο.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Εισάγετε συνθηματικό για αναίρεση της προστασίας εγγράφου",
"DE.Views.DocumentHolder.aboveText": "Πάνω από",
"DE.Views.DocumentHolder.addCommentText": "Προσθήκη Σχολίου",
"DE.Views.DocumentHolder.advancedDropCapText": "Ρυθμίσεις Αρχιγράμματος",
"DE.Views.DocumentHolder.advancedEquationText": "Ρυθμίσεις εξίσωσης",
"DE.Views.DocumentHolder.advancedFrameText": "Προηγμένες Ρυθμίσεις Πλαισίου",
"DE.Views.DocumentHolder.advancedParagraphText": "Προηγμένες Ρυθμίσεις Παραγράφου",
"DE.Views.DocumentHolder.advancedTableText": "Προηγμένες Ρυθμίσεις Πίνακα",
"DE.Views.DocumentHolder.advancedText": "Προηγμένες Ρυθμίσεις",
"DE.Views.DocumentHolder.alignmentText": "Στοίχιση",
"DE.Views.DocumentHolder.allLinearText": "Όλα - Γραμμικό",
"DE.Views.DocumentHolder.allProfText": "Όλα - Επαγγελματικό",
"DE.Views.DocumentHolder.belowText": "Παρακάτω",
"DE.Views.DocumentHolder.breakBeforeText": "Αλλαγή σελίδας πριν",
"DE.Views.DocumentHolder.bulletsText": "Κουκκίδες και Αρίθμηση",
@ -1432,6 +1506,8 @@
"DE.Views.DocumentHolder.centerText": "Κέντρο",
"DE.Views.DocumentHolder.chartText": "Προηγμένες Ρυθμίσεις Γραφήματος",
"DE.Views.DocumentHolder.columnText": "Στήλη",
"DE.Views.DocumentHolder.currLinearText": "Τρέχον - Γραμμικό",
"DE.Views.DocumentHolder.currProfText": "Τρέχον - Επαγγελματικό",
"DE.Views.DocumentHolder.deleteColumnText": "Διαγραφή Στήλης",
"DE.Views.DocumentHolder.deleteRowText": "Διαγραφή Γραμμής",
"DE.Views.DocumentHolder.deleteTableText": "Διαγραφή Πίνακα",
@ -1444,6 +1520,7 @@
"DE.Views.DocumentHolder.editFooterText": "Επεξεργασία Υποσέλιδου",
"DE.Views.DocumentHolder.editHeaderText": "Επεξεργασία Κεφαλίδας",
"DE.Views.DocumentHolder.editHyperlinkText": "Επεξεργασία Υπερσυνδέσμου",
"DE.Views.DocumentHolder.eqToInlineText": "Αλλαγή σε Εντός Κειμένου",
"DE.Views.DocumentHolder.guestText": "Επισκέπτης",
"DE.Views.DocumentHolder.hyperlinkText": "Υπερσύνδεσμος",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Αγνόηση Όλων",
@ -1737,10 +1814,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Έκδοση PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Τοποθεσία",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Άτομα που έχουν δικαιώματα",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Σύμβολα με διαστήματα",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Χαρακτήρες με διαστήματα",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Στατιστικά",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Θέμα",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Σύμβολα",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Χαρακτήρες",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Τίτλος",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Μεταφορτώθηκε",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Λέξεις",
@ -1827,12 +1904,17 @@
"DE.Views.FormSettings.textColor": "Χρώμα περιγράμματος",
"DE.Views.FormSettings.textComb": "Ξεδιάλεγμα χαρακτήρων",
"DE.Views.FormSettings.textCombobox": "Πολλαπλές Επιλογές",
"DE.Views.FormSettings.textComplex": "Σύνθετο Πεδίο",
"DE.Views.FormSettings.textConnected": "Συνδεδεμένα πεδία",
"DE.Views.FormSettings.textDelete": "Διαγραφή",
"DE.Views.FormSettings.textDigits": "Ψηφία",
"DE.Views.FormSettings.textDisconnect": "Αποσύνδεση",
"DE.Views.FormSettings.textDropDown": "Πτυσσόμενη Λίστα",
"DE.Views.FormSettings.textExact": "Ακριβώς",
"DE.Views.FormSettings.textField": "Πεδίο Κειμένου",
"DE.Views.FormSettings.textFixed": "Πεδίο σταθερού μεγέθους",
"DE.Views.FormSettings.textFormat": "Μορφή",
"DE.Views.FormSettings.textFormatSymbols": "Επιτρεπτά Σύμβολα",
"DE.Views.FormSettings.textFromFile": "Από Αρχείο",
"DE.Views.FormSettings.textFromStorage": "Από Αποθηκευτικό Χώρο",
"DE.Views.FormSettings.textFromUrl": "Από διεύθυνση URL",
@ -1840,10 +1922,12 @@
"DE.Views.FormSettings.textImage": "Εικόνα",
"DE.Views.FormSettings.textKey": "Κλειδί",
"DE.Views.FormSettings.textLock": "Κλείδωμα",
"DE.Views.FormSettings.textMask": "Τυχαία Μάσκα",
"DE.Views.FormSettings.textMaxChars": "Όριο χαρακτήρων",
"DE.Views.FormSettings.textMulti": "Πεδίο πολλών γραμμών",
"DE.Views.FormSettings.textNever": "Ποτέ",
"DE.Views.FormSettings.textNoBorder": "Χωρίς περίγραμμα",
"DE.Views.FormSettings.textNone": "Κανένα",
"DE.Views.FormSettings.textPlaceholder": "Δέσμευση Θέσης",
"DE.Views.FormSettings.textRadiobox": "Κουμπί Επιλογής",
"DE.Views.FormSettings.textRequired": "Απαιτείται",
@ -1862,10 +1946,13 @@
"DE.Views.FormSettings.textWidth": "Πλάτος κελιού",
"DE.Views.FormsTab.capBtnCheckBox": "Πλαίσιο επιλογής",
"DE.Views.FormsTab.capBtnComboBox": "Πολλαπλές Επιλογές",
"DE.Views.FormsTab.capBtnComplex": "Σύνθετο Πεδίο",
"DE.Views.FormsTab.capBtnDownloadForm": "Λήψη ως oform",
"DE.Views.FormsTab.capBtnDropDown": "Πτυσσόμενη Λίστα",
"DE.Views.FormsTab.capBtnEmail": "Διεύθυνση email",
"DE.Views.FormsTab.capBtnImage": "Εικόνα",
"DE.Views.FormsTab.capBtnNext": "Επόμενο Πεδίο",
"DE.Views.FormsTab.capBtnPhone": "Αριθμός τηλεφώνου",
"DE.Views.FormsTab.capBtnPrev": "Προηγούμενο Πεδίο",
"DE.Views.FormsTab.capBtnRadioBox": "Κουμπί Επιλογής",
"DE.Views.FormsTab.capBtnSaveForm": "Αποθήκευση ως oform",
@ -1961,7 +2048,7 @@
"DE.Views.ImageSettingsAdvanced.strMargins": "Απόσταση Κειμένου",
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Απόλυτο",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Στοίχιση",
"DE.Views.ImageSettingsAdvanced.textAlt": "Εναλλακτικό Κείμενο",
"DE.Views.ImageSettingsAdvanced.textAlt": "Εναλλακτικό κείμενο",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Περιγραφή",
"DE.Views.ImageSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, αυτόματο σχήμα, γράφημα ή πίνακα.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Τίτλος",
@ -2296,11 +2383,15 @@
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Κάτω",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Κεντραρισμένη",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Απόσταση Χαρακτήρων",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Συμφραζόμενα",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Συμφραζόμενα και ",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Συμφραζόμενα και ιστορικά",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Προεπιλεγμένος Στηλοθέτης",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Εφέ",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Ακριβώς",
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Πρώτη γραμμή",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Αρνητική",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Ιστορικά",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Πλήρης στοίχιση",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Γέμισμα γραμμής",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Αριστερά",
@ -2329,6 +2420,36 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Ορισμός μόνο του πάνω περιγράμματος",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Αυτόματα",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Χωρίς περιγράμματα",
"DE.Views.PrintWithPreview.textMarginsLast": "Τελευταίο προσαρμοσμένο",
"DE.Views.PrintWithPreview.textMarginsModerate": "Μέτριο",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Στενό",
"DE.Views.PrintWithPreview.textMarginsNormal": "Κανονικά",
"DE.Views.PrintWithPreview.textMarginsWide": "Πλατύ",
"DE.Views.PrintWithPreview.txtAllPages": "Όλες οι σελίδες",
"DE.Views.PrintWithPreview.txtBottom": "Κάτω Μέρος",
"DE.Views.PrintWithPreview.txtCurrentPage": "Τρέχουσα σελίδα",
"DE.Views.PrintWithPreview.txtCustom": "Προσαρμοσμένο",
"DE.Views.PrintWithPreview.txtCustomPages": "Προσαρμοσμένη εκτύπωση",
"DE.Views.PrintWithPreview.txtLeft": "Αριστερά",
"DE.Views.PrintWithPreview.txtMargins": "Περιθώρια",
"DE.Views.PrintWithPreview.txtOf": "από {0}",
"DE.Views.PrintWithPreview.txtPage": "Σελίδα",
"DE.Views.PrintWithPreview.txtPages": "Σελίδες",
"DE.Views.PrintWithPreview.txtPrint": "Εκτύπωση",
"DE.Views.PrintWithPreview.txtPrintPdf": "Εκτύπωση σε PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Εύρος εκτύπωσης",
"DE.Views.PrintWithPreview.txtRight": "Δεξιά",
"DE.Views.PrintWithPreview.txtSelection": "Επιλογή",
"DE.Views.PrintWithPreview.txtTop": "Κορυφή",
"DE.Views.ProtectDialog.textComments": "Σχόλια",
"DE.Views.ProtectDialog.textForms": "Συμπλήρωση φορμών",
"DE.Views.ProtectDialog.txtAllow": "Να επιτρέπεται μόνο τέτοια επεξεργασία στο έγγραφο",
"DE.Views.ProtectDialog.txtIncorrectPwd": "Το συνθηματικό επιβεβαίωσης δεν είναι πανομοιότυπο",
"DE.Views.ProtectDialog.txtOptional": "προαιρετικό",
"DE.Views.ProtectDialog.txtPassword": "Κωδικός",
"DE.Views.ProtectDialog.txtProtect": "Προστασία",
"DE.Views.ProtectDialog.txtRepeat": "Επανάληψη κωδικού",
"DE.Views.ProtectDialog.txtTitle": "Προστασία",
"DE.Views.RightMenu.txtChartSettings": "Ρυθμίσεις γραφήματος",
"DE.Views.RightMenu.txtFormSettings": "Ρυθμίσεις Φόρμας",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Ρυθμίσεις κεφαλίδας και υποσέλιδου",
@ -2430,6 +2551,10 @@
"DE.Views.Statusbar.tipZoomIn": "Μεγέθυνση",
"DE.Views.Statusbar.tipZoomOut": "Σμίκρυνση",
"DE.Views.Statusbar.txtPageNumInvalid": "Μη έγκυρος αριθμός σελίδας",
"DE.Views.Statusbar.txtPages": "Σελίδες",
"DE.Views.Statusbar.txtParagraphs": "Παράγραφοι",
"DE.Views.Statusbar.txtSymbols": "Σύμβολα",
"DE.Views.Statusbar.txtWords": "Λέξεις",
"DE.Views.StyleTitleDialog.textHeader": "Δημιουργία Νέας Τεχνοτροπίας",
"DE.Views.StyleTitleDialog.textNextStyle": "Τεχνοτροπία επόμενης παραγράφου",
"DE.Views.StyleTitleDialog.textTitle": "Τίτλος",
@ -2519,8 +2644,12 @@
"DE.Views.TableSettings.tipOuter": "Ορισμός μόνο του εξωτερικού περιγράμματος",
"DE.Views.TableSettings.tipRight": "Ορισμός μόνο του εξωτερικού δεξιού περιγράμματος",
"DE.Views.TableSettings.tipTop": "Ορισμός μόνο του εξωτερικού πάνω περιγράμματος",
"DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Πίνακες με Περιθώρια & Γραμμές",
"DE.Views.TableSettings.txtGroupTable_Custom": "Προσαρμοσμένο",
"DE.Views.TableSettings.txtNoBorders": "Χωρίς περιγράμματα",
"DE.Views.TableSettings.txtTable_Accent": "Τόνος",
"DE.Views.TableSettings.txtTable_Bordered": "Με Περιθώρια",
"DE.Views.TableSettings.txtTable_BorderedAndLined": "Με Περιθώρια & Γραμμές",
"DE.Views.TableSettings.txtTable_Colorful": "Πολύχρωμο",
"DE.Views.TableSettings.txtTable_Dark": "Σκούρο",
"DE.Views.TableSettings.txtTable_GridTable": "Πίνακας Πλέγματος",
@ -2531,7 +2660,7 @@
"DE.Views.TableSettingsAdvanced.textAlign": "Στοίχιση",
"DE.Views.TableSettingsAdvanced.textAlignment": "Στοίχιση",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Απόσταση μεταξύ κελιών",
"DE.Views.TableSettingsAdvanced.textAlt": "Εναλλακτικό Κείμενο",
"DE.Views.TableSettingsAdvanced.textAlt": "Εναλλακτικό κείμενο",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Περιγραφή",
"DE.Views.TableSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, αυτόματο σχήμα, γράφημα ή πίνακα.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Τίτλος",
@ -2659,6 +2788,7 @@
"DE.Views.Toolbar.capBtnInsImage": "Εικόνα",
"DE.Views.Toolbar.capBtnInsPagebreak": "Αλλαγές",
"DE.Views.Toolbar.capBtnInsShape": "Σχήμα",
"DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Σύμβολο",
"DE.Views.Toolbar.capBtnInsTable": "Πίνακας",
"DE.Views.Toolbar.capBtnInsTextart": "Τεχνοκείμενο",
@ -2788,6 +2918,7 @@
"DE.Views.Toolbar.tipControls": "Εισαγωγή στοιχείων ελέγχου περιεχομένου",
"DE.Views.Toolbar.tipCopy": "Αντιγραφή",
"DE.Views.Toolbar.tipCopyStyle": "Αντιγραφή τεχνοτροπίας",
"DE.Views.Toolbar.tipCut": "Αποκοπή",
"DE.Views.Toolbar.tipDateTime": "Εισαγωγή τρέχουσας ημερομηνίας και ώρας",
"DE.Views.Toolbar.tipDecFont": "Μείωση μεγέθους γραμματοσειράς",
"DE.Views.Toolbar.tipDecPrLeft": "Μείωση εσοχής",
@ -2839,6 +2970,7 @@
"DE.Views.Toolbar.tipRedo": "Επανάληψη",
"DE.Views.Toolbar.tipSave": "Αποθήκευση",
"DE.Views.Toolbar.tipSaveCoauth": "Αποθηκεύστε τις αλλαγές σας για να τις δουν οι άλλοι χρήστες.",
"DE.Views.Toolbar.tipSelectAll": "Επιλογή όλων ",
"DE.Views.Toolbar.tipSendBackward": "Μεταφορά προς τα πίσω",
"DE.Views.Toolbar.tipSendForward": "Μεταφορά προς τα εμπρός",
"DE.Views.Toolbar.tipShowHiddenChars": "Μη εκτυπώσιμοι χαρακτήρες",
@ -2847,9 +2979,9 @@
"DE.Views.Toolbar.tipWatermark": "Επεξεργασία υδατοσήμου",
"DE.Views.Toolbar.txtDistribHor": "Οριζόντια Κατανομή",
"DE.Views.Toolbar.txtDistribVert": "Κατακόρυφη Κατανομή",
"DE.Views.Toolbar.txtMarginAlign": "Στοίχιση σε Περιθώριο",
"DE.Views.Toolbar.txtMarginAlign": "Στοίχιση στο περιθώριο",
"DE.Views.Toolbar.txtObjectsAlign": "Στοίχιση Επιλεγμένων Αντικειμένων",
"DE.Views.Toolbar.txtPageAlign": "Στοίχιση σε Σελίδα",
"DE.Views.Toolbar.txtPageAlign": "Στοίχιση στη σελίδα",
"DE.Views.Toolbar.txtScheme1": "Γραφείο",
"DE.Views.Toolbar.txtScheme10": "Διάμεσο",
"DE.Views.Toolbar.txtScheme11": "Μετρό",
@ -2882,6 +3014,10 @@
"DE.Views.ViewTab.textRulers": "Χάρακες",
"DE.Views.ViewTab.textStatusBar": "Γραμμή Κατάστασης",
"DE.Views.ViewTab.textZoom": "Εστίαση",
"DE.Views.ViewTab.tipDarkDocument": "Σκούρο έγγραφο",
"DE.Views.ViewTab.tipFitToPage": "Προσαρμογή στη σελίδα",
"DE.Views.ViewTab.tipFitToWidth": "Προσαρμογή στο πλάτος",
"DE.Views.ViewTab.tipHeadings": "Κεφαλίδες",
"DE.Views.WatermarkSettingsDialog.textAuto": "Αυτόματα",
"DE.Views.WatermarkSettingsDialog.textBold": "Έντονα",
"DE.Views.WatermarkSettingsDialog.textColor": "Χρώμα κειμένου",

View file

@ -291,7 +291,7 @@
"Common.Translation.warnFileLockedBtnEdit": "Create a copy",
"Common.Translation.warnFileLockedBtnView": "Open for viewing",
"Common.UI.ButtonColored.textAutoColor": "Automatic",
"Common.UI.ButtonColored.textNewColor": "Add New Custom Color",
"Common.UI.ButtonColored.textNewColor": "Add new custom color",
"Common.UI.Calendar.textApril": "April",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textDecember": "December",
@ -353,9 +353,9 @@
"Common.UI.SearchDialog.txtBtnReplaceAll": "Replace all",
"Common.UI.SynchronizeTip.textDontShow": "Don't show this message again",
"Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.<br>Please click to save your changes and reload the updates.",
"Common.UI.ThemeColorPalette.textRecentColors": "Recent Colors",
"Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors",
"Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors",
"Common.UI.ThemeColorPalette.textRecentColors": "Recent colors",
"Common.UI.ThemeColorPalette.textStandartColors": "Standard colors",
"Common.UI.ThemeColorPalette.textThemeColors": "Theme colors",
"Common.UI.Themes.txtThemeClassicLight": "Classic Light",
"Common.UI.Themes.txtThemeContrastDark": "Contrast Dark",
"Common.UI.Themes.txtThemeDark": "Dark",
@ -464,6 +464,7 @@
"Common.Views.Header.textCompactView": "Hide Toolbar",
"Common.Views.Header.textHideLines": "Hide Rulers",
"Common.Views.Header.textHideStatusBar": "Hide Status Bar",
"Common.Views.Header.textReadOnly": "Read only",
"Common.Views.Header.textRemoveFavorite": "Remove from Favorites",
"Common.Views.Header.textShare": "Share",
"Common.Views.Header.textZoom": "Zoom",
@ -471,6 +472,7 @@
"Common.Views.Header.tipDownload": "Download file",
"Common.Views.Header.tipGoEdit": "Edit current file",
"Common.Views.Header.tipPrint": "Print file",
"Common.Views.Header.tipPrintQuick": "Quick print",
"Common.Views.Header.tipRedo": "Redo",
"Common.Views.Header.tipSave": "Save",
"Common.Views.Header.tipSearch": "Search",
@ -480,8 +482,6 @@
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
"Common.Views.Header.txtAccessRights": "Change access rights",
"Common.Views.Header.txtRename": "Rename",
"Common.Views.Header.tipPrintQuick": "Quick print",
"Common.Views.Header.textReadOnly": "Read only",
"Common.Views.History.textCloseHistory": "Close History",
"Common.Views.History.textHide": "Collapse",
"Common.Views.History.textHideAll": "Hide detailed changes",
@ -569,15 +569,15 @@
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Close",
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments",
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove all comments",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove current comments",
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove my comments",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
"Common.Views.ReviewChanges.txtCommentRemove": "Remove",
"Common.Views.ReviewChanges.txtCommentResolve": "Resolve",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve Current Comments",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve all comments",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve current comments",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve my comments",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments",
"Common.Views.ReviewChanges.txtCompare": "Compare",
"Common.Views.ReviewChanges.txtDocLang": "Language",
@ -708,6 +708,15 @@
"Common.Views.UserNameDialog.textDontShow": "Don't ask me again",
"Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label must not be empty.",
"DE.Controllers.DocProtection.txtIsProtectedComment": "Document is protected. You may only insert comments to this document.",
"DE.Controllers.DocProtection.txtIsProtectedForms": "Document is protected. You may only fill in forms in this document.",
"DE.Controllers.DocProtection.txtIsProtectedTrack": "Document is protected. You may edit this document, but all changes will be tracked.",
"DE.Controllers.DocProtection.txtIsProtectedView": "Document is protected. You may only view this document.",
"DE.Controllers.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.",
"DE.Controllers.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.",
"DE.Controllers.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.",
"DE.Controllers.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.",
"DE.Controllers.DocProtection.txtWasUnprotected": "Document has been unprotected.",
"DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
@ -839,6 +848,7 @@
"DE.Controllers.Main.textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?",
"DE.Controllers.Main.textShape": "Shape",
"DE.Controllers.Main.textStrict": "Strict mode",
"DE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.<br>Do you want to continue?",
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.<br>Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.",
"DE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"DE.Controllers.Main.textUndo": "Undo",
@ -847,7 +857,7 @@
"DE.Controllers.Main.titleUpdateVersion": "Version changed",
"DE.Controllers.Main.txtAbove": "above",
"DE.Controllers.Main.txtArt": "Your text here",
"DE.Controllers.Main.txtBasicShapes": "Basic Shapes",
"DE.Controllers.Main.txtBasicShapes": "Basic shapes",
"DE.Controllers.Main.txtBelow": "below",
"DE.Controllers.Main.txtBookmarkError": "Error! Bookmark not defined.",
"DE.Controllers.Main.txtButtons": "Buttons",
@ -862,7 +872,7 @@
"DE.Controllers.Main.txtEnterDate": "Enter a date",
"DE.Controllers.Main.txtErrorLoadHistory": "History loading failed",
"DE.Controllers.Main.txtEvenPage": "Even Page",
"DE.Controllers.Main.txtFiguredArrows": "Figured Arrows",
"DE.Controllers.Main.txtFiguredArrows": "Figured arrows",
"DE.Controllers.Main.txtFirstPage": "First Page",
"DE.Controllers.Main.txtFooter": "Footer",
"DE.Controllers.Main.txtFormulaNotInTable": "The Formula Not In Table",
@ -1060,8 +1070,8 @@
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout",
"DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
"DE.Controllers.Main.txtStyle_Caption": "Caption",
"DE.Controllers.Main.txtStyle_endnote_text": "Endnote Text",
"DE.Controllers.Main.txtStyle_footnote_text": "Footnote Text",
"DE.Controllers.Main.txtStyle_endnote_text": "Endnote text",
"DE.Controllers.Main.txtStyle_footnote_text": "Footnote text",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
@ -1110,9 +1120,12 @@
"DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
"DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"DE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.<br>Do you want to continue?",
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
"DE.Controllers.Print.textMarginsLast": "Last Custom",
"DE.Controllers.Print.txtCustom": "Custom",
"DE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single page number or a single page range (for example, 5-12). Or you can Print to PDF.",
"DE.Controllers.Search.notcriticalErrorTitle": "Warning",
"DE.Controllers.Search.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.",
"DE.Controllers.Search.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.",
@ -1124,10 +1137,6 @@
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.tipReview": "Track changes",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"DE.Controllers.Print.txtCustom": "Custom",
"DE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range",
"DE.Controllers.Print.textMarginsLast": "Last Custom",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single page number or a single page range (for example, 5-12). Or you can Print to PDF.",
"DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the system fonts, the saved font will be used when it is available.<br>Do you want to continue?",
"DE.Controllers.Toolbar.dataUrl": "Paste a data URL",
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning",
@ -1142,7 +1151,7 @@
"DE.Controllers.Toolbar.textInsert": "Insert",
"DE.Controllers.Toolbar.textIntegral": "Integrals",
"DE.Controllers.Toolbar.textLargeOperator": "Large Operators",
"DE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
"DE.Controllers.Toolbar.textLimitAndLog": "Limits and Logarithms",
"DE.Controllers.Toolbar.textMatrix": "Matrices",
"DE.Controllers.Toolbar.textOperator": "Operators",
"DE.Controllers.Toolbar.textRadical": "Radicals",
@ -1178,52 +1187,52 @@
"DE.Controllers.Toolbar.txtAccent_Hat": "Hat",
"DE.Controllers.Toolbar.txtAccent_Smile": "Breve",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"DE.Controllers.Toolbar.txtBracket_Angle": "Brackets",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with separators",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with separators",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Curve": "Brackets",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with separators",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separator",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket",
"DE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separator",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket",
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)",
"DE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)",
"DE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object in parentheses",
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient",
"DE.Controllers.Toolbar.txtBracket_Line": "Brackets",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Brackets",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Round": "Brackets",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with separators",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Square": "Brackets",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Brackets",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient in angle brackets",
"DE.Controllers.Toolbar.txtBracket_Line": "Vertical bars",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Right vertical bar",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Left vertical bar",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Double vertical bars",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Right double vertical bar",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Left double vertical bar",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Floor",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor",
"DE.Controllers.Toolbar.txtBracket_Round": "Parentheses",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separator",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis",
"DE.Controllers.Toolbar.txtBracket_Square": "Square brackets",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder between two right square brackets",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Inverted square brackets",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder between two left square brackets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Ceiling",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Right ceiling",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Left ceiling",
"DE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "Differential",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "Differential",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "Differential",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "Differential",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "dx over dy",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y over cap delta x",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "partial y over partial x",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "delta y over delta x",
"DE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction",
"DE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2",
"DE.Controllers.Toolbar.txtFractionSmall": "Small fraction",
@ -1259,63 +1268,63 @@
"DE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta",
"DE.Controllers.Toolbar.txtIntegral_dx": "Differential x",
"DE.Controllers.Toolbar.txtIntegral_dy": "Differential y",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralDouble": "Double integral",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral with limits",
"DE.Controllers.Toolbar.txtIntegralOriented": "Contour integral",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral with limits",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral with limits",
"DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Integral",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral with limits",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Integral with limits",
"DE.Controllers.Toolbar.txtIntegralTriple": "Triple integral",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Logical And",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Logical And with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Logical And with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Logical And with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Logical And with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation over k of n choose k",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation example using two indices",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Logical Or",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Logical Or with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Logical Or with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Logical Or with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Logical Or with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Prod": "Product",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Union": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example",
"DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example",
"DE.Controllers.Toolbar.txtLimitLog_Lim": "Limit",
@ -1330,10 +1339,10 @@
"DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty matrix with brackets",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty matrix with brackets",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty matrix with brackets",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty matrix with brackets",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty 2 by 2 matrix in double vertical bars",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty 2 by 2 determinant",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty 2 by 2 matrix in parentheses",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty 2 by 2 matrix in brackets",
"DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix",
@ -1342,12 +1351,12 @@
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots",
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots",
"DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix",
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identity matrix",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix",
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix in parentheses",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix in brackets",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix with zeros",
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "2x2 identity matrix with blank off-diagonal cells",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix with zeros",
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix with blank off-diagonal cells",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below",
@ -1359,8 +1368,8 @@
"DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields",
"DE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition",
"DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left arrow below",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left arrow above",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left double arrow below",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left double arrow above",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below",
@ -1369,16 +1378,16 @@
"DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal",
"DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal",
"DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of quadratic formula",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared",
"DE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree",
"DE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root",
"DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree",
"DE.Controllers.Toolbar.txtRadicalSqrt": "Square root",
"DE.Controllers.Toolbar.txtScriptCustom_1": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_2": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_3": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_1": "x subscript y squared",
"DE.Controllers.Toolbar.txtScriptCustom_2": "e to the minus i omega t",
"DE.Controllers.Toolbar.txtScriptCustom_3": "x squared",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Y left superscript n left subscript one",
"DE.Controllers.Toolbar.txtScriptSub": "Subscript",
"DE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript",
"DE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript",
@ -1637,6 +1646,7 @@
"DE.Views.DocProtection.txtDocProtectedView": "Document is protected.<br>You may only view this document.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document",
"DE.Views.DocProtection.txtProtectDoc": "Protect Document",
"DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document",
"DE.Views.DocumentHolder.aboveText": "Above",
"DE.Views.DocumentHolder.addCommentText": "Add comment",
"DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings",
@ -1667,8 +1677,8 @@
"DE.Views.DocumentHolder.directHText": "Horizontal",
"DE.Views.DocumentHolder.directionText": "Text direction",
"DE.Views.DocumentHolder.editChartText": "Edit data",
"DE.Views.DocumentHolder.editFooterText": "Edit Footer",
"DE.Views.DocumentHolder.editHeaderText": "Edit Header",
"DE.Views.DocumentHolder.editFooterText": "Edit footer",
"DE.Views.DocumentHolder.editHeaderText": "Edit header",
"DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink",
"DE.Views.DocumentHolder.eqToInlineText": "Change to Inline",
"DE.Views.DocumentHolder.guestText": "Guest",
@ -1733,7 +1743,7 @@
"DE.Views.DocumentHolder.textDistributeRows": "Distribute rows",
"DE.Views.DocumentHolder.textEditControls": "Content control settings",
"DE.Views.DocumentHolder.textEditPoints": "Edit Points",
"DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Wrap Boundary",
"DE.Views.DocumentHolder.textEditWrapBoundary": "Edit wrap boundary",
"DE.Views.DocumentHolder.textFlipH": "Flip Horizontally",
"DE.Views.DocumentHolder.textFlipV": "Flip Vertically",
"DE.Views.DocumentHolder.textFollow": "Follow move",
@ -1967,10 +1977,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Version",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbols with spaces",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Characters with spaces",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistics",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbols",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Characters",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded",
@ -2041,6 +2051,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "View None",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing",
"DE.Views.FileMenuPanels.Settings.txtPt": "Point",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable All",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Enable all macros without a notification",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Show track changes",
@ -2058,9 +2070,8 @@
"DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Download as",
"DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Save Copy as",
"DE.Views.FileMenuPanels.RecentFiles.txtOpenRecent": "Open Recent",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer",
"DE.Views.FormSettings.textAlways": "Always",
"DE.Views.FormSettings.textAnyone": "Anyone",
"DE.Views.FormSettings.textAspect": "Lock aspect ratio",
"DE.Views.FormSettings.textAtLeast": "At least",
"DE.Views.FormSettings.textAuto": "Auto",
@ -2072,12 +2083,16 @@
"DE.Views.FormSettings.textCombobox": "Combo Box",
"DE.Views.FormSettings.textComplex": "Complex Field",
"DE.Views.FormSettings.textConnected": "Fields connected",
"DE.Views.FormSettings.textCreditCard": "Credit Card Number (e.g 4111-1111-1111-1111)",
"DE.Views.FormSettings.textDateField": "Date & Time Field",
"DE.Views.FormSettings.textDateFormat": "Display the date like this",
"DE.Views.FormSettings.textDelete": "Delete",
"DE.Views.FormSettings.textDigits": "Digits",
"DE.Views.FormSettings.textDisconnect": "Disconnect",
"DE.Views.FormSettings.textDropDown": "Dropdown",
"DE.Views.FormSettings.textExact": "Exactly",
"DE.Views.FormSettings.textField": "Text Field",
"DE.Views.FormSettings.textFillRoles": "Who needs to fill this out?",
"DE.Views.FormSettings.textFixed": "Fixed size field",
"DE.Views.FormSettings.textFormat": "Format",
"DE.Views.FormSettings.textFormatSymbols": "Allowed Symbols",
@ -2087,6 +2102,7 @@
"DE.Views.FormSettings.textGroupKey": "Group key",
"DE.Views.FormSettings.textImage": "Image",
"DE.Views.FormSettings.textKey": "Key",
"DE.Views.FormSettings.textLang": "Language",
"DE.Views.FormSettings.textLetters": "Letters",
"DE.Views.FormSettings.textLock": "Lock",
"DE.Views.FormSettings.textMask": "Arbitrary Mask",
@ -2095,6 +2111,8 @@
"DE.Views.FormSettings.textNever": "Never",
"DE.Views.FormSettings.textNoBorder": "No border",
"DE.Views.FormSettings.textNone": "None",
"DE.Views.FormSettings.textPhone1": "Phone Number (e.g. (123) 456-7890)",
"DE.Views.FormSettings.textPhone2": "Phone Number (e.g. +447911123456)",
"DE.Views.FormSettings.textPlaceholder": "Placeholder",
"DE.Views.FormSettings.textRadiobox": "Radio Button",
"DE.Views.FormSettings.textReg": "Regular Expression",
@ -2109,9 +2127,12 @@
"DE.Views.FormSettings.textTipUp": "Move up",
"DE.Views.FormSettings.textTooBig": "Image is Too Big",
"DE.Views.FormSettings.textTooSmall": "Image is Too Small",
"DE.Views.FormSettings.textUKPassport": "UK Passport Number (e.g. 925665416)",
"DE.Views.FormSettings.textUnlock": "Unlock",
"DE.Views.FormSettings.textUSSSN": "US SSN (e.g. 123-45-6789)",
"DE.Views.FormSettings.textValue": "Value Options",
"DE.Views.FormSettings.textWidth": "Cell width",
"DE.Views.FormSettings.textZipCodeUS": "US Zip Code (e.g. 92663 or 92663-1234)",
"DE.Views.FormsTab.capBtnCheckBox": "Checkbox",
"DE.Views.FormsTab.capBtnComboBox": "Combo Box",
"DE.Views.FormsTab.capBtnComplex": "Complex Field",
@ -2127,6 +2148,10 @@
"DE.Views.FormsTab.capBtnSubmit": "Submit",
"DE.Views.FormsTab.capBtnText": "Text Field",
"DE.Views.FormsTab.capBtnView": "View Form",
"DE.Views.FormsTab.capCreditCard": "Credit Card",
"DE.Views.FormsTab.capDateTime": "Date & Time",
"DE.Views.FormsTab.capZipCode": "Zip Code",
"DE.Views.FormsTab.textAnyone": "Anyone",
"DE.Views.FormsTab.textClear": "Clear Fields",
"DE.Views.FormsTab.textClearFields": "Clear All Fields",
"DE.Views.FormsTab.textCreateForm": "Add fields and create a fillable OFORM document",
@ -2138,10 +2163,14 @@
"DE.Views.FormsTab.tipCheckBox": "Insert checkbox",
"DE.Views.FormsTab.tipComboBox": "Insert combo box",
"DE.Views.FormsTab.tipComplexField": "Insert complex field",
"DE.Views.FormsTab.tipCreditCard": "Insert credit card number",
"DE.Views.FormsTab.tipDateTime": "Insert date and time",
"DE.Views.FormsTab.tipDownloadForm": "Download a file as a fillable OFORM document",
"DE.Views.FormsTab.tipDropDown": "Insert dropdown list",
"DE.Views.FormsTab.tipEmailField": "Insert email address",
"DE.Views.FormsTab.tipFixedText": "Insert fixed text field",
"DE.Views.FormsTab.tipImageField": "Insert image",
"DE.Views.FormsTab.tipInlineText": "Insert inline text field",
"DE.Views.FormsTab.tipNextForm": "Go to the next field",
"DE.Views.FormsTab.tipPhoneField": "Insert phone number",
"DE.Views.FormsTab.tipPrevForm": "Go to the previous field",
@ -2150,6 +2179,11 @@
"DE.Views.FormsTab.tipSubmit": "Submit form",
"DE.Views.FormsTab.tipTextField": "Insert text field",
"DE.Views.FormsTab.tipViewForm": "View form",
"DE.Views.FormsTab.tipZipCode": "Insert zip code",
"DE.Views.FormsTab.txtFixedDesc": "Insert fixed text field",
"DE.Views.FormsTab.txtFixedText": "Fixed",
"DE.Views.FormsTab.txtInlineDesc": "Insert inline text field",
"DE.Views.FormsTab.txtInlineText": "Inline",
"DE.Views.FormsTab.txtUntitled": "Untitled",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left",
@ -2331,21 +2365,21 @@
"DE.Views.Links.capBtnTOF": "Table of Figures",
"DE.Views.Links.confirmDeleteFootnotes": "Do you want to delete all footnotes?",
"DE.Views.Links.confirmReplaceTOF": "Do you want to replace the selected table of figures?",
"DE.Views.Links.mniConvertNote": "Convert All Notes",
"DE.Views.Links.mniDelFootnote": "Delete All Notes",
"DE.Views.Links.mniInsEndnote": "Insert Endnote",
"DE.Views.Links.mniInsFootnote": "Insert Footnote",
"DE.Views.Links.mniNoteSettings": "Notes Settings",
"DE.Views.Links.mniConvertNote": "Convert all notes",
"DE.Views.Links.mniDelFootnote": "Delete all notes",
"DE.Views.Links.mniInsEndnote": "Insert endnote",
"DE.Views.Links.mniInsFootnote": "Insert footnote",
"DE.Views.Links.mniNoteSettings": "Notes settings",
"DE.Views.Links.textContentsRemove": "Remove table of contents",
"DE.Views.Links.textContentsSettings": "Settings",
"DE.Views.Links.textConvertToEndnotes": "Convert All Footnotes to Endnotes",
"DE.Views.Links.textConvertToFootnotes": "Convert All Endnotes to Footnotes",
"DE.Views.Links.textGotoEndnote": "Go to Endnotes",
"DE.Views.Links.textGotoFootnote": "Go to Footnotes",
"DE.Views.Links.textGotoEndnote": "Go to endnotes",
"DE.Views.Links.textGotoFootnote": "Go to footnotes",
"DE.Views.Links.textSwapNotes": "Swap Footnotes and Endnotes",
"DE.Views.Links.textUpdateAll": "Update entire table",
"DE.Views.Links.textUpdatePages": "Update page numbers only",
"DE.Views.Links.tipAddText": "Include heading in the Table of Contents",
"DE.Views.Links.tipAddText": "Include heading in the table of contents",
"DE.Views.Links.tipBookmarks": "Create a bookmark",
"DE.Views.Links.tipCaption": "Insert caption",
"DE.Views.Links.tipContents": "Insert table of contents",
@ -2356,7 +2390,7 @@
"DE.Views.Links.tipTableFigures": "Insert table of figures",
"DE.Views.Links.tipTableFiguresUpdate": "Update table of figures",
"DE.Views.Links.titleUpdateTOF": "Update Table of Figures",
"DE.Views.Links.txtDontShowTof": "Do Not Show in Table of Contents",
"DE.Views.Links.txtDontShowTof": "Do not show in table of contents",
"DE.Views.Links.txtLevel": "Level",
"DE.Views.ListSettingsDialog.textAuto": "Automatic",
"DE.Views.ListSettingsDialog.textCenter": "Center",
@ -2604,45 +2638,46 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Set top border only",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "No borders",
"DE.Views.PrintWithPreview.textMarginsLast": "Last Custom",
"DE.Views.PrintWithPreview.textMarginsModerate": "Moderate",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Narrow",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normal",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal",
"DE.Views.PrintWithPreview.textMarginsWide": "Wide",
"DE.Views.PrintWithPreview.txtAllPages": "All pages",
"DE.Views.PrintWithPreview.txtBottom": "Bottom",
"DE.Views.PrintWithPreview.txtCurrentPage": "Current page",
"DE.Views.PrintWithPreview.txtCustom": "Custom",
"DE.Views.PrintWithPreview.txtCustomPages": "Custom print",
"DE.Views.PrintWithPreview.txtLandscape": "Landscape",
"DE.Views.PrintWithPreview.txtLeft": "Left",
"DE.Views.PrintWithPreview.txtMargins": "Margins",
"DE.Views.PrintWithPreview.txtOf": "of {0}",
"DE.Views.PrintWithPreview.txtPage": "Page",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Page number invalid",
"DE.Views.PrintWithPreview.txtPageOrientation": "Page orientation",
"DE.Views.PrintWithPreview.txtPages": "Pages",
"DE.Views.PrintWithPreview.txtPageSize": "Page size",
"DE.Views.PrintWithPreview.txtPortrait": "Portrait",
"DE.Views.PrintWithPreview.txtPrint": "Print",
"DE.Views.PrintWithPreview.txtPrintPdf": "Print to PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Print range",
"DE.Views.PrintWithPreview.txtRight": "Right",
"DE.Views.PrintWithPreview.txtSelection": "Selection",
"DE.Views.PrintWithPreview.txtTop": "Top",
"DE.Views.ProtectDialog.textComments": "Comments",
"DE.Views.ProtectDialog.textForms": "Filling forms",
"DE.Views.ProtectDialog.textReview": "Tracked changes",
"DE.Views.ProtectDialog.textView": "No changes (Read only)",
"DE.Views.ProtectDialog.txtAllow": "Allow only this type of editing in the document",
"DE.Views.ProtectDialog.txtIncorrectPwd": "Confirmation password is not identical",
"DE.Views.ProtectDialog.txtLimit": "Password is limited to 15 characters",
"DE.Views.ProtectDialog.txtOptional": "optional",
"DE.Views.ProtectDialog.txtPassword": "Password",
"DE.Views.ProtectDialog.txtProtect": "Protect",
"DE.Views.ProtectDialog.txtRepeat": "Repeat password",
"DE.Views.ProtectDialog.txtTitle": "Protect",
"DE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"DE.Views.PrintWithPreview.txtPrint": "Print",
"DE.Views.PrintWithPreview.txtPrintPdf": "Print to PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Print range",
"DE.Views.PrintWithPreview.txtCurrentPage": "Current page",
"DE.Views.PrintWithPreview.txtAllPages": "All pages",
"DE.Views.PrintWithPreview.txtSelection": "Selection",
"DE.Views.PrintWithPreview.txtCustomPages": "Custom print",
"DE.Views.PrintWithPreview.txtPageSize": "Page size",
"DE.Views.PrintWithPreview.txtPageOrientation": "Page orientation",
"DE.Views.PrintWithPreview.txtPortrait": "Portrait",
"DE.Views.PrintWithPreview.txtLandscape": "Landscape",
"DE.Views.PrintWithPreview.txtCustom": "Custom",
"DE.Views.PrintWithPreview.txtMargins": "Margins",
"DE.Views.PrintWithPreview.txtTop": "Top",
"DE.Views.PrintWithPreview.txtBottom": "Bottom",
"DE.Views.PrintWithPreview.txtLeft": "Left",
"DE.Views.PrintWithPreview.txtRight": "Right",
"DE.Views.PrintWithPreview.txtPage": "Page",
"DE.Views.PrintWithPreview.txtOf": "of {0}",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Page number invalid",
"DE.Views.PrintWithPreview.txtPages": "Pages",
"DE.Views.PrintWithPreview.textMarginsLast": "Last Custom",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normal",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Narrow",
"DE.Views.PrintWithPreview.textMarginsModerate": "Moderate",
"DE.Views.PrintWithPreview.textMarginsWide": "Wide",
"DE.Views.RightMenu.txtChartSettings": "Chart settings",
"DE.Views.RightMenu.txtFormSettings": "Form Settings",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings",
@ -2653,6 +2688,35 @@
"DE.Views.RightMenu.txtSignatureSettings": "Signature settings",
"DE.Views.RightMenu.txtTableSettings": "Table settings",
"DE.Views.RightMenu.txtTextArtSettings": "Text Art settings",
"DE.Views.RoleDeleteDlg.textLabel": "To delete this role, you need to move the fields associated with it to another role.",
"DE.Views.RoleDeleteDlg.textSelect": "Select for field merger role",
"DE.Views.RoleDeleteDlg.textTitle": "Delete Role",
"DE.Views.RoleEditDlg.capBtnManager": "Manage Roles",
"DE.Views.RoleEditDlg.errNameExists": "Role with such a name already exists.",
"DE.Views.RoleEditDlg.textEmptyError": "Role name must not be empty.",
"DE.Views.RoleEditDlg.textName": "Role name",
"DE.Views.RoleEditDlg.textNoHighlight": "No highlighting",
"DE.Views.RoleEditDlg.tipManager": "Manage Roles",
"DE.Views.RoleEditDlg.txtTitleEdit": "Edit Role",
"DE.Views.RoleEditDlg.txtTitleNew": "Create New Role",
"DE.Views.RolesManagerDlg.closeButtonText ": "Close",
"DE.Views.RolesManagerDlg.textAnyone": "Anyone",
"DE.Views.RolesManagerDlg.textDelete": "Delete",
"DE.Views.RolesManagerDlg.textDescription": "Add roles and set the order in which the fillers receive and sign the document",
"DE.Views.RolesManagerDlg.textDown": "Move role down",
"DE.Views.RolesManagerDlg.textEdit": "Edit",
"DE.Views.RolesManagerDlg.textEmpty": "No roles have been created yet.<br>Create at least one role and it will appear in this field.",
"DE.Views.RolesManagerDlg.textNew": "New",
"DE.Views.RolesManagerDlg.textUp": "Move role up",
"DE.Views.RolesManagerDlg.txtTitle": "Manage Roles",
"DE.Views.RolesManagerDlg.warnCantDelete": "You cannot delete this role because it has associated fields.",
"DE.Views.RolesManagerDlg.warnDelete": "Are you sure you want to delete the role {0}?",
"DE.Views.SaveFormDlg.saveButtonText": "Save",
"DE.Views.SaveFormDlg.textAnyone": "Anyone",
"DE.Views.SaveFormDlg.textDescription": "When saving to the oform, only roles with fields are added to the filling list",
"DE.Views.SaveFormDlg.textEmpty": "There are no roles associated with fields.",
"DE.Views.SaveFormDlg.textFill": "Filling list",
"DE.Views.SaveFormDlg.txtTitle": "Save as Form",
"DE.Views.ShapeSettings.strBackground": "Background color",
"DE.Views.ShapeSettings.strChange": "Change Autoshape",
"DE.Views.ShapeSettings.strColor": "Color",
@ -2686,7 +2750,7 @@
"DE.Views.ShapeSettings.textPatternFill": "Pattern",
"DE.Views.ShapeSettings.textPosition": "Position",
"DE.Views.ShapeSettings.textRadial": "Radial",
"DE.Views.ShapeSettings.textRecentlyUsed": "Recently Used",
"DE.Views.ShapeSettings.textRecentlyUsed": "Recently used",
"DE.Views.ShapeSettings.textRotate90": "Rotate 90°",
"DE.Views.ShapeSettings.textRotation": "Rotation",
"DE.Views.ShapeSettings.textSelectImage": "Select Picture",
@ -2744,6 +2808,12 @@
"DE.Views.Statusbar.tipZoomIn": "Zoom in",
"DE.Views.Statusbar.tipZoomOut": "Zoom out",
"DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid",
"DE.Views.Statusbar.txtPages": "Pages",
"DE.Views.Statusbar.txtParagraphs": "Paragraphs",
"DE.Views.Statusbar.txtSpaces": "Symbols with spaces",
"DE.Views.Statusbar.txtSymbols": "Symbols",
"DE.Views.Statusbar.txtWordCount": "Word count",
"DE.Views.Statusbar.txtWords": "Words",
"DE.Views.StyleTitleDialog.textHeader": "Create new style",
"DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style",
"DE.Views.StyleTitleDialog.textTitle": "Title",
@ -2997,37 +3067,37 @@
"DE.Views.Toolbar.capImgGroup": "Group",
"DE.Views.Toolbar.capImgWrapping": "Wrapping",
"DE.Views.Toolbar.mniCapitalizeWords": "Capitalize Each Word",
"DE.Views.Toolbar.mniCustomTable": "Insert Custom Table",
"DE.Views.Toolbar.mniDrawTable": "Draw Table",
"DE.Views.Toolbar.mniCustomTable": "Insert custom table",
"DE.Views.Toolbar.mniDrawTable": "Draw table",
"DE.Views.Toolbar.mniEditControls": "Control Settings",
"DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings",
"DE.Views.Toolbar.mniEditFooter": "Edit Footer",
"DE.Views.Toolbar.mniEditHeader": "Edit Header",
"DE.Views.Toolbar.mniEraseTable": "Erase Table",
"DE.Views.Toolbar.mniEditFooter": "Edit footer",
"DE.Views.Toolbar.mniEditHeader": "Edit header",
"DE.Views.Toolbar.mniEraseTable": "Erase table",
"DE.Views.Toolbar.mniFromFile": "From File",
"DE.Views.Toolbar.mniFromStorage": "From Storage",
"DE.Views.Toolbar.mniFromUrl": "From URL",
"DE.Views.Toolbar.mniHiddenBorders": "Hidden Table Borders",
"DE.Views.Toolbar.mniHiddenChars": "Nonprinting Characters",
"DE.Views.Toolbar.mniHighlightControls": "Highlight Settings",
"DE.Views.Toolbar.mniHiddenBorders": "Hidden table borders",
"DE.Views.Toolbar.mniHiddenChars": "Nonprinting characters",
"DE.Views.Toolbar.mniHighlightControls": "Highlight settings",
"DE.Views.Toolbar.mniImageFromFile": "Image from File",
"DE.Views.Toolbar.mniImageFromStorage": "Image from Storage",
"DE.Views.Toolbar.mniImageFromUrl": "Image from URL",
"DE.Views.Toolbar.mniInsertSSE": "Insert Spreadsheet",
"DE.Views.Toolbar.mniLowerCase": "lowercase",
"DE.Views.Toolbar.mniRemoveFooter": "Remove Footer",
"DE.Views.Toolbar.mniRemoveHeader": "Remove Header",
"DE.Views.Toolbar.mniRemoveFooter": "Remove footer",
"DE.Views.Toolbar.mniRemoveHeader": "Remove header",
"DE.Views.Toolbar.mniSentenceCase": "Sentence case.",
"DE.Views.Toolbar.mniTextToTable": "Convert Text to Table",
"DE.Views.Toolbar.mniTextToTable": "Convert text to table",
"DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE",
"DE.Views.Toolbar.mniUpperCase": "UPPERCASE",
"DE.Views.Toolbar.strMenuNoFill": "No Fill",
"DE.Views.Toolbar.strMenuNoFill": "No fill",
"DE.Views.Toolbar.textAutoColor": "Automatic",
"DE.Views.Toolbar.textBold": "Bold",
"DE.Views.Toolbar.textBottom": "Bottom: ",
"DE.Views.Toolbar.textChangeLevel": "Change List Level",
"DE.Views.Toolbar.textCheckboxControl": "Check box",
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
"DE.Views.Toolbar.textColumnsCustom": "Custom columns",
"DE.Views.Toolbar.textColumnsLeft": "Left",
"DE.Views.Toolbar.textColumnsOne": "One",
"DE.Views.Toolbar.textColumnsRight": "Right",
@ -3035,18 +3105,18 @@
"DE.Views.Toolbar.textColumnsTwo": "Two",
"DE.Views.Toolbar.textComboboxControl": "Combo box",
"DE.Views.Toolbar.textContinuous": "Continuous",
"DE.Views.Toolbar.textContPage": "Continuous Page",
"DE.Views.Toolbar.textCustomLineNumbers": "Line Numbering Options",
"DE.Views.Toolbar.textContPage": "Continuous page",
"DE.Views.Toolbar.textCustomLineNumbers": "Line numbering options",
"DE.Views.Toolbar.textDateControl": "Date",
"DE.Views.Toolbar.textDropdownControl": "Drop-down list",
"DE.Views.Toolbar.textEditWatermark": "Custom Watermark",
"DE.Views.Toolbar.textEvenPage": "Even Page",
"DE.Views.Toolbar.textEditWatermark": "Custom watermark",
"DE.Views.Toolbar.textEvenPage": "Even page",
"DE.Views.Toolbar.textInMargin": "In Margin",
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
"DE.Views.Toolbar.textInsColumnBreak": "Insert column break",
"DE.Views.Toolbar.textInsertPageCount": "Insert number of pages",
"DE.Views.Toolbar.textInsertPageNumber": "Insert page number",
"DE.Views.Toolbar.textInsPageBreak": "Insert Page Break",
"DE.Views.Toolbar.textInsSectionBreak": "Insert Section Break",
"DE.Views.Toolbar.textInsertPageNumber": "Insert Page Number",
"DE.Views.Toolbar.textInsPageBreak": "Insert page break",
"DE.Views.Toolbar.textInsSectionBreak": "Insert section break",
"DE.Views.Toolbar.textInText": "In Text",
"DE.Views.Toolbar.textItalic": "Italic",
"DE.Views.Toolbar.textLandscape": "Landscape",
@ -3059,19 +3129,19 @@
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "Add New Custom Color",
"DE.Views.Toolbar.textNextPage": "Next Page",
"DE.Views.Toolbar.textNextPage": "Next page",
"DE.Views.Toolbar.textNoHighlight": "No highlighting",
"DE.Views.Toolbar.textNone": "None",
"DE.Views.Toolbar.textOddPage": "Odd Page",
"DE.Views.Toolbar.textPageMarginsCustom": "Custom Margins",
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
"DE.Views.Toolbar.textOddPage": "Odd page",
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
"DE.Views.Toolbar.textPageSizeCustom": "Custom page size",
"DE.Views.Toolbar.textPictureControl": "Picture",
"DE.Views.Toolbar.textPlainControl": "Plain text",
"DE.Views.Toolbar.textPortrait": "Portrait",
"DE.Views.Toolbar.textRemoveControl": "Remove Content Control",
"DE.Views.Toolbar.textRemWatermark": "Remove Watermark",
"DE.Views.Toolbar.textRestartEachPage": "Restart Each Page",
"DE.Views.Toolbar.textRestartEachSection": "Restart Each Section",
"DE.Views.Toolbar.textRemWatermark": "Remove watermark",
"DE.Views.Toolbar.textRestartEachPage": "Restart each page",
"DE.Views.Toolbar.textRestartEachSection": "Restart each section",
"DE.Views.Toolbar.textRichControl": "Rich text",
"DE.Views.Toolbar.textRight": "Right: ",
"DE.Views.Toolbar.textStrikeout": "Strikethrough",
@ -3083,7 +3153,7 @@
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
"DE.Views.Toolbar.textSubscript": "Subscript",
"DE.Views.Toolbar.textSuperscript": "Superscript",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suppress for Current Paragraph",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suppress for current paragraph",
"DE.Views.Toolbar.textTabCollaboration": "Collaboration",
"DE.Views.Toolbar.textTabFile": "File",
"DE.Views.Toolbar.textTabHome": "Home",
@ -3130,7 +3200,7 @@
"DE.Views.Toolbar.tipInsertEquation": "Insert equation",
"DE.Views.Toolbar.tipInsertHorizontalText": "Insert horizontal text box",
"DE.Views.Toolbar.tipInsertImage": "Insert image",
"DE.Views.Toolbar.tipInsertNum": "Insert Page Number",
"DE.Views.Toolbar.tipInsertNum": "Insert page number",
"DE.Views.Toolbar.tipInsertShape": "Insert autoshape",
"DE.Views.Toolbar.tipInsertSmartArt": "Insert SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Insert symbol",
@ -3163,10 +3233,11 @@
"DE.Views.Toolbar.tipPageMargins": "Page margins",
"DE.Views.Toolbar.tipPageOrient": "Page orientation",
"DE.Views.Toolbar.tipPageSize": "Page size",
"DE.Views.Toolbar.tipParagraphStyle": "Paragraph Style",
"DE.Views.Toolbar.tipParagraphStyle": "Paragraph style",
"DE.Views.Toolbar.tipPaste": "Paste",
"DE.Views.Toolbar.tipPrColor": "Shading",
"DE.Views.Toolbar.tipPrint": "Print",
"DE.Views.Toolbar.tipPrintQuick": "Quick print",
"DE.Views.Toolbar.tipRedo": "Redo",
"DE.Views.Toolbar.tipSave": "Save",
"DE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.",
@ -3177,11 +3248,11 @@
"DE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.",
"DE.Views.Toolbar.tipUndo": "Undo",
"DE.Views.Toolbar.tipWatermark": "Edit watermark",
"DE.Views.Toolbar.txtDistribHor": "Distribute Horizontally",
"DE.Views.Toolbar.txtDistribVert": "Distribute Vertically",
"DE.Views.Toolbar.txtMarginAlign": "Align to Margin",
"DE.Views.Toolbar.txtDistribHor": "Distribute horizontally",
"DE.Views.Toolbar.txtDistribVert": "Distribute vertically",
"DE.Views.Toolbar.txtMarginAlign": "Align to margin",
"DE.Views.Toolbar.txtObjectsAlign": "Align Selected Objects",
"DE.Views.Toolbar.txtPageAlign": "Align to Page",
"DE.Views.Toolbar.txtPageAlign": "Align to page",
"DE.Views.Toolbar.txtScheme1": "Office",
"DE.Views.Toolbar.txtScheme10": "Median",
"DE.Views.Toolbar.txtScheme11": "Metro",

View file

@ -285,6 +285,7 @@
"Common.define.smartArt.textVerticalPictureList": "Lista vertical de imágenes",
"Common.define.smartArt.textVerticalProcess": "Proceso vertical",
"Common.Translation.textMoreButton": "Más",
"Common.Translation.tipFileLocked": "El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.",
"Common.Translation.warnFileLocked": "No puede editar este archivo porque está siendo editado en otra aplicación.",
"Common.Translation.warnFileLockedBtnEdit": "Crear una copia",
"Common.Translation.warnFileLockedBtnView": "Abrir para visualizar",
@ -458,6 +459,7 @@
"Common.Views.Header.textCompactView": "Esconder barra de herramientas",
"Common.Views.Header.textHideLines": "Ocultar reglas",
"Common.Views.Header.textHideStatusBar": "Ocultar barra de estado",
"Common.Views.Header.textReadOnly": "Sólo lectura",
"Common.Views.Header.textRemoveFavorite": "Eliminar de Favoritos",
"Common.Views.Header.textShare": "Compartir",
"Common.Views.Header.textZoom": "Ampliación",
@ -465,6 +467,7 @@
"Common.Views.Header.tipDownload": "Descargar archivo",
"Common.Views.Header.tipGoEdit": "Editar archivo actual",
"Common.Views.Header.tipPrint": "Imprimir archivo",
"Common.Views.Header.tipPrintQuick": "Impresión rápida",
"Common.Views.Header.tipRedo": "Rehacer",
"Common.Views.Header.tipSave": "Guardar",
"Common.Views.Header.tipSearch": "Búsqueda",
@ -1102,6 +1105,9 @@
"DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado",
"DE.Controllers.Navigation.txtBeginning": "Principio del documento",
"DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de",
"DE.Controllers.Print.textMarginsLast": "Último personalizado",
"DE.Controllers.Print.txtCustom": "Personalizado",
"DE.Controllers.Print.txtPrintRangeInvalid": "Intervalo de impresión no válido",
"DE.Controllers.Search.notcriticalErrorTitle": "Advertencia",
"DE.Controllers.Search.textNoTextFound": "No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.",
"DE.Controllers.Search.textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.",
@ -1951,10 +1957,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versión PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos con espacios",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caracteres con espacios",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caracteres",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
@ -2020,6 +2026,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Ver Ningunos",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Revisión",
"DE.Views.FileMenuPanels.Settings.txtPt": "Punto",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Mostrar el botón Impresión Rápida en el encabezado del editor",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "El documento se imprimirá en la última impresora seleccionada o predeterminada",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todo",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas las macros sin notificación ",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrar control de cambios",
@ -2577,6 +2585,33 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sin bordes",
"DE.Views.PrintWithPreview.textMarginsLast": "Último personalizado",
"DE.Views.PrintWithPreview.textMarginsModerate": "Moderado",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Estrecho",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normal",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal",
"DE.Views.PrintWithPreview.textMarginsWide": "Amplio",
"DE.Views.PrintWithPreview.txtAllPages": "Todas las páginas",
"DE.Views.PrintWithPreview.txtBottom": "Parte inferior",
"DE.Views.PrintWithPreview.txtCurrentPage": "Página actual",
"DE.Views.PrintWithPreview.txtCustom": "Personalizado",
"DE.Views.PrintWithPreview.txtCustomPages": "Impresión personalizada",
"DE.Views.PrintWithPreview.txtLandscape": "Horizontal",
"DE.Views.PrintWithPreview.txtLeft": "Izquierdo",
"DE.Views.PrintWithPreview.txtMargins": "Márgenes",
"DE.Views.PrintWithPreview.txtOf": "de {0}",
"DE.Views.PrintWithPreview.txtPage": "Página",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Número de página no válido",
"DE.Views.PrintWithPreview.txtPageOrientation": "Orientación de página",
"DE.Views.PrintWithPreview.txtPages": "Páginas",
"DE.Views.PrintWithPreview.txtPageSize": "Tamaño de página",
"DE.Views.PrintWithPreview.txtPortrait": "Vertical",
"DE.Views.PrintWithPreview.txtPrint": "Imprimir",
"DE.Views.PrintWithPreview.txtPrintPdf": "Imprimir en PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Intervalo de impresión",
"DE.Views.PrintWithPreview.txtRight": "Derecho",
"DE.Views.PrintWithPreview.txtSelection": "Selección ",
"DE.Views.PrintWithPreview.txtTop": "Parte superior",
"DE.Views.ProtectDialog.textComments": "Comentarios",
"DE.Views.ProtectDialog.textForms": "Relleno de formularios",
"DE.Views.ProtectDialog.textReview": "Cambios realizados",

View file

@ -256,6 +256,8 @@
"Common.define.smartArt.textSubStepProcess": "Azpi-urratsen prozesua",
"Common.define.smartArt.textTabList": "Fitxa-zerrenda",
"Common.Translation.textMoreButton": "Gehiago",
"Common.Translation.tipFileLocked": "Dokumentua editatzeko blokeatuta dago. Aldaketak egin eta kopia lokal bezala gorde dezakezu gero.",
"Common.Translation.tipFileReadOnly": "Dokumentua irakurtzeko soilik da eta editatzea blokeatuta dago. Aldaketak egin eta kopia lokal bat gorde dezakezu gero.",
"Common.Translation.warnFileLocked": "Ezin duzu fitxategi hau editatu, beste aplikazio batean editatzen ari direlako.",
"Common.Translation.warnFileLockedBtnEdit": "Sortu kopia",
"Common.Translation.warnFileLockedBtnView": "Ireki ikusteko",
@ -429,6 +431,7 @@
"Common.Views.Header.textCompactView": "Ezkutatu tresna-barra",
"Common.Views.Header.textHideLines": "Ezkutatu erregelak",
"Common.Views.Header.textHideStatusBar": "Ezkutatu egoera-barra",
"Common.Views.Header.textReadOnly": "Irakurtzeko soilik",
"Common.Views.Header.textRemoveFavorite": "Kendu gogokoetatik",
"Common.Views.Header.textShare": "Partekatu",
"Common.Views.Header.textZoom": "Zooma",
@ -436,6 +439,7 @@
"Common.Views.Header.tipDownload": "Deskargatu fitxategia",
"Common.Views.Header.tipGoEdit": "Editatu uneko fitxategia",
"Common.Views.Header.tipPrint": "Inprimatu fitxategia",
"Common.Views.Header.tipPrintQuick": "Inprimatze bizkorra",
"Common.Views.Header.tipRedo": "Berregin",
"Common.Views.Header.tipSave": "Gorde",
"Common.Views.Header.tipSearch": "Bilatu",
@ -1070,6 +1074,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Fitxategi hau editatzeko baimena ukatu zaizu.",
"DE.Controllers.Navigation.txtBeginning": "Dokumentuaren hasiera",
"DE.Controllers.Navigation.txtGotoBeginning": "Joan dokumentuaren hasierara",
"DE.Controllers.Print.textMarginsLast": "Azken pertsonalizatua",
"DE.Controllers.Print.txtCustom": "Pertsonalizatua",
"DE.Controllers.Print.txtPrintRangeInvalid": "Inprimaketa-bitarte baliogabea",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Sartu orri-zenbaki bat edo orri-tarte bat (adibidez, 5-12). Edo PDFra inprimatu dezakezu.",
"DE.Controllers.Search.notcriticalErrorTitle": "Abisua",
"DE.Controllers.Search.textNoTextFound": "Bilatu duzun datua ezin izan da aurkitu. Doitu bilaketaren ezarpenak.",
"DE.Controllers.Search.textReplaceSkipped": "Ordezkapena burutu da. {0} agerraldi saltatu dira.",
@ -1982,6 +1990,7 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Ez ikusi batere",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Zuzenketa",
"DE.Views.FileMenuPanels.Settings.txtPt": "Puntua",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Erakutsi Inprimatze bizkorra botoia editoreko goiburuan",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Gaitu guztiak",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Gaitu makro guztiak jakinarazpenik gabe",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Erakutsi aldaketen kontrola",
@ -2539,6 +2548,30 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Ezarri goiko ertza soilik",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatikoa",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ertzik gabe",
"DE.Views.PrintWithPreview.textMarginsLast": "Azken pertsonalizatua",
"DE.Views.PrintWithPreview.textMarginsModerate": "Ertaina",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Estua",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normala",
"DE.Views.PrintWithPreview.txtAllPages": "Orri guztiak",
"DE.Views.PrintWithPreview.txtBottom": "Behean",
"DE.Views.PrintWithPreview.txtCurrentPage": "Uneko orria",
"DE.Views.PrintWithPreview.txtCustom": "Pertsonalizatua",
"DE.Views.PrintWithPreview.txtCustomPages": "Inprimatze pertsonalizatua",
"DE.Views.PrintWithPreview.txtLandscape": "Horizontala",
"DE.Views.PrintWithPreview.txtLeft": "Ezkerra",
"DE.Views.PrintWithPreview.txtMargins": "Marjinak",
"DE.Views.PrintWithPreview.txtOf": "{0}-(e)tik",
"DE.Views.PrintWithPreview.txtPage": "Orria",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Orrialde-zenbaki baliogabea",
"DE.Views.PrintWithPreview.txtPageOrientation": "Orriaren orientazioa",
"DE.Views.PrintWithPreview.txtPages": "Orriak",
"DE.Views.PrintWithPreview.txtPageSize": "Orriaren tamaina",
"DE.Views.PrintWithPreview.txtPortrait": "Bertikala",
"DE.Views.PrintWithPreview.txtPrint": "Inprimatu",
"DE.Views.PrintWithPreview.txtPrintPdf": "Inprimatu PDFra",
"DE.Views.PrintWithPreview.txtPrintRange": "Inprimatu barrutia",
"DE.Views.PrintWithPreview.txtRight": "Eskuina",
"DE.Views.PrintWithPreview.txtSelection": "Hautapena",
"DE.Views.ProtectDialog.textComments": "Iruzkinak",
"DE.Views.ProtectDialog.textForms": "Formularioak betetzea",
"DE.Views.ProtectDialog.textView": "Aldaketarik ez (irakurtzeko soilik)",

View file

@ -1045,7 +1045,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphs",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Sijainti",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Henkilöt, joilla ovat oikeudet",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbolit välilyönneillä",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Merkkiä välilyönneillä",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Tilastot",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbolit",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Asiakirjan otsikko",

View file

@ -285,6 +285,8 @@
"Common.define.smartArt.textVerticalPictureList": "Liste dimages verticale",
"Common.define.smartArt.textVerticalProcess": "Processus vertical",
"Common.Translation.textMoreButton": "Plus",
"Common.Translation.tipFileLocked": "Le document est verrouillé pour l'édition. Vous pouvez apporter des modifications et l'enregistrer comme copie locale ultérieurement.",
"Common.Translation.tipFileReadOnly": "Le fichier est disponible en lecture seule. Pour sauvegarder vos modifications, enregistrez le fichier sous un nouveau nom ou à un autre endroit.",
"Common.Translation.warnFileLocked": "Vous ne pouvez pas modifier ce fichier car il a été modifié avec une autre application.",
"Common.Translation.warnFileLockedBtnEdit": "Créer une copie",
"Common.Translation.warnFileLockedBtnView": "Ouvrir pour visualisation",
@ -458,6 +460,7 @@
"Common.Views.Header.textCompactView": "Masquer la barre d'outils",
"Common.Views.Header.textHideLines": "Masquer les règles",
"Common.Views.Header.textHideStatusBar": "Masquer la barre d'état",
"Common.Views.Header.textReadOnly": "Lecture seule",
"Common.Views.Header.textRemoveFavorite": "Enlever des favoris",
"Common.Views.Header.textShare": "Partager",
"Common.Views.Header.textZoom": "Zoom",
@ -465,6 +468,7 @@
"Common.Views.Header.tipDownload": "Télécharger le fichier",
"Common.Views.Header.tipGoEdit": "Modifier le fichier courant",
"Common.Views.Header.tipPrint": "Imprimer le fichier",
"Common.Views.Header.tipPrintQuick": "Impression rapide",
"Common.Views.Header.tipRedo": "Rétablir",
"Common.Views.Header.tipSave": "Enregistrer",
"Common.Views.Header.tipSearch": "Recherche",
@ -562,13 +566,13 @@
"Common.Views.ReviewChanges.txtClose": "Fermer",
"Common.Views.ReviewChanges.txtCoAuthMode": "Mode de co-édition ",
"Common.Views.ReviewChanges.txtCommentRemAll": "Supprimer tous les commentaires",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Supprimer les commentaires existants",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Supprimer les commentaires actuels",
"Common.Views.ReviewChanges.txtCommentRemMy": "Supprimer mes commentaires",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Supprimer mes commentaires actuels",
"Common.Views.ReviewChanges.txtCommentRemove": "Supprimer",
"Common.Views.ReviewChanges.txtCommentResolve": "Résoudre",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Marquer tous les commentaires comme résolus",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Résoudre les commentaires actuels",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Marquer les commentaires actuels comme résolus",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Marquer mes commentaires comme résolus",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Marquer mes commentaires comme résolus",
"Common.Views.ReviewChanges.txtCompare": "Comparer",
@ -612,6 +616,7 @@
"Common.Views.ReviewPopover.textCancel": "Annuler",
"Common.Views.ReviewPopover.textClose": "Fermer",
"Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textEnterComment": "Entrez votre commentaire ici",
"Common.Views.ReviewPopover.textFollowMove": "Suivre le Mouvement",
"Common.Views.ReviewPopover.textMention": "+mention donne l'accès au document et notifie par courriel ",
"Common.Views.ReviewPopover.textMentionNotify": "+mention notifie l'utilisateur par courriel",
@ -699,6 +704,15 @@
"Common.Views.UserNameDialog.textDontShow": "Ne plus me demander à nouveau",
"Common.Views.UserNameDialog.textLabel": "Étiquette :",
"Common.Views.UserNameDialog.textLabelError": "Étiquette ne doit pas être vide",
"DE.Controllers.DocProtection.txtIsProtectedComment": "Le document est protégé. Vous pouvez uniquement laisser des commentaires dans ce document.",
"DE.Controllers.DocProtection.txtIsProtectedForms": "Le document est protégé. Vous pouvez uniquement remplir les formulaires de ce document.",
"DE.Controllers.DocProtection.txtIsProtectedTrack": "Le document est protégé. Vous pouvez modifier ce document, mais toutes les modifications seront suivies.",
"DE.Controllers.DocProtection.txtIsProtectedView": "Le document est protégé. Vous pouvez uniquement consulter ce document.",
"DE.Controllers.DocProtection.txtWasProtectedComment": "Le document a été protégé par un autre utilisateur.\nVous pouvez uniquement laisser des commentaires dans ce document.",
"DE.Controllers.DocProtection.txtWasProtectedForms": "Le document a été protégé par un autre utilisateur.\nVous pouvez uniquement remplir les formulaires de ce document.",
"DE.Controllers.DocProtection.txtWasProtectedTrack": "Le document a été protégé par un autre utilisateur.\nVous pouvez modifier ce document, mais toutes les modifications seront suivies.",
"DE.Controllers.DocProtection.txtWasProtectedView": "Le document a été protégé par un autre utilisateur.\nVous pouvez uniquement afficher ce document.",
"DE.Controllers.DocProtection.txtWasUnprotected": "La protection du document a été retirée.",
"DE.Controllers.LeftMenu.leavePageText": "Toutes les modifications non enregistrées dans ce document seront perdus.<br> Cliquez sur \"Annuler\", puis \"Enregistrer\" pour les sauver. Cliquez sur \"OK\" pour annuler toutes les modifications non enregistrées.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Document sans nom",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avertissement",
@ -726,6 +740,7 @@
"DE.Controllers.Main.downloadTitleText": "Téléchargement du document",
"DE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
"DE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte",
"DE.Controllers.Main.errorCannotPasteImg": "Il n'est pas possible de coller cette image à partir du Presse-papiers, mais vous pouvez l'enregistrer sur votre appareil et l'insérer à partir de là, ou vous pouvez copier l'image sans texte et la coller dans le document.",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Le document ne peut être modifié en ce moment.",
"DE.Controllers.Main.errorComboSeries": "Résultats de traduction\nPour créer un graphique combiné, sélectionnez au moins deux séries de données. ",
"DE.Controllers.Main.errorCompare": "La fonctionnalité «‎ Comparaison des documents » n'est pas disponible lors de co-édition.",
@ -829,6 +844,7 @@
"DE.Controllers.Main.textRequestMacros": "Une macro fait une demande à l'URL. Voulez-vous autoriser la demande à l'adresse %1 ?",
"DE.Controllers.Main.textShape": "Forme",
"DE.Controllers.Main.textStrict": "Mode strict",
"DE.Controllers.Main.textTryQuickPrint": "Vous avez sélectionné Impression rapide : l'ensemble du document sera imprimé sur la dernière imprimante sélectionnée ou celle par défaut.<br>Voulez-vous continuer ?",
"DE.Controllers.Main.textTryUndoRedo": "Les fonctions annuler/rétablir sont désactivées pour le mode de co-édition rapide.<br>Cliquez sur le bouton \"Mode strict\" pour passer au mode de la co-édition stricte pour modifier le fichier sans interférence d'autres utilisateurs et envoyer vos modifications seulement après que vous les enregistrez. Vous pouvez basculer entre les modes de co-édition à l'aide de paramètres avancés d'éditeur.",
"DE.Controllers.Main.textTryUndoRedoWarn": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.",
"DE.Controllers.Main.textUndo": "Annuler",
@ -1051,7 +1067,7 @@
"DE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
"DE.Controllers.Main.txtStyle_Caption": "Légende",
"DE.Controllers.Main.txtStyle_endnote_text": "Texte de note de fin",
"DE.Controllers.Main.txtStyle_footnote_text": "Texte de la note de bas de page",
"DE.Controllers.Main.txtStyle_footnote_text": "Texte de pied de page",
"DE.Controllers.Main.txtStyle_Heading_1": "Titre 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Titre 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Titre 3",
@ -1102,6 +1118,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
"DE.Controllers.Navigation.txtBeginning": "Début du document",
"DE.Controllers.Navigation.txtGotoBeginning": "Aller au début du document",
"DE.Controllers.Print.textMarginsLast": "Derniers personnalisés",
"DE.Controllers.Print.txtCustom": "Personnalisé",
"DE.Controllers.Print.txtPrintRangeInvalid": "Plage d'impression non valide",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Saisissez un numéro de page unique ou une plage de pages unique (par exemple, 5-12). Vous pouvez également imprimer en PDF.",
"DE.Controllers.Search.notcriticalErrorTitle": "Avertissement",
"DE.Controllers.Search.textNoTextFound": "Les données que vous recherchez n'ont pas pu être trouvées. Veuillez modifier vos options de recherche.",
"DE.Controllers.Search.textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.",
@ -1127,7 +1147,7 @@
"DE.Controllers.Toolbar.textInsert": "Insérer",
"DE.Controllers.Toolbar.textIntegral": "Intégrales",
"DE.Controllers.Toolbar.textLargeOperator": "Grands opérateurs",
"DE.Controllers.Toolbar.textLimitAndLog": "Limites et logarithmes ",
"DE.Controllers.Toolbar.textLimitAndLog": "Limites et logarithmes",
"DE.Controllers.Toolbar.textMatrix": "Matrices",
"DE.Controllers.Toolbar.textOperator": "Opérateurs",
"DE.Controllers.Toolbar.textRadical": "Radicaux",
@ -1163,52 +1183,52 @@
"DE.Controllers.Toolbar.txtAccent_Hat": "Chapeau",
"DE.Controllers.Toolbar.txtAccent_Smile": "Brève",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"DE.Controllers.Toolbar.txtBracket_Angle": "Crochets",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Crochets avec séparateurs",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Crochets avec séparateurs",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Curve": "Crochets",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Crochets avec séparateurs",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Angle": "Crochets pointus",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Crochets pointus avec séparateur",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Crochets pointus avec deux séparateurs",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Crochet angulaire droite",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Crochet angulaire à gauche",
"DE.Controllers.Toolbar.txtBracket_Curve": "Accolades",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Accolades avec séparateur",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Accolade droite",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Accolade gauche",
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Cas (deux conditions)",
"DE.Controllers.Toolbar.txtBracket_Custom_2": "Cas (trois conditions)",
"DE.Controllers.Toolbar.txtBracket_Custom_3": "Objet empilé",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Objet empilé",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Objet de pile entre parenthèses",
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Exemple de cas",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Coefficient binomial",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Coefficient binomial",
"DE.Controllers.Toolbar.txtBracket_Line": "Crochets",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Crochets",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Crochets",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Round": "Crochets",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Crochets avec séparateurs",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Coefficient binomial entre crochets pointus",
"DE.Controllers.Toolbar.txtBracket_Line": "Barres verticales",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Barre verticale droite",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Barre verticale gauche",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Barres verticales doubles",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Double barre verticale droite",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Double barre verticale gauche",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Plancher",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Plancher à droite",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Plancher à gauche",
"DE.Controllers.Toolbar.txtBracket_Round": "Parenthèses",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parenthèses avec séparateur",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Parenthèse droite",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Parenthèse gauche",
"DE.Controllers.Toolbar.txtBracket_Square": "Crochets",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Crochets",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Crochets",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Crochets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Crochets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Crochets",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Crochet unique",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder entre deux crochets droits",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Crochets inversés",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Crochet droit",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Crochet gauche",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder entre deux crochets gauches",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Double crochets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Double crochet droit",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Double crochet gauche",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Plafond",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Plafond à droite",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Plafond à gauche",
"DE.Controllers.Toolbar.txtFractionDiagonal": "Fraction oblique",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "Différentiel",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "Différentiel",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "Différentiel",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "Différentiel",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "dx sur dy",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y sur cap delta x",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "partielle y sur partielle x",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "y delta sur delta x",
"DE.Controllers.Toolbar.txtFractionHorizontal": "Fraction sur une ligne",
"DE.Controllers.Toolbar.txtFractionPi_2": "Pi divisé par 2",
"DE.Controllers.Toolbar.txtFractionSmall": "Petite fraction",
@ -1244,63 +1264,63 @@
"DE.Controllers.Toolbar.txtIntegral_dtheta": "Thêta différentiel",
"DE.Controllers.Toolbar.txtIntegral_dx": "Différentiel x",
"DE.Controllers.Toolbar.txtIntegral_dy": "Différentiel y",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Intégrale",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Intégrale avec limites empilées",
"DE.Controllers.Toolbar.txtIntegralDouble": "Double intégrale",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double intégrale",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double intégrale",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Intégrale double avec limites empilées",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Intégrale double avec limites",
"DE.Controllers.Toolbar.txtIntegralOriented": "Intégrale de contour",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Intégrale de contour",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Intégrale de contour avec limites empilées",
"DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Intégrale de surface",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Intégrale de surface",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Intégrale de surface",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Intégrale de contour",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Intégrale de surface avec limites empilées",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Intégrale de surface avec limites",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Intégrale de contour avec limites",
"DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Intégrale de volume",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Intégrale de volume",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Intégrale de volume",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Intégrale",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Intégrale de volume avec limites empilées",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Intégrale de volume avec limites",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Intégrale avec limites",
"DE.Controllers.Toolbar.txtIntegralTriple": "Triple intégrale",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple intégrale",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple intégrale",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Coin",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Coin",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Coin",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Coin",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Coin",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Intégrale triple avec limites empilées",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Intégrale triple avec limites",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Et logique",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Et logique avec limite inférieure",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Et logique avec limites",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Et logique avec limite inférieure en indice",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Et logique avec limites en indice/exposant",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-produit",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-produit",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-produit",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-produit",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-produit",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Somme",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Somme",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Somme",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produit",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "en V",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "en V",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "en V",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "en V",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "en V",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coproduit avec limite inférieure",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproduit avec limites",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproduit avec limite inférieure en indice",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproduit avec limites en indice/en exposant",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Somme sur k de n choix k",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Somme de i égal à zéro à n",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Exemple de somme utilisant deux indices",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Exemple de produit",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Exemple dunion",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Ou logique",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Ou logique avec limite inférieure",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Ou logique avec limites",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Ou logique avec limite inférieure en indice",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Ou logique avec limites en indice/exposant",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection avec limite inférieure",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection avec limites",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection avec limite inférieure en indice",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection avec limites en indice/exposant",
"DE.Controllers.Toolbar.txtLargeOperator_Prod": "Produit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produit avec limite inférieure",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produit avec limites",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produit avec limite inférieure en indice",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produit avec limites en indice/exposant",
"DE.Controllers.Toolbar.txtLargeOperator_Sum": "Somme",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Somme",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Somme",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Somme",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Somme",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Somme avec limite inférieure",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Somme avec limites",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Somme avec limite inférieure en indice",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Somme avec limites en indice/exposant",
"DE.Controllers.Toolbar.txtLargeOperator_Union": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union avec limite inférieure",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union avec limites",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union avec limite inférieure en indice",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union avec limites en indice/exposant",
"DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemple de limite",
"DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemple de maximum",
"DE.Controllers.Toolbar.txtLimitLog_Lim": "Limite",
@ -1315,10 +1335,10 @@
"DE.Controllers.Toolbar.txtMatrix_1_3": "Matrice vide 1x3",
"DE.Controllers.Toolbar.txtMatrix_2_1": "Matrice vide 2x1",
"DE.Controllers.Toolbar.txtMatrix_2_2": "Matrice vide 2x2",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice vide avec crochets",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matrice vide avec crochets",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice vide avec crochets",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice vide avec crochets",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice 2x2 vide avec doubles barres verticales",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Déterminant 2x2 vide",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice didentité 2x2 vide entre parenthèses",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice didentité 2x2 vide entre crochets",
"DE.Controllers.Toolbar.txtMatrix_2_3": "Matrice vide 2x3",
"DE.Controllers.Toolbar.txtMatrix_3_1": "Matrice vide 3x1",
"DE.Controllers.Toolbar.txtMatrix_3_2": "Matrice vide 3x2",
@ -1327,12 +1347,12 @@
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Points d'interligne",
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Points diagonaux",
"DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Points verticaux",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice avec pointillés",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice avec pointillés",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice d'identité 2x2",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice avec pointillés entre parenthèses",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice avec pointillés entre crochets",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice didentité 2x2 avec zéros",
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice d'identité 3x3",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice d'identité 3x3",
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice d'identité 3x3",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice didentité 3x3 avec zéros",
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice didentité 3x3 avec cellules hors diagonale vides",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Flèche gauche-droite en dessous",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Flèche gauche-droite au-dessus",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Flèche vers la gauche en dessous",
@ -1344,8 +1364,8 @@
"DE.Controllers.Toolbar.txtOperator_Custom_2": "Les rendements Delta",
"DE.Controllers.Toolbar.txtOperator_Definition": "Égal par définition à",
"DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta égal à",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Flèche gauche-droite en dessous",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Flèche gauche-droite au-dessus",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Double flèche gauche-droite au-dessous",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Double flèche gauche-droite au-dessus",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Flèche vers la gauche en dessous",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Flèche vers la gauche au-dessus",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Flèche vers la droite en dessous",
@ -1354,16 +1374,16 @@
"DE.Controllers.Toolbar.txtOperator_MinusEquals": "Moins égal",
"DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Égal",
"DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Mesuré(e) par",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Côté droit de la formule quadratique",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Racine carrée de a au carré plus b au carré",
"DE.Controllers.Toolbar.txtRadicalRoot_2": "Racine carrée avec degré",
"DE.Controllers.Toolbar.txtRadicalRoot_3": "Racine cubique",
"DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical avec degré",
"DE.Controllers.Toolbar.txtRadicalSqrt": "Racine carrée",
"DE.Controllers.Toolbar.txtScriptCustom_1": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_2": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_3": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Script",
"DE.Controllers.Toolbar.txtScriptCustom_1": "x indice y au carré",
"DE.Controllers.Toolbar.txtScriptCustom_2": "e au i négatif oméga t",
"DE.Controllers.Toolbar.txtScriptCustom_3": "x au carré",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Y exposant gauche n indice gauche un",
"DE.Controllers.Toolbar.txtScriptSub": "Indice",
"DE.Controllers.Toolbar.txtScriptSubSup": "Indice-Exposant",
"DE.Controllers.Toolbar.txtScriptSubSupLeft": "Indice-Exposant gauche",
@ -1622,6 +1642,7 @@
"DE.Views.DocProtection.txtDocProtectedView": "Le document est protégé. <br>Vous ne pouvez que visualiser ce document.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Saisissez le mot de passe pour déprotéger le document",
"DE.Views.DocProtection.txtProtectDoc": "Protéger le document",
"DE.Views.DocProtection.txtUnlockTitle": "Déprotéger le document",
"DE.Views.DocumentHolder.aboveText": "Au-dessus",
"DE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire",
"DE.Views.DocumentHolder.advancedDropCapText": "Paramètres de la lettrine",
@ -1951,10 +1972,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Version PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Emplacement",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personnes qui ont des droits",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboles avec des espaces",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caractères avec espaces",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiques",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Sujet",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboles",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caractères",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre du document",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Chargé",
@ -2020,6 +2041,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Surligner aucune modification",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Vérification",
"DE.Views.FileMenuPanels.Settings.txtPt": "Point",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Afficher le bouton d'impression rapide dans l'en-tête de l'éditeur",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Le document sera imprimé sur la dernière imprimante sélectionnée ou par défaut",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Activer tout",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Activer toutes les macros sans notification",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Afficher le suivi des modifications",
@ -2305,7 +2328,7 @@
"DE.Views.Links.confirmDeleteFootnotes": "Souhaitez-vous supprimer toutes les notes de bas de page ?",
"DE.Views.Links.confirmReplaceTOF": "Voulez vous remplacer la table des figures sélectionnée ?",
"DE.Views.Links.mniConvertNote": "Convertir toutes les notes",
"DE.Views.Links.mniDelFootnote": "Supprimer les notes de bas de page",
"DE.Views.Links.mniDelFootnote": "Supprimer toutes les notes",
"DE.Views.Links.mniInsEndnote": "Insérer une note de fin",
"DE.Views.Links.mniInsFootnote": "Insérer une note de bas de page",
"DE.Views.Links.mniNoteSettings": "Paramètres des notes",
@ -2314,7 +2337,7 @@
"DE.Views.Links.textConvertToEndnotes": "Convertir tous les pieds de page aux notes de fin",
"DE.Views.Links.textConvertToFootnotes": "Convertir toutes les notes de fin aux pieds de page",
"DE.Views.Links.textGotoEndnote": "Passer aux notes de fin",
"DE.Views.Links.textGotoFootnote": "Accéder aux notes de bas de page",
"DE.Views.Links.textGotoFootnote": "Passer aux notes de bas de page",
"DE.Views.Links.textSwapNotes": "Changer les notes de pied de page et les notes de fin",
"DE.Views.Links.textUpdateAll": "Actualiser le tableau entier",
"DE.Views.Links.textUpdatePages": "Actualiser les numéros de page uniquement",
@ -2577,6 +2600,33 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Seulement bordure supérieure",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Pas de bordures",
"DE.Views.PrintWithPreview.textMarginsLast": "Derniers personnalisés",
"DE.Views.PrintWithPreview.textMarginsModerate": "Moyennes",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Étroites",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normales",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "US normale",
"DE.Views.PrintWithPreview.textMarginsWide": "Larges",
"DE.Views.PrintWithPreview.txtAllPages": "Toutes les pages",
"DE.Views.PrintWithPreview.txtBottom": "Bas",
"DE.Views.PrintWithPreview.txtCurrentPage": "Page active",
"DE.Views.PrintWithPreview.txtCustom": "Personnalisé",
"DE.Views.PrintWithPreview.txtCustomPages": "Impression personnalisée",
"DE.Views.PrintWithPreview.txtLandscape": "Paysage",
"DE.Views.PrintWithPreview.txtLeft": "Gauche",
"DE.Views.PrintWithPreview.txtMargins": "Marges",
"DE.Views.PrintWithPreview.txtOf": "de {0}",
"DE.Views.PrintWithPreview.txtPage": "Page",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Numéro de page non valide",
"DE.Views.PrintWithPreview.txtPageOrientation": "Orientation de page",
"DE.Views.PrintWithPreview.txtPages": "Pages",
"DE.Views.PrintWithPreview.txtPageSize": "Taille de page",
"DE.Views.PrintWithPreview.txtPortrait": "Portrait",
"DE.Views.PrintWithPreview.txtPrint": "Imprimer",
"DE.Views.PrintWithPreview.txtPrintPdf": "Imprimer au format PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Zone d'impression",
"DE.Views.PrintWithPreview.txtRight": "Droite",
"DE.Views.PrintWithPreview.txtSelection": "Sélection",
"DE.Views.PrintWithPreview.txtTop": "Haut",
"DE.Views.ProtectDialog.textComments": "Commentaires",
"DE.Views.ProtectDialog.textForms": "Remplissage des formulaires",
"DE.Views.ProtectDialog.textReview": "Modifications",
@ -2632,7 +2682,7 @@
"DE.Views.ShapeSettings.textPatternFill": "Modèle",
"DE.Views.ShapeSettings.textPosition": "Position",
"DE.Views.ShapeSettings.textRadial": "Radial",
"DE.Views.ShapeSettings.textRecentlyUsed": "Récemment utilisé",
"DE.Views.ShapeSettings.textRecentlyUsed": "Récemment utilisés",
"DE.Views.ShapeSettings.textRotate90": "Faire pivoter de 90°",
"DE.Views.ShapeSettings.textRotation": "Rotation",
"DE.Views.ShapeSettings.textSelectImage": "Sélectionner l'image",
@ -2690,6 +2740,12 @@
"DE.Views.Statusbar.tipZoomIn": "Zoom avant",
"DE.Views.Statusbar.tipZoomOut": "Zoom arrière",
"DE.Views.Statusbar.txtPageNumInvalid": "Numéro de page non valide",
"DE.Views.Statusbar.txtPages": "Pages",
"DE.Views.Statusbar.txtParagraphs": "Paragraphes",
"DE.Views.Statusbar.txtSpaces": "Symboles avec espaces",
"DE.Views.Statusbar.txtSymbols": "Symboles",
"DE.Views.Statusbar.txtWordCount": "Nombre de mots",
"DE.Views.Statusbar.txtWords": "Mots",
"DE.Views.StyleTitleDialog.textHeader": "Créer un nouveau style",
"DE.Views.StyleTitleDialog.textNextStyle": "Style du nouveau paragraphe",
"DE.Views.StyleTitleDialog.textTitle": "Titre",
@ -2943,7 +2999,7 @@
"DE.Views.Toolbar.capImgGroup": "Grouper",
"DE.Views.Toolbar.capImgWrapping": "Retour à la ligne",
"DE.Views.Toolbar.mniCapitalizeWords": "Mettre en majuscule chaque mot",
"DE.Views.Toolbar.mniCustomTable": "Inserer un tableau personnalisé",
"DE.Views.Toolbar.mniCustomTable": "Insérer un tableau personnalisé",
"DE.Views.Toolbar.mniDrawTable": "Dessiner un tableau",
"DE.Views.Toolbar.mniEditControls": "Paramètres de contrôle",
"DE.Views.Toolbar.mniEditDropCap": "Paramètres de la lettrine",
@ -2953,7 +3009,7 @@
"DE.Views.Toolbar.mniFromFile": "Depuis un fichier",
"DE.Views.Toolbar.mniFromStorage": "A partir de l'espace de stockage",
"DE.Views.Toolbar.mniFromUrl": "À partir de l'URL",
"DE.Views.Toolbar.mniHiddenBorders": "Bordures du tableau cachées",
"DE.Views.Toolbar.mniHiddenBorders": "Bordures de tableau cachées",
"DE.Views.Toolbar.mniHiddenChars": "Caractères non imprimables",
"DE.Views.Toolbar.mniHighlightControls": "Paramètres de surbrillance",
"DE.Views.Toolbar.mniImageFromFile": "Image à partir d'un fichier",
@ -2967,7 +3023,7 @@
"DE.Views.Toolbar.mniTextToTable": "Convertir un texte en tableau",
"DE.Views.Toolbar.mniToggleCase": "Inverser la casse",
"DE.Views.Toolbar.mniUpperCase": "Majuscules",
"DE.Views.Toolbar.strMenuNoFill": "Pas de remplissage",
"DE.Views.Toolbar.strMenuNoFill": "Aucun remplissage",
"DE.Views.Toolbar.textAutoColor": "Automatique",
"DE.Views.Toolbar.textBold": "Gras",
"DE.Views.Toolbar.textBottom": "En bas: ",
@ -2982,7 +3038,7 @@
"DE.Views.Toolbar.textComboboxControl": "Zone de liste déroulante",
"DE.Views.Toolbar.textContinuous": "Continue",
"DE.Views.Toolbar.textContPage": "Page continue",
"DE.Views.Toolbar.textCustomLineNumbers": "Paramètres de la numérotation de lignes",
"DE.Views.Toolbar.textCustomLineNumbers": "Options de numérotation de ligne",
"DE.Views.Toolbar.textDateControl": "Date",
"DE.Views.Toolbar.textDropdownControl": "Liste déroulante",
"DE.Views.Toolbar.textEditWatermark": "Filigrane personnalisé",
@ -2992,7 +3048,7 @@
"DE.Views.Toolbar.textInsertPageCount": "Insérer le nombre de pages",
"DE.Views.Toolbar.textInsertPageNumber": "Insérer le numéro de page",
"DE.Views.Toolbar.textInsPageBreak": "Insérer un saut de page",
"DE.Views.Toolbar.textInsSectionBreak": "Insérer un saut de section",
"DE.Views.Toolbar.textInsSectionBreak": "Insérer saut de section",
"DE.Views.Toolbar.textInText": "Dans le Texte",
"DE.Views.Toolbar.textItalic": "Italique",
"DE.Views.Toolbar.textLandscape": "Paysage",
@ -3010,14 +3066,14 @@
"DE.Views.Toolbar.textNone": "Aucune",
"DE.Views.Toolbar.textOddPage": "Page impaire",
"DE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées",
"DE.Views.Toolbar.textPageSizeCustom": "Taille personnalisée",
"DE.Views.Toolbar.textPageSizeCustom": "Taille de page personnalisée",
"DE.Views.Toolbar.textPictureControl": "Image",
"DE.Views.Toolbar.textPlainControl": "Insérer un contrôle de contenu en texte brut",
"DE.Views.Toolbar.textPortrait": "Portrait",
"DE.Views.Toolbar.textRemoveControl": "Supprimer le contrôle du contenu",
"DE.Views.Toolbar.textRemWatermark": "Supprimer le filigrane",
"DE.Views.Toolbar.textRestartEachPage": "Restaurer chaque page",
"DE.Views.Toolbar.textRestartEachSection": "Restaurer chaque section",
"DE.Views.Toolbar.textRestartEachPage": "Redémarrer à chaque page",
"DE.Views.Toolbar.textRestartEachSection": "Redémarrer à chaque section",
"DE.Views.Toolbar.textRichControl": "Insérer un contrôle de contenu en texte enrichi",
"DE.Views.Toolbar.textRight": "A droite: ",
"DE.Views.Toolbar.textStrikeout": "Barré",
@ -3111,8 +3167,9 @@
"DE.Views.Toolbar.tipPageSize": "Taille de la page",
"DE.Views.Toolbar.tipParagraphStyle": "Style de paragraphe",
"DE.Views.Toolbar.tipPaste": "Coller",
"DE.Views.Toolbar.tipPrColor": "Couleur d'arrière-plan de paragraphe",
"DE.Views.Toolbar.tipPrColor": "Ombrage",
"DE.Views.Toolbar.tipPrint": "Imprimer",
"DE.Views.Toolbar.tipPrintQuick": "Impression rapide",
"DE.Views.Toolbar.tipRedo": "Rétablir",
"DE.Views.Toolbar.tipSave": "Enregistrer",
"DE.Views.Toolbar.tipSaveCoauth": "Enregistrez vos modifications pour que les autres utilisateurs puissent les voir.",
@ -3125,9 +3182,9 @@
"DE.Views.Toolbar.tipWatermark": "Modifier le filigrane",
"DE.Views.Toolbar.txtDistribHor": "Distribuer horizontalement",
"DE.Views.Toolbar.txtDistribVert": "Distribuer verticalement",
"DE.Views.Toolbar.txtMarginAlign": "Aligner par rapport à la marge",
"DE.Views.Toolbar.txtMarginAlign": "Aligner sur la marge",
"DE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés",
"DE.Views.Toolbar.txtPageAlign": "Aligner par rapport à la page",
"DE.Views.Toolbar.txtPageAlign": "Aligner sur la page",
"DE.Views.Toolbar.txtScheme1": "Office",
"DE.Views.Toolbar.txtScheme10": "Médian",
"DE.Views.Toolbar.txtScheme11": "Métro",

View file

@ -41,7 +41,7 @@
"Common.Controllers.ReviewChanges.textItalic": "Dőlt",
"Common.Controllers.ReviewChanges.textJustify": "Igazítás sorkizártra",
"Common.Controllers.ReviewChanges.textKeepLines": "Sorok egyben tartása",
"Common.Controllers.ReviewChanges.textKeepNext": "Következővel együtt tartás",
"Common.Controllers.ReviewChanges.textKeepNext": "Tovább a következővel",
"Common.Controllers.ReviewChanges.textLeft": "Balra rendez",
"Common.Controllers.ReviewChanges.textLineSpacing": "Sortávolság:",
"Common.Controllers.ReviewChanges.textMultiple": "Többszörös",
@ -202,7 +202,7 @@
"Common.define.smartArt.textInterconnectedBlockProcess": "Kapcsolódó blokkfolyamat",
"Common.define.smartArt.textInterconnectedRings": "Kapcsolódó gyűrűk",
"Common.define.smartArt.textInvertedPyramid": "Fordított piramis",
"Common.define.smartArt.textLabeledHierarchy": "Megcímkézett hierarchia",
"Common.define.smartArt.textLabeledHierarchy": "Hierarchia címkézve",
"Common.define.smartArt.textLinearVenn": "Lineáris Venn",
"Common.define.smartArt.textLinedList": "Vonalas lista",
"Common.define.smartArt.textList": "Lista",
@ -285,6 +285,8 @@
"Common.define.smartArt.textVerticalPictureList": "Vertikális képlista",
"Common.define.smartArt.textVerticalProcess": "Vertikális folyamat",
"Common.Translation.textMoreButton": "Több",
"Common.Translation.tipFileLocked": "A dokumentum szerkesztésre zárolt. A módosításokat elvégezheti, és helyi másolatként később is elmentheti.",
"Common.Translation.tipFileReadOnly": "A dokumentum csak olvasható, szerkesztésre zárolt. A módosításokat később is elvégezheti és elmentheti a helyi másolatot.",
"Common.Translation.warnFileLocked": "Nem szerkesztheti ezt a fájlt, mert egy másik alkalmazásban szerkesztik.",
"Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása",
"Common.Translation.warnFileLockedBtnView": "Megnyitva megtekintésre",
@ -375,8 +377,8 @@
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "Váltás",
"Common.Views.About.txtAddress": "Cím:",
"Common.Views.About.txtLicensee": "LICENC VÁSÁRLÓ",
"Common.Views.About.txtLicensor": "LICENCTULAJDONOS",
"Common.Views.About.txtLicensee": "LICENC JOGOSULTJA",
"Common.Views.About.txtLicensor": "LICENZOR",
"Common.Views.About.txtMail": "e-mail:",
"Common.Views.About.txtPoweredBy": "Powered by",
"Common.Views.About.txtTel": "Tel.: ",
@ -391,7 +393,7 @@
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Pont hozzáadása dupla szóközzel",
"Common.Views.AutoCorrectDialog.textFLCells": "A táblázat celláinak első betűje nagybetű legyen",
"Common.Views.AutoCorrectDialog.textFLSentence": "A mondatok nagy betűvel kezdődjenek",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati utak hiperhivatkozásokkal",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati útvonalak hiperhivatkozásokon keresztül",
"Common.Views.AutoCorrectDialog.textHyphens": "Kötőjelek (--) gondolatjellel (—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Matematikai automatikus javítás",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatikus számozott listák",
@ -458,6 +460,7 @@
"Common.Views.Header.textCompactView": "Eszköztár elrejtése",
"Common.Views.Header.textHideLines": "Vonalzók elrejtése",
"Common.Views.Header.textHideStatusBar": "Állapotsor elrejtése",
"Common.Views.Header.textReadOnly": "Csak olvasható",
"Common.Views.Header.textRemoveFavorite": "Eltávolítás a kedvencekből",
"Common.Views.Header.textShare": "Megosztás",
"Common.Views.Header.textZoom": "Zoom",
@ -465,6 +468,7 @@
"Common.Views.Header.tipDownload": "Fájl letöltése",
"Common.Views.Header.tipGoEdit": "Az aktuális fájl szerkesztése",
"Common.Views.Header.tipPrint": "Fájl nyomtatása",
"Common.Views.Header.tipPrintQuick": "Gyorsnyomtatás",
"Common.Views.Header.tipRedo": "Újra",
"Common.Views.Header.tipSave": "Ment",
"Common.Views.Header.tipSearch": "Keresés",
@ -831,6 +835,7 @@
"DE.Controllers.Main.textRequestMacros": "A makró kérést intéz az URL-hez. Szeretné engedélyezni a kérést a %1-hoz?",
"DE.Controllers.Main.textShape": "Alakzat",
"DE.Controllers.Main.textStrict": "Biztonságos mód",
"DE.Controllers.Main.textTryQuickPrint": "Ön a gyorsnyomtatást választotta: a teljes dokumentum az előzőleg kiválasztott vagy alapértelmezett nyomtatóra kerül kinyomtatásra.<br>Szeretné folytatni?",
"DE.Controllers.Main.textTryUndoRedo": "A Visszavonás / Újra funkciók le vannak tiltva a Gyors együttes szerkesztés módban.<br>A \"Biztonságos mód\" gombra kattintva válthat a Biztonságos együttes szerkesztés módra, hogy a dokumentumot más felhasználókkal való interferencia nélkül tudja szerkeszteni, mentés után küldve el a módosításokat. A szerkesztési módok között a Speciális beállítások segítségével válthat.",
"DE.Controllers.Main.textTryUndoRedoWarn": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.",
"DE.Controllers.Main.textUndo": "Vissza",
@ -879,12 +884,12 @@
"DE.Controllers.Main.txtSameAsPrev": "Az előzővel azonos",
"DE.Controllers.Main.txtSection": "-Szakasz",
"DE.Controllers.Main.txtSeries": "Sorozatok",
"DE.Controllers.Main.txtShape_accentBorderCallout1": "1. szövegbuborék (kerettel és vonallal)",
"DE.Controllers.Main.txtShape_accentBorderCallout2": "2. szövegbuborék (kerettel és vonallal)",
"DE.Controllers.Main.txtShape_accentBorderCallout3": "3. szövegbuborék (kerettel és vonallal)",
"DE.Controllers.Main.txtShape_accentCallout1": "1. szövegbuborék (vonallal)",
"DE.Controllers.Main.txtShape_accentCallout2": "2. szövegbuborék (vonallal)",
"DE.Controllers.Main.txtShape_accentCallout3": "3. szövegbuborék (vonallal)",
"DE.Controllers.Main.txtShape_accentBorderCallout1": "Jelmagyarázat az 1. sorral (keret és jelölősáv)",
"DE.Controllers.Main.txtShape_accentBorderCallout2": "Jelmagyarázat a 2. sorral (keret és jelölősáv)",
"DE.Controllers.Main.txtShape_accentBorderCallout3": "Jelmagyarázat a 3. sorral (keret és jelölősáv)",
"DE.Controllers.Main.txtShape_accentCallout1": "Jelmagyarázat az 1. vonallal (jelölő sáv)",
"DE.Controllers.Main.txtShape_accentCallout2": "Jelmagyarázat a 2. vonallal (jelölő sáv)",
"DE.Controllers.Main.txtShape_accentCallout3": "Jelmagyarázat a 3. vonallal (jelölősáv)",
"DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Vissza vagy előző gomb",
"DE.Controllers.Main.txtShape_actionButtonBeginning": "Kezdő gomb",
"DE.Controllers.Main.txtShape_actionButtonBlank": "Inaktív gomb",
@ -905,13 +910,13 @@
"DE.Controllers.Main.txtShape_bentUpArrow": "Felhajlított nyíl",
"DE.Controllers.Main.txtShape_bevel": "Tompaszög",
"DE.Controllers.Main.txtShape_blockArc": "Körív blokk",
"DE.Controllers.Main.txtShape_borderCallout1": "1. vonalfelirat",
"DE.Controllers.Main.txtShape_borderCallout2": "2. szövegbuborék",
"DE.Controllers.Main.txtShape_borderCallout3": "3. szövegbuborék",
"DE.Controllers.Main.txtShape_borderCallout1": "Magyarázat az 1. sorral",
"DE.Controllers.Main.txtShape_borderCallout2": "Jelmagyarázat a 2. sorral",
"DE.Controllers.Main.txtShape_borderCallout3": "Jelmagyarázat a 3. sorral",
"DE.Controllers.Main.txtShape_bracePair": "Dupla zárójel",
"DE.Controllers.Main.txtShape_callout1": "1. szövegbuborék (keret nélkül)",
"DE.Controllers.Main.txtShape_callout2": "2. szövegbuborék (keret nélkül)",
"DE.Controllers.Main.txtShape_callout3": "3. szövegbuborék (keret nélkül)",
"DE.Controllers.Main.txtShape_callout1": "Jelmagyarázat az 1. sorral (keret nélkül)",
"DE.Controllers.Main.txtShape_callout2": "Jelmagyarázat a 2. sorral (keret nélkül)",
"DE.Controllers.Main.txtShape_callout3": "Jelmagyarázat a 3. sorral (keret nélkül)",
"DE.Controllers.Main.txtShape_can": "Henger",
"DE.Controllers.Main.txtShape_chevron": "Szarufa",
"DE.Controllers.Main.txtShape_chord": "Akkord",
@ -984,7 +989,7 @@
"DE.Controllers.Main.txtShape_leftRightArrowCallout": "Jelmagyarázat jobbra-balra",
"DE.Controllers.Main.txtShape_leftRightUpArrow": "Jobbra-balra-felfele nyíl",
"DE.Controllers.Main.txtShape_leftUpArrow": "Balra felfele nyíl",
"DE.Controllers.Main.txtShape_lightningBolt": "Villámlás",
"DE.Controllers.Main.txtShape_lightningBolt": "Villámcsapás",
"DE.Controllers.Main.txtShape_line": "Vonal",
"DE.Controllers.Main.txtShape_lineWithArrow": "Nyíl",
"DE.Controllers.Main.txtShape_lineWithTwoArrows": "Dupla nyíl",
@ -1063,7 +1068,7 @@
"DE.Controllers.Main.txtStyle_Heading_7": "Címsor 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Címsor 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Címsor 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Erőteljes idézet",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Kiválasztott idézet",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Lista bekezdés",
"DE.Controllers.Main.txtStyle_No_Spacing": "Nincs térköz",
"DE.Controllers.Main.txtStyle_Normal": "Normál",
@ -1104,6 +1109,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.",
"DE.Controllers.Navigation.txtBeginning": "Dokumentum eleje",
"DE.Controllers.Navigation.txtGotoBeginning": "Ugorj a dokumentum elejére",
"DE.Controllers.Print.textMarginsLast": "Legutóbbi egyéni beállítás",
"DE.Controllers.Print.txtCustom": "Egyedi",
"DE.Controllers.Print.txtPrintRangeInvalid": "Érvénytelen nyomtatási terület",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Adjon meg egy oldalszámot vagy az oldalak tartományát (például 5-12). Vagy PDF-be nyomtathat.",
"DE.Controllers.Search.notcriticalErrorTitle": "Figyelmeztetés",
"DE.Controllers.Search.textNoTextFound": "A keresett adatot nem sikerült megtalálni. Kérjük, módosítsa a keresési beállításokat.",
"DE.Controllers.Search.textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.",
@ -1160,7 +1169,7 @@
"DE.Controllers.Toolbar.txtAccent_Grave": "Grave",
"DE.Controllers.Toolbar.txtAccent_GroupBot": "Alsó karakterek csoportosítása",
"DE.Controllers.Toolbar.txtAccent_GroupTop": "Fenti karakterek csoportosítása",
"DE.Controllers.Toolbar.txtAccent_HarpoonL": "Leftwards harpoon above",
"DE.Controllers.Toolbar.txtAccent_HarpoonL": "Felső szigony balra",
"DE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards harpoon above",
"DE.Controllers.Toolbar.txtAccent_Hat": "Tető",
"DE.Controllers.Toolbar.txtAccent_Smile": "Bréve",
@ -1337,7 +1346,7 @@
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 egység-mátrix",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Jobbra-balra nyíl lent",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Jobbra-balra nyíl fent",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Balra mutató nyíl lent",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Balra nyíl alul",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Balra mutató nyíl fent",
"DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Jobbra nyíl lent",
"DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Jobbra nyíl fent",
@ -1348,7 +1357,7 @@
"DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta egyenlő",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Jobbra-balra nyíl lent",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Jobbra-balra nyíl fent",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Balra mutató nyíl lent",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Balra nyíl alul",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Balra mutató nyíl fent",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Jobbra nyíl lent",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Jobbra nyíl fent",
@ -1368,7 +1377,7 @@
"DE.Controllers.Toolbar.txtScriptCustom_4": "Script",
"DE.Controllers.Toolbar.txtScriptSub": "Alsó index",
"DE.Controllers.Toolbar.txtScriptSubSup": "Alsó-felső index",
"DE.Controllers.Toolbar.txtScriptSubSupLeft": "Bal alsó-felső index",
"DE.Controllers.Toolbar.txtScriptSubSupLeft": "Bal oldali-felső index",
"DE.Controllers.Toolbar.txtScriptSup": "Felső index",
"DE.Controllers.Toolbar.txtSymbol_about": "Körülbelül",
"DE.Controllers.Toolbar.txtSymbol_additional": "Kiegészítés",
@ -1407,7 +1416,7 @@
"DE.Controllers.Toolbar.txtSymbol_in": "Eleme",
"DE.Controllers.Toolbar.txtSymbol_inc": "Növekmény",
"DE.Controllers.Toolbar.txtSymbol_infinity": "Végtelenség",
"DE.Controllers.Toolbar.txtSymbol_iota": "ta",
"DE.Controllers.Toolbar.txtSymbol_iota": "lota",
"DE.Controllers.Toolbar.txtSymbol_kappa": "Kappa",
"DE.Controllers.Toolbar.txtSymbol_lambda": "Lambda",
"DE.Controllers.Toolbar.txtSymbol_leftarrow": "Balra nyíl",
@ -1727,7 +1736,7 @@
"DE.Views.DocumentHolder.textFromFile": "Fájlból",
"DE.Views.DocumentHolder.textFromStorage": "Tárolóból",
"DE.Views.DocumentHolder.textFromUrl": "URL-ből",
"DE.Views.DocumentHolder.textJoinList": "Számozás, felsorolás folytatása",
"DE.Views.DocumentHolder.textJoinList": "Csatlakozás az előző listához",
"DE.Views.DocumentHolder.textLeft": "Cellák balra tolása",
"DE.Views.DocumentHolder.textNest": "Táblázat beágyazása",
"DE.Views.DocumentHolder.textNextPage": "Következő oldal",
@ -1826,8 +1835,8 @@
"DE.Views.DocumentHolder.txtInsertEqBefore": "Egyenlet beszúrása elötte",
"DE.Views.DocumentHolder.txtKeepTextOnly": "Csak szöveg megtartása",
"DE.Views.DocumentHolder.txtLimitChange": "Helylimitek módosítása",
"DE.Views.DocumentHolder.txtLimitOver": "Szöveg fölötti limit",
"DE.Views.DocumentHolder.txtLimitUnder": "Szöveg alatti limit",
"DE.Views.DocumentHolder.txtLimitOver": "Szöveg fölötti limitáció",
"DE.Views.DocumentHolder.txtLimitUnder": "Szöveg alatti limitáció",
"DE.Views.DocumentHolder.txtMatchBrackets": "Zárójelek és argumentum egyenlő magasságú",
"DE.Views.DocumentHolder.txtMatrixAlign": "Mátrix elrendezés",
"DE.Views.DocumentHolder.txtOverbar": "Sáv a szöveg fölött",
@ -1953,10 +1962,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Verzió",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Hely",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Jogosult személyek",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Szimbólumlomok szóközökkel",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Karakterek szóközökkel",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statisztika",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Tárgy",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Szimbólumok",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Karakterek",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Címkék",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Cím",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Feltöltve",
@ -2022,6 +2031,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Semmit nem mutat",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Korrigálás",
"DE.Views.FileMenuPanels.Settings.txtPt": "Pont",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "A gyorsnyomtatás gomb megjelenítése a szerkesztő fejlécében",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "A dokumentum az utoljára kiválasztott vagy alapértelmezett nyomtatón kerül kinyomtatásra.",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Összes engedélyezése",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Minden értesítés nélküli makró engedélyezése",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Sávváltozások megjelenítése",
@ -2278,7 +2289,7 @@
"DE.Views.LeftMenu.tipTitles": "Címek",
"DE.Views.LeftMenu.txtDeveloper": "FEJLESZTŐI MÓD",
"DE.Views.LeftMenu.txtEditor": "Dokumentumszerkesztő",
"DE.Views.LeftMenu.txtLimit": "Korlátozza a hozzáférést",
"DE.Views.LeftMenu.txtLimit": "Hozzáféréskorlátozás",
"DE.Views.LeftMenu.txtTrial": "PRÓBA MÓD",
"DE.Views.LeftMenu.txtTrialDev": "Próba fejlesztői mód",
"DE.Views.LineNumbersDialog.textAddLineNumbering": "Sorszámozás hozzáadása",
@ -2503,7 +2514,7 @@
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Elötte",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speciális",
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Sorok egyben tartása",
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Következővel együtt tartás",
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Tovább a következővel",
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Belső margók",
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Árva sor",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Betűtípus",
@ -2542,7 +2553,7 @@
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Függő",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Történeti",
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Történelmi és mérlegelési",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Sorkizárt",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Jogos",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Vezető",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Bal",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Szint",
@ -2579,6 +2590,33 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Csak felső szegély beállítása",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek",
"DE.Views.PrintWithPreview.textMarginsLast": "Legutóbbi egyéni beállítás",
"DE.Views.PrintWithPreview.textMarginsModerate": "Mérsékelt",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Keskeny",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normál",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "Normál (USA)",
"DE.Views.PrintWithPreview.textMarginsWide": "Széles",
"DE.Views.PrintWithPreview.txtAllPages": "Minden oldal",
"DE.Views.PrintWithPreview.txtBottom": "Alul",
"DE.Views.PrintWithPreview.txtCurrentPage": "Aktuális oldal",
"DE.Views.PrintWithPreview.txtCustom": "Egyedi",
"DE.Views.PrintWithPreview.txtCustomPages": "Egyedi nyomtatás",
"DE.Views.PrintWithPreview.txtLandscape": "Fekvő",
"DE.Views.PrintWithPreview.txtLeft": "Bal",
"DE.Views.PrintWithPreview.txtMargins": "Margók",
"DE.Views.PrintWithPreview.txtOf": "-ból/ből {0}",
"DE.Views.PrintWithPreview.txtPage": "Oldal",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Hibás oldalszám",
"DE.Views.PrintWithPreview.txtPageOrientation": "Lap elrendezés",
"DE.Views.PrintWithPreview.txtPages": "Oldalak",
"DE.Views.PrintWithPreview.txtPageSize": "Oldal méret",
"DE.Views.PrintWithPreview.txtPortrait": "Álló",
"DE.Views.PrintWithPreview.txtPrint": "Nyomtatás",
"DE.Views.PrintWithPreview.txtPrintPdf": "Nyomtatás PDF-be",
"DE.Views.PrintWithPreview.txtPrintRange": "Nyomtatási tartomány",
"DE.Views.PrintWithPreview.txtRight": "Jobb",
"DE.Views.PrintWithPreview.txtSelection": "Választás",
"DE.Views.PrintWithPreview.txtTop": "Felső",
"DE.Views.ProtectDialog.textComments": "Megjegyzések",
"DE.Views.ProtectDialog.textForms": "Nyomtatványok kitöltése",
"DE.Views.ProtectDialog.textReview": "Követett változások",
@ -2997,10 +3035,10 @@
"DE.Views.Toolbar.textInsSectionBreak": "Szakasztörés beszúrása",
"DE.Views.Toolbar.textInText": "Szövegben",
"DE.Views.Toolbar.textItalic": "Dőlt",
"DE.Views.Toolbar.textLandscape": "Tájkép",
"DE.Views.Toolbar.textLandscape": "Fekvő",
"DE.Views.Toolbar.textLeft": "Bal:",
"DE.Views.Toolbar.textListSettings": "Lista beállítások",
"DE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások",
"DE.Views.Toolbar.textMarginsLast": "Legutóbbi egyéni beállítás",
"DE.Views.Toolbar.textMarginsModerate": "Mérsékelt",
"DE.Views.Toolbar.textMarginsNarrow": "Keskeny",
"DE.Views.Toolbar.textMarginsNormal": "Normál",
@ -3046,7 +3084,7 @@
"DE.Views.Toolbar.textTop": "Felső:",
"DE.Views.Toolbar.textUnderline": "Aláhúzott",
"DE.Views.Toolbar.tipAlignCenter": "Középre rendez",
"DE.Views.Toolbar.tipAlignJust": "Sorkizárt",
"DE.Views.Toolbar.tipAlignJust": "Igazított",
"DE.Views.Toolbar.tipAlignLeft": "Balra rendez",
"DE.Views.Toolbar.tipAlignRight": "Jobbra rendez",
"DE.Views.Toolbar.tipBack": "Vissza",

View file

@ -285,6 +285,8 @@
"Common.define.smartArt.textVerticalPictureList": "Ուղղաձիգ նկարի ցուցակ",
"Common.define.smartArt.textVerticalProcess": "Ուղղաձիգ ընթացք",
"Common.Translation.textMoreButton": "Ավել",
"Common.Translation.tipFileLocked": "Փաստաթուղթը կողպված է խմբագրման համար:Դուք կարող եք փոփոխություններ կատարել և հետագայում պահպանել այն որպես տեղական պատճեն:",
"Common.Translation.tipFileReadOnly": "Փաստաթուղթը միայն կարդալու է և կողպված է խմբագրման համար:ուք կարող եք փոփոխություններ կատարել ևպահպանել դրա տեղային պատճենն ավելի ուշ :",
"Common.Translation.warnFileLocked": "Դուք չեք կարող խմբագրել այս ֆայլը, քանի որ այն խմբագրվում է մեկ այլ հավելվածում:",
"Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն",
"Common.Translation.warnFileLockedBtnView": "Բացել դիտման համար",
@ -458,6 +460,7 @@
"Common.Views.Header.textCompactView": "Թաքցնել գործիքագոտին",
"Common.Views.Header.textHideLines": "Թաքցնել քանոնները",
"Common.Views.Header.textHideStatusBar": "Թաքցնել վիճակագոտին",
"Common.Views.Header.textReadOnly": "Միայն կարդալու",
"Common.Views.Header.textRemoveFavorite": "Ջնջել ընտրված ցուցակից",
"Common.Views.Header.textShare": "Տարածել",
"Common.Views.Header.textZoom": "Խոշորացնել",
@ -465,6 +468,7 @@
"Common.Views.Header.tipDownload": "Ներբեռնել ֆայլը",
"Common.Views.Header.tipGoEdit": "Խմբագրել ընթացիկ ֆայլը",
"Common.Views.Header.tipPrint": "Տպել ֆայլը",
"Common.Views.Header.tipPrintQuick": "Արագ տպում",
"Common.Views.Header.tipRedo": "Վերարկել",
"Common.Views.Header.tipSave": "Պահպանել",
"Common.Views.Header.tipSearch": "Որոնել",
@ -612,6 +616,7 @@
"Common.Views.ReviewPopover.textCancel": "Չեղարկել",
"Common.Views.ReviewPopover.textClose": "Փակել",
"Common.Views.ReviewPopover.textEdit": "Լավ",
"Common.Views.ReviewPopover.textEnterComment": "Այստեղ մուտքագրել Ձեր մեկնաբանությունը",
"Common.Views.ReviewPopover.textFollowMove": "Վերադառնալ սկզբնական վայր",
"Common.Views.ReviewPopover.textMention": "+նշումը թույլ կտա մուտք գործել փաստաթուղթ և ուղարկել էլ․ նամակ",
"Common.Views.ReviewPopover.textMentionNotify": "+նշումը օգտատիրոջը կտեղեկացնի էլ.փոստի միջոցով",
@ -699,6 +704,15 @@
"Common.Views.UserNameDialog.textDontShow": "Այլևս չհարցնել",
"Common.Views.UserNameDialog.textLabel": "Պիտակ։",
"Common.Views.UserNameDialog.textLabelError": "Տվյալների պիտակ չպետք է դատարկ լինի",
"DE.Controllers.DocProtection.txtIsProtectedComment": "Փաստաթուղթը պաշտպանված է։ Դուք կարող եք միայն մեկնաբանություններ զետեղել այս փաստաթղթում:",
"DE.Controllers.DocProtection.txtIsProtectedForms": "Փաստաթուղթը պաշտպանված է։ Այս փաստաթղթում կարող եք լրացնել միայն ձևերը:",
"DE.Controllers.DocProtection.txtIsProtectedTrack": "Փաստաթուղթը պաշտպանված է։ Դուք կարող եք խմբագրել այս փաստաթուղթը, բայց բոլոր փոփոխությունները կհետևվեն:",
"DE.Controllers.DocProtection.txtIsProtectedView": "Փաստաթուղթը պաշտպանված է։ Դուք միայն կարող եք դիտել այս փաստաթուղթը:",
"DE.Controllers.DocProtection.txtWasProtectedComment": "Փաստաթուղթը պաշտպանված է մեկ այլ օգտվողի կողմից: Դուք կարող եք միայն մեկնաբանություններ զետեղել այս փաստաթղթում:",
"DE.Controllers.DocProtection.txtWasProtectedForms": "Փաստաթուղթը պաշտպանված է մեկ այլ օգտվողի կողմից: Դուք կարող եք միայն լրացնել ձևեր այս փաստաթղթում:",
"DE.Controllers.DocProtection.txtWasProtectedTrack": "Փաստաթուղթը պաշտպանված է մեկ այլ օգտատիրոջ կողմից: Դուք կարող եք խմբագրել այս փաստաթուղթը, բայց բոլոր փոփոխությունները կհետևվեն:",
"DE.Controllers.DocProtection.txtWasProtectedView": "Փաստաթուղթը պաշտպանված է մեկ այլ օգտվողի կողմից: Դուք կարող եք դիտել միայն այս փաստաթուղթը:",
"DE.Controllers.DocProtection.txtWasUnprotected": "Փաստաթուղթն անպաշտպան է:",
"DE.Controllers.LeftMenu.leavePageText": "Բոլոր չպահպանված փոփոխումներն այս փաստաթղթում կկորչեն։<br>Դրանք պահպանելու համար սեղմեք «Չեղարկել», ապա «Պահպանել»։ Չպահպանված փոփոխումներն անտեսելու համար սեղմեք «Լավ»։",
"DE.Controllers.LeftMenu.newDocumentTitle": "Անանուն փաստաթուղթ",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Զգուշացում",
@ -726,6 +740,7 @@
"DE.Controllers.Main.downloadTitleText": "Փաստաթղթի ներբեռնում",
"DE.Controllers.Main.errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի իրավունքը չունեք։<br>Դիմեք փաստաթղթերի ձեր սպասարկիչի վարիչին։",
"DE.Controllers.Main.errorBadImageUrl": "Նկարի URL-ը սխալ է",
"DE.Controllers.Main.errorCannotPasteImg": "Մենք չենք կարող տեղադրել այս պատկերը Սեղմատախտակից, բայց դուք կարող եք պահել այն ձեր սարքում և տեղադրել այնտեղից, կամ կարող եք պատճենել պատկերն առանց տեքստի և տեղադրել այն փաստաթղթում:",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Սպասարկիչի հետ կապն ընդհատվել է։ Փաստաթուղթն այս պահին չի կարող խմբագրվել։",
"DE.Controllers.Main.errorComboSeries": "Համակցված աղյուսակ ստեղծելու համար ընտրել տվյալների առնվազն երկու շարք:",
"DE.Controllers.Main.errorCompare": "Համեմատել փաստաթղթերի գործառույթը հնարավոր չէ համատեղ խմբագրելիս:",
@ -829,6 +844,7 @@
"DE.Controllers.Main.textRequestMacros": "Մակրոն հարցում է անում URL-ին: Ցանկանու՞մ եք թույլ տալ հարցումը %1-ին:",
"DE.Controllers.Main.textShape": "Պատկեր",
"DE.Controllers.Main.textStrict": "Խիստ աշխատակարգ",
"DE.Controllers.Main.textTryQuickPrint": "Դուք ընտրել եք Արագ տպում` ամբողջ փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա:<br> Ցանկանու՞մ եք շարունակել։",
"DE.Controllers.Main.textTryUndoRedo": "Համախմբագրման արագ աշխատակարգում հետարկումն ու վերարկումն անջատված են։<br>«Խիստ աշխատակարգ»-ի սեղմումով անցեք համախմբագրման խիստ աշխատակարգին, որպեսզի նիշքը խմբագրեք առանց այլ օգտատերերի միջամտության և փոփոխումներն ուղարկեք միայն դրանք պահպանելուց հետո։ Կարող եք համախմբագրման աշխատակարգերը փոխել լրացուցիչ կարգավորումների միջոցով։",
"DE.Controllers.Main.textTryUndoRedoWarn": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:",
"DE.Controllers.Main.textUndo": "Հետարկել",
@ -1102,6 +1118,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Ձեզ թույլ չի տրվում խմբագրել այս ֆայլը։",
"DE.Controllers.Navigation.txtBeginning": "Փաստաթղթի սկիզբ",
"DE.Controllers.Navigation.txtGotoBeginning": "Գնալ փաստաթղթի սկիզբ",
"DE.Controllers.Print.textMarginsLast": "Վերջին օգտագործումը",
"DE.Controllers.Print.txtCustom": "Հարմարեցված",
"DE.Controllers.Print.txtPrintRangeInvalid": "Տպման անվավեր տիրույթ",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Մուտքագրեք կա՛մ մեկ էջի համար, կա՛մ մեկ էջի տիրույթ (օրինակ՝ 5-12): Կամ կարող եք տպել PDF-ով:",
"DE.Controllers.Search.notcriticalErrorTitle": "Զգուշացում",
"DE.Controllers.Search.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:",
"DE.Controllers.Search.textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:",
@ -1622,6 +1642,7 @@
"DE.Views.DocProtection.txtDocProtectedView": "Փաստաթուղթը պաշտպանված է:<br>Դուք կարող եք դիտել միայն այս փաստաթուղթը:",
"DE.Views.DocProtection.txtDocUnlockDescription": "Փաստաթուղթը չպաշտպանելու համար մուտքագրեք գաղտնաբառ։",
"DE.Views.DocProtection.txtProtectDoc": "Պաշտպանել փաստաթուղթը",
"DE.Views.DocProtection.txtUnlockTitle": "Պաշտպանազերծել փաստաթուղթը",
"DE.Views.DocumentHolder.aboveText": "Վերև",
"DE.Views.DocumentHolder.addCommentText": "Ավելացնել մեկնաբանություն",
"DE.Views.DocumentHolder.advancedDropCapText": "Սկզբնատառի կարգավորումներ",
@ -2020,6 +2041,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Ոչ մեկ չդիտել",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Ստուգում ",
"DE.Views.FileMenuPanels.Settings.txtPt": "Կետ",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Ցուցադրել «Արագ տպել» կոճակը խմբագրի վերնագրում",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Միացնել բոլորը",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Առանց ծանուցման միացնել բոլոր մակրոները",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Ցույց տալ հետագծի փոփոխությունները",
@ -2034,6 +2057,7 @@
"DE.Views.FileMenuPanels.Settings.txtWin": "ինչպես Windows-ում",
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Աշխատատարածք",
"DE.Views.FormSettings.textAlways": "Միշտ",
"DE.Views.FormSettings.textAnyone": "Յուրաքանչյուրը",
"DE.Views.FormSettings.textAspect": "Պահպանեք համամասնությունները",
"DE.Views.FormSettings.textAtLeast": "առնվազն",
"DE.Views.FormSettings.textAuto": "Ավտոմատ",
@ -2045,12 +2069,16 @@
"DE.Views.FormSettings.textCombobox": "Համակցված տուփ",
"DE.Views.FormSettings.textComplex": "Համալիր դաշտ",
"DE.Views.FormSettings.textConnected": "Դաշտերը միացված են",
"DE.Views.FormSettings.textCreditCard": "Վարկային քարտի համար (օր.՝ 4111-1111-1111-1111)",
"DE.Views.FormSettings.textDateField": "Ամսաթիվ/Ժամ դաշտ",
"DE.Views.FormSettings.textDateFormat": "Ցուցադրել ամիս-ամսաթիվն այսպես՝",
"DE.Views.FormSettings.textDelete": "Ջնջել",
"DE.Views.FormSettings.textDigits": "Թվանիշեր",
"DE.Views.FormSettings.textDisconnect": "Անջատել",
"DE.Views.FormSettings.textDropDown": "Բացվող",
"DE.Views.FormSettings.textExact": "ճշգրիտ",
"DE.Views.FormSettings.textField": "Տեքստի դաշտ",
"DE.Views.FormSettings.textFillRoles": "Ո՞վ պետք է լրացնի սա:",
"DE.Views.FormSettings.textFixed": "ֆիքսված չափի դաշտ",
"DE.Views.FormSettings.textFormat": "Ձևաչափ",
"DE.Views.FormSettings.textFormatSymbols": "Թույլատրված նշաններ",
@ -2060,6 +2088,7 @@
"DE.Views.FormSettings.textGroupKey": "Խմբի բանալի",
"DE.Views.FormSettings.textImage": "Նկար",
"DE.Views.FormSettings.textKey": "Բանալի ",
"DE.Views.FormSettings.textLang": "Լեզու",
"DE.Views.FormSettings.textLetters": "Նամակներ",
"DE.Views.FormSettings.textLock": "Արգելափակել ",
"DE.Views.FormSettings.textMask": "Կամայական դիմակ",
@ -2068,6 +2097,8 @@
"DE.Views.FormSettings.textNever": "Երբեք",
"DE.Views.FormSettings.textNoBorder": "Առանց եզրագծի",
"DE.Views.FormSettings.textNone": "Ոչ մեկը",
"DE.Views.FormSettings.textPhone1": "Հեռախոսահամար (օր՝ (123) 456-7890)",
"DE.Views.FormSettings.textPhone2": "Հեռախոսահամար (օր՝+447911123456)",
"DE.Views.FormSettings.textPlaceholder": "Տեղապահ ",
"DE.Views.FormSettings.textRadiobox": "Ընտրանքի կոճակ ",
"DE.Views.FormSettings.textReg": "Կանոնավոր արտահայտություն",
@ -2082,9 +2113,12 @@
"DE.Views.FormSettings.textTipUp": "Շարժվել վերև",
"DE.Views.FormSettings.textTooBig": "Նկարը չափազանց մեծ է",
"DE.Views.FormSettings.textTooSmall": "Նկարը չափազանց փոքր է",
"DE.Views.FormSettings.textUKPassport": "Մեծ Բրիտանիայի Անձնագրի համարը (օր՝925665416)",
"DE.Views.FormSettings.textUnlock": "Ապակողպել",
"DE.Views.FormSettings.textUSSSN": "ԱՄՆ SSN (օր՝ 123-45-6789)",
"DE.Views.FormSettings.textValue": "Արժեքի ընտրանքներ",
"DE.Views.FormSettings.textWidth": "Վանդակի լայնությունը",
"DE.Views.FormSettings.textZipCodeUS": "ԱՄՆ Փոստային դասիչ(կոդ) (օր՝ 92663 կամ 92663-1234)",
"DE.Views.FormsTab.capBtnCheckBox": "Ստուգանիշ",
"DE.Views.FormsTab.capBtnComboBox": "Համակցված տուփ",
"DE.Views.FormsTab.capBtnComplex": "Համալիր դաշտ",
@ -2100,6 +2134,10 @@
"DE.Views.FormsTab.capBtnSubmit": "Հաստատել",
"DE.Views.FormsTab.capBtnText": "Տեքստի դաշտ",
"DE.Views.FormsTab.capBtnView": "Դիտման ձևը",
"DE.Views.FormsTab.capCreditCard": "Վարկային քարտ",
"DE.Views.FormsTab.capDateTime": "Ամսաթիվ/Ժամ",
"DE.Views.FormsTab.capZipCode": "Փոստային դասիչ(կոդ)",
"DE.Views.FormsTab.textAnyone": "Յուրաքանչյուրը",
"DE.Views.FormsTab.textClear": "Մաքրել դաշտերը",
"DE.Views.FormsTab.textClearFields": "Մաքրել բոլոր դաշտերը",
"DE.Views.FormsTab.textCreateForm": "Ավելացնել դաշտեր և ստեղծել լրացվող OFORM փաստաթուղթ:",
@ -2111,10 +2149,14 @@
"DE.Views.FormsTab.tipCheckBox": "Տեղադրել ստուգանիշ ",
"DE.Views.FormsTab.tipComboBox": "Տեղադրել համակցված տուփ ",
"DE.Views.FormsTab.tipComplexField": "Զետեղել բարդ դաշտ",
"DE.Views.FormsTab.tipCreditCard": "Զետեղել վարկային քարտի համարը",
"DE.Views.FormsTab.tipDateTime": "Զետեղել Ամսաթիվ եւ ժամ",
"DE.Views.FormsTab.tipDownloadForm": "Ներբեռնել ֆայլը որպես լրացվող OFORM փաստաթուղթ",
"DE.Views.FormsTab.tipDropDown": "Տեղադրել բացվող ցուցակ",
"DE.Views.FormsTab.tipEmailField": "Զետեղել էլ. հասցե",
"DE.Views.FormsTab.tipFixedText": "Զետեղել ֆիքսված տեքստային դաշտը",
"DE.Views.FormsTab.tipImageField": "Զետեղել նկար",
"DE.Views.FormsTab.tipInlineText": "Զետեղել ներտող տեքստային դաշտ",
"DE.Views.FormsTab.tipNextForm": "Գնալ հաջորդ դաշտ",
"DE.Views.FormsTab.tipPhoneField": "Զետեղել հեռախոսահամար",
"DE.Views.FormsTab.tipPrevForm": "Գնալ նախորդ դաշտ",
@ -2123,6 +2165,11 @@
"DE.Views.FormsTab.tipSubmit": "Ներկայացնել ձևը",
"DE.Views.FormsTab.tipTextField": "Տեղադրեք տեքստային դաշտ",
"DE.Views.FormsTab.tipViewForm": "Դիտման ձևը",
"DE.Views.FormsTab.tipZipCode": "Զետեղել փոստային դասիչը(կոդը)",
"DE.Views.FormsTab.txtFixedDesc": "Զետեղել ֆիքսված տեքստային դաշտը",
"DE.Views.FormsTab.txtFixedText": "Հաստատուն",
"DE.Views.FormsTab.txtInlineDesc": "Զետեղել ներտող տեքստային դաշտ",
"DE.Views.FormsTab.txtInlineText": "Ներտողային",
"DE.Views.FormsTab.txtUntitled": "Անանուն",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Ներքևից կենտրոնով",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Ձախ ներքևից",
@ -2577,12 +2624,40 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Սահմանել միայն վերին եզրագիծը",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Առանց եզրագծերի",
"DE.Views.PrintWithPreview.textMarginsLast": "Վերջին օգտագործումը",
"DE.Views.PrintWithPreview.textMarginsModerate": "Չափավոր",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Նեղ",
"DE.Views.PrintWithPreview.textMarginsNormal": "Սովորական",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "ԱՄՆ նորմալ",
"DE.Views.PrintWithPreview.textMarginsWide": "Լայն",
"DE.Views.PrintWithPreview.txtAllPages": "Բոլոր էջեր",
"DE.Views.PrintWithPreview.txtBottom": "Ներքև",
"DE.Views.PrintWithPreview.txtCurrentPage": "Ընթացիկ էջ",
"DE.Views.PrintWithPreview.txtCustom": "Հարմարեցված",
"DE.Views.PrintWithPreview.txtCustomPages": "Հարմարեցված տպագրություն",
"DE.Views.PrintWithPreview.txtLandscape": "Հորիզոնական",
"DE.Views.PrintWithPreview.txtLeft": "Ձախ",
"DE.Views.PrintWithPreview.txtMargins": "Լուսանցքներ",
"DE.Views.PrintWithPreview.txtOf": "{0}-ից",
"DE.Views.PrintWithPreview.txtPage": "Էջ",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Էջի համարն անվավեր է",
"DE.Views.PrintWithPreview.txtPageOrientation": "Էջի կողմնորոշում",
"DE.Views.PrintWithPreview.txtPages": "Էջեր",
"DE.Views.PrintWithPreview.txtPageSize": "Էջի չափ",
"DE.Views.PrintWithPreview.txtPortrait": "Ուղղաձիգ ",
"DE.Views.PrintWithPreview.txtPrint": "Տպել",
"DE.Views.PrintWithPreview.txtPrintPdf": "Տպել PDF-ով",
"DE.Views.PrintWithPreview.txtPrintRange": "Տպման տիրույթ",
"DE.Views.PrintWithPreview.txtRight": "Աջ",
"DE.Views.PrintWithPreview.txtSelection": "Ընտրություն",
"DE.Views.PrintWithPreview.txtTop": "Վերև",
"DE.Views.ProtectDialog.textComments": "Մեկնաբանություններ",
"DE.Views.ProtectDialog.textForms": "Լրացվող ձևեր",
"DE.Views.ProtectDialog.textReview": "Հետագծված փոփոխություններ",
"DE.Views.ProtectDialog.textView": "Փոփոխություններ չկան (Միայն-կարդալու)",
"DE.Views.ProtectDialog.txtAllow": "Թույլատրել միայն այս տեսակի խմբագրումը փաստաթղթում",
"DE.Views.ProtectDialog.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ",
"DE.Views.ProtectDialog.txtLimit": "Գաղտնաբառը սահմանափակված է 15 նիշով",
"DE.Views.ProtectDialog.txtOptional": "ընտրովի",
"DE.Views.ProtectDialog.txtPassword": "Գաղտնաբառ",
"DE.Views.ProtectDialog.txtProtect": "Պաշտպանել",
@ -2599,6 +2674,35 @@
"DE.Views.RightMenu.txtSignatureSettings": "Ստորագրության կարգավորումներ",
"DE.Views.RightMenu.txtTableSettings": "Աղյուսակի կարգավորումներ",
"DE.Views.RightMenu.txtTextArtSettings": "Տեքստարվեստի կարգավորումներ",
"DE.Views.RoleDeleteDlg.textLabel": "Այս դերը ջնջելու համար հարկավոր է դրա հետ կապված դաշտերը տեղափոխել այլ դեր:",
"DE.Views.RoleDeleteDlg.textSelect": "Ընտրել դաշտի միաձուլման դերի համար",
"DE.Views.RoleDeleteDlg.textTitle": "Ջնջել Դերը",
"DE.Views.RoleEditDlg.capBtnManager": "Կառավարել դերերը",
"DE.Views.RoleEditDlg.errNameExists": "Նման անունով դեր արդեն գոյություն ունի։",
"DE.Views.RoleEditDlg.textEmptyError": "Դերի անվանումը չպետք է դատարկ լինի:",
"DE.Views.RoleEditDlg.textName": "Դերի անվանում",
"DE.Views.RoleEditDlg.textNoHighlight": "Առանց գունանշման",
"DE.Views.RoleEditDlg.tipManager": "Կառավարել դերերը",
"DE.Views.RoleEditDlg.txtTitleEdit": "Խմբագրել դերը",
"DE.Views.RoleEditDlg.txtTitleNew": "Ստեղծել նոր դեր",
"DE.Views.RolesManagerDlg.closeButtonText ": "Փակել",
"DE.Views.RolesManagerDlg.textAnyone": "Յուրաքանչյուրը",
"DE.Views.RolesManagerDlg.textDelete": "Ջնջել",
"DE.Views.RolesManagerDlg.textDescription": "Ավելացրեք դերեր և սահմանեք այն հերթականությունը, որով լրացնողներն ընդունում և ստորագրում են փաստաթուղթը",
"DE.Views.RolesManagerDlg.textDown": "Տեղափոխել դերը վար",
"DE.Views.RolesManagerDlg.textEdit": "Խմբագրել",
"DE.Views.RolesManagerDlg.textEmpty": "Դերեր դեռ չեն ստեղծվել։<br> Ստեղծեք առնվազն մեկ դեր և այն կհայտնվի այս դաշտում:",
"DE.Views.RolesManagerDlg.textNew": "Նոր",
"DE.Views.RolesManagerDlg.textUp": "Տեղափոխել դերը վեր",
"DE.Views.RolesManagerDlg.txtTitle": "Կառավարել դերերը",
"DE.Views.RolesManagerDlg.warnCantDelete": "Դուք չեք կարող ջնջել այս դերը, քանի որ այն ունի կապված դաշտեր:",
"DE.Views.RolesManagerDlg.warnDelete": "Համոզվա՞ծ եք, որ ցանկանում եք ջնջել {0} դերը:",
"DE.Views.SaveFormDlg.saveButtonText": "Պահպանել",
"DE.Views.SaveFormDlg.textAnyone": "Յուրաքանչյուրը",
"DE.Views.SaveFormDlg.textDescription": "Oform-ում պահելիս լրացվող ցուցակին ավելացվում են միայն դաշտերով դերեր",
"DE.Views.SaveFormDlg.textEmpty": "Դաշտերի հետ կապված դերեր չկան:",
"DE.Views.SaveFormDlg.textFill": "Լրացման ցուցակ",
"DE.Views.SaveFormDlg.txtTitle": "Պահպանել որպես Ձև",
"DE.Views.ShapeSettings.strBackground": "Խորքի գույն",
"DE.Views.ShapeSettings.strChange": "Փոխել ինքնաձևը",
"DE.Views.ShapeSettings.strColor": "Գույն",
@ -2690,6 +2794,12 @@
"DE.Views.Statusbar.tipZoomIn": "Մեծացնել",
"DE.Views.Statusbar.tipZoomOut": "Փոքրացնել",
"DE.Views.Statusbar.txtPageNumInvalid": "Էջի համարն անվավեր է",
"DE.Views.Statusbar.txtPages": "Էջեր",
"DE.Views.Statusbar.txtParagraphs": "Պարբերություններ",
"DE.Views.Statusbar.txtSpaces": "Նշաններ բացատներով",
"DE.Views.Statusbar.txtSymbols": "Նշաններ",
"DE.Views.Statusbar.txtWordCount": "Բառահաշվարկ",
"DE.Views.Statusbar.txtWords": "Բառեր",
"DE.Views.StyleTitleDialog.textHeader": "Ստեղծել նոր ոճ",
"DE.Views.StyleTitleDialog.textNextStyle": "Հաջորդ պարբերության ոճը",
"DE.Views.StyleTitleDialog.textTitle": "Վերնագիր",
@ -3113,6 +3223,7 @@
"DE.Views.Toolbar.tipPaste": "Փակցնել",
"DE.Views.Toolbar.tipPrColor": "Պարբերության ֆոնի գույնը",
"DE.Views.Toolbar.tipPrint": "Տպել",
"DE.Views.Toolbar.tipPrintQuick": "Արագ տպում",
"DE.Views.Toolbar.tipRedo": "Վերարկել",
"DE.Views.Toolbar.tipSave": "Պահպանել",
"DE.Views.Toolbar.tipSaveCoauth": "Պահպանեք բոլոր փոփոխումները, որպեսզի այլ օգտատերեր տեսնեն դրանք։",

View file

@ -285,6 +285,8 @@
"Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal",
"Common.define.smartArt.textVerticalProcess": "Proses Vertikal",
"Common.Translation.textMoreButton": "Lainnya",
"Common.Translation.tipFileLocked": "Dokumen terkunci untuk diedit. Anda dapat membuat perubahan dan menyimpannya sebagai salinan lokal nanti.",
"Common.Translation.tipFileReadOnly": "Dokumen hanya dapat dibaca. Untuk menyimpan perubahan Anda, simpan file dengan nama baru atau di tempat lain.",
"Common.Translation.warnFileLocked": "Anda tidak bisa edit file ini karena sedang di edit di aplikasi lain.",
"Common.Translation.warnFileLockedBtnEdit": "Buat salinan",
"Common.Translation.warnFileLockedBtnView": "Buka untuk dilihat",
@ -458,6 +460,7 @@
"Common.Views.Header.textCompactView": "Sembunyikan Toolbar",
"Common.Views.Header.textHideLines": "Sembunyikan Mistar",
"Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status",
"Common.Views.Header.textReadOnly": "Hanya baca",
"Common.Views.Header.textRemoveFavorite": "Hilangkan dari Favorit",
"Common.Views.Header.textShare": "Bagikan",
"Common.Views.Header.textZoom": "Pembesaran",
@ -465,6 +468,7 @@
"Common.Views.Header.tipDownload": "Unduh File",
"Common.Views.Header.tipGoEdit": "Edit file saat ini",
"Common.Views.Header.tipPrint": "Print file",
"Common.Views.Header.tipPrintQuick": "Cetak cepat",
"Common.Views.Header.tipRedo": "Ulangi",
"Common.Views.Header.tipSave": "Simpan",
"Common.Views.Header.tipSearch": "Cari",
@ -612,6 +616,7 @@
"Common.Views.ReviewPopover.textCancel": "Batalkan",
"Common.Views.ReviewPopover.textClose": "Tutup",
"Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textEnterComment": "Tuliskan komentar Anda di sini",
"Common.Views.ReviewPopover.textFollowMove": "Ikuti pergerakan",
"Common.Views.ReviewPopover.textMention": "+mention akan memberikan akses ke dokumen dan mengirimkan email",
"Common.Views.ReviewPopover.textMentionNotify": "+mention akan mengingatkan user lewat email",
@ -726,6 +731,7 @@
"DE.Controllers.Main.downloadTitleText": "Mengunduh Dokumen",
"DE.Controllers.Main.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.<br>Silakan hubungi admin Server Dokumen Anda.",
"DE.Controllers.Main.errorBadImageUrl": "URL Gambar salah",
"DE.Controllers.Main.errorCannotPasteImg": "Kami tak bisa menempel gambar ini dari Papan Klip, tapi Anda dapat menyimpannya\nke perangkat Anda dan menyisipkannya dari sana, atau Anda dapat menyalin gambar\ntanpa teks dan menempelkannya ke dalam dokumen.",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Koneksi server terputus. Saat ini dokumen tidak dapat diedit.",
"DE.Controllers.Main.errorComboSeries": "Untuk membuat grafik kombinasi, pilih setidaknya dua seri data.",
"DE.Controllers.Main.errorCompare": "Fitur Membandingkan Dokumen tidak tersedia saat co-editing. ",
@ -829,6 +835,7 @@
"DE.Controllers.Main.textRequestMacros": "Sebuah makro melakukan permintaan ke URL. Apakah Anda akan mengizinkan permintaan ini ke %1?",
"DE.Controllers.Main.textShape": "Bentuk",
"DE.Controllers.Main.textStrict": "Mode strict",
"DE.Controllers.Main.textTryQuickPrint": "Anda telah memilih Cetak cepat: seluruh dokumen akan dicetak pada printer yang terakhir dipilih atau baku.<br>Apakah Anda hendak melanjutkan?",
"DE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.<br>Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.",
"DE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.",
"DE.Controllers.Main.textUndo": "Batalkan",
@ -1102,6 +1109,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.",
"DE.Controllers.Navigation.txtBeginning": "Awal dokumen",
"DE.Controllers.Navigation.txtGotoBeginning": "Pergi ke awal dokumen",
"DE.Controllers.Print.textMarginsLast": "Ubahan Terakhir",
"DE.Controllers.Print.txtCustom": "Ubahan",
"DE.Controllers.Print.txtPrintRangeInvalid": "Rentang cetak tidak valid",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Masukkan satu nomor halaman atau satu rentang halaman (misalnya, 5-12). Atau Anda bisa Cetak ke PDF.",
"DE.Controllers.Search.notcriticalErrorTitle": "Peringatan",
"DE.Controllers.Search.textNoTextFound": "Data yang Anda cari tidak ditemukan. Silakan atur opsi pencarian Anda.",
"DE.Controllers.Search.textReplaceSkipped": "Penggantian telah dilakukan. {0} kemunculan telah dilewatkan.",
@ -1951,10 +1962,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versi PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbol dengan spasi",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Karakter dengan spasi",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Karakter",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tag",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah",
@ -2020,6 +2031,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Tidak Ada yang Dilihat",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing",
"DE.Views.FileMenuPanels.Settings.txtPt": "Titik",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Tampilkan tombol Cetak Cepat dalam header editor",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Dokumen akan",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktifkan Semua",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktifkan semua macros tanpa notifikasi",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Tampilkan pelacak perubahan",
@ -2219,7 +2232,7 @@
"DE.Views.ImageSettingsAdvanced.textHeight": "Tinggi",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Horisontal",
"DE.Views.ImageSettingsAdvanced.textHorizontally": "Secara Horizontal",
"DE.Views.ImageSettingsAdvanced.textJoinType": "Gabungkan Tipe",
"DE.Views.ImageSettingsAdvanced.textJoinType": "Gabungkan tipe",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporsi Konstan",
"DE.Views.ImageSettingsAdvanced.textLeft": "Kiri",
"DE.Views.ImageSettingsAdvanced.textLeftMargin": "Margin kiri",
@ -2529,8 +2542,8 @@
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Tengah",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi antar karakter",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Kontekstual",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontekstual, Bersejarah, dan",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan diskresioner",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontekstual, historis, dan diskresioner",
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Kontekstual dan bersejarah",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab baku",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Diskresional",
@ -2539,7 +2552,7 @@
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Menggantung",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Bersejarah",
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Bersejarah dan Diskresional",
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historis dan diskresioner",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri",
@ -2556,10 +2569,10 @@
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spasi",
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Standar saja",
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standar dan kontekstual",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standar, Kontekstual, dan Diskresional",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standar, Kontekstual, dan Bersejarah",
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standar dan Diskresional",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standar, Bersejarah, dan Diskresional",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standar, kontekstual, dan diskresional",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standar, kontekstual, dan historis",
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standar dan diskresional",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standar, historis, dan diskresioner",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standar dan bersejarah",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Tengah",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri",
@ -2577,6 +2590,33 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Buat Pembatas Atas Saja",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Tidak ada pembatas",
"DE.Views.PrintWithPreview.textMarginsLast": "Ubahan Terakhir",
"DE.Views.PrintWithPreview.textMarginsModerate": "Moderat",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Sempit",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normal",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal",
"DE.Views.PrintWithPreview.textMarginsWide": "Lebar",
"DE.Views.PrintWithPreview.txtAllPages": "Semua halaman",
"DE.Views.PrintWithPreview.txtBottom": "Bawah",
"DE.Views.PrintWithPreview.txtCurrentPage": "Halaman saat ini",
"DE.Views.PrintWithPreview.txtCustom": "Ubahan",
"DE.Views.PrintWithPreview.txtCustomPages": "Cetak khusus",
"DE.Views.PrintWithPreview.txtLandscape": "Lansekap",
"DE.Views.PrintWithPreview.txtLeft": "Kiri",
"DE.Views.PrintWithPreview.txtMargins": "Margin",
"DE.Views.PrintWithPreview.txtOf": "dari {0}",
"DE.Views.PrintWithPreview.txtPage": "Halaman",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Nomor halaman tidak valid",
"DE.Views.PrintWithPreview.txtPageOrientation": "Orientasi halaman",
"DE.Views.PrintWithPreview.txtPages": "Halaman",
"DE.Views.PrintWithPreview.txtPageSize": "Ukuran halaman",
"DE.Views.PrintWithPreview.txtPortrait": "Potret",
"DE.Views.PrintWithPreview.txtPrint": "Cetak",
"DE.Views.PrintWithPreview.txtPrintPdf": "Cetak ke PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Rentang cetak",
"DE.Views.PrintWithPreview.txtRight": "Kanan",
"DE.Views.PrintWithPreview.txtSelection": "Pilihan",
"DE.Views.PrintWithPreview.txtTop": "Atas",
"DE.Views.ProtectDialog.textComments": "Komentar",
"DE.Views.ProtectDialog.textForms": "Formulir isian",
"DE.Views.ProtectDialog.textReview": "Perubahan terlacak",
@ -3111,7 +3151,7 @@
"DE.Views.Toolbar.tipPageSize": "Ukuran Halaman",
"DE.Views.Toolbar.tipParagraphStyle": "Model Paragraf",
"DE.Views.Toolbar.tipPaste": "Tempel",
"DE.Views.Toolbar.tipPrColor": "Warna Latar Paragraf",
"DE.Views.Toolbar.tipPrColor": "Bayangan",
"DE.Views.Toolbar.tipPrint": "Cetak",
"DE.Views.Toolbar.tipRedo": "Ulangi",
"DE.Views.Toolbar.tipSave": "Simpan",

View file

@ -1767,10 +1767,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versione PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone che hanno diritti",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simboli compresi spazi",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caratteri compresi spazi",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiche",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboli",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caratteri",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichette",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato",

View file

@ -285,6 +285,8 @@
"Common.define.smartArt.textVerticalPictureList": "縦方向画像リスト",
"Common.define.smartArt.textVerticalProcess": "縦方向ステップ",
"Common.Translation.textMoreButton": "もっと",
"Common.Translation.tipFileLocked": "ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。",
"Common.Translation.tipFileReadOnly": "ドキュメントは閲覧用で、編集はロックされています。後で変更し、そのローカルコピーを保存することができます。",
"Common.Translation.warnFileLocked": "このファイルは他のアプリで編集されているので、編集できません。",
"Common.Translation.warnFileLockedBtnEdit": "コピーを作成する",
"Common.Translation.warnFileLockedBtnView": "閲覧するために開く",
@ -458,6 +460,7 @@
"Common.Views.Header.textCompactView": "ツールバーを表示しない",
"Common.Views.Header.textHideLines": "ルーラーを表示しない",
"Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない",
"Common.Views.Header.textReadOnly": "閲覧のみ",
"Common.Views.Header.textRemoveFavorite": "お気に入りから削除",
"Common.Views.Header.textShare": "共有",
"Common.Views.Header.textZoom": "ズーム",
@ -465,6 +468,7 @@
"Common.Views.Header.tipDownload": "ファイルをダウンロード",
"Common.Views.Header.tipGoEdit": "現在のファイルを編集する",
"Common.Views.Header.tipPrint": "ファイルを印刷する",
"Common.Views.Header.tipPrintQuick": "クイックプリント",
"Common.Views.Header.tipRedo": "やり直し",
"Common.Views.Header.tipSave": "保存する",
"Common.Views.Header.tipSearch": "検索",
@ -829,6 +833,7 @@
"DE.Controllers.Main.textRequestMacros": "マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか",
"DE.Controllers.Main.textShape": "図形",
"DE.Controllers.Main.textStrict": "厳格モード",
"DE.Controllers.Main.textTryQuickPrint": "クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。<br>続行しますか?",
"DE.Controllers.Main.textTryUndoRedo": "高速共同編集モードでは、元に戻す/やり直し機能は無効になります。<br>「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。",
"DE.Controllers.Main.textTryUndoRedoWarn": "高速共同編集モードでは、元に戻す/やり直し機能が無効になります。",
"DE.Controllers.Main.textUndo": "元に戻す",
@ -1102,6 +1107,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。",
"DE.Controllers.Navigation.txtBeginning": "文書の先頭",
"DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動する",
"DE.Controllers.Print.textMarginsLast": "最後に適用した設定",
"DE.Controllers.Print.txtCustom": "ユーザー設定",
"DE.Controllers.Print.txtPrintRangeInvalid": "無効な印刷範囲",
"DE.Controllers.Print.txtPrintRangeSingleRange": "ページ番号のみ、またはページ範囲のみを入力してください(例: 5-12。または、PDFに印刷することもできます。",
"DE.Controllers.Search.notcriticalErrorTitle": " 警告",
"DE.Controllers.Search.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。",
"DE.Controllers.Search.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。",
@ -1951,10 +1960,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDFのバージョン",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "場所",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "権利を有する者",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "スペースを含む記号",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "文字数 (スペースを含む)",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "統計",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "件名",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "記号",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "文字数",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "タグ",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "タイトル",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "アップロード済み",
@ -2020,6 +2029,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "表示なし",
"DE.Views.FileMenuPanels.Settings.txtProofing": "校正",
"DE.Views.FileMenuPanels.Settings.txtPt": "ポイント",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "クイックプリントボタンをエディタヘッダーに表示",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "最後に選択した、またはデフォルトのプリンターで印刷されます。",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "全てを有効にする",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "全てのマクロを有効にして、通知しない",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "変更履歴を表示する",
@ -2577,6 +2588,33 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "上罫線だけを設定",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "罫線なし",
"DE.Views.PrintWithPreview.textMarginsLast": "最後に適用した設定",
"DE.Views.PrintWithPreview.textMarginsModerate": "中",
"DE.Views.PrintWithPreview.textMarginsNarrow": "狭い",
"DE.Views.PrintWithPreview.textMarginsNormal": "標準",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "ノーマル(アメリカの標準)",
"DE.Views.PrintWithPreview.textMarginsWide": "広い",
"DE.Views.PrintWithPreview.txtAllPages": "全ページ",
"DE.Views.PrintWithPreview.txtBottom": "下",
"DE.Views.PrintWithPreview.txtCurrentPage": "現在のページ",
"DE.Views.PrintWithPreview.txtCustom": "ユーザー設定",
"DE.Views.PrintWithPreview.txtCustomPages": "カスタム印刷",
"DE.Views.PrintWithPreview.txtLandscape": "横",
"DE.Views.PrintWithPreview.txtLeft": "左",
"DE.Views.PrintWithPreview.txtMargins": "余白",
"DE.Views.PrintWithPreview.txtOf": "{0}から",
"DE.Views.PrintWithPreview.txtPage": "ページ",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "ページ番号が正しくありません。",
"DE.Views.PrintWithPreview.txtPageOrientation": "印刷の向き",
"DE.Views.PrintWithPreview.txtPages": "ページ",
"DE.Views.PrintWithPreview.txtPageSize": "ページのサイズ",
"DE.Views.PrintWithPreview.txtPortrait": "縦",
"DE.Views.PrintWithPreview.txtPrint": "印刷",
"DE.Views.PrintWithPreview.txtPrintPdf": "PDFに印刷",
"DE.Views.PrintWithPreview.txtPrintRange": "印刷範囲\t",
"DE.Views.PrintWithPreview.txtRight": "右",
"DE.Views.PrintWithPreview.txtSelection": "選択",
"DE.Views.PrintWithPreview.txtTop": "上",
"DE.Views.ProtectDialog.textComments": "コメント",
"DE.Views.ProtectDialog.textForms": "フォームの入力",
"DE.Views.ProtectDialog.textReview": "変更履歴",

View file

@ -1054,7 +1054,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Rindkopu",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Vieta",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas kuriem ir tiesības",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbolu ar atstarpiem",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Rakstzīmes ar atstarpiem",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistika",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbolu",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Dokumentu nosaukums",

View file

@ -1733,10 +1733,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF versie",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locatie",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen met rechten",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbolen met spaties",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Tekens met spaties",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistieken",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Onderwerp",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbolen",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Tekens",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Geupload",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Woorden",

View file

@ -942,6 +942,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.",
"DE.Controllers.Navigation.txtBeginning": "Início do documento",
"DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento",
"DE.Controllers.Print.txtCustom": "Personalizado",
"DE.Controllers.Search.notcriticalErrorTitle": "Aviso",
"DE.Controllers.Search.textNoTextFound": "Não foi possível localizar os dados procurados. Ajuste as opções de pesquisa.",
"DE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
@ -1791,10 +1792,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versão PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos com espaços",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Carateres com espaços",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Carateres",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado",
@ -2417,6 +2418,9 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas contorno superior",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem contornos",
"DE.Views.PrintWithPreview.txtAllPages": "Todas as páginas",
"DE.Views.PrintWithPreview.txtCustom": "Personalizado",
"DE.Views.PrintWithPreview.txtLeft": "Esquerda",
"DE.Views.ProtectDialog.textComments": "Comentários",
"DE.Views.ProtectDialog.textForms": "Preenchimento de formulários",
"DE.Views.ProtectDialog.textReview": "Alterações rastreadas",

View file

@ -285,6 +285,8 @@
"Common.define.smartArt.textVerticalPictureList": "Lista de imagens verticais",
"Common.define.smartArt.textVerticalProcess": "Processo Vertical",
"Common.Translation.textMoreButton": "Mais",
"Common.Translation.tipFileLocked": "O documento está bloqueado para edição. Você pode fazer alterações e salvá-lo como cópia local mais tarde.",
"Common.Translation.tipFileReadOnly": "O documento é somente leitura e está bloqueado para edição. Você pode fazer alterações e salvar sua cópia local posteriormente.",
"Common.Translation.warnFileLocked": "Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.",
"Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia",
"Common.Translation.warnFileLockedBtnView": "Aberto para visualização",
@ -458,6 +460,7 @@
"Common.Views.Header.textCompactView": "Ocultar Barra de Ferramentas",
"Common.Views.Header.textHideLines": "Ocultar Réguas",
"Common.Views.Header.textHideStatusBar": "Ocultar Barra de Status",
"Common.Views.Header.textReadOnly": "Somente leitura",
"Common.Views.Header.textRemoveFavorite": "Remover dos Favoritos",
"Common.Views.Header.textShare": "Compartilhar",
"Common.Views.Header.textZoom": "Ampliação",
@ -465,6 +468,7 @@
"Common.Views.Header.tipDownload": "Baixar arquivo",
"Common.Views.Header.tipGoEdit": "Editar arquivo atual",
"Common.Views.Header.tipPrint": "Imprimir arquivo",
"Common.Views.Header.tipPrintQuick": "Impressão rápida",
"Common.Views.Header.tipRedo": "Refazer",
"Common.Views.Header.tipSave": "Gravar",
"Common.Views.Header.tipSearch": "Pesquisar",
@ -700,6 +704,15 @@
"Common.Views.UserNameDialog.textDontShow": "Não perguntar novamente",
"Common.Views.UserNameDialog.textLabel": "Rótulo:",
"Common.Views.UserNameDialog.textLabelError": "O rótulo não pode estar vazio.",
"DE.Controllers.DocProtection.txtIsProtectedComment": "O documento está protegido. Você só pode inserir comentários neste documento.",
"DE.Controllers.DocProtection.txtIsProtectedForms": "O documento está protegido. Você só pode preencher os formulários deste documento.",
"DE.Controllers.DocProtection.txtIsProtectedTrack": "O documento está protegido. Você pode editar este documento, mas todas as alterações serão rastreadas.",
"DE.Controllers.DocProtection.txtIsProtectedView": "O documento está protegido. Você só pode visualizar este documento.",
"DE.Controllers.DocProtection.txtWasProtectedComment": "O documento foi protegido por outro usuário.\nVocê só pode inserir comentários neste documento.",
"DE.Controllers.DocProtection.txtWasProtectedForms": "O documento foi protegido por outro usuário.\nVocê só pode preencher os formulários deste documento.",
"DE.Controllers.DocProtection.txtWasProtectedTrack": "O documento foi protegido por outro usuário.\nVocê pode editar este documento, mas todas as alterações serão rastreadas.",
"DE.Controllers.DocProtection.txtWasProtectedView": "O documento foi protegido por outro usuário.\nVocê só pode visualizar este documento.",
"DE.Controllers.DocProtection.txtWasUnprotected": "O documento foi desprotegido.",
"DE.Controllers.LeftMenu.leavePageText": "Todas as alterações não salvas neste documento serão perdidas.<br> Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Documento sem nome",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso",
@ -831,6 +844,7 @@
"DE.Controllers.Main.textRequestMacros": "Uma macro faz uma solicitação para URL. Deseja permitir a solicitação para %1?",
"DE.Controllers.Main.textShape": "Forma",
"DE.Controllers.Main.textStrict": "Modo estrito",
"DE.Controllers.Main.textTryQuickPrint": "Você selecionou Impressão rápida: todo o documento será impresso na última impressora selecionada ou padrão.<br>Deseja continuar?",
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.<br>Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",",
"DE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido",
"DE.Controllers.Main.textUndo": "Desfazer",
@ -1104,6 +1118,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
"DE.Controllers.Navigation.txtBeginning": "Início do documento",
"DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento",
"DE.Controllers.Print.textMarginsLast": "Últimos personalizados",
"DE.Controllers.Print.txtCustom": "Personalizado",
"DE.Controllers.Print.txtPrintRangeInvalid": "Intervalo de impressão inválido",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Digite um único número de página ou um único intervalo de páginas (por exemplo, 5-12). Ou você pode imprimir em PDF.",
"DE.Controllers.Search.notcriticalErrorTitle": "Aviso",
"DE.Controllers.Search.textNoTextFound": "Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.",
"DE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.",
@ -2022,6 +2040,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Visualizar nenhum",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Revisão",
"DE.Views.FileMenuPanels.Settings.txtPt": "Ponto",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Mostrar o botão Impressão rápida no cabeçalho do editor",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "O documento será impresso na última impressora selecionada ou padrão",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todos",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas as macros sem uma notificação",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrar alterações de faixa",
@ -2036,6 +2056,7 @@
"DE.Views.FileMenuPanels.Settings.txtWin": "como Windows",
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Área de trabalho",
"DE.Views.FormSettings.textAlways": "Sempre",
"DE.Views.FormSettings.textAnyone": "Alguém",
"DE.Views.FormSettings.textAspect": "Bloquear proporção",
"DE.Views.FormSettings.textAtLeast": "Pelo menos",
"DE.Views.FormSettings.textAuto": "Automático",
@ -2047,6 +2068,9 @@
"DE.Views.FormSettings.textCombobox": "Caixa de combinação",
"DE.Views.FormSettings.textComplex": "Campo complexo",
"DE.Views.FormSettings.textConnected": "Campos conectados",
"DE.Views.FormSettings.textCreditCard": "Número do cartão de crédito (por exemplo, 4111-1111-1111-1111)",
"DE.Views.FormSettings.textDateField": "Campo de data e hora",
"DE.Views.FormSettings.textDateFormat": "Mostra a data assim",
"DE.Views.FormSettings.textDelete": "Excluir",
"DE.Views.FormSettings.textDigits": "Dígitos",
"DE.Views.FormSettings.textDisconnect": "Desconectar",
@ -2062,6 +2086,7 @@
"DE.Views.FormSettings.textGroupKey": "Chave de grupo",
"DE.Views.FormSettings.textImage": "Imagem",
"DE.Views.FormSettings.textKey": "Chave",
"DE.Views.FormSettings.textLang": "Idioma",
"DE.Views.FormSettings.textLetters": "Cartas",
"DE.Views.FormSettings.textLock": "Bloquear",
"DE.Views.FormSettings.textMask": "Máscara arbitrária",
@ -2070,6 +2095,8 @@
"DE.Views.FormSettings.textNever": "Nunca",
"DE.Views.FormSettings.textNoBorder": "Sem limite",
"DE.Views.FormSettings.textNone": "Nenhum",
"DE.Views.FormSettings.textPhone1": "Número de telefone (por exemplo, (123) 456-7890)",
"DE.Views.FormSettings.textPhone2": "Número de telefone (por exemplo, +447911123456)",
"DE.Views.FormSettings.textPlaceholder": "Marcador de posição",
"DE.Views.FormSettings.textRadiobox": "Botao de radio",
"DE.Views.FormSettings.textReg": "Expressão regular",
@ -2102,6 +2129,10 @@
"DE.Views.FormsTab.capBtnSubmit": "Enviar",
"DE.Views.FormsTab.capBtnText": "Campo de texto",
"DE.Views.FormsTab.capBtnView": "Ver formulário",
"DE.Views.FormsTab.capCreditCard": "Cartão de crédito",
"DE.Views.FormsTab.capDateTime": "Data e Hora",
"DE.Views.FormsTab.capZipCode": "CEP",
"DE.Views.FormsTab.textAnyone": "Alguém",
"DE.Views.FormsTab.textClear": "Limpar campos.",
"DE.Views.FormsTab.textClearFields": "Limpar todos os campos",
"DE.Views.FormsTab.textCreateForm": "Adicione campos e crie um documento FORM preenchível",
@ -2113,10 +2144,14 @@
"DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção",
"DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação",
"DE.Views.FormsTab.tipComplexField": "Inserir campo complexo",
"DE.Views.FormsTab.tipCreditCard": "Inserir número de cartão de crédito",
"DE.Views.FormsTab.tipDateTime": "Inserir data e hora",
"DE.Views.FormsTab.tipDownloadForm": "Baixar um arquivo como um documento FORM preenchível",
"DE.Views.FormsTab.tipDropDown": "Inserir lista suspensa",
"DE.Views.FormsTab.tipEmailField": "Inserir endereço de e-mail",
"DE.Views.FormsTab.tipFixedText": "Inserir campo de texto fixo",
"DE.Views.FormsTab.tipImageField": "Inserir imagem",
"DE.Views.FormsTab.tipInlineText": "Inserir campo de texto embutido",
"DE.Views.FormsTab.tipNextForm": "Ir para o próximo campo",
"DE.Views.FormsTab.tipPhoneField": "Inserir número de telefone",
"DE.Views.FormsTab.tipPrevForm": "Ir para o campo anterior",
@ -2125,6 +2160,11 @@
"DE.Views.FormsTab.tipSubmit": "Enviar para",
"DE.Views.FormsTab.tipTextField": "Inserir campo de texto",
"DE.Views.FormsTab.tipViewForm": "Ver formulário",
"DE.Views.FormsTab.tipZipCode": "Inserir código postal",
"DE.Views.FormsTab.txtFixedDesc": "Inserir campo de texto fixo",
"DE.Views.FormsTab.txtFixedText": "Fixo",
"DE.Views.FormsTab.txtInlineDesc": "Inserir campo de texto embutido",
"DE.Views.FormsTab.txtInlineText": "Em linha",
"DE.Views.FormsTab.txtUntitled": "Sem título",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Centro inferior",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Esquerda inferior",
@ -2579,12 +2619,40 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas borda superior",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem bordas",
"DE.Views.PrintWithPreview.textMarginsLast": "Últimos personalizados",
"DE.Views.PrintWithPreview.textMarginsModerate": "Moderado",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Estreito",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normal",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal",
"DE.Views.PrintWithPreview.textMarginsWide": "Amplo",
"DE.Views.PrintWithPreview.txtAllPages": "Todas as páginas",
"DE.Views.PrintWithPreview.txtBottom": "Inferior",
"DE.Views.PrintWithPreview.txtCurrentPage": "Pagina atual",
"DE.Views.PrintWithPreview.txtCustom": "Personalizado",
"DE.Views.PrintWithPreview.txtCustomPages": "Impressão personalizada",
"DE.Views.PrintWithPreview.txtLandscape": "Paisagem",
"DE.Views.PrintWithPreview.txtLeft": "Esquerda",
"DE.Views.PrintWithPreview.txtMargins": "Margens",
"DE.Views.PrintWithPreview.txtOf": "de {0}",
"DE.Views.PrintWithPreview.txtPage": "Página",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Número da página inválido",
"DE.Views.PrintWithPreview.txtPageOrientation": "Orientação da página",
"DE.Views.PrintWithPreview.txtPages": "Páginas",
"DE.Views.PrintWithPreview.txtPageSize": "Tamanho da página",
"DE.Views.PrintWithPreview.txtPortrait": "Retrato ",
"DE.Views.PrintWithPreview.txtPrint": "Imprimir",
"DE.Views.PrintWithPreview.txtPrintPdf": "Imprimir em PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Imprimir intervalo",
"DE.Views.PrintWithPreview.txtRight": "Direita",
"DE.Views.PrintWithPreview.txtSelection": "Seleção",
"DE.Views.PrintWithPreview.txtTop": "Parte superior",
"DE.Views.ProtectDialog.textComments": "Comentários",
"DE.Views.ProtectDialog.textForms": "Preenchimento de formulários",
"DE.Views.ProtectDialog.textReview": "Mudanças rastreadas",
"DE.Views.ProtectDialog.textView": "Sem alterações (somente leitura)",
"DE.Views.ProtectDialog.txtAllow": "Permitir apenas este tipo de edição no documento",
"DE.Views.ProtectDialog.txtIncorrectPwd": "A confirmação da senha não é idêntica",
"DE.Views.ProtectDialog.txtLimit": "A senha é limitada a 15 caracteres",
"DE.Views.ProtectDialog.txtOptional": "Opcional",
"DE.Views.ProtectDialog.txtPassword": "Senha",
"DE.Views.ProtectDialog.txtProtect": "Proteger",
@ -2601,6 +2669,27 @@
"DE.Views.RightMenu.txtSignatureSettings": "Configurações de Assinatura",
"DE.Views.RightMenu.txtTableSettings": "Configurações da tabela",
"DE.Views.RightMenu.txtTextArtSettings": "Configurações de Arte de Texto",
"DE.Views.RoleDeleteDlg.textTitle": "Excluir função",
"DE.Views.RoleEditDlg.capBtnManager": "Gerenciar funções",
"DE.Views.RoleEditDlg.textNoHighlight": "Sem destaque",
"DE.Views.RoleEditDlg.tipManager": "Gerenciar funções",
"DE.Views.RoleEditDlg.txtTitleEdit": "Editar papel",
"DE.Views.RoleEditDlg.txtTitleNew": "Criar nova função",
"DE.Views.RolesManagerDlg.closeButtonText ": "Fechar",
"DE.Views.RolesManagerDlg.textAnyone": "Alguém",
"DE.Views.RolesManagerDlg.textDelete": "Excluir",
"DE.Views.RolesManagerDlg.textDescription": "Adicione funções e defina a ordem em que os responsáveis recebem e assinam o documento",
"DE.Views.RolesManagerDlg.textDown": "Mover função para baixo",
"DE.Views.RolesManagerDlg.textEdit": "Editar",
"DE.Views.RolesManagerDlg.textEmpty": "Nenhuma função foi criada ainda.<br>Crie pelo menos uma função e ela aparecerá neste campo.",
"DE.Views.RolesManagerDlg.textNew": "Novo",
"DE.Views.RolesManagerDlg.textUp": "Mover função para cima",
"DE.Views.RolesManagerDlg.txtTitle": "Gerenciar funções",
"DE.Views.RolesManagerDlg.warnCantDelete": "Você não pode excluir esta função porque ela tem campos associados.",
"DE.Views.RolesManagerDlg.warnDelete": "Tem certeza de que deseja excluir a função {0}?",
"DE.Views.SaveFormDlg.saveButtonText": "Salvar",
"DE.Views.SaveFormDlg.textAnyone": "Alguém",
"DE.Views.SaveFormDlg.textFill": "Lista de preenchimento",
"DE.Views.ShapeSettings.strBackground": "Cor do plano de fundo",
"DE.Views.ShapeSettings.strChange": "Alterar forma automática",
"DE.Views.ShapeSettings.strColor": "Cor",
@ -2692,6 +2781,11 @@
"DE.Views.Statusbar.tipZoomIn": "Ampliar",
"DE.Views.Statusbar.tipZoomOut": "Reduzir",
"DE.Views.Statusbar.txtPageNumInvalid": "Número da página inválido",
"DE.Views.Statusbar.txtPages": "Páginas",
"DE.Views.Statusbar.txtParagraphs": "Parágrafos",
"DE.Views.Statusbar.txtSpaces": "Símbolos com espaços",
"DE.Views.Statusbar.txtSymbols": "Símbolos",
"DE.Views.Statusbar.txtWords": "Palavras",
"DE.Views.StyleTitleDialog.textHeader": "Criar Novo Estilo",
"DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style",
"DE.Views.StyleTitleDialog.textTitle": "Title",
@ -3115,6 +3209,7 @@
"DE.Views.Toolbar.tipPaste": "Colar",
"DE.Views.Toolbar.tipPrColor": "Cor do plano de fundo do parágrafo",
"DE.Views.Toolbar.tipPrint": "Imprimir",
"DE.Views.Toolbar.tipPrintQuick": "Impressão rápida",
"DE.Views.Toolbar.tipRedo": "Refazer",
"DE.Views.Toolbar.tipSave": "Salvar",
"DE.Views.Toolbar.tipSaveCoauth": "Salvar suas alterações para que os outros usuários as vejam.",

View file

@ -285,11 +285,13 @@
"Common.define.smartArt.textVerticalPictureList": "Listă verticală imagine",
"Common.define.smartArt.textVerticalProcess": "Proces vertical",
"Common.Translation.textMoreButton": "Mai multe",
"Common.Translation.tipFileLocked": "Acest document este blocat pentru editare. Îl puteți modifica și salva mai târziu ca o copie pe unitatea locală.",
"Common.Translation.tipFileReadOnly": "Documentul este disponibil doar în citire și este blocat pentru editare. Puteți îl modifica și salva mai târziu ca o copie pe unitatea locală.",
"Common.Translation.warnFileLocked": "Nu puteți edita fișierul deoarece el este editat într-o altă aplicație. ",
"Common.Translation.warnFileLockedBtnEdit": "Crează o copie",
"Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea",
"Common.UI.ButtonColored.textAutoColor": "Automat",
"Common.UI.ButtonColored.textNewColor": "Сuloare particularizată",
"Common.UI.ButtonColored.textNewColor": "Adăugați o culoare nouă particularizată",
"Common.UI.Calendar.textApril": "Aprilie",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textDecember": "Decembrie",
@ -458,6 +460,7 @@
"Common.Views.Header.textCompactView": "Ascunde bară de instrumente",
"Common.Views.Header.textHideLines": "Ascundere rigle",
"Common.Views.Header.textHideStatusBar": "Ascundere bară de stare",
"Common.Views.Header.textReadOnly": "Doar în citire",
"Common.Views.Header.textRemoveFavorite": "Eliminare din Preferințe",
"Common.Views.Header.textShare": "Partajează",
"Common.Views.Header.textZoom": "Zoom",
@ -465,6 +468,7 @@
"Common.Views.Header.tipDownload": "Descărcare fișier",
"Common.Views.Header.tipGoEdit": "Editare acest fișier",
"Common.Views.Header.tipPrint": "Se imprimă tot fișierul",
"Common.Views.Header.tipPrintQuick": "Imprimare rapidă",
"Common.Views.Header.tipRedo": "Refacere",
"Common.Views.Header.tipSave": "Salvează",
"Common.Views.Header.tipSearch": "Căutare",
@ -543,9 +547,9 @@
"Common.Views.ReviewChanges.tipAcceptCurrent": "Acceptați această modificare",
"Common.Views.ReviewChanges.tipCoAuthMode": "Activare modul de colaborare",
"Common.Views.ReviewChanges.tipCommentRem": "Ștergere comentarii",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Se șterg aceste comentarii",
"Common.Views.ReviewChanges.tipCommentResolve": "Soluționare comentarii",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "Soluționarea comentariilor curente",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Ștergere comentarii existente",
"Common.Views.ReviewChanges.tipCommentResolve": "Rezolvare comentarii",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "Rezolvare comentarii curente",
"Common.Views.ReviewChanges.tipCompare": "Comparați acest document cu altul",
"Common.Views.ReviewChanges.tipHistory": "Afișare istoricul versiunei",
"Common.Views.ReviewChanges.tipRejectCurrent": "Respinge modificare",
@ -561,16 +565,16 @@
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Închidere",
"Common.Views.ReviewChanges.txtCoAuthMode": "Modul de editare colaborativă",
"Common.Views.ReviewChanges.txtCommentRemAll": "Ștergere comentariu",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Se șterg aceste comentarii",
"Common.Views.ReviewChanges.txtCommentRemMy": "Se șterg comentariile mele",
"Common.Views.ReviewChanges.txtCommentRemAll": "Șterge toate comentariile ",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Ștergere comentarii existente",
"Common.Views.ReviewChanges.txtCommentRemMy": "Șterge comentariile mele",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Se șterg comentariile mele curente",
"Common.Views.ReviewChanges.txtCommentRemove": "Ștergere",
"Common.Views.ReviewChanges.txtCommentResolve": "Rezolvare",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentarii ca soluționate",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Soluționarea comentariilor curente",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Soluționarea comentariilor mele",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Soluționarea comentariilor mele curente",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentariile ca rezolvate",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Rezolvare comentarii curente",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Rezolvarea comentariilor mele",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Rezolvarea comentariilor mele curente",
"Common.Views.ReviewChanges.txtCompare": "Comparare",
"Common.Views.ReviewChanges.txtDocLang": "Limbă",
"Common.Views.ReviewChanges.txtEditing": "Editare",
@ -700,6 +704,15 @@
"Common.Views.UserNameDialog.textDontShow": "Nu mai întreabă",
"Common.Views.UserNameDialog.textLabel": "Etichetă:",
"Common.Views.UserNameDialog.textLabelError": "Etichetă trebuie completată",
"DE.Controllers.DocProtection.txtIsProtectedComment": "Documentul a fost protejat. Aveți posibilitatea numai să-l comentați.",
"DE.Controllers.DocProtection.txtIsProtectedForms": "Documentul a fost protejat. Aveți posibilitatea doar să completați formulare din acest document.",
"DE.Controllers.DocProtection.txtIsProtectedTrack": "Documentul a fost protejat. Aveți posibilitatea să editați acest document, dar toate modificările vor fi urmărite.",
"DE.Controllers.DocProtection.txtIsProtectedView": "Documentul a fost protejat. Puteți doar să vizualizați acest document.",
"DE.Controllers.DocProtection.txtWasProtectedComment": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea numai să-l comentați.",
"DE.Controllers.DocProtection.txtWasProtectedForms": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea doar să completați formulare din acest document.",
"DE.Controllers.DocProtection.txtWasProtectedTrack": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea să editați acest document, dar toate modificările vor fi urmărite.",
"DE.Controllers.DocProtection.txtWasProtectedView": "Documentul a fost protejat de un alt utilizator.\nPuteți doar să vizualizați acest document.",
"DE.Controllers.DocProtection.txtWasUnprotected": "Protecția documentului a fost anulată.",
"DE.Controllers.LeftMenu.leavePageText": "Toate modificările nesalvate din documentul vor fi pierdute.<br> Pentru a le salva, faceți clic pe Revocare și apoi pe Salvare. Apăsați OK dacă doriți să renunțați la modificările nesalvate.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Documentul fără nume",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avertisment",
@ -831,6 +844,7 @@
"DE.Controllers.Main.textRequestMacros": "O macrocomandă trimite o solicitare URL. Doriți să permiteți ca solicitarea să fie trimisă către %1?",
"DE.Controllers.Main.textShape": "Forma",
"DE.Controllers.Main.textStrict": "Modul strict",
"DE.Controllers.Main.textTryQuickPrint": "Dvs v-ați ales opțiunea de Imprimare rapidă: imprimanta este setată se inprime un document întreg este ultima imprimantă utilizată sau imprimantă implicită.<br>Doriți să continuați?",
"DE.Controllers.Main.textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.<br>Faceți clic pe Modul strict ca să comutați la modul Strict de editare colaborativă și să nu intrați în conflict cu alte persoane. Toate modificările vor fi trimise numai după ce le salvați. Ulilizati Setări avansate ale editorului ca să comutați între moduri de editare colaborativă. ",
"DE.Controllers.Main.textTryUndoRedoWarn": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.",
"DE.Controllers.Main.textUndo": "Anulare",
@ -979,7 +993,7 @@
"DE.Controllers.Main.txtShape_leftArrow": "Săgeată la stângă",
"DE.Controllers.Main.txtShape_leftArrowCallout": "Explicație cu săgeta spre stânga",
"DE.Controllers.Main.txtShape_leftBrace": "Acoladă stânga",
"DE.Controllers.Main.txtShape_leftBracket": "Paranteză stânga",
"DE.Controllers.Main.txtShape_leftBracket": "Paranteză stângă",
"DE.Controllers.Main.txtShape_leftRightArrow": "Săgeată stânga-dreapta",
"DE.Controllers.Main.txtShape_leftRightArrowCallout": "Explicație cu săgeata spre stânga-dreapta",
"DE.Controllers.Main.txtShape_leftRightUpArrow": "Săgeată stânga-dreapta-sus",
@ -1052,8 +1066,8 @@
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Explicație în dreptunghi rotunjit",
"DE.Controllers.Main.txtStarsRibbons": "Stele și forme ondulate",
"DE.Controllers.Main.txtStyle_Caption": "Legenda",
"DE.Controllers.Main.txtStyle_endnote_text": "Textul notelei de final ",
"DE.Controllers.Main.txtStyle_footnote_text": "Textul notei de subsol",
"DE.Controllers.Main.txtStyle_endnote_text": "Text notă de final ",
"DE.Controllers.Main.txtStyle_footnote_text": "Text notă de subsol",
"DE.Controllers.Main.txtStyle_Heading_1": "Titlu 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Titlu 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Titlu 3",
@ -1104,6 +1118,10 @@
"DE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.",
"DE.Controllers.Navigation.txtBeginning": "Începutul documentului",
"DE.Controllers.Navigation.txtGotoBeginning": "Salt la începutul documentului",
"DE.Controllers.Print.textMarginsLast": "Ultima setare particularizată",
"DE.Controllers.Print.txtCustom": "Particularizat",
"DE.Controllers.Print.txtPrintRangeInvalid": "Interval de imprimare incorect",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Introduceți un număr de pagină sau un interval de pagini (ex. 5 - 12). Încă mai puteți utiliza opțiunea Imprimare în PDF.",
"DE.Controllers.Search.notcriticalErrorTitle": "Avertisment",
"DE.Controllers.Search.textNoTextFound": "Datele căutate nu au fost găsite. Alegeți alte opțiuni de căutare.",
"DE.Controllers.Search.textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.",
@ -1165,52 +1183,52 @@
"DE.Controllers.Toolbar.txtAccent_Hat": "Pălărie",
"DE.Controllers.Toolbar.txtAccent_Smile": "Breve",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Tildă",
"DE.Controllers.Toolbar.txtBracket_Angle": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze cu separatori",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze cu separatori",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Curve": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Paranteze cu separatori",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Angle": "Paranteze unghiulare",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze unghiulare cu separator",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze unghiulare cu doi separatori",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unghiulară dreaptă",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unghiulară stângă",
"DE.Controllers.Toolbar.txtBracket_Curve": "Acolade",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Acolade cu separator",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Acoladă dreaptă",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Acoladă stângă",
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Sistem (două condiții)",
"DE.Controllers.Toolbar.txtBracket_Custom_2": "Sistem (trei condiții)",
"DE.Controllers.Toolbar.txtBracket_Custom_3": "Stiva de obiecte",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Stiva de obiecte",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Obiect stivă în paranteze",
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Exemplu de sistem",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficient binominal",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficient binominal",
"DE.Controllers.Toolbar.txtBracket_Line": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficientul binomial în paranteze unghiulare",
"DE.Controllers.Toolbar.txtBracket_Line": "Bare verticale",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Bara verticală din dreapta",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Bară verticală din stânga",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Bare verticale duble",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Bara verticală dublă din dreapta",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Bară verticală dublă din stânga",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Paranteză dreaptă inferioară",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză dreaptă inferioară din dreapta",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză dreaptă inferioară din stânga",
"DE.Controllers.Toolbar.txtBracket_Round": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separatori",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Square": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Paranteze",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză unică",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separator",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză dreaptă",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză stângă",
"DE.Controllers.Toolbar.txtBracket_Square": "Paranteze pătrate",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Substituent între două paranteze pătrate din dreapta",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze pătrate inverse",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză pătrată dreaptă",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză pătrată stângă",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Substituent între două paranteze pătrate din stânga",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze pătrate duble",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză pătrată dreaptă dublă",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză pătrată dublă din stânga",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Paranteză dreaptă superioară",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză dreaptă superioară din dreapta",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză dreaptă superioară din stânga",
"DE.Controllers.Toolbar.txtFractionDiagonal": "Fracție oblică",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "Diferențială",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "Diferențială",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "Diferențială",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "Diferențială",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "dx supra dy",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y supra cap delta x",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "y parțial supra x parțial",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "delta y supra delta x",
"DE.Controllers.Toolbar.txtFractionHorizontal": "Fracție liniară",
"DE.Controllers.Toolbar.txtFractionPi_2": "Pi supra 2",
"DE.Controllers.Toolbar.txtFractionSmall": "Fracție mică",
@ -1246,63 +1264,63 @@
"DE.Controllers.Toolbar.txtIntegral_dtheta": "Diferențială de theta",
"DE.Controllers.Toolbar.txtIntegral_dx": "Diferențială de x",
"DE.Controllers.Toolbar.txtIntegral_dy": "Diferențială de y",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală cu limite stivuite",
"DE.Controllers.Toolbar.txtIntegralDouble": "Integrală dublă",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă cu limite stivuite",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă cu limite",
"DE.Controllers.Toolbar.txtIntegralOriented": "Inegrală de contur",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Inegrală de contur",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integrală de contur cu limite stivuite",
"DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integrală de suprafața",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafața",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafața",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Inegrală de contur",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafață cu limite stivuite",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafață cu limite",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integrală de contur cu limite",
"DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integrală de volum",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Integrală",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum cu limite stivuite",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum cu limite",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Integrală cu limite",
"DE.Controllers.Toolbar.txtIntegralTriple": "Integrală triplă",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă cu limite stivuite",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă cu limite",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Și logic",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic cu limită inferioară",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic cu limite",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic cu limită inferioară pentru indice",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic cu limite pentru indice/exponent",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coprodus",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sumă",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produs",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Reuniune",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus cu limită inferioară",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus cu limite",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus cu limită inferioară pentru indice",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus cu limite pentru indice/exponent",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă de k combinări din n luate câte k",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă de la i egal cu zero la n",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Exemplu de sumă folosind doi indici",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Exemplu de produs",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Exemplu de reuniune",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Sau logic",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic cu limită inferioară",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic cu limite",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic cu limită inferioară pentru indice",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic cu limite pentru indice/exponent",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersecție",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție cu limită inferioară",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție cu limite",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție cu limită inferioară pentru indice",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție cu limite pentru indice/exponent",
"DE.Controllers.Toolbar.txtLargeOperator_Prod": "Produs",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs cu limită inferioară",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs cu limite",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs cu limită inferioară pentru indice",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs cu limite pentru indice/exponent",
"DE.Controllers.Toolbar.txtLargeOperator_Sum": "Sumă",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă cu limită inferioară",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă cu limite",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă cu limită inferioară pentru indice",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă cu limite pentru indice/exponent",
"DE.Controllers.Toolbar.txtLargeOperator_Union": "Reuniune",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune cu limită inferioară",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune cu limite",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune cu limită inferioară pentru indice",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune cu limite pentru indice/exponent",
"DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemplu de limită",
"DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemplu de maxim",
"DE.Controllers.Toolbar.txtLimitLog_Lim": "Limită",
@ -1317,10 +1335,10 @@
"DE.Controllers.Toolbar.txtMatrix_1_3": "Matrice goală 1x3",
"DE.Controllers.Toolbar.txtMatrix_2_1": "Matrice goală 2x1 ",
"DE.Controllers.Toolbar.txtMatrix_2_2": "Matrice goală 2x2",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală cu paranteze drepte",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matrice goală cu paranteze drepte",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală cu paranteze drepte",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală cu paranteze drepte",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală de 2x2 între bare verticale duble",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Determinant gol de 2x2",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală de 2x2 între paranteze",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală de 2x2 între paranteze drepte",
"DE.Controllers.Toolbar.txtMatrix_2_3": "Matrice goală 2x3",
"DE.Controllers.Toolbar.txtMatrix_3_1": "Matrice goală 3x1",
"DE.Controllers.Toolbar.txtMatrix_3_2": "Matrice goală 3x2",
@ -1329,11 +1347,11 @@
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Puncte pe linia de mijloc",
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Puncte pe diagonală",
"DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Puncte pe verticală",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rare",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rare",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate 2x2",
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate 3x3",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate 3x3",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rară în paranteze",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rară în paranteze drepte",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate de 2x2 cu zerouri",
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate de 2x2 cu celule goale în afara diagonalei",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate de 3x3 cu zerouri",
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice identitate 3x3",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Săgeată deasupra de la dreapta la stînga",
@ -1346,8 +1364,8 @@
"DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta rezultă",
"DE.Controllers.Toolbar.txtOperator_Definition": "Egal prin definiție",
"DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta egal",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată deasupra de la dreapta la stînga",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dublă dedesubt de la dreapta la stînga",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată dublă deasupra de la dreapta la stînga",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Săgeată dedesupt spre stânga",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Săgeată deasupra spre stânga ",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Săgeată dedesubt spre dreapta",
@ -1356,16 +1374,16 @@
"DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus egal",
"DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus egal",
"DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Măsurat prin",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Partea din dreapta a formulei pătratice",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Rădăcina pătrată din a pătrat plus b pătrat",
"DE.Controllers.Toolbar.txtRadicalRoot_2": "Rădăcina pătrată de ordin",
"DE.Controllers.Toolbar.txtRadicalRoot_3": "Rădăcina cubică",
"DE.Controllers.Toolbar.txtRadicalRoot_n": "Radicalul de ordin",
"DE.Controllers.Toolbar.txtRadicalSqrt": "Rădăcină pătrată",
"DE.Controllers.Toolbar.txtScriptCustom_1": "Scriptul",
"DE.Controllers.Toolbar.txtScriptCustom_2": "Scriptul",
"DE.Controllers.Toolbar.txtScriptCustom_3": "Scriptul",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Scriptul",
"DE.Controllers.Toolbar.txtScriptCustom_1": "x indice y la pătrat",
"DE.Controllers.Toolbar.txtScriptCustom_2": "e la minus i omega t",
"DE.Controllers.Toolbar.txtScriptCustom_3": "x la pătrat",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Y exponent stânga n indice stânga unu",
"DE.Controllers.Toolbar.txtScriptSub": "Indice",
"DE.Controllers.Toolbar.txtScriptSubSup": "Indice-exponenet",
"DE.Controllers.Toolbar.txtScriptSubSupLeft": "Indice-exponent din stânga",
@ -1621,9 +1639,10 @@
"DE.Views.DocProtection.txtDocProtectedComment": "Documentul a fost protejat.<br>Puteți numai să-l comentați.",
"DE.Views.DocProtection.txtDocProtectedForms": "Documentul a fost protejat.<br>Documentul este diponibil numai pentru completarea formularelor.",
"DE.Views.DocProtection.txtDocProtectedTrack": "Documentul a fost protejat.<br>Puteți modifica acest document, dar toate modificările vor fi urmărite.",
"DE.Views.DocProtection.txtDocProtectedView": "Documentul a fost protejat.<br>Documentul este disponibil numai pentru vizualizare..",
"DE.Views.DocProtection.txtDocProtectedView": "Documentul a fost protejat.<br>Documentul este disponibil numai pentru vizualizare.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Introduceți parola pentru anularea protecției documentului",
"DE.Views.DocProtection.txtProtectDoc": "Protejare document",
"DE.Views.DocProtection.txtUnlockTitle": "Deprotejare document",
"DE.Views.DocumentHolder.aboveText": "Deasupra",
"DE.Views.DocumentHolder.addCommentText": "Adaugă comentariu",
"DE.Views.DocumentHolder.advancedDropCapText": "Setări majusculă încorporată",
@ -1720,7 +1739,7 @@
"DE.Views.DocumentHolder.textDistributeRows": "Distribuire rânduri",
"DE.Views.DocumentHolder.textEditControls": "Setări control de conținut",
"DE.Views.DocumentHolder.textEditPoints": "Editare puncte",
"DE.Views.DocumentHolder.textEditWrapBoundary": "Editare bordură la text",
"DE.Views.DocumentHolder.textEditWrapBoundary": "Editare limită de încadrare ",
"DE.Views.DocumentHolder.textFlipH": "Răsturnare orizontală",
"DE.Views.DocumentHolder.textFlipV": "Răsturnare verticală",
"DE.Views.DocumentHolder.textFollow": "Urmărirea mutării",
@ -1953,10 +1972,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versiune a PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locația",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persoane care au dreptul de acces",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simboluri cu spații",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caractere cu spații",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistică",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subiect",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboluri",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caractere",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichete",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titlu",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S-a încărcat",
@ -2022,6 +2041,8 @@
"DE.Views.FileMenuPanels.Settings.txtNone": "Nu vizualiza nimic",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Verificare",
"DE.Views.FileMenuPanels.Settings.txtPt": "Punct",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Afișează butonul Imprimare rapidă în antetul aplicației de editare",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Imprimanta este setată se imprime documentul este ultima imprimantă utilizată sau imprimantă implicită",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Se activează toate",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Se activează toate macrocomenzile, fără notificare",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Afișare urmărire modificări",
@ -2306,10 +2327,10 @@
"DE.Views.Links.capBtnTOF": "Tabel de figuri",
"DE.Views.Links.confirmDeleteFootnotes": "Doriți să ștergeți toate notele de subsol?",
"DE.Views.Links.confirmReplaceTOF": "Doriți să înlocuiți tabelă de figuri selectată?",
"DE.Views.Links.mniConvertNote": "Conversia tuturor notelor",
"DE.Views.Links.mniDelFootnote": "Eliminarea tuturor notelor",
"DE.Views.Links.mniConvertNote": "Efectuați conversia tuturor notelor",
"DE.Views.Links.mniDelFootnote": "Ștergeți toate notele",
"DE.Views.Links.mniInsEndnote": "Inserare notă de final",
"DE.Views.Links.mniInsFootnote": "Inserarea notei de subsol",
"DE.Views.Links.mniInsFootnote": "Inserare notă de subsol",
"DE.Views.Links.mniNoteSettings": "Setări note",
"DE.Views.Links.textContentsRemove": "Eliminare cuprins",
"DE.Views.Links.textContentsSettings": "Setări",
@ -2579,6 +2600,33 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Adăugare numai bordură de sus",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Fără borduri",
"DE.Views.PrintWithPreview.textMarginsLast": "Ultima setare particularizată",
"DE.Views.PrintWithPreview.textMarginsModerate": "Moderat",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Îngust",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normal",
"DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal",
"DE.Views.PrintWithPreview.textMarginsWide": "Lat",
"DE.Views.PrintWithPreview.txtAllPages": "Toate paginile",
"DE.Views.PrintWithPreview.txtBottom": "Jos",
"DE.Views.PrintWithPreview.txtCurrentPage": "Pagina curentă",
"DE.Views.PrintWithPreview.txtCustom": "Particularizat",
"DE.Views.PrintWithPreview.txtCustomPages": "Imprimare particularizată",
"DE.Views.PrintWithPreview.txtLandscape": "Vedere",
"DE.Views.PrintWithPreview.txtLeft": "Stânga",
"DE.Views.PrintWithPreview.txtMargins": "Margini",
"DE.Views.PrintWithPreview.txtOf": "din {0}",
"DE.Views.PrintWithPreview.txtPage": "Pagina",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Număr de pagină nevalid",
"DE.Views.PrintWithPreview.txtPageOrientation": "Orientare pagină",
"DE.Views.PrintWithPreview.txtPages": "Pagini",
"DE.Views.PrintWithPreview.txtPageSize": "Dimensiune pagină",
"DE.Views.PrintWithPreview.txtPortrait": "Portret",
"DE.Views.PrintWithPreview.txtPrint": "Imprimare",
"DE.Views.PrintWithPreview.txtPrintPdf": "Imprimare în PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Interval de imprimare",
"DE.Views.PrintWithPreview.txtRight": "Dreapta",
"DE.Views.PrintWithPreview.txtSelection": "Selecție",
"DE.Views.PrintWithPreview.txtTop": "Sus",
"DE.Views.ProtectDialog.textComments": "Comentarii",
"DE.Views.ProtectDialog.textForms": "Completarea formularelor",
"DE.Views.ProtectDialog.textReview": "Modificări urmărite",
@ -2692,6 +2740,12 @@
"DE.Views.Statusbar.tipZoomIn": "Mărire",
"DE.Views.Statusbar.tipZoomOut": "Micșorare",
"DE.Views.Statusbar.txtPageNumInvalid": "Număr de pagină nevalid",
"DE.Views.Statusbar.txtPages": "Pagini",
"DE.Views.Statusbar.txtParagraphs": "Paragrafe",
"DE.Views.Statusbar.txtSpaces": "Simboluri cu spații",
"DE.Views.Statusbar.txtSymbols": "Simboluri",
"DE.Views.Statusbar.txtWordCount": "Contor de cuvinte",
"DE.Views.Statusbar.txtWords": "Cuvinte",
"DE.Views.StyleTitleDialog.textHeader": "Creare stil nou",
"DE.Views.StyleTitleDialog.textNextStyle": "Stil de paragraf următor",
"DE.Views.StyleTitleDialog.textTitle": "Titlu",
@ -2983,7 +3037,7 @@
"DE.Views.Toolbar.textColumnsTwo": "Două",
"DE.Views.Toolbar.textComboboxControl": "Casetă combo",
"DE.Views.Toolbar.textContinuous": "Continuă",
"DE.Views.Toolbar.textContPage": "Continuu",
"DE.Views.Toolbar.textContPage": "Pagina continuă",
"DE.Views.Toolbar.textCustomLineNumbers": "Opțiuni de numerotare linii",
"DE.Views.Toolbar.textDateControl": "Data",
"DE.Views.Toolbar.textDropdownControl": "Lista verticală",
@ -3012,14 +3066,14 @@
"DE.Views.Toolbar.textNone": "Niciunul",
"DE.Views.Toolbar.textOddPage": "Pagină impară",
"DE.Views.Toolbar.textPageMarginsCustom": "Margini particularizate",
"DE.Views.Toolbar.textPageSizeCustom": "Dimensiunea particularizată a paginii ",
"DE.Views.Toolbar.textPageSizeCustom": "Dimensiune pagină particularizată",
"DE.Views.Toolbar.textPictureControl": "Imagine",
"DE.Views.Toolbar.textPlainControl": "Text simplu",
"DE.Views.Toolbar.textPortrait": "Portret",
"DE.Views.Toolbar.textRemoveControl": "Eliminare control de conținut",
"DE.Views.Toolbar.textRemWatermark": "Eliminare inscripționare",
"DE.Views.Toolbar.textRestartEachPage": "Repornire fiecare pagină",
"DE.Views.Toolbar.textRestartEachSection": "Repornire fiecare secțiune",
"DE.Views.Toolbar.textRestartEachPage": "Reluare la fiecare pagină",
"DE.Views.Toolbar.textRestartEachSection": "Reluare la fiecare secțiune",
"DE.Views.Toolbar.textRichControl": "Text îmbogățit",
"DE.Views.Toolbar.textRight": "Dreapta:",
"DE.Views.Toolbar.textStrikeout": "Tăiere cu o linie",
@ -3115,6 +3169,7 @@
"DE.Views.Toolbar.tipPaste": "Lipire",
"DE.Views.Toolbar.tipPrColor": "Umbrire",
"DE.Views.Toolbar.tipPrint": "Imprimare",
"DE.Views.Toolbar.tipPrintQuick": "Imprimare rapidă",
"DE.Views.Toolbar.tipRedo": "Refacere",
"DE.Views.Toolbar.tipSave": "Salvează",
"DE.Views.Toolbar.tipSaveCoauth": "Salvați modificările dvs. ca alți utilizatorii să le vadă.",

View file

@ -708,6 +708,15 @@
"Common.Views.UserNameDialog.textDontShow": "Больше не спрашивать",
"Common.Views.UserNameDialog.textLabel": "Подпись:",
"Common.Views.UserNameDialog.textLabelError": "Подпись не должна быть пустой.",
"DE.Controllers.DocProtection.txtIsProtectedComment": "Документ защищен. Вы можете только добавлять комментарии к этому документу.",
"DE.Controllers.DocProtection.txtIsProtectedForms": "Документ защищен. Вы можете только заполнять формы в этом документе.",
"DE.Controllers.DocProtection.txtIsProtectedTrack": "Документ защищен. Вы можете редактировать этот документ, но все изменения будут отслеживаться.",
"DE.Controllers.DocProtection.txtIsProtectedView": "Документ защищен. Вы можете только просматривать этот документ.",
"DE.Controllers.DocProtection.txtWasProtectedComment": "Документ был защищен другим пользователем.\nВы можете только добавлять комментарии к этому документу.",
"DE.Controllers.DocProtection.txtWasProtectedForms": "Документ был защищен другим пользователем.\nВы можете только заполнять формы в этом документе.",
"DE.Controllers.DocProtection.txtWasProtectedTrack": "Документ был защищен другим пользователем.\nВы можете редактировать этот документ, но все изменения будут отслеживаться.",
"DE.Controllers.DocProtection.txtWasProtectedView": "Документ был защищен другим пользователем.\nВы можете только просматривать этот документ.",
"DE.Controllers.DocProtection.txtWasUnprotected": "Защита документа снята.",
"DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны.<br> Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
@ -1178,52 +1187,52 @@
"DE.Controllers.Toolbar.txtAccent_Hat": "Крышка",
"DE.Controllers.Toolbar.txtAccent_Smile": "Значок краткости",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Тильда",
"DE.Controllers.Toolbar.txtBracket_Angle": "Скобки",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Скобки и разделители",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Скобки и разделители",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Curve": "Скобки",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Скобки и разделители",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Angle": "Угловые скобки",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Угловые скобки с разделителем",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Угловые скобки с двумя разделителями",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Правая угловая скобка",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Левая угловая скобка",
"DE.Controllers.Toolbar.txtBracket_Curve": "Фигурные скобки",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Фигурные скобки с разделителем",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Правая фигурная скобка",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Левая фигурная скобка",
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Наборы условий (два условия)",
"DE.Controllers.Toolbar.txtBracket_Custom_2": "Наборы условий (три условия)",
"DE.Controllers.Toolbar.txtBracket_Custom_3": "Стопка объектов",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов в круглых скобках",
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Наборы условий (пример)",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Биномиальный коэффициент",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент",
"DE.Controllers.Toolbar.txtBracket_Line": "Скобки",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Скобки",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Скобки",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Round": "Скобки",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Скобки и разделители",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Square": "Скобки",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Скобки",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Скобки",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Скобки",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Скобки",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Скобки",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Отдельная скобка",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент в угловых скобках",
"DE.Controllers.Toolbar.txtBracket_Line": "Вертикальные черты",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Правая вертикальная черта",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Левая вертикальная черта",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Двойные вертикальные черты",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Правая двойная вертикальная черта",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Левая двойная вертикальная черта",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Закрытые снизу скобки",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Правый предельный уровень снизу",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Левый предельный уровень снизу",
"DE.Controllers.Toolbar.txtBracket_Round": "Круглые скобки",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Круглые скобки с разделителем",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Правая круглая скобка",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Левая круглая скобка",
"DE.Controllers.Toolbar.txtBracket_Square": "Квадратные скобки",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Заполнитель между двумя правыми квадратными скобками",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Перевернутые квадратные скобки",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Правая квадратная скобка",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Левая квадратная скобка",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Заполнитель между двумя левыми квадратными скобками",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Двойные квадратные скобки",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Правая двойная квадратная скобка",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Левая двойная квадратная скобка",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Закрытые сверху скобки",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Правый предельный уровень сверху",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Левый предельный уровень сверху",
"DE.Controllers.Toolbar.txtFractionDiagonal": "Диагональная простая дробь",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "Дифференциал",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "Дифференциал",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "Дифференциал",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "Дифференциал",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "dy над dx",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "пересечение дельты y над пересечением дельты x",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "частичная y по частичной x",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "дельта y через дельта x",
"DE.Controllers.Toolbar.txtFractionHorizontal": "Горизонтальная простая дробь",
"DE.Controllers.Toolbar.txtFractionPi_2": "Пи разделить на два",
"DE.Controllers.Toolbar.txtFractionSmall": "Маленькая простая дробь",
@ -1259,63 +1268,63 @@
"DE.Controllers.Toolbar.txtIntegral_dtheta": "Дифференциал dθ",
"DE.Controllers.Toolbar.txtIntegral_dx": "Дифференциал dx",
"DE.Controllers.Toolbar.txtIntegral_dy": "Дифференциал dy",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл с пределами с накоплением",
"DE.Controllers.Toolbar.txtIntegralDouble": "Двойной интеграл",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл с пределами с накоплением",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл с пределами",
"DE.Controllers.Toolbar.txtIntegralOriented": "Контурный интеграл",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл с пределами с накоплением",
"DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Интеграл по поверхности",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности с пределами с накоплением",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности с пределами",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл с пределами",
"DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Интеграл по объему",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему с пределами с накоплением",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему с пределами",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл с пределами",
"DE.Controllers.Toolbar.txtIntegralTriple": "Тройной интеграл",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Конъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Конъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Конъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Конъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Конъюнкция",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл с пределами с накоплением",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл с пределами",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Логическое И",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Логическое И с нижним пределом",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Логическое И с пределами",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Логическое И с нижним пределом подстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Логическое И с пределом подстрочного/надстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Сопроизведение",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Сумма",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Сумма",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Сумма",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Произведение",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Объединение",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Дизъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Дизъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Дизъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Дизъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Дизъюнкция",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение с нижним пределом",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение с пределами",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение с нижним пределом подстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение с пределами подстрочного/надстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Суммирование от k от n с выбором k",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Суммирование от i равно ноль до n",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Пример суммирования с использованием двух индексов",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Пример произведения",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Пример объединения",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Логическое Или",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Логическое ИЛИ с нижним пределом",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Логическое ИЛИ с пределами",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Логическое ИЛИ с нижним пределом подстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Логическое ИЛИ с пределами подстрочного/надстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Пересечение",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение с нижним пределом",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение с пределами",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение с нижним пределом в виде подстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение с пределами подстрочного/надстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Prod": "Произведение",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение с нижним пределом",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение с пределами",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение с нижним пределом подстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение с пределами подстрочного/надстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Sum": "Сумма",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Сумма",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Сумма",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Сумма",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Сумма",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Суммирование с нижним пределом",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Суммирование с пределами",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Суммирование с нижним пределом подстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Суммирование с пределами подстрочного/надстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Union": "Объединение",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение с нижним пределом",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение с пределами",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение с нижним пределом подстрочного знака",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение с пределами подстрочного/надстрочного знака",
"DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Пример предела",
"DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Пример максимума",
"DE.Controllers.Toolbar.txtLimitLog_Lim": "Предел",
@ -1330,10 +1339,10 @@
"DE.Controllers.Toolbar.txtMatrix_1_3": "Пустая матрица 1 x 3",
"DE.Controllers.Toolbar.txtMatrix_2_1": "Пустая матрица 2 x 1",
"DE.Controllers.Toolbar.txtMatrix_2_2": "Пустая матрица 2 x 2",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица со скобками",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустая матрица со скобками",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица со скобками",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица со скобками",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица 2 х 2 в двойных вертикальных чертах",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустой определитель 2 x 2",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица 2 х 2 в круглых скобках",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица 2 х 2 в скобках",
"DE.Controllers.Toolbar.txtMatrix_2_3": "Пустая матрица 2 x 3",
"DE.Controllers.Toolbar.txtMatrix_3_1": "Пустая матрица 3 x 1",
"DE.Controllers.Toolbar.txtMatrix_3_2": "Пустая матрица 3 x 2",
@ -1342,12 +1351,12 @@
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Точки посередине",
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Точки по диагонали",
"DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Точки по вертикали",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2",
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 3 x 3",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3",
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица в круглых скобках",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица в квадратных скобках",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2 с нулями",
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 2 x 2 с пустыми ячейками не на диагонали",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3 с нулями",
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3 с пустыми ячейками не на диагонали",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Стрелка вправо-влево снизу",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Стрелка вправо-влево сверху",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Стрелка влево снизу",
@ -1359,8 +1368,8 @@
"DE.Controllers.Toolbar.txtOperator_Custom_2": "Дельта выхода",
"DE.Controllers.Toolbar.txtOperator_Definition": "Равно по определению",
"DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Дельта равна",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Стрелка вправо-влево снизу",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Стрелка вправо-влево сверху",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Двойная стрелка вправо-влево снизу",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Двойная стрелка вправо-влево сверху",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Стрелка влево снизу",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Стрелка влево сверху",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Стрелка вправо снизу",
@ -1369,16 +1378,16 @@
"DE.Controllers.Toolbar.txtOperator_MinusEquals": "Минус равно",
"DE.Controllers.Toolbar.txtOperator_PlusEquals": "Плюс равно",
"DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Единица измерения",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Радикал",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Радикал",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Правая часть квадратного уравнения",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Квадратный корень из квадрата плюс b квадрат",
"DE.Controllers.Toolbar.txtRadicalRoot_2": "Квадратный корень со степенью",
"DE.Controllers.Toolbar.txtRadicalRoot_3": "Кубический корень",
"DE.Controllers.Toolbar.txtRadicalRoot_n": "Радикал со степенью",
"DE.Controllers.Toolbar.txtRadicalSqrt": "Квадратный корень",
"DE.Controllers.Toolbar.txtScriptCustom_1": "Индекс",
"DE.Controllers.Toolbar.txtScriptCustom_2": "Индекс",
"DE.Controllers.Toolbar.txtScriptCustom_3": "Индекс",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Индекс",
"DE.Controllers.Toolbar.txtScriptCustom_1": "x в степени квадрата y",
"DE.Controllers.Toolbar.txtScriptCustom_2": "e в степени -iωt",
"DE.Controllers.Toolbar.txtScriptCustom_3": "квадрат x",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Y, надстрочный индекс n слева, подстрочный индекс 1 справа",
"DE.Controllers.Toolbar.txtScriptSub": "Нижний индекс",
"DE.Controllers.Toolbar.txtScriptSubSup": "Нижний и верхний индексы",
"DE.Controllers.Toolbar.txtScriptSubSupLeft": "Нижний и верхний индексы слева",
@ -1539,8 +1548,8 @@
"DE.Views.ChartSettings.textWiden": "Расширить поле зрения",
"DE.Views.ChartSettings.textWidth": "Ширина",
"DE.Views.ChartSettings.textWrap": "Стиль обтекания",
"DE.Views.ChartSettings.textX": "Поворот по оси X",
"DE.Views.ChartSettings.textY": "Поворот по оси Y",
"DE.Views.ChartSettings.textX": "По оси X",
"DE.Views.ChartSettings.textY": "По оси Y",
"DE.Views.ChartSettings.txtBehind": "За текстом",
"DE.Views.ChartSettings.txtInFront": "Перед текстом",
"DE.Views.ChartSettings.txtInline": "В тексте",
@ -1637,6 +1646,7 @@
"DE.Views.DocProtection.txtDocProtectedView": "Документ защищен.<br>Вы можете только просматривать этот документ.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Введите пароль, чтобы снять защиту документа",
"DE.Views.DocProtection.txtProtectDoc": "Защитить документ",
"DE.Views.DocProtection.txtUnlockTitle": "Снять защиту документа",
"DE.Views.DocumentHolder.aboveText": "Выше",
"DE.Views.DocumentHolder.addCommentText": "Добавить комментарий",
"DE.Views.DocumentHolder.advancedDropCapText": "Параметры буквицы",
@ -1657,7 +1667,7 @@
"DE.Views.DocumentHolder.chartText": "Дополнительные параметры диаграммы",
"DE.Views.DocumentHolder.columnText": "Столбец",
"DE.Views.DocumentHolder.currLinearText": "Текущее - линейный",
"DE.Views.DocumentHolder.currProfText": "Текущее - Профессиональный",
"DE.Views.DocumentHolder.currProfText": "Текущее - профессиональный",
"DE.Views.DocumentHolder.deleteColumnText": "Удалить столбец",
"DE.Views.DocumentHolder.deleteRowText": "Удалить строку",
"DE.Views.DocumentHolder.deleteTableText": "Удалить таблицу",
@ -1967,10 +1977,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Версия PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Размещение",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Люди, имеющие права",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Символы с пробелами",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Знаков с пробелами",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символы",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Знаков",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Теги",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружен",
@ -2052,6 +2062,7 @@
"DE.Views.FileMenuPanels.Settings.txtWin": "как Windows",
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Рабочая область",
"DE.Views.FormSettings.textAlways": "Всегда",
"DE.Views.FormSettings.textAnyone": "Любой",
"DE.Views.FormSettings.textAspect": "Сохранять пропорции",
"DE.Views.FormSettings.textAtLeast": "Минимум",
"DE.Views.FormSettings.textAuto": "Авто",
@ -2063,12 +2074,16 @@
"DE.Views.FormSettings.textCombobox": "Поле со списком",
"DE.Views.FormSettings.textComplex": "Составное поле",
"DE.Views.FormSettings.textConnected": "Подключенные поля",
"DE.Views.FormSettings.textCreditCard": "Номер кредитной карты (например, 4111-1111-1111-1111)",
"DE.Views.FormSettings.textDateField": "Поле Дата и время",
"DE.Views.FormSettings.textDateFormat": "Отображать дату следующим образом",
"DE.Views.FormSettings.textDelete": "Удалить",
"DE.Views.FormSettings.textDigits": "Цифры",
"DE.Views.FormSettings.textDisconnect": "Отключить",
"DE.Views.FormSettings.textDropDown": "Выпадающий список",
"DE.Views.FormSettings.textExact": "Точно",
"DE.Views.FormSettings.textField": "Текстовое поле",
"DE.Views.FormSettings.textFillRoles": "Кто должен это заполнять?",
"DE.Views.FormSettings.textFixed": "Поле фиксированного размера",
"DE.Views.FormSettings.textFormat": "Формат",
"DE.Views.FormSettings.textFormatSymbols": "Допустимые символы",
@ -2078,6 +2093,7 @@
"DE.Views.FormSettings.textGroupKey": "Ключ группы",
"DE.Views.FormSettings.textImage": "Изображение",
"DE.Views.FormSettings.textKey": "Ключ",
"DE.Views.FormSettings.textLang": "Язык",
"DE.Views.FormSettings.textLetters": "Буквы",
"DE.Views.FormSettings.textLock": "Заблокировать",
"DE.Views.FormSettings.textMask": "Произвольная маска",
@ -2086,6 +2102,8 @@
"DE.Views.FormSettings.textNever": "Никогда",
"DE.Views.FormSettings.textNoBorder": "Без границ",
"DE.Views.FormSettings.textNone": "Нет",
"DE.Views.FormSettings.textPhone1": "Номер телефона (например, (123) 456-7890)",
"DE.Views.FormSettings.textPhone2": "Номер телефона (например, +447911123456)",
"DE.Views.FormSettings.textPlaceholder": "Заполнитель",
"DE.Views.FormSettings.textRadiobox": "Переключатель",
"DE.Views.FormSettings.textReg": "Регулярное выражение",
@ -2100,9 +2118,12 @@
"DE.Views.FormSettings.textTipUp": "Переместить вверх",
"DE.Views.FormSettings.textTooBig": "Изображение слишком большое",
"DE.Views.FormSettings.textTooSmall": "Изображение слишком маленькое",
"DE.Views.FormSettings.textUKPassport": "Номер паспорта Великобритании (например, 925665416)",
"DE.Views.FormSettings.textUnlock": "Разблокировать",
"DE.Views.FormSettings.textUSSSN": "SSN США (например, 123-45-6789)",
"DE.Views.FormSettings.textValue": "Параметры значений",
"DE.Views.FormSettings.textWidth": "Ширина ячейки",
"DE.Views.FormSettings.textZipCodeUS": "Почтовый индекс США (например, 92663 или 92663-1234)",
"DE.Views.FormsTab.capBtnCheckBox": "Флажок",
"DE.Views.FormsTab.capBtnComboBox": "Поле со списком",
"DE.Views.FormsTab.capBtnComplex": "Составное поле",
@ -2118,6 +2139,10 @@
"DE.Views.FormsTab.capBtnSubmit": "Отправить",
"DE.Views.FormsTab.capBtnText": "Текстовое поле",
"DE.Views.FormsTab.capBtnView": "Просмотреть форму",
"DE.Views.FormsTab.capCreditCard": "Кредитная карта",
"DE.Views.FormsTab.capDateTime": "Дата и время",
"DE.Views.FormsTab.capZipCode": "Индекс",
"DE.Views.FormsTab.textAnyone": "Любой",
"DE.Views.FormsTab.textClear": "Очистить поля",
"DE.Views.FormsTab.textClearFields": "Очистить все поля",
"DE.Views.FormsTab.textCreateForm": "Добавьте поля и создайте заполняемый документ OFORM",
@ -2129,10 +2154,14 @@
"DE.Views.FormsTab.tipCheckBox": "Вставить флажок",
"DE.Views.FormsTab.tipComboBox": "Вставить поле со списком",
"DE.Views.FormsTab.tipComplexField": "Вставить составное поле",
"DE.Views.FormsTab.tipCreditCard": "Вставить номер кредитной карты",
"DE.Views.FormsTab.tipDateTime": "Вставить дату и время",
"DE.Views.FormsTab.tipDownloadForm": "Скачать файл как заполняемый документ OFORM",
"DE.Views.FormsTab.tipDropDown": "Вставить выпадающий список",
"DE.Views.FormsTab.tipEmailField": "Вставить адрес email",
"DE.Views.FormsTab.tipFixedText": "Вставить фиксированное текстовое поле",
"DE.Views.FormsTab.tipImageField": "Вставить изображение",
"DE.Views.FormsTab.tipInlineText": "Вставить встроенное текстовое поле",
"DE.Views.FormsTab.tipNextForm": "Перейти к следующему полю",
"DE.Views.FormsTab.tipPhoneField": "Вставить номер телефона",
"DE.Views.FormsTab.tipPrevForm": "Перейти к предыдущему полю",
@ -2141,6 +2170,11 @@
"DE.Views.FormsTab.tipSubmit": "Отправить форму",
"DE.Views.FormsTab.tipTextField": "Вставить текстовое поле",
"DE.Views.FormsTab.tipViewForm": "Просмотреть форму",
"DE.Views.FormsTab.tipZipCode": "Вставить индекс",
"DE.Views.FormsTab.txtFixedDesc": "Вставить фиксированное текстовое поле",
"DE.Views.FormsTab.txtFixedText": "Фиксированное",
"DE.Views.FormsTab.txtInlineDesc": "Вставить встроенное текстовое поле",
"DE.Views.FormsTab.txtInlineText": "Встроенное",
"DE.Views.FormsTab.txtUntitled": "Без имени",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Снизу по центру",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Снизу слева",
@ -2524,7 +2558,7 @@
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Запрет висячих строк",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Отступы и интервалы",
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Положение на странице",
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Разрывы строк и страницы",
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Положение",
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Малые прописные",
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Не добавлять интервал между абзацами одного стиля",
@ -2595,18 +2629,6 @@
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Задать только верхнюю границу",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Без границ",
"DE.Views.ProtectDialog.textComments": "Комментарии",
"DE.Views.ProtectDialog.textForms": "Заполнение форм",
"DE.Views.ProtectDialog.textReview": "Отслеживаемые изменения",
"DE.Views.ProtectDialog.textView": "Только чтение",
"DE.Views.ProtectDialog.txtAllow": "Разрешить только указанный способ редактирования документа",
"DE.Views.ProtectDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают",
"DE.Views.ProtectDialog.txtOptional": "необязательно",
"DE.Views.ProtectDialog.txtPassword": "Пароль",
"DE.Views.ProtectDialog.txtProtect": "Защитить",
"DE.Views.ProtectDialog.txtRepeat": "Повторить пароль",
"DE.Views.ProtectDialog.txtTitle": "Защитить",
"DE.Views.ProtectDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.",
"DE.Views.PrintWithPreview.textMarginsLast": "Последние настраиваемые",
"DE.Views.PrintWithPreview.textMarginsModerate": "Средние",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Узкие",
@ -2634,6 +2656,19 @@
"DE.Views.PrintWithPreview.txtRight": "Правое",
"DE.Views.PrintWithPreview.txtSelection": "Выделенный фрагмент",
"DE.Views.PrintWithPreview.txtTop": "Верхнее",
"DE.Views.ProtectDialog.textComments": "Комментарии",
"DE.Views.ProtectDialog.textForms": "Заполнение форм",
"DE.Views.ProtectDialog.textReview": "Отслеживаемые изменения",
"DE.Views.ProtectDialog.textView": "Только чтение",
"DE.Views.ProtectDialog.txtAllow": "Разрешить только указанный способ редактирования документа",
"DE.Views.ProtectDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают",
"DE.Views.ProtectDialog.txtLimit": "Пароль ограничен 15 символами",
"DE.Views.ProtectDialog.txtOptional": "необязательно",
"DE.Views.ProtectDialog.txtPassword": "Пароль",
"DE.Views.ProtectDialog.txtProtect": "Защитить",
"DE.Views.ProtectDialog.txtRepeat": "Повторить пароль",
"DE.Views.ProtectDialog.txtTitle": "Защитить",
"DE.Views.ProtectDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.",
"DE.Views.RightMenu.txtChartSettings": "Параметры диаграммы",
"DE.Views.RightMenu.txtFormSettings": "Параметры формы",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Параметры верхнего и нижнего колонтитулов",
@ -2644,6 +2679,35 @@
"DE.Views.RightMenu.txtSignatureSettings": "Настройка подписи",
"DE.Views.RightMenu.txtTableSettings": "Параметры таблицы",
"DE.Views.RightMenu.txtTextArtSettings": "Параметры объекта Text Art",
"DE.Views.RoleDeleteDlg.textLabel": "Чтобы удалить эту роль, надо перенести связанные с ней поля в другую роль.",
"DE.Views.RoleDeleteDlg.textSelect": "Выберите для роли слияния полей",
"DE.Views.RoleDeleteDlg.textTitle": "Удалить роль",
"DE.Views.RoleEditDlg.capBtnManager": "Управление ролями",
"DE.Views.RoleEditDlg.errNameExists": "Роль с таким названием уже существует.",
"DE.Views.RoleEditDlg.textEmptyError": "Название роли не может быть пустым.",
"DE.Views.RoleEditDlg.textName": "Название роли",
"DE.Views.RoleEditDlg.textNoHighlight": "Без подсветки",
"DE.Views.RoleEditDlg.tipManager": "Управление ролями",
"DE.Views.RoleEditDlg.txtTitleEdit": "Редактировать роль",
"DE.Views.RoleEditDlg.txtTitleNew": "Создать новую роль",
"DE.Views.RolesManagerDlg.closeButtonText ": "Закрыть",
"DE.Views.RolesManagerDlg.textAnyone": "Любой",
"DE.Views.RolesManagerDlg.textDelete": "Удалить",
"DE.Views.RolesManagerDlg.textDescription": "Добавьте роли и задайте порядок, в котором заполняющие получают и подписывают документ",
"DE.Views.RolesManagerDlg.textDown": "Переместить роль вниз",
"DE.Views.RolesManagerDlg.textEdit": "Редактировать",
"DE.Views.RolesManagerDlg.textEmpty": "Еще не было создано ни одной роли.<br>Создайте хотя бы одну роль, и она появится в этом поле.",
"DE.Views.RolesManagerDlg.textNew": "Создать",
"DE.Views.RolesManagerDlg.textUp": "Переместить роль вверх",
"DE.Views.RolesManagerDlg.txtTitle": "Управление ролями",
"DE.Views.RolesManagerDlg.warnCantDelete": "Нельзя удалить эту роль, так как есть связанные с ней поля.",
"DE.Views.RolesManagerDlg.warnDelete": "Вы действительно хотите удалить роль {0}?",
"DE.Views.SaveFormDlg.saveButtonText": "Сохранить",
"DE.Views.SaveFormDlg.textAnyone": "Любой",
"DE.Views.SaveFormDlg.textDescription": "При сохранении в oform в список заполнения добавляются только роли с полями",
"DE.Views.SaveFormDlg.textEmpty": "Нет ролей, связанных с этим полем.",
"DE.Views.SaveFormDlg.textFill": "Список заполнения",
"DE.Views.SaveFormDlg.txtTitle": "Сохранить как форму",
"DE.Views.ShapeSettings.strBackground": "Цвет фона",
"DE.Views.ShapeSettings.strChange": "Изменить автофигуру",
"DE.Views.ShapeSettings.strColor": "Цвет",
@ -2735,6 +2799,12 @@
"DE.Views.Statusbar.tipZoomIn": "Увеличить",
"DE.Views.Statusbar.tipZoomOut": "Уменьшить",
"DE.Views.Statusbar.txtPageNumInvalid": "Неправильный номер страницы",
"DE.Views.Statusbar.txtPages": "Страницы",
"DE.Views.Statusbar.txtParagraphs": "Абзацы",
"DE.Views.Statusbar.txtSpaces": "Символы и пробелы",
"DE.Views.Statusbar.txtSymbols": "Символы",
"DE.Views.Statusbar.txtWordCount": "Количество слов",
"DE.Views.Statusbar.txtWords": "Слова",
"DE.Views.StyleTitleDialog.textHeader": "Создание нового стиля",
"DE.Views.StyleTitleDialog.textNextStyle": "Стиль следующего абзаца",
"DE.Views.StyleTitleDialog.textTitle": "Название",
@ -3158,6 +3228,7 @@
"DE.Views.Toolbar.tipPaste": "Вставить",
"DE.Views.Toolbar.tipPrColor": "Заливка",
"DE.Views.Toolbar.tipPrint": "Печать",
"DE.Views.Toolbar.tipPrintQuick": "Быстрая печать",
"DE.Views.Toolbar.tipRedo": "Повторить",
"DE.Views.Toolbar.tipSave": "Сохранить",
"DE.Views.Toolbar.tipSaveCoauth": "Сохраните свои изменения, чтобы другие пользователи их увидели.",

View file

@ -1694,10 +1694,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odseky",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboly s medzerami",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Znaky s medzerami",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Štatistiky",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Predmet",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboly",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Znaky",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahrané",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Slová",

View file

@ -1755,10 +1755,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF-version",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Placering",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personer som har behörigheter",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboler med mellanrum",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Tecken med mellanrum",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Ämne",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboler",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Tecken",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiketter",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uppladdad",

View file

@ -1946,10 +1946,10 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF版",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "带空格的符号",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "字符数(计空格)",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符号",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "字符数(不计空格)",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "标签",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "标题",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载",

View file

@ -0,0 +1,22 @@
<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" xmlns="http://www.w3.org/2000/svg">
<symbol id="svg-icon-Point" viewBox="0 0 20 28">
<g id="Point">
<path id="Ellipse 121 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M9.5 17C10.8807 17 12 15.8807 12 14.5C12 13.1193 10.8807 12 9.5 12C8.11929 12 7 13.1193 7 14.5C7 15.8807 8.11929 17 9.5 17ZM9.5 18C11.433 18 13 16.433 13 14.5C13 12.567 11.433 11 9.5 11C7.567 11 6 12.567 6 14.5C6 16.433 7.567 18 9.5 18Z"/>
</g>
</symbol>
<symbol id="svg-icon-StartPoint" viewBox="20 0 20 28">
<g id="StartPoint">
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M32 14.5C32 15.8807 30.8807 17 29.5 17C28.1193 17 27 15.8807 27 14.5C27 13.1193 28.1193 12 29.5 12C30.8807 12 32 13.1193 32 14.5ZM33 14.5C33 16.433 31.433 18 29.5 18C27.567 18 26 16.433 26 14.5C26 12.567 27.567 11 29.5 11C31.433 11 33 12.567 33 14.5ZM29.5 18H30V20H29V18H29.5ZM30 22V24H29V22H30ZM30 28V26H29V28H30Z"/>
</g>
</symbol>
<symbol id="svg-icon-MiddlePoint" viewBox="40 0 20 28">
<g id="MiddlePoint">
<path id="Union_2" fill-rule="evenodd" clip-rule="evenodd" d="M49 2H50V4H49V2ZM49.5 17C50.8807 17 52 15.8807 52 14.5C52 13.1193 50.8807 12 49.5 12C48.1193 12 47 13.1193 47 14.5C47 15.8807 48.1193 17 49.5 17ZM49.5 18C51.433 18 53 16.433 53 14.5C53 12.567 51.433 11 49.5 11H50V10H49V11H49.5C47.567 11 46 12.567 46 14.5C46 16.433 47.567 18 49.5 18ZM49.5 18H49V20H50V18H49.5ZM50 6H49V8H50V6ZM50 22V24H49V22H50ZM50 28V26H49V28H50Z"/>
</g>
</symbol>
<symbol id="svg-icon-EndPoint" viewBox="60 0 20 28">
<g id="EndPoint">
<path id="Union_3" fill-rule="evenodd" clip-rule="evenodd" d="M70 2H69V4H70V2ZM72 14.5C72 15.8807 70.8807 17 69.5 17C68.1193 17 67 15.8807 67 14.5C67 13.1193 68.1193 12 69.5 12C70.8807 12 72 13.1193 72 14.5ZM73 14.5C73 16.433 71.433 18 69.5 18C67.567 18 66 16.433 66 14.5C66 12.567 67.567 11 69.5 11C71.433 11 73 12.567 73 14.5ZM69.5 11H69V10H70V11H69.5ZM69 6H70V8H69V6Z"/>
</g>
</symbol>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 B

Some files were not shown because too many files have changed in this diff Show more