v5.1.3
This commit is contained in:
commit
210a5bf3c7
10
.travis.yml
Normal file
10
.travis.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
dist: trusty
|
||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- '6'
|
||||||
|
before_install: npm install -g grunt-cli
|
||||||
|
before_script:
|
||||||
|
- cd build
|
||||||
|
script:
|
||||||
|
- npm install
|
||||||
|
- grunt --level=ADVANCED
|
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,13 +1,15 @@
|
||||||
# Change log
|
# Change log
|
||||||
## 5.1.1
|
## 5.1.3
|
||||||
### All Editors
|
### All Editors
|
||||||
*
|
* Customize initial zoom for the embedded editors
|
||||||
|
* Replace image from context menu (bug #11493)
|
||||||
|
|
||||||
### Document Editor
|
### Document Editor
|
||||||
*
|
* Export to RTF format
|
||||||
|
|
||||||
### Spreadsheet Editor
|
### Spreadsheet Editor
|
||||||
* Support Spanish in formulas
|
* Add Spanish, French formula translations
|
||||||
|
* Change cell format from context menu (bug #16272)
|
||||||
|
|
||||||
### Presentation Editor
|
### Presentation Editor
|
||||||
*
|
* Add hints to presentation themes (bug #21362)
|
||||||
|
|
|
@ -362,10 +362,11 @@
|
||||||
if (!!result && result.length) {
|
if (!!result && result.length) {
|
||||||
if (result[1] == 'desktop') {
|
if (result[1] == 'desktop') {
|
||||||
_config.editorConfig.targetApp = result[1];
|
_config.editorConfig.targetApp = result[1];
|
||||||
_config.editorConfig.canBackToFolder = false;
|
// _config.editorConfig.canBackToFolder = false;
|
||||||
_config.editorConfig.canUseHistory = false;
|
|
||||||
if (!_config.editorConfig.customization) _config.editorConfig.customization = {};
|
if (!_config.editorConfig.customization) _config.editorConfig.customization = {};
|
||||||
_config.editorConfig.customization.about = false;
|
_config.editorConfig.customization.about = false;
|
||||||
|
|
||||||
|
if ( window.AscDesktopEditor ) window.AscDesktopEditor.execCommand('webapps:events', 'loading');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -55,7 +55,10 @@
|
||||||
height: '100%',
|
height: '100%',
|
||||||
documentType: urlParams['doctype'] || 'text',
|
documentType: urlParams['doctype'] || 'text',
|
||||||
document: doc,
|
document: doc,
|
||||||
editorConfig: cfg
|
editorConfig: cfg,
|
||||||
|
events: {
|
||||||
|
onInternalMessage: onInternalMessage,
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
@ -91,6 +94,9 @@
|
||||||
|
|
||||||
function getEditorConfig(urlParams) {
|
function getEditorConfig(urlParams) {
|
||||||
return {
|
return {
|
||||||
|
customization : {
|
||||||
|
goback: { url: "onlyoffice.com" }
|
||||||
|
},
|
||||||
mode : urlParams["mode"] || 'edit',
|
mode : urlParams["mode"] || 'edit',
|
||||||
lang : urlParams["lang"] || 'en',
|
lang : urlParams["lang"] || 'en',
|
||||||
user: {
|
user: {
|
||||||
|
@ -144,6 +150,21 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function onInternalMessage(event) {
|
||||||
|
let info = event.data;
|
||||||
|
if ( info.type == 'goback' ) {
|
||||||
|
if ( window.AscDesktopEditor ) {
|
||||||
|
window.AscDesktopEditor.execCommand('go:folder', info.data.status);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
function onDocumentReady() {
|
||||||
|
if ( window.AscDesktopEditor ) {
|
||||||
|
window.AscDesktopEditor.execCommand('doc:onready', '');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (isMobile()){
|
if (isMobile()){
|
||||||
window.addEventListener('load', fixSize);
|
window.addEventListener('load', fixSize);
|
||||||
window.addEventListener('resize', fixSize);
|
window.addEventListener('resize', fixSize);
|
||||||
|
|
|
@ -119,6 +119,68 @@ define([
|
||||||
], function () {
|
], function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
window.createButtonSet = function() {
|
||||||
|
function ButtonsArray(args) {};
|
||||||
|
ButtonsArray.prototype = new Array;
|
||||||
|
ButtonsArray.prototype.constructor = ButtonsArray;
|
||||||
|
|
||||||
|
var _disabled = false;
|
||||||
|
|
||||||
|
ButtonsArray.prototype.add = function(button) {
|
||||||
|
button.setDisabled(_disabled);
|
||||||
|
this.push(button);
|
||||||
|
};
|
||||||
|
|
||||||
|
ButtonsArray.prototype.setDisabled = function(disable) {
|
||||||
|
if ( _disabled != disable ) {
|
||||||
|
_disabled = disable;
|
||||||
|
|
||||||
|
this.forEach( function(button) {
|
||||||
|
button.setDisabled(disable);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
ButtonsArray.prototype.toggle = function(state, suppress) {
|
||||||
|
this.forEach(function(button) {
|
||||||
|
button.toggle(state, suppress);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
ButtonsArray.prototype.pressed = function() {
|
||||||
|
return this.some(function(button) {
|
||||||
|
return button.pressed;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
ButtonsArray.prototype.contains = function(id) {
|
||||||
|
return this.some(function(button) {
|
||||||
|
return button.id == id;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
ButtonsArray.prototype.concat = function () {
|
||||||
|
var args = Array.prototype.slice.call(arguments);
|
||||||
|
var result = Array.prototype.slice.call(this);
|
||||||
|
|
||||||
|
args.forEach(function(sub){
|
||||||
|
if (sub instanceof Array )
|
||||||
|
Array.prototype.push.apply(result, sub);
|
||||||
|
else if (sub)
|
||||||
|
result.push(sub);
|
||||||
|
});
|
||||||
|
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
var _out_array = Object.create(ButtonsArray.prototype);
|
||||||
|
for ( var i in arguments ) {
|
||||||
|
_out_array.add(arguments[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return _out_array;
|
||||||
|
};
|
||||||
|
|
||||||
var templateBtnIcon =
|
var templateBtnIcon =
|
||||||
'<% if ( iconImg ) { %>' +
|
'<% if ( iconImg ) { %>' +
|
||||||
'<img src="<%= iconImg %>">' +
|
'<img src="<%= iconImg %>">' +
|
||||||
|
@ -291,6 +353,7 @@ define([
|
||||||
me.menu.render(me.cmpEl);
|
me.menu.render(me.cmpEl);
|
||||||
|
|
||||||
parentEl.html(me.cmpEl);
|
parentEl.html(me.cmpEl);
|
||||||
|
me.$icon = me.$el.find('.icon');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -536,6 +599,13 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( !!me.options.signals ) {
|
||||||
|
var opts = me.options.signals;
|
||||||
|
if ( !(opts.indexOf('disabled') < 0) ) {
|
||||||
|
me.trigger('disabled', me, disabled);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.disabled = disabled;
|
this.disabled = disabled;
|
||||||
|
|
|
@ -213,6 +213,8 @@ define([
|
||||||
}, 10);
|
}, 10);
|
||||||
} else
|
} else
|
||||||
me._skipInputChange = false;
|
me._skipInputChange = false;
|
||||||
|
} else if (e.keyCode == Common.UI.Keys.RETURN && this._input.val() === me.lastValue){
|
||||||
|
this._input.trigger('change', { reapply: true });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -233,7 +235,7 @@ define([
|
||||||
var val = $(e.target).val(),
|
var val = $(e.target).val(),
|
||||||
record = {};
|
record = {};
|
||||||
|
|
||||||
if (this.lastValue === val) {
|
if (this.lastValue === val && !(extra && extra.reapply)) {
|
||||||
if (extra && extra.onkeydown)
|
if (extra && extra.onkeydown)
|
||||||
this.trigger('combo:blur', this, e);
|
this.trigger('combo:blur', this, e);
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -140,9 +140,10 @@ define([
|
||||||
el.html(this.template(this.model.toJSON()));
|
el.html(this.template(this.model.toJSON()));
|
||||||
el.addClass('item');
|
el.addClass('item');
|
||||||
el.toggleClass('selected', this.model.get('selected') && this.model.get('allowSelected'));
|
el.toggleClass('selected', this.model.get('selected') && this.model.get('allowSelected'));
|
||||||
el.off('click').on('click', _.bind(this.onClick, this));
|
el.off('click dblclick contextmenu');
|
||||||
el.off('dblclick').on('dblclick', _.bind(this.onDblClick, this));
|
el.on({ 'click': _.bind(this.onClick, this),
|
||||||
el.off('contextmenu').on('contextmenu', _.bind(this.onContextMenu, this));
|
'dblclick': _.bind(this.onDblClick, this),
|
||||||
|
'contextmenu': _.bind(this.onContextMenu, this) });
|
||||||
el.toggleClass('disabled', !!this.model.get('disabled'));
|
el.toggleClass('disabled', !!this.model.get('disabled'));
|
||||||
|
|
||||||
if (!_.isUndefined(this.model.get('cls')))
|
if (!_.isUndefined(this.model.get('cls')))
|
||||||
|
@ -277,6 +278,13 @@ define([
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var modalParents = this.cmpEl.closest('.asc-window');
|
||||||
|
if (modalParents.length < 1)
|
||||||
|
modalParents = this.cmpEl.closest('[id^="menu-container-"]'); // context menu
|
||||||
|
if (modalParents.length > 0) {
|
||||||
|
this.tipZIndex = parseInt(modalParents.css('z-index')) + 10;
|
||||||
|
}
|
||||||
|
|
||||||
if (!this.rendered) {
|
if (!this.rendered) {
|
||||||
if (this.listenStoreEvents) {
|
if (this.listenStoreEvents) {
|
||||||
this.listenTo(this.store, 'add', this.onAddItem);
|
this.listenTo(this.store, 'add', this.onAddItem);
|
||||||
|
@ -315,11 +323,6 @@ define([
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var modalParents = this.cmpEl.closest('.asc-window');
|
|
||||||
if (modalParents.length > 0) {
|
|
||||||
this.tipZIndex = parseInt(modalParents.css('z-index')) + 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.rendered = true;
|
this.rendered = true;
|
||||||
|
|
||||||
this.cmpEl.on('click', function(e){
|
this.cmpEl.on('click', function(e){
|
||||||
|
|
|
@ -187,6 +187,13 @@ define([
|
||||||
return parseInt(el.css('width'));
|
return parseInt(el.css('width'));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
getItem: function (alias) {
|
||||||
|
for (var p in this.panels) {
|
||||||
|
var panel = this.panels[p];
|
||||||
|
if ( panel.alias == alias ) return panel;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onSelectStart: function(e) {
|
onSelectStart: function(e) {
|
||||||
if (e.preventDefault) e.preventDefault();
|
if (e.preventDefault) e.preventDefault();
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -257,7 +257,7 @@ define([
|
||||||
return config.tabs[index].action;
|
return config.tabs[index].action;
|
||||||
}
|
}
|
||||||
|
|
||||||
var _tabTemplate = _.template('<li class="ribtab" style="display: none;"><div class="tab-bg" /><a href="#" data-tab="<%= action %>" data-title="<%= caption %>"><%= caption %></a></li>');
|
var _tabTemplate = _.template('<li class="ribtab" style="display: none;"><a href="#" data-tab="<%= action %>" data-title="<%= caption %>"><%= caption %></a></li>');
|
||||||
|
|
||||||
config.tabs[after + 1] = tab;
|
config.tabs[after + 1] = tab;
|
||||||
var _after_action = _get_tab_action(after);
|
var _after_action = _get_tab_action(after);
|
||||||
|
|
|
@ -103,13 +103,20 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
applyPlacement: function () {
|
applyPlacement: function () {
|
||||||
var showxy = this.target.offset();
|
var showxy = this.target.offset(),
|
||||||
|
innerHeight = Common.Utils.innerHeight();
|
||||||
if (this.placement == 'top')
|
if (this.placement == 'top')
|
||||||
this.cmpEl.css({bottom : Common.Utils.innerHeight() - showxy.top + 'px', right: Common.Utils.innerWidth() - showxy.left - this.target.width()/2 + 'px'});
|
this.cmpEl.css({bottom : innerHeight - showxy.top + 'px', right: Common.Utils.innerWidth() - showxy.left - this.target.width()/2 + 'px'});
|
||||||
else if (this.placement == 'left')
|
else {// left or right
|
||||||
this.cmpEl.css({top : showxy.top + this.target.height()/2 + 'px', right: Common.Utils.innerWidth() - showxy.left - 5 + 'px'});
|
var top = showxy.top + this.target.height()/2,
|
||||||
else // right
|
height = this.cmpEl.height();
|
||||||
this.cmpEl.css({top : showxy.top + this.target.height()/2 + 'px', left: showxy.left + this.target.width() + 'px'});
|
if (top+height>innerHeight)
|
||||||
|
top = innerHeight - height;
|
||||||
|
if (this.placement == 'left')
|
||||||
|
this.cmpEl.css({top : top + 'px', right: Common.Utils.innerWidth() - showxy.left - 5 + 'px'});
|
||||||
|
else
|
||||||
|
this.cmpEl.css({top : top + 'px', left: showxy.left + this.target.width() + 'px'});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
isVisible: function() {
|
isVisible: function() {
|
||||||
|
|
|
@ -785,7 +785,7 @@ define([
|
||||||
|
|
||||||
isLocked: function() {
|
isLocked: function() {
|
||||||
return this.$window.hasClass('dethrone') ||
|
return this.$window.hasClass('dethrone') ||
|
||||||
(!this.options.modal && this.$window.parent().find('.asc-window.modal:visible').length);
|
(!this.initConfig.modal && this.$window.parent().find('.asc-window.modal:visible').length);
|
||||||
},
|
},
|
||||||
|
|
||||||
getChild: function(selector) {
|
getChild: function(selector) {
|
||||||
|
|
73
apps/common/main/lib/controller/Desktop.js
Normal file
73
apps/common/main/lib/controller/Desktop.js
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* (c) Copyright Ascensio System Limited 2010-2018
|
||||||
|
*
|
||||||
|
* 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 Lubanas st. 125a-25, Riga, Latvia,
|
||||||
|
* EU, LV-1021.
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Controller wraps up interaction with desktop app
|
||||||
|
*
|
||||||
|
* Created by Maxim.Kadushkin on 2/16/2018.
|
||||||
|
*/
|
||||||
|
|
||||||
|
define([
|
||||||
|
'core'
|
||||||
|
], function () {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var Desktop = function () {
|
||||||
|
var config = {};
|
||||||
|
var app = window.AscDesktopEditor;
|
||||||
|
|
||||||
|
return {
|
||||||
|
init: function (opts) {
|
||||||
|
_.extend(config, opts);
|
||||||
|
|
||||||
|
if ( config.isDesktopApp ) {
|
||||||
|
Common.NotificationCenter.on('app:ready', function (config) {
|
||||||
|
!!app && app.execCommand('doc:onready', '');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
process: function (opts) {
|
||||||
|
if ( opts == 'goback' ) {
|
||||||
|
if ( config.isDesktopApp && !!app ) {
|
||||||
|
app.execCommand('go:folder',
|
||||||
|
config.isOffline ? 'offline' : config.customization.goback.url);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
Common.Controllers.Desktop = new Desktop();
|
||||||
|
});
|
|
@ -141,7 +141,12 @@ define([
|
||||||
handler: function(result, value) {
|
handler: function(result, value) {
|
||||||
if (this.isHandlerCalled) return;
|
if (this.isHandlerCalled) return;
|
||||||
this.isHandlerCalled = true;
|
this.isHandlerCalled = true;
|
||||||
externalEditor && externalEditor.serviceCommand('queryClose',{mr:result});
|
if (this.diagramEditorView._isExternalDocReady)
|
||||||
|
externalEditor && externalEditor.serviceCommand('queryClose',{mr:result});
|
||||||
|
else {
|
||||||
|
this.diagramEditorView.hide();
|
||||||
|
this.isHandlerCalled = false;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
setChartData: function() {
|
setChartData: function() {
|
||||||
|
|
|
@ -758,14 +758,22 @@ Common.Utils.InternalSettings = new(function() {
|
||||||
var settings = {};
|
var settings = {};
|
||||||
|
|
||||||
var _get = function(name) {
|
var _get = function(name) {
|
||||||
return settings[name];
|
return settings[name];
|
||||||
},
|
},
|
||||||
_set = function(name, value) {
|
_set = function(name, value) {
|
||||||
settings[name] = value;
|
settings[name] = value;
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
get: _get,
|
get: _get,
|
||||||
set: _set
|
set: _set
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Common.Utils.InternalSettings.set('toolbar-height-tabs', 32);
|
||||||
|
Common.Utils.InternalSettings.set('toolbar-height-tabs-top-title', 28);
|
||||||
|
Common.Utils.InternalSettings.set('toolbar-height-controls', 67);
|
||||||
|
Common.Utils.InternalSettings.set('document-title-height', 28);
|
||||||
|
|
||||||
|
Common.Utils.InternalSettings.set('toolbar-height-compact', Common.Utils.InternalSettings.get('toolbar-height-tabs'));
|
||||||
|
Common.Utils.InternalSettings.set('toolbar-height-normal', Common.Utils.InternalSettings.get('toolbar-height-tabs') + Common.Utils.InternalSettings.get('toolbar-height-controls'));
|
||||||
|
|
|
@ -119,10 +119,11 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMessage: function(msg) {
|
_onMessage: function(msg) {
|
||||||
if (msg && msg.needUpdate) {
|
if (msg /*&& msg.Referer == "onlyoffice"*/) {
|
||||||
this.trigger('accessrights', this, msg.sharingSettings);
|
if (msg.needUpdate)
|
||||||
|
this.trigger('accessrights', this, msg.sharingSettings);
|
||||||
|
Common.NotificationCenter.trigger('window:close', this);
|
||||||
}
|
}
|
||||||
Common.NotificationCenter.trigger('window:close', this);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
_onLoad: function() {
|
_onLoad: function() {
|
||||||
|
|
|
@ -82,11 +82,9 @@ define([
|
||||||
disabled: true
|
disabled: true
|
||||||
});
|
});
|
||||||
this.btnCancel = new Common.UI.Button({
|
this.btnCancel = new Common.UI.Button({
|
||||||
el: $('#id-btn-diagram-editor-cancel'),
|
el: $('#id-btn-diagram-editor-cancel')
|
||||||
disabled: true
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$window.find('.tool.close').addClass('disabled');
|
|
||||||
this.$window.find('.dlg-btn').on('click', _.bind(this.onDlgBtnClick, this));
|
this.$window.find('.dlg-btn').on('click', _.bind(this.onDlgBtnClick, this));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@ define([
|
||||||
|
|
||||||
var templateRightBox = '<section>' +
|
var templateRightBox = '<section>' +
|
||||||
'<section id="box-doc-name">' +
|
'<section id="box-doc-name">' +
|
||||||
'<input type="text" id="rib-doc-name" spellcheck="false" data-can-copy="false"></input>' +
|
'<input type="text" id="rib-doc-name" spellcheck="false" data-can-copy="false" style="pointer-events: none;">' +
|
||||||
'</section>' +
|
'</section>' +
|
||||||
'<a id="rib-save-status" class="status-label locked"><%= textSaveEnd %></a>' +
|
'<a id="rib-save-status" class="status-label locked"><%= textSaveEnd %></a>' +
|
||||||
'<div class="hedset">' +
|
'<div class="hedset">' +
|
||||||
|
@ -95,6 +95,7 @@ define([
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'<div class="hedset">' +
|
'<div class="hedset">' +
|
||||||
'<div class="btn-slot" id="slot-btn-back"></div>' +
|
'<div class="btn-slot" id="slot-btn-back"></div>' +
|
||||||
|
'<div class="btn-slot" id="slot-btn-options"></div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'</section>';
|
'</section>';
|
||||||
|
|
||||||
|
@ -102,6 +103,18 @@ define([
|
||||||
'<div id="header-logo"><i /></div>' +
|
'<div id="header-logo"><i /></div>' +
|
||||||
'</section>';
|
'</section>';
|
||||||
|
|
||||||
|
var templateTitleBox = '<section id="box-document-title">' +
|
||||||
|
'<div class="hedset">' +
|
||||||
|
'<div class="btn-slot" id="slot-btn-dt-save"></div>' +
|
||||||
|
'<div class="btn-slot" id="slot-btn-dt-print"></div>' +
|
||||||
|
'<div class="btn-slot" id="slot-btn-dt-undo"></div>' +
|
||||||
|
'<div class="btn-slot" id="slot-btn-dt-redo"></div>' +
|
||||||
|
'</div>' +
|
||||||
|
'<div class="lr-separator"></div>' +
|
||||||
|
'<input type="text" id="title-doc-name" spellcheck="false" data-can-copy="false" style="pointer-events: none;">' +
|
||||||
|
'<label id="title-user-name" style="pointer-events: none;"></label>' +
|
||||||
|
'</section>';
|
||||||
|
|
||||||
function onAddUser(model, collection, opts) {
|
function onAddUser(model, collection, opts) {
|
||||||
if ( $userList ) {
|
if ( $userList ) {
|
||||||
var $ul = $userList.find('ul');
|
var $ul = $userList.find('ul');
|
||||||
|
@ -137,7 +150,7 @@ define([
|
||||||
function onResetUsers(collection, opts) {
|
function onResetUsers(collection, opts) {
|
||||||
var usercount = collection.getEditingCount();
|
var usercount = collection.getEditingCount();
|
||||||
if ( $userList ) {
|
if ( $userList ) {
|
||||||
if ( usercount > 1 || usercount > 0 && appConfig && !appConfig.isEdit) {
|
if ( usercount > 1 || usercount > 0 && appConfig && !appConfig.isEdit && !appConfig.canComments) {
|
||||||
$userList.html(templateUserList({
|
$userList.html(templateUserList({
|
||||||
users: collection.models,
|
users: collection.models,
|
||||||
usertpl: _.template(templateUserItem),
|
usertpl: _.template(templateUserItem),
|
||||||
|
@ -159,7 +172,8 @@ define([
|
||||||
};
|
};
|
||||||
|
|
||||||
function applyUsers(count) {
|
function applyUsers(count) {
|
||||||
if ( count > 1 || count > 0 && appConfig && !appConfig.isEdit) {
|
var has_edit_users = count > 1 || count > 0 && appConfig && !appConfig.isEdit && !appConfig.canComments; // has other user(s) who edit document
|
||||||
|
if ( has_edit_users ) {
|
||||||
$btnUsers
|
$btnUsers
|
||||||
.attr('data-toggle', 'dropdown')
|
.attr('data-toggle', 'dropdown')
|
||||||
.addClass('dropdown-toggle')
|
.addClass('dropdown-toggle')
|
||||||
|
@ -176,13 +190,13 @@ define([
|
||||||
}
|
}
|
||||||
|
|
||||||
$btnUsers.find('.caption')
|
$btnUsers.find('.caption')
|
||||||
.css({'font-size': ((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? '12px' : '14px'),
|
.css({'font-size': ((has_edit_users) ? '12px' : '14px'),
|
||||||
'margin-top': ((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? '0' : '-1px')})
|
'margin-top': ((has_edit_users) ? '0' : '-1px')})
|
||||||
.html((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? count : '+');
|
.html((has_edit_users) ? count : '+');
|
||||||
|
|
||||||
var usertip = $btnUsers.data('bs.tooltip');
|
var usertip = $btnUsers.data('bs.tooltip');
|
||||||
if ( usertip ) {
|
if ( usertip ) {
|
||||||
usertip.options.title = (count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? usertip.options.titleExt : usertip.options.titleNorm;
|
usertip.options.title = (has_edit_users) ? usertip.options.titleExt : usertip.options.titleNorm;
|
||||||
usertip.setContent();
|
usertip.setContent();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -204,6 +218,8 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function onAppShowed(config) {}
|
||||||
|
|
||||||
function onAppReady(mode) {
|
function onAppReady(mode) {
|
||||||
appConfig = mode;
|
appConfig = mode;
|
||||||
|
|
||||||
|
@ -232,7 +248,7 @@ define([
|
||||||
|
|
||||||
var editingUsers = storeUsers.getEditingCount();
|
var editingUsers = storeUsers.getEditingCount();
|
||||||
$btnUsers.tooltip({
|
$btnUsers.tooltip({
|
||||||
title: (editingUsers > 1 || editingUsers>0 && !appConfig.isEdit) ? me.tipViewUsers : me.tipAccessRights,
|
title: (editingUsers > 1 || editingUsers>0 && !appConfig.isEdit && !appConfig.canComments) ? me.tipViewUsers : me.tipAccessRights,
|
||||||
titleNorm: me.tipAccessRights,
|
titleNorm: me.tipAccessRights,
|
||||||
titleExt: me.tipViewUsers,
|
titleExt: me.tipViewUsers,
|
||||||
placement: 'bottom',
|
placement: 'bottom',
|
||||||
|
@ -248,7 +264,7 @@ define([
|
||||||
});
|
});
|
||||||
|
|
||||||
$labelChangeRights[(!mode.isOffline && !mode.isReviewOnly && mode.sharingSettingsUrl && mode.sharingSettingsUrl.length)?'show':'hide']();
|
$labelChangeRights[(!mode.isOffline && !mode.isReviewOnly && mode.sharingSettingsUrl && mode.sharingSettingsUrl.length)?'show':'hide']();
|
||||||
$panelUsers[(editingUsers > 1 || editingUsers > 0 && !appConfig.isEdit || !mode.isOffline && !mode.isReviewOnly && mode.sharingSettingsUrl && mode.sharingSettingsUrl.length) ? 'show' : 'hide']();
|
$panelUsers[(editingUsers > 1 || editingUsers > 0 && !appConfig.isEdit && !appConfig.canComments || !mode.isOffline && !mode.isReviewOnly && mode.sharingSettingsUrl && mode.sharingSettingsUrl.length) ? 'show' : 'hide']();
|
||||||
|
|
||||||
if ( $saveStatus ) {
|
if ( $saveStatus ) {
|
||||||
$saveStatus.attr('data-width', me.textSaveExpander);
|
$saveStatus.attr('data-width', me.textSaveExpander);
|
||||||
|
@ -261,6 +277,34 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( me.btnPrint ) {
|
||||||
|
me.btnPrint.updateHint(me.tipPrint + Common.Utils.String.platformKey('Ctrl+P'));
|
||||||
|
me.btnPrint.on('click', function (e) {
|
||||||
|
me.fireEvent('print', me);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( me.btnSave ) {
|
||||||
|
me.btnSave.updateHint(me.tipSave + Common.Utils.String.platformKey('Ctrl+S'));
|
||||||
|
me.btnSave.on('click', function (e) {
|
||||||
|
me.fireEvent('save', me);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( me.btnUndo ) {
|
||||||
|
me.btnUndo.updateHint(me.tipUndo + Common.Utils.String.platformKey('Ctrl+Z'));
|
||||||
|
me.btnUndo.on('click', function (e) {
|
||||||
|
me.fireEvent('undo', me);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( me.btnRedo ) {
|
||||||
|
me.btnRedo.updateHint(me.tipRedo + Common.Utils.String.platformKey('Ctrl+Y'));
|
||||||
|
me.btnRedo.on('click', function (e) {
|
||||||
|
me.fireEvent('redo', me);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if ( !mode.isEdit ) {
|
if ( !mode.isEdit ) {
|
||||||
if ( me.btnDownload ) {
|
if ( me.btnDownload ) {
|
||||||
me.btnDownload.updateHint(me.tipDownload);
|
me.btnDownload.updateHint(me.tipDownload);
|
||||||
|
@ -269,13 +313,6 @@ define([
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( me.btnPrint ) {
|
|
||||||
me.btnPrint.updateHint(me.tipPrint + Common.Utils.String.platformKey('Ctrl+P'));
|
|
||||||
me.btnPrint.on('click', function (e) {
|
|
||||||
me.fireEvent('print', me);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( me.btnEdit ) {
|
if ( me.btnEdit ) {
|
||||||
me.btnEdit.updateHint(me.tipGoEdit);
|
me.btnEdit.updateHint(me.tipGoEdit);
|
||||||
me.btnEdit.on('click', function (e) {
|
me.btnEdit.on('click', function (e) {
|
||||||
|
@ -283,6 +320,9 @@ define([
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( me.btnOptions )
|
||||||
|
me.btnOptions.updateHint(me.tipViewSettings);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onDocNameKeyDown(e) {
|
function onDocNameKeyDown(e) {
|
||||||
|
@ -322,7 +362,6 @@ define([
|
||||||
return {
|
return {
|
||||||
options: {
|
options: {
|
||||||
branding: {},
|
branding: {},
|
||||||
headerCaption: 'Default Caption',
|
|
||||||
documentCaption: '',
|
documentCaption: '',
|
||||||
canBack: false
|
canBack: false
|
||||||
},
|
},
|
||||||
|
@ -339,11 +378,9 @@ define([
|
||||||
|
|
||||||
initialize: function (options) {
|
initialize: function (options) {
|
||||||
var me = this;
|
var me = this;
|
||||||
this.options = this.options ? _({}).extend(this.options, options) : options;
|
this.options = this.options ? _.extend(this.options, options) : options;
|
||||||
|
|
||||||
this.headerCaption = this.options.headerCaption;
|
|
||||||
this.documentCaption = this.options.documentCaption;
|
this.documentCaption = this.options.documentCaption;
|
||||||
this.canBack = this.options.canBack;
|
|
||||||
this.branding = this.options.customization;
|
this.branding = this.options.customization;
|
||||||
this.isModified = false;
|
this.isModified = false;
|
||||||
|
|
||||||
|
@ -361,9 +398,20 @@ define([
|
||||||
reset : onResetUsers
|
reset : onResetUsers
|
||||||
});
|
});
|
||||||
|
|
||||||
|
me.btnOptions = new Common.UI.Button({
|
||||||
|
cls: 'btn-header no-caret',
|
||||||
|
iconCls: 'svgicon svg-btn-options',
|
||||||
|
menu: true
|
||||||
|
});
|
||||||
|
|
||||||
|
me.mnuZoom = {options: {value: 100}};
|
||||||
|
|
||||||
Common.NotificationCenter.on('app:ready', function(mode) {
|
Common.NotificationCenter.on('app:ready', function(mode) {
|
||||||
Common.Utils.asyncCall(onAppReady, me, mode);
|
Common.Utils.asyncCall(onAppReady, me, mode);
|
||||||
});
|
});
|
||||||
|
Common.NotificationCenter.on('app:face', function(mode) {
|
||||||
|
Common.Utils.asyncCall(onAppShowed, me, mode);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function (el, role) {
|
render: function (el, role) {
|
||||||
|
@ -373,6 +421,16 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
getPanel: function (role, config) {
|
getPanel: function (role, config) {
|
||||||
|
var me = this;
|
||||||
|
|
||||||
|
function createTitleButton(iconid, slot, disabled) {
|
||||||
|
return (new Common.UI.Button({
|
||||||
|
cls: 'btn-header',
|
||||||
|
iconCls: 'svgicon ' + iconid,
|
||||||
|
disabled: disabled === true
|
||||||
|
})).render(slot);
|
||||||
|
}
|
||||||
|
|
||||||
if ( role == 'left' && (!config || !config.isDesktopApp)) {
|
if ( role == 'left' && (!config || !config.isDesktopApp)) {
|
||||||
$html = $(templateLeftBox);
|
$html = $(templateLeftBox);
|
||||||
this.logo = $html.find('#header-logo');
|
this.logo = $html.find('#header-logo');
|
||||||
|
@ -391,64 +449,43 @@ define([
|
||||||
textSaveEnd: this.textSaveEnd
|
textSaveEnd: this.textSaveEnd
|
||||||
}));
|
}));
|
||||||
|
|
||||||
if ( this.labelDocName ) this.labelDocName.off();
|
if ( !me.labelDocName ) {
|
||||||
this.labelDocName = $html.find('#rib-doc-name');
|
me.labelDocName = $html.find('#rib-doc-name');
|
||||||
// this.labelDocName.attr('maxlength', 50);
|
// this.labelDocName.attr('maxlength', 50);
|
||||||
this.labelDocName.text = function (text) {
|
me.labelDocName.text = function (text) {
|
||||||
this.val(text).attr('size', text.length);
|
this.val(text).attr('size', text.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( this.documentCaption ) {
|
if ( me.documentCaption ) {
|
||||||
this.labelDocName.text( this.documentCaption );
|
me.labelDocName.text(me.documentCaption);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !_.isUndefined(this.options.canRename) ) {
|
if ( !_.isUndefined(this.options.canRename) ) {
|
||||||
this.setCanRename(this.options.canRename);
|
this.setCanRename(this.options.canRename);
|
||||||
}
|
}
|
||||||
|
|
||||||
$saveStatus = $html.find('#rib-save-status');
|
// $saveStatus = $html.find('#rib-save-status');
|
||||||
$saveStatus.hide();
|
$html.find('#rib-save-status').hide();
|
||||||
|
// if ( config.isOffline ) $saveStatus = false;
|
||||||
|
|
||||||
if ( config && config.isDesktopApp ) {
|
if ( this.options.canBack === true ) {
|
||||||
$html.addClass('desktop');
|
me.btnGoBack.render($html.find('#slot-btn-back'));
|
||||||
$html.find('#slot-btn-back').hide();
|
|
||||||
this.labelDocName.hide();
|
|
||||||
|
|
||||||
if ( config.isOffline )
|
|
||||||
$saveStatus = false;
|
|
||||||
} else {
|
} else {
|
||||||
if ( this.canBack === true ) {
|
$html.find('#slot-btn-back').hide();
|
||||||
this.btnGoBack.render($html.find('#slot-btn-back'));
|
|
||||||
} else {
|
|
||||||
$html.find('#slot-btn-back').hide();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !config.isEdit ) {
|
if ( !config.isEdit ) {
|
||||||
if ( (config.canDownload || config.canDownloadOrigin) && !config.isOffline ) {
|
if ( (config.canDownload || config.canDownloadOrigin) && !config.isOffline )
|
||||||
this.btnDownload = new Common.UI.Button({
|
this.btnDownload = createTitleButton('svg-btn-download', $html.find('#slot-hbtn-download'));
|
||||||
cls: 'btn-header',
|
|
||||||
iconCls: 'svgicon svg-btn-download'
|
|
||||||
});
|
|
||||||
|
|
||||||
this.btnDownload.render($html.find('#slot-hbtn-download'));
|
if ( config.canPrint )
|
||||||
}
|
this.btnPrint = createTitleButton('svg-btn-print', $html.find('#slot-hbtn-print'));
|
||||||
|
|
||||||
if ( config.canPrint ) {
|
if ( config.canEdit && config.canRequestEditRights )
|
||||||
this.btnPrint = new Common.UI.Button({
|
this.btnEdit = createTitleButton('svg-btn-edit', $html.find('#slot-hbtn-edit'));
|
||||||
cls: 'btn-header',
|
} else {
|
||||||
iconCls: 'svgicon svg-btn-print'
|
me.btnOptions.render($html.find('#slot-btn-options'));
|
||||||
});
|
|
||||||
|
|
||||||
this.btnPrint.render($html.find('#slot-hbtn-print'));
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( config.canEdit && config.canRequestEditRights ) {
|
|
||||||
(this.btnEdit = new Common.UI.Button({
|
|
||||||
cls: 'btn-header',
|
|
||||||
iconCls: 'svgicon svg-btn-edit'
|
|
||||||
})).render($html.find('#slot-hbtn-edit'));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$userList = $html.find('.cousers-list');
|
$userList = $html.find('.cousers-list');
|
||||||
|
@ -457,6 +494,40 @@ define([
|
||||||
|
|
||||||
$panelUsers.hide();
|
$panelUsers.hide();
|
||||||
|
|
||||||
|
return $html;
|
||||||
|
} else
|
||||||
|
if ( role == 'title' ) {
|
||||||
|
var $html = $(_.template(templateTitleBox)());
|
||||||
|
|
||||||
|
!!me.labelDocName && me.labelDocName.hide().off(); // hide document title if it was created in right box
|
||||||
|
me.labelDocName = $html.find('> #title-doc-name');
|
||||||
|
me.labelDocName.text = function (str) {this.val(str);}; // redefine text function to lock temporaly rename docuemnt option
|
||||||
|
me.labelDocName.text( me.documentCaption );
|
||||||
|
|
||||||
|
me.labelUserName = $('> #title-user-name', $html);
|
||||||
|
me.setUserName(me.options.userName);
|
||||||
|
|
||||||
|
if ( config.canPrint && config.isEdit ) {
|
||||||
|
me.btnPrint = createTitleButton('svg-btn-print', $('#slot-btn-dt-print', $html));
|
||||||
|
}
|
||||||
|
|
||||||
|
me.btnSave = createTitleButton('svg-btn-save', $('#slot-btn-dt-save', $html), true);
|
||||||
|
me.btnUndo = createTitleButton('svg-btn-undo', $('#slot-btn-dt-undo', $html), true);
|
||||||
|
me.btnRedo = createTitleButton('svg-btn-redo', $('#slot-btn-dt-redo', $html), true);
|
||||||
|
|
||||||
|
if ( me.btnSave.$icon.is('svg') ) {
|
||||||
|
me.btnSave.$icon.addClass('icon-save');
|
||||||
|
var _create_use = function (extid, intid) {
|
||||||
|
var _use = document.createElementNS('http://www.w3.org/2000/svg', 'use');
|
||||||
|
_use.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', extid);
|
||||||
|
_use.setAttribute('id', intid);
|
||||||
|
|
||||||
|
return $(_use);
|
||||||
|
};
|
||||||
|
|
||||||
|
_create_use('#svg-btn-save-coauth', 'coauth').appendTo(me.btnSave.$icon);
|
||||||
|
_create_use('#svg-btn-save-sync', 'sync').appendTo(me.btnSave.$icon);
|
||||||
|
}
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -483,16 +554,6 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
setHeaderCaption: function (value) {
|
|
||||||
this.headerCaption = value;
|
|
||||||
|
|
||||||
return value;
|
|
||||||
},
|
|
||||||
|
|
||||||
getHeaderCaption: function () {
|
|
||||||
return this.headerCaption;
|
|
||||||
},
|
|
||||||
|
|
||||||
setDocumentCaption: function(value) {
|
setDocumentCaption: function(value) {
|
||||||
!value && (value = '');
|
!value && (value = '');
|
||||||
|
|
||||||
|
@ -522,15 +583,16 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
setCanBack: function (value, text) {
|
setCanBack: function (value, text) {
|
||||||
this.canBack = value;
|
this.options.canBack = value;
|
||||||
|
|
||||||
this.btnGoBack[value ? 'show' : 'hide']();
|
this.btnGoBack[value ? 'show' : 'hide']();
|
||||||
if (value)
|
if (value)
|
||||||
this.btnGoBack.updateHint((text && typeof text == 'string') ? text : this.textBack);
|
this.btnGoBack.updateHint((text && typeof text == 'string') ? text : this.textBack);
|
||||||
|
|
||||||
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
getCanBack: function () {
|
getCanBack: function () {
|
||||||
return this.canBack;
|
return this.options.canBack;
|
||||||
},
|
},
|
||||||
|
|
||||||
setCanRename: function (rename) {
|
setCanRename: function (rename) {
|
||||||
|
@ -581,6 +643,61 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
setUserName: function(name) {
|
||||||
|
if ( !!this.labelUserName ) {
|
||||||
|
if ( !!name ) {
|
||||||
|
this.labelUserName.text(name).show();
|
||||||
|
} else this.labelUserName.hide();
|
||||||
|
} else {
|
||||||
|
this.options.userName = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
|
||||||
|
getButton: function(type) {
|
||||||
|
if (type == 'save')
|
||||||
|
return this.btnSave;
|
||||||
|
},
|
||||||
|
|
||||||
|
lockHeaderBtns: function (alias, lock) {
|
||||||
|
var me = this;
|
||||||
|
if ( alias == 'users' ) {
|
||||||
|
if ( lock )
|
||||||
|
$btnUsers.addClass('disabled').attr('disabled', 'disabled'); else
|
||||||
|
$btnUsers.removeClass('disabled').attr('disabled', '');
|
||||||
|
} else {
|
||||||
|
function _lockButton(btn) {
|
||||||
|
if ( btn ) {
|
||||||
|
if ( lock ) {
|
||||||
|
btn.keepState = {
|
||||||
|
disabled: btn.isDisabled()
|
||||||
|
};
|
||||||
|
btn.setDisabled( true );
|
||||||
|
} else {
|
||||||
|
btn.setDisabled( btn.keepState && btn.keepState.disabled || lock);
|
||||||
|
delete btn.keepState;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ( alias ) {
|
||||||
|
case 'undo': _lockButton(me.btnUndo); break;
|
||||||
|
case 'redo': _lockButton(me.btnRedo); break;
|
||||||
|
case 'opts': _lockButton(me.btnOptions); break;
|
||||||
|
default: break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
fakeMenuItem: function() {
|
||||||
|
return {
|
||||||
|
conf: {checked: false},
|
||||||
|
setChecked: function (val) { this.conf.checked = val; },
|
||||||
|
isChecked: function () { return this.conf.checked; }
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
textBack: 'Go to Documents',
|
textBack: 'Go to Documents',
|
||||||
txtRename: 'Rename',
|
txtRename: 'Rename',
|
||||||
textSaveBegin: 'Saving...',
|
textSaveBegin: 'Saving...',
|
||||||
|
@ -593,7 +710,16 @@ define([
|
||||||
tipViewUsers: 'View users and manage document access rights',
|
tipViewUsers: 'View users and manage document access rights',
|
||||||
tipDownload: 'Download file',
|
tipDownload: 'Download file',
|
||||||
tipPrint: 'Print file',
|
tipPrint: 'Print file',
|
||||||
tipGoEdit: 'Edit current file'
|
tipGoEdit: 'Edit current file',
|
||||||
|
tipSave: 'Save',
|
||||||
|
tipUndo: 'Undo',
|
||||||
|
tipRedo: 'Redo',
|
||||||
|
textCompactView: 'Hide Toolbar',
|
||||||
|
textHideStatusBar: 'Hide Status Bar',
|
||||||
|
textHideLines: 'Hide Rulers',
|
||||||
|
textZoom: 'Zoom',
|
||||||
|
textAdvSettings: 'Advanced Settings',
|
||||||
|
tipViewSettings: 'View Settings'
|
||||||
}
|
}
|
||||||
}(), Common.Views.Header || {}))
|
}(), Common.Views.Header || {}))
|
||||||
});
|
});
|
||||||
|
|
|
@ -154,11 +154,11 @@ define([
|
||||||
} else {
|
} else {
|
||||||
this.initCodePages();
|
this.initCodePages();
|
||||||
this.updatePreview();
|
this.updatePreview();
|
||||||
|
this.onPrimary = function() {
|
||||||
|
me._handleInput('ok');
|
||||||
|
return false;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
this.onPrimary = function() {
|
|
||||||
me._handleInput('ok');
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -393,9 +393,9 @@ define([
|
||||||
menuStyle: 'min-width: 100px;',
|
menuStyle: 'min-width: 100px;',
|
||||||
cls: 'input-group-nr',
|
cls: 'input-group-nr',
|
||||||
data: [
|
data: [
|
||||||
{value: 4, displayValue: ','},
|
{value: 4, displayValue: this.txtComma},
|
||||||
{value: 2, displayValue: ';'},
|
{value: 2, displayValue: this.txtSemicolon},
|
||||||
{value: 3, displayValue: ':'},
|
{value: 3, displayValue: this.txtColon},
|
||||||
{value: 1, displayValue: this.txtTab},
|
{value: 1, displayValue: this.txtTab},
|
||||||
{value: 5, displayValue: this.txtSpace},
|
{value: 5, displayValue: this.txtSpace},
|
||||||
{value: -1, displayValue: this.txtOther}],
|
{value: -1, displayValue: this.txtOther}],
|
||||||
|
@ -524,7 +524,10 @@ define([
|
||||||
txtOther: 'Other',
|
txtOther: 'Other',
|
||||||
txtIncorrectPwd: 'Password is incorrect.',
|
txtIncorrectPwd: 'Password is incorrect.',
|
||||||
closeButtonText: 'Close File',
|
closeButtonText: 'Close File',
|
||||||
txtPreview: 'Preview'
|
txtPreview: 'Preview',
|
||||||
|
txtComma: 'Comma',
|
||||||
|
txtColon: 'Colon',
|
||||||
|
txtSemicolon: 'Semicolon'
|
||||||
|
|
||||||
}, Common.Views.OpenDialog || {}));
|
}, Common.Views.OpenDialog || {}));
|
||||||
});
|
});
|
|
@ -11,10 +11,10 @@
|
||||||
<polygon points="13,31 10,28 10,30 6,30 6,32 10,32 10,34 "/>
|
<polygon points="13,31 10,28 10,30 6,30 6,32 10,32 10,34 "/>
|
||||||
</symbol>
|
</symbol>
|
||||||
<symbol id="svg-btn-users" viewBox="0 0 20 20">
|
<symbol id="svg-btn-users" viewBox="0 0 20 20">
|
||||||
<path fill="#FFFFFF" d="M7,3.999c1.103,0,2,0.897,2,2C9,7.103,8.103,8,7,8C5.897,8,5,7.103,5,5.999C5,4.896,5.897,3.999,7,3.999 M7,2.999c-1.657,0-3,1.344-3,3S5.343,9,7,9c1.657,0,3-1.345,3-3.001S8.657,2.999,7,2.999L7,2.999z"/>
|
<path d="M7,3.999c1.103,0,2,0.897,2,2C9,7.103,8.103,8,7,8C5.897,8,5,7.103,5,5.999C5,4.896,5.897,3.999,7,3.999 M7,2.999c-1.657,0-3,1.344-3,3S5.343,9,7,9c1.657,0,3-1.345,3-3.001S8.657,2.999,7,2.999L7,2.999z"/>
|
||||||
<path fill="#FFFFFF" d="M7,11.666c4.185,0,4.909,2.268,5,2.642V16H2v-1.688C2.1,13.905,2.841,11.666,7,11.666 M7,10.666 c-5.477,0-6,3.545-6,3.545V17h12v-2.789C13,14.211,12.477,10.666,7,10.666L7,10.666z"/>
|
<path d="M7,11.666c4.185,0,4.909,2.268,5,2.642V16H2v-1.688C2.1,13.905,2.841,11.666,7,11.666 M7,10.666 c-5.477,0-6,3.545-6,3.545V17h12v-2.789C13,14.211,12.477,10.666,7,10.666L7,10.666z"/>
|
||||||
<circle fill="#FFFFFF" cx="14.5" cy="8.001" r="2.5"/>
|
<circle cx="14.5" cy="8.001" r="2.5"/>
|
||||||
<path fill="#FFFFFF" d="M14.5,11.863c-0.566,0-1.056,0.059-1.49,0.152c0.599,0.726,0.895,1.481,0.979,2.049L14,14.138V17h5v-2.263 C19,14.737,18.607,11.863,14.5,11.863z"/>
|
<path d="M14.5,11.863c-0.566,0-1.056,0.059-1.49,0.152c0.599,0.726,0.895,1.481,0.979,2.049L14,14.138V17h5v-2.263 C19,14.737,18.607,11.863,14.5,11.863z"/>
|
||||||
</symbol>
|
</symbol>
|
||||||
<symbol id="svg-btn-download" viewBox="0 0 20 20">
|
<symbol id="svg-btn-download" viewBox="0 0 20 20">
|
||||||
<rect x="4" y="16" width="12" height="1"/>
|
<rect x="4" y="16" width="12" height="1"/>
|
||||||
|
@ -32,4 +32,39 @@
|
||||||
<path d="M15.273,8.598l-2.121-2.121l1.414-1.414c0.391-0.391,1.023-0.391,1.414,0l0.707,0.707
|
<path d="M15.273,8.598l-2.121-2.121l1.414-1.414c0.391-0.391,1.023-0.391,1.414,0l0.707,0.707
|
||||||
c0.391,0.391,0.391,1.023,0,1.414L15.273,8.598z"/>
|
c0.391,0.391,0.391,1.023,0,1.414L15.273,8.598z"/>
|
||||||
</symbol>
|
</symbol>
|
||||||
|
<symbol id="svg-btn-save" viewBox="0 0 20 20">
|
||||||
|
<rect x="7" y="13" width="6" height="1"/>
|
||||||
|
<rect x="7" y="11" width="6" height="1"/>
|
||||||
|
<path d="M13,4H5C4.447,4,4,4.447,4,5v10c0,0.553,0.447,1,1,1h10c0.553,0,1-0.447,1-1V7L13,4z M11,5v2h-1V5H11z
|
||||||
|
M15,15H5V5h2v3h5V5h0.5L15,7.5V15z"/>
|
||||||
|
</symbol>
|
||||||
|
<symbol id="svg-btn-save-coauth" viewBox="0 0 20 20">
|
||||||
|
<path d="M14,9c-2.209,0-4,1.791-4,4c0,0.348,0.059,0.679,0.142,1h1.043C11.072,13.686,11,13.353,11,13
|
||||||
|
c0-1.654,1.346-3,3-3s3,1.346,3,3s-1.346,3-3,3v-1l-2,1.5l2,1.5v-1c2.209,0,4-1.791,4-4S16.209,9,14,9z"/>
|
||||||
|
<rect x="6" y="13" width="3" height="1"/>
|
||||||
|
<rect x="6" y="11" width="3" height="1"/>
|
||||||
|
<path d="M9,15H4V5h2v3h3h2V5h0.5L14,7.5V8h1V7l-3-3H4C3.447,4,3,4.447,3,5v10c0,0.553,0.447,1,1,1h5V15z M9,5h1v2H9 V5z"/>
|
||||||
|
</symbol>
|
||||||
|
<symbol id="svg-btn-save-sync" viewBox="0 0 20 20">
|
||||||
|
<path fill="#FFD112" d="M18,16c0.553,0,1-0.447,1-1v-5c0-0.553-0.447-1-1-1h-7c-0.553,0-1,0.447-1,1v5c0,0.553,0.447,1,1,1h1
|
||||||
|
l1.5,2l1.5-2H18z"/>
|
||||||
|
<rect x="12" y="11" fill="#444444" width="5" height="1"/>
|
||||||
|
<rect x="12" y="13" fill="#444444" width="5" height="1"/>
|
||||||
|
<rect x="6" y="13" width="3" height="1"/>
|
||||||
|
<rect x="6" y="11" width="3" height="1"/>
|
||||||
|
<path d="M9,15H4V5h2v3h3h2V5h0.5L14,7.5V8h1V7l-3-3H4C3.447,4,3,4.447,3,5v10c0,0.553,0.447,1,1,1h5V15z M9,5h1v2H9 V5z"/>
|
||||||
|
</symbol>
|
||||||
|
<symbol id="svg-btn-undo" viewBox="0 0 20 20">
|
||||||
|
<path d="M11.355,7.625c-1.965,0-3.864,0.777-5.151,2.033L4,7.625V14h6.407l-2.091-2.219
|
||||||
|
c0.845-1.277,2.313-2.215,3.99-2.215c2.461,0,5.405,1.78,5.694,4.119C17.601,10.291,14.966,7.625,11.355,7.625z"/>
|
||||||
|
</symbol>
|
||||||
|
<symbol id="svg-btn-redo" viewBox="0 0 20 20">
|
||||||
|
<path d="M10.645,7.625c1.965,0,3.863,0.777,5.15,2.033L18,7.625V14h-6.406l2.09-2.219
|
||||||
|
c-0.845-1.277-2.313-2.215-3.989-2.215c-2.461,0-5.405,1.78-5.694,4.119C4.399,10.291,7.034,7.625,10.645,7.625z"/>
|
||||||
|
</symbol>
|
||||||
|
<symbol id="svg-btn-options" viewBox="0 0 20 20">
|
||||||
|
<rect x="4" y="6" width="12" height="1"/>
|
||||||
|
<rect x="4" y="9" width="12" height="1"/>
|
||||||
|
<rect x="4" y="12" width="12" height="1"/>
|
||||||
|
</symbol>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 4.7 KiB |
|
@ -36,12 +36,16 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
padding-top: 15px;
|
padding: 15px 15px 0;
|
||||||
|
|
||||||
&.center {
|
&.center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
&.justify {
|
&.justify {
|
||||||
padding-left: 30px;
|
padding-left: 30px;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
|
|
|
@ -512,6 +512,12 @@
|
||||||
border: 1px solid @input-border;
|
border: 1px solid @input-border;
|
||||||
.border-radius(@border-radius-small);
|
.border-radius(@border-radius-small);
|
||||||
|
|
||||||
|
&.auto {
|
||||||
|
width: auto;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover:not(.disabled),
|
&:hover:not(.disabled),
|
||||||
.over:not(.disabled) {
|
.over:not(.disabled) {
|
||||||
background-color: @secondary !important;
|
background-color: @secondary !important;
|
||||||
|
@ -520,6 +526,7 @@
|
||||||
&:active:not(.disabled),
|
&:active:not(.disabled),
|
||||||
&.active:not(.disabled) {
|
&.active:not(.disabled) {
|
||||||
background-color: @primary !important;
|
background-color: @primary !important;
|
||||||
|
border-color: @primary;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,6 @@
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&.left {
|
&.left {
|
||||||
|
@ -53,11 +52,6 @@
|
||||||
&.right {
|
&.right {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
|
|
||||||
.desktop {
|
|
||||||
padding: 10px 0;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label {
|
.status-label {
|
||||||
|
@ -68,6 +62,12 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dropdown-menu {
|
||||||
|
label {
|
||||||
|
color: @gray-deep;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.btn-users,
|
.btn-users,
|
||||||
.btn-header {
|
.btn-header {
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:active {
|
&:active, &.active {
|
||||||
&:not(.disabled) {
|
&:not(.disabled) {
|
||||||
background-color: rgba(0,0,0,0.2);
|
background-color: rgba(0,0,0,0.2);
|
||||||
}
|
}
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
|
|
||||||
#box-doc-name {
|
#box-doc-name {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
text-align: center;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
#rib-doc-name {
|
#rib-doc-name {
|
||||||
|
@ -151,7 +151,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#tlb-box-users {
|
#tlb-box-users {
|
||||||
height: @height-tabs;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#tlb-change-rights {
|
#tlb-change-rights {
|
||||||
|
@ -159,9 +158,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-users {
|
.btn-users {
|
||||||
display: inline-flex;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 6px 12px;
|
padding: 0 12px;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -173,6 +174,11 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.disabled {
|
||||||
|
opacity: 0.65;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cousers-menu {
|
.cousers-menu {
|
||||||
|
@ -185,6 +191,12 @@
|
||||||
width: 285px;
|
width: 285px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
||||||
|
z-index: 1042;
|
||||||
|
|
||||||
|
.top-title & {
|
||||||
|
top: @height-title + @height-tabs - 8px;
|
||||||
|
}
|
||||||
|
|
||||||
> label {
|
> label {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
}
|
}
|
||||||
|
@ -235,16 +247,113 @@
|
||||||
|
|
||||||
.hedset {
|
.hedset {
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
.btn-group {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-header {
|
.btn-header {
|
||||||
border: 0 none;
|
height: 100%;
|
||||||
height: @height-tabs;
|
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
padding: 6px 12px;
|
width: 40px;
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
svg.icon {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn&[disabled],
|
||||||
|
&.disabled {
|
||||||
|
opacity: 0.65;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
&:not(.disabled) {
|
||||||
|
background-color: rgba(255,255,255,0.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
&:not(.disabled) {
|
||||||
|
background-color: rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.no-caret {
|
||||||
|
.inner-box-caret {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#box-document-title {
|
||||||
|
background-color: @tabs-bg-color;
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
color:#fff;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.btn-slot {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg.icon {
|
||||||
|
fill: #fff;
|
||||||
|
|
||||||
|
&.icon-save {
|
||||||
|
&.btn-save-coauth, &.btn-synch {
|
||||||
|
use:first-child {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.btn-save-coauth) {
|
||||||
|
use#coauth {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:not(.btn-synch) {
|
||||||
|
use#sync {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#title-doc-name {
|
||||||
|
position: absolute;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 12px;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background-color: transparent;
|
||||||
|
border: 0 none;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
#title-user-name {
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
text-align: right;
|
||||||
|
font-size: 11px;
|
||||||
|
max-width: 50%;
|
||||||
|
height: 100%;
|
||||||
|
padding: 0 12px;
|
||||||
|
line-height: @height-title;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lr-separator {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -9,46 +9,54 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.right {
|
&.right {
|
||||||
margin: -32px 0 0 15px;
|
margin: 0 0 0 15px;
|
||||||
|
|
||||||
.tip-arrow {
|
.tip-arrow {
|
||||||
left: -15px;
|
left: -15px;
|
||||||
top: 20px;
|
top: 0;
|
||||||
width: 15px;
|
width: 16px;
|
||||||
height: 30px;
|
height: 15px;
|
||||||
|
.box-shadow(0 -5px 8px -5px rgba(0, 0, 0, 0.2));
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
top: 5px;
|
top: -7px;
|
||||||
left: 8px;
|
left: 7px;
|
||||||
|
width: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.left {
|
&.left {
|
||||||
margin: -32px 15px 0 0;
|
margin: 0 15px 0 0;
|
||||||
|
|
||||||
.tip-arrow {
|
.tip-arrow {
|
||||||
right: -15px;
|
right: -15px;
|
||||||
top: 20px;
|
top: 0;
|
||||||
width: 15px;
|
width: 16px;
|
||||||
height: 30px;
|
height: 15px;
|
||||||
|
.box-shadow(0 -5px 8px -5px rgba(0, 0, 0, 0.2));
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
top: 5px;
|
top: -7px;
|
||||||
left: -8px;
|
left: -7px;
|
||||||
|
width: 15px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.top {
|
&.top {
|
||||||
margin: 0 -32px 15px 0;
|
margin: 0 0 15px 0;
|
||||||
|
|
||||||
.tip-arrow {
|
.tip-arrow {
|
||||||
right: 15px;
|
right: 0;
|
||||||
bottom: -15px;
|
bottom: -15px;
|
||||||
width: 30px;
|
width: 15px;
|
||||||
height: 15px;
|
height: 15px;
|
||||||
|
.box-shadow(5px 0 8px -5px rgba(0, 0, 0, 0.2));
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
top: -8px;
|
top: -8px;
|
||||||
left: 5px;
|
left: 8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -60,6 +68,18 @@
|
||||||
background-color: #fcfed7;
|
background-color: #fcfed7;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
|
|
||||||
|
.right & {
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left & {
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top & {
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.box-shadow(0 4px 15px -2px rgba(0, 0, 0, 0.5));
|
.box-shadow(0 4px 15px -2px rgba(0, 0, 0, 0.5));
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
@height-title: 28px;
|
||||||
@height-tabs: 32px;
|
@height-tabs: 32px;
|
||||||
@height-controls: 67px;
|
@height-controls: 67px;
|
||||||
|
|
||||||
|
@ -21,11 +22,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&:not(.expanded):not(.cover){
|
&:not(.expanded):not(.cover){
|
||||||
.ribtab.active {
|
.ribtab.active {
|
||||||
> a {
|
> a {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,90 +59,73 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
> ul {
|
> ul {
|
||||||
padding: 0;
|
padding: 4px 0 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
display: inline-block;
|
|
||||||
height: 100%;
|
|
||||||
//background-color: #a6c995;
|
|
||||||
|
|
||||||
position: relative;
|
|
||||||
.tab-bg {
|
|
||||||
position: absolute;
|
|
||||||
height: 28px;
|
|
||||||
width: 100%;
|
|
||||||
top: 4px;
|
|
||||||
background-color: @tabs-bg-color;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
li {
|
||||||
.tab-bg {
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
background-color: rgba(255,255,255,0.2);
|
background-color: rgba(255,255,255,0.2);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
.tab-bg {
|
|
||||||
background-color: @gray-light;
|
background-color: @gray-light;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
> a {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0 12px;
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: default;
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: center;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
> a {
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:not(.short) {
|
||||||
> a {
|
.scroll {
|
||||||
display: inline-block;
|
display: none;
|
||||||
line-height: @height-tabs;
|
}
|
||||||
height: 100%;
|
}
|
||||||
padding: 1px 12px;
|
|
||||||
text-decoration: none;
|
.scroll {
|
||||||
cursor: default;
|
line-height: @height-tabs;
|
||||||
font-size: 12px;
|
min-width: 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #fff;
|
z-index: 1;
|
||||||
|
cursor: pointer;
|
||||||
position: relative;
|
color: #fff;
|
||||||
}
|
|
||||||
|
&:hover {
|
||||||
&.active {
|
text-decoration: none;
|
||||||
> a {
|
}
|
||||||
color: #444;
|
|
||||||
|
&.left{
|
||||||
|
box-shadow: 5px 0 20px 5px @tabs-bg-color
|
||||||
|
}
|
||||||
|
&.right{
|
||||||
|
box-shadow: -5px 0 20px 5px @tabs-bg-color
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&:not(.short) {
|
|
||||||
.scroll {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.scroll {
|
|
||||||
line-height: @height-tabs;
|
|
||||||
min-width: 20px;
|
|
||||||
text-align: center;
|
|
||||||
z-index: 1;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #fff;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.left{
|
|
||||||
box-shadow: 5px 0 20px 5px @tabs-bg-color
|
|
||||||
}
|
|
||||||
&.right{
|
|
||||||
box-shadow: -5px 0 20px 5px @tabs-bg-color
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.box-controls {
|
.box-controls {
|
||||||
//height: @height-controls; // button has strange offset in IE when odd height
|
//height: @height-controls; // button has strange offset in IE when odd height
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
|
@ -229,20 +213,42 @@
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.top-title > & {
|
||||||
|
&:not(.folded) {
|
||||||
|
height: 28 + @height-controls;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.folded {
|
||||||
|
height: 28px;
|
||||||
|
|
||||||
|
&.expanded {
|
||||||
|
height: 28 + @height-controls;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs > ul {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-tabs {
|
||||||
|
height: 28px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.toolbar-fullview-panel {
|
.toolbar-fullview-panel {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: @height-tabs;
|
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 1041;
|
z-index: 102;
|
||||||
}
|
}
|
||||||
|
|
||||||
.toolbar {
|
.toolbar {
|
||||||
&.cover {
|
&.cover {
|
||||||
ul {
|
ul {
|
||||||
z-index: 1042;
|
z-index: 102;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -311,3 +317,4 @@
|
||||||
.button-normal-icon(~'x-huge .btn-contents', 53, @toolbar-big-icon-size);
|
.button-normal-icon(~'x-huge .btn-contents', 53, @toolbar-big-icon-size);
|
||||||
.button-normal-icon(btn-controls, 54, @toolbar-big-icon-size);
|
.button-normal-icon(btn-controls, 54, @toolbar-big-icon-size);
|
||||||
.button-normal-icon(~'x-huge .btn-select-pivot', 55, @toolbar-big-icon-size);
|
.button-normal-icon(~'x-huge .btn-select-pivot', 55, @toolbar-big-icon-size);
|
||||||
|
.button-normal-icon(~'x-huge .btn-bookmarks', 56, @toolbar-big-icon-size);
|
||||||
|
|
|
@ -220,6 +220,9 @@ var ApplicationController = new(function(){
|
||||||
|
|
||||||
hidePreloader();
|
hidePreloader();
|
||||||
|
|
||||||
|
var zf = (config.customization && config.customization.zoom ? parseInt(config.customization.zoom) : -2);
|
||||||
|
(zf == -1) ? api.zoomFitToPage() : ((zf == -2) ? api.zoomFitToWidth() : api.zoom(zf>0 ? zf : 100));
|
||||||
|
|
||||||
if ( !embedConfig.shareUrl )
|
if ( !embedConfig.shareUrl )
|
||||||
$('#idt-share').hide();
|
$('#idt-share').hide();
|
||||||
|
|
||||||
|
@ -338,7 +341,6 @@ var ApplicationController = new(function(){
|
||||||
api.asc_setViewMode(true);
|
api.asc_setViewMode(true);
|
||||||
api.asc_LoadDocument();
|
api.asc_LoadDocument();
|
||||||
api.Resize();
|
api.Resize();
|
||||||
api.zoomFitToWidth();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showMask() {
|
function showMask() {
|
||||||
|
|
|
@ -203,6 +203,7 @@ require([
|
||||||
,'common/main/lib/controller/ExternalMergeEditor'
|
,'common/main/lib/controller/ExternalMergeEditor'
|
||||||
,'common/main/lib/controller/ReviewChanges'
|
,'common/main/lib/controller/ReviewChanges'
|
||||||
,'common/main/lib/controller/Protection'
|
,'common/main/lib/controller/Protection'
|
||||||
|
,'common/main/lib/controller/Desktop'
|
||||||
], function() {
|
], function() {
|
||||||
app.start();
|
app.start();
|
||||||
});
|
});
|
||||||
|
|
|
@ -46,6 +46,7 @@ define([
|
||||||
var Common = {};
|
var Common = {};
|
||||||
|
|
||||||
Common.Collections = Common.Collections || {};
|
Common.Collections = Common.Collections || {};
|
||||||
|
DE.Collections = DE.Collections || {};
|
||||||
|
|
||||||
DE.Collections.ShapeGroups = Backbone.Collection.extend({
|
DE.Collections.ShapeGroups = Backbone.Collection.extend({
|
||||||
model: DE.Models.ShapeGroup
|
model: DE.Models.ShapeGroup
|
||||||
|
|
|
@ -62,6 +62,7 @@ define([
|
||||||
},
|
},
|
||||||
'Common.Views.Header': {
|
'Common.Views.Header': {
|
||||||
'click:users': _.bind(this.clickStatusbarUsers, this),
|
'click:users': _.bind(this.clickStatusbarUsers, this),
|
||||||
|
'file:settings': _.bind(this.clickToolbarSettings,this),
|
||||||
'history:show': function () {
|
'history:show': function () {
|
||||||
if ( !this.leftMenu.panelHistory.isVisible() )
|
if ( !this.leftMenu.panelHistory.isVisible() )
|
||||||
this.clickMenuFileItem('header', 'history');
|
this.clickMenuFileItem('header', 'history');
|
||||||
|
@ -91,7 +92,8 @@ define([
|
||||||
'Toolbar': {
|
'Toolbar': {
|
||||||
'file:settings': _.bind(this.clickToolbarSettings,this),
|
'file:settings': _.bind(this.clickToolbarSettings,this),
|
||||||
'file:open': this.clickToolbarTab.bind(this, 'file'),
|
'file:open': this.clickToolbarTab.bind(this, 'file'),
|
||||||
'file:close': this.clickToolbarTab.bind(this, 'other')
|
'file:close': this.clickToolbarTab.bind(this, 'other'),
|
||||||
|
'save:disabled': this.changeToolbarSaveState.bind(this)
|
||||||
},
|
},
|
||||||
'SearchDialog': {
|
'SearchDialog': {
|
||||||
'hide': _.bind(this.onSearchDlgHide, this),
|
'hide': _.bind(this.onSearchDlgHide, this),
|
||||||
|
@ -284,11 +286,11 @@ define([
|
||||||
|
|
||||||
clickSaveAsFormat: function(menu, format) {
|
clickSaveAsFormat: function(menu, format) {
|
||||||
if (menu) {
|
if (menu) {
|
||||||
if (format == Asc.c_oAscFileType.TXT) {
|
if (format == Asc.c_oAscFileType.TXT || format == Asc.c_oAscFileType.RTF) {
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
closable: false,
|
closable: false,
|
||||||
title: this.notcriticalErrorTitle,
|
title: this.notcriticalErrorTitle,
|
||||||
msg: this.warnDownloadAs,
|
msg: (format == Asc.c_oAscFileType.TXT) ? this.warnDownloadAs : this.warnDownloadAsRTF,
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel'],
|
||||||
callback: _.bind(function(btn){
|
callback: _.bind(function(btn){
|
||||||
if (btn == 'ok') {
|
if (btn == 'ok') {
|
||||||
|
@ -392,6 +394,10 @@ define([
|
||||||
this.leftMenu.menuFile.hide();
|
this.leftMenu.menuFile.hide();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
changeToolbarSaveState: function (state) {
|
||||||
|
this.leftMenu.menuFile.getButton('save').setDisabled(state);
|
||||||
|
},
|
||||||
|
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
clickStatusbarUsers: function() {
|
clickStatusbarUsers: function() {
|
||||||
this.leftMenu.menuFile.panels['rights'].changeAccessRights();
|
this.leftMenu.menuFile.panels['rights'].changeAccessRights();
|
||||||
|
@ -725,6 +731,7 @@ define([
|
||||||
textLoadHistory : 'Loading versions history...',
|
textLoadHistory : 'Loading versions history...',
|
||||||
notcriticalErrorTitle: 'Warning',
|
notcriticalErrorTitle: 'Warning',
|
||||||
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.',
|
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.',
|
||||||
warnDownloadAs : 'If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?'
|
warnDownloadAs : 'If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?',
|
||||||
|
warnDownloadAsRTF : 'If you continue saving in this format some of the formatting might be lost.<br>Are you sure you want to continue?'
|
||||||
}, DE.Controllers.LeftMenu || {}));
|
}, DE.Controllers.LeftMenu || {}));
|
||||||
});
|
});
|
|
@ -44,7 +44,8 @@ define([
|
||||||
'documenteditor/main/app/view/Links',
|
'documenteditor/main/app/view/Links',
|
||||||
'documenteditor/main/app/view/NoteSettingsDialog',
|
'documenteditor/main/app/view/NoteSettingsDialog',
|
||||||
'documenteditor/main/app/view/HyperlinkSettingsDialog',
|
'documenteditor/main/app/view/HyperlinkSettingsDialog',
|
||||||
'documenteditor/main/app/view/TableOfContentsSettings'
|
'documenteditor/main/app/view/TableOfContentsSettings',
|
||||||
|
'documenteditor/main/app/view/BookmarksDialog'
|
||||||
], function () {
|
], function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
@ -64,7 +65,8 @@ define([
|
||||||
'links:contents': this.onTableContents,
|
'links:contents': this.onTableContents,
|
||||||
'links:update': this.onTableContentsUpdate,
|
'links:update': this.onTableContentsUpdate,
|
||||||
'links:notes': this.onNotesClick,
|
'links:notes': this.onNotesClick,
|
||||||
'links:hyperlink': this.onHyperlinkClick
|
'links:hyperlink': this.onHyperlinkClick,
|
||||||
|
'links:bookmarks': this.onBookmarksClick
|
||||||
},
|
},
|
||||||
'DocumentHolder': {
|
'DocumentHolder': {
|
||||||
'links:contents': this.onTableContents,
|
'links:contents': this.onTableContents,
|
||||||
|
@ -311,6 +313,19 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onBookmarksClick: function(btn) {
|
||||||
|
var me = this;
|
||||||
|
(new DE.Views.BookmarksDialog({
|
||||||
|
api: me.api,
|
||||||
|
props: me.api.asc_GetBookmarksManager(),
|
||||||
|
handler: function (result, settings) {
|
||||||
|
if (settings) {
|
||||||
|
}
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
|
||||||
|
}
|
||||||
|
})).show();
|
||||||
|
},
|
||||||
|
|
||||||
onShowContentControlsActions: function(action, x, y) {
|
onShowContentControlsActions: function(action, x, y) {
|
||||||
var menu = (action==1) ? this.view.contentsUpdateMenu : this.view.contentsMenu,
|
var menu = (action==1) ? this.view.contentsUpdateMenu : this.view.contentsMenu,
|
||||||
documentHolderView = this.getApplication().getController('DocumentHolder').documentHolder,
|
documentHolderView = this.getApplication().getController('DocumentHolder').documentHolder,
|
||||||
|
|
|
@ -313,13 +313,16 @@ define([
|
||||||
this.plugins = this.editorConfig.plugins;
|
this.plugins = this.editorConfig.plugins;
|
||||||
|
|
||||||
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
||||||
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '');
|
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '')
|
||||||
|
.setUserName(this.appOptions.user.fullname);
|
||||||
|
|
||||||
if (this.editorConfig.lang)
|
if (this.editorConfig.lang)
|
||||||
this.api.asc_setLocale(this.editorConfig.lang);
|
this.api.asc_setLocale(this.editorConfig.lang);
|
||||||
|
|
||||||
if (this.appOptions.location == 'us' || this.appOptions.location == 'ca')
|
if (this.appOptions.location == 'us' || this.appOptions.location == 'ca')
|
||||||
Common.Utils.Metric.setDefaultMetric(Common.Utils.Metric.c_MetricUnits.inch);
|
Common.Utils.Metric.setDefaultMetric(Common.Utils.Metric.c_MetricUnits.inch);
|
||||||
|
|
||||||
|
Common.Controllers.Desktop.init(this.appOptions);
|
||||||
},
|
},
|
||||||
|
|
||||||
loadDocument: function(data) {
|
loadDocument: function(data) {
|
||||||
|
@ -588,11 +591,13 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
goBack: function() {
|
goBack: function() {
|
||||||
var href = this.appOptions.customization.goback.url;
|
if ( !Common.Controllers.Desktop.process('goback') ) {
|
||||||
if (this.appOptions.customization.goback.blank!==false) {
|
var href = this.appOptions.customization.goback.url;
|
||||||
window.open(href, "_blank");
|
if (this.appOptions.customization.goback.blank!==false) {
|
||||||
} else {
|
window.open(href, "_blank");
|
||||||
parent.location.href = href;
|
} else {
|
||||||
|
parent.location.href = href;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -622,12 +627,7 @@ define([
|
||||||
forcesave = this.appOptions.forcesave,
|
forcesave = this.appOptions.forcesave,
|
||||||
isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
||||||
isDisabled = !cansave && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
isDisabled = !cansave && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
||||||
if (toolbarView.btnSave.isDisabled() !== isDisabled)
|
toolbarView.btnSave.setDisabled(isDisabled);
|
||||||
toolbarView.btnsSave.forEach(function(button) {
|
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(isDisabled);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1072,7 +1072,7 @@ define([
|
||||||
(!this.appOptions.isReviewOnly || this.appOptions.canLicense); // if isReviewOnly==true -> canLicense must be true
|
(!this.appOptions.isReviewOnly || this.appOptions.canLicense); // if isReviewOnly==true -> canLicense must be true
|
||||||
this.appOptions.isEdit = this.appOptions.canLicense && this.appOptions.canEdit && this.editorConfig.mode !== 'view';
|
this.appOptions.isEdit = this.appOptions.canLicense && this.appOptions.canEdit && this.editorConfig.mode !== 'view';
|
||||||
this.appOptions.canReview = this.permissions.review === true && this.appOptions.canLicense && this.appOptions.isEdit;
|
this.appOptions.canReview = this.permissions.review === true && this.appOptions.canLicense && this.appOptions.isEdit;
|
||||||
this.appOptions.canUseHistory = this.appOptions.canLicense && this.editorConfig.canUseHistory && this.appOptions.canCoAuthoring && !this.appOptions.isDesktopApp;
|
this.appOptions.canUseHistory = this.appOptions.canLicense && this.editorConfig.canUseHistory && this.appOptions.canCoAuthoring && !this.appOptions.isOffline;
|
||||||
this.appOptions.canHistoryClose = this.editorConfig.canHistoryClose;
|
this.appOptions.canHistoryClose = this.editorConfig.canHistoryClose;
|
||||||
this.appOptions.canHistoryRestore= this.editorConfig.canHistoryRestore && !!this.permissions.changeHistory;
|
this.appOptions.canHistoryRestore= this.editorConfig.canHistoryRestore && !!this.permissions.changeHistory;
|
||||||
this.appOptions.canUseMailMerge= this.appOptions.canLicense && this.appOptions.canEdit && !this.appOptions.isOffline;
|
this.appOptions.canUseMailMerge= this.appOptions.canLicense && this.appOptions.canEdit && !this.appOptions.isOffline;
|
||||||
|
@ -1518,15 +1518,10 @@ define([
|
||||||
var toolbarView = this.getApplication().getController('Toolbar').getView();
|
var toolbarView = this.getApplication().getController('Toolbar').getView();
|
||||||
|
|
||||||
if (toolbarView && !toolbarView._state.previewmode) {
|
if (toolbarView && !toolbarView._state.previewmode) {
|
||||||
var isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
var isSyncButton = toolbarView.btnSave.$icon.hasClass('btn-synch'),
|
||||||
forcesave = this.appOptions.forcesave,
|
forcesave = this.appOptions.forcesave,
|
||||||
isDisabled = !isModified && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
isDisabled = !isModified && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
||||||
if (toolbarView.btnSave.isDisabled() !== isDisabled)
|
toolbarView.btnSave.setDisabled(isDisabled);
|
||||||
toolbarView.btnsSave.forEach(function(button) {
|
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(isDisabled);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
|
@ -1536,20 +1531,13 @@ define([
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
},
|
},
|
||||||
onDocumentCanSaveChanged: function (isCanSave) {
|
onDocumentCanSaveChanged: function (isCanSave) {
|
||||||
var application = this.getApplication(),
|
var toolbarView = this.getApplication().getController('Toolbar').getView();
|
||||||
toolbarController = application.getController('Toolbar'),
|
|
||||||
toolbarView = toolbarController.getView();
|
|
||||||
|
|
||||||
if (toolbarView && this.api && !toolbarView._state.previewmode) {
|
if (toolbarView && this.api && !toolbarView._state.previewmode) {
|
||||||
var isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
var isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
||||||
forcesave = this.appOptions.forcesave,
|
forcesave = this.appOptions.forcesave,
|
||||||
isDisabled = !isCanSave && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
isDisabled = !isCanSave && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
||||||
if (toolbarView.btnSave.isDisabled() !== isDisabled)
|
toolbarView.btnSave.setDisabled(isDisabled);
|
||||||
toolbarView.btnsSave.forEach(function(button) {
|
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(isDisabled);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -55,6 +55,7 @@ define([
|
||||||
],
|
],
|
||||||
|
|
||||||
initialize: function() {
|
initialize: function() {
|
||||||
|
var me = this;
|
||||||
this.addListeners({
|
this.addListeners({
|
||||||
'Statusbar': {
|
'Statusbar': {
|
||||||
'langchanged': this.onLangMenu,
|
'langchanged': this.onLangMenu,
|
||||||
|
@ -62,6 +63,15 @@ define([
|
||||||
this.api.zoom(value);
|
this.api.zoom(value);
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.statusbar);
|
Common.NotificationCenter.trigger('edit:complete', this.statusbar);
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
|
},
|
||||||
|
'Common.Views.Header': {
|
||||||
|
'statusbar:hide': function (view, status) {
|
||||||
|
me.statusbar.setVisible(!status);
|
||||||
|
Common.localStorage.setBool('de-hidden-status', status);
|
||||||
|
|
||||||
|
Common.NotificationCenter.trigger('layout:changed', 'status');
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', this.statusbar);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -114,10 +114,16 @@ define([
|
||||||
'menu:show': this.onFileMenu.bind(this, 'show')
|
'menu:show': this.onFileMenu.bind(this, 'show')
|
||||||
},
|
},
|
||||||
'Common.Views.Header': {
|
'Common.Views.Header': {
|
||||||
|
'toolbar:setcompact': this.onChangeCompactView.bind(this),
|
||||||
'print': function (opts) {
|
'print': function (opts) {
|
||||||
var _main = this.getApplication().getController('Main');
|
var _main = this.getApplication().getController('Main');
|
||||||
_main.onPrint();
|
_main.onPrint();
|
||||||
},
|
},
|
||||||
|
'save': function (opts) {
|
||||||
|
this.api.asc_Save();
|
||||||
|
},
|
||||||
|
'undo': this.onUndo,
|
||||||
|
'redo': this.onRedo,
|
||||||
'downloadas': function (opts) {
|
'downloadas': function (opts) {
|
||||||
var _main = this.getApplication().getController('Main');
|
var _main = this.getApplication().getController('Main');
|
||||||
var _file_type = _main.document.fileType,
|
var _file_type = _main.document.fileType,
|
||||||
|
@ -228,7 +234,9 @@ define([
|
||||||
toolbar.btnPrint.on('click', _.bind(this.onPrint, this));
|
toolbar.btnPrint.on('click', _.bind(this.onPrint, this));
|
||||||
toolbar.btnSave.on('click', _.bind(this.onSave, this));
|
toolbar.btnSave.on('click', _.bind(this.onSave, this));
|
||||||
toolbar.btnUndo.on('click', _.bind(this.onUndo, this));
|
toolbar.btnUndo.on('click', _.bind(this.onUndo, this));
|
||||||
|
toolbar.btnUndo.on('disabled', _.bind(this.onBtnChangeState, this, 'undo:disabled'));
|
||||||
toolbar.btnRedo.on('click', _.bind(this.onRedo, this));
|
toolbar.btnRedo.on('click', _.bind(this.onRedo, this));
|
||||||
|
toolbar.btnRedo.on('disabled', _.bind(this.onBtnChangeState, this, 'redo:disabled'));
|
||||||
toolbar.btnCopy.on('click', _.bind(this.onCopyPaste, this, true));
|
toolbar.btnCopy.on('click', _.bind(this.onCopyPaste, this, true));
|
||||||
toolbar.btnPaste.on('click', _.bind(this.onCopyPaste, this, false));
|
toolbar.btnPaste.on('click', _.bind(this.onCopyPaste, this, false));
|
||||||
toolbar.btnIncFontSize.on('click', _.bind(this.onIncrease, this));
|
toolbar.btnIncFontSize.on('click', _.bind(this.onIncrease, this));
|
||||||
|
@ -289,7 +297,6 @@ define([
|
||||||
toolbar.btnPageMargins.menu.on('item:click', _.bind(this.onPageMarginsSelect, this));
|
toolbar.btnPageMargins.menu.on('item:click', _.bind(this.onPageMarginsSelect, this));
|
||||||
toolbar.btnClearStyle.on('click', _.bind(this.onClearStyleClick, this));
|
toolbar.btnClearStyle.on('click', _.bind(this.onClearStyleClick, this));
|
||||||
toolbar.btnCopyStyle.on('toggle', _.bind(this.onCopyStyleToggle, this));
|
toolbar.btnCopyStyle.on('toggle', _.bind(this.onCopyStyleToggle, this));
|
||||||
toolbar.btnAdvSettings.on('click', _.bind(this.onAdvSettingsClick, this));
|
|
||||||
toolbar.mnuPageSize.on('item:click', _.bind(this.onPageSizeClick, this));
|
toolbar.mnuPageSize.on('item:click', _.bind(this.onPageSizeClick, this));
|
||||||
toolbar.mnuColorSchema.on('item:click', _.bind(this.onColorSchemaClick, this));
|
toolbar.mnuColorSchema.on('item:click', _.bind(this.onColorSchemaClick, this));
|
||||||
toolbar.btnMailRecepients.on('click', _.bind(this.onSelectRecepientsClick, this));
|
toolbar.btnMailRecepients.on('click', _.bind(this.onSelectRecepientsClick, this));
|
||||||
|
@ -301,13 +308,6 @@ define([
|
||||||
toolbar.listStyles.on('click', _.bind(this.onListStyleSelect, this));
|
toolbar.listStyles.on('click', _.bind(this.onListStyleSelect, this));
|
||||||
toolbar.listStyles.on('contextmenu', _.bind(this.onListStyleContextMenu, this));
|
toolbar.listStyles.on('contextmenu', _.bind(this.onListStyleContextMenu, this));
|
||||||
toolbar.styleMenu.on('hide:before', _.bind(this.onListStyleBeforeHide, this));
|
toolbar.styleMenu.on('hide:before', _.bind(this.onListStyleBeforeHide, this));
|
||||||
toolbar.mnuitemHideStatusBar.on('toggle', _.bind(this.onHideStatusBar, this));
|
|
||||||
toolbar.mnuitemHideRulers.on('toggle', _.bind(this.onHideRulers, this));
|
|
||||||
toolbar.mnuitemCompactToolbar.on('toggle', _.bind(this.onChangeCompactView, this));
|
|
||||||
toolbar.btnFitPage.on('toggle', _.bind(this.onZoomToPageToggle, this));
|
|
||||||
toolbar.btnFitWidth.on('toggle', _.bind(this.onZoomToWidthToggle, this));
|
|
||||||
toolbar.mnuZoomIn.on('click', _.bind(this.onZoomInClick, this));
|
|
||||||
toolbar.mnuZoomOut.on('click', _.bind(this.onZoomOutClick, this));
|
|
||||||
toolbar.btnInsertEquation.on('click', _.bind(this.onInsertEquationClick, this));
|
toolbar.btnInsertEquation.on('click', _.bind(this.onInsertEquationClick, this));
|
||||||
|
|
||||||
$('#id-save-style-plus, #id-save-style-link', toolbar.$el).on('click', this.onMenuSaveStyle.bind(this));
|
$('#id-save-style-plus, #id-save-style-link', toolbar.$el).on('click', this.onMenuSaveStyle.bind(this));
|
||||||
|
@ -355,6 +355,7 @@ define([
|
||||||
this.api.asc_registerCallback('asc_onColumnsProps', _.bind(this.onColumnsProps, this));
|
this.api.asc_registerCallback('asc_onColumnsProps', _.bind(this.onColumnsProps, this));
|
||||||
this.api.asc_registerCallback('asc_onSectionProps', _.bind(this.onSectionProps, this));
|
this.api.asc_registerCallback('asc_onSectionProps', _.bind(this.onSectionProps, this));
|
||||||
this.api.asc_registerCallback('asc_onContextMenu', _.bind(this.onContextMenu, this));
|
this.api.asc_registerCallback('asc_onContextMenu', _.bind(this.onContextMenu, this));
|
||||||
|
this.api.asc_registerCallback('asc_onShowParaMarks', _.bind(this.onShowParaMarks, this));
|
||||||
},
|
},
|
||||||
|
|
||||||
onChangeCompactView: function(view, compact) {
|
onChangeCompactView: function(view, compact) {
|
||||||
|
@ -371,7 +372,6 @@ define([
|
||||||
var me = this;
|
var me = this;
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
me.onChangeCompactView(null, !me.toolbar.isCompact());
|
me.onChangeCompactView(null, !me.toolbar.isCompact());
|
||||||
me.toolbar.mnuitemCompactToolbar.setChecked(me.toolbar.isCompact(), true);
|
|
||||||
}, 0);
|
}, 0);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -517,14 +517,9 @@ define([
|
||||||
|
|
||||||
var btnHorizontalAlign = this.toolbar.btnHorizontalAlign;
|
var btnHorizontalAlign = this.toolbar.btnHorizontalAlign;
|
||||||
|
|
||||||
if (btnHorizontalAlign.rendered) {
|
if ( btnHorizontalAlign.rendered && btnHorizontalAlign.$icon ) {
|
||||||
var iconEl = $('.icon', btnHorizontalAlign.cmpEl);
|
btnHorizontalAlign.$icon.removeClass(btnHorizontalAlign.options.icls).addClass(align);
|
||||||
|
btnHorizontalAlign.options.icls = align;
|
||||||
if (iconEl) {
|
|
||||||
iconEl.removeClass(btnHorizontalAlign.options.icls);
|
|
||||||
btnHorizontalAlign.options.icls = align;
|
|
||||||
iconEl.addClass(btnHorizontalAlign.options.icls);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (v === null || v===undefined) {
|
if (v === null || v===undefined) {
|
||||||
|
@ -614,6 +609,12 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onShowParaMarks: function(v) {
|
||||||
|
this.toolbar.mnuNonPrinting.items[0].setChecked(v, true);
|
||||||
|
this.toolbar.btnShowHidenChars.toggle(v, true);
|
||||||
|
Common.localStorage.setItem("de-show-hiddenchars", v);
|
||||||
|
},
|
||||||
|
|
||||||
onApiFocusObject: function(selectedObjects) {
|
onApiFocusObject: function(selectedObjects) {
|
||||||
if (!this.editMode) return;
|
if (!this.editMode) return;
|
||||||
|
|
||||||
|
@ -733,7 +734,7 @@ define([
|
||||||
|
|
||||||
var in_footnote = this.api.asc_IsCursorInFootnote();
|
var in_footnote = this.api.asc_IsCursorInFootnote();
|
||||||
need_disable = paragraph_locked || header_locked || in_header || in_image || in_equation && !btn_eq_state || in_footnote || in_control;
|
need_disable = paragraph_locked || header_locked || in_header || in_image || in_equation && !btn_eq_state || in_footnote || in_control;
|
||||||
toolbar.btnsPageBreak.disable(need_disable);
|
toolbar.btnsPageBreak.setDisabled(need_disable);
|
||||||
|
|
||||||
need_disable = paragraph_locked || header_locked || !can_add_image || in_equation || control_plain;
|
need_disable = paragraph_locked || header_locked || !can_add_image || in_equation || control_plain;
|
||||||
toolbar.btnInsertImage.setDisabled(need_disable);
|
toolbar.btnInsertImage.setDisabled(need_disable);
|
||||||
|
@ -766,10 +767,8 @@ define([
|
||||||
toolbar.listStylesAdditionalMenuItem.setDisabled(frame_pr===undefined);
|
toolbar.listStylesAdditionalMenuItem.setDisabled(frame_pr===undefined);
|
||||||
|
|
||||||
need_disable = (paragraph_locked || header_locked) && this.api.can_AddQuotedComment() || image_locked;
|
need_disable = (paragraph_locked || header_locked) && this.api.can_AddQuotedComment() || image_locked;
|
||||||
if (this.btnsComment && this.btnsComment.length>0 && need_disable != this.btnsComment[0].isDisabled())
|
if ( this.btnsComment && this.btnsComment.length > 0 )
|
||||||
_.each (this.btnsComment, function(item){
|
this.btnsComment.setDisabled(need_disable);
|
||||||
item.setDisabled(need_disable);
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
this._state.in_equation = in_equation;
|
this._state.in_equation = in_equation;
|
||||||
},
|
},
|
||||||
|
@ -838,12 +837,7 @@ define([
|
||||||
this.toolbar.mnuInsertPageNum.setDisabled(false);
|
this.toolbar.mnuInsertPageNum.setDisabled(false);
|
||||||
},
|
},
|
||||||
|
|
||||||
onApiZoomChange: function(percent, type) {
|
onApiZoomChange: function(percent, type) {},
|
||||||
this.toolbar.btnFitPage.setChecked(type == 2, true);
|
|
||||||
this.toolbar.btnFitWidth.setChecked(type == 1, true);
|
|
||||||
this.toolbar.mnuZoom.options.value = percent;
|
|
||||||
$('.menu-zoom .zoom', this.toolbar.el).html(percent + '%');
|
|
||||||
},
|
|
||||||
|
|
||||||
onApiStartHighlight: function(pressed) {
|
onApiStartHighlight: function(pressed) {
|
||||||
this.toolbar.btnHighlightColor.toggle(pressed, true);
|
this.toolbar.btnHighlightColor.toggle(pressed, true);
|
||||||
|
@ -914,18 +908,14 @@ define([
|
||||||
var toolbar = this.toolbar;
|
var toolbar = this.toolbar;
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
var isModified = this.api.asc_isDocumentCanSave();
|
var isModified = this.api.asc_isDocumentCanSave();
|
||||||
var isSyncButton = $('.icon', toolbar.btnSave.cmpEl).hasClass('btn-synch');
|
var isSyncButton = toolbar.btnCollabChanges.$icon.hasClass('btn-synch');
|
||||||
if (!isModified && !isSyncButton && !toolbar.mode.forcesave)
|
if (!isModified && !isSyncButton && !toolbar.mode.forcesave)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this.api.asc_Save();
|
this.api.asc_Save();
|
||||||
}
|
}
|
||||||
|
|
||||||
toolbar.btnsSave.forEach(function(button) {
|
toolbar.btnSave.setDisabled(!toolbar.mode.forcesave);
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(!toolbar.mode.forcesave);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', toolbar);
|
Common.NotificationCenter.trigger('edit:complete', toolbar);
|
||||||
|
|
||||||
|
@ -933,6 +923,13 @@ define([
|
||||||
Common.component.Analytics.trackEvent('ToolBar', 'Save');
|
Common.component.Analytics.trackEvent('ToolBar', 'Save');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onBtnChangeState: function(prop) {
|
||||||
|
if ( /\:disabled$/.test(prop) ) {
|
||||||
|
var _is_disabled = arguments[2];
|
||||||
|
this.toolbar.fireEvent(prop, [_is_disabled]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onUndo: function(btn, e) {
|
onUndo: function(btn, e) {
|
||||||
if (this.api)
|
if (this.api)
|
||||||
this.api.Undo();
|
this.api.Undo();
|
||||||
|
@ -1071,14 +1068,11 @@ define([
|
||||||
|
|
||||||
onMenuHorizontalAlignSelect: function(menu, item) {
|
onMenuHorizontalAlignSelect: function(menu, item) {
|
||||||
this._state.pralign = undefined;
|
this._state.pralign = undefined;
|
||||||
var btnHorizontalAlign = this.toolbar.btnHorizontalAlign,
|
var btnHorizontalAlign = this.toolbar.btnHorizontalAlign;
|
||||||
iconEl = $('.icon', btnHorizontalAlign.cmpEl);
|
|
||||||
|
|
||||||
if (iconEl) {
|
btnHorizontalAlign.$icon.removeClass(btnHorizontalAlign.options.icls);
|
||||||
iconEl.removeClass(btnHorizontalAlign.options.icls);
|
btnHorizontalAlign.options.icls = !item.checked ? 'btn-align-left' : item.options.icls;
|
||||||
btnHorizontalAlign.options.icls = !item.checked ? 'btn-align-left' : item.options.icls;
|
btnHorizontalAlign.$icon.addClass(btnHorizontalAlign.options.icls);
|
||||||
iconEl.addClass(btnHorizontalAlign.options.icls);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.api && item.checked)
|
if (this.api && item.checked)
|
||||||
this.api.put_PrAlign(item.value);
|
this.api.put_PrAlign(item.value);
|
||||||
|
@ -1408,11 +1402,6 @@ define([
|
||||||
this.modeAlwaysSetStyle = state;
|
this.modeAlwaysSetStyle = state;
|
||||||
},
|
},
|
||||||
|
|
||||||
onAdvSettingsClick: function(btn, e) {
|
|
||||||
this.toolbar.fireEvent('file:settings', this);
|
|
||||||
btn.cmpEl.blur();
|
|
||||||
},
|
|
||||||
|
|
||||||
onPageSizeClick: function(menu, item, state) {
|
onPageSizeClick: function(menu, item, state) {
|
||||||
if (this.api && state) {
|
if (this.api && state) {
|
||||||
this._state.pgsize = [0, 0];
|
this._state.pgsize = [0, 0];
|
||||||
|
@ -1986,61 +1975,6 @@ define([
|
||||||
// Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
// Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
||||||
// },
|
// },
|
||||||
|
|
||||||
onHideStatusBar: function(item, checked) {
|
|
||||||
var headerView = this.getApplication().getController('Statusbar').getView('Statusbar');
|
|
||||||
headerView && headerView.setVisible(!checked);
|
|
||||||
|
|
||||||
Common.localStorage.setBool('de-hidden-status', checked);
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('layout:changed', 'status');
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onHideRulers: function(item, checked) {
|
|
||||||
if (this.api) {
|
|
||||||
this.api.asc_SetViewRulers(!checked);
|
|
||||||
}
|
|
||||||
|
|
||||||
Common.localStorage.setBool('de-hidden-rulers', checked);
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('layout:changed', 'rulers');
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onZoomToPageToggle: function(item, state) {
|
|
||||||
if (this.api) {
|
|
||||||
if (state)
|
|
||||||
this.api.zoomFitToPage();
|
|
||||||
else
|
|
||||||
this.api.zoomCustomMode();
|
|
||||||
}
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onZoomToWidthToggle: function(item, state) {
|
|
||||||
if (this.api) {
|
|
||||||
if (state)
|
|
||||||
this.api.zoomFitToWidth();
|
|
||||||
else
|
|
||||||
this.api.zoomCustomMode();
|
|
||||||
}
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onZoomInClick: function(btn) {
|
|
||||||
if (this.api)
|
|
||||||
this.api.zoomIn();
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onZoomOutClick: function(btn) {
|
|
||||||
if (this.api)
|
|
||||||
this.api.zoomOut();
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
_clearBullets: function() {
|
_clearBullets: function() {
|
||||||
this.toolbar.btnMarkers.toggle(false, true);
|
this.toolbar.btnMarkers.toggle(false, true);
|
||||||
this.toolbar.btnNumbers.toggle(false, true);
|
this.toolbar.btnNumbers.toggle(false, true);
|
||||||
|
@ -2709,17 +2643,12 @@ define([
|
||||||
|
|
||||||
disable = disable || (reviewmode ? toolbar_mask.length>0 : group_mask.length>0);
|
disable = disable || (reviewmode ? toolbar_mask.length>0 : group_mask.length>0);
|
||||||
toolbar.$el.find('.toolbar').toggleClass('masked', disable);
|
toolbar.$el.find('.toolbar').toggleClass('masked', disable);
|
||||||
toolbar.btnHide.setDisabled(disable);
|
|
||||||
if ( toolbar.synchTooltip )
|
if ( toolbar.synchTooltip )
|
||||||
toolbar.synchTooltip.hide();
|
toolbar.synchTooltip.hide();
|
||||||
|
|
||||||
toolbar._state.previewmode = reviewmode && disable;
|
toolbar._state.previewmode = reviewmode && disable;
|
||||||
if (reviewmode) {
|
if (reviewmode) {
|
||||||
toolbar._state.previewmode && toolbar.btnsSave.forEach(function(button) {
|
toolbar._state.previewmode && toolbar.btnSave.setDisabled(true);
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(true);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (toolbar.needShowSynchTip) {
|
if (toolbar.needShowSynchTip) {
|
||||||
toolbar.needShowSynchTip = false;
|
toolbar.needShowSynchTip = false;
|
||||||
|
@ -2776,12 +2705,24 @@ define([
|
||||||
if ( $panel )
|
if ( $panel )
|
||||||
me.toolbar.addTab(tab, $panel, 4);
|
me.toolbar.addTab(tab, $panel, 4);
|
||||||
|
|
||||||
if (config.isDesktopApp && config.isOffline) {
|
me.toolbar.btnSave.on('disabled', _.bind(me.onBtnChangeState, me, 'save:disabled'));
|
||||||
tab = {action: 'protect', caption: me.toolbar.textTabProtect};
|
if ( config.isDesktopApp ) {
|
||||||
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
|
// hide 'print' and 'save' buttons group and next separator
|
||||||
|
me.toolbar.btnPrint.$el.parents('.group').hide().next().hide();
|
||||||
|
|
||||||
if ( $panel )
|
// hide 'undo' and 'redo' buttons and retrieve parent container
|
||||||
me.toolbar.addTab(tab, $panel, 5);
|
var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent();
|
||||||
|
|
||||||
|
// move 'paste' button to the container instead of 'undo' and 'redo'
|
||||||
|
me.toolbar.btnPaste.$el.detach().appendTo($box);
|
||||||
|
me.toolbar.btnCopy.$el.removeClass('split');
|
||||||
|
|
||||||
|
if ( config.isOffline ) {
|
||||||
|
tab = {action: 'protect', caption: me.toolbar.textTabProtect};
|
||||||
|
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
|
||||||
|
|
||||||
|
if ($panel) me.toolbar.addTab(tab, $panel, 5);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var links = me.getApplication().getController('Links');
|
var links = me.getApplication().getController('Links');
|
||||||
|
@ -2794,7 +2735,7 @@ define([
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
if ( config.canCoAuthoring && config.canComments ) {
|
if ( config.canCoAuthoring && config.canComments ) {
|
||||||
this.btnsComment = [];
|
this.btnsComment = createButtonSet();
|
||||||
var slots = me.toolbar.$el.find('.slot-comment');
|
var slots = me.toolbar.$el.find('.slot-comment');
|
||||||
slots.each(function(index, el) {
|
slots.each(function(index, el) {
|
||||||
var _cls = 'btn-toolbar';
|
var _cls = 'btn-toolbar';
|
||||||
|
@ -2807,7 +2748,7 @@ define([
|
||||||
caption: me.toolbar.capBtnComment
|
caption: me.toolbar.capBtnComment
|
||||||
}).render( slots.eq(index) );
|
}).render( slots.eq(index) );
|
||||||
|
|
||||||
me.btnsComment.push(button);
|
me.btnsComment.add(button);
|
||||||
});
|
});
|
||||||
|
|
||||||
if ( this.btnsComment.length ) {
|
if ( this.btnsComment.length ) {
|
||||||
|
|
|
@ -49,7 +49,7 @@ define([
|
||||||
], function (Viewport) {
|
], function (Viewport) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
DE.Controllers.Viewport = Backbone.Controller.extend({
|
DE.Controllers.Viewport = Backbone.Controller.extend(_.assign({
|
||||||
// Specifying a Viewport model
|
// Specifying a Viewport model
|
||||||
models: [],
|
models: [],
|
||||||
|
|
||||||
|
@ -68,6 +68,10 @@ define([
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
this.addListeners({
|
this.addListeners({
|
||||||
|
'FileMenu': {
|
||||||
|
'menu:hide': me.onFileMenu.bind(me, 'hide'),
|
||||||
|
'menu:show': me.onFileMenu.bind(me, 'show')
|
||||||
|
},
|
||||||
'Toolbar': {
|
'Toolbar': {
|
||||||
'render:before' : function (toolbar) {
|
'render:before' : function (toolbar) {
|
||||||
var config = DE.getController('Main').appOptions;
|
var config = DE.getController('Main').appOptions;
|
||||||
|
@ -75,7 +79,26 @@ define([
|
||||||
toolbar.setExtra('left', me.header.getPanel('left', config));
|
toolbar.setExtra('left', me.header.getPanel('left', config));
|
||||||
},
|
},
|
||||||
'view:compact' : function (toolbar, state) {
|
'view:compact' : function (toolbar, state) {
|
||||||
me.viewport.vlayout.panels[0].height = state ? 32 : 32+67;
|
me.header.mnuitemCompactToolbar.setChecked(state, true);
|
||||||
|
me.viewport.vlayout.getItem('toolbar').height = state ?
|
||||||
|
Common.Utils.InternalSettings.get('toolbar-height-compact') : Common.Utils.InternalSettings.get('toolbar-height-normal');
|
||||||
|
},
|
||||||
|
'undo:disabled' : function (state) {
|
||||||
|
if ( me.header.btnUndo ) {
|
||||||
|
if ( me.header.btnUndo.keepState )
|
||||||
|
me.header.btnUndo.keepState.disabled = state;
|
||||||
|
else me.header.btnUndo.setDisabled(state);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'redo:disabled' : function (state) {
|
||||||
|
if ( me.header.btnRedo )
|
||||||
|
if ( me.header.btnRedo.keepState )
|
||||||
|
me.header.btnRedo.keepState.disabled = state;
|
||||||
|
else me.header.btnRedo.setDisabled(state);
|
||||||
|
},
|
||||||
|
'save:disabled' : function (state) {
|
||||||
|
if ( me.header.btnSave )
|
||||||
|
me.header.btnSave.setDisabled(state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -83,6 +106,7 @@ define([
|
||||||
|
|
||||||
setApi: function(api) {
|
setApi: function(api) {
|
||||||
this.api = api;
|
this.api = api;
|
||||||
|
this.api.asc_registerCallback('asc_onZoomChange', this.onApiZoomChange.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
@ -108,16 +132,151 @@ define([
|
||||||
this.boxSdk = $('#editor_sdk');
|
this.boxSdk = $('#editor_sdk');
|
||||||
this.boxSdk.css('border-left', 'none');
|
this.boxSdk.css('border-left', 'none');
|
||||||
|
|
||||||
|
this.header.mnuitemFitPage = this.header.fakeMenuItem();
|
||||||
|
this.header.mnuitemFitWidth = this.header.fakeMenuItem();
|
||||||
|
|
||||||
Common.NotificationCenter.on('app:face', this.onAppShowed.bind(this));
|
Common.NotificationCenter.on('app:face', this.onAppShowed.bind(this));
|
||||||
|
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
onAppShowed: function (config) {
|
onAppShowed: function (config) {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
me.appConfig = config;
|
||||||
|
|
||||||
|
var _intvars = Common.Utils.InternalSettings;
|
||||||
|
var $filemenu = $('.toolbar-fullview-panel');
|
||||||
|
$filemenu.css('top', _intvars.get('toolbar-height-tabs'));
|
||||||
|
|
||||||
if ( !config.isEdit ||
|
if ( !config.isEdit ||
|
||||||
( !Common.localStorage.itemExists("de-compact-toolbar") &&
|
( !Common.localStorage.itemExists("de-compact-toolbar") &&
|
||||||
config.customization && config.customization.compactToolbar )) {
|
config.customization && config.customization.compactToolbar )) {
|
||||||
me.viewport.vlayout.panels[0].height = 32;
|
|
||||||
|
var panel = me.viewport.vlayout.getItem('toolbar');
|
||||||
|
if ( panel ) panel.height = _intvars.get('toolbar-height-tabs');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( config.isDesktopApp && config.isEdit ) {
|
||||||
|
var $title = me.viewport.vlayout.getItem('title').el;
|
||||||
|
$title.html(me.header.getPanel('title', config)).show();
|
||||||
|
|
||||||
|
var toolbar = me.viewport.vlayout.getItem('toolbar');
|
||||||
|
toolbar.el.addClass('top-title');
|
||||||
|
toolbar.height -= _intvars.get('toolbar-height-tabs') - _intvars.get('toolbar-height-tabs-top-title');
|
||||||
|
|
||||||
|
var _tabs_new_height = _intvars.get('toolbar-height-tabs-top-title');
|
||||||
|
_intvars.set('toolbar-height-tabs', _tabs_new_height);
|
||||||
|
_intvars.set('toolbar-height-compact', _tabs_new_height);
|
||||||
|
_intvars.set('toolbar-height-normal', _tabs_new_height + _intvars.get('toolbar-height-controls'));
|
||||||
|
|
||||||
|
$filemenu.css('top', _tabs_new_height + _intvars.get('document-title-height'));
|
||||||
|
|
||||||
|
toolbar = me.getApplication().getController('Toolbar').getView();
|
||||||
|
toolbar.btnCollabChanges = me.header.btnSave;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onAppReady: function (config) {
|
||||||
|
var me = this;
|
||||||
|
if ( me.header.btnOptions ) {
|
||||||
|
var compactview = !config.isEdit;
|
||||||
|
if ( config.isEdit ) {
|
||||||
|
if ( Common.localStorage.itemExists("de-compact-toolbar") ) {
|
||||||
|
compactview = Common.localStorage.getBool("de-compact-toolbar");
|
||||||
|
} else
|
||||||
|
if ( config.customization && config.customization.compactToolbar )
|
||||||
|
compactview = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
me.header.mnuitemCompactToolbar = new Common.UI.MenuItem({
|
||||||
|
caption: me.header.textCompactView,
|
||||||
|
checked: compactview,
|
||||||
|
checkable: true,
|
||||||
|
value: 'toolbar'
|
||||||
|
});
|
||||||
|
|
||||||
|
var mnuitemHideStatusBar = new Common.UI.MenuItem({
|
||||||
|
caption: me.header.textHideStatusBar,
|
||||||
|
checked: Common.localStorage.getBool("de-hidden-status"),
|
||||||
|
checkable: true,
|
||||||
|
value: 'statusbar'
|
||||||
|
});
|
||||||
|
|
||||||
|
if ( config.canBrandingExt && config.customization && config.customization.statusBar === false )
|
||||||
|
mnuitemHideStatusBar.hide();
|
||||||
|
|
||||||
|
var mnuitemHideRulers = new Common.UI.MenuItem({
|
||||||
|
caption: me.header.textHideLines,
|
||||||
|
checked: Common.localStorage.getBool("de-hidden-rulers"),
|
||||||
|
checkable: true,
|
||||||
|
value: 'rulers'
|
||||||
|
});
|
||||||
|
|
||||||
|
me.header.mnuitemFitPage = new Common.UI.MenuItem({
|
||||||
|
caption: me.textFitPage,
|
||||||
|
checkable: true,
|
||||||
|
checked: me.header.mnuitemFitPage.isChecked(),
|
||||||
|
value: 'zoom:page'
|
||||||
|
});
|
||||||
|
|
||||||
|
me.header.mnuitemFitWidth = new Common.UI.MenuItem({
|
||||||
|
caption: me.textFitWidth,
|
||||||
|
checkable: true,
|
||||||
|
checked: me.header.mnuitemFitWidth.isChecked(),
|
||||||
|
value: 'zoom:width'
|
||||||
|
});
|
||||||
|
|
||||||
|
me.header.mnuZoom = new Common.UI.MenuItem({
|
||||||
|
template: _.template([
|
||||||
|
'<div id="hdr-menu-zoom" class="menu-zoom" style="height: 25px;" ',
|
||||||
|
'<% if(!_.isUndefined(options.stopPropagation)) { %>',
|
||||||
|
'data-stopPropagation="true"',
|
||||||
|
'<% } %>', '>',
|
||||||
|
'<label class="title">' + me.header.textZoom + '</label>',
|
||||||
|
'<button id="hdr-menu-zoom-in" type="button" style="float:right; margin: 2px 5px 0 0;" class="btn small btn-toolbar"><i class="icon btn-zoomup"> </i></button>',
|
||||||
|
'<label class="zoom"><%= options.value %>%</label>',
|
||||||
|
'<button id="hdr-menu-zoom-out" type="button" style="float:right; margin-top: 2px;" class="btn small btn-toolbar"><i class="icon btn-zoomdown"> </i></button>',
|
||||||
|
'</div>'
|
||||||
|
].join('')),
|
||||||
|
stopPropagation: true,
|
||||||
|
value: me.header.mnuZoom.options.value
|
||||||
|
});
|
||||||
|
|
||||||
|
me.header.btnOptions.setMenu(new Common.UI.Menu({
|
||||||
|
cls: 'pull-right',
|
||||||
|
style: 'min-width: 180px;',
|
||||||
|
items: [
|
||||||
|
me.header.mnuitemCompactToolbar,
|
||||||
|
mnuitemHideStatusBar,
|
||||||
|
mnuitemHideRulers,
|
||||||
|
{caption:'--'},
|
||||||
|
me.header.mnuitemFitPage,
|
||||||
|
me.header.mnuitemFitWidth,
|
||||||
|
me.header.mnuZoom,
|
||||||
|
{caption:'--'},
|
||||||
|
new Common.UI.MenuItem({
|
||||||
|
caption: me.header.textAdvSettings,
|
||||||
|
value: 'advanced'
|
||||||
|
})
|
||||||
|
]
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
var _on_btn_zoom = function (btn) {
|
||||||
|
btn == 'up' ? me.api.zoomIn() : me.api.zoomOut();
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
|
};
|
||||||
|
|
||||||
|
(new Common.UI.Button({
|
||||||
|
el : $('#hdr-menu-zoom-out', me.header.mnuZoom.$el),
|
||||||
|
cls : 'btn-toolbar'
|
||||||
|
})).on('click', _on_btn_zoom.bind(me, 'down'));
|
||||||
|
|
||||||
|
(new Common.UI.Button({
|
||||||
|
el : $('#hdr-menu-zoom-in', me.header.mnuZoom.$el),
|
||||||
|
cls : 'btn-toolbar'
|
||||||
|
})).on('click', _on_btn_zoom.bind(me, 'up'));
|
||||||
|
|
||||||
|
me.header.btnOptions.menu.on('item:click', me.onOptionsItemClick.bind(this));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -161,6 +320,51 @@ define([
|
||||||
onWindowResize: function(e) {
|
onWindowResize: function(e) {
|
||||||
this.onLayoutChanged('window');
|
this.onLayoutChanged('window');
|
||||||
Common.NotificationCenter.trigger('window:resize');
|
Common.NotificationCenter.trigger('window:resize');
|
||||||
}
|
},
|
||||||
});
|
|
||||||
|
onFileMenu: function (opts) {
|
||||||
|
var me = this;
|
||||||
|
var _need_disable = opts == 'show';
|
||||||
|
|
||||||
|
me.header.lockHeaderBtns( 'undo', _need_disable );
|
||||||
|
me.header.lockHeaderBtns( 'redo', _need_disable );
|
||||||
|
me.header.lockHeaderBtns( 'opts', _need_disable );
|
||||||
|
},
|
||||||
|
|
||||||
|
onApiZoomChange: function(percent, type) {
|
||||||
|
this.header.mnuitemFitPage.setChecked(type == 2, true);
|
||||||
|
this.header.mnuitemFitWidth.setChecked(type == 1, true);
|
||||||
|
this.header.mnuZoom.options.value = percent;
|
||||||
|
|
||||||
|
if ( this.header.mnuZoom.$el )
|
||||||
|
$('.menu-zoom label.zoom', this.header.mnuZoom.$el).html(percent + '%');
|
||||||
|
},
|
||||||
|
|
||||||
|
onOptionsItemClick: function (menu, item, e) {
|
||||||
|
var me = this;
|
||||||
|
|
||||||
|
switch ( item.value ) {
|
||||||
|
case 'toolbar': me.header.fireEvent('toolbar:setcompact', [menu, item.isChecked()]); break;
|
||||||
|
case 'statusbar': me.header.fireEvent('statusbar:hide', [item, item.isChecked()]); break;
|
||||||
|
case 'rulers':
|
||||||
|
me.api.asc_SetViewRulers(!item.isChecked());
|
||||||
|
Common.localStorage.setBool('de-hidden-rulers', item.isChecked());
|
||||||
|
Common.NotificationCenter.trigger('layout:changed', 'rulers');
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
|
break;
|
||||||
|
case 'zoom:page':
|
||||||
|
item.isChecked() ? me.api.zoomFitToPage() : me.api.zoomCustomMode();
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
|
break;
|
||||||
|
case 'zoom:width':
|
||||||
|
item.isChecked() ? me.api.zoomFitToWidth() : me.api.zoomCustomMode();
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
|
break;
|
||||||
|
case 'advanced': me.header.fireEvent('file:settings', me.header); break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
textFitPage: 'Fit to Page',
|
||||||
|
textFitWidth: 'Fit to Width'
|
||||||
|
}, DE.Controllers.Viewport));
|
||||||
});
|
});
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
<ul>
|
<ul>
|
||||||
<% for(var i in tabs) { %>
|
<% for(var i in tabs) { %>
|
||||||
<li class="ribtab<% if (tabs[i].extcls) print(' ' + tabs[i].extcls) %>">
|
<li class="ribtab<% if (tabs[i].extcls) print(' ' + tabs[i].extcls) %>">
|
||||||
<div class="tab-bg" />
|
|
||||||
<a data-tab="<%= tabs[i].action %>" data-title="<%= tabs[i].caption %>"><%= tabs[i].caption %></a>
|
<a data-tab="<%= tabs[i].action %>" data-title="<%= tabs[i].caption %>"><%= tabs[i].caption %></a>
|
||||||
</li>
|
</li>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
@ -93,16 +92,7 @@
|
||||||
<span class="btn-slot" id="slot-btn-mailrecepients"></span>
|
<span class="btn-slot" id="slot-btn-mailrecepients"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="group" id="slot-field-styles">
|
<div class="group" id="slot-field-styles"></div>
|
||||||
</div>
|
|
||||||
<div class="group no-mask">
|
|
||||||
<div class="elset">
|
|
||||||
<span class="btn-slot split" id="slot-btn-hidebars"></span>
|
|
||||||
</div>
|
|
||||||
<div class="elset">
|
|
||||||
<span class="btn-slot" id="slot-btn-settings"></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
<section class="panel" data-tab="ins">
|
<section class="panel" data-tab="ins">
|
||||||
<div class="group">
|
<div class="group">
|
||||||
|
@ -171,6 +161,7 @@
|
||||||
<div class="separator long"></div>
|
<div class="separator long"></div>
|
||||||
<div class="group">
|
<div class="group">
|
||||||
<span class="btn-slot text x-huge slot-inshyperlink"></span>
|
<span class="btn-slot text x-huge slot-inshyperlink"></span>
|
||||||
|
<!--<span class="btn-slot text x-huge" id="slot-btn-bookmarks"></span>-->
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
<section class="layout-ct">
|
<section class="layout-ct">
|
||||||
<div id="file-menu-panel" class="toolbar-fullview-panel" style="display:none;"></div>
|
<div id="file-menu-panel" class="toolbar-fullview-panel" style="display:none;"></div>
|
||||||
</section>
|
</section>
|
||||||
|
<section id="app-title" class="layout-item"></section>
|
||||||
<div id="toolbar" class="layout-item"></div>
|
<div id="toolbar" class="layout-item"></div>
|
||||||
<div class="layout-item middle">
|
<div class="layout-item middle">
|
||||||
<div id="viewport-hbox-layout" class="layout-ct hbox">
|
<div id="viewport-hbox-layout" class="layout-ct hbox">
|
||||||
|
|
303
apps/documenteditor/main/app/view/BookmarksDialog.js
Normal file
303
apps/documenteditor/main/app/view/BookmarksDialog.js
Normal file
|
@ -0,0 +1,303 @@
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* (c) Copyright Ascensio System Limited 2010-2017
|
||||||
|
*
|
||||||
|
* 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 Lubanas st. 125a-25, Riga, Latvia,
|
||||||
|
* EU, LV-1021.
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* BookmarksDialog.js.js
|
||||||
|
*
|
||||||
|
* Created by Julia Radzhabova on 15.02.2018
|
||||||
|
* Copyright (c) 2017 Ascensio System SIA. All rights reserved.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
define([
|
||||||
|
'common/main/lib/util/utils',
|
||||||
|
'common/main/lib/component/ListView',
|
||||||
|
'common/main/lib/component/InputField',
|
||||||
|
'common/main/lib/component/Button',
|
||||||
|
'common/main/lib/component/RadioBox',
|
||||||
|
'common/main/lib/view/AdvancedSettingsWindow'
|
||||||
|
], function () { 'use strict';
|
||||||
|
|
||||||
|
DE.Views.BookmarksDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
||||||
|
options: {
|
||||||
|
contentWidth: 300,
|
||||||
|
height: 360
|
||||||
|
},
|
||||||
|
|
||||||
|
initialize : function(options) {
|
||||||
|
var me = this;
|
||||||
|
|
||||||
|
_.extend(this.options, {
|
||||||
|
title: this.textTitle,
|
||||||
|
template: [
|
||||||
|
'<div class="box" style="height:' + (me.options.height - 85) + 'px;">',
|
||||||
|
'<div class="content-panel" style="padding: 0 5px;"><div class="inner-content">',
|
||||||
|
'<div class="settings-panel active">',
|
||||||
|
'<table cols="1" style="width: 100%;">',
|
||||||
|
'<tr>',
|
||||||
|
'<td class="padding-extra-small">',
|
||||||
|
'<label class="input-label">', me.textBookmarkName, '</label>',
|
||||||
|
'</td>',
|
||||||
|
'</tr>',
|
||||||
|
'<tr>',
|
||||||
|
'<td class="padding-large">',
|
||||||
|
'<div id="bookmarks-txt-name" style="display:inline-block;vertical-align: top;margin-right: 10px;"></div>',
|
||||||
|
'<button type="button" result="add" class="btn btn-text-default" id="bookmarks-btn-add" style="vertical-align: top;">', me.textAdd,'</button>',
|
||||||
|
'</td>',
|
||||||
|
'</tr>',
|
||||||
|
'<tr>',
|
||||||
|
'<td class="padding-extra-small">',
|
||||||
|
'<label class="header" style="margin-right: 10px;">', me.textSort,'</label>',
|
||||||
|
'<div id="bookmarks-radio-name" style="display: inline-block; margin-right: 10px;"></div>',
|
||||||
|
'<div id="bookmarks-radio-location" style="display: inline-block;"></div>',
|
||||||
|
'</td>',
|
||||||
|
'</tr>',
|
||||||
|
'<tr>',
|
||||||
|
'<td class="padding-small">',
|
||||||
|
'<div id="bookmarks-list" style="width:100%; height: 130px;"></div>',
|
||||||
|
'</td>',
|
||||||
|
'</tr>',
|
||||||
|
'<tr>',
|
||||||
|
'<td class="padding-large">',
|
||||||
|
'<button type="button" class="btn btn-text-default" id="bookmarks-btn-goto" style="margin-right: 10px;">', me.textGoto,'</button>',
|
||||||
|
'<button type="button" class="btn btn-text-default" id="bookmarks-btn-delete" style="">', me.textDelete,'</button>',
|
||||||
|
'</td>',
|
||||||
|
'</tr>',
|
||||||
|
'<tr>',
|
||||||
|
'<td>',
|
||||||
|
'<div id="bookmarks-checkbox-hidden"></div>',
|
||||||
|
'</td>',
|
||||||
|
'</tr>',
|
||||||
|
'</table>',
|
||||||
|
'</div></div>',
|
||||||
|
'</div>',
|
||||||
|
'</div>',
|
||||||
|
'<div class="footer right">',
|
||||||
|
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + me.textClose + '</button>',
|
||||||
|
'</div>'
|
||||||
|
].join('')
|
||||||
|
}, options);
|
||||||
|
|
||||||
|
this.api = options.api;
|
||||||
|
this.handler = options.handler;
|
||||||
|
this.props = options.props;
|
||||||
|
|
||||||
|
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function() {
|
||||||
|
Common.Views.AdvancedSettingsWindow.prototype.render.call(this);
|
||||||
|
var me = this;
|
||||||
|
|
||||||
|
this.txtName = new Common.UI.InputField({
|
||||||
|
el : $('#bookmarks-txt-name'),
|
||||||
|
allowBlank : true,
|
||||||
|
validateOnChange: true,
|
||||||
|
validateOnBlur: false,
|
||||||
|
style : 'width: 195px;',
|
||||||
|
value : '',
|
||||||
|
maxLength: 40
|
||||||
|
}).on('changing', _.bind(this.onNameChanging, this));
|
||||||
|
|
||||||
|
this.radioName = new Common.UI.RadioBox({
|
||||||
|
el: $('#bookmarks-radio-name'),
|
||||||
|
labelText: this.textName,
|
||||||
|
name: 'asc-radio-bookmark-sort',
|
||||||
|
checked: true
|
||||||
|
});
|
||||||
|
this.radioName.on('change', _.bind(this.onRadioSort, this));
|
||||||
|
|
||||||
|
this.radioLocation = new Common.UI.RadioBox({
|
||||||
|
el: $('#bookmarks-radio-location'),
|
||||||
|
labelText: this.textLocation,
|
||||||
|
name: 'asc-radio-bookmark-sort'
|
||||||
|
});
|
||||||
|
this.radioLocation.on('change', _.bind(this.onRadioSort, this));
|
||||||
|
|
||||||
|
this.bookmarksList = new Common.UI.ListView({
|
||||||
|
el: $('#bookmarks-list', this.$window),
|
||||||
|
store: new Common.UI.DataViewStore(),
|
||||||
|
itemTemplate: _.template('<div id="<%= id %>" class="list-item" style="pointer-events:none;"><%= value %></div>')
|
||||||
|
});
|
||||||
|
this.bookmarksList.store.comparator = function(rec) {
|
||||||
|
return (me.radioName.getValue() ? rec.get("value") : rec.get("location"));
|
||||||
|
};
|
||||||
|
this.bookmarksList.on('item:dblclick', _.bind(this.onDblClickBookmark, this));
|
||||||
|
this.bookmarksList.on('entervalue', _.bind(this.onPrimary, this));
|
||||||
|
this.bookmarksList.on('item:select', _.bind(this.onSelectBookmark, this));
|
||||||
|
|
||||||
|
this.btnAdd = new Common.UI.Button({
|
||||||
|
el: $('#bookmarks-btn-add'),
|
||||||
|
disabled: true
|
||||||
|
});
|
||||||
|
this.$window.find('#bookmarks-btn-add').on('click', _.bind(this.onDlgBtnClick, this));
|
||||||
|
|
||||||
|
this.btnGoto = new Common.UI.Button({
|
||||||
|
el: $('#bookmarks-btn-goto'),
|
||||||
|
disabled: true
|
||||||
|
});
|
||||||
|
this.btnGoto.on('click', _.bind(this.gotoBookmark, this));
|
||||||
|
|
||||||
|
this.btnDelete = new Common.UI.Button({
|
||||||
|
el: $('#bookmarks-btn-delete'),
|
||||||
|
disabled: true
|
||||||
|
});
|
||||||
|
this.btnDelete.on('click', _.bind(this.deleteBookmark, this));
|
||||||
|
|
||||||
|
this.chHidden = new Common.UI.CheckBox({
|
||||||
|
el: $('#bookmarks-checkbox-hidden'),
|
||||||
|
labelText: this.textHidden,
|
||||||
|
value: Common.Utils.InternalSettings.get("de-bookmarks-hidden") || false
|
||||||
|
});
|
||||||
|
this.chHidden.on('change', _.bind(this.onChangeHidden, this));
|
||||||
|
|
||||||
|
this.afterRender();
|
||||||
|
},
|
||||||
|
|
||||||
|
afterRender: function() {
|
||||||
|
this._setDefaults(this.props);
|
||||||
|
},
|
||||||
|
|
||||||
|
show: function() {
|
||||||
|
Common.Views.AdvancedSettingsWindow.prototype.show.apply(this, arguments);
|
||||||
|
},
|
||||||
|
|
||||||
|
close: function() {
|
||||||
|
Common.Views.AdvancedSettingsWindow.prototype.close.apply(this, arguments);
|
||||||
|
Common.Utils.InternalSettings.set("de-bookmarks-hidden", this.chHidden.getValue()=='checked');
|
||||||
|
},
|
||||||
|
|
||||||
|
_setDefaults: function (props) {
|
||||||
|
this.refreshBookmarks();
|
||||||
|
this.bookmarksList.scrollToRecord(this.bookmarksList.selectByIndex(0));
|
||||||
|
},
|
||||||
|
|
||||||
|
getSettings: function () {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
|
||||||
|
onDlgBtnClick: function(event) {
|
||||||
|
var state = (typeof(event) == 'object') ? event.currentTarget.attributes['result'].value : event;
|
||||||
|
if (state == 'add') {
|
||||||
|
this.props.asc_AddBookmark(this.txtName.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
this.close();
|
||||||
|
},
|
||||||
|
|
||||||
|
onPrimary: function() {
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
|
||||||
|
refreshBookmarks: function() {
|
||||||
|
if (this.props) {
|
||||||
|
var store = this.bookmarksList.store,
|
||||||
|
count = this.props.asc_GetCount(),
|
||||||
|
showHidden = this.chHidden.getValue()=='checked',
|
||||||
|
arr = [];
|
||||||
|
for (var i=0; i<count; i++) {
|
||||||
|
var name = this.props.asc_GetName(i);
|
||||||
|
if (!this.props.asc_IsInternalUseBookmark(name) && (showHidden || !this.props.asc_IsHiddenBookmark(name))) {
|
||||||
|
var rec = new Common.UI.DataViewModel();
|
||||||
|
rec.set({
|
||||||
|
value: name,
|
||||||
|
location: i
|
||||||
|
});
|
||||||
|
arr.push(rec);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
store.reset(arr, {silent: false});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onSelectBookmark: function(listView, itemView, record) {
|
||||||
|
var value = record.get('value');
|
||||||
|
this.txtName.setValue(value);
|
||||||
|
this.btnAdd.setDisabled(false);
|
||||||
|
this.btnGoto.setDisabled(false);
|
||||||
|
this.btnDelete.setDisabled(false);
|
||||||
|
},
|
||||||
|
|
||||||
|
gotoBookmark: function(btn, eOpts){
|
||||||
|
var rec = this.bookmarksList.getSelectedRec();
|
||||||
|
if (rec.length>0) {
|
||||||
|
this.props.asc_GoToBookmark(rec[0].get('value'));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onDblClickBookmark: function(listView, itemView, record) {
|
||||||
|
this.props.asc_GoToBookmark(record.get('value'));
|
||||||
|
},
|
||||||
|
|
||||||
|
deleteBookmark: function(btn, eOpts){
|
||||||
|
var rec = this.bookmarksList.getSelectedRec();
|
||||||
|
if (rec.length>0) {
|
||||||
|
this.props.asc_RemoveBookmark(rec[0].get('value'));
|
||||||
|
var store = this.bookmarksList.store;
|
||||||
|
var idx = _.indexOf(store.models, rec[0]);
|
||||||
|
store.remove(rec[0]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onRadioSort: function(field, newValue, eOpts) {
|
||||||
|
if (newValue) {
|
||||||
|
this.bookmarksList.store.sort();
|
||||||
|
this.bookmarksList.onResetItems();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onChangeHidden: function(field, newValue, oldValue, eOpts){
|
||||||
|
this.refreshBookmarks();
|
||||||
|
},
|
||||||
|
|
||||||
|
onNameChanging: function (input, value) {
|
||||||
|
var exist = this.props.asc_HaveBookmark(value);
|
||||||
|
this.bookmarksList.deselectAll();
|
||||||
|
this.btnAdd.setDisabled(!this.props.asc_CheckNewBookmarkName(value) && !exist);
|
||||||
|
this.btnGoto.setDisabled(!exist);
|
||||||
|
this.btnDelete.setDisabled(!exist);
|
||||||
|
},
|
||||||
|
|
||||||
|
textTitle: 'Bookmarks',
|
||||||
|
textLocation: 'Location',
|
||||||
|
textBookmarkName: 'Bookmark name',
|
||||||
|
textSort: 'Sort by',
|
||||||
|
textName: 'Name',
|
||||||
|
textAdd: 'Add',
|
||||||
|
textGoto: 'Go to',
|
||||||
|
textDelete: 'Delete',
|
||||||
|
textClose: 'Close',
|
||||||
|
textHidden: 'Hidden bookmarks'
|
||||||
|
|
||||||
|
}, DE.Views.BookmarksDialog || {}))
|
||||||
|
});
|
|
@ -556,12 +556,13 @@ define([
|
||||||
ToolTip = getUserName(moveData.get_UserId());
|
ToolTip = getUserName(moveData.get_UserId());
|
||||||
|
|
||||||
showPoint = [moveData.get_X()+me._XY[0], moveData.get_Y()+me._XY[1]];
|
showPoint = [moveData.get_X()+me._XY[0], moveData.get_Y()+me._XY[1]];
|
||||||
|
var maxwidth = showPoint[0];
|
||||||
showPoint[0] = me._BodyWidth - showPoint[0];
|
showPoint[0] = me._BodyWidth - showPoint[0];
|
||||||
showPoint[1] -= ((moveData.get_LockedObjectType()==2) ? me._TtHeight : 0);
|
showPoint[1] -= ((moveData.get_LockedObjectType()==2) ? me._TtHeight : 0);
|
||||||
|
|
||||||
if (showPoint[1] > me._XY[1] && showPoint[1]+me._TtHeight < me._XY[1]+me._Height) {
|
if (showPoint[1] > me._XY[1] && showPoint[1]+me._TtHeight < me._XY[1]+me._Height) {
|
||||||
src.text(ToolTip);
|
src.text(ToolTip);
|
||||||
src.css({visibility: 'visible', top: showPoint[1] + 'px', right: showPoint[0] + 'px'});
|
src.css({visibility: 'visible', top: showPoint[1] + 'px', right: showPoint[0] + 'px', 'max-width': maxwidth + 'px'});
|
||||||
} else {
|
} else {
|
||||||
src.css({visibility: 'hidden'});
|
src.css({visibility: 'hidden'});
|
||||||
}
|
}
|
||||||
|
@ -2263,6 +2264,43 @@ define([
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var menuImgReplace = new Common.UI.MenuItem({
|
||||||
|
caption : me.textReplace,
|
||||||
|
menu : new Common.UI.Menu({
|
||||||
|
menuAlign: 'tl-tr',
|
||||||
|
items: [
|
||||||
|
new Common.UI.MenuItem({
|
||||||
|
caption : this.textFromFile
|
||||||
|
}).on('click', function(item) {
|
||||||
|
setTimeout(function(){
|
||||||
|
if (me.api) me.api.ChangeImageFromFile();
|
||||||
|
me.fireEvent('editcomplete', me);
|
||||||
|
}, 10);
|
||||||
|
}),
|
||||||
|
new Common.UI.MenuItem({
|
||||||
|
caption : this.textFromUrl
|
||||||
|
}).on('click', function(item) {
|
||||||
|
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)) {
|
||||||
|
var props = new Asc.asc_CImgProperty();
|
||||||
|
props.put_ImageUrl(checkUrl);
|
||||||
|
me.api.ImgApply(props);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
me.fireEvent('editcomplete', me);
|
||||||
|
}
|
||||||
|
})).show();
|
||||||
|
})
|
||||||
|
]
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
var menuImgCopy = new Common.UI.MenuItem({
|
var menuImgCopy = new Common.UI.MenuItem({
|
||||||
caption : me.textCopy,
|
caption : me.textCopy,
|
||||||
value : 'copy'
|
value : 'copy'
|
||||||
|
@ -2340,13 +2378,19 @@ define([
|
||||||
|
|
||||||
menuChartEdit.setVisible(!_.isNull(value.imgProps.value.get_ChartProperties()) && !onlyCommonProps);
|
menuChartEdit.setVisible(!_.isNull(value.imgProps.value.get_ChartProperties()) && !onlyCommonProps);
|
||||||
|
|
||||||
me.menuOriginalSize.setVisible(value.imgProps.isOnlyImg);
|
me.menuOriginalSize.setVisible(value.imgProps.isOnlyImg || !value.imgProps.isChart && !value.imgProps.isShape);
|
||||||
me.pictureMenu.items[10].setVisible(menuChartEdit.isVisible() || me.menuOriginalSize.isVisible());
|
|
||||||
|
var pluginGuid = value.imgProps.value.asc_getPluginGuid();
|
||||||
|
menuImgReplace.setVisible(value.imgProps.isOnlyImg && (pluginGuid===null || pluginGuid===undefined));
|
||||||
|
if (menuImgReplace.isVisible())
|
||||||
|
menuImgReplace.setDisabled(islocked || pluginGuid===null);
|
||||||
|
|
||||||
var islocked = value.imgProps.locked || (value.headerProps!==undefined && value.headerProps.locked);
|
var islocked = value.imgProps.locked || (value.headerProps!==undefined && value.headerProps.locked);
|
||||||
if (menuChartEdit.isVisible())
|
if (menuChartEdit.isVisible())
|
||||||
menuChartEdit.setDisabled(islocked || value.imgProps.value.get_SeveralCharts());
|
menuChartEdit.setDisabled(islocked || value.imgProps.value.get_SeveralCharts());
|
||||||
|
|
||||||
|
me.pictureMenu.items[14].setVisible(menuChartEdit.isVisible());
|
||||||
|
|
||||||
me.menuOriginalSize.setDisabled(islocked || value.imgProps.value.get_ImageUrl()===null || value.imgProps.value.get_ImageUrl()===undefined);
|
me.menuOriginalSize.setDisabled(islocked || value.imgProps.value.get_ImageUrl()===null || value.imgProps.value.get_ImageUrl()===undefined);
|
||||||
menuImageAdvanced.setDisabled(islocked);
|
menuImageAdvanced.setDisabled(islocked);
|
||||||
menuImageAlign.setDisabled( islocked || (wrapping == Asc.c_oAscWrapStyle2.Inline) );
|
menuImageAlign.setDisabled( islocked || (wrapping == Asc.c_oAscWrapStyle2.Inline) );
|
||||||
|
@ -2389,6 +2433,7 @@ define([
|
||||||
me.menuImageWrap,
|
me.menuImageWrap,
|
||||||
{ caption: '--' },
|
{ caption: '--' },
|
||||||
me.menuOriginalSize,
|
me.menuOriginalSize,
|
||||||
|
menuImgReplace,
|
||||||
menuChartEdit,
|
menuChartEdit,
|
||||||
{ caption: '--' },
|
{ caption: '--' },
|
||||||
menuImageAdvanced
|
menuImageAdvanced
|
||||||
|
@ -3728,7 +3773,10 @@ define([
|
||||||
textTOCSettings: 'Table of contents settings',
|
textTOCSettings: 'Table of contents settings',
|
||||||
textTOC: 'Table of contents',
|
textTOC: 'Table of contents',
|
||||||
textRefreshField: 'Refresh field',
|
textRefreshField: 'Refresh field',
|
||||||
txtPasteSourceFormat: 'Keep source formatting'
|
txtPasteSourceFormat: 'Keep source formatting',
|
||||||
|
textReplace: 'Replace image',
|
||||||
|
textFromUrl: 'From URL',
|
||||||
|
textFromFile: 'From File'
|
||||||
|
|
||||||
}, DE.Views.DocumentHolder || {}));
|
}, DE.Views.DocumentHolder || {}));
|
||||||
});
|
});
|
|
@ -58,7 +58,7 @@ define([
|
||||||
],[
|
],[
|
||||||
// {name: 'DOC', imgCls: 'doc-format btn-doc', type: Asc.c_oAscFileType.DOC},
|
// {name: 'DOC', imgCls: 'doc-format btn-doc', type: Asc.c_oAscFileType.DOC},
|
||||||
{name: 'ODT', imgCls: 'odt', type: Asc.c_oAscFileType.ODT},
|
{name: 'ODT', imgCls: 'odt', type: Asc.c_oAscFileType.ODT},
|
||||||
// {name: 'RTF', imgCls: 'doc-format btn-rtf', type: Asc.c_oAscFileType.RTF},
|
{name: 'RTF', imgCls: 'rtf', type: Asc.c_oAscFileType.RTF},
|
||||||
{name: 'HTML (Zipped)', imgCls: 'html', type: Asc.c_oAscFileType.HTML}
|
{name: 'HTML (Zipped)', imgCls: 'html', type: Asc.c_oAscFileType.HTML}
|
||||||
// {name: 'EPUB', imgCls: 'doc-format btn-epub', type: Asc.c_oAscFileType.EPUB}
|
// {name: 'EPUB', imgCls: 'doc-format btn-epub', type: Asc.c_oAscFileType.EPUB}
|
||||||
]],
|
]],
|
||||||
|
|
|
@ -42,6 +42,11 @@
|
||||||
if (Common === undefined)
|
if (Common === undefined)
|
||||||
var Common = {};
|
var Common = {};
|
||||||
|
|
||||||
|
var c_oHyperlinkType = {
|
||||||
|
InternalLink:0,
|
||||||
|
WebLink: 1
|
||||||
|
};
|
||||||
|
|
||||||
define([
|
define([
|
||||||
'common/main/lib/util/utils',
|
'common/main/lib/util/utils',
|
||||||
'common/main/lib/component/InputField',
|
'common/main/lib/component/InputField',
|
||||||
|
@ -61,11 +66,20 @@ define([
|
||||||
}, options || {});
|
}, options || {});
|
||||||
|
|
||||||
this.template = [
|
this.template = [
|
||||||
'<div class="box">',
|
'<div class="box" style="height: 150px;">',
|
||||||
'<div class="input-row">',
|
'<div class="input-row hidden" style="margin-bottom: 10px;">',
|
||||||
'<label>' + this.textUrl + ' *</label>',
|
'<button type="button" class="btn btn-text-default auto" id="id-dlg-hyperlink-external" style="border-top-right-radius: 0;border-bottom-right-radius: 0;">', this.textExternal,'</button>',
|
||||||
|
'<button type="button" class="btn btn-text-default auto" id="id-dlg-hyperlink-internal" style="border-top-left-radius: 0;border-bottom-left-radius: 0;">', this.textInternal,'</button>',
|
||||||
|
'</div>',
|
||||||
|
'<div id="id-external-link">',
|
||||||
|
'<div class="input-row">',
|
||||||
|
'<label>' + this.textUrl + ' *</label>',
|
||||||
|
'</div>',
|
||||||
|
'<div id="id-dlg-hyperlink-url" class="input-row" style="margin-bottom: 5px;"></div>',
|
||||||
|
'</div>',
|
||||||
|
'<div id="id-internal-link">',
|
||||||
|
'<div id="id-dlg-hyperlink-list" style="width:100%; height: 130px;border: 1px solid #cfcfcf;"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div id="id-dlg-hyperlink-url" class="input-row" style="margin-bottom: 5px;"></div>',
|
|
||||||
'<div class="input-row">',
|
'<div class="input-row">',
|
||||||
'<label>' + this.textDisplay + '</label>',
|
'<label>' + this.textDisplay + '</label>',
|
||||||
'</div>',
|
'</div>',
|
||||||
|
@ -94,6 +108,23 @@ define([
|
||||||
var me = this,
|
var me = this,
|
||||||
$window = this.getChild();
|
$window = this.getChild();
|
||||||
|
|
||||||
|
me.btnExternal = new Common.UI.Button({
|
||||||
|
el: $('#id-dlg-hyperlink-external'),
|
||||||
|
enableToggle: true,
|
||||||
|
toggleGroup: 'hyperlink-type',
|
||||||
|
allowDepress: false,
|
||||||
|
pressed: true
|
||||||
|
});
|
||||||
|
me.btnExternal.on('click', _.bind(me.onLinkTypeClick, me, c_oHyperlinkType.WebLink));
|
||||||
|
|
||||||
|
me.btnInternal = new Common.UI.Button({
|
||||||
|
el: $('#id-dlg-hyperlink-internal'),
|
||||||
|
enableToggle: true,
|
||||||
|
toggleGroup: 'hyperlink-type',
|
||||||
|
allowDepress: false
|
||||||
|
});
|
||||||
|
me.btnInternal.on('click', _.bind(me.onLinkTypeClick, me, c_oHyperlinkType.InternalLink));
|
||||||
|
|
||||||
me.inputUrl = new Common.UI.InputField({
|
me.inputUrl = new Common.UI.InputField({
|
||||||
el : $('#id-dlg-hyperlink-url'),
|
el : $('#id-dlg-hyperlink-url'),
|
||||||
allowBlank : false,
|
allowBlank : false,
|
||||||
|
@ -122,8 +153,117 @@ define([
|
||||||
maxLength : Asc.c_oAscMaxTooltipLength
|
maxLength : Asc.c_oAscMaxTooltipLength
|
||||||
});
|
});
|
||||||
|
|
||||||
|
me.internalList = new Common.UI.TreeView({
|
||||||
|
el: $('#id-dlg-hyperlink-list'),
|
||||||
|
store: new Common.UI.TreeViewStore(),
|
||||||
|
enableKeyEvents: true
|
||||||
|
});
|
||||||
|
me.internalList.on('item:select', _.bind(this.onSelectItem, this));
|
||||||
|
|
||||||
|
me.btnOk = new Common.UI.Button({
|
||||||
|
el: $window.find('.primary')
|
||||||
|
});
|
||||||
|
|
||||||
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
|
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
|
||||||
$window.find('input').on('keypress', _.bind(this.onKeyPress, this));
|
$window.find('input').on('keypress', _.bind(this.onKeyPress, this));
|
||||||
|
me.externalPanel = $window.find('#id-external-link');
|
||||||
|
me.internalPanel = $window.find('#id-internal-link');
|
||||||
|
},
|
||||||
|
|
||||||
|
ShowHideElem: function(value) {
|
||||||
|
this.externalPanel.toggleClass('hidden', value !== c_oHyperlinkType.WebLink);
|
||||||
|
this.internalPanel.toggleClass('hidden', value !== c_oHyperlinkType.InternalLink);
|
||||||
|
var store = this.internalList.store;
|
||||||
|
if (value==c_oHyperlinkType.InternalLink) {
|
||||||
|
if (store.length<1) {
|
||||||
|
var anchors = this.api.asc_GetHyperlinkAnchors(),
|
||||||
|
count = anchors.length,
|
||||||
|
prev_level = 0,
|
||||||
|
header_level = 0,
|
||||||
|
arr = [];
|
||||||
|
arr.push(new Common.UI.TreeViewModel({
|
||||||
|
name : this.txtBeginning,
|
||||||
|
level: 0,
|
||||||
|
index: 0,
|
||||||
|
hasParent: false,
|
||||||
|
isEmptyItem: false,
|
||||||
|
isNotHeader: true,
|
||||||
|
hasSubItems: false
|
||||||
|
}));
|
||||||
|
arr.push(new Common.UI.TreeViewModel({
|
||||||
|
name : this.txtHeadings,
|
||||||
|
level: 0,
|
||||||
|
index: 1,
|
||||||
|
hasParent: false,
|
||||||
|
isEmptyItem: false,
|
||||||
|
isNotHeader: false,
|
||||||
|
hasSubItems: false
|
||||||
|
}));
|
||||||
|
|
||||||
|
for (var i=0; i<count; i++) {
|
||||||
|
var anchor = anchors[i],
|
||||||
|
level = anchors[i].asc_GetHeadingLevel(),
|
||||||
|
hasParent = true;
|
||||||
|
if (anchor.asc_GetType()== Asc.c_oAscHyperlinkAnchor.Heading){
|
||||||
|
if (level>prev_level)
|
||||||
|
arr[arr.length-1].set('hasSubItems', true);
|
||||||
|
if (level<=header_level) {
|
||||||
|
header_level = level;
|
||||||
|
hasParent = false;
|
||||||
|
}
|
||||||
|
arr.push(new Common.UI.TreeViewModel({
|
||||||
|
name : anchor.asc_GetHeadingText(),
|
||||||
|
level: level,
|
||||||
|
index: i+2,
|
||||||
|
hasParent: hasParent,
|
||||||
|
type: Asc.c_oAscHyperlinkAnchor.Heading,
|
||||||
|
headingParagraph: anchor.asc_GetHeadingParagraph()
|
||||||
|
}));
|
||||||
|
prev_level = level;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
arr.push(new Common.UI.TreeViewModel({
|
||||||
|
name : this.txtBookmarks,
|
||||||
|
level: 0,
|
||||||
|
index: arr.length,
|
||||||
|
hasParent: false,
|
||||||
|
isEmptyItem: false,
|
||||||
|
isNotHeader: false,
|
||||||
|
hasSubItems: false
|
||||||
|
}));
|
||||||
|
|
||||||
|
prev_level = 0;
|
||||||
|
for (var i=0; i<count; i++) {
|
||||||
|
var anchor = anchors[i],
|
||||||
|
hasParent = true;
|
||||||
|
if (anchor.asc_GetType()== Asc.c_oAscHyperlinkAnchor.Bookmark){
|
||||||
|
if (prev_level<1)
|
||||||
|
arr[arr.length-1].set('hasSubItems', true);
|
||||||
|
arr.push(new Common.UI.TreeViewModel({
|
||||||
|
name : anchor.asc_GetBookmarkName(),
|
||||||
|
level: 1,
|
||||||
|
index: arr.length,
|
||||||
|
hasParent: false,
|
||||||
|
type: Asc.c_oAscHyperlinkAnchor.Bookmark
|
||||||
|
}));
|
||||||
|
prev_level = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
store.reset(arr);
|
||||||
|
}
|
||||||
|
var rec = this.internalList.getSelectedRec();
|
||||||
|
this.btnOk.setDisabled(rec.length<1 || rec[0].get('level')==0 && rec[0].get('index')>0);
|
||||||
|
|
||||||
|
} else
|
||||||
|
this.btnOk.setDisabled(false);
|
||||||
|
},
|
||||||
|
|
||||||
|
onLinkTypeClick: function(type, btn, event) {
|
||||||
|
this.ShowHideElem(type);
|
||||||
|
},
|
||||||
|
|
||||||
|
onSelectItem: function(picker, item, record, e){
|
||||||
|
this.btnOk.setDisabled(record.get('level')==0 && record.get('index')>0);
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function() {
|
show: function() {
|
||||||
|
@ -139,10 +279,32 @@ define([
|
||||||
if (props) {
|
if (props) {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
if (props.get_Value()) {
|
// var bookmark = props.get_Bookmark(),
|
||||||
me.inputUrl.setValue(props.get_Value().replace(new RegExp(" ",'g'), "%20"));
|
// type = (bookmark === null || bookmark=='') ? c_oHyperlinkType.WebLink : c_oHyperlinkType.InternalLink;
|
||||||
|
|
||||||
|
var type = c_oHyperlinkType.WebLink;
|
||||||
|
(type == c_oHyperlinkType.WebLink) ? me.btnExternal.toggle(true) : me.btnInternal.toggle(true);
|
||||||
|
me.ShowHideElem(type);
|
||||||
|
|
||||||
|
if (type == c_oHyperlinkType.WebLink) {
|
||||||
|
if (props.get_Value()) {
|
||||||
|
me.inputUrl.setValue(props.get_Value().replace(new RegExp(" ",'g'), "%20"));
|
||||||
|
} else {
|
||||||
|
me.inputUrl.setValue('');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
me.inputUrl.setValue('');
|
if (props.is_TopOfDocument())
|
||||||
|
this.internalList.selectByIndex(0);
|
||||||
|
else if (props.is_Heading()) {
|
||||||
|
var heading = props.get_Heading(),
|
||||||
|
rec = this.internalList.store.findWhere({type: Asc.c_oAscHyperlinkAnchor.Heading, headingParagraph: heading });
|
||||||
|
if (rec)
|
||||||
|
this.internalList.scrollToRecord(this.internalList.selectRecord(rec));
|
||||||
|
} else {
|
||||||
|
var rec = this.internalList.store.findWhere({type: Asc.c_oAscHyperlinkAnchor.Bookmark, name: bookmark});
|
||||||
|
if (rec)
|
||||||
|
this.internalList.scrollToRecord(this.internalList.selectRecord(rec));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (props.get_Text() !== null) {
|
if (props.get_Text() !== null) {
|
||||||
|
@ -163,17 +325,34 @@ define([
|
||||||
getSettings: function () {
|
getSettings: function () {
|
||||||
var me = this,
|
var me = this,
|
||||||
props = new Asc.CHyperlinkProperty(),
|
props = new Asc.CHyperlinkProperty(),
|
||||||
url = $.trim(me.inputUrl.getValue());
|
display = '';
|
||||||
|
|
||||||
if (! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(url) )
|
if (this.btnExternal.isActive()) {//WebLink
|
||||||
url = ( (me.isEmail) ? 'mailto:' : 'http://' ) + url;
|
var url = $.trim(me.inputUrl.getValue());
|
||||||
|
|
||||||
url = url.replace(new RegExp("%20",'g')," ");
|
if (! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(url) )
|
||||||
props.put_Value(url);
|
url = ( (me.isEmail) ? 'mailto:' : 'http://' ) + url;
|
||||||
|
|
||||||
|
url = url.replace(new RegExp("%20",'g')," ");
|
||||||
|
props.put_Value(url);
|
||||||
|
// props.put_Bookmark(null);
|
||||||
|
display = url;
|
||||||
|
} else {
|
||||||
|
var rec = this.internalList.getSelectedRec();
|
||||||
|
if (rec.length>0) {
|
||||||
|
props.put_Bookmark(rec[0].get('name'));
|
||||||
|
if (rec[0].get('index')==0)
|
||||||
|
props.put_TopOfDocument();
|
||||||
|
var para = rec[0].get('headingParagraph');
|
||||||
|
if (para)
|
||||||
|
props.put_Heading(para);
|
||||||
|
display = rec[0].get('name');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!me.inputDisplay.isDisabled() && ( this.isTextChanged || _.isEmpty(me.inputDisplay.getValue()))) {
|
if (!me.inputDisplay.isDisabled() && ( this.isTextChanged || _.isEmpty(me.inputDisplay.getValue()))) {
|
||||||
if (_.isEmpty(me.inputDisplay.getValue()))
|
if (_.isEmpty(me.inputDisplay.getValue()))
|
||||||
me.inputDisplay.setValue(url);
|
me.inputDisplay.setValue(display);
|
||||||
props.put_Text(me.inputDisplay.getValue());
|
props.put_Text(me.inputDisplay.getValue());
|
||||||
} else {
|
} else {
|
||||||
props.put_Text(null);
|
props.put_Text(null);
|
||||||
|
@ -199,13 +378,17 @@ define([
|
||||||
_handleInput: function(state) {
|
_handleInput: function(state) {
|
||||||
if (this.options.handler) {
|
if (this.options.handler) {
|
||||||
if (state == 'ok') {
|
if (state == 'ok') {
|
||||||
var checkurl = this.inputUrl.checkValidate(),
|
if (this.btnExternal.isActive()) {//WebLink
|
||||||
checkdisp = this.inputDisplay.checkValidate();
|
if (this.inputUrl.checkValidate() !== true) {
|
||||||
if (checkurl !== true) {
|
this.inputUrl.cmpEl.find('input').focus();
|
||||||
this.inputUrl.cmpEl.find('input').focus();
|
return;
|
||||||
return;
|
}
|
||||||
|
} else {
|
||||||
|
var rec = this.internalList.getSelectedRec();
|
||||||
|
if (rec.length<1 || rec[0].get('level')==0 && rec[0].get('index')>0)
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (checkdisp !== true) {
|
if (this.inputDisplay.checkValidate() !== true) {
|
||||||
this.inputDisplay.cmpEl.find('input').focus();
|
this.inputDisplay.cmpEl.find('input').focus();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -225,6 +408,11 @@ define([
|
||||||
txtNotUrl: 'This field should be a URL in the format \"http://www.example.com\"',
|
txtNotUrl: 'This field should be a URL in the format \"http://www.example.com\"',
|
||||||
textTooltip: 'ScreenTip text',
|
textTooltip: 'ScreenTip text',
|
||||||
textDefault: 'Selected text',
|
textDefault: 'Selected text',
|
||||||
textTitle: 'Hyperlink Settings'
|
textTitle: 'Hyperlink Settings',
|
||||||
|
textExternal: 'External Link',
|
||||||
|
textInternal: 'Place in Document',
|
||||||
|
txtBeginning: 'Beginning of document',
|
||||||
|
txtHeadings: 'Headings',
|
||||||
|
txtBookmarks: 'Bookmarks'
|
||||||
}, DE.Views.HyperlinkSettingsDialog || {}))
|
}, DE.Views.HyperlinkSettingsDialog || {}))
|
||||||
});
|
});
|
|
@ -318,7 +318,7 @@ define([
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
var section = this.api.asc_GetSectionProps(),
|
var section = this.api.asc_GetSectionProps(),
|
||||||
ratio = (this._state.Height>0) ? this._state.Width/this._state.Height : 1,
|
ratio = (this._state.Height>0) ? this._state.Width/this._state.Height : 1,
|
||||||
pagew = section.get_W() - section.get_LeftMargin() - section.get_RightMargin(),
|
pagew = (this.api.asc_GetCurrentColumnWidth) ? this.api.asc_GetCurrentColumnWidth() : (section.get_W() - section.get_LeftMargin() - section.get_RightMargin()),
|
||||||
pageh = section.get_H() - section.get_TopMargin() - section.get_BottomMargin(),
|
pageh = section.get_H() - section.get_TopMargin() - section.get_BottomMargin(),
|
||||||
pageratio = pagew/pageh,
|
pageratio = pagew/pageh,
|
||||||
w, h;
|
w, h;
|
||||||
|
|
|
@ -101,6 +101,10 @@ define([
|
||||||
me.fireEvent('links:hyperlink');
|
me.fireEvent('links:hyperlink');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.btnBookmarks.on('click', function (b, e) {
|
||||||
|
me.fireEvent('links:bookmarks');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -161,6 +165,15 @@ define([
|
||||||
_injectComponent('#slot-btn-contents-update', this.btnContentsUpdate);
|
_injectComponent('#slot-btn-contents-update', this.btnContentsUpdate);
|
||||||
this.paragraphControls.push(this.btnContentsUpdate);
|
this.paragraphControls.push(this.btnContentsUpdate);
|
||||||
|
|
||||||
|
this.btnBookmarks = new Common.UI.Button({
|
||||||
|
cls: 'btn-toolbar x-huge icon-top',
|
||||||
|
iconCls: 'btn-bookmarks',
|
||||||
|
caption: this.capBtnBookmarks,
|
||||||
|
disabled: true
|
||||||
|
});
|
||||||
|
_injectComponent('#slot-btn-bookmarks', this.btnBookmarks);
|
||||||
|
this.paragraphControls.push(this.btnBookmarks);
|
||||||
|
|
||||||
this._state = {disabled: false};
|
this._state = {disabled: false};
|
||||||
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
|
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
|
||||||
},
|
},
|
||||||
|
@ -255,6 +268,8 @@ define([
|
||||||
btn.updateHint(me.tipInsertHyperlink + Common.Utils.String.platformKey('Ctrl+K'));
|
btn.updateHint(me.tipInsertHyperlink + Common.Utils.String.platformKey('Ctrl+K'));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
me.btnBookmarks.updateHint(me.tipBookmarks);
|
||||||
|
|
||||||
setEvents.call(me);
|
setEvents.call(me);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -293,7 +308,9 @@ define([
|
||||||
capBtnInsFootnote: 'Footnotes',
|
capBtnInsFootnote: 'Footnotes',
|
||||||
confirmDeleteFootnotes: 'Do you want to delete all footnotes?',
|
confirmDeleteFootnotes: 'Do you want to delete all footnotes?',
|
||||||
capBtnInsLink: 'Hyperlink',
|
capBtnInsLink: 'Hyperlink',
|
||||||
tipInsertHyperlink: 'Add Hyperlink'
|
tipInsertHyperlink: 'Add Hyperlink',
|
||||||
|
capBtnBookmarks: 'Bookmark',
|
||||||
|
tipBookmarks: 'Create a bookmark'
|
||||||
}
|
}
|
||||||
}()), DE.Views.Links || {}));
|
}()), DE.Views.Links || {}));
|
||||||
});
|
});
|
|
@ -169,7 +169,7 @@ define([ 'text!documenteditor/main/app/template/MailMergeEmailDlg.template',
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMessage: function(msg) {
|
_onMessage: function(msg) {
|
||||||
if (msg) {
|
if (msg /*&& msg.Referer == "onlyoffice"*/) {
|
||||||
// if ( !_.isEmpty(msg.folder) ) {
|
// if ( !_.isEmpty(msg.folder) ) {
|
||||||
// this.trigger('mailmergefolder', this, msg.folder); // save last folder url
|
// this.trigger('mailmergefolder', this, msg.folder); // save last folder url
|
||||||
// }
|
// }
|
||||||
|
|
|
@ -116,7 +116,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMessage: function(msg) {
|
_onMessage: function(msg) {
|
||||||
if (msg && msg.file !== undefined) {
|
if (msg /*&& msg.Referer == "onlyoffice"*/ && msg.file !== undefined) {
|
||||||
Common.NotificationCenter.trigger('window:close', this);
|
Common.NotificationCenter.trigger('window:close', this);
|
||||||
var me = this;
|
var me = this;
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
|
|
|
@ -120,7 +120,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMessage: function(msg) {
|
_onMessage: function(msg) {
|
||||||
if (msg) {
|
if (msg /*&& msg.Referer == "onlyoffice"*/) {
|
||||||
if ( !_.isEmpty(msg.error) ) {
|
if ( !_.isEmpty(msg.error) ) {
|
||||||
this.trigger('mailmergeerror', this, msg.error);
|
this.trigger('mailmergeerror', this, msg.error);
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,22 +120,25 @@ define([
|
||||||
this.btnSave = new Common.UI.Button({
|
this.btnSave = new Common.UI.Button({
|
||||||
id: 'id-toolbar-btn-save',
|
id: 'id-toolbar-btn-save',
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'no-mask ' + this.btnSaveCls
|
iconCls: 'no-mask ' + this.btnSaveCls,
|
||||||
|
signals: ['disabled']
|
||||||
});
|
});
|
||||||
this.toolbarControls.push(this.btnSave);
|
this.toolbarControls.push(this.btnSave);
|
||||||
this.btnsSave = [this.btnSave];
|
this.btnCollabChanges = this.btnSave;
|
||||||
|
|
||||||
this.btnUndo = new Common.UI.Button({
|
this.btnUndo = new Common.UI.Button({
|
||||||
id: 'id-toolbar-btn-undo',
|
id: 'id-toolbar-btn-undo',
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'btn-undo'
|
iconCls: 'btn-undo',
|
||||||
|
signals: ['disabled']
|
||||||
});
|
});
|
||||||
this.toolbarControls.push(this.btnUndo);
|
this.toolbarControls.push(this.btnUndo);
|
||||||
|
|
||||||
this.btnRedo = new Common.UI.Button({
|
this.btnRedo = new Common.UI.Button({
|
||||||
id: 'id-toolbar-btn-redo',
|
id: 'id-toolbar-btn-redo',
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'btn-redo'
|
iconCls: 'btn-redo',
|
||||||
|
signals: ['disabled']
|
||||||
});
|
});
|
||||||
this.toolbarControls.push(this.btnRedo);
|
this.toolbarControls.push(this.btnRedo);
|
||||||
|
|
||||||
|
@ -941,33 +944,6 @@ define([
|
||||||
iconCls: 'btn-mailrecepients'
|
iconCls: 'btn-mailrecepients'
|
||||||
});
|
});
|
||||||
|
|
||||||
this.btnHide = new Common.UI.Button({
|
|
||||||
id: 'id-toolbar-btn-hidebars',
|
|
||||||
cls: 'btn-toolbar',
|
|
||||||
iconCls: 'btn-hidebars no-mask',
|
|
||||||
menu: true
|
|
||||||
});
|
|
||||||
this.toolbarControls.push(this.btnHide);
|
|
||||||
|
|
||||||
this.btnFitPage = {
|
|
||||||
conf: {checked: false},
|
|
||||||
setChecked: function (val) {
|
|
||||||
this.conf.checked = val;
|
|
||||||
},
|
|
||||||
isChecked: function () {
|
|
||||||
return this.conf.checked;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
this.btnFitWidth = clone(this.btnFitPage);
|
|
||||||
this.mnuZoom = {options: {value: 100}};
|
|
||||||
|
|
||||||
this.btnAdvSettings = new Common.UI.Button({
|
|
||||||
id: 'id-toolbar-btn-settings',
|
|
||||||
cls: 'btn-toolbar',
|
|
||||||
iconCls: 'btn-settings no-mask'
|
|
||||||
});
|
|
||||||
this.toolbarControls.push(this.btnAdvSettings);
|
|
||||||
|
|
||||||
me.btnImgAlign = new Common.UI.Button({
|
me.btnImgAlign = new Common.UI.Button({
|
||||||
cls: 'btn-toolbar x-huge icon-top',
|
cls: 'btn-toolbar x-huge icon-top',
|
||||||
iconCls: 'btn-img-align',
|
iconCls: 'btn-img-align',
|
||||||
|
@ -1195,9 +1171,9 @@ define([
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
me.setTab('home');
|
||||||
if ( me.isCompactView )
|
if ( me.isCompactView )
|
||||||
me.setFolded(true); else
|
me.setFolded(true);
|
||||||
me.setTab('home');
|
|
||||||
|
|
||||||
var top = Common.localStorage.getItem("de-pgmargins-top"),
|
var top = Common.localStorage.getItem("de-pgmargins-top"),
|
||||||
left = Common.localStorage.getItem("de-pgmargins-left"),
|
left = Common.localStorage.getItem("de-pgmargins-left"),
|
||||||
|
@ -1288,8 +1264,6 @@ define([
|
||||||
_injectComponent('#slot-btn-clearstyle', this.btnClearStyle);
|
_injectComponent('#slot-btn-clearstyle', this.btnClearStyle);
|
||||||
_injectComponent('#slot-btn-copystyle', this.btnCopyStyle);
|
_injectComponent('#slot-btn-copystyle', this.btnCopyStyle);
|
||||||
_injectComponent('#slot-btn-colorschemas', this.btnColorSchemas);
|
_injectComponent('#slot-btn-colorschemas', this.btnColorSchemas);
|
||||||
_injectComponent('#slot-btn-hidebars', this.btnHide);
|
|
||||||
_injectComponent('#slot-btn-settings', this.btnAdvSettings);
|
|
||||||
_injectComponent('#slot-btn-paracolor', this.btnParagraphColor);
|
_injectComponent('#slot-btn-paracolor', this.btnParagraphColor);
|
||||||
_injectComponent('#slot-field-styles', this.listStyles);
|
_injectComponent('#slot-field-styles', this.listStyles);
|
||||||
_injectComponent('#slot-btn-halign', this.btnHorizontalAlign);
|
_injectComponent('#slot-btn-halign', this.btnHorizontalAlign);
|
||||||
|
@ -1303,12 +1277,7 @@ define([
|
||||||
+function injectBreakButtons() {
|
+function injectBreakButtons() {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
me.btnsPageBreak = [];
|
me.btnsPageBreak = createButtonSet();
|
||||||
me.btnsPageBreak.disable = function(status) {
|
|
||||||
this.forEach(function(btn) {
|
|
||||||
btn.setDisabled(status);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
var $slots = $host.find('.btn-slot.btn-pagebreak');
|
var $slots = $host.find('.btn-slot.btn-pagebreak');
|
||||||
$slots.each(function(index, el) {
|
$slots.each(function(index, el) {
|
||||||
|
@ -1323,7 +1292,7 @@ define([
|
||||||
menu: true
|
menu: true
|
||||||
}).render( $slots.eq(index) );
|
}).render( $slots.eq(index) );
|
||||||
|
|
||||||
me.btnsPageBreak.push(button);
|
me.btnsPageBreak.add(button);
|
||||||
});
|
});
|
||||||
|
|
||||||
Array.prototype.push.apply(me.paragraphControls, me.btnsPageBreak);
|
Array.prototype.push.apply(me.paragraphControls, me.btnsPageBreak);
|
||||||
|
@ -1519,7 +1488,7 @@ define([
|
||||||
this.btnDecLeftOffset.updateHint(this.tipDecPrLeft + Common.Utils.String.platformKey('Ctrl+Shift+M'));
|
this.btnDecLeftOffset.updateHint(this.tipDecPrLeft + Common.Utils.String.platformKey('Ctrl+Shift+M'));
|
||||||
this.btnIncLeftOffset.updateHint(this.tipIncPrLeft + Common.Utils.String.platformKey('Ctrl+M'));
|
this.btnIncLeftOffset.updateHint(this.tipIncPrLeft + Common.Utils.String.platformKey('Ctrl+M'));
|
||||||
this.btnLineSpace.updateHint(this.tipLineSpace);
|
this.btnLineSpace.updateHint(this.tipLineSpace);
|
||||||
this.btnShowHidenChars.updateHint(this.tipShowHiddenChars);
|
this.btnShowHidenChars.updateHint(this.tipShowHiddenChars + Common.Utils.String.platformKey('Ctrl+*'));
|
||||||
this.btnMarkers.updateHint(this.tipMarkers);
|
this.btnMarkers.updateHint(this.tipMarkers);
|
||||||
this.btnNumbers.updateHint(this.tipNumbers);
|
this.btnNumbers.updateHint(this.tipNumbers);
|
||||||
this.btnMultilevels.updateHint(this.tipMultilevels);
|
this.btnMultilevels.updateHint(this.tipMultilevels);
|
||||||
|
@ -1541,67 +1510,14 @@ define([
|
||||||
this.btnCopyStyle.updateHint(this.tipCopyStyle + Common.Utils.String.platformKey('Ctrl+Shift+C'));
|
this.btnCopyStyle.updateHint(this.tipCopyStyle + Common.Utils.String.platformKey('Ctrl+Shift+C'));
|
||||||
this.btnColorSchemas.updateHint(this.tipColorSchemas);
|
this.btnColorSchemas.updateHint(this.tipColorSchemas);
|
||||||
this.btnMailRecepients.updateHint(this.tipMailRecepients);
|
this.btnMailRecepients.updateHint(this.tipMailRecepients);
|
||||||
this.btnHide.updateHint(this.tipViewSettings);
|
|
||||||
this.btnAdvSettings.updateHint(this.tipAdvSettings);
|
|
||||||
|
|
||||||
// set menus
|
// set menus
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
this.btnHide.setMenu(new Common.UI.Menu({
|
|
||||||
cls: 'pull-right',
|
|
||||||
style: 'min-width: 180px;',
|
|
||||||
items: [
|
|
||||||
this.mnuitemCompactToolbar = new Common.UI.MenuItem({
|
|
||||||
caption: this.textCompactView,
|
|
||||||
checked: me.isCompactView,
|
|
||||||
checkable: true
|
|
||||||
}),
|
|
||||||
this.mnuitemHideStatusBar = new Common.UI.MenuItem({
|
|
||||||
caption: this.textHideStatusBar,
|
|
||||||
checked: Common.localStorage.getBool("de-hidden-status"),
|
|
||||||
checkable: true
|
|
||||||
}),
|
|
||||||
this.mnuitemHideRulers = new Common.UI.MenuItem({
|
|
||||||
caption: this.textHideLines,
|
|
||||||
checked: Common.localStorage.getBool("de-hidden-rulers"),
|
|
||||||
checkable: true
|
|
||||||
}),
|
|
||||||
{caption: '--'},
|
|
||||||
this.btnFitPage = new Common.UI.MenuItem({
|
|
||||||
caption: this.textFitPage,
|
|
||||||
checkable: true,
|
|
||||||
checked: this.btnFitPage.isChecked()
|
|
||||||
}),
|
|
||||||
this.btnFitWidth = new Common.UI.MenuItem({
|
|
||||||
caption: this.textFitWidth,
|
|
||||||
checkable: true,
|
|
||||||
checked: this.btnFitWidth.isChecked()
|
|
||||||
}),
|
|
||||||
this.mnuZoom = new Common.UI.MenuItem({
|
|
||||||
template: _.template([
|
|
||||||
'<div id="id-toolbar-menu-zoom" class="menu-zoom" style="height: 25px;" ',
|
|
||||||
'<% if(!_.isUndefined(options.stopPropagation)) { %>',
|
|
||||||
'data-stopPropagation="true"',
|
|
||||||
'<% } %>', '>',
|
|
||||||
'<label class="title">' + this.textZoom + '</label>',
|
|
||||||
'<button id="id-menu-zoom-in" type="button" style="float:right; margin: 2px 5px 0 0;" class="btn small btn-toolbar"><i class="icon btn-zoomup"> </i></button>',
|
|
||||||
'<label class="zoom"><%= options.value %>%</label>',
|
|
||||||
'<button id="id-menu-zoom-out" type="button" style="float:right; margin-top: 2px;" class="btn small btn-toolbar"><i class="icon btn-zoomdown"> </i></button>',
|
|
||||||
'</div>'
|
|
||||||
].join('')),
|
|
||||||
stopPropagation: true,
|
|
||||||
value: this.mnuZoom.options.value
|
|
||||||
})
|
|
||||||
]
|
|
||||||
})
|
|
||||||
);
|
|
||||||
// if (this.mode.isDesktopApp || this.mode.canBrandingExt && this.mode.customization && this.mode.customization.header === false)
|
// if (this.mode.isDesktopApp || this.mode.canBrandingExt && this.mode.customization && this.mode.customization.header === false)
|
||||||
// this.mnuitemHideTitleBar.hide();
|
// this.mnuitemHideTitleBar.hide();
|
||||||
|
|
||||||
if (this.mode.canBrandingExt && this.mode.customization && this.mode.customization.statusBar===false)
|
|
||||||
this.mnuitemHideStatusBar.hide();
|
|
||||||
|
|
||||||
this.btnMarkers.setMenu(
|
this.btnMarkers.setMenu(
|
||||||
new Common.UI.Menu({
|
new Common.UI.Menu({
|
||||||
style: 'min-width: 139px',
|
style: 'min-width: 139px',
|
||||||
|
@ -1659,15 +1575,6 @@ define([
|
||||||
this.paragraphControls.push(this.mnuPageNumCurrentPos);
|
this.paragraphControls.push(this.mnuPageNumCurrentPos);
|
||||||
this.paragraphControls.push(this.mnuInsertPageCount);
|
this.paragraphControls.push(this.mnuInsertPageCount);
|
||||||
|
|
||||||
this.mnuZoomOut = new Common.UI.Button({
|
|
||||||
el: $('#id-menu-zoom-out'),
|
|
||||||
cls: 'btn-toolbar'
|
|
||||||
});
|
|
||||||
this.mnuZoomIn = new Common.UI.Button({
|
|
||||||
el: $('#id-menu-zoom-in'),
|
|
||||||
cls: 'btn-toolbar'
|
|
||||||
});
|
|
||||||
|
|
||||||
// set dataviews
|
// set dataviews
|
||||||
|
|
||||||
var _conf = this.mnuMarkersPicker.conf;
|
var _conf = this.mnuMarkersPicker.conf;
|
||||||
|
@ -1967,13 +1874,6 @@ define([
|
||||||
maxRows: 8,
|
maxRows: 8,
|
||||||
maxColumns: 10
|
maxColumns: 10
|
||||||
});
|
});
|
||||||
|
|
||||||
var btnsave = DE.getController('LeftMenu').getView('LeftMenu').getMenu('file').getButton('save');
|
|
||||||
if (btnsave && this.btnsSave) {
|
|
||||||
this.btnsSave.push(btnsave);
|
|
||||||
this.toolbarControls.push(btnsave);
|
|
||||||
btnsave.setDisabled(this.btnsSave[0].isDisabled());
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onToolbarAfterRender: function(toolbar) {
|
onToolbarAfterRender: function(toolbar) {
|
||||||
|
@ -2057,11 +1957,7 @@ define([
|
||||||
|
|
||||||
setMode: function (mode) {
|
setMode: function (mode) {
|
||||||
if (mode.isDisconnected) {
|
if (mode.isDisconnected) {
|
||||||
this.btnsSave.forEach(function(button) {
|
this.btnSave.setDisabled(true);
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(true);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (mode.disableDownload)
|
if (mode.disableDownload)
|
||||||
this.btnPrint.setDisabled(true);
|
this.btnPrint.setDisabled(true);
|
||||||
}
|
}
|
||||||
|
@ -2133,65 +2029,54 @@ define([
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
onCollaborativeChanges: function () {
|
onCollaborativeChanges: function () {
|
||||||
if (this._state.hasCollaborativeChanges) return;
|
if (this._state.hasCollaborativeChanges) return;
|
||||||
if (!this.btnSave.rendered || this._state.previewmode) {
|
if (!this.btnCollabChanges.rendered || this._state.previewmode) {
|
||||||
this.needShowSynchTip = true;
|
this.needShowSynchTip = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this._state.hasCollaborativeChanges = true;
|
this._state.hasCollaborativeChanges = true;
|
||||||
var iconEl = $('.icon', this.btnSave.cmpEl);
|
this.btnCollabChanges.$icon.removeClass(this.btnSaveCls).addClass('btn-synch');
|
||||||
iconEl.removeClass(this.btnSaveCls);
|
|
||||||
iconEl.addClass('btn-synch');
|
|
||||||
if (this.showSynchTip) {
|
if (this.showSynchTip) {
|
||||||
this.btnSave.updateHint('');
|
this.btnCollabChanges.updateHint('');
|
||||||
if (this.synchTooltip === undefined)
|
if (this.synchTooltip === undefined)
|
||||||
this.createSynchTip();
|
this.createSynchTip();
|
||||||
|
|
||||||
this.synchTooltip.show();
|
this.synchTooltip.show();
|
||||||
} else {
|
} else {
|
||||||
this.btnSave.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
this.btnCollabChanges.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
||||||
}
|
}
|
||||||
|
|
||||||
this.btnsSave.forEach(function(button) {
|
this.btnSave.setDisabled(false);
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(false);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Common.Gateway.collaborativeChanges();
|
Common.Gateway.collaborativeChanges();
|
||||||
},
|
},
|
||||||
|
|
||||||
createSynchTip: function () {
|
createSynchTip: function () {
|
||||||
this.synchTooltip = new Common.UI.SynchronizeTip({
|
this.synchTooltip = new Common.UI.SynchronizeTip({
|
||||||
target: $('#id-toolbar-btn-save')
|
target: this.btnCollabChanges.$el
|
||||||
});
|
});
|
||||||
this.synchTooltip.on('dontshowclick', function () {
|
this.synchTooltip.on('dontshowclick', function () {
|
||||||
this.showSynchTip = false;
|
this.showSynchTip = false;
|
||||||
this.synchTooltip.hide();
|
this.synchTooltip.hide();
|
||||||
this.btnSave.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
this.btnCollabChanges.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
||||||
Common.localStorage.setItem("de-hide-synch", 1);
|
Common.localStorage.setItem("de-hide-synch", 1);
|
||||||
}, this);
|
}, this);
|
||||||
this.synchTooltip.on('closeclick', function () {
|
this.synchTooltip.on('closeclick', function () {
|
||||||
this.synchTooltip.hide();
|
this.synchTooltip.hide();
|
||||||
this.btnSave.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
this.btnCollabChanges.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
||||||
}, this);
|
}, this);
|
||||||
},
|
},
|
||||||
|
|
||||||
synchronizeChanges: function () {
|
synchronizeChanges: function () {
|
||||||
if (!this._state.previewmode && this.btnSave.rendered) {
|
if ( !this._state.previewmode && this.btnCollabChanges.rendered ) {
|
||||||
var iconEl = $('.icon', this.btnSave.cmpEl),
|
var me = this;
|
||||||
me = this;
|
|
||||||
|
|
||||||
if (iconEl.hasClass('btn-synch')) {
|
if ( me.btnCollabChanges.$icon.hasClass('btn-synch') ) {
|
||||||
iconEl.removeClass('btn-synch');
|
me.btnCollabChanges.$icon.removeClass('btn-synch').addClass(me.btnSaveCls);
|
||||||
iconEl.addClass(this.btnSaveCls);
|
|
||||||
if (this.synchTooltip)
|
if (this.synchTooltip)
|
||||||
this.synchTooltip.hide();
|
this.synchTooltip.hide();
|
||||||
this.btnSave.updateHint(this.btnSaveTip);
|
this.btnCollabChanges.updateHint(this.btnSaveTip);
|
||||||
this.btnsSave.forEach(function(button) {
|
|
||||||
if ( button ) {
|
this.btnSave.setDisabled(!me.mode.forcesave);
|
||||||
button.setDisabled(!me.mode.forcesave);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
this._state.hasCollaborativeChanges = false;
|
this._state.hasCollaborativeChanges = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2204,18 +2089,18 @@ define([
|
||||||
editusers.push(item);
|
editusers.push(item);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var me = this;
|
||||||
var length = _.size(editusers);
|
var length = _.size(editusers);
|
||||||
var cls = (length > 1) ? 'btn-save-coauth' : 'btn-save';
|
var cls = (length > 1) ? 'btn-save-coauth' : 'btn-save';
|
||||||
if (cls !== this.btnSaveCls && this.btnSave.rendered) {
|
if ( cls !== me.btnSaveCls && me.btnCollabChanges.rendered ) {
|
||||||
this.btnSaveTip = ((length > 1) ? this.tipSaveCoauth : this.tipSave ) + Common.Utils.String.platformKey('Ctrl+S');
|
me.btnSaveTip = ((length > 1) ? me.tipSaveCoauth : me.tipSave ) + Common.Utils.String.platformKey('Ctrl+S');
|
||||||
|
|
||||||
|
if ( !me.btnCollabChanges.$icon.hasClass('btn-synch') ) {
|
||||||
|
me.btnCollabChanges.$icon.removeClass(me.btnSaveCls).addClass(cls);
|
||||||
|
me.btnCollabChanges.updateHint(me.btnSaveTip);
|
||||||
|
|
||||||
var iconEl = $('.icon', this.btnSave.cmpEl);
|
|
||||||
if (!iconEl.hasClass('btn-synch')) {
|
|
||||||
iconEl.removeClass(this.btnSaveCls);
|
|
||||||
iconEl.addClass(cls);
|
|
||||||
this.btnSave.updateHint(this.btnSaveTip);
|
|
||||||
}
|
}
|
||||||
this.btnSaveCls = cls;
|
me.btnSaveCls = cls;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -2329,15 +2214,6 @@ define([
|
||||||
tipInsertText: 'Insert Text',
|
tipInsertText: 'Insert Text',
|
||||||
tipInsertTextArt: 'Insert Text Art',
|
tipInsertTextArt: 'Insert Text Art',
|
||||||
tipHAligh: 'Horizontal Align',
|
tipHAligh: 'Horizontal Align',
|
||||||
tipViewSettings: 'View Settings',
|
|
||||||
tipAdvSettings: 'Advanced Settings',
|
|
||||||
textCompactView: 'Hide Toolbar',
|
|
||||||
textHideTitleBar: 'Hide Title Bar',
|
|
||||||
textHideStatusBar: 'Hide Status Bar',
|
|
||||||
textHideLines: 'Hide Rulers',
|
|
||||||
textFitPage: 'Fit to Page',
|
|
||||||
textFitWidth: 'Fit to Width',
|
|
||||||
textZoom: 'Zoom',
|
|
||||||
mniEditDropCap: 'Drop Cap Settings',
|
mniEditDropCap: 'Drop Cap Settings',
|
||||||
textNone: 'None',
|
textNone: 'None',
|
||||||
textInText: 'In Text',
|
textInText: 'In Text',
|
||||||
|
|
|
@ -83,9 +83,15 @@ define([
|
||||||
this.vlayout = new Common.UI.VBoxLayout({
|
this.vlayout = new Common.UI.VBoxLayout({
|
||||||
box: $container,
|
box: $container,
|
||||||
items: [{
|
items: [{
|
||||||
|
el: $container.find('> .layout-item#app-title').hide(),
|
||||||
|
alias: 'title',
|
||||||
|
height: Common.Utils.InternalSettings.get('document-title-height')
|
||||||
|
}, {
|
||||||
el: $container.find(' > .layout-item#toolbar'),
|
el: $container.find(' > .layout-item#toolbar'),
|
||||||
|
alias: 'toolbar',
|
||||||
// rely: true
|
// rely: true
|
||||||
height: Common.localStorage.getBool('de-compact-toolbar') ? 32 : 32+67
|
height: Common.localStorage.getBool('de-compact-toolbar') ?
|
||||||
|
Common.Utils.InternalSettings.get('toolbar-height-compact') : Common.Utils.InternalSettings.get('toolbar-height-normal')
|
||||||
}, {
|
}, {
|
||||||
el: $container.find(' > .layout-item.middle'),
|
el: $container.find(' > .layout-item.middle'),
|
||||||
stretch: true
|
stretch: true
|
||||||
|
|
|
@ -193,6 +193,7 @@ require([
|
||||||
,'common/main/lib/controller/ExternalMergeEditor'
|
,'common/main/lib/controller/ExternalMergeEditor'
|
||||||
,'common/main/lib/controller/ReviewChanges'
|
,'common/main/lib/controller/ReviewChanges'
|
||||||
,'common/main/lib/controller/Protection'
|
,'common/main/lib/controller/Protection'
|
||||||
|
,'common/main/lib/controller/Desktop'
|
||||||
], function() {
|
], function() {
|
||||||
window.compareVersions = true;
|
window.compareVersions = true;
|
||||||
app.start();
|
app.start();
|
||||||
|
|
|
@ -1547,14 +1547,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Right",
|
"DE.Views.Toolbar.textColumnsRight": "Right",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Three",
|
"DE.Views.Toolbar.textColumnsThree": "Three",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Two",
|
"DE.Views.Toolbar.textColumnsTwo": "Two",
|
||||||
"DE.Views.Toolbar.textCompactView": "Zobrazit kompaktní lištu nástrojů",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Souvislá stránka",
|
"DE.Views.Toolbar.textContPage": "Souvislá stránka",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Sudá stránka",
|
"DE.Views.Toolbar.textEvenPage": "Sudá stránka",
|
||||||
"DE.Views.Toolbar.textFitPage": "Přízpůsobit stránce",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Přizpůsobit šířce",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Schovat pravítka",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Schovat stavový řádek",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Schovat lištu nadpisu",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "V okraji",
|
"DE.Views.Toolbar.textInMargin": "V okraji",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Vložit sloupcový rozdělovač",
|
"DE.Views.Toolbar.textInsColumnBreak": "Vložit sloupcový rozdělovač",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Vložit počet stran",
|
"DE.Views.Toolbar.textInsertPageCount": "Vložit počet stran",
|
||||||
|
@ -1602,8 +1596,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "Na součásnou pozici",
|
"DE.Views.Toolbar.textToCurrent": "Na součásnou pozici",
|
||||||
"DE.Views.Toolbar.textTop": "Top: ",
|
"DE.Views.Toolbar.textTop": "Top: ",
|
||||||
"DE.Views.Toolbar.textUnderline": "Podtržené",
|
"DE.Views.Toolbar.textUnderline": "Podtržené",
|
||||||
"DE.Views.Toolbar.textZoom": "Přiblížit",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Pokročilé nastavení",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Zarovnat na střed",
|
"DE.Views.Toolbar.tipAlignCenter": "Zarovnat na střed",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Do bloku",
|
"DE.Views.Toolbar.tipAlignJust": "Do bloku",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Zarovnat vlevo",
|
"DE.Views.Toolbar.tipAlignLeft": "Zarovnat vlevo",
|
||||||
|
@ -1658,7 +1650,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Netisknutelné znaky",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Netisknutelné znaky",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Dokument byl pozměněn jiným uživatelem. Kliněte prosím pro uložení vašich změn a načtení úprav.",
|
"DE.Views.Toolbar.tipSynchronize": "Dokument byl pozměněn jiným uživatelem. Kliněte prosím pro uložení vašich změn a načtení úprav.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Krok zpět",
|
"DE.Views.Toolbar.tipUndo": "Krok zpět",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "Zobrazit nastavení",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Office",
|
"DE.Views.Toolbar.txtScheme1": "Office",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Median",
|
"DE.Views.Toolbar.txtScheme10": "Median",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -141,15 +141,21 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Speichern und beenden",
|
"Common.Views.ExternalMergeEditor.textSave": "Speichern und beenden",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Seriendruckempfänger",
|
"Common.Views.ExternalMergeEditor.textTitle": "Seriendruckempfänger",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
|
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Erweiterte Einstellungen",
|
||||||
"Common.Views.Header.textBack": "Zu Dokumenten übergehen",
|
"Common.Views.Header.textBack": "Zu Dokumenten übergehen",
|
||||||
|
"Common.Views.Header.textCompactView": "Symbolleiste ausblenden",
|
||||||
|
"Common.Views.Header.textHideLines": "Lineale verbergen",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Statusleiste verbergen",
|
||||||
"Common.Views.Header.textSaveBegin": "Speicherung...",
|
"Common.Views.Header.textSaveBegin": "Speicherung...",
|
||||||
"Common.Views.Header.textSaveChanged": "Verändert",
|
"Common.Views.Header.textSaveChanged": "Verändert",
|
||||||
"Common.Views.Header.textSaveEnd": "Alle Änderungen sind gespeichert",
|
"Common.Views.Header.textSaveEnd": "Alle Änderungen sind gespeichert",
|
||||||
"Common.Views.Header.textSaveExpander": "Alle Änderungen sind gespeichert",
|
"Common.Views.Header.textSaveExpander": "Alle Änderungen sind gespeichert",
|
||||||
|
"Common.Views.Header.textZoom": "Zoom",
|
||||||
"Common.Views.Header.tipAccessRights": "Zugriffsrechte für das Dokument verwalten",
|
"Common.Views.Header.tipAccessRights": "Zugriffsrechte für das Dokument verwalten",
|
||||||
"Common.Views.Header.tipDownload": "Datei herunterladen",
|
"Common.Views.Header.tipDownload": "Datei herunterladen",
|
||||||
"Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten",
|
"Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten",
|
||||||
"Common.Views.Header.tipPrint": "Datei drucken",
|
"Common.Views.Header.tipPrint": "Datei drucken",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Ansichts-Einstellungen",
|
||||||
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
|
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
|
||||||
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
|
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
|
||||||
"Common.Views.Header.txtRename": "Umbenennen",
|
"Common.Views.Header.txtRename": "Umbenennen",
|
||||||
|
@ -296,6 +302,7 @@
|
||||||
"DE.Controllers.LeftMenu.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.",
|
"DE.Controllers.LeftMenu.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSuccess": "Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}",
|
"DE.Controllers.LeftMenu.textReplaceSuccess": "Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.<br>Möchten Sie wirklich fortsetzen?",
|
"DE.Controllers.LeftMenu.warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.<br>Möchten Sie wirklich fortsetzen?",
|
||||||
|
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, kann die Formatierung teilweise verloren gehen.<br>Möchten Sie wirklich fortsetzen?",
|
||||||
"DE.Controllers.Main.applyChangesTextText": "Die Änderungen werden geladen...",
|
"DE.Controllers.Main.applyChangesTextText": "Die Änderungen werden geladen...",
|
||||||
"DE.Controllers.Main.applyChangesTitleText": "Laden von Änderungen",
|
"DE.Controllers.Main.applyChangesTitleText": "Laden von Änderungen",
|
||||||
"DE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
|
"DE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
|
||||||
|
@ -779,6 +786,18 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertikale Ellipse",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertikale Ellipse",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "Seite anpassen",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "Breite anpassen",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Hinzufügen",
|
||||||
|
"DE.Views.BookmarksDialog.textBookmarkName": "Lesezeichenname",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Schließen",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Löschen",
|
||||||
|
"DE.Views.BookmarksDialog.textGoto": "Wechseln zu",
|
||||||
|
"DE.Views.BookmarksDialog.textHidden": "Ausgeblendete Lesezeichen",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "Standort",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "Name",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "Sortieren nach",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Lesezeichen",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
"DE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
||||||
"DE.Views.ChartSettings.textArea": "Fläche",
|
"DE.Views.ChartSettings.textArea": "Fläche",
|
||||||
"DE.Views.ChartSettings.textBar": "Balken",
|
"DE.Views.ChartSettings.textBar": "Balken",
|
||||||
|
@ -898,6 +917,8 @@
|
||||||
"DE.Views.DocumentHolder.textDistributeRows": "Zeilen verteilen",
|
"DE.Views.DocumentHolder.textDistributeRows": "Zeilen verteilen",
|
||||||
"DE.Views.DocumentHolder.textEditControls": "Einstellungen des Inhaltssteuerelements",
|
"DE.Views.DocumentHolder.textEditControls": "Einstellungen des Inhaltssteuerelements",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Umbruchsgrenze bearbeiten",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Umbruchsgrenze bearbeiten",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "Aus Datei",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "Aus URL",
|
||||||
"DE.Views.DocumentHolder.textNest": "Tabelle schachteln",
|
"DE.Views.DocumentHolder.textNest": "Tabelle schachteln",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "Nächste Seite",
|
"DE.Views.DocumentHolder.textNextPage": "Nächste Seite",
|
||||||
"DE.Views.DocumentHolder.textPaste": "Einfügen",
|
"DE.Views.DocumentHolder.textPaste": "Einfügen",
|
||||||
|
@ -905,6 +926,7 @@
|
||||||
"DE.Views.DocumentHolder.textRefreshField": "Feld aktualisieren",
|
"DE.Views.DocumentHolder.textRefreshField": "Feld aktualisieren",
|
||||||
"DE.Views.DocumentHolder.textRemove": "Entfernen",
|
"DE.Views.DocumentHolder.textRemove": "Entfernen",
|
||||||
"DE.Views.DocumentHolder.textRemoveControl": "Inhaltssteuerelement entfernen",
|
"DE.Views.DocumentHolder.textRemoveControl": "Inhaltssteuerelement entfernen",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "Bild ersetzen",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Einstellungen",
|
"DE.Views.DocumentHolder.textSettings": "Einstellungen",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Unten ausrichten",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Unten ausrichten",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Zentriert ausrichten",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Zentriert ausrichten",
|
||||||
|
@ -1164,10 +1186,15 @@
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Gewählter Textabschnitt",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "Gewählter Textabschnitt",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Anzeigen",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Anzeigen",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "Externer Link",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textInternal": "Stelle im Dokument",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink-Einstellungen",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink-Einstellungen",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "QuickInfo-Text",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "QuickInfo-Text",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "Verknüpfen mit",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "Verknüpfen mit",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Anfang des Dokuments",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Lesezeichen",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtHeadings": "Überschriften",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Dieses Feld muss eine URL im Format \"http://www.example.com\" sein",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Dieses Feld muss eine URL im Format \"http://www.example.com\" sein",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
"DE.Views.ImageSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
||||||
"DE.Views.ImageSettings.textEdit": "Bearbeiten",
|
"DE.Views.ImageSettings.textEdit": "Bearbeiten",
|
||||||
|
@ -1266,6 +1293,7 @@
|
||||||
"DE.Views.LeftMenu.tipTitles": "Titel",
|
"DE.Views.LeftMenu.tipTitles": "Titel",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "ENTWICKLERMODUS",
|
"DE.Views.LeftMenu.txtDeveloper": "ENTWICKLERMODUS",
|
||||||
"DE.Views.LeftMenu.txtTrial": "Trial-Modus",
|
"DE.Views.LeftMenu.txtTrial": "Trial-Modus",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "Lesezeichen",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Aktualisierung",
|
"DE.Views.Links.capBtnContentsUpdate": "Aktualisierung",
|
||||||
"DE.Views.Links.capBtnInsContents": "Inhaltsverzeichnis",
|
"DE.Views.Links.capBtnInsContents": "Inhaltsverzeichnis",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Fußnote",
|
"DE.Views.Links.capBtnInsFootnote": "Fußnote",
|
||||||
|
@ -1279,6 +1307,7 @@
|
||||||
"DE.Views.Links.textGotoFootnote": "Zu Fußnoten übergehen",
|
"DE.Views.Links.textGotoFootnote": "Zu Fußnoten übergehen",
|
||||||
"DE.Views.Links.textUpdateAll": "Gesamtes Verzeichnis aktualisieren",
|
"DE.Views.Links.textUpdateAll": "Gesamtes Verzeichnis aktualisieren",
|
||||||
"DE.Views.Links.textUpdatePages": "Nur Seitenzahlen aktualisieren",
|
"DE.Views.Links.textUpdatePages": "Nur Seitenzahlen aktualisieren",
|
||||||
|
"DE.Views.Links.tipBookmarks": "Lesezeichen erstellen",
|
||||||
"DE.Views.Links.tipContents": "Inhaltsverzeichnis einfügen",
|
"DE.Views.Links.tipContents": "Inhaltsverzeichnis einfügen",
|
||||||
"DE.Views.Links.tipContentsUpdate": "Inhaltsverzeichnis aktualisieren",
|
"DE.Views.Links.tipContentsUpdate": "Inhaltsverzeichnis aktualisieren",
|
||||||
"DE.Views.Links.tipInsertHyperlink": "Hyperlink hinzufügen",
|
"DE.Views.Links.tipInsertHyperlink": "Hyperlink hinzufügen",
|
||||||
|
@ -1340,7 +1369,7 @@
|
||||||
"DE.Views.Navigation.txtEmpty": "Dieses Dokument enthält keine Überschriften",
|
"DE.Views.Navigation.txtEmpty": "Dieses Dokument enthält keine Überschriften",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Leere Überschrift",
|
"DE.Views.Navigation.txtEmptyItem": "Leere Überschrift",
|
||||||
"DE.Views.Navigation.txtExpand": "Alle ausklappen",
|
"DE.Views.Navigation.txtExpand": "Alle ausklappen",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Auf Ebene erweitern...",
|
"DE.Views.Navigation.txtExpandToLevel": "Auf Ebene erweitern",
|
||||||
"DE.Views.Navigation.txtHeadingAfter": "Neue Überschrift nach",
|
"DE.Views.Navigation.txtHeadingAfter": "Neue Überschrift nach",
|
||||||
"DE.Views.Navigation.txtHeadingBefore": "Neue Überschrift vor",
|
"DE.Views.Navigation.txtHeadingBefore": "Neue Überschrift vor",
|
||||||
"DE.Views.Navigation.txtNewHeading": "Neue Unterüberschrift",
|
"DE.Views.Navigation.txtNewHeading": "Neue Unterüberschrift",
|
||||||
|
@ -1745,14 +1774,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Rechts",
|
"DE.Views.Toolbar.textColumnsRight": "Rechts",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Drei",
|
"DE.Views.Toolbar.textColumnsThree": "Drei",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Zwei",
|
"DE.Views.Toolbar.textColumnsTwo": "Zwei",
|
||||||
"DE.Views.Toolbar.textCompactView": "Kompaktsymbolleiste anzeigen",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Fortlaufende Seite",
|
"DE.Views.Toolbar.textContPage": "Fortlaufende Seite",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Gerade Seite",
|
"DE.Views.Toolbar.textEvenPage": "Gerade Seite",
|
||||||
"DE.Views.Toolbar.textFitPage": "Seite anpassen",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Breite anpassen",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Lineale verbergen",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Statusleiste verbergen",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Titelleiste verbergen",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "Im Rand",
|
"DE.Views.Toolbar.textInMargin": "Im Rand",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Spaltenumbruch einfügen",
|
"DE.Views.Toolbar.textInsColumnBreak": "Spaltenumbruch einfügen",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Anzahl der Seiten einfügen",
|
"DE.Views.Toolbar.textInsertPageCount": "Anzahl der Seiten einfügen",
|
||||||
|
@ -1806,8 +1829,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "An aktueller Position",
|
"DE.Views.Toolbar.textToCurrent": "An aktueller Position",
|
||||||
"DE.Views.Toolbar.textTop": "Oben: ",
|
"DE.Views.Toolbar.textTop": "Oben: ",
|
||||||
"DE.Views.Toolbar.textUnderline": "Unterstrichen",
|
"DE.Views.Toolbar.textUnderline": "Unterstrichen",
|
||||||
"DE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Erweiterte Einstellungen",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Zentriert ausrichten",
|
"DE.Views.Toolbar.tipAlignCenter": "Zentriert ausrichten",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Blocksatz",
|
"DE.Views.Toolbar.tipAlignJust": "Blocksatz",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Linksbündig ausrichten",
|
"DE.Views.Toolbar.tipAlignLeft": "Linksbündig ausrichten",
|
||||||
|
@ -1863,7 +1884,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Formatierungszeichen",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Formatierungszeichen",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.",
|
"DE.Views.Toolbar.tipSynchronize": "Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Rückgängig machen",
|
"DE.Views.Toolbar.tipUndo": "Rückgängig machen",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "Ansichts-Einstellungen",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Larissa",
|
"DE.Views.Toolbar.txtScheme1": "Larissa",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Median",
|
"DE.Views.Toolbar.txtScheme10": "Median",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -141,15 +141,21 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Document is currently being edited by several users.",
|
"Common.Views.Header.labelCoUsersDescr": "Document is currently being edited by several users.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Advanced settings",
|
||||||
"Common.Views.Header.textBack": "Go to Documents",
|
"Common.Views.Header.textBack": "Go to Documents",
|
||||||
|
"Common.Views.Header.textCompactView": "Hide Toolbar",
|
||||||
|
"Common.Views.Header.textHideLines": "Hide Rulers",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Hide Status Bar",
|
||||||
"Common.Views.Header.textSaveBegin": "Saving...",
|
"Common.Views.Header.textSaveBegin": "Saving...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modified",
|
"Common.Views.Header.textSaveChanged": "Modified",
|
||||||
"Common.Views.Header.textSaveEnd": "All changes saved",
|
"Common.Views.Header.textSaveEnd": "All changes saved",
|
||||||
"Common.Views.Header.textSaveExpander": "All changes saved",
|
"Common.Views.Header.textSaveExpander": "All changes saved",
|
||||||
|
"Common.Views.Header.textZoom": "Zoom",
|
||||||
"Common.Views.Header.tipAccessRights": "Manage document access rights",
|
"Common.Views.Header.tipAccessRights": "Manage document access rights",
|
||||||
"Common.Views.Header.tipDownload": "Download file",
|
"Common.Views.Header.tipDownload": "Download file",
|
||||||
"Common.Views.Header.tipGoEdit": "Edit current file",
|
"Common.Views.Header.tipGoEdit": "Edit current file",
|
||||||
"Common.Views.Header.tipPrint": "Print file",
|
"Common.Views.Header.tipPrint": "Print file",
|
||||||
|
"Common.Views.Header.tipViewSettings": "View settings",
|
||||||
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
|
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
|
||||||
"Common.Views.Header.txtAccessRights": "Change access rights",
|
"Common.Views.Header.txtAccessRights": "Change access rights",
|
||||||
"Common.Views.Header.txtRename": "Rename",
|
"Common.Views.Header.txtRename": "Rename",
|
||||||
|
@ -296,6 +302,7 @@
|
||||||
"DE.Controllers.LeftMenu.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.",
|
"DE.Controllers.LeftMenu.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSuccess": "The search has been done. Occurrences replaced: {0}",
|
"DE.Controllers.LeftMenu.textReplaceSuccess": "The search has been done. Occurrences replaced: {0}",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?",
|
"DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?",
|
||||||
|
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.<br>Are you sure you want to continue?",
|
||||||
"DE.Controllers.Main.applyChangesTextText": "Loading the changes...",
|
"DE.Controllers.Main.applyChangesTextText": "Loading the changes...",
|
||||||
"DE.Controllers.Main.applyChangesTitleText": "Loading the Changes",
|
"DE.Controllers.Main.applyChangesTitleText": "Loading the Changes",
|
||||||
"DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
|
"DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
|
||||||
|
@ -779,6 +786,18 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "Fit to Page",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "Fit to Width",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Add",
|
||||||
|
"DE.Views.BookmarksDialog.textBookmarkName": "Bookmark name",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Close",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Delete",
|
||||||
|
"DE.Views.BookmarksDialog.textGoto": "Go to",
|
||||||
|
"DE.Views.BookmarksDialog.textHidden": "Hidden bookmarks",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "Location",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "Name",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "Sort by",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Bookmarks",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||||
"DE.Views.ChartSettings.textArea": "Area",
|
"DE.Views.ChartSettings.textArea": "Area",
|
||||||
"DE.Views.ChartSettings.textBar": "Bar",
|
"DE.Views.ChartSettings.textBar": "Bar",
|
||||||
|
@ -898,6 +917,8 @@
|
||||||
"DE.Views.DocumentHolder.textDistributeRows": "Distribute rows",
|
"DE.Views.DocumentHolder.textDistributeRows": "Distribute rows",
|
||||||
"DE.Views.DocumentHolder.textEditControls": "Content control settings",
|
"DE.Views.DocumentHolder.textEditControls": "Content control settings",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Wrap Boundary",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Wrap Boundary",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "From File",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "From URL",
|
||||||
"DE.Views.DocumentHolder.textNest": "Nest table",
|
"DE.Views.DocumentHolder.textNest": "Nest table",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "Next Page",
|
"DE.Views.DocumentHolder.textNextPage": "Next Page",
|
||||||
"DE.Views.DocumentHolder.textPaste": "Paste",
|
"DE.Views.DocumentHolder.textPaste": "Paste",
|
||||||
|
@ -905,6 +926,7 @@
|
||||||
"DE.Views.DocumentHolder.textRefreshField": "Refresh field",
|
"DE.Views.DocumentHolder.textRefreshField": "Refresh field",
|
||||||
"DE.Views.DocumentHolder.textRemove": "Remove",
|
"DE.Views.DocumentHolder.textRemove": "Remove",
|
||||||
"DE.Views.DocumentHolder.textRemoveControl": "Remove content control",
|
"DE.Views.DocumentHolder.textRemoveControl": "Remove content control",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "Replace image",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Settings",
|
"DE.Views.DocumentHolder.textSettings": "Settings",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
||||||
|
@ -1164,10 +1186,15 @@
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Display",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Display",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "External Link",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textInternal": "Place in Document",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "ScreenTip text",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "ScreenTip text",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "Link to",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "Link to",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Beginning of document",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Bookmarks",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtHeadings": "Headings",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "Show advanced settings",
|
"DE.Views.ImageSettings.textAdvanced": "Show advanced settings",
|
||||||
"DE.Views.ImageSettings.textEdit": "Edit",
|
"DE.Views.ImageSettings.textEdit": "Edit",
|
||||||
|
@ -1266,6 +1293,7 @@
|
||||||
"DE.Views.LeftMenu.tipTitles": "Titles",
|
"DE.Views.LeftMenu.tipTitles": "Titles",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
|
"DE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
|
||||||
"DE.Views.LeftMenu.txtTrial": "TRIAL MODE",
|
"DE.Views.LeftMenu.txtTrial": "TRIAL MODE",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "Bookmark",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Refresh",
|
"DE.Views.Links.capBtnContentsUpdate": "Refresh",
|
||||||
"DE.Views.Links.capBtnInsContents": "Table of Contents",
|
"DE.Views.Links.capBtnInsContents": "Table of Contents",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Footnote",
|
"DE.Views.Links.capBtnInsFootnote": "Footnote",
|
||||||
|
@ -1279,6 +1307,7 @@
|
||||||
"DE.Views.Links.textGotoFootnote": "Go to Footnotes",
|
"DE.Views.Links.textGotoFootnote": "Go to Footnotes",
|
||||||
"DE.Views.Links.textUpdateAll": "Refresh entire table",
|
"DE.Views.Links.textUpdateAll": "Refresh entire table",
|
||||||
"DE.Views.Links.textUpdatePages": "Refresh page numbers only",
|
"DE.Views.Links.textUpdatePages": "Refresh page numbers only",
|
||||||
|
"DE.Views.Links.tipBookmarks": "Create a bookmark",
|
||||||
"DE.Views.Links.tipContents": "Insert table of contents",
|
"DE.Views.Links.tipContents": "Insert table of contents",
|
||||||
"DE.Views.Links.tipContentsUpdate": "Refresh table of contents",
|
"DE.Views.Links.tipContentsUpdate": "Refresh table of contents",
|
||||||
"DE.Views.Links.tipInsertHyperlink": "Add hyperlink",
|
"DE.Views.Links.tipInsertHyperlink": "Add hyperlink",
|
||||||
|
@ -1340,7 +1369,7 @@
|
||||||
"DE.Views.Navigation.txtEmpty": "This document doesn't contain headings",
|
"DE.Views.Navigation.txtEmpty": "This document doesn't contain headings",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Empty Heading",
|
"DE.Views.Navigation.txtEmptyItem": "Empty Heading",
|
||||||
"DE.Views.Navigation.txtExpand": "Expand all",
|
"DE.Views.Navigation.txtExpand": "Expand all",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Expand to level...",
|
"DE.Views.Navigation.txtExpandToLevel": "Expand to level",
|
||||||
"DE.Views.Navigation.txtHeadingAfter": "New heading after",
|
"DE.Views.Navigation.txtHeadingAfter": "New heading after",
|
||||||
"DE.Views.Navigation.txtHeadingBefore": "New heading before",
|
"DE.Views.Navigation.txtHeadingBefore": "New heading before",
|
||||||
"DE.Views.Navigation.txtNewHeading": "New subheading",
|
"DE.Views.Navigation.txtNewHeading": "New subheading",
|
||||||
|
@ -1745,14 +1774,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Right",
|
"DE.Views.Toolbar.textColumnsRight": "Right",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Three",
|
"DE.Views.Toolbar.textColumnsThree": "Three",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Two",
|
"DE.Views.Toolbar.textColumnsTwo": "Two",
|
||||||
"DE.Views.Toolbar.textCompactView": "Hide Toolbar",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Continuous Page",
|
"DE.Views.Toolbar.textContPage": "Continuous Page",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Even Page",
|
"DE.Views.Toolbar.textEvenPage": "Even Page",
|
||||||
"DE.Views.Toolbar.textFitPage": "Fit to Page",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Fit to Width",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Hide Rulers",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Hide Status Bar",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Hide Title Bar",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "In Margin",
|
"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.textInsertPageCount": "Insert number of pages",
|
||||||
|
@ -1806,8 +1829,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "To current position",
|
"DE.Views.Toolbar.textToCurrent": "To current position",
|
||||||
"DE.Views.Toolbar.textTop": "Top: ",
|
"DE.Views.Toolbar.textTop": "Top: ",
|
||||||
"DE.Views.Toolbar.textUnderline": "Underline",
|
"DE.Views.Toolbar.textUnderline": "Underline",
|
||||||
"DE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Advanced settings",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Align center",
|
"DE.Views.Toolbar.tipAlignCenter": "Align center",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Justified",
|
"DE.Views.Toolbar.tipAlignJust": "Justified",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Align left",
|
"DE.Views.Toolbar.tipAlignLeft": "Align left",
|
||||||
|
@ -1863,7 +1884,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Nonprinting characters",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Nonprinting characters",
|
||||||
"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.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.tipUndo": "Undo",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "View settings",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Office",
|
"DE.Views.Toolbar.txtScheme1": "Office",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Median",
|
"DE.Views.Toolbar.txtScheme10": "Median",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -141,15 +141,21 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Guardar y salir",
|
"Common.Views.ExternalMergeEditor.textSave": "Guardar y salir",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Receptores de Fusión de Correo",
|
"Common.Views.ExternalMergeEditor.textTitle": "Receptores de Fusión de Correo",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "El documento está siendo editado por múltiples usuarios.",
|
"Common.Views.Header.labelCoUsersDescr": "El documento está siendo editado por múltiples usuarios.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Ajustes avanzados",
|
||||||
"Common.Views.Header.textBack": "Ir a Documentos",
|
"Common.Views.Header.textBack": "Ir a Documentos",
|
||||||
|
"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.textSaveBegin": "Guardando...",
|
"Common.Views.Header.textSaveBegin": "Guardando...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modificado",
|
"Common.Views.Header.textSaveChanged": "Modificado",
|
||||||
"Common.Views.Header.textSaveEnd": "Se guardaron todos los cambios",
|
"Common.Views.Header.textSaveEnd": "Se guardaron todos los cambios",
|
||||||
"Common.Views.Header.textSaveExpander": "Se guardaron todos los cambios",
|
"Common.Views.Header.textSaveExpander": "Se guardaron todos los cambios",
|
||||||
|
"Common.Views.Header.textZoom": "Ampliación",
|
||||||
"Common.Views.Header.tipAccessRights": "Gestionar derechos de acceso al documento",
|
"Common.Views.Header.tipAccessRights": "Gestionar derechos de acceso al documento",
|
||||||
"Common.Views.Header.tipDownload": "Descargar archivo",
|
"Common.Views.Header.tipDownload": "Descargar archivo",
|
||||||
"Common.Views.Header.tipGoEdit": "Editar archivo actual",
|
"Common.Views.Header.tipGoEdit": "Editar archivo actual",
|
||||||
"Common.Views.Header.tipPrint": "Imprimir archivo",
|
"Common.Views.Header.tipPrint": "Imprimir archivo",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Mostrar ajustes",
|
||||||
"Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
|
"Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
|
||||||
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
|
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
|
||||||
"Common.Views.Header.txtRename": "Renombrar",
|
"Common.Views.Header.txtRename": "Renombrar",
|
||||||
|
@ -779,6 +785,15 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Elipsis vertical",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Elipsis vertical",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Csi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Csi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Dseda",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Dseda",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "Ajustar a la página",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "Ajustar al ancho",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Añadir",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Cerrar",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Borrar",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "Ubicación",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "Nombre",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "Ordenar por",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Marcadores",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
"DE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
||||||
"DE.Views.ChartSettings.textArea": "Área",
|
"DE.Views.ChartSettings.textArea": "Área",
|
||||||
"DE.Views.ChartSettings.textBar": "Barra",
|
"DE.Views.ChartSettings.textBar": "Barra",
|
||||||
|
@ -898,6 +913,8 @@
|
||||||
"DE.Views.DocumentHolder.textDistributeRows": "Distribuir filas",
|
"DE.Views.DocumentHolder.textDistributeRows": "Distribuir filas",
|
||||||
"DE.Views.DocumentHolder.textEditControls": "Los ajustes del control de contenido",
|
"DE.Views.DocumentHolder.textEditControls": "Los ajustes del control de contenido",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Editar límite de ajuste",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Editar límite de ajuste",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "De archivo",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "De URL",
|
||||||
"DE.Views.DocumentHolder.textNest": "Tabla nido",
|
"DE.Views.DocumentHolder.textNest": "Tabla nido",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "Página siguiente",
|
"DE.Views.DocumentHolder.textNextPage": "Página siguiente",
|
||||||
"DE.Views.DocumentHolder.textPaste": "Pegar",
|
"DE.Views.DocumentHolder.textPaste": "Pegar",
|
||||||
|
@ -905,6 +922,7 @@
|
||||||
"DE.Views.DocumentHolder.textRefreshField": "Actualize el campo",
|
"DE.Views.DocumentHolder.textRefreshField": "Actualize el campo",
|
||||||
"DE.Views.DocumentHolder.textRemove": "Eliminar",
|
"DE.Views.DocumentHolder.textRemove": "Eliminar",
|
||||||
"DE.Views.DocumentHolder.textRemoveControl": "Elimine el control de contenido",
|
"DE.Views.DocumentHolder.textRemoveControl": "Elimine el control de contenido",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "Reemplazar imagen",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Ajustes",
|
"DE.Views.DocumentHolder.textSettings": "Ajustes",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Alinear en la parte inferior",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Alinear en la parte inferior",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Alinear al centro",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Alinear al centro",
|
||||||
|
@ -1164,9 +1182,12 @@
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Aceptar",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Aceptar",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmento de texto seleccionado",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmento de texto seleccionado",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Mostrar",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Mostrar",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "Enlace externo",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Configuración de hiperenlace",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "Configuración de hiperenlace",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Información en pantalla",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Información en pantalla",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "Enlace a",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "Enlace a",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Principio del documento",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Marcadores",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo es obligatorio",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo es obligatorio",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Este campo debe ser URL en el formato \"http://www.example.com\"",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Este campo debe ser URL en el formato \"http://www.example.com\"",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "Mostrar ajustes avanzados",
|
"DE.Views.ImageSettings.textAdvanced": "Mostrar ajustes avanzados",
|
||||||
|
@ -1266,6 +1287,7 @@
|
||||||
"DE.Views.LeftMenu.tipTitles": "Títulos",
|
"DE.Views.LeftMenu.tipTitles": "Títulos",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO",
|
"DE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO",
|
||||||
"DE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA",
|
"DE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "Marcador",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Actualizar",
|
"DE.Views.Links.capBtnContentsUpdate": "Actualizar",
|
||||||
"DE.Views.Links.capBtnInsContents": "Tabla de contenidos",
|
"DE.Views.Links.capBtnInsContents": "Tabla de contenidos",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Nota a pie de página",
|
"DE.Views.Links.capBtnInsFootnote": "Nota a pie de página",
|
||||||
|
@ -1340,7 +1362,7 @@
|
||||||
"DE.Views.Navigation.txtEmpty": "Este documento no",
|
"DE.Views.Navigation.txtEmpty": "Este documento no",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Encabezado vacío",
|
"DE.Views.Navigation.txtEmptyItem": "Encabezado vacío",
|
||||||
"DE.Views.Navigation.txtExpand": "Expandir todo",
|
"DE.Views.Navigation.txtExpand": "Expandir todo",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel...",
|
"DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel",
|
||||||
"DE.Views.Navigation.txtHeadingAfter": "Título nuevo después ",
|
"DE.Views.Navigation.txtHeadingAfter": "Título nuevo después ",
|
||||||
"DE.Views.Navigation.txtHeadingBefore": "Título nuevo antes",
|
"DE.Views.Navigation.txtHeadingBefore": "Título nuevo antes",
|
||||||
"DE.Views.Navigation.txtNewHeading": "Subtítulo nuevo",
|
"DE.Views.Navigation.txtNewHeading": "Subtítulo nuevo",
|
||||||
|
@ -1745,14 +1767,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Derecho",
|
"DE.Views.Toolbar.textColumnsRight": "Derecho",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Tres",
|
"DE.Views.Toolbar.textColumnsThree": "Tres",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Dos",
|
"DE.Views.Toolbar.textColumnsTwo": "Dos",
|
||||||
"DE.Views.Toolbar.textCompactView": "Ver Barra de herramientas compacta",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Página continua",
|
"DE.Views.Toolbar.textContPage": "Página continua",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Página par",
|
"DE.Views.Toolbar.textEvenPage": "Página par",
|
||||||
"DE.Views.Toolbar.textFitPage": "Ajustar a la página",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Ajustar a ancho",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Ocultar reglas",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Ocultar barra de estado",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Ocultar barra de título",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "En margen",
|
"DE.Views.Toolbar.textInMargin": "En margen",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Insertar Grieta de Columna",
|
"DE.Views.Toolbar.textInsColumnBreak": "Insertar Grieta de Columna",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Insertar el número de páginas",
|
"DE.Views.Toolbar.textInsertPageCount": "Insertar el número de páginas",
|
||||||
|
@ -1806,8 +1822,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "A la posición actual",
|
"DE.Views.Toolbar.textToCurrent": "A la posición actual",
|
||||||
"DE.Views.Toolbar.textTop": "Top: ",
|
"DE.Views.Toolbar.textTop": "Top: ",
|
||||||
"DE.Views.Toolbar.textUnderline": "Subrayado",
|
"DE.Views.Toolbar.textUnderline": "Subrayado",
|
||||||
"DE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Ajustes avanzados",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Alinear al centro",
|
"DE.Views.Toolbar.tipAlignCenter": "Alinear al centro",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Alineado",
|
"DE.Views.Toolbar.tipAlignJust": "Alineado",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Alinear a la izquierda",
|
"DE.Views.Toolbar.tipAlignLeft": "Alinear a la izquierda",
|
||||||
|
@ -1863,7 +1877,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Caracteres no imprimibles",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Caracteres no imprimibles",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "El documento ha sido cambiado por otro usuario. Por favor haga clic para guardar sus cambios y recargue las actualizaciones.",
|
"DE.Views.Toolbar.tipSynchronize": "El documento ha sido cambiado por otro usuario. Por favor haga clic para guardar sus cambios y recargue las actualizaciones.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Deshacer",
|
"DE.Views.Toolbar.tipUndo": "Deshacer",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "Mostrar ajustes",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Oficina",
|
"DE.Views.Toolbar.txtScheme1": "Oficina",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Intermedio",
|
"DE.Views.Toolbar.txtScheme10": "Intermedio",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -141,15 +141,21 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Enregistrer et quitter",
|
"Common.Views.ExternalMergeEditor.textSave": "Enregistrer et quitter",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Destinataires de fusion et publipostage",
|
"Common.Views.ExternalMergeEditor.textTitle": "Destinataires de fusion et publipostage",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par plusieurs utilisateurs.",
|
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par plusieurs utilisateurs.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Paramètres avancés",
|
||||||
"Common.Views.Header.textBack": "Aller aux Documents",
|
"Common.Views.Header.textBack": "Aller aux Documents",
|
||||||
|
"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.textSaveBegin": "Enregistrement en cours...",
|
"Common.Views.Header.textSaveBegin": "Enregistrement en cours...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modifié",
|
"Common.Views.Header.textSaveChanged": "Modifié",
|
||||||
"Common.Views.Header.textSaveEnd": "Toutes les modifications ont été enregistrées",
|
"Common.Views.Header.textSaveEnd": "Toutes les modifications ont été enregistrées",
|
||||||
"Common.Views.Header.textSaveExpander": "Toutes les modifications ont été enregistrées",
|
"Common.Views.Header.textSaveExpander": "Toutes les modifications ont été enregistrées",
|
||||||
|
"Common.Views.Header.textZoom": "Grossissement",
|
||||||
"Common.Views.Header.tipAccessRights": "Gérer les droits d'accès au document",
|
"Common.Views.Header.tipAccessRights": "Gérer les droits d'accès au document",
|
||||||
"Common.Views.Header.tipDownload": "Télécharger le fichier",
|
"Common.Views.Header.tipDownload": "Télécharger le fichier",
|
||||||
"Common.Views.Header.tipGoEdit": "Modifier le fichier courant",
|
"Common.Views.Header.tipGoEdit": "Modifier le fichier courant",
|
||||||
"Common.Views.Header.tipPrint": "Imprimer le fichier",
|
"Common.Views.Header.tipPrint": "Imprimer le fichier",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Paramètres d'affichage",
|
||||||
"Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents",
|
"Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents",
|
||||||
"Common.Views.Header.txtAccessRights": "Modifier les droits d'accès",
|
"Common.Views.Header.txtAccessRights": "Modifier les droits d'accès",
|
||||||
"Common.Views.Header.txtRename": "Renommer",
|
"Common.Views.Header.txtRename": "Renommer",
|
||||||
|
@ -187,7 +193,7 @@
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Fichier protégé",
|
"Common.Views.OpenDialog.txtTitleProtected": "Fichier protégé",
|
||||||
"Common.Views.PasswordDialog.cancelButtonText": "Annuler",
|
"Common.Views.PasswordDialog.cancelButtonText": "Annuler",
|
||||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||||
"Common.Views.PasswordDialog.txtDescription": "Un mot de passe est requis pour ouvrir ce document",
|
"Common.Views.PasswordDialog.txtDescription": "Indiquez un mot de passe pour protéger ce document",
|
||||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Le mot de passe de confirmation n'est pas identique",
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "Le mot de passe de confirmation n'est pas identique",
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
|
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Confirmer le mot de passe",
|
"Common.Views.PasswordDialog.txtRepeat": "Confirmer le mot de passe",
|
||||||
|
@ -438,6 +444,8 @@
|
||||||
"DE.Controllers.Main.warnNoLicense": "Cette version de ONLYOFFICE Editors a certaines limitations pour les connexions simultanées au serveur de documents.<br>Si vous avez besoin de plus, pensez à mettre à jour votre licence actuelle ou à acheter une licence commerciale.",
|
"DE.Controllers.Main.warnNoLicense": "Cette version de ONLYOFFICE Editors a certaines limitations pour les connexions simultanées au serveur de documents.<br>Si vous avez besoin de plus, pensez à mettre à jour votre licence actuelle ou à acheter une licence commerciale.",
|
||||||
"DE.Controllers.Main.warnNoLicenseUsers": "Cette version de ONLYOFFICE Editors a certaines limitations pour les utilisateurs simultanés.<br>Si vous avez besoin de plus, pensez à mettre à jour votre licence actuelle ou à acheter une licence commerciale.",
|
"DE.Controllers.Main.warnNoLicenseUsers": "Cette version de ONLYOFFICE Editors a certaines limitations pour les utilisateurs simultanés.<br>Si vous avez besoin de plus, pensez à mettre à jour votre licence actuelle ou à acheter une licence commerciale.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
"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.Statusbar.textHasChanges": "Nouveaux changements ont été suivis",
|
"DE.Controllers.Statusbar.textHasChanges": "Nouveaux changements ont été suivis",
|
||||||
"DE.Controllers.Statusbar.textTrackChanges": "Le document est ouvert avec le mode Suivi des modifications activé",
|
"DE.Controllers.Statusbar.textTrackChanges": "Le document est ouvert avec le mode Suivi des modifications activé",
|
||||||
"DE.Controllers.Statusbar.tipReview": "Suivi des modifications",
|
"DE.Controllers.Statusbar.tipReview": "Suivi des modifications",
|
||||||
|
@ -777,6 +785,15 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Trois points verticaux",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Trois points verticaux",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zêta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zêta",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "Ajuster à la page",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "Ajuster à la largeur",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Ajouter",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Fermer",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Supprimer",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "Emplacement",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "Nom",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "Trier par",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Signets",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
"DE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
||||||
"DE.Views.ChartSettings.textArea": "En aires",
|
"DE.Views.ChartSettings.textArea": "En aires",
|
||||||
"DE.Views.ChartSettings.textBar": "En barre",
|
"DE.Views.ChartSettings.textBar": "En barre",
|
||||||
|
@ -896,6 +913,8 @@
|
||||||
"DE.Views.DocumentHolder.textDistributeRows": "Distribuer les lignes",
|
"DE.Views.DocumentHolder.textDistributeRows": "Distribuer les lignes",
|
||||||
"DE.Views.DocumentHolder.textEditControls": "Paramètres de contrôle du contenu",
|
"DE.Views.DocumentHolder.textEditControls": "Paramètres de contrôle du contenu",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Modifier les limites du renvoi à la ligne",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Modifier les limites du renvoi à la ligne",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "D'un fichier",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "D'une URL",
|
||||||
"DE.Views.DocumentHolder.textNest": "Tableau imbriqué",
|
"DE.Views.DocumentHolder.textNest": "Tableau imbriqué",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "Page suivante",
|
"DE.Views.DocumentHolder.textNextPage": "Page suivante",
|
||||||
"DE.Views.DocumentHolder.textPaste": "Coller",
|
"DE.Views.DocumentHolder.textPaste": "Coller",
|
||||||
|
@ -903,6 +922,7 @@
|
||||||
"DE.Views.DocumentHolder.textRefreshField": "Actualiser le champ",
|
"DE.Views.DocumentHolder.textRefreshField": "Actualiser le champ",
|
||||||
"DE.Views.DocumentHolder.textRemove": "Supprimer",
|
"DE.Views.DocumentHolder.textRemove": "Supprimer",
|
||||||
"DE.Views.DocumentHolder.textRemoveControl": "Supprimer le contrôle du contenu",
|
"DE.Views.DocumentHolder.textRemoveControl": "Supprimer le contrôle du contenu",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "Remplacer l’image",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Paramètres",
|
"DE.Views.DocumentHolder.textSettings": "Paramètres",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Aligner en bas",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Aligner en bas",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Aligner au centre",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Aligner au centre",
|
||||||
|
@ -1162,9 +1182,12 @@
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Ok",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Ok",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragment du texte sélectionné",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "Fragment du texte sélectionné",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Afficher",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Afficher",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "Lien externe",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres du lien hypertexte",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres du lien hypertexte",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Texte de l'info-bulle ",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Texte de l'info-bulle ",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "Lien vers",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "Lien vers",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Début du document",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Signets",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Ce champ est obligatoire",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Ce champ est obligatoire",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "Afficher les paramètres avancés",
|
"DE.Views.ImageSettings.textAdvanced": "Afficher les paramètres avancés",
|
||||||
|
@ -1264,6 +1287,7 @@
|
||||||
"DE.Views.LeftMenu.tipTitles": "Titres",
|
"DE.Views.LeftMenu.tipTitles": "Titres",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR",
|
"DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR",
|
||||||
"DE.Views.LeftMenu.txtTrial": "MODE DEMO",
|
"DE.Views.LeftMenu.txtTrial": "MODE DEMO",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "Signet",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Actualiser",
|
"DE.Views.Links.capBtnContentsUpdate": "Actualiser",
|
||||||
"DE.Views.Links.capBtnInsContents": "Table des matières",
|
"DE.Views.Links.capBtnInsContents": "Table des matières",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Note de bas de page",
|
"DE.Views.Links.capBtnInsFootnote": "Note de bas de page",
|
||||||
|
@ -1334,7 +1358,14 @@
|
||||||
"DE.Views.MailMergeSettings.txtUntitled": "Sans titre",
|
"DE.Views.MailMergeSettings.txtUntitled": "Sans titre",
|
||||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Fusion a échoué",
|
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Fusion a échoué",
|
||||||
"DE.Views.Navigation.txtCollapse": "Réduire tout",
|
"DE.Views.Navigation.txtCollapse": "Réduire tout",
|
||||||
|
"DE.Views.Navigation.txtDemote": "Dégrader",
|
||||||
|
"DE.Views.Navigation.txtEmptyItem": "En-tête vide",
|
||||||
"DE.Views.Navigation.txtExpand": "Développer tout",
|
"DE.Views.Navigation.txtExpand": "Développer tout",
|
||||||
|
"DE.Views.Navigation.txtHeadingAfter": "Nouvel en-tête après",
|
||||||
|
"DE.Views.Navigation.txtHeadingBefore": "Nouvel en-tête avant",
|
||||||
|
"DE.Views.Navigation.txtNewHeading": "Nouveau sous-titre",
|
||||||
|
"DE.Views.Navigation.txtPromote": "Promouvoir",
|
||||||
|
"DE.Views.Navigation.txtSelect": "Sélectionner le contenu",
|
||||||
"DE.Views.NoteSettingsDialog.textApply": "Appliquer",
|
"DE.Views.NoteSettingsDialog.textApply": "Appliquer",
|
||||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Appliquer les modifications",
|
"DE.Views.NoteSettingsDialog.textApplyTo": "Appliquer les modifications",
|
||||||
"DE.Views.NoteSettingsDialog.textCancel": "Annuler",
|
"DE.Views.NoteSettingsDialog.textCancel": "Annuler",
|
||||||
|
@ -1734,14 +1765,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "A droite",
|
"DE.Views.Toolbar.textColumnsRight": "A droite",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Trois",
|
"DE.Views.Toolbar.textColumnsThree": "Trois",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Deux",
|
"DE.Views.Toolbar.textColumnsTwo": "Deux",
|
||||||
"DE.Views.Toolbar.textCompactView": "Afficher la barre d'outils compacte",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Page continue",
|
"DE.Views.Toolbar.textContPage": "Page continue",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Page paire",
|
"DE.Views.Toolbar.textEvenPage": "Page paire",
|
||||||
"DE.Views.Toolbar.textFitPage": "Ajuster à la page",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Ajuster à la largeur",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Masquer les règles",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Masquer la barre d'état",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Masquer la barre de titres",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "Dans la Marge",
|
"DE.Views.Toolbar.textInMargin": "Dans la Marge",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Insérer un saut de colonne",
|
"DE.Views.Toolbar.textInsColumnBreak": "Insérer un saut de colonne",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Insérer le nombre de pages",
|
"DE.Views.Toolbar.textInsertPageCount": "Insérer le nombre de pages",
|
||||||
|
@ -1795,8 +1820,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "À la position actuelle",
|
"DE.Views.Toolbar.textToCurrent": "À la position actuelle",
|
||||||
"DE.Views.Toolbar.textTop": "En haut: ",
|
"DE.Views.Toolbar.textTop": "En haut: ",
|
||||||
"DE.Views.Toolbar.textUnderline": "Souligné",
|
"DE.Views.Toolbar.textUnderline": "Souligné",
|
||||||
"DE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Paramètres avancés",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Aligner au centre",
|
"DE.Views.Toolbar.tipAlignCenter": "Aligner au centre",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Justifié",
|
"DE.Views.Toolbar.tipAlignJust": "Justifié",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Aligner à gauche",
|
"DE.Views.Toolbar.tipAlignLeft": "Aligner à gauche",
|
||||||
|
@ -1852,7 +1875,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Caractères non imprimables",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Caractères non imprimables",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Le document a été modifié par un autre utilisateur. Cliquez pour enregistrer vos modifications et recharger des mises à jour.",
|
"DE.Views.Toolbar.tipSynchronize": "Le document a été modifié par un autre utilisateur. Cliquez pour enregistrer vos modifications et recharger des mises à jour.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Annuler",
|
"DE.Views.Toolbar.tipUndo": "Annuler",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "Voir paramètres d'affichage",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Bureau",
|
"DE.Views.Toolbar.txtScheme1": "Bureau",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Médian",
|
"DE.Views.Toolbar.txtScheme10": "Médian",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Métro",
|
"DE.Views.Toolbar.txtScheme11": "Métro",
|
||||||
|
|
|
@ -141,15 +141,21 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "È in corso la modifica del documento da parte di più utenti.",
|
"Common.Views.Header.labelCoUsersDescr": "È in corso la modifica del documento da parte di più utenti.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
|
||||||
"Common.Views.Header.textBack": "Va' ai Documenti",
|
"Common.Views.Header.textBack": "Va' ai Documenti",
|
||||||
|
"Common.Views.Header.textCompactView": "Mostra barra degli strumenti compatta",
|
||||||
|
"Common.Views.Header.textHideLines": "Nascondi righelli",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Nascondi barra di stato",
|
||||||
"Common.Views.Header.textSaveBegin": "Salvataggio in corso...",
|
"Common.Views.Header.textSaveBegin": "Salvataggio in corso...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modificato",
|
"Common.Views.Header.textSaveChanged": "Modificato",
|
||||||
"Common.Views.Header.textSaveEnd": "Tutte le modifiche sono state salvate",
|
"Common.Views.Header.textSaveEnd": "Tutte le modifiche sono state salvate",
|
||||||
"Common.Views.Header.textSaveExpander": "Tutte le modifiche sono state salvate",
|
"Common.Views.Header.textSaveExpander": "Tutte le modifiche sono state salvate",
|
||||||
|
"Common.Views.Header.textZoom": "Ingrandimento",
|
||||||
"Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento",
|
"Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento",
|
||||||
"Common.Views.Header.tipDownload": "Scarica file",
|
"Common.Views.Header.tipDownload": "Scarica file",
|
||||||
"Common.Views.Header.tipGoEdit": "Modifica il file corrente",
|
"Common.Views.Header.tipGoEdit": "Modifica il file corrente",
|
||||||
"Common.Views.Header.tipPrint": "Stampa file",
|
"Common.Views.Header.tipPrint": "Stampa file",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Mostra impostazioni",
|
||||||
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
|
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
|
||||||
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
|
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
|
||||||
"Common.Views.Header.txtRename": "Rinomina",
|
"Common.Views.Header.txtRename": "Rinomina",
|
||||||
|
@ -777,6 +783,15 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "Adatta alla pagina",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Aggiungi",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Chiudi",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Elimina",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "Percorso",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "Nome",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "Ordina per",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Segnalibri",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
"DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
||||||
"DE.Views.ChartSettings.textArea": "Aerogramma",
|
"DE.Views.ChartSettings.textArea": "Aerogramma",
|
||||||
"DE.Views.ChartSettings.textBar": "A barre",
|
"DE.Views.ChartSettings.textBar": "A barre",
|
||||||
|
@ -896,12 +911,15 @@
|
||||||
"DE.Views.DocumentHolder.textDistributeRows": "Distribuisci righe",
|
"DE.Views.DocumentHolder.textDistributeRows": "Distribuisci righe",
|
||||||
"DE.Views.DocumentHolder.textEditControls": "Impostazioni di controllo del contenuto",
|
"DE.Views.DocumentHolder.textEditControls": "Impostazioni di controllo del contenuto",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Modifica bordi disposizione testo",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Modifica bordi disposizione testo",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "Da file",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "Da URL",
|
||||||
"DE.Views.DocumentHolder.textNest": "Tabella nidificata",
|
"DE.Views.DocumentHolder.textNest": "Tabella nidificata",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "Pagina successiva",
|
"DE.Views.DocumentHolder.textNextPage": "Pagina successiva",
|
||||||
"DE.Views.DocumentHolder.textPaste": "Incolla",
|
"DE.Views.DocumentHolder.textPaste": "Incolla",
|
||||||
"DE.Views.DocumentHolder.textPrevPage": "Pagina precedente",
|
"DE.Views.DocumentHolder.textPrevPage": "Pagina precedente",
|
||||||
"DE.Views.DocumentHolder.textRemove": "Elimina",
|
"DE.Views.DocumentHolder.textRemove": "Elimina",
|
||||||
"DE.Views.DocumentHolder.textRemoveControl": "Rimuovi il controllo del contenuto",
|
"DE.Views.DocumentHolder.textRemoveControl": "Rimuovi il controllo del contenuto",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "Sostituisci immagine",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Impostazioni",
|
"DE.Views.DocumentHolder.textSettings": "Impostazioni",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Allinea in basso",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Allinea in basso",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Allinea al centro",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Allinea al centro",
|
||||||
|
@ -1160,9 +1178,11 @@
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Testo selezionato",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "Testo selezionato",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Visualizza",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Visualizza",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "Collegamento esterno",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Impostazioni collegamento ipertestuale",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "Impostazioni collegamento ipertestuale",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Testo del suggerimento",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Testo del suggerimento",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "Collega a",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "Collega a",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Segnalibri",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Questo campo è richiesto",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Questo campo è richiesto",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "Mostra impostazioni avanzate",
|
"DE.Views.ImageSettings.textAdvanced": "Mostra impostazioni avanzate",
|
||||||
|
@ -1262,6 +1282,7 @@
|
||||||
"DE.Views.LeftMenu.tipTitles": "Titoli",
|
"DE.Views.LeftMenu.tipTitles": "Titoli",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE",
|
"DE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE",
|
||||||
"DE.Views.LeftMenu.txtTrial": "Modalità di prova",
|
"DE.Views.LeftMenu.txtTrial": "Modalità di prova",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "Segnalibro",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Aggiorna",
|
"DE.Views.Links.capBtnContentsUpdate": "Aggiorna",
|
||||||
"DE.Views.Links.capBtnInsContents": "Sommario",
|
"DE.Views.Links.capBtnInsContents": "Sommario",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Nota a piè di pagina",
|
"DE.Views.Links.capBtnInsFootnote": "Nota a piè di pagina",
|
||||||
|
@ -1732,14 +1753,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Right",
|
"DE.Views.Toolbar.textColumnsRight": "Right",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Three",
|
"DE.Views.Toolbar.textColumnsThree": "Three",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Two",
|
"DE.Views.Toolbar.textColumnsTwo": "Two",
|
||||||
"DE.Views.Toolbar.textCompactView": "Mostra barra degli strumenti compatta",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Pagina continua",
|
"DE.Views.Toolbar.textContPage": "Pagina continua",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Pagina pari",
|
"DE.Views.Toolbar.textEvenPage": "Pagina pari",
|
||||||
"DE.Views.Toolbar.textFitPage": "Adatta alla pagina",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Adatta alla larghezza",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Nascondi righelli",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Nascondi barra di stato",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Nascondi barra di titolo",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "Nel margine",
|
"DE.Views.Toolbar.textInMargin": "Nel margine",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
|
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Inserisci numero delle pagine",
|
"DE.Views.Toolbar.textInsertPageCount": "Inserisci numero delle pagine",
|
||||||
|
@ -1792,8 +1807,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "Alla posizione corrente",
|
"DE.Views.Toolbar.textToCurrent": "Alla posizione corrente",
|
||||||
"DE.Views.Toolbar.textTop": "Top: ",
|
"DE.Views.Toolbar.textTop": "Top: ",
|
||||||
"DE.Views.Toolbar.textUnderline": "Sottolineato",
|
"DE.Views.Toolbar.textUnderline": "Sottolineato",
|
||||||
"DE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Impostazioni avanzate",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Allinea al centro",
|
"DE.Views.Toolbar.tipAlignCenter": "Allinea al centro",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Giustifica",
|
"DE.Views.Toolbar.tipAlignJust": "Giustifica",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Allinea a sinistra",
|
"DE.Views.Toolbar.tipAlignLeft": "Allinea a sinistra",
|
||||||
|
@ -1849,7 +1862,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Caratteri non stampabili",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Caratteri non stampabili",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Il documento è stato modificato da un altro utente. Clicca per salvare le modifiche e ricaricare gli aggiornamenti.",
|
"DE.Views.Toolbar.tipSynchronize": "Il documento è stato modificato da un altro utente. Clicca per salvare le modifiche e ricaricare gli aggiornamenti.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Annulla",
|
"DE.Views.Toolbar.tipUndo": "Annulla",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "Mostra impostazioni",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Ufficio",
|
"DE.Views.Toolbar.txtScheme1": "Ufficio",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Luna",
|
"DE.Views.Toolbar.txtScheme10": "Luna",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -115,6 +115,7 @@
|
||||||
"Common.Views.Comments.textAddComment": "덧글 추가",
|
"Common.Views.Comments.textAddComment": "덧글 추가",
|
||||||
"Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가",
|
"Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가",
|
||||||
"Common.Views.Comments.textAddReply": "답장 추가",
|
"Common.Views.Comments.textAddReply": "답장 추가",
|
||||||
|
"Common.Views.Comments.textAnonym": "손님",
|
||||||
"Common.Views.Comments.textCancel": "취소",
|
"Common.Views.Comments.textCancel": "취소",
|
||||||
"Common.Views.Comments.textClose": "닫기",
|
"Common.Views.Comments.textClose": "닫기",
|
||||||
"Common.Views.Comments.textComments": "Comments",
|
"Common.Views.Comments.textComments": "Comments",
|
||||||
|
@ -140,12 +141,21 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "저장 및 종료",
|
"Common.Views.ExternalMergeEditor.textSave": "저장 및 종료",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "편지 병합받는 사람",
|
"Common.Views.ExternalMergeEditor.textTitle": "편지 병합받는 사람",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "문서는 현재 여러 사용자가 편집하고 있습니다.",
|
"Common.Views.Header.labelCoUsersDescr": "문서는 현재 여러 사용자가 편집하고 있습니다.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "고급 설정",
|
||||||
"Common.Views.Header.textBack": "문서로 이동",
|
"Common.Views.Header.textBack": "문서로 이동",
|
||||||
|
"Common.Views.Header.textCompactView": "보기 컴팩트 도구 모음",
|
||||||
|
"Common.Views.Header.textHideLines": "눈금자 숨기기",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "상태 표시 줄 숨기기",
|
||||||
"Common.Views.Header.textSaveBegin": "저장 중 ...",
|
"Common.Views.Header.textSaveBegin": "저장 중 ...",
|
||||||
|
"Common.Views.Header.textSaveChanged": "수정된",
|
||||||
"Common.Views.Header.textSaveEnd": "모든 변경 사항이 저장되었습니다",
|
"Common.Views.Header.textSaveEnd": "모든 변경 사항이 저장되었습니다",
|
||||||
"Common.Views.Header.textSaveExpander": "모든 변경 사항이 저장되었습니다",
|
"Common.Views.Header.textSaveExpander": "모든 변경 사항이 저장되었습니다",
|
||||||
|
"Common.Views.Header.textZoom": "확대 / 축소",
|
||||||
"Common.Views.Header.tipAccessRights": "문서 액세스 권한 관리",
|
"Common.Views.Header.tipAccessRights": "문서 액세스 권한 관리",
|
||||||
"Common.Views.Header.tipDownload": "파일을 다운로드",
|
"Common.Views.Header.tipDownload": "파일을 다운로드",
|
||||||
|
"Common.Views.Header.tipGoEdit": "현재 파일 편집",
|
||||||
|
"Common.Views.Header.tipPrint": "파일 출력",
|
||||||
|
"Common.Views.Header.tipViewSettings": "보기 설정",
|
||||||
"Common.Views.Header.tipViewUsers": "사용자보기 및 문서 액세스 권한 관리",
|
"Common.Views.Header.tipViewUsers": "사용자보기 및 문서 액세스 권한 관리",
|
||||||
"Common.Views.Header.txtAccessRights": "액세스 권한 변경",
|
"Common.Views.Header.txtAccessRights": "액세스 권한 변경",
|
||||||
"Common.Views.Header.txtRename": "이름 바꾸기",
|
"Common.Views.Header.txtRename": "이름 바꾸기",
|
||||||
|
@ -173,46 +183,82 @@
|
||||||
"Common.Views.LanguageDialog.btnOk": "Ok",
|
"Common.Views.LanguageDialog.btnOk": "Ok",
|
||||||
"Common.Views.LanguageDialog.labelSelect": "문서 언어 선택",
|
"Common.Views.LanguageDialog.labelSelect": "문서 언어 선택",
|
||||||
"Common.Views.OpenDialog.cancelButtonText": "취소",
|
"Common.Views.OpenDialog.cancelButtonText": "취소",
|
||||||
|
"Common.Views.OpenDialog.closeButtonText": "파일 닫기",
|
||||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "인코딩",
|
"Common.Views.OpenDialog.txtEncoding": "인코딩",
|
||||||
|
"Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음",
|
||||||
"Common.Views.OpenDialog.txtPassword": "비밀번호",
|
"Common.Views.OpenDialog.txtPassword": "비밀번호",
|
||||||
|
"Common.Views.OpenDialog.txtPreview": "미리보기",
|
||||||
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
|
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "보호 된 파일",
|
"Common.Views.OpenDialog.txtTitleProtected": "보호 된 파일",
|
||||||
"Common.Views.PasswordDialog.cancelButtonText": "취소",
|
"Common.Views.PasswordDialog.cancelButtonText": "취소",
|
||||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.PasswordDialog.txtDescription": "문서 보호용 비밀번호를 세팅하세요",
|
||||||
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "확인 비밀번호가 같지 않음",
|
||||||
"Common.Views.PasswordDialog.txtPassword": "암호",
|
"Common.Views.PasswordDialog.txtPassword": "암호",
|
||||||
|
"Common.Views.PasswordDialog.txtRepeat": "비밀번호 반복",
|
||||||
|
"Common.Views.PasswordDialog.txtTitle": "비밀번호 설정",
|
||||||
"Common.Views.PluginDlg.textLoading": "로드 중",
|
"Common.Views.PluginDlg.textLoading": "로드 중",
|
||||||
"Common.Views.Plugins.groupCaption": "플러그인",
|
"Common.Views.Plugins.groupCaption": "플러그인",
|
||||||
"Common.Views.Plugins.strPlugins": "플러그인",
|
"Common.Views.Plugins.strPlugins": "플러그인",
|
||||||
"Common.Views.Plugins.textLoading": "로드 중",
|
"Common.Views.Plugins.textLoading": "로드 중",
|
||||||
"Common.Views.Plugins.textStart": "시작",
|
"Common.Views.Plugins.textStart": "시작",
|
||||||
|
"Common.Views.Plugins.textStop": "정지",
|
||||||
|
"Common.Views.Protection.hintAddPwd": "비밀번호로 암호화",
|
||||||
|
"Common.Views.Protection.hintPwd": "비밀번호 변경 또는 삭제",
|
||||||
|
"Common.Views.Protection.hintSignature": "디지털 서명 또는 서명 라인을 추가 ",
|
||||||
|
"Common.Views.Protection.txtAddPwd": "비밀번호 추가",
|
||||||
"Common.Views.Protection.txtChangePwd": "비밀번호를 변경",
|
"Common.Views.Protection.txtChangePwd": "비밀번호를 변경",
|
||||||
|
"Common.Views.Protection.txtDeletePwd": "비밀번호 삭제",
|
||||||
|
"Common.Views.Protection.txtEncrypt": "암호화",
|
||||||
|
"Common.Views.Protection.txtInvisibleSignature": "디지털 서명을 추가",
|
||||||
|
"Common.Views.Protection.txtSignature": "서명",
|
||||||
|
"Common.Views.Protection.txtSignatureLine": "서명 라인",
|
||||||
"Common.Views.RenameDialog.cancelButtonText": "취소",
|
"Common.Views.RenameDialog.cancelButtonText": "취소",
|
||||||
"Common.Views.RenameDialog.okButtonText": "Ok",
|
"Common.Views.RenameDialog.okButtonText": "Ok",
|
||||||
"Common.Views.RenameDialog.textName": "파일 이름",
|
"Common.Views.RenameDialog.textName": "파일 이름",
|
||||||
"Common.Views.RenameDialog.txtInvalidName": "파일 이름에 다음 문자를 포함 할 수 없습니다 :",
|
"Common.Views.RenameDialog.txtInvalidName": "파일 이름에 다음 문자를 포함 할 수 없습니다 :",
|
||||||
"Common.Views.ReviewChanges.hintNext": "다음 변경 사항",
|
"Common.Views.ReviewChanges.hintNext": "다음 변경 사항",
|
||||||
"Common.Views.ReviewChanges.hintPrev": "이전 변경으로",
|
"Common.Views.ReviewChanges.hintPrev": "이전 변경으로",
|
||||||
|
"Common.Views.ReviewChanges.strFast": "빠르게",
|
||||||
|
"Common.Views.ReviewChanges.strFastDesc": "실시간 협력 편집. 모든 변경사항들은 자동적으로 저장됨.",
|
||||||
|
"Common.Views.ReviewChanges.strStrict": "엄격한",
|
||||||
|
"Common.Views.ReviewChanges.strStrictDesc": "귀하와 다른 사람이 변경사항을 동기화 하려면 '저장'버튼을 사용하세요.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "현재 변경 내용 적용",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "현재 변경 내용 적용",
|
||||||
|
"Common.Views.ReviewChanges.tipCoAuthMode": "협력 편집 모드 세팅",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "버전 표시",
|
"Common.Views.ReviewChanges.tipHistory": "버전 표시",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "현재 변경 거부",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "현재 변경 거부",
|
||||||
"Common.Views.ReviewChanges.tipReview": "변경 내용 추적",
|
"Common.Views.ReviewChanges.tipReview": "변경 내용 추적",
|
||||||
|
"Common.Views.ReviewChanges.tipReviewView": "변경사항이 표시될 모드 선택",
|
||||||
"Common.Views.ReviewChanges.tipSetDocLang": "문서 언어 설정",
|
"Common.Views.ReviewChanges.tipSetDocLang": "문서 언어 설정",
|
||||||
"Common.Views.ReviewChanges.tipSetSpelling": "맞춤법 검사",
|
"Common.Views.ReviewChanges.tipSetSpelling": "맞춤법 검사",
|
||||||
|
"Common.Views.ReviewChanges.tipSharing": "문서 액세스 권한 관리",
|
||||||
"Common.Views.ReviewChanges.txtAccept": "수락",
|
"Common.Views.ReviewChanges.txtAccept": "수락",
|
||||||
"Common.Views.ReviewChanges.txtAcceptAll": "모든 변경 내용 적용",
|
"Common.Views.ReviewChanges.txtAcceptAll": "모든 변경 내용 적용",
|
||||||
|
"Common.Views.ReviewChanges.txtAcceptChanges": "변경 접수",
|
||||||
"Common.Views.ReviewChanges.txtAcceptCurrent": "현재 변경 내용 적용",
|
"Common.Views.ReviewChanges.txtAcceptCurrent": "현재 변경 내용 적용",
|
||||||
|
"Common.Views.ReviewChanges.txtChat": "채팅",
|
||||||
"Common.Views.ReviewChanges.txtClose": "닫기",
|
"Common.Views.ReviewChanges.txtClose": "닫기",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "공동 편집 모드",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "공동 편집 모드",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "언어",
|
"Common.Views.ReviewChanges.txtDocLang": "언어",
|
||||||
|
"Common.Views.ReviewChanges.txtFinal": "모든 변경 접수됨 (미리보기)",
|
||||||
|
"Common.Views.ReviewChanges.txtFinalCap": "최종",
|
||||||
"Common.Views.ReviewChanges.txtHistory": "버전 기록",
|
"Common.Views.ReviewChanges.txtHistory": "버전 기록",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkup": "모든 변경 (편집)",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkupCap": "마크업",
|
||||||
"Common.Views.ReviewChanges.txtNext": "다음 변경 사항",
|
"Common.Views.ReviewChanges.txtNext": "다음 변경 사항",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginal": "모든 변경 거부됨 (미리보기)",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginalCap": "오리지널",
|
||||||
"Common.Views.ReviewChanges.txtPrev": "이전 변경으로",
|
"Common.Views.ReviewChanges.txtPrev": "이전 변경으로",
|
||||||
"Common.Views.ReviewChanges.txtReject": "거부",
|
"Common.Views.ReviewChanges.txtReject": "거부",
|
||||||
"Common.Views.ReviewChanges.txtRejectAll": "모든 변경 사항 거부",
|
"Common.Views.ReviewChanges.txtRejectAll": "모든 변경 사항 거부",
|
||||||
|
"Common.Views.ReviewChanges.txtRejectChanges": "변경 거부",
|
||||||
"Common.Views.ReviewChanges.txtRejectCurrent": "현재 변경 거부",
|
"Common.Views.ReviewChanges.txtRejectCurrent": "현재 변경 거부",
|
||||||
|
"Common.Views.ReviewChanges.txtSharing": "공유",
|
||||||
"Common.Views.ReviewChanges.txtSpelling": "맞춤법 검사",
|
"Common.Views.ReviewChanges.txtSpelling": "맞춤법 검사",
|
||||||
"Common.Views.ReviewChanges.txtTurnon": "변경 내용 추적",
|
"Common.Views.ReviewChanges.txtTurnon": "변경 내용 추적",
|
||||||
|
"Common.Views.ReviewChanges.txtView": "디스플레이 모드",
|
||||||
|
"Common.Views.ReviewChangesDialog.textTitle": "변경사항 다시보기",
|
||||||
"Common.Views.ReviewChangesDialog.txtAccept": "수락",
|
"Common.Views.ReviewChangesDialog.txtAccept": "수락",
|
||||||
"Common.Views.ReviewChangesDialog.txtAcceptAll": "모든 변경 내용 적용",
|
"Common.Views.ReviewChangesDialog.txtAcceptAll": "모든 변경 내용 적용",
|
||||||
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "현재 변경 내용 적용",
|
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "현재 변경 내용 적용",
|
||||||
|
@ -224,11 +270,28 @@
|
||||||
"Common.Views.SignDialog.cancelButtonText": "취소",
|
"Common.Views.SignDialog.cancelButtonText": "취소",
|
||||||
"Common.Views.SignDialog.okButtonText": "OK",
|
"Common.Views.SignDialog.okButtonText": "OK",
|
||||||
"Common.Views.SignDialog.textBold": "볼드체",
|
"Common.Views.SignDialog.textBold": "볼드체",
|
||||||
|
"Common.Views.SignDialog.textCertificate": "인증",
|
||||||
"Common.Views.SignDialog.textChange": "변경",
|
"Common.Views.SignDialog.textChange": "변경",
|
||||||
|
"Common.Views.SignDialog.textInputName": "서명자 성함을 입력하세요",
|
||||||
|
"Common.Views.SignDialog.textItalic": "이탈릭",
|
||||||
|
"Common.Views.SignDialog.textPurpose": "이 문서에 서명하는 목적",
|
||||||
|
"Common.Views.SignDialog.textSelectImage": "이미지 선택",
|
||||||
|
"Common.Views.SignDialog.textSignature": "서명은 처럼 보임",
|
||||||
|
"Common.Views.SignDialog.textTitle": "서명문서",
|
||||||
|
"Common.Views.SignDialog.textUseImage": "또는 서명으로 그림을 사용하려면 '이미지 선택'을 클릭",
|
||||||
|
"Common.Views.SignDialog.textValid": "%1에서 %2까지 유효",
|
||||||
|
"Common.Views.SignDialog.tipFontName": "폰트명",
|
||||||
"Common.Views.SignDialog.tipFontSize": "글꼴 크기",
|
"Common.Views.SignDialog.tipFontSize": "글꼴 크기",
|
||||||
"Common.Views.SignSettingsDialog.cancelButtonText": "취소",
|
"Common.Views.SignSettingsDialog.cancelButtonText": "취소",
|
||||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.SignSettingsDialog.textAllowComment": "서명 대화창에 서명자의 코멘트 추가 허용",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfo": "서명자 정보",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoEmail": "이메일",
|
||||||
"Common.Views.SignSettingsDialog.textInfoName": "이름",
|
"Common.Views.SignSettingsDialog.textInfoName": "이름",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoTitle": "서명자 타이틀",
|
||||||
|
"Common.Views.SignSettingsDialog.textInstructions": "서명자용 지침",
|
||||||
|
"Common.Views.SignSettingsDialog.textShowDate": "서명라인에 서명 날짜를 보여주세요",
|
||||||
|
"Common.Views.SignSettingsDialog.textTitle": "서명 세팅",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목",
|
"Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "이 문서의 모든 저장되지 않은 변경 사항이 손실됩니다. <br>취소 를 클릭 한 다음저장 \"을 클릭하여 저장하십시오. 저장되지 않은 변경 사항. ",
|
"DE.Controllers.LeftMenu.leavePageText": "이 문서의 모든 저장되지 않은 변경 사항이 손실됩니다. <br>취소 를 클릭 한 다음저장 \"을 클릭하여 저장하십시오. 저장되지 않은 변경 사항. ",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document",
|
||||||
|
@ -258,6 +321,7 @@
|
||||||
"DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
|
"DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
|
"DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.",
|
"DE.Controllers.Main.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.",
|
||||||
|
"DE.Controllers.Main.errorForceSave": "파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자",
|
"DE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다",
|
"DE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "로드 실패",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "로드 실패",
|
||||||
|
@ -323,22 +387,31 @@
|
||||||
"DE.Controllers.Main.txtArt": "여기에 귀하의 텍스트",
|
"DE.Controllers.Main.txtArt": "여기에 귀하의 텍스트",
|
||||||
"DE.Controllers.Main.txtBasicShapes": "기본 도형",
|
"DE.Controllers.Main.txtBasicShapes": "기본 도형",
|
||||||
"DE.Controllers.Main.txtBelow": "아래",
|
"DE.Controllers.Main.txtBelow": "아래",
|
||||||
|
"DE.Controllers.Main.txtBookmarkError": "문제발생! 북마크가 정의되지 않음",
|
||||||
"DE.Controllers.Main.txtButtons": "Buttons",
|
"DE.Controllers.Main.txtButtons": "Buttons",
|
||||||
"DE.Controllers.Main.txtCallouts": "콜 아웃",
|
"DE.Controllers.Main.txtCallouts": "콜 아웃",
|
||||||
"DE.Controllers.Main.txtCharts": "Charts",
|
"DE.Controllers.Main.txtCharts": "Charts",
|
||||||
|
"DE.Controllers.Main.txtCurrentDocument": "현재 문서",
|
||||||
"DE.Controllers.Main.txtDiagramTitle": "차트 제목",
|
"DE.Controllers.Main.txtDiagramTitle": "차트 제목",
|
||||||
"DE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...",
|
"DE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...",
|
||||||
"DE.Controllers.Main.txtErrorLoadHistory": "기록로드 실패",
|
"DE.Controllers.Main.txtErrorLoadHistory": "기록로드 실패",
|
||||||
"DE.Controllers.Main.txtEvenPage": "짝수 페이지",
|
"DE.Controllers.Main.txtEvenPage": "짝수 페이지",
|
||||||
"DE.Controllers.Main.txtFiguredArrows": "그림 화살표",
|
"DE.Controllers.Main.txtFiguredArrows": "그림 화살표",
|
||||||
|
"DE.Controllers.Main.txtFirstPage": "첫 페이지",
|
||||||
|
"DE.Controllers.Main.txtFooter": "꼬리말",
|
||||||
"DE.Controllers.Main.txtHeader": "머리글",
|
"DE.Controllers.Main.txtHeader": "머리글",
|
||||||
"DE.Controllers.Main.txtLines": "Lines",
|
"DE.Controllers.Main.txtLines": "Lines",
|
||||||
"DE.Controllers.Main.txtMath": "수학",
|
"DE.Controllers.Main.txtMath": "수학",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "업데이트가 있습니다.",
|
"DE.Controllers.Main.txtNeedSynchronize": "업데이트가 있습니다.",
|
||||||
|
"DE.Controllers.Main.txtNoTableOfContents": "테이블 콘텐츠 항목 없슴",
|
||||||
"DE.Controllers.Main.txtOddPage": "홀수 페이지",
|
"DE.Controllers.Main.txtOddPage": "홀수 페이지",
|
||||||
|
"DE.Controllers.Main.txtOnPage": "페이지상",
|
||||||
"DE.Controllers.Main.txtRectangles": "직사각형",
|
"DE.Controllers.Main.txtRectangles": "직사각형",
|
||||||
|
"DE.Controllers.Main.txtSameAsPrev": "이전과 동일",
|
||||||
|
"DE.Controllers.Main.txtSection": "섹션",
|
||||||
"DE.Controllers.Main.txtSeries": "Series",
|
"DE.Controllers.Main.txtSeries": "Series",
|
||||||
"DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
|
"DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
|
||||||
|
"DE.Controllers.Main.txtStyle_footnote_text": "꼬리말 글",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_1": "제목 1",
|
"DE.Controllers.Main.txtStyle_Heading_1": "제목 1",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_2": "제목 2",
|
"DE.Controllers.Main.txtStyle_Heading_2": "제목 2",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_3": "제목 3",
|
"DE.Controllers.Main.txtStyle_Heading_3": "제목 3",
|
||||||
|
@ -355,6 +428,7 @@
|
||||||
"DE.Controllers.Main.txtStyle_Quote": "Quote",
|
"DE.Controllers.Main.txtStyle_Quote": "Quote",
|
||||||
"DE.Controllers.Main.txtStyle_Subtitle": "자막",
|
"DE.Controllers.Main.txtStyle_Subtitle": "자막",
|
||||||
"DE.Controllers.Main.txtStyle_Title": "제목",
|
"DE.Controllers.Main.txtStyle_Title": "제목",
|
||||||
|
"DE.Controllers.Main.txtTableOfContents": "콘텐츠 테이블",
|
||||||
"DE.Controllers.Main.txtXAxis": "X 축",
|
"DE.Controllers.Main.txtXAxis": "X 축",
|
||||||
"DE.Controllers.Main.txtYAxis": "Y 축",
|
"DE.Controllers.Main.txtYAxis": "Y 축",
|
||||||
"DE.Controllers.Main.unknownErrorText": "알 수없는 오류.",
|
"DE.Controllers.Main.unknownErrorText": "알 수없는 오류.",
|
||||||
|
@ -370,6 +444,8 @@
|
||||||
"DE.Controllers.Main.warnNoLicense": "이 버전의 ONLYOFFICE 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다. <br> 더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.",
|
"DE.Controllers.Main.warnNoLicense": "이 버전의 ONLYOFFICE 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다. <br> 더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.",
|
||||||
"DE.Controllers.Main.warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다. <br> 더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.",
|
"DE.Controllers.Main.warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다. <br> 더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.",
|
"DE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.",
|
||||||
|
"DE.Controllers.Navigation.txtBeginning": "문서의 시작",
|
||||||
|
"DE.Controllers.Navigation.txtGotoBeginning": "문서의 시작점으로 이동",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "새로운 변경 사항이 추적되었습니다",
|
"DE.Controllers.Statusbar.textHasChanges": "새로운 변경 사항이 추적되었습니다",
|
||||||
"DE.Controllers.Statusbar.textTrackChanges": "변경 내용 추적 모드를 사용하여 문서가 열립니다.",
|
"DE.Controllers.Statusbar.textTrackChanges": "변경 내용 추적 모드를 사용하여 문서가 열립니다.",
|
||||||
"DE.Controllers.Statusbar.tipReview": "변경 내용 추적",
|
"DE.Controllers.Statusbar.tipReview": "변경 내용 추적",
|
||||||
|
@ -709,6 +785,15 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "세로 줄임표",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "세로 줄임표",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "페이지에 맞춤",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "너비에 맞춤",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "추가",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "닫기",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "삭제",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "위치",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "이름",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "정렬",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "책갈피",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
"DE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
||||||
"DE.Views.ChartSettings.textArea": "영역",
|
"DE.Views.ChartSettings.textArea": "영역",
|
||||||
"DE.Views.ChartSettings.textBar": "Bar",
|
"DE.Views.ChartSettings.textBar": "Bar",
|
||||||
|
@ -737,8 +822,12 @@
|
||||||
"DE.Views.ChartSettings.txtTopAndBottom": "상단 및 하단",
|
"DE.Views.ChartSettings.txtTopAndBottom": "상단 및 하단",
|
||||||
"DE.Views.ControlSettingsDialog.cancelButtonText": "취소",
|
"DE.Views.ControlSettingsDialog.cancelButtonText": "취소",
|
||||||
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||||
|
"DE.Views.ControlSettingsDialog.textLock": "잠그기",
|
||||||
"DE.Views.ControlSettingsDialog.textName": "제목",
|
"DE.Views.ControlSettingsDialog.textName": "제목",
|
||||||
"DE.Views.ControlSettingsDialog.textTag": "꼬리표",
|
"DE.Views.ControlSettingsDialog.textTag": "꼬리표",
|
||||||
|
"DE.Views.ControlSettingsDialog.textTitle": "콘텐트 제어 세팅",
|
||||||
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "콘텐트 제어가 삭제될 수 없슴",
|
||||||
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "콘텐트가 편집될 수 없슴",
|
||||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "취소",
|
"DE.Views.CustomColumnsDialog.cancelButtonText": "취소",
|
||||||
"DE.Views.CustomColumnsDialog.okButtonText": "Ok",
|
"DE.Views.CustomColumnsDialog.okButtonText": "Ok",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "열 수",
|
"DE.Views.CustomColumnsDialog.textColumns": "열 수",
|
||||||
|
@ -805,6 +894,10 @@
|
||||||
"DE.Views.DocumentHolder.spellcheckText": "맞춤법 검사",
|
"DE.Views.DocumentHolder.spellcheckText": "맞춤법 검사",
|
||||||
"DE.Views.DocumentHolder.splitCellsText": "셀 분할 ...",
|
"DE.Views.DocumentHolder.splitCellsText": "셀 분할 ...",
|
||||||
"DE.Views.DocumentHolder.splitCellTitleText": "셀 분할",
|
"DE.Views.DocumentHolder.splitCellTitleText": "셀 분할",
|
||||||
|
"DE.Views.DocumentHolder.strDelete": "서명 삭제",
|
||||||
|
"DE.Views.DocumentHolder.strDetails": "서명 상세",
|
||||||
|
"DE.Views.DocumentHolder.strSetup": "서명 셋업",
|
||||||
|
"DE.Views.DocumentHolder.strSign": "서명",
|
||||||
"DE.Views.DocumentHolder.styleText": "스타일로 서식 지정",
|
"DE.Views.DocumentHolder.styleText": "스타일로 서식 지정",
|
||||||
"DE.Views.DocumentHolder.tableText": "테이블",
|
"DE.Views.DocumentHolder.tableText": "테이블",
|
||||||
"DE.Views.DocumentHolder.textAlign": "정렬",
|
"DE.Views.DocumentHolder.textAlign": "정렬",
|
||||||
|
@ -813,13 +906,23 @@
|
||||||
"DE.Views.DocumentHolder.textArrangeBackward": "뒤로 이동",
|
"DE.Views.DocumentHolder.textArrangeBackward": "뒤로 이동",
|
||||||
"DE.Views.DocumentHolder.textArrangeForward": "앞으로 이동",
|
"DE.Views.DocumentHolder.textArrangeForward": "앞으로 이동",
|
||||||
"DE.Views.DocumentHolder.textArrangeFront": "포 그라운드로 가져 오기",
|
"DE.Views.DocumentHolder.textArrangeFront": "포 그라운드로 가져 오기",
|
||||||
|
"DE.Views.DocumentHolder.textContentControls": "콘텐트 제어",
|
||||||
"DE.Views.DocumentHolder.textCopy": "복사",
|
"DE.Views.DocumentHolder.textCopy": "복사",
|
||||||
"DE.Views.DocumentHolder.textCut": "잘라 내기",
|
"DE.Views.DocumentHolder.textCut": "잘라 내기",
|
||||||
|
"DE.Views.DocumentHolder.textDistributeCols": "컬럼 배포",
|
||||||
|
"DE.Views.DocumentHolder.textDistributeRows": "행 배포",
|
||||||
|
"DE.Views.DocumentHolder.textEditControls": "콘텐트 제어 세팅",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "둘러싸 기 경계 편집",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "둘러싸 기 경계 편집",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "파일로부터",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "URL로부터",
|
||||||
|
"DE.Views.DocumentHolder.textNest": "네스트 테이블",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "다음 페이지",
|
"DE.Views.DocumentHolder.textNextPage": "다음 페이지",
|
||||||
"DE.Views.DocumentHolder.textPaste": "붙여 넣기",
|
"DE.Views.DocumentHolder.textPaste": "붙여 넣기",
|
||||||
"DE.Views.DocumentHolder.textPrevPage": "이전 페이지",
|
"DE.Views.DocumentHolder.textPrevPage": "이전 페이지",
|
||||||
|
"DE.Views.DocumentHolder.textRefreshField": "필드 새로고침",
|
||||||
"DE.Views.DocumentHolder.textRemove": "삭제",
|
"DE.Views.DocumentHolder.textRemove": "삭제",
|
||||||
|
"DE.Views.DocumentHolder.textRemoveControl": "콘텐트 제어 삭제",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "이미지 바꾸기",
|
||||||
"DE.Views.DocumentHolder.textSettings": "설정",
|
"DE.Views.DocumentHolder.textSettings": "설정",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "아래쪽 정렬",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "아래쪽 정렬",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "정렬 중심",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "정렬 중심",
|
||||||
|
@ -827,7 +930,12 @@
|
||||||
"DE.Views.DocumentHolder.textShapeAlignMiddle": "가운데 정렬",
|
"DE.Views.DocumentHolder.textShapeAlignMiddle": "가운데 정렬",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignRight": "오른쪽 정렬",
|
"DE.Views.DocumentHolder.textShapeAlignRight": "오른쪽 정렬",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignTop": "정렬",
|
"DE.Views.DocumentHolder.textShapeAlignTop": "정렬",
|
||||||
|
"DE.Views.DocumentHolder.textTOC": "콘텍츠 테이블",
|
||||||
|
"DE.Views.DocumentHolder.textTOCSettings": "콘텐츠 테이블 세팅",
|
||||||
"DE.Views.DocumentHolder.textUndo": "실행 취소",
|
"DE.Views.DocumentHolder.textUndo": "실행 취소",
|
||||||
|
"DE.Views.DocumentHolder.textUpdateAll": "전체 테이블을 새로고침하세요",
|
||||||
|
"DE.Views.DocumentHolder.textUpdatePages": "페이지 번호만 새로고침하세요",
|
||||||
|
"DE.Views.DocumentHolder.textUpdateTOC": "콘텐트 테이블 새로고침",
|
||||||
"DE.Views.DocumentHolder.textWrap": "배치 스타일",
|
"DE.Views.DocumentHolder.textWrap": "배치 스타일",
|
||||||
"DE.Views.DocumentHolder.tipIsLocked": "이 요소는 현재 다른 사용자가 편집 중입니다.",
|
"DE.Views.DocumentHolder.tipIsLocked": "이 요소는 현재 다른 사용자가 편집 중입니다.",
|
||||||
"DE.Views.DocumentHolder.txtAddBottom": "아래쪽 테두리 추가",
|
"DE.Views.DocumentHolder.txtAddBottom": "아래쪽 테두리 추가",
|
||||||
|
@ -887,6 +995,8 @@
|
||||||
"DE.Views.DocumentHolder.txtMatchBrackets": "대괄호를 인수 높이에 대응",
|
"DE.Views.DocumentHolder.txtMatchBrackets": "대괄호를 인수 높이에 대응",
|
||||||
"DE.Views.DocumentHolder.txtMatrixAlign": "매트릭스 정렬",
|
"DE.Views.DocumentHolder.txtMatrixAlign": "매트릭스 정렬",
|
||||||
"DE.Views.DocumentHolder.txtOverbar": "텍스트 위에 가로 막기",
|
"DE.Views.DocumentHolder.txtOverbar": "텍스트 위에 가로 막기",
|
||||||
|
"DE.Views.DocumentHolder.txtOverwriteCells": "셀에 덮어쓰기",
|
||||||
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "소스 포맷을 유지하세요",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭",
|
"DE.Views.DocumentHolder.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "제한 제거",
|
"DE.Views.DocumentHolder.txtRemLimit": "제한 제거",
|
||||||
|
@ -965,6 +1075,7 @@
|
||||||
"DE.Views.FileMenu.btnHistoryCaption": "버전 기록",
|
"DE.Views.FileMenu.btnHistoryCaption": "버전 기록",
|
||||||
"DE.Views.FileMenu.btnInfoCaption": "문서 정보 ...",
|
"DE.Views.FileMenu.btnInfoCaption": "문서 정보 ...",
|
||||||
"DE.Views.FileMenu.btnPrintCaption": "인쇄",
|
"DE.Views.FileMenu.btnPrintCaption": "인쇄",
|
||||||
|
"DE.Views.FileMenu.btnProtectCaption": "보호",
|
||||||
"DE.Views.FileMenu.btnRecentFilesCaption": "최근 열기 ...",
|
"DE.Views.FileMenu.btnRecentFilesCaption": "최근 열기 ...",
|
||||||
"DE.Views.FileMenu.btnRenameCaption": "Rename ...",
|
"DE.Views.FileMenu.btnRenameCaption": "Rename ...",
|
||||||
"DE.Views.FileMenu.btnReturnCaption": "문서로 돌아 가기",
|
"DE.Views.FileMenu.btnReturnCaption": "문서로 돌아 가기",
|
||||||
|
@ -995,7 +1106,16 @@
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "액세스 권한 변경",
|
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "액세스 권한 변경",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람",
|
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람",
|
||||||
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "경고",
|
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "경고",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "비밀번호로",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.strProtect": "문서 보호",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "서명으로",
|
||||||
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "문서 편집",
|
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "문서 편집",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "편집은 문서에서 서명을 지울것입니다. <br> 계속 진행하시겠습니까?",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "이 문서는 비밀번호로 보호된 적이 있슴",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "이 문서는 서명되어야 합니다.",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "유효한 서명이 당 문서에 추가되었슴. 이 문서는 편집할 수 없도록 보호됨.",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "문서에 있는 몇 가지 디지털 서명 이 맞지 않거나 확인되지 않음. 이 문서는 편집할 수 없도록 보호됨.",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "서명 보기",
|
||||||
"DE.Views.FileMenuPanels.Settings.okButtonText": "적용",
|
"DE.Views.FileMenuPanels.Settings.okButtonText": "적용",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "정렬 안내선 켜기",
|
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "정렬 안내선 켜기",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "자동 검색 켜기",
|
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "자동 검색 켜기",
|
||||||
|
@ -1040,30 +1160,40 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "Windows로",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "Windows로",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomCenter": "하단 중앙",
|
"DE.Views.HeaderFooterSettings.textBottomCenter": "하단 중앙",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomLeft": "왼쪽 하단",
|
"DE.Views.HeaderFooterSettings.textBottomLeft": "왼쪽 하단",
|
||||||
|
"DE.Views.HeaderFooterSettings.textBottomPage": "페이지 끝",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomRight": "오른쪽 하단",
|
"DE.Views.HeaderFooterSettings.textBottomRight": "오른쪽 하단",
|
||||||
"DE.Views.HeaderFooterSettings.textDiffFirst": "다른 첫 페이지",
|
"DE.Views.HeaderFooterSettings.textDiffFirst": "다른 첫 페이지",
|
||||||
"DE.Views.HeaderFooterSettings.textDiffOdd": "다른 홀수 및 짝수 페이지",
|
"DE.Views.HeaderFooterSettings.textDiffOdd": "다른 홀수 및 짝수 페이지",
|
||||||
|
"DE.Views.HeaderFooterSettings.textFrom": "시작 시간",
|
||||||
"DE.Views.HeaderFooterSettings.textHeaderFromBottom": "하단에서 바닥 글",
|
"DE.Views.HeaderFooterSettings.textHeaderFromBottom": "하단에서 바닥 글",
|
||||||
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "머리글을 맨 위부터",
|
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "머리글을 맨 위부터",
|
||||||
|
"DE.Views.HeaderFooterSettings.textInsertCurrent": "현재 위치로 삽입",
|
||||||
"DE.Views.HeaderFooterSettings.textOptions": "옵션",
|
"DE.Views.HeaderFooterSettings.textOptions": "옵션",
|
||||||
"DE.Views.HeaderFooterSettings.textPageNum": "페이지 번호 삽입",
|
"DE.Views.HeaderFooterSettings.textPageNum": "페이지 번호 삽입",
|
||||||
|
"DE.Views.HeaderFooterSettings.textPageNumbering": "페이지 넘버링",
|
||||||
"DE.Views.HeaderFooterSettings.textPosition": "위치",
|
"DE.Views.HeaderFooterSettings.textPosition": "위치",
|
||||||
|
"DE.Views.HeaderFooterSettings.textPrev": "이전 섹션에서 계속하기",
|
||||||
"DE.Views.HeaderFooterSettings.textSameAs": "이전 링크",
|
"DE.Views.HeaderFooterSettings.textSameAs": "이전 링크",
|
||||||
"DE.Views.HeaderFooterSettings.textTopCenter": "Top Center",
|
"DE.Views.HeaderFooterSettings.textTopCenter": "Top Center",
|
||||||
"DE.Views.HeaderFooterSettings.textTopLeft": "왼쪽 상단",
|
"DE.Views.HeaderFooterSettings.textTopLeft": "왼쪽 상단",
|
||||||
|
"DE.Views.HeaderFooterSettings.textTopPage": "페이지 시작",
|
||||||
"DE.Views.HeaderFooterSettings.textTopRight": "오른쪽 상단",
|
"DE.Views.HeaderFooterSettings.textTopRight": "오른쪽 상단",
|
||||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "취소",
|
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "취소",
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "선택한 텍스트 조각",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "선택한 텍스트 조각",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "표시",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "표시",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "외부 링크",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "하이퍼 링크 설정",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "하이퍼 링크 설정",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "스크린 팁 텍스트",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "스크린 팁 텍스트",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "링크 대상",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "링크 대상",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "문서의 시작",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "책갈피",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "이 입력란은 필수 항목입니다.",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "이 입력란은 필수 항목입니다.",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "고급 설정 표시",
|
"DE.Views.ImageSettings.textAdvanced": "고급 설정 표시",
|
||||||
"DE.Views.ImageSettings.textEdit": "편집",
|
"DE.Views.ImageSettings.textEdit": "편집",
|
||||||
"DE.Views.ImageSettings.textEditObject": "개체 편집",
|
"DE.Views.ImageSettings.textEditObject": "개체 편집",
|
||||||
|
"DE.Views.ImageSettings.textFitMargins": "여백에 맞추기",
|
||||||
"DE.Views.ImageSettings.textFromFile": "파일로부터",
|
"DE.Views.ImageSettings.textFromFile": "파일로부터",
|
||||||
"DE.Views.ImageSettings.textFromUrl": "From URL",
|
"DE.Views.ImageSettings.textFromUrl": "From URL",
|
||||||
"DE.Views.ImageSettings.textHeight": "높이",
|
"DE.Views.ImageSettings.textHeight": "높이",
|
||||||
|
@ -1157,6 +1287,24 @@
|
||||||
"DE.Views.LeftMenu.tipTitles": "제목",
|
"DE.Views.LeftMenu.tipTitles": "제목",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "개발자 모드",
|
"DE.Views.LeftMenu.txtDeveloper": "개발자 모드",
|
||||||
"DE.Views.LeftMenu.txtTrial": "시험 모드",
|
"DE.Views.LeftMenu.txtTrial": "시험 모드",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "책갈피",
|
||||||
|
"DE.Views.Links.capBtnContentsUpdate": "재실행",
|
||||||
|
"DE.Views.Links.capBtnInsContents": "콘텍츠 테이블",
|
||||||
|
"DE.Views.Links.capBtnInsFootnote": "각주",
|
||||||
|
"DE.Views.Links.capBtnInsLink": "하이퍼 링크",
|
||||||
|
"DE.Views.Links.confirmDeleteFootnotes": "모든 각주를 삭제 하시겠습니까?",
|
||||||
|
"DE.Views.Links.mniDelFootnote": "모든 각주 삭제",
|
||||||
|
"DE.Views.Links.mniInsFootnote": "각주 삽입",
|
||||||
|
"DE.Views.Links.mniNoteSettings": "메모 설정",
|
||||||
|
"DE.Views.Links.textContentsRemove": "콘텐츠 테이블을 지우세요",
|
||||||
|
"DE.Views.Links.textContentsSettings": "세팅",
|
||||||
|
"DE.Views.Links.textGotoFootnote": "각주로 이동",
|
||||||
|
"DE.Views.Links.textUpdateAll": "전체 테이블을 새로고침하세요",
|
||||||
|
"DE.Views.Links.textUpdatePages": "페이지 번호만 새로고침하세요",
|
||||||
|
"DE.Views.Links.tipContents": "콘텐트 테이블 삽입",
|
||||||
|
"DE.Views.Links.tipContentsUpdate": "콘텐트 테이블 새로고침",
|
||||||
|
"DE.Views.Links.tipInsertHyperlink": "하이퍼 링크 추가",
|
||||||
|
"DE.Views.Links.tipNotes": "각주 삽입 또는 편집",
|
||||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "취소",
|
"DE.Views.MailMergeEmailDlg.cancelButtonText": "취소",
|
||||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||||
"DE.Views.MailMergeEmailDlg.okButtonText": "보내기",
|
"DE.Views.MailMergeEmailDlg.okButtonText": "보내기",
|
||||||
|
@ -1207,7 +1355,19 @@
|
||||||
"DE.Views.MailMergeSettings.txtLast": "마지막 기록",
|
"DE.Views.MailMergeSettings.txtLast": "마지막 기록",
|
||||||
"DE.Views.MailMergeSettings.txtNext": "다음 레코드로",
|
"DE.Views.MailMergeSettings.txtNext": "다음 레코드로",
|
||||||
"DE.Views.MailMergeSettings.txtPrev": "이전 레코드로",
|
"DE.Views.MailMergeSettings.txtPrev": "이전 레코드로",
|
||||||
|
"DE.Views.MailMergeSettings.txtUntitled": "제목미정",
|
||||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "병합 시작 실패",
|
"DE.Views.MailMergeSettings.warnProcessMailMerge": "병합 시작 실패",
|
||||||
|
"DE.Views.Navigation.txtCollapse": "모두 접기",
|
||||||
|
"DE.Views.Navigation.txtDemote": "강등",
|
||||||
|
"DE.Views.Navigation.txtEmpty": "이 문서는 헤딩을 포함하지 않음",
|
||||||
|
"DE.Views.Navigation.txtEmptyItem": "머리말 없슴",
|
||||||
|
"DE.Views.Navigation.txtExpand": "모두 확장",
|
||||||
|
"DE.Views.Navigation.txtExpandToLevel": "레벨로 확장하기",
|
||||||
|
"DE.Views.Navigation.txtHeadingAfter": "뒤에 신규 머리글 ",
|
||||||
|
"DE.Views.Navigation.txtHeadingBefore": "전에 신규 머리글 ",
|
||||||
|
"DE.Views.Navigation.txtNewHeading": "신규 서브헤딩",
|
||||||
|
"DE.Views.Navigation.txtPromote": "승급",
|
||||||
|
"DE.Views.Navigation.txtSelect": "콘텐트 선택",
|
||||||
"DE.Views.NoteSettingsDialog.textApply": "적용",
|
"DE.Views.NoteSettingsDialog.textApply": "적용",
|
||||||
"DE.Views.NoteSettingsDialog.textApplyTo": "변경 사항 적용",
|
"DE.Views.NoteSettingsDialog.textApplyTo": "변경 사항 적용",
|
||||||
"DE.Views.NoteSettingsDialog.textCancel": "취소",
|
"DE.Views.NoteSettingsDialog.textCancel": "취소",
|
||||||
|
@ -1286,8 +1446,10 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "문자 간격",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "문자 간격",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "기본 탭",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "기본 탭",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "효과",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "효과",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "리더",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "왼쪽",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "왼쪽",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "새 맞춤 색상 추가",
|
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "새 맞춤 색상 추가",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "없음",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "위치",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "위치",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "제거",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "제거",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "모두 제거",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "모두 제거",
|
||||||
|
@ -1315,6 +1477,7 @@
|
||||||
"DE.Views.RightMenu.txtMailMergeSettings": "편지 병합 설정",
|
"DE.Views.RightMenu.txtMailMergeSettings": "편지 병합 설정",
|
||||||
"DE.Views.RightMenu.txtParagraphSettings": "단락 설정",
|
"DE.Views.RightMenu.txtParagraphSettings": "단락 설정",
|
||||||
"DE.Views.RightMenu.txtShapeSettings": "도형 설정",
|
"DE.Views.RightMenu.txtShapeSettings": "도형 설정",
|
||||||
|
"DE.Views.RightMenu.txtSignatureSettings": "서명 세팅",
|
||||||
"DE.Views.RightMenu.txtTableSettings": "표 설정",
|
"DE.Views.RightMenu.txtTableSettings": "표 설정",
|
||||||
"DE.Views.RightMenu.txtTextArtSettings": "텍스트 아트 설정",
|
"DE.Views.RightMenu.txtTextArtSettings": "텍스트 아트 설정",
|
||||||
"DE.Views.ShapeSettings.strBackground": "배경색",
|
"DE.Views.ShapeSettings.strBackground": "배경색",
|
||||||
|
@ -1368,6 +1531,20 @@
|
||||||
"DE.Views.ShapeSettings.txtTopAndBottom": "상단 및 하단",
|
"DE.Views.ShapeSettings.txtTopAndBottom": "상단 및 하단",
|
||||||
"DE.Views.ShapeSettings.txtWood": "Wood",
|
"DE.Views.ShapeSettings.txtWood": "Wood",
|
||||||
"DE.Views.SignatureSettings.notcriticalErrorTitle": "경고",
|
"DE.Views.SignatureSettings.notcriticalErrorTitle": "경고",
|
||||||
|
"DE.Views.SignatureSettings.strDelete": "서명 삭제",
|
||||||
|
"DE.Views.SignatureSettings.strDetails": "서명 상세",
|
||||||
|
"DE.Views.SignatureSettings.strInvalid": "잘못된 서명",
|
||||||
|
"DE.Views.SignatureSettings.strRequested": "요청 서명",
|
||||||
|
"DE.Views.SignatureSettings.strSetup": "서명 셋업",
|
||||||
|
"DE.Views.SignatureSettings.strSign": "서명",
|
||||||
|
"DE.Views.SignatureSettings.strSignature": "서명",
|
||||||
|
"DE.Views.SignatureSettings.strSigner": "서명자",
|
||||||
|
"DE.Views.SignatureSettings.strValid": "유효 서명",
|
||||||
|
"DE.Views.SignatureSettings.txtContinueEditing": "무조건 편집",
|
||||||
|
"DE.Views.SignatureSettings.txtEditWarning": "편집은 문서에서 서명을 지울것입니다. <br> 계속 진행하시겠습니까?",
|
||||||
|
"DE.Views.SignatureSettings.txtRequestedSignatures": "이 문서는 서명되어야 합니다.",
|
||||||
|
"DE.Views.SignatureSettings.txtSigned": "유효한 서명이 당 문서에 추가되었슴. 이 문서는 편집할 수 없도록 보호됨.",
|
||||||
|
"DE.Views.SignatureSettings.txtSignedInvalid": "문서에 있는 몇 가지 디지털 서명 이 맞지 않거나 확인되지 않음. 이 문서는 편집할 수 없도록 보호됨.",
|
||||||
"DE.Views.Statusbar.goToPageText": "페이지로 이동",
|
"DE.Views.Statusbar.goToPageText": "페이지로 이동",
|
||||||
"DE.Views.Statusbar.pageIndexText": "{1}의 페이지 {0}",
|
"DE.Views.Statusbar.pageIndexText": "{1}의 페이지 {0}",
|
||||||
"DE.Views.Statusbar.tipFitPage": "페이지에 맞춤",
|
"DE.Views.Statusbar.tipFitPage": "페이지에 맞춤",
|
||||||
|
@ -1382,6 +1559,26 @@
|
||||||
"DE.Views.StyleTitleDialog.textTitle": "제목",
|
"DE.Views.StyleTitleDialog.textTitle": "제목",
|
||||||
"DE.Views.StyleTitleDialog.txtEmpty": "이 입력란은 필수 항목",
|
"DE.Views.StyleTitleDialog.txtEmpty": "이 입력란은 필수 항목",
|
||||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "필드가 비어 있어서는 안됩니다.",
|
"DE.Views.StyleTitleDialog.txtNotEmpty": "필드가 비어 있어서는 안됩니다.",
|
||||||
|
"DE.Views.TableOfContentsSettings.cancelButtonText": "취소",
|
||||||
|
"DE.Views.TableOfContentsSettings.okButtonText ": "확인",
|
||||||
|
"DE.Views.TableOfContentsSettings.strAlign": "오른쪽 정렬 페이지 번호",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinks": "콘텐츠 테이블을 포맷하세요",
|
||||||
|
"DE.Views.TableOfContentsSettings.strShowPages": "페이지 번호를 보여주세요",
|
||||||
|
"DE.Views.TableOfContentsSettings.textBuildTable": "콘텐츠 테이블을 작성하세요",
|
||||||
|
"DE.Views.TableOfContentsSettings.textLeader": "리더",
|
||||||
|
"DE.Views.TableOfContentsSettings.textLevel": "레벨",
|
||||||
|
"DE.Views.TableOfContentsSettings.textLevels": "레벨들",
|
||||||
|
"DE.Views.TableOfContentsSettings.textNone": "없음",
|
||||||
|
"DE.Views.TableOfContentsSettings.textRadioLevels": "레벨을 간략하게 서술하세요",
|
||||||
|
"DE.Views.TableOfContentsSettings.textRadioStyles": "선택 스타일",
|
||||||
|
"DE.Views.TableOfContentsSettings.textStyle": "스타일",
|
||||||
|
"DE.Views.TableOfContentsSettings.textStyles": "스타일들",
|
||||||
|
"DE.Views.TableOfContentsSettings.textTitle": "콘텍츠 테이블",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtClassic": "클래식",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtCurrent": "현재",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtModern": "모던",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtSimple": "간단한",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtStandard": "기준",
|
||||||
"DE.Views.TableSettings.deleteColumnText": "열 삭제",
|
"DE.Views.TableSettings.deleteColumnText": "열 삭제",
|
||||||
"DE.Views.TableSettings.deleteRowText": "행 삭제",
|
"DE.Views.TableSettings.deleteRowText": "행 삭제",
|
||||||
"DE.Views.TableSettings.deleteTableText": "테이블 삭제",
|
"DE.Views.TableSettings.deleteTableText": "테이블 삭제",
|
||||||
|
@ -1403,11 +1600,15 @@
|
||||||
"DE.Views.TableSettings.textBorderColor": "Color",
|
"DE.Views.TableSettings.textBorderColor": "Color",
|
||||||
"DE.Views.TableSettings.textBorders": "테두리 스타일",
|
"DE.Views.TableSettings.textBorders": "테두리 스타일",
|
||||||
"DE.Views.TableSettings.textCancel": "취소",
|
"DE.Views.TableSettings.textCancel": "취소",
|
||||||
|
"DE.Views.TableSettings.textCellSize": "셀 크기",
|
||||||
"DE.Views.TableSettings.textColumns": "열",
|
"DE.Views.TableSettings.textColumns": "열",
|
||||||
|
"DE.Views.TableSettings.textDistributeCols": "컬럼 배포",
|
||||||
|
"DE.Views.TableSettings.textDistributeRows": "행 배포",
|
||||||
"DE.Views.TableSettings.textEdit": "행 및 열",
|
"DE.Views.TableSettings.textEdit": "행 및 열",
|
||||||
"DE.Views.TableSettings.textEmptyTemplate": "템플릿 없음",
|
"DE.Views.TableSettings.textEmptyTemplate": "템플릿 없음",
|
||||||
"DE.Views.TableSettings.textFirst": "First",
|
"DE.Views.TableSettings.textFirst": "First",
|
||||||
"DE.Views.TableSettings.textHeader": "머리글",
|
"DE.Views.TableSettings.textHeader": "머리글",
|
||||||
|
"DE.Views.TableSettings.textHeight": "높이",
|
||||||
"DE.Views.TableSettings.textLast": "Last",
|
"DE.Views.TableSettings.textLast": "Last",
|
||||||
"DE.Views.TableSettings.textNewColor": "새 사용자 지정 색 추가",
|
"DE.Views.TableSettings.textNewColor": "새 사용자 지정 색 추가",
|
||||||
"DE.Views.TableSettings.textOK": "OK",
|
"DE.Views.TableSettings.textOK": "OK",
|
||||||
|
@ -1415,6 +1616,7 @@
|
||||||
"DE.Views.TableSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택",
|
"DE.Views.TableSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택",
|
||||||
"DE.Views.TableSettings.textTemplate": "템플릿에서 선택",
|
"DE.Views.TableSettings.textTemplate": "템플릿에서 선택",
|
||||||
"DE.Views.TableSettings.textTotal": "Total",
|
"DE.Views.TableSettings.textTotal": "Total",
|
||||||
|
"DE.Views.TableSettings.textWidth": "너비",
|
||||||
"DE.Views.TableSettings.tipAll": "바깥 쪽 테두리 및 모든 안쪽 선 설정",
|
"DE.Views.TableSettings.tipAll": "바깥 쪽 테두리 및 모든 안쪽 선 설정",
|
||||||
"DE.Views.TableSettings.tipBottom": "바깥 쪽 테두리 만 설정",
|
"DE.Views.TableSettings.tipBottom": "바깥 쪽 테두리 만 설정",
|
||||||
"DE.Views.TableSettings.tipInner": "내부 라인 만 설정",
|
"DE.Views.TableSettings.tipInner": "내부 라인 만 설정",
|
||||||
|
@ -1524,10 +1726,16 @@
|
||||||
"DE.Views.Toolbar.capBtnColumns": "열",
|
"DE.Views.Toolbar.capBtnColumns": "열",
|
||||||
"DE.Views.Toolbar.capBtnComment": "댓글",
|
"DE.Views.Toolbar.capBtnComment": "댓글",
|
||||||
"DE.Views.Toolbar.capBtnInsChart": "차트",
|
"DE.Views.Toolbar.capBtnInsChart": "차트",
|
||||||
|
"DE.Views.Toolbar.capBtnInsControls": "콘텐트 제어",
|
||||||
"DE.Views.Toolbar.capBtnInsDropcap": "드롭 캡",
|
"DE.Views.Toolbar.capBtnInsDropcap": "드롭 캡",
|
||||||
"DE.Views.Toolbar.capBtnInsEquation": "수식",
|
"DE.Views.Toolbar.capBtnInsEquation": "수식",
|
||||||
|
"DE.Views.Toolbar.capBtnInsHeader": "머리말/꼬리말",
|
||||||
"DE.Views.Toolbar.capBtnInsImage": "그림",
|
"DE.Views.Toolbar.capBtnInsImage": "그림",
|
||||||
|
"DE.Views.Toolbar.capBtnInsPagebreak": "나누기",
|
||||||
|
"DE.Views.Toolbar.capBtnInsShape": "쉐이프",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "테이블",
|
"DE.Views.Toolbar.capBtnInsTable": "테이블",
|
||||||
|
"DE.Views.Toolbar.capBtnInsTextart": "텍스트 아트",
|
||||||
|
"DE.Views.Toolbar.capBtnInsTextbox": "텍스트 박스",
|
||||||
"DE.Views.Toolbar.capBtnMargins": "여백",
|
"DE.Views.Toolbar.capBtnMargins": "여백",
|
||||||
"DE.Views.Toolbar.capBtnPageOrient": "오리엔테이션",
|
"DE.Views.Toolbar.capBtnPageOrient": "오리엔테이션",
|
||||||
"DE.Views.Toolbar.capBtnPageSize": "크기",
|
"DE.Views.Toolbar.capBtnPageSize": "크기",
|
||||||
|
@ -1535,7 +1743,9 @@
|
||||||
"DE.Views.Toolbar.capImgBackward": "뒤로 이동",
|
"DE.Views.Toolbar.capImgBackward": "뒤로 이동",
|
||||||
"DE.Views.Toolbar.capImgForward": "앞으로 이동",
|
"DE.Views.Toolbar.capImgForward": "앞으로 이동",
|
||||||
"DE.Views.Toolbar.capImgGroup": "그룹",
|
"DE.Views.Toolbar.capImgGroup": "그룹",
|
||||||
|
"DE.Views.Toolbar.capImgWrapping": "포장",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "사용자 정의 테이블 삽입",
|
"DE.Views.Toolbar.mniCustomTable": "사용자 정의 테이블 삽입",
|
||||||
|
"DE.Views.Toolbar.mniEditControls": "제어 세팅",
|
||||||
"DE.Views.Toolbar.mniEditDropCap": "드롭 캡 설정",
|
"DE.Views.Toolbar.mniEditDropCap": "드롭 캡 설정",
|
||||||
"DE.Views.Toolbar.mniEditFooter": "바닥 글 편집",
|
"DE.Views.Toolbar.mniEditFooter": "바닥 글 편집",
|
||||||
"DE.Views.Toolbar.mniEditHeader": "머리글 편집",
|
"DE.Views.Toolbar.mniEditHeader": "머리글 편집",
|
||||||
|
@ -1557,14 +1767,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "오른쪽",
|
"DE.Views.Toolbar.textColumnsRight": "오른쪽",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "3",
|
"DE.Views.Toolbar.textColumnsThree": "3",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "2",
|
"DE.Views.Toolbar.textColumnsTwo": "2",
|
||||||
"DE.Views.Toolbar.textCompactView": "보기 컴팩트 도구 모음",
|
|
||||||
"DE.Views.Toolbar.textContPage": "연속 페이지",
|
"DE.Views.Toolbar.textContPage": "연속 페이지",
|
||||||
"DE.Views.Toolbar.textEvenPage": "짝수 페이지",
|
"DE.Views.Toolbar.textEvenPage": "짝수 페이지",
|
||||||
"DE.Views.Toolbar.textFitPage": "페이지에 맞춤",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "너비에 맞춤",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "눈금자 숨기기",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "상태 표시 줄 숨기기",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "제목 표시 줄 숨기기",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "여백 있음",
|
"DE.Views.Toolbar.textInMargin": "여백 있음",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "열 구분 삽입",
|
"DE.Views.Toolbar.textInsColumnBreak": "열 구분 삽입",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "페이지 수 삽입",
|
"DE.Views.Toolbar.textInsertPageCount": "페이지 수 삽입",
|
||||||
|
@ -1589,8 +1793,11 @@
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "사용자 정의 여백",
|
"DE.Views.Toolbar.textPageMarginsCustom": "사용자 정의 여백",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "사용자 정의 페이지 크기",
|
"DE.Views.Toolbar.textPageSizeCustom": "사용자 정의 페이지 크기",
|
||||||
"DE.Views.Toolbar.textPie": "파이",
|
"DE.Views.Toolbar.textPie": "파이",
|
||||||
|
"DE.Views.Toolbar.textPlainControl": "일반 텍스트 콘텐트 제어 삽입",
|
||||||
"DE.Views.Toolbar.textPoint": "XY (Scatter)",
|
"DE.Views.Toolbar.textPoint": "XY (Scatter)",
|
||||||
"DE.Views.Toolbar.textPortrait": "Portrait",
|
"DE.Views.Toolbar.textPortrait": "Portrait",
|
||||||
|
"DE.Views.Toolbar.textRemoveControl": "콘텐트 제어 삭제",
|
||||||
|
"DE.Views.Toolbar.textRichControl": "리치 텍스트 콘텐트 제어 삽입",
|
||||||
"DE.Views.Toolbar.textRight": "오른쪽 :",
|
"DE.Views.Toolbar.textRight": "오른쪽 :",
|
||||||
"DE.Views.Toolbar.textStock": "Stock",
|
"DE.Views.Toolbar.textStock": "Stock",
|
||||||
"DE.Views.Toolbar.textStrikeout": "Strikeout",
|
"DE.Views.Toolbar.textStrikeout": "Strikeout",
|
||||||
|
@ -1603,16 +1810,18 @@
|
||||||
"DE.Views.Toolbar.textSubscript": "Subscript",
|
"DE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"DE.Views.Toolbar.textSurface": "Surface",
|
"DE.Views.Toolbar.textSurface": "Surface",
|
||||||
|
"DE.Views.Toolbar.textTabCollaboration": "합치기",
|
||||||
"DE.Views.Toolbar.textTabFile": "파일",
|
"DE.Views.Toolbar.textTabFile": "파일",
|
||||||
"DE.Views.Toolbar.textTabHome": "집",
|
"DE.Views.Toolbar.textTabHome": "집",
|
||||||
"DE.Views.Toolbar.textTabInsert": "삽입",
|
"DE.Views.Toolbar.textTabInsert": "삽입",
|
||||||
"DE.Views.Toolbar.textTabLayout": "레이아웃",
|
"DE.Views.Toolbar.textTabLayout": "레이아웃",
|
||||||
|
"DE.Views.Toolbar.textTabLinks": "레퍼런스",
|
||||||
|
"DE.Views.Toolbar.textTabProtect": "보호",
|
||||||
|
"DE.Views.Toolbar.textTabReview": "다시보기",
|
||||||
"DE.Views.Toolbar.textTitleError": "오류",
|
"DE.Views.Toolbar.textTitleError": "오류",
|
||||||
"DE.Views.Toolbar.textToCurrent": "현재 위치로",
|
"DE.Views.Toolbar.textToCurrent": "현재 위치로",
|
||||||
"DE.Views.Toolbar.textTop": "Top :",
|
"DE.Views.Toolbar.textTop": "Top :",
|
||||||
"DE.Views.Toolbar.textUnderline": "밑줄",
|
"DE.Views.Toolbar.textUnderline": "밑줄",
|
||||||
"DE.Views.Toolbar.textZoom": "확대 / 축소",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "고급 설정",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Align Center",
|
"DE.Views.Toolbar.tipAlignCenter": "Align Center",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Justified",
|
"DE.Views.Toolbar.tipAlignJust": "Justified",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "왼쪽 정렬",
|
"DE.Views.Toolbar.tipAlignLeft": "왼쪽 정렬",
|
||||||
|
@ -1622,6 +1831,7 @@
|
||||||
"DE.Views.Toolbar.tipClearStyle": "스타일 지우기",
|
"DE.Views.Toolbar.tipClearStyle": "스타일 지우기",
|
||||||
"DE.Views.Toolbar.tipColorSchemas": "Change Color Scheme",
|
"DE.Views.Toolbar.tipColorSchemas": "Change Color Scheme",
|
||||||
"DE.Views.Toolbar.tipColumns": "열 삽입",
|
"DE.Views.Toolbar.tipColumns": "열 삽입",
|
||||||
|
"DE.Views.Toolbar.tipControls": "콘텐트 제어를 삽입",
|
||||||
"DE.Views.Toolbar.tipCopy": "복사",
|
"DE.Views.Toolbar.tipCopy": "복사",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "스타일 복사",
|
"DE.Views.Toolbar.tipCopyStyle": "스타일 복사",
|
||||||
"DE.Views.Toolbar.tipDecFont": "글꼴 크기 줄이기",
|
"DE.Views.Toolbar.tipDecFont": "글꼴 크기 줄이기",
|
||||||
|
@ -1633,6 +1843,8 @@
|
||||||
"DE.Views.Toolbar.tipFontSize": "글꼴 크기",
|
"DE.Views.Toolbar.tipFontSize": "글꼴 크기",
|
||||||
"DE.Views.Toolbar.tipHAligh": "수평 정렬",
|
"DE.Views.Toolbar.tipHAligh": "수평 정렬",
|
||||||
"DE.Views.Toolbar.tipHighlightColor": "Highlight Color",
|
"DE.Views.Toolbar.tipHighlightColor": "Highlight Color",
|
||||||
|
"DE.Views.Toolbar.tipImgAlign": "오브젝트 정렬",
|
||||||
|
"DE.Views.Toolbar.tipImgGroup": "그룹 오브젝트",
|
||||||
"DE.Views.Toolbar.tipImgWrapping": "텍스트 줄 바꾸기",
|
"DE.Views.Toolbar.tipImgWrapping": "텍스트 줄 바꾸기",
|
||||||
"DE.Views.Toolbar.tipIncFont": "증가 글꼴 크기",
|
"DE.Views.Toolbar.tipIncFont": "증가 글꼴 크기",
|
||||||
"DE.Views.Toolbar.tipIncPrLeft": "들여 쓰기 늘리기",
|
"DE.Views.Toolbar.tipIncPrLeft": "들여 쓰기 늘리기",
|
||||||
|
@ -1642,7 +1854,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertNum": "페이지 번호 삽입",
|
"DE.Views.Toolbar.tipInsertNum": "페이지 번호 삽입",
|
||||||
"DE.Views.Toolbar.tipInsertShape": "도형 삽입",
|
"DE.Views.Toolbar.tipInsertShape": "도형 삽입",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "표 삽입",
|
"DE.Views.Toolbar.tipInsertTable": "표 삽입",
|
||||||
"DE.Views.Toolbar.tipInsertText": "텍스트 삽입",
|
"DE.Views.Toolbar.tipInsertText": "텍스트 상자 삽입",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "텍스트 아트 삽입",
|
"DE.Views.Toolbar.tipInsertTextArt": "텍스트 아트 삽입",
|
||||||
"DE.Views.Toolbar.tipLineSpace": "단락 줄 간격",
|
"DE.Views.Toolbar.tipLineSpace": "단락 줄 간격",
|
||||||
"DE.Views.Toolbar.tipMailRecepients": "편지 병합",
|
"DE.Views.Toolbar.tipMailRecepients": "편지 병합",
|
||||||
|
@ -1665,7 +1877,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "인쇄되지 않는 문자",
|
"DE.Views.Toolbar.tipShowHiddenChars": "인쇄되지 않는 문자",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.",
|
"DE.Views.Toolbar.tipSynchronize": "다른 사용자가 문서를 변경했습니다. 변경 사항을 저장하고 업데이트를 다시로드하려면 클릭하십시오.",
|
||||||
"DE.Views.Toolbar.tipUndo": "실행 취소",
|
"DE.Views.Toolbar.tipUndo": "실행 취소",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "보기 설정",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Office",
|
"DE.Views.Toolbar.txtScheme1": "Office",
|
||||||
"DE.Views.Toolbar.txtScheme10": "중앙값",
|
"DE.Views.Toolbar.txtScheme10": "중앙값",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -141,11 +141,14 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Šobrīd dokumentu rediģē vairāki lietotāji.",
|
"Common.Views.Header.labelCoUsersDescr": "Šobrīd dokumentu rediģē vairāki lietotāji.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Papildu iestatījumi",
|
||||||
"Common.Views.Header.textBack": "Iet uz Dokumenti",
|
"Common.Views.Header.textBack": "Iet uz Dokumenti",
|
||||||
|
"Common.Views.Header.textCompactView": "Slēpt rīkjoslu",
|
||||||
"Common.Views.Header.textSaveBegin": "Saglabā ...",
|
"Common.Views.Header.textSaveBegin": "Saglabā ...",
|
||||||
"Common.Views.Header.textSaveChanged": "Pārveidots",
|
"Common.Views.Header.textSaveChanged": "Pārveidots",
|
||||||
"Common.Views.Header.textSaveEnd": "Visas izmaiņas saglabātas",
|
"Common.Views.Header.textSaveEnd": "Visas izmaiņas saglabātas",
|
||||||
"Common.Views.Header.textSaveExpander": "Visas izmaiņas saglabātas",
|
"Common.Views.Header.textSaveExpander": "Visas izmaiņas saglabātas",
|
||||||
|
"Common.Views.Header.textZoom": "Palielināšana",
|
||||||
"Common.Views.Header.tipAccessRights": "Pārvaldīt dokumenta piekļuves tiesības",
|
"Common.Views.Header.tipAccessRights": "Pārvaldīt dokumenta piekļuves tiesības",
|
||||||
"Common.Views.Header.tipDownload": "Lejupielādēt failu",
|
"Common.Views.Header.tipDownload": "Lejupielādēt failu",
|
||||||
"Common.Views.Header.tipGoEdit": "Rediģēt šībrīža failu",
|
"Common.Views.Header.tipGoEdit": "Rediģēt šībrīža failu",
|
||||||
|
@ -779,6 +782,15 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "Saskaņot ar lapu",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "Saskaņot ar platumu",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Pievienot",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Aizvērt",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Izdzēst",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "Novietojums",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "Nosaukums",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "Šķirot pēc",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Grāmatzīmes",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||||
"DE.Views.ChartSettings.textArea": "Area Chart",
|
"DE.Views.ChartSettings.textArea": "Area Chart",
|
||||||
"DE.Views.ChartSettings.textBar": "Bar Chart",
|
"DE.Views.ChartSettings.textBar": "Bar Chart",
|
||||||
|
@ -898,6 +910,8 @@
|
||||||
"DE.Views.DocumentHolder.textDistributeRows": "Izplatīt rindas",
|
"DE.Views.DocumentHolder.textDistributeRows": "Izplatīt rindas",
|
||||||
"DE.Views.DocumentHolder.textEditControls": "Satura kontroles uzstādījumi",
|
"DE.Views.DocumentHolder.textEditControls": "Satura kontroles uzstādījumi",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Wrap Boundary",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Wrap Boundary",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "No faila",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "No URL",
|
||||||
"DE.Views.DocumentHolder.textNest": "Tabula tabulā",
|
"DE.Views.DocumentHolder.textNest": "Tabula tabulā",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "Next Page",
|
"DE.Views.DocumentHolder.textNextPage": "Next Page",
|
||||||
"DE.Views.DocumentHolder.textPaste": "Paste",
|
"DE.Views.DocumentHolder.textPaste": "Paste",
|
||||||
|
@ -905,6 +919,7 @@
|
||||||
"DE.Views.DocumentHolder.textRefreshField": "Atsvaidzināt lauku",
|
"DE.Views.DocumentHolder.textRefreshField": "Atsvaidzināt lauku",
|
||||||
"DE.Views.DocumentHolder.textRemove": "Dzēst",
|
"DE.Views.DocumentHolder.textRemove": "Dzēst",
|
||||||
"DE.Views.DocumentHolder.textRemoveControl": "Noņemt satura kontroles elementu",
|
"DE.Views.DocumentHolder.textRemoveControl": "Noņemt satura kontroles elementu",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "Aizvietot attēlu",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Iestatījumi",
|
"DE.Views.DocumentHolder.textSettings": "Iestatījumi",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
||||||
|
@ -1164,9 +1179,12 @@
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Ok",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "Ok",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Atlasīts teksta fragments",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "Atlasīts teksta fragments",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Radīt",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Radīt",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "Ārējā saite",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Ekrāna padomu teksts",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Ekrāna padomu teksts",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "Saistīt ar",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "Saistīt ar",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Dokumenta sākums",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Grāmatzīmes",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Šis lauks ir nepieciešams",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Šis lauks ir nepieciešams",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Šis lauks jābūt URL formātā \"http://www.example.com\"",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Šis lauks jābūt URL formātā \"http://www.example.com\"",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "Radīt papildu iestatījumus",
|
"DE.Views.ImageSettings.textAdvanced": "Radīt papildu iestatījumus",
|
||||||
|
@ -1266,6 +1284,7 @@
|
||||||
"DE.Views.LeftMenu.tipTitles": "Nosaukumi",
|
"DE.Views.LeftMenu.tipTitles": "Nosaukumi",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "IZSTRĀDĀTĀJA REŽĪMS",
|
"DE.Views.LeftMenu.txtDeveloper": "IZSTRĀDĀTĀJA REŽĪMS",
|
||||||
"DE.Views.LeftMenu.txtTrial": "IZMĒĢINĀJUMA REŽĪMS",
|
"DE.Views.LeftMenu.txtTrial": "IZMĒĢINĀJUMA REŽĪMS",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "Grāmatzīme",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Atsvaidzināt",
|
"DE.Views.Links.capBtnContentsUpdate": "Atsvaidzināt",
|
||||||
"DE.Views.Links.capBtnInsContents": "Satura rādītājs",
|
"DE.Views.Links.capBtnInsContents": "Satura rādītājs",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Apakšējā piezīme",
|
"DE.Views.Links.capBtnInsFootnote": "Apakšējā piezīme",
|
||||||
|
@ -1340,7 +1359,7 @@
|
||||||
"DE.Views.Navigation.txtEmpty": "Šajā dokumentā nav virsrakstu",
|
"DE.Views.Navigation.txtEmpty": "Šajā dokumentā nav virsrakstu",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Tukšs virsraksts",
|
"DE.Views.Navigation.txtEmptyItem": "Tukšs virsraksts",
|
||||||
"DE.Views.Navigation.txtExpand": "Parādīt visas",
|
"DE.Views.Navigation.txtExpand": "Parādīt visas",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Parādīt līdz līmenim...",
|
"DE.Views.Navigation.txtExpandToLevel": "Parādīt līdz līmenim",
|
||||||
"DE.Views.Navigation.txtHeadingAfter": "Jauns virsraksts pēc",
|
"DE.Views.Navigation.txtHeadingAfter": "Jauns virsraksts pēc",
|
||||||
"DE.Views.Navigation.txtHeadingBefore": "Jauns virsraksts pirms",
|
"DE.Views.Navigation.txtHeadingBefore": "Jauns virsraksts pirms",
|
||||||
"DE.Views.Navigation.txtNewHeading": "Jauns apakšvirsraksts",
|
"DE.Views.Navigation.txtNewHeading": "Jauns apakšvirsraksts",
|
||||||
|
@ -1745,14 +1764,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Right",
|
"DE.Views.Toolbar.textColumnsRight": "Right",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Three",
|
"DE.Views.Toolbar.textColumnsThree": "Three",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Two",
|
"DE.Views.Toolbar.textColumnsTwo": "Two",
|
||||||
"DE.Views.Toolbar.textCompactView": "View Compact Toolbar",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Continuous Page",
|
"DE.Views.Toolbar.textContPage": "Continuous Page",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Even Page",
|
"DE.Views.Toolbar.textEvenPage": "Even Page",
|
||||||
"DE.Views.Toolbar.textFitPage": "Fit Page",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Fit Width",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Hide Lines",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Hide Status Bar",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Hide Title Bar",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "In Margin",
|
"DE.Views.Toolbar.textInMargin": "In Margin",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
|
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Ievietot lappušu skaitu",
|
"DE.Views.Toolbar.textInsertPageCount": "Ievietot lappušu skaitu",
|
||||||
|
@ -1806,8 +1819,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "Uz šo poziciju",
|
"DE.Views.Toolbar.textToCurrent": "Uz šo poziciju",
|
||||||
"DE.Views.Toolbar.textTop": "Top: ",
|
"DE.Views.Toolbar.textTop": "Top: ",
|
||||||
"DE.Views.Toolbar.textUnderline": "Pasvītrots",
|
"DE.Views.Toolbar.textUnderline": "Pasvītrots",
|
||||||
"DE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Advanced Settings",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Līdzināt pa centru",
|
"DE.Views.Toolbar.tipAlignCenter": "Līdzināt pa centru",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Pamatoti",
|
"DE.Views.Toolbar.tipAlignJust": "Pamatoti",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Līdzināt pa kreisi",
|
"DE.Views.Toolbar.tipAlignLeft": "Līdzināt pa kreisi",
|
||||||
|
@ -1863,7 +1874,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Nedrukājamās rakstzīmes",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Nedrukājamās rakstzīmes",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Dokumentu mainīja cits lietotājs. Lūdzu, noklikšķiniet, lai saglabātu izmaiņas un pārlādēt atjauninājumus.",
|
"DE.Views.Toolbar.tipSynchronize": "Dokumentu mainīja cits lietotājs. Lūdzu, noklikšķiniet, lai saglabātu izmaiņas un pārlādēt atjauninājumus.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Undo",
|
"DE.Views.Toolbar.tipUndo": "Undo",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "View Settings",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Jewels",
|
"DE.Views.Toolbar.txtScheme1": "Jewels",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Median",
|
"DE.Views.Toolbar.txtScheme10": "Median",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -141,15 +141,21 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Opslaan en afsluiten",
|
"Common.Views.ExternalMergeEditor.textSave": "Opslaan en afsluiten",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Geadresseerden voor Afdruk samenvoegen",
|
"Common.Views.ExternalMergeEditor.textTitle": "Geadresseerden voor Afdruk samenvoegen",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Document wordt op dit moment bewerkt door verschillende gebruikers.",
|
"Common.Views.Header.labelCoUsersDescr": "Document wordt op dit moment bewerkt door verschillende gebruikers.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Geavanceerde instellingen",
|
||||||
"Common.Views.Header.textBack": "Naar documenten",
|
"Common.Views.Header.textBack": "Naar documenten",
|
||||||
|
"Common.Views.Header.textCompactView": "Werkbalk Verbergen",
|
||||||
|
"Common.Views.Header.textHideLines": "Linialen verbergen",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Statusbalk verbergen",
|
||||||
"Common.Views.Header.textSaveBegin": "Opslaan...",
|
"Common.Views.Header.textSaveBegin": "Opslaan...",
|
||||||
"Common.Views.Header.textSaveChanged": "Gewijzigd",
|
"Common.Views.Header.textSaveChanged": "Gewijzigd",
|
||||||
"Common.Views.Header.textSaveEnd": "Alle wijzigingen zijn opgeslagen",
|
"Common.Views.Header.textSaveEnd": "Alle wijzigingen zijn opgeslagen",
|
||||||
"Common.Views.Header.textSaveExpander": "Alle wijzigingen zijn opgeslagen",
|
"Common.Views.Header.textSaveExpander": "Alle wijzigingen zijn opgeslagen",
|
||||||
|
"Common.Views.Header.textZoom": "Zoomen",
|
||||||
"Common.Views.Header.tipAccessRights": "Toegangsrechten van documenten beheren",
|
"Common.Views.Header.tipAccessRights": "Toegangsrechten van documenten beheren",
|
||||||
"Common.Views.Header.tipDownload": "Bestand downloaden",
|
"Common.Views.Header.tipDownload": "Bestand downloaden",
|
||||||
"Common.Views.Header.tipGoEdit": "Huidig bestand bewerken",
|
"Common.Views.Header.tipGoEdit": "Huidig bestand bewerken",
|
||||||
"Common.Views.Header.tipPrint": "Bestand afdrukken",
|
"Common.Views.Header.tipPrint": "Bestand afdrukken",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Weergave-instellingen",
|
||||||
"Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren",
|
"Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren",
|
||||||
"Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen",
|
"Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen",
|
||||||
"Common.Views.Header.txtRename": "Hernoemen",
|
"Common.Views.Header.txtRename": "Hernoemen",
|
||||||
|
@ -177,44 +183,78 @@
|
||||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||||
"Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren",
|
"Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren",
|
||||||
"Common.Views.OpenDialog.cancelButtonText": "Annuleren",
|
"Common.Views.OpenDialog.cancelButtonText": "Annuleren",
|
||||||
|
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
|
||||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
|
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
|
||||||
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
|
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
|
||||||
|
"Common.Views.OpenDialog.txtPreview": "Voorbeeld",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen",
|
"Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Beschermd bestand",
|
"Common.Views.OpenDialog.txtTitleProtected": "Beschermd bestand",
|
||||||
|
"Common.Views.PasswordDialog.cancelButtonText": "Annuleren",
|
||||||
|
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.PasswordDialog.txtDescription": "Pas een wachtwoord toe om dit document te beveiligen",
|
||||||
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bevestig wachtwoord is niet identiek",
|
||||||
|
"Common.Views.PasswordDialog.txtPassword": "Wachtwoord",
|
||||||
|
"Common.Views.PasswordDialog.txtRepeat": "Herhaal wachtwoord",
|
||||||
|
"Common.Views.PasswordDialog.txtTitle": "Wachtwoord instellen",
|
||||||
"Common.Views.PluginDlg.textLoading": "Laden",
|
"Common.Views.PluginDlg.textLoading": "Laden",
|
||||||
"Common.Views.Plugins.groupCaption": "Plug-ins",
|
"Common.Views.Plugins.groupCaption": "Plug-ins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
||||||
"Common.Views.Plugins.textLoading": "Laden",
|
"Common.Views.Plugins.textLoading": "Laden",
|
||||||
"Common.Views.Plugins.textStart": "Starten",
|
"Common.Views.Plugins.textStart": "Starten",
|
||||||
"Common.Views.Plugins.textStop": "Stoppen",
|
"Common.Views.Plugins.textStop": "Stoppen",
|
||||||
|
"Common.Views.Protection.hintAddPwd": "Versleutelen met wachtwoord",
|
||||||
|
"Common.Views.Protection.hintPwd": "Verander of verwijder wachtwoord",
|
||||||
|
"Common.Views.Protection.hintSignature": "Digitale handtekening toevoegen of handtekening lijn",
|
||||||
|
"Common.Views.Protection.txtAddPwd": "Wachtwoord toevoegen",
|
||||||
|
"Common.Views.Protection.txtChangePwd": "Verander wachtwoord",
|
||||||
|
"Common.Views.Protection.txtDeletePwd": "Wachtwoord verwijderen",
|
||||||
|
"Common.Views.Protection.txtEncrypt": "Versleutelen",
|
||||||
|
"Common.Views.Protection.txtInvisibleSignature": "Digitale handtekening toevoegen",
|
||||||
|
"Common.Views.Protection.txtSignature": "Handtekening",
|
||||||
|
"Common.Views.Protection.txtSignatureLine": "Handtekening lijn",
|
||||||
"Common.Views.RenameDialog.cancelButtonText": "Annuleren",
|
"Common.Views.RenameDialog.cancelButtonText": "Annuleren",
|
||||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||||
"Common.Views.RenameDialog.textName": "Bestandsnaam",
|
"Common.Views.RenameDialog.textName": "Bestandsnaam",
|
||||||
"Common.Views.RenameDialog.txtInvalidName": "De bestandsnaam mag geen van de volgende tekens bevatten:",
|
"Common.Views.RenameDialog.txtInvalidName": "De bestandsnaam mag geen van de volgende tekens bevatten:",
|
||||||
"Common.Views.ReviewChanges.hintNext": "Naar Volgende Wijziging",
|
"Common.Views.ReviewChanges.hintNext": "Naar Volgende Wijziging",
|
||||||
"Common.Views.ReviewChanges.hintPrev": "Naar Vorige Wijziging",
|
"Common.Views.ReviewChanges.hintPrev": "Naar Vorige Wijziging",
|
||||||
|
"Common.Views.ReviewChanges.strFast": "Snel",
|
||||||
|
"Common.Views.ReviewChanges.strFastDesc": "Real-time samenwerken. Alle wijzigingen worden automatisch opgeslagen.",
|
||||||
|
"Common.Views.ReviewChanges.strStrict": "Strikt",
|
||||||
|
"Common.Views.ReviewChanges.strStrictDesc": "Gebruik de 'Opslaan' knop om de wijzigingen van u en andere te synchroniseren.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Huidige wijziging accepteren",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Huidige wijziging accepteren",
|
||||||
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Zet samenwerkings modus",
|
||||||
|
"Common.Views.ReviewChanges.tipHistory": "Toon versie geschiedenis",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Huidige wijziging afwijzen",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Huidige wijziging afwijzen",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Wijzigingen Bijhouden",
|
"Common.Views.ReviewChanges.tipReview": "Wijzigingen Bijhouden",
|
||||||
"Common.Views.ReviewChanges.tipReviewView": "Selecteer de modus waarin u de veranderingen weer wilt laten geven",
|
"Common.Views.ReviewChanges.tipReviewView": "Selecteer de modus waarin u de veranderingen weer wilt laten geven",
|
||||||
"Common.Views.ReviewChanges.tipSetDocLang": "Taal van Document Instellen",
|
"Common.Views.ReviewChanges.tipSetDocLang": "Taal van Document Instellen",
|
||||||
"Common.Views.ReviewChanges.tipSetSpelling": "Spellingcontrole",
|
"Common.Views.ReviewChanges.tipSetSpelling": "Spellingcontrole",
|
||||||
|
"Common.Views.ReviewChanges.tipSharing": "Toegangsrechten documenten beheren",
|
||||||
"Common.Views.ReviewChanges.txtAccept": "Accepteren",
|
"Common.Views.ReviewChanges.txtAccept": "Accepteren",
|
||||||
"Common.Views.ReviewChanges.txtAcceptAll": "Alle wijzigingen accepteren",
|
"Common.Views.ReviewChanges.txtAcceptAll": "Alle wijzigingen accepteren",
|
||||||
"Common.Views.ReviewChanges.txtAcceptChanges": "Wijzigingen Accepteren",
|
"Common.Views.ReviewChanges.txtAcceptChanges": "Wijzigingen Accepteren",
|
||||||
"Common.Views.ReviewChanges.txtAcceptCurrent": "Huidige wijziging accepteren",
|
"Common.Views.ReviewChanges.txtAcceptCurrent": "Huidige wijziging accepteren",
|
||||||
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Sluiten",
|
"Common.Views.ReviewChanges.txtClose": "Sluiten",
|
||||||
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Modus Gezamenlijk bewerken",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Taal",
|
"Common.Views.ReviewChanges.txtDocLang": "Taal",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Alle veranderingen geaccepteerd (Voorbeeld)",
|
"Common.Views.ReviewChanges.txtFinal": "Alle veranderingen geaccepteerd (Voorbeeld)",
|
||||||
|
"Common.Views.ReviewChanges.txtFinalCap": "Einde",
|
||||||
|
"Common.Views.ReviewChanges.txtHistory": "Versie geschiedenis",
|
||||||
"Common.Views.ReviewChanges.txtMarkup": "Alle veranderingen (Bewerken)",
|
"Common.Views.ReviewChanges.txtMarkup": "Alle veranderingen (Bewerken)",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
|
||||||
"Common.Views.ReviewChanges.txtNext": "Naar volgende wijziging",
|
"Common.Views.ReviewChanges.txtNext": "Naar volgende wijziging",
|
||||||
"Common.Views.ReviewChanges.txtOriginal": "Alle veranderingen afgekeurd (Voorbeeld)",
|
"Common.Views.ReviewChanges.txtOriginal": "Alle veranderingen afgekeurd (Voorbeeld)",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginalCap": "Origineel",
|
||||||
"Common.Views.ReviewChanges.txtPrev": "Naar vorige wijziging",
|
"Common.Views.ReviewChanges.txtPrev": "Naar vorige wijziging",
|
||||||
"Common.Views.ReviewChanges.txtReject": "Afwijzen",
|
"Common.Views.ReviewChanges.txtReject": "Afwijzen",
|
||||||
"Common.Views.ReviewChanges.txtRejectAll": "Alle wijzigingen afwijzen",
|
"Common.Views.ReviewChanges.txtRejectAll": "Alle wijzigingen afwijzen",
|
||||||
"Common.Views.ReviewChanges.txtRejectChanges": "Wijzigingen Afwijzen",
|
"Common.Views.ReviewChanges.txtRejectChanges": "Wijzigingen Afwijzen",
|
||||||
"Common.Views.ReviewChanges.txtRejectCurrent": "Huidige wijziging afwijzen",
|
"Common.Views.ReviewChanges.txtRejectCurrent": "Huidige wijziging afwijzen",
|
||||||
|
"Common.Views.ReviewChanges.txtSharing": "Delen",
|
||||||
"Common.Views.ReviewChanges.txtSpelling": "Spellingcontrole",
|
"Common.Views.ReviewChanges.txtSpelling": "Spellingcontrole",
|
||||||
"Common.Views.ReviewChanges.txtTurnon": "Wijzigingen Bijhouden",
|
"Common.Views.ReviewChanges.txtTurnon": "Wijzigingen Bijhouden",
|
||||||
"Common.Views.ReviewChanges.txtView": "Weergavemodus",
|
"Common.Views.ReviewChanges.txtView": "Weergavemodus",
|
||||||
|
@ -227,6 +267,32 @@
|
||||||
"Common.Views.ReviewChangesDialog.txtReject": "Afkeuren",
|
"Common.Views.ReviewChangesDialog.txtReject": "Afkeuren",
|
||||||
"Common.Views.ReviewChangesDialog.txtRejectAll": "Alle Wijzigingen Afwijzen",
|
"Common.Views.ReviewChangesDialog.txtRejectAll": "Alle Wijzigingen Afwijzen",
|
||||||
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Huidige Wijziging Afwijzen",
|
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Huidige Wijziging Afwijzen",
|
||||||
|
"Common.Views.SignDialog.cancelButtonText": "Annuleren",
|
||||||
|
"Common.Views.SignDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.SignDialog.textBold": "Vet",
|
||||||
|
"Common.Views.SignDialog.textCertificate": "Certificaat",
|
||||||
|
"Common.Views.SignDialog.textChange": "Wijzigen",
|
||||||
|
"Common.Views.SignDialog.textInputName": "Naam ondertekenaar invoeren",
|
||||||
|
"Common.Views.SignDialog.textItalic": "Cursief",
|
||||||
|
"Common.Views.SignDialog.textPurpose": "Doel voor het ondertekenen van dit document",
|
||||||
|
"Common.Views.SignDialog.textSelectImage": "Selecteer afbeelding",
|
||||||
|
"Common.Views.SignDialog.textSignature": "Handtekening lijkt op",
|
||||||
|
"Common.Views.SignDialog.textTitle": "Onderteken document",
|
||||||
|
"Common.Views.SignDialog.textUseImage": "of click 'Selecteer afbeelding' om een afbeelding als handtekening te gebruiken",
|
||||||
|
"Common.Views.SignDialog.textValid": "Geldig van %1 tot %2",
|
||||||
|
"Common.Views.SignDialog.tipFontName": "Lettertype",
|
||||||
|
"Common.Views.SignDialog.tipFontSize": "Tekengrootte",
|
||||||
|
"Common.Views.SignSettingsDialog.cancelButtonText": "Annuleren",
|
||||||
|
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.SignSettingsDialog.textAllowComment": "Sta ondertekenaar toe commentaar toe te voegen in het handtekening venster.",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfo": "Ondertekenaar info",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoName": "Naam",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoTitle": "Ondertekenaar titel",
|
||||||
|
"Common.Views.SignSettingsDialog.textInstructions": "Instructies voor ondertekenaar",
|
||||||
|
"Common.Views.SignSettingsDialog.textShowDate": "Toon signeer datum in handtekening regel",
|
||||||
|
"Common.Views.SignSettingsDialog.textTitle": "Handtekening instellingen",
|
||||||
|
"Common.Views.SignSettingsDialog.txtEmpty": "Dit veld is vereist",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "Alle niet-opgeslagen wijzigingen in dit document zullen verloren gaan.<br/> Klik op \"Annuleren\" en dan op \"Opslaan\" om de wijzigingen op te slaan. Klik \"OK\" om de wijzigingen te negeren.",
|
"DE.Controllers.LeftMenu.leavePageText": "Alle niet-opgeslagen wijzigingen in dit document zullen verloren gaan.<br/> Klik op \"Annuleren\" en dan op \"Opslaan\" om de wijzigingen op te slaan. Klik \"OK\" om de wijzigingen te negeren.",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Naamloos document",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Naamloos document",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Waarschuwing",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Waarschuwing",
|
||||||
|
@ -255,6 +321,7 @@
|
||||||
"DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.",
|
"DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Foutcode: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Foutcode: %1",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "Het document is beschermd met een wachtwoord en kan niet worden geopend.",
|
"DE.Controllers.Main.errorFilePassProtect": "Het document is beschermd met een wachtwoord en kan niet worden geopend.",
|
||||||
|
"DE.Controllers.Main.errorForceSave": "Er is een fout ontstaan bij het opslaan van het bestand. Gebruik de 'Download als' knop om het bestand op te slaan op uw computer of probeer het later nog eens.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor",
|
"DE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen",
|
"DE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Laden mislukt",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Laden mislukt",
|
||||||
|
@ -309,28 +376,42 @@
|
||||||
"DE.Controllers.Main.textCloseTip": "Klik om de tip te sluiten",
|
"DE.Controllers.Main.textCloseTip": "Klik om de tip te sluiten",
|
||||||
"DE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop",
|
"DE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Document wordt geladen",
|
"DE.Controllers.Main.textLoadingDocument": "Document wordt geladen",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "Open source-versie ONLYOFFICE",
|
"DE.Controllers.Main.textNoLicenseTitle": "Only Office verbindingslimiet",
|
||||||
"DE.Controllers.Main.textShape": "Vorm",
|
"DE.Controllers.Main.textShape": "Vorm",
|
||||||
"DE.Controllers.Main.textStrict": "Strikte modus",
|
"DE.Controllers.Main.textStrict": "Strikte modus",
|
||||||
"DE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.<br>Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.",
|
"DE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.<br>Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.",
|
||||||
"DE.Controllers.Main.titleLicenseExp": "Licentie vervallen",
|
"DE.Controllers.Main.titleLicenseExp": "Licentie vervallen",
|
||||||
"DE.Controllers.Main.titleServerVersion": "Editor bijgewerkt",
|
"DE.Controllers.Main.titleServerVersion": "Editor bijgewerkt",
|
||||||
"DE.Controllers.Main.titleUpdateVersion": "Versie gewijzigd",
|
"DE.Controllers.Main.titleUpdateVersion": "Versie gewijzigd",
|
||||||
|
"DE.Controllers.Main.txtAbove": "Boven",
|
||||||
"DE.Controllers.Main.txtArt": "Hier tekst invoeren",
|
"DE.Controllers.Main.txtArt": "Hier tekst invoeren",
|
||||||
"DE.Controllers.Main.txtBasicShapes": "Basisvormen",
|
"DE.Controllers.Main.txtBasicShapes": "Basisvormen",
|
||||||
|
"DE.Controllers.Main.txtBelow": "Onder",
|
||||||
|
"DE.Controllers.Main.txtBookmarkError": "Fout! Bladwijzer is niet gedefinieerd.",
|
||||||
"DE.Controllers.Main.txtButtons": "Knoppen",
|
"DE.Controllers.Main.txtButtons": "Knoppen",
|
||||||
"DE.Controllers.Main.txtCallouts": "Callouts",
|
"DE.Controllers.Main.txtCallouts": "Callouts",
|
||||||
"DE.Controllers.Main.txtCharts": "Grafieken",
|
"DE.Controllers.Main.txtCharts": "Grafieken",
|
||||||
|
"DE.Controllers.Main.txtCurrentDocument": "Huidig document",
|
||||||
"DE.Controllers.Main.txtDiagramTitle": "Grafiektitel",
|
"DE.Controllers.Main.txtDiagramTitle": "Grafiektitel",
|
||||||
"DE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...",
|
"DE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...",
|
||||||
"DE.Controllers.Main.txtErrorLoadHistory": "Laden historie mislukt",
|
"DE.Controllers.Main.txtErrorLoadHistory": "Laden historie mislukt",
|
||||||
|
"DE.Controllers.Main.txtEvenPage": "Even pagina",
|
||||||
"DE.Controllers.Main.txtFiguredArrows": "Pijlvormen",
|
"DE.Controllers.Main.txtFiguredArrows": "Pijlvormen",
|
||||||
|
"DE.Controllers.Main.txtFirstPage": "Eerste pagina",
|
||||||
|
"DE.Controllers.Main.txtFooter": "Voettekst",
|
||||||
|
"DE.Controllers.Main.txtHeader": "Koptekst",
|
||||||
"DE.Controllers.Main.txtLines": "Lijnen",
|
"DE.Controllers.Main.txtLines": "Lijnen",
|
||||||
"DE.Controllers.Main.txtMath": "Wiskunde",
|
"DE.Controllers.Main.txtMath": "Wiskunde",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "U hebt updates",
|
"DE.Controllers.Main.txtNeedSynchronize": "U hebt updates",
|
||||||
|
"DE.Controllers.Main.txtNoTableOfContents": "Geen regels voor de inhoudsopgave gevonden",
|
||||||
|
"DE.Controllers.Main.txtOddPage": "Oneven pagina",
|
||||||
|
"DE.Controllers.Main.txtOnPage": "op pagina",
|
||||||
"DE.Controllers.Main.txtRectangles": "Rechthoeken",
|
"DE.Controllers.Main.txtRectangles": "Rechthoeken",
|
||||||
|
"DE.Controllers.Main.txtSameAsPrev": "Zelfde als vorige",
|
||||||
|
"DE.Controllers.Main.txtSection": "-Sectie",
|
||||||
"DE.Controllers.Main.txtSeries": "Serie",
|
"DE.Controllers.Main.txtSeries": "Serie",
|
||||||
"DE.Controllers.Main.txtStarsRibbons": "Sterren en linten",
|
"DE.Controllers.Main.txtStarsRibbons": "Sterren en linten",
|
||||||
|
"DE.Controllers.Main.txtStyle_footnote_text": "Voetnoot tekst",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_1": "Kop 1",
|
"DE.Controllers.Main.txtStyle_Heading_1": "Kop 1",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_2": "Kop 2",
|
"DE.Controllers.Main.txtStyle_Heading_2": "Kop 2",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_3": "Kop 3",
|
"DE.Controllers.Main.txtStyle_Heading_3": "Kop 3",
|
||||||
|
@ -347,6 +428,7 @@
|
||||||
"DE.Controllers.Main.txtStyle_Quote": "Citaat",
|
"DE.Controllers.Main.txtStyle_Quote": "Citaat",
|
||||||
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitel",
|
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitel",
|
||||||
"DE.Controllers.Main.txtStyle_Title": "Titel",
|
"DE.Controllers.Main.txtStyle_Title": "Titel",
|
||||||
|
"DE.Controllers.Main.txtTableOfContents": "Inhoudsopgave",
|
||||||
"DE.Controllers.Main.txtXAxis": "X-as",
|
"DE.Controllers.Main.txtXAxis": "X-as",
|
||||||
"DE.Controllers.Main.txtYAxis": "Y-as",
|
"DE.Controllers.Main.txtYAxis": "Y-as",
|
||||||
"DE.Controllers.Main.unknownErrorText": "Onbekende fout.",
|
"DE.Controllers.Main.unknownErrorText": "Onbekende fout.",
|
||||||
|
@ -359,8 +441,11 @@
|
||||||
"DE.Controllers.Main.warnBrowserIE9": "Met IE9 heeft de toepassing beperkte mogelijkheden. Gebruik IE10 of hoger.",
|
"DE.Controllers.Main.warnBrowserIE9": "Met IE9 heeft de toepassing beperkte mogelijkheden. Gebruik IE10 of hoger.",
|
||||||
"DE.Controllers.Main.warnBrowserZoom": "De huidige zoominstelling van uw browser wordt niet ondersteund. Zet de zoominstelling terug op de standaardwaarde door op Ctrl+0 te drukken.",
|
"DE.Controllers.Main.warnBrowserZoom": "De huidige zoominstelling van uw browser wordt niet ondersteund. Zet de zoominstelling terug op de standaardwaarde door op Ctrl+0 te drukken.",
|
||||||
"DE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.<br>Werk uw licentie bij en vernieuw de pagina.",
|
"DE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.<br>Werk uw licentie bij en vernieuw de pagina.",
|
||||||
"DE.Controllers.Main.warnNoLicense": "U gebruikt een Open source-versie van ONLYOFFICE. In die versie geldt voor het aantal gelijktijdige verbindingen met de documentserver een limiet van 20 verbindingen.<br>Als u er meer nodig hebt, kunt u overwegen een commerciële licentie aan te schaffen.",
|
"DE.Controllers.Main.warnNoLicense": "Deze versie van Only Office bevat limieten voor het aantal gelijktijdige gebruikers.<br>Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.",
|
||||||
|
"DE.Controllers.Main.warnNoLicenseUsers": "Deze versie van Only Office bevat limieten voor het aantal gelijktijdige gebruikers.<br>Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.",
|
"DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.",
|
||||||
|
"DE.Controllers.Navigation.txtBeginning": "Begin van het document",
|
||||||
|
"DE.Controllers.Navigation.txtGotoBeginning": "Ga naar het begin van het document",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Er zijn nieuwe wijzigingen bijgehouden",
|
"DE.Controllers.Statusbar.textHasChanges": "Er zijn nieuwe wijzigingen bijgehouden",
|
||||||
"DE.Controllers.Statusbar.textTrackChanges": "Het document is geopend met de modus 'Wijzigingen bijhouden' geactiveerd",
|
"DE.Controllers.Statusbar.textTrackChanges": "Het document is geopend met de modus 'Wijzigingen bijhouden' geactiveerd",
|
||||||
"DE.Controllers.Statusbar.tipReview": "Wijzigingen Bijhouden",
|
"DE.Controllers.Statusbar.tipReview": "Wijzigingen Bijhouden",
|
||||||
|
@ -700,6 +785,18 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Verticale ellips",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Verticale ellips",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "Aan pagina aanpassen",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "Aan breedte aanpassen",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Toevoegen",
|
||||||
|
"DE.Views.BookmarksDialog.textBookmarkName": "Bladwijzer naam",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Sluiten",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Verwijder",
|
||||||
|
"DE.Views.BookmarksDialog.textGoto": "Ga naar",
|
||||||
|
"DE.Views.BookmarksDialog.textHidden": "Verborgen bladwijzers",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "Locatie",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "Naam",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "Sorteren op",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Bladwijzers",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
"DE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
||||||
"DE.Views.ChartSettings.textArea": "Vlak",
|
"DE.Views.ChartSettings.textArea": "Vlak",
|
||||||
"DE.Views.ChartSettings.textBar": "Staaf",
|
"DE.Views.ChartSettings.textBar": "Staaf",
|
||||||
|
@ -726,6 +823,14 @@
|
||||||
"DE.Views.ChartSettings.txtTight": "Strak",
|
"DE.Views.ChartSettings.txtTight": "Strak",
|
||||||
"DE.Views.ChartSettings.txtTitle": "Grafiek",
|
"DE.Views.ChartSettings.txtTitle": "Grafiek",
|
||||||
"DE.Views.ChartSettings.txtTopAndBottom": "Boven en onder",
|
"DE.Views.ChartSettings.txtTopAndBottom": "Boven en onder",
|
||||||
|
"DE.Views.ControlSettingsDialog.cancelButtonText": "Annuleren",
|
||||||
|
"DE.Views.ControlSettingsDialog.okButtonText": "OK",
|
||||||
|
"DE.Views.ControlSettingsDialog.textLock": "Vergrendeling",
|
||||||
|
"DE.Views.ControlSettingsDialog.textName": "Titel",
|
||||||
|
"DE.Views.ControlSettingsDialog.textTag": "Tag",
|
||||||
|
"DE.Views.ControlSettingsDialog.textTitle": "Inhoud beheer instellingen",
|
||||||
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "Inhoud beheer kan niet verwijderd worden",
|
||||||
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "Inhoud kan niet aangepast worden",
|
||||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Annuleren",
|
"DE.Views.CustomColumnsDialog.cancelButtonText": "Annuleren",
|
||||||
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
"DE.Views.CustomColumnsDialog.okButtonText": "OK",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "Aantal kolommen",
|
"DE.Views.CustomColumnsDialog.textColumns": "Aantal kolommen",
|
||||||
|
@ -792,6 +897,10 @@
|
||||||
"DE.Views.DocumentHolder.spellcheckText": "Spellingcontrole",
|
"DE.Views.DocumentHolder.spellcheckText": "Spellingcontrole",
|
||||||
"DE.Views.DocumentHolder.splitCellsText": "Cel splitsen...",
|
"DE.Views.DocumentHolder.splitCellsText": "Cel splitsen...",
|
||||||
"DE.Views.DocumentHolder.splitCellTitleText": "Cel splitsen",
|
"DE.Views.DocumentHolder.splitCellTitleText": "Cel splitsen",
|
||||||
|
"DE.Views.DocumentHolder.strDelete": "Handtekening verwijderen",
|
||||||
|
"DE.Views.DocumentHolder.strDetails": "Handtekening details",
|
||||||
|
"DE.Views.DocumentHolder.strSetup": "Handtekening opzet",
|
||||||
|
"DE.Views.DocumentHolder.strSign": "Onderteken",
|
||||||
"DE.Views.DocumentHolder.styleText": "Opmaak als stijl",
|
"DE.Views.DocumentHolder.styleText": "Opmaak als stijl",
|
||||||
"DE.Views.DocumentHolder.tableText": "Tabel",
|
"DE.Views.DocumentHolder.tableText": "Tabel",
|
||||||
"DE.Views.DocumentHolder.textAlign": "Uitlijnen",
|
"DE.Views.DocumentHolder.textAlign": "Uitlijnen",
|
||||||
|
@ -800,19 +909,36 @@
|
||||||
"DE.Views.DocumentHolder.textArrangeBackward": "Naar Achteren Verplaatsen",
|
"DE.Views.DocumentHolder.textArrangeBackward": "Naar Achteren Verplaatsen",
|
||||||
"DE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen",
|
"DE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen",
|
||||||
"DE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen",
|
"DE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen",
|
||||||
|
"DE.Views.DocumentHolder.textContentControls": "Inhoud beheer",
|
||||||
"DE.Views.DocumentHolder.textCopy": "Kopiëren",
|
"DE.Views.DocumentHolder.textCopy": "Kopiëren",
|
||||||
"DE.Views.DocumentHolder.textCut": "Knippen",
|
"DE.Views.DocumentHolder.textCut": "Knippen",
|
||||||
|
"DE.Views.DocumentHolder.textDistributeCols": "Kolommen verdelen",
|
||||||
|
"DE.Views.DocumentHolder.textDistributeRows": "Rijen verdelen",
|
||||||
|
"DE.Views.DocumentHolder.textEditControls": "Inhoud beheer instellingen",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Rand tekstterugloop bewerken",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Rand tekstterugloop bewerken",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "Van bestand",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "Van URL",
|
||||||
|
"DE.Views.DocumentHolder.textNest": "Geneste tabel",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "Volgende pagina",
|
"DE.Views.DocumentHolder.textNextPage": "Volgende pagina",
|
||||||
"DE.Views.DocumentHolder.textPaste": "Plakken",
|
"DE.Views.DocumentHolder.textPaste": "Plakken",
|
||||||
"DE.Views.DocumentHolder.textPrevPage": "Vorige pagina",
|
"DE.Views.DocumentHolder.textPrevPage": "Vorige pagina",
|
||||||
|
"DE.Views.DocumentHolder.textRefreshField": "Ververs veld",
|
||||||
|
"DE.Views.DocumentHolder.textRemove": "Verwijderen",
|
||||||
|
"DE.Views.DocumentHolder.textRemoveControl": "Inhoud beheer verwijderen",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "Afbeelding vervangen",
|
||||||
|
"DE.Views.DocumentHolder.textSettings": "Instellingen",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Onder uitlijnen",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Onder uitlijnen",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Midden uitlijnen",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Midden uitlijnen",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignLeft": "Links uitlijnen",
|
"DE.Views.DocumentHolder.textShapeAlignLeft": "Links uitlijnen",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignMiddle": "Midden uitlijnen",
|
"DE.Views.DocumentHolder.textShapeAlignMiddle": "Midden uitlijnen",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignRight": "Rechts uitlijnen",
|
"DE.Views.DocumentHolder.textShapeAlignRight": "Rechts uitlijnen",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignTop": "Boven uitlijnen",
|
"DE.Views.DocumentHolder.textShapeAlignTop": "Boven uitlijnen",
|
||||||
|
"DE.Views.DocumentHolder.textTOC": "Inhoudsopgave",
|
||||||
|
"DE.Views.DocumentHolder.textTOCSettings": "Inhoudsopgave instellingen",
|
||||||
"DE.Views.DocumentHolder.textUndo": "Ongedaan maken",
|
"DE.Views.DocumentHolder.textUndo": "Ongedaan maken",
|
||||||
|
"DE.Views.DocumentHolder.textUpdateAll": "Volledige tabel verversen",
|
||||||
|
"DE.Views.DocumentHolder.textUpdatePages": "Alleen paginanummers verversen",
|
||||||
|
"DE.Views.DocumentHolder.textUpdateTOC": "Inhoudsopgave verversen",
|
||||||
"DE.Views.DocumentHolder.textWrap": "Terugloopstijl",
|
"DE.Views.DocumentHolder.textWrap": "Terugloopstijl",
|
||||||
"DE.Views.DocumentHolder.tipIsLocked": "Dit element wordt op dit moment bewerkt door een andere gebruiker.",
|
"DE.Views.DocumentHolder.tipIsLocked": "Dit element wordt op dit moment bewerkt door een andere gebruiker.",
|
||||||
"DE.Views.DocumentHolder.txtAddBottom": "Onderrand toevoegen",
|
"DE.Views.DocumentHolder.txtAddBottom": "Onderrand toevoegen",
|
||||||
|
@ -872,6 +998,8 @@
|
||||||
"DE.Views.DocumentHolder.txtMatchBrackets": "Haakjes aanpassen aan hoogte argumenten",
|
"DE.Views.DocumentHolder.txtMatchBrackets": "Haakjes aanpassen aan hoogte argumenten",
|
||||||
"DE.Views.DocumentHolder.txtMatrixAlign": "Matrixuitlijning",
|
"DE.Views.DocumentHolder.txtMatrixAlign": "Matrixuitlijning",
|
||||||
"DE.Views.DocumentHolder.txtOverbar": "Streep boven tekst",
|
"DE.Views.DocumentHolder.txtOverbar": "Streep boven tekst",
|
||||||
|
"DE.Views.DocumentHolder.txtOverwriteCells": "Cellen overschrijven",
|
||||||
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling",
|
"DE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "Limiet verwijderen",
|
"DE.Views.DocumentHolder.txtRemLimit": "Limiet verwijderen",
|
||||||
|
@ -950,6 +1078,7 @@
|
||||||
"DE.Views.FileMenu.btnHistoryCaption": "Versiehistorie",
|
"DE.Views.FileMenu.btnHistoryCaption": "Versiehistorie",
|
||||||
"DE.Views.FileMenu.btnInfoCaption": "Documentinfo...",
|
"DE.Views.FileMenu.btnInfoCaption": "Documentinfo...",
|
||||||
"DE.Views.FileMenu.btnPrintCaption": "Afdrukken",
|
"DE.Views.FileMenu.btnPrintCaption": "Afdrukken",
|
||||||
|
"DE.Views.FileMenu.btnProtectCaption": "Beveilig",
|
||||||
"DE.Views.FileMenu.btnRecentFilesCaption": "Recente openen...",
|
"DE.Views.FileMenu.btnRecentFilesCaption": "Recente openen...",
|
||||||
"DE.Views.FileMenu.btnRenameCaption": "Hernoemen...",
|
"DE.Views.FileMenu.btnRenameCaption": "Hernoemen...",
|
||||||
"DE.Views.FileMenu.btnReturnCaption": "Terug naar document",
|
"DE.Views.FileMenu.btnReturnCaption": "Terug naar document",
|
||||||
|
@ -979,6 +1108,17 @@
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Woorden",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Woorden",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Toegangsrechten wijzigen",
|
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Toegangsrechten wijzigen",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen met rechten",
|
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen met rechten",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Waarschuwing",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Met wachtwoord",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Beveilig document",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Met handtekening",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Document bewerken",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekeningen verwijderd worden.<br>Weet u zeker dat u door wilt gaan?",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Dit document is beveiligd met een wachtwoord",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Dit document moet ondertekend worden",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Geldige handtekeningen zijn toegevoegd aan dit document. Dit document is beveiligd tegen aanpassingen.",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Een of meer digitale handtekeningen in dit document zijn niet geldig of konden niet worden geverifieerd. Dit document is beveiligd tegen aanpassingen.",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "Toon handtekeningen",
|
||||||
"DE.Views.FileMenuPanels.Settings.okButtonText": "Toepassen",
|
"DE.Views.FileMenuPanels.Settings.okButtonText": "Toepassen",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Uitlijningshulplijnen inschakelen",
|
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Uitlijningshulplijnen inschakelen",
|
||||||
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoHerstel inschakelen",
|
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoHerstel inschakelen",
|
||||||
|
@ -1023,26 +1163,37 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "als Windows",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "als Windows",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomCenter": "Middenonder",
|
"DE.Views.HeaderFooterSettings.textBottomCenter": "Middenonder",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomLeft": "Linksonder",
|
"DE.Views.HeaderFooterSettings.textBottomLeft": "Linksonder",
|
||||||
|
"DE.Views.HeaderFooterSettings.textBottomPage": "Onderkant pagina",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomRight": "Rechtsonder",
|
"DE.Views.HeaderFooterSettings.textBottomRight": "Rechtsonder",
|
||||||
"DE.Views.HeaderFooterSettings.textDiffFirst": "Eerste pagina afwijkend",
|
"DE.Views.HeaderFooterSettings.textDiffFirst": "Eerste pagina afwijkend",
|
||||||
"DE.Views.HeaderFooterSettings.textDiffOdd": "Even en oneven pagina's afwijkend",
|
"DE.Views.HeaderFooterSettings.textDiffOdd": "Even en oneven pagina's afwijkend",
|
||||||
|
"DE.Views.HeaderFooterSettings.textFrom": "Beginnen bij",
|
||||||
"DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Voettekst vanaf onder",
|
"DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Voettekst vanaf onder",
|
||||||
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "Koptekst vanaf boven",
|
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "Koptekst vanaf boven",
|
||||||
|
"DE.Views.HeaderFooterSettings.textInsertCurrent": "Invoegen op huidige positie",
|
||||||
"DE.Views.HeaderFooterSettings.textOptions": "Opties",
|
"DE.Views.HeaderFooterSettings.textOptions": "Opties",
|
||||||
"DE.Views.HeaderFooterSettings.textPageNum": "Paginanummer invoegen",
|
"DE.Views.HeaderFooterSettings.textPageNum": "Paginanummer invoegen",
|
||||||
|
"DE.Views.HeaderFooterSettings.textPageNumbering": "Paginanummering",
|
||||||
"DE.Views.HeaderFooterSettings.textPosition": "Positie",
|
"DE.Views.HeaderFooterSettings.textPosition": "Positie",
|
||||||
|
"DE.Views.HeaderFooterSettings.textPrev": "Doorgaan vanuit volgende sectie",
|
||||||
"DE.Views.HeaderFooterSettings.textSameAs": "Koppelen aan vorige",
|
"DE.Views.HeaderFooterSettings.textSameAs": "Koppelen aan vorige",
|
||||||
"DE.Views.HeaderFooterSettings.textTopCenter": "Middenboven",
|
"DE.Views.HeaderFooterSettings.textTopCenter": "Middenboven",
|
||||||
"DE.Views.HeaderFooterSettings.textTopLeft": "Linksboven",
|
"DE.Views.HeaderFooterSettings.textTopLeft": "Linksboven",
|
||||||
|
"DE.Views.HeaderFooterSettings.textTopPage": "Bovenaan de pagina",
|
||||||
"DE.Views.HeaderFooterSettings.textTopRight": "Rechtsboven",
|
"DE.Views.HeaderFooterSettings.textTopRight": "Rechtsboven",
|
||||||
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annuleren",
|
"DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Annuleren",
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Geselecteerd tekstfragment",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "Geselecteerd tekstfragment",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Weergeven",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Weergeven",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "Externe koppeling",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textInternal": "Plaast in document",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Instellingen hyperlink",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "Instellingen hyperlink",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Tekst van Scherminfo",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Tekst van Scherminfo",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "Koppelen aan",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "Koppelen aan",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Begin van het document",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Bladwijzers",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Dit veld is vereist",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Dit veld is vereist",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtHeadings": "Koppen",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
"DE.Views.ImageSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
||||||
"DE.Views.ImageSettings.textEdit": "Bewerken",
|
"DE.Views.ImageSettings.textEdit": "Bewerken",
|
||||||
|
@ -1140,6 +1291,26 @@
|
||||||
"DE.Views.LeftMenu.tipSupport": "Feedback en Support",
|
"DE.Views.LeftMenu.tipSupport": "Feedback en Support",
|
||||||
"DE.Views.LeftMenu.tipTitles": "Titels",
|
"DE.Views.LeftMenu.tipTitles": "Titels",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "ONTWIKKELAARSMODUS",
|
"DE.Views.LeftMenu.txtDeveloper": "ONTWIKKELAARSMODUS",
|
||||||
|
"DE.Views.LeftMenu.txtTrial": "TEST MODUS",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "Bladwijzer",
|
||||||
|
"DE.Views.Links.capBtnContentsUpdate": "Verversen",
|
||||||
|
"DE.Views.Links.capBtnInsContents": "Inhoudsopgave",
|
||||||
|
"DE.Views.Links.capBtnInsFootnote": "Voetnoot",
|
||||||
|
"DE.Views.Links.capBtnInsLink": "Hyperlink",
|
||||||
|
"DE.Views.Links.confirmDeleteFootnotes": "Wilt u alle voetnoten verwijderen?",
|
||||||
|
"DE.Views.Links.mniDelFootnote": "Alle voetnoten verwijderen",
|
||||||
|
"DE.Views.Links.mniInsFootnote": "Voetnoot invoegen",
|
||||||
|
"DE.Views.Links.mniNoteSettings": "Instellingen voor notities",
|
||||||
|
"DE.Views.Links.textContentsRemove": "Inhoudsopgave verwijderen",
|
||||||
|
"DE.Views.Links.textContentsSettings": "Instellingen",
|
||||||
|
"DE.Views.Links.textGotoFootnote": "Naar voetnoten",
|
||||||
|
"DE.Views.Links.textUpdateAll": "Volledige tabel verversen",
|
||||||
|
"DE.Views.Links.textUpdatePages": "Alleen paginanummers verversen",
|
||||||
|
"DE.Views.Links.tipBookmarks": "Maak een bladwijzer",
|
||||||
|
"DE.Views.Links.tipContents": "Inhoudsopgave toevoegen",
|
||||||
|
"DE.Views.Links.tipContentsUpdate": "Inhoudsopgave verversen",
|
||||||
|
"DE.Views.Links.tipInsertHyperlink": "Hyperlink toevoegen",
|
||||||
|
"DE.Views.Links.tipNotes": "Voetnoten invoegen of bewerken",
|
||||||
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Annuleren",
|
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Annuleren",
|
||||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Verzenden",
|
"DE.Views.MailMergeEmailDlg.okButtonText": "Verzenden",
|
||||||
|
@ -1192,6 +1363,17 @@
|
||||||
"DE.Views.MailMergeSettings.txtPrev": "Naar vorige record",
|
"DE.Views.MailMergeSettings.txtPrev": "Naar vorige record",
|
||||||
"DE.Views.MailMergeSettings.txtUntitled": "Naamloos",
|
"DE.Views.MailMergeSettings.txtUntitled": "Naamloos",
|
||||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starten samenvoeging mislukt",
|
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starten samenvoeging mislukt",
|
||||||
|
"DE.Views.Navigation.txtCollapse": "Alles inklappen",
|
||||||
|
"DE.Views.Navigation.txtDemote": "Degraderen",
|
||||||
|
"DE.Views.Navigation.txtEmpty": "Dit document bevat geen koppen",
|
||||||
|
"DE.Views.Navigation.txtEmptyItem": "Lege koptekst",
|
||||||
|
"DE.Views.Navigation.txtExpand": "Alle uitbreiden",
|
||||||
|
"DE.Views.Navigation.txtExpandToLevel": "Uitbreiden tot niveau",
|
||||||
|
"DE.Views.Navigation.txtHeadingAfter": "Nieuwe kop na",
|
||||||
|
"DE.Views.Navigation.txtHeadingBefore": "Nieuwe kop voor",
|
||||||
|
"DE.Views.Navigation.txtNewHeading": "Nieuwe subkop",
|
||||||
|
"DE.Views.Navigation.txtPromote": "Promoveren",
|
||||||
|
"DE.Views.Navigation.txtSelect": "Selecteer inhoud",
|
||||||
"DE.Views.NoteSettingsDialog.textApply": "Toepassen",
|
"DE.Views.NoteSettingsDialog.textApply": "Toepassen",
|
||||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Wijzigingen toepassen op",
|
"DE.Views.NoteSettingsDialog.textApplyTo": "Wijzigingen toepassen op",
|
||||||
"DE.Views.NoteSettingsDialog.textCancel": "Annuleren",
|
"DE.Views.NoteSettingsDialog.textCancel": "Annuleren",
|
||||||
|
@ -1270,8 +1452,10 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tekenafstand",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tekenafstand",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standaardtabblad",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standaardtabblad",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effecten",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effecten",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "Geen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Positie",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Positie",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Verwijderen",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Verwijderen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alles verwijderen",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alles verwijderen",
|
||||||
|
@ -1299,6 +1483,7 @@
|
||||||
"DE.Views.RightMenu.txtMailMergeSettings": "Instellingen voor Afdruk samenvoegen",
|
"DE.Views.RightMenu.txtMailMergeSettings": "Instellingen voor Afdruk samenvoegen",
|
||||||
"DE.Views.RightMenu.txtParagraphSettings": "Alinea-instellingen",
|
"DE.Views.RightMenu.txtParagraphSettings": "Alinea-instellingen",
|
||||||
"DE.Views.RightMenu.txtShapeSettings": "Vorminstellingen",
|
"DE.Views.RightMenu.txtShapeSettings": "Vorminstellingen",
|
||||||
|
"DE.Views.RightMenu.txtSignatureSettings": "Handtekening instellingen",
|
||||||
"DE.Views.RightMenu.txtTableSettings": "Tabelinstellingen",
|
"DE.Views.RightMenu.txtTableSettings": "Tabelinstellingen",
|
||||||
"DE.Views.RightMenu.txtTextArtSettings": "TextArt-instellingen",
|
"DE.Views.RightMenu.txtTextArtSettings": "TextArt-instellingen",
|
||||||
"DE.Views.ShapeSettings.strBackground": "Achtergrondkleur",
|
"DE.Views.ShapeSettings.strBackground": "Achtergrondkleur",
|
||||||
|
@ -1351,6 +1536,21 @@
|
||||||
"DE.Views.ShapeSettings.txtTight": "Strak",
|
"DE.Views.ShapeSettings.txtTight": "Strak",
|
||||||
"DE.Views.ShapeSettings.txtTopAndBottom": "Boven en onder",
|
"DE.Views.ShapeSettings.txtTopAndBottom": "Boven en onder",
|
||||||
"DE.Views.ShapeSettings.txtWood": "Hout",
|
"DE.Views.ShapeSettings.txtWood": "Hout",
|
||||||
|
"DE.Views.SignatureSettings.notcriticalErrorTitle": "Waarschuwing",
|
||||||
|
"DE.Views.SignatureSettings.strDelete": "Handtekening verwijderen",
|
||||||
|
"DE.Views.SignatureSettings.strDetails": "Handtekening details",
|
||||||
|
"DE.Views.SignatureSettings.strInvalid": "Ongeldige handtekeningen",
|
||||||
|
"DE.Views.SignatureSettings.strRequested": "Gevraagde handtekeningen",
|
||||||
|
"DE.Views.SignatureSettings.strSetup": "Handtekening opzet",
|
||||||
|
"DE.Views.SignatureSettings.strSign": "Onderteken",
|
||||||
|
"DE.Views.SignatureSettings.strSignature": "Handtekening",
|
||||||
|
"DE.Views.SignatureSettings.strSigner": "Ondertekenaar",
|
||||||
|
"DE.Views.SignatureSettings.strValid": "Geldige handtekeningen",
|
||||||
|
"DE.Views.SignatureSettings.txtContinueEditing": "Hoe dan ook bewerken",
|
||||||
|
"DE.Views.SignatureSettings.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekeningen verwijderd worden.<br>Weet u zeker dat u door wilt gaan?",
|
||||||
|
"DE.Views.SignatureSettings.txtRequestedSignatures": "Dit document moet ondertekend worden",
|
||||||
|
"DE.Views.SignatureSettings.txtSigned": "Geldige handtekeningen zijn toegevoegd aan dit document. Dit document is beveiligd tegen aanpassingen.",
|
||||||
|
"DE.Views.SignatureSettings.txtSignedInvalid": "Een of meer digitale handtekeningen in dit document zijn niet geldig of konden niet worden geverifieerd. Dit document is beveiligd tegen aanpassingen.",
|
||||||
"DE.Views.Statusbar.goToPageText": "Naar pagina",
|
"DE.Views.Statusbar.goToPageText": "Naar pagina",
|
||||||
"DE.Views.Statusbar.pageIndexText": "Pagina {0} van {1}",
|
"DE.Views.Statusbar.pageIndexText": "Pagina {0} van {1}",
|
||||||
"DE.Views.Statusbar.tipFitPage": "Aan pagina aanpassen",
|
"DE.Views.Statusbar.tipFitPage": "Aan pagina aanpassen",
|
||||||
|
@ -1365,6 +1565,26 @@
|
||||||
"DE.Views.StyleTitleDialog.textTitle": "Titel",
|
"DE.Views.StyleTitleDialog.textTitle": "Titel",
|
||||||
"DE.Views.StyleTitleDialog.txtEmpty": "Dit veld is vereist",
|
"DE.Views.StyleTitleDialog.txtEmpty": "Dit veld is vereist",
|
||||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Veld mag niet leeg zijn",
|
"DE.Views.StyleTitleDialog.txtNotEmpty": "Veld mag niet leeg zijn",
|
||||||
|
"DE.Views.TableOfContentsSettings.cancelButtonText": "Annuleren",
|
||||||
|
"DE.Views.TableOfContentsSettings.okButtonText ": "OK",
|
||||||
|
"DE.Views.TableOfContentsSettings.strAlign": "Paginanummers rechts uitlijnen",
|
||||||
|
"DE.Views.TableOfContentsSettings.strLinks": "Inhoudsopgave als link gebruiken",
|
||||||
|
"DE.Views.TableOfContentsSettings.strShowPages": "Toon paginanummers",
|
||||||
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Maak inhoudsopgave van",
|
||||||
|
"DE.Views.TableOfContentsSettings.textLeader": "Leader",
|
||||||
|
"DE.Views.TableOfContentsSettings.textLevel": "Niveau",
|
||||||
|
"DE.Views.TableOfContentsSettings.textLevels": "Niveaus",
|
||||||
|
"DE.Views.TableOfContentsSettings.textNone": "Geen",
|
||||||
|
"DE.Views.TableOfContentsSettings.textRadioLevels": "Overzicht niveaus",
|
||||||
|
"DE.Views.TableOfContentsSettings.textRadioStyles": "Geselecteerde stijlen",
|
||||||
|
"DE.Views.TableOfContentsSettings.textStyle": "Stijl",
|
||||||
|
"DE.Views.TableOfContentsSettings.textStyles": "Stijlen",
|
||||||
|
"DE.Views.TableOfContentsSettings.textTitle": "Inhoudsopgave",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtClassic": "Klassiek",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtCurrent": "Huidig",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtModern": "Modern",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtSimple": "Simpel",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtStandard": "Standaard",
|
||||||
"DE.Views.TableSettings.deleteColumnText": "Kolom verwijderen",
|
"DE.Views.TableSettings.deleteColumnText": "Kolom verwijderen",
|
||||||
"DE.Views.TableSettings.deleteRowText": "Rij verwijderen",
|
"DE.Views.TableSettings.deleteRowText": "Rij verwijderen",
|
||||||
"DE.Views.TableSettings.deleteTableText": "Tabel verwijderen",
|
"DE.Views.TableSettings.deleteTableText": "Tabel verwijderen",
|
||||||
|
@ -1386,11 +1606,15 @@
|
||||||
"DE.Views.TableSettings.textBorderColor": "Kleur",
|
"DE.Views.TableSettings.textBorderColor": "Kleur",
|
||||||
"DE.Views.TableSettings.textBorders": "Randstijl",
|
"DE.Views.TableSettings.textBorders": "Randstijl",
|
||||||
"DE.Views.TableSettings.textCancel": "Annuleren",
|
"DE.Views.TableSettings.textCancel": "Annuleren",
|
||||||
|
"DE.Views.TableSettings.textCellSize": "Celgrootte",
|
||||||
"DE.Views.TableSettings.textColumns": "Kolommen",
|
"DE.Views.TableSettings.textColumns": "Kolommen",
|
||||||
|
"DE.Views.TableSettings.textDistributeCols": "Kolommen verdelen",
|
||||||
|
"DE.Views.TableSettings.textDistributeRows": "Rijen verdelen",
|
||||||
"DE.Views.TableSettings.textEdit": "Rijen en kolommen",
|
"DE.Views.TableSettings.textEdit": "Rijen en kolommen",
|
||||||
"DE.Views.TableSettings.textEmptyTemplate": "Geen sjablonen",
|
"DE.Views.TableSettings.textEmptyTemplate": "Geen sjablonen",
|
||||||
"DE.Views.TableSettings.textFirst": "Eerste",
|
"DE.Views.TableSettings.textFirst": "Eerste",
|
||||||
"DE.Views.TableSettings.textHeader": "Koptekst",
|
"DE.Views.TableSettings.textHeader": "Koptekst",
|
||||||
|
"DE.Views.TableSettings.textHeight": "Hoogte",
|
||||||
"DE.Views.TableSettings.textLast": "Laatste",
|
"DE.Views.TableSettings.textLast": "Laatste",
|
||||||
"DE.Views.TableSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
"DE.Views.TableSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
||||||
"DE.Views.TableSettings.textOK": "OK",
|
"DE.Views.TableSettings.textOK": "OK",
|
||||||
|
@ -1398,6 +1622,7 @@
|
||||||
"DE.Views.TableSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen",
|
"DE.Views.TableSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen",
|
||||||
"DE.Views.TableSettings.textTemplate": "Selecteren uit sjabloon",
|
"DE.Views.TableSettings.textTemplate": "Selecteren uit sjabloon",
|
||||||
"DE.Views.TableSettings.textTotal": "Totaal",
|
"DE.Views.TableSettings.textTotal": "Totaal",
|
||||||
|
"DE.Views.TableSettings.textWidth": "Breedte",
|
||||||
"DE.Views.TableSettings.tipAll": "Buitenrand en alle binnenlijnen instellen",
|
"DE.Views.TableSettings.tipAll": "Buitenrand en alle binnenlijnen instellen",
|
||||||
"DE.Views.TableSettings.tipBottom": "Alleen buitenrand onder instellen",
|
"DE.Views.TableSettings.tipBottom": "Alleen buitenrand onder instellen",
|
||||||
"DE.Views.TableSettings.tipInner": "Alleen binnenlijnen instellen",
|
"DE.Views.TableSettings.tipInner": "Alleen binnenlijnen instellen",
|
||||||
|
@ -1507,6 +1732,7 @@
|
||||||
"DE.Views.Toolbar.capBtnColumns": "Kolommen",
|
"DE.Views.Toolbar.capBtnColumns": "Kolommen",
|
||||||
"DE.Views.Toolbar.capBtnComment": "Opmerking",
|
"DE.Views.Toolbar.capBtnComment": "Opmerking",
|
||||||
"DE.Views.Toolbar.capBtnInsChart": "Grafiek",
|
"DE.Views.Toolbar.capBtnInsChart": "Grafiek",
|
||||||
|
"DE.Views.Toolbar.capBtnInsControls": "Inhoud beheer",
|
||||||
"DE.Views.Toolbar.capBtnInsDropcap": "Initiaal",
|
"DE.Views.Toolbar.capBtnInsDropcap": "Initiaal",
|
||||||
"DE.Views.Toolbar.capBtnInsEquation": "Vergelijking",
|
"DE.Views.Toolbar.capBtnInsEquation": "Vergelijking",
|
||||||
"DE.Views.Toolbar.capBtnInsHeader": "Kopteksten/voetteksten",
|
"DE.Views.Toolbar.capBtnInsHeader": "Kopteksten/voetteksten",
|
||||||
|
@ -1515,7 +1741,7 @@
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "Vorm",
|
"DE.Views.Toolbar.capBtnInsShape": "Vorm",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "Tabel",
|
"DE.Views.Toolbar.capBtnInsTable": "Tabel",
|
||||||
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
|
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
|
||||||
"DE.Views.Toolbar.capBtnInsTextbox": "Tekst",
|
"DE.Views.Toolbar.capBtnInsTextbox": "Tekstvak",
|
||||||
"DE.Views.Toolbar.capBtnMargins": "Marges",
|
"DE.Views.Toolbar.capBtnMargins": "Marges",
|
||||||
"DE.Views.Toolbar.capBtnPageOrient": "Oriëntatie ",
|
"DE.Views.Toolbar.capBtnPageOrient": "Oriëntatie ",
|
||||||
"DE.Views.Toolbar.capBtnPageSize": "Grootte",
|
"DE.Views.Toolbar.capBtnPageSize": "Grootte",
|
||||||
|
@ -1525,6 +1751,7 @@
|
||||||
"DE.Views.Toolbar.capImgGroup": "Groep",
|
"DE.Views.Toolbar.capImgGroup": "Groep",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "Tekstterugloop",
|
"DE.Views.Toolbar.capImgWrapping": "Tekstterugloop",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "Aangepaste tabel invoegen",
|
"DE.Views.Toolbar.mniCustomTable": "Aangepaste tabel invoegen",
|
||||||
|
"DE.Views.Toolbar.mniEditControls": "Beheer instellingen",
|
||||||
"DE.Views.Toolbar.mniEditDropCap": "Instellingen decoratieve initiaal",
|
"DE.Views.Toolbar.mniEditDropCap": "Instellingen decoratieve initiaal",
|
||||||
"DE.Views.Toolbar.mniEditFooter": "Voettekst bewerken",
|
"DE.Views.Toolbar.mniEditFooter": "Voettekst bewerken",
|
||||||
"DE.Views.Toolbar.mniEditHeader": "Koptekst bewerken",
|
"DE.Views.Toolbar.mniEditHeader": "Koptekst bewerken",
|
||||||
|
@ -1546,14 +1773,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Rechts",
|
"DE.Views.Toolbar.textColumnsRight": "Rechts",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Drie",
|
"DE.Views.Toolbar.textColumnsThree": "Drie",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Twee",
|
"DE.Views.Toolbar.textColumnsTwo": "Twee",
|
||||||
"DE.Views.Toolbar.textCompactView": "Compacte werkbalk weergeven",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Doorlopende pagina",
|
"DE.Views.Toolbar.textContPage": "Doorlopende pagina",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Even pagina",
|
"DE.Views.Toolbar.textEvenPage": "Even pagina",
|
||||||
"DE.Views.Toolbar.textFitPage": "Aan pagina aanpassen",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Aan breedte aanpassen",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Linialen verbergen",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Statusbalk verbergen",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Titelbalk verbergen",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "In marge",
|
"DE.Views.Toolbar.textInMargin": "In marge",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Invoegen kolomeinde",
|
"DE.Views.Toolbar.textInsColumnBreak": "Invoegen kolomeinde",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Aantal pagina's invoegen",
|
"DE.Views.Toolbar.textInsertPageCount": "Aantal pagina's invoegen",
|
||||||
|
@ -1578,8 +1799,11 @@
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Aangepaste marges",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Aangepaste marges",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Aangepast paginaformaat",
|
"DE.Views.Toolbar.textPageSizeCustom": "Aangepast paginaformaat",
|
||||||
"DE.Views.Toolbar.textPie": "Cirkel",
|
"DE.Views.Toolbar.textPie": "Cirkel",
|
||||||
|
"DE.Views.Toolbar.textPlainControl": "Platte tekst inhoud beheer toevoegen",
|
||||||
"DE.Views.Toolbar.textPoint": "Spreiding",
|
"DE.Views.Toolbar.textPoint": "Spreiding",
|
||||||
"DE.Views.Toolbar.textPortrait": "Staand",
|
"DE.Views.Toolbar.textPortrait": "Staand",
|
||||||
|
"DE.Views.Toolbar.textRemoveControl": "Inhoud beheer verwijderen",
|
||||||
|
"DE.Views.Toolbar.textRichControl": "Uitgebreide tekst inhoud beheer toevoegen",
|
||||||
"DE.Views.Toolbar.textRight": "Rechts:",
|
"DE.Views.Toolbar.textRight": "Rechts:",
|
||||||
"DE.Views.Toolbar.textStock": "Voorraad",
|
"DE.Views.Toolbar.textStock": "Voorraad",
|
||||||
"DE.Views.Toolbar.textStrikeout": "Doorhalen",
|
"DE.Views.Toolbar.textStrikeout": "Doorhalen",
|
||||||
|
@ -1592,17 +1816,18 @@
|
||||||
"DE.Views.Toolbar.textSubscript": "Subscript",
|
"DE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"DE.Views.Toolbar.textSurface": "Oppervlak",
|
"DE.Views.Toolbar.textSurface": "Oppervlak",
|
||||||
|
"DE.Views.Toolbar.textTabCollaboration": "Samenwerking",
|
||||||
"DE.Views.Toolbar.textTabFile": "Bestand",
|
"DE.Views.Toolbar.textTabFile": "Bestand",
|
||||||
"DE.Views.Toolbar.textTabHome": "Home",
|
"DE.Views.Toolbar.textTabHome": "Home",
|
||||||
"DE.Views.Toolbar.textTabInsert": "Invoegen",
|
"DE.Views.Toolbar.textTabInsert": "Invoegen",
|
||||||
"DE.Views.Toolbar.textTabLayout": "Pagina-indeling",
|
"DE.Views.Toolbar.textTabLayout": "Pagina-indeling",
|
||||||
|
"DE.Views.Toolbar.textTabLinks": "Verwijzingen",
|
||||||
|
"DE.Views.Toolbar.textTabProtect": "Beveiliging",
|
||||||
"DE.Views.Toolbar.textTabReview": "Beoordelen",
|
"DE.Views.Toolbar.textTabReview": "Beoordelen",
|
||||||
"DE.Views.Toolbar.textTitleError": "Fout",
|
"DE.Views.Toolbar.textTitleError": "Fout",
|
||||||
"DE.Views.Toolbar.textToCurrent": "Naar huidige positie",
|
"DE.Views.Toolbar.textToCurrent": "Naar huidige positie",
|
||||||
"DE.Views.Toolbar.textTop": "Boven:",
|
"DE.Views.Toolbar.textTop": "Boven:",
|
||||||
"DE.Views.Toolbar.textUnderline": "Onderstrepen",
|
"DE.Views.Toolbar.textUnderline": "Onderstrepen",
|
||||||
"DE.Views.Toolbar.textZoom": "Zoomen",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Geavanceerde instellingen",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Midden uitlijnen",
|
"DE.Views.Toolbar.tipAlignCenter": "Midden uitlijnen",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Uitgevuld",
|
"DE.Views.Toolbar.tipAlignJust": "Uitgevuld",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Links uitlijnen",
|
"DE.Views.Toolbar.tipAlignLeft": "Links uitlijnen",
|
||||||
|
@ -1612,6 +1837,7 @@
|
||||||
"DE.Views.Toolbar.tipClearStyle": "Stijl wissen",
|
"DE.Views.Toolbar.tipClearStyle": "Stijl wissen",
|
||||||
"DE.Views.Toolbar.tipColorSchemas": "Kleurenschema wijzigen",
|
"DE.Views.Toolbar.tipColorSchemas": "Kleurenschema wijzigen",
|
||||||
"DE.Views.Toolbar.tipColumns": "Kolommen invoegen",
|
"DE.Views.Toolbar.tipColumns": "Kolommen invoegen",
|
||||||
|
"DE.Views.Toolbar.tipControls": "Inhoud beheer toevoegen",
|
||||||
"DE.Views.Toolbar.tipCopy": "Kopiëren",
|
"DE.Views.Toolbar.tipCopy": "Kopiëren",
|
||||||
"DE.Views.Toolbar.tipCopyStyle": "Stijl kopiëren",
|
"DE.Views.Toolbar.tipCopyStyle": "Stijl kopiëren",
|
||||||
"DE.Views.Toolbar.tipDecFont": "Tekengrootte verminderen",
|
"DE.Views.Toolbar.tipDecFont": "Tekengrootte verminderen",
|
||||||
|
@ -1634,7 +1860,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertNum": "Paginanummer invoegen",
|
"DE.Views.Toolbar.tipInsertNum": "Paginanummer invoegen",
|
||||||
"DE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen",
|
"DE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "Tabel invoegen",
|
"DE.Views.Toolbar.tipInsertTable": "Tabel invoegen",
|
||||||
"DE.Views.Toolbar.tipInsertText": "Tekst invoegen",
|
"DE.Views.Toolbar.tipInsertText": "Tekstvak invoegen",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "Text Art Invoegen",
|
"DE.Views.Toolbar.tipInsertTextArt": "Text Art Invoegen",
|
||||||
"DE.Views.Toolbar.tipLineSpace": "Regelafstand alinea",
|
"DE.Views.Toolbar.tipLineSpace": "Regelafstand alinea",
|
||||||
"DE.Views.Toolbar.tipMailRecepients": "Afdruk samenvoegen",
|
"DE.Views.Toolbar.tipMailRecepients": "Afdruk samenvoegen",
|
||||||
|
@ -1657,7 +1883,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Niet-afdrukbare tekens",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Niet-afdrukbare tekens",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Het document is gewijzigd door een andere gebruiker. Klik om uw wijzigingen op te slaan en de updates opnieuw te laden.",
|
"DE.Views.Toolbar.tipSynchronize": "Het document is gewijzigd door een andere gebruiker. Klik om uw wijzigingen op te slaan en de updates opnieuw te laden.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Ongedaan maken",
|
"DE.Views.Toolbar.tipUndo": "Ongedaan maken",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "Weergave-instellingen",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Kantoor",
|
"DE.Views.Toolbar.txtScheme1": "Kantoor",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Mediaan",
|
"DE.Views.Toolbar.txtScheme10": "Mediaan",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -141,15 +141,21 @@
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Сохранить и выйти",
|
"Common.Views.ExternalMergeEditor.textSave": "Сохранить и выйти",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния",
|
"Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Документ редактируется несколькими пользователями.",
|
"Common.Views.Header.labelCoUsersDescr": "Документ редактируется несколькими пользователями.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Дополнительные параметры",
|
||||||
"Common.Views.Header.textBack": "Перейти к Документам",
|
"Common.Views.Header.textBack": "Перейти к Документам",
|
||||||
|
"Common.Views.Header.textCompactView": "Скрыть панель инструментов",
|
||||||
|
"Common.Views.Header.textHideLines": "Скрыть линейки",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Скрыть строку состояния",
|
||||||
"Common.Views.Header.textSaveBegin": "Сохранение...",
|
"Common.Views.Header.textSaveBegin": "Сохранение...",
|
||||||
"Common.Views.Header.textSaveChanged": "Изменен",
|
"Common.Views.Header.textSaveChanged": "Изменен",
|
||||||
"Common.Views.Header.textSaveEnd": "Все изменения сохранены",
|
"Common.Views.Header.textSaveEnd": "Все изменения сохранены",
|
||||||
"Common.Views.Header.textSaveExpander": "Все изменения сохранены",
|
"Common.Views.Header.textSaveExpander": "Все изменения сохранены",
|
||||||
|
"Common.Views.Header.textZoom": "Масштаб",
|
||||||
"Common.Views.Header.tipAccessRights": "Управление правами доступа к документу",
|
"Common.Views.Header.tipAccessRights": "Управление правами доступа к документу",
|
||||||
"Common.Views.Header.tipDownload": "Скачать файл",
|
"Common.Views.Header.tipDownload": "Скачать файл",
|
||||||
"Common.Views.Header.tipGoEdit": "Редактировать текущий файл",
|
"Common.Views.Header.tipGoEdit": "Редактировать текущий файл",
|
||||||
"Common.Views.Header.tipPrint": "Напечатать файл",
|
"Common.Views.Header.tipPrint": "Напечатать файл",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Параметры представления",
|
||||||
"Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
|
"Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
|
||||||
"Common.Views.Header.txtAccessRights": "Изменить права доступа",
|
"Common.Views.Header.txtAccessRights": "Изменить права доступа",
|
||||||
"Common.Views.Header.txtRename": "Переименовать",
|
"Common.Views.Header.txtRename": "Переименовать",
|
||||||
|
@ -296,6 +302,7 @@
|
||||||
"DE.Controllers.LeftMenu.textReplaceSkipped": "Замена выполнена. Пропущено вхождений - {0}.",
|
"DE.Controllers.LeftMenu.textReplaceSkipped": "Замена выполнена. Пропущено вхождений - {0}.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSuccess": "Поиск выполнен. Заменено вхождений: {0}",
|
"DE.Controllers.LeftMenu.textReplaceSuccess": "Поиск выполнен. Заменено вхождений: {0}",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.<br>Вы действительно хотите продолжить?",
|
"DE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.<br>Вы действительно хотите продолжить?",
|
||||||
|
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Если вы продолжите сохранение в этот формат, часть форматирования может быть потеряна.<br>Вы действительно хотите продолжить?",
|
||||||
"DE.Controllers.Main.applyChangesTextText": "Загрузка изменений...",
|
"DE.Controllers.Main.applyChangesTextText": "Загрузка изменений...",
|
||||||
"DE.Controllers.Main.applyChangesTitleText": "Загрузка изменений",
|
"DE.Controllers.Main.applyChangesTitleText": "Загрузка изменений",
|
||||||
"DE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
|
"DE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
|
||||||
|
@ -779,6 +786,18 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальное многоточие",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальное многоточие",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Кси",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Кси",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Дзета",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Дзета",
|
||||||
|
"DE.Controllers.Viewport.textFitPage": "По размеру страницы",
|
||||||
|
"DE.Controllers.Viewport.textFitWidth": "По ширине",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Добавить",
|
||||||
|
"DE.Views.BookmarksDialog.textBookmarkName": "Имя закладки",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Закрыть",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Удалить",
|
||||||
|
"DE.Views.BookmarksDialog.textGoto": "Перейти",
|
||||||
|
"DE.Views.BookmarksDialog.textHidden": "Скрытые закладки",
|
||||||
|
"DE.Views.BookmarksDialog.textLocation": "Положение",
|
||||||
|
"DE.Views.BookmarksDialog.textName": "Имя",
|
||||||
|
"DE.Views.BookmarksDialog.textSort": "Порядок",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Закладки",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
"DE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
||||||
"DE.Views.ChartSettings.textArea": "С областями",
|
"DE.Views.ChartSettings.textArea": "С областями",
|
||||||
"DE.Views.ChartSettings.textBar": "Линейчатая",
|
"DE.Views.ChartSettings.textBar": "Линейчатая",
|
||||||
|
@ -898,6 +917,8 @@
|
||||||
"DE.Views.DocumentHolder.textDistributeRows": "Выровнять высоту строк",
|
"DE.Views.DocumentHolder.textDistributeRows": "Выровнять высоту строк",
|
||||||
"DE.Views.DocumentHolder.textEditControls": "Параметры элемента управления содержимым",
|
"DE.Views.DocumentHolder.textEditControls": "Параметры элемента управления содержимым",
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Изменить границу обтекания",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Изменить границу обтекания",
|
||||||
|
"DE.Views.DocumentHolder.textFromFile": "Из файла",
|
||||||
|
"DE.Views.DocumentHolder.textFromUrl": "По URL",
|
||||||
"DE.Views.DocumentHolder.textNest": "Вставить как вложенную таблицу",
|
"DE.Views.DocumentHolder.textNest": "Вставить как вложенную таблицу",
|
||||||
"DE.Views.DocumentHolder.textNextPage": "Следующая страница",
|
"DE.Views.DocumentHolder.textNextPage": "Следующая страница",
|
||||||
"DE.Views.DocumentHolder.textPaste": "Вставить",
|
"DE.Views.DocumentHolder.textPaste": "Вставить",
|
||||||
|
@ -905,6 +926,7 @@
|
||||||
"DE.Views.DocumentHolder.textRefreshField": "Обновить поле",
|
"DE.Views.DocumentHolder.textRefreshField": "Обновить поле",
|
||||||
"DE.Views.DocumentHolder.textRemove": "Удалить",
|
"DE.Views.DocumentHolder.textRemove": "Удалить",
|
||||||
"DE.Views.DocumentHolder.textRemoveControl": "Удалить элемент управления содержимым",
|
"DE.Views.DocumentHolder.textRemoveControl": "Удалить элемент управления содержимым",
|
||||||
|
"DE.Views.DocumentHolder.textReplace": "Заменить изображение",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Настройки",
|
"DE.Views.DocumentHolder.textSettings": "Настройки",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Выровнять по нижнему краю",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Выровнять по нижнему краю",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Выровнять по центру",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Выровнять по центру",
|
||||||
|
@ -1164,10 +1186,15 @@
|
||||||
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
"DE.Views.HyperlinkSettingsDialog.okButtonText": "OK",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDefault": "Выделенный фрагмент текста",
|
"DE.Views.HyperlinkSettingsDialog.textDefault": "Выделенный фрагмент текста",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Отображать",
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Отображать",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textExternal": "Внешняя ссылка",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textInternal": "Место в документе",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTitle": "Параметры гиперссылки",
|
"DE.Views.HyperlinkSettingsDialog.textTitle": "Параметры гиперссылки",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Текст подсказки",
|
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Текст подсказки",
|
||||||
"DE.Views.HyperlinkSettingsDialog.textUrl": "Связать с",
|
"DE.Views.HyperlinkSettingsDialog.textUrl": "Связать с",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Начало документа",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Закладки",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Это поле обязательно для заполнения",
|
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Это поле обязательно для заполнения",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtHeadings": "Заголовки",
|
||||||
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
|
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
|
||||||
"DE.Views.ImageSettings.textAdvanced": "Дополнительные параметры",
|
"DE.Views.ImageSettings.textAdvanced": "Дополнительные параметры",
|
||||||
"DE.Views.ImageSettings.textEdit": "Редактировать",
|
"DE.Views.ImageSettings.textEdit": "Редактировать",
|
||||||
|
@ -1266,7 +1293,8 @@
|
||||||
"DE.Views.LeftMenu.tipTitles": "Заголовки",
|
"DE.Views.LeftMenu.tipTitles": "Заголовки",
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "РЕЖИМ РАЗРАБОТЧИКА",
|
"DE.Views.LeftMenu.txtDeveloper": "РЕЖИМ РАЗРАБОТЧИКА",
|
||||||
"DE.Views.LeftMenu.txtTrial": "ПРОБНЫЙ РЕЖИМ",
|
"DE.Views.LeftMenu.txtTrial": "ПРОБНЫЙ РЕЖИМ",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Обновление",
|
"DE.Views.Links.capBtnBookmarks": "Закладка",
|
||||||
|
"DE.Views.Links.capBtnContentsUpdate": "Обновить",
|
||||||
"DE.Views.Links.capBtnInsContents": "Оглавление",
|
"DE.Views.Links.capBtnInsContents": "Оглавление",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Сноска",
|
"DE.Views.Links.capBtnInsFootnote": "Сноска",
|
||||||
"DE.Views.Links.capBtnInsLink": "Гиперссылка",
|
"DE.Views.Links.capBtnInsLink": "Гиперссылка",
|
||||||
|
@ -1279,6 +1307,7 @@
|
||||||
"DE.Views.Links.textGotoFootnote": "Перейти к сноскам",
|
"DE.Views.Links.textGotoFootnote": "Перейти к сноскам",
|
||||||
"DE.Views.Links.textUpdateAll": "Обновить целиком",
|
"DE.Views.Links.textUpdateAll": "Обновить целиком",
|
||||||
"DE.Views.Links.textUpdatePages": "Обновить только номера страниц",
|
"DE.Views.Links.textUpdatePages": "Обновить только номера страниц",
|
||||||
|
"DE.Views.Links.tipBookmarks": "Создать закладку",
|
||||||
"DE.Views.Links.tipContents": "Вставить оглавление",
|
"DE.Views.Links.tipContents": "Вставить оглавление",
|
||||||
"DE.Views.Links.tipContentsUpdate": "Обновить оглавление",
|
"DE.Views.Links.tipContentsUpdate": "Обновить оглавление",
|
||||||
"DE.Views.Links.tipInsertHyperlink": "Добавить гиперссылку",
|
"DE.Views.Links.tipInsertHyperlink": "Добавить гиперссылку",
|
||||||
|
@ -1340,7 +1369,7 @@
|
||||||
"DE.Views.Navigation.txtEmpty": "Этот документ не содержит заголовков",
|
"DE.Views.Navigation.txtEmpty": "Этот документ не содержит заголовков",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Пустой заголовок",
|
"DE.Views.Navigation.txtEmptyItem": "Пустой заголовок",
|
||||||
"DE.Views.Navigation.txtExpand": "Развернуть все",
|
"DE.Views.Navigation.txtExpand": "Развернуть все",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Развернуть до уровня...",
|
"DE.Views.Navigation.txtExpandToLevel": "Развернуть до уровня",
|
||||||
"DE.Views.Navigation.txtHeadingAfter": "Новый заголовок после",
|
"DE.Views.Navigation.txtHeadingAfter": "Новый заголовок после",
|
||||||
"DE.Views.Navigation.txtHeadingBefore": "Новый заголовок перед",
|
"DE.Views.Navigation.txtHeadingBefore": "Новый заголовок перед",
|
||||||
"DE.Views.Navigation.txtNewHeading": "Новый подзаголовок",
|
"DE.Views.Navigation.txtNewHeading": "Новый подзаголовок",
|
||||||
|
@ -1745,14 +1774,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Справа",
|
"DE.Views.Toolbar.textColumnsRight": "Справа",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Три",
|
"DE.Views.Toolbar.textColumnsThree": "Три",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Две",
|
"DE.Views.Toolbar.textColumnsTwo": "Две",
|
||||||
"DE.Views.Toolbar.textCompactView": "Скрыть панель инструментов",
|
|
||||||
"DE.Views.Toolbar.textContPage": "На текущей странице",
|
"DE.Views.Toolbar.textContPage": "На текущей странице",
|
||||||
"DE.Views.Toolbar.textEvenPage": "С четной страницы",
|
"DE.Views.Toolbar.textEvenPage": "С четной страницы",
|
||||||
"DE.Views.Toolbar.textFitPage": "По размеру страницы",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "По ширине",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Скрыть линейки",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Скрыть строку состояния",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Скрыть строку заголовка",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "На поле",
|
"DE.Views.Toolbar.textInMargin": "На поле",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Вставить разрыв колонки",
|
"DE.Views.Toolbar.textInsColumnBreak": "Вставить разрыв колонки",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Вставить число страниц",
|
"DE.Views.Toolbar.textInsertPageCount": "Вставить число страниц",
|
||||||
|
@ -1806,8 +1829,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "В текущей позиции",
|
"DE.Views.Toolbar.textToCurrent": "В текущей позиции",
|
||||||
"DE.Views.Toolbar.textTop": "Верхнее: ",
|
"DE.Views.Toolbar.textTop": "Верхнее: ",
|
||||||
"DE.Views.Toolbar.textUnderline": "Подчеркнутый",
|
"DE.Views.Toolbar.textUnderline": "Подчеркнутый",
|
||||||
"DE.Views.Toolbar.textZoom": "Масштаб",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Дополнительные параметры",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Выравнивание по центру",
|
"DE.Views.Toolbar.tipAlignCenter": "Выравнивание по центру",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Выравнивание по ширине",
|
"DE.Views.Toolbar.tipAlignJust": "Выравнивание по ширине",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Выравнивание по левому краю",
|
"DE.Views.Toolbar.tipAlignLeft": "Выравнивание по левому краю",
|
||||||
|
@ -1863,7 +1884,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Непечатаемые символы",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Непечатаемые символы",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Документ изменен другим пользователем. Нажмите, чтобы сохранить свои изменения и загрузить обновления.",
|
"DE.Views.Toolbar.tipSynchronize": "Документ изменен другим пользователем. Нажмите, чтобы сохранить свои изменения и загрузить обновления.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Отменить",
|
"DE.Views.Toolbar.tipUndo": "Отменить",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "Параметры представления",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Стандартная",
|
"DE.Views.Toolbar.txtScheme1": "Стандартная",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Обычная",
|
"DE.Views.Toolbar.txtScheme10": "Обычная",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Метро",
|
"DE.Views.Toolbar.txtScheme11": "Метро",
|
||||||
|
|
|
@ -1565,7 +1565,7 @@
|
||||||
"DE.Views.Toolbar.capBtnInsChart": "Graf",
|
"DE.Views.Toolbar.capBtnInsChart": "Graf",
|
||||||
"DE.Views.Toolbar.capBtnInsDropcap": "Iniciála",
|
"DE.Views.Toolbar.capBtnInsDropcap": "Iniciála",
|
||||||
"DE.Views.Toolbar.capBtnInsEquation": "Rovnica",
|
"DE.Views.Toolbar.capBtnInsEquation": "Rovnica",
|
||||||
"DE.Views.Toolbar.capBtnInsHeader": "Záhlavie/päta ",
|
"DE.Views.Toolbar.capBtnInsHeader": "Záhlavie/päta",
|
||||||
"DE.Views.Toolbar.capBtnInsImage": "Obrázok",
|
"DE.Views.Toolbar.capBtnInsImage": "Obrázok",
|
||||||
"DE.Views.Toolbar.capBtnInsPagebreak": "Oddeľovač stránky/zlom strany",
|
"DE.Views.Toolbar.capBtnInsPagebreak": "Oddeľovač stránky/zlom strany",
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "Tvar",
|
"DE.Views.Toolbar.capBtnInsShape": "Tvar",
|
||||||
|
@ -1602,14 +1602,8 @@
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Vpravo",
|
"DE.Views.Toolbar.textColumnsRight": "Vpravo",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Tri",
|
"DE.Views.Toolbar.textColumnsThree": "Tri",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Dva",
|
"DE.Views.Toolbar.textColumnsTwo": "Dva",
|
||||||
"DE.Views.Toolbar.textCompactView": "Zobraziť kompaktnú lištu nástrojov",
|
|
||||||
"DE.Views.Toolbar.textContPage": "Súvislá/neprerušovaná strana",
|
"DE.Views.Toolbar.textContPage": "Súvislá/neprerušovaná strana",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Párna stránka",
|
"DE.Views.Toolbar.textEvenPage": "Párna stránka",
|
||||||
"DE.Views.Toolbar.textFitPage": "Prispôsobiť na stranu",
|
|
||||||
"DE.Views.Toolbar.textFitWidth": "Prispôsobiť na šírku",
|
|
||||||
"DE.Views.Toolbar.textHideLines": "Skryť pravítka",
|
|
||||||
"DE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok",
|
|
||||||
"DE.Views.Toolbar.textHideTitleBar": "Skryť lištu nadpisu",
|
|
||||||
"DE.Views.Toolbar.textInMargin": "V okraji",
|
"DE.Views.Toolbar.textInMargin": "V okraji",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Vložiť stĺpcové zalomenie ",
|
"DE.Views.Toolbar.textInsColumnBreak": "Vložiť stĺpcové zalomenie ",
|
||||||
"DE.Views.Toolbar.textInsertPageCount": "Zadajte počet strán",
|
"DE.Views.Toolbar.textInsertPageCount": "Zadajte počet strán",
|
||||||
|
@ -1657,8 +1651,6 @@
|
||||||
"DE.Views.Toolbar.textToCurrent": "Na aktuálnu pozíciu",
|
"DE.Views.Toolbar.textToCurrent": "Na aktuálnu pozíciu",
|
||||||
"DE.Views.Toolbar.textTop": "Hore:",
|
"DE.Views.Toolbar.textTop": "Hore:",
|
||||||
"DE.Views.Toolbar.textUnderline": "Podčiarknuť",
|
"DE.Views.Toolbar.textUnderline": "Podčiarknuť",
|
||||||
"DE.Views.Toolbar.textZoom": "Priblíženie",
|
|
||||||
"DE.Views.Toolbar.tipAdvSettings": "Pokročilé nastavenia",
|
|
||||||
"DE.Views.Toolbar.tipAlignCenter": "Centrovať",
|
"DE.Views.Toolbar.tipAlignCenter": "Centrovať",
|
||||||
"DE.Views.Toolbar.tipAlignJust": "Podľa okrajov",
|
"DE.Views.Toolbar.tipAlignJust": "Podľa okrajov",
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Zarovnať doľava",
|
"DE.Views.Toolbar.tipAlignLeft": "Zarovnať doľava",
|
||||||
|
@ -1713,7 +1705,6 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Formátovacie značky",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Formátovacie značky",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Dokument bol zmenený ďalším používateľom. Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.",
|
"DE.Views.Toolbar.tipSynchronize": "Dokument bol zmenený ďalším používateľom. Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Krok späť",
|
"DE.Views.Toolbar.tipUndo": "Krok späť",
|
||||||
"DE.Views.Toolbar.tipViewSettings": "Zobraziť nastavenia",
|
|
||||||
"DE.Views.Toolbar.txtScheme1": "Kancelária",
|
"DE.Views.Toolbar.txtScheme1": "Kancelária",
|
||||||
"DE.Views.Toolbar.txtScheme10": "Medián",
|
"DE.Views.Toolbar.txtScheme10": "Medián",
|
||||||
"DE.Views.Toolbar.txtScheme11": "Metro",
|
"DE.Views.Toolbar.txtScheme11": "Metro",
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.padding-extra-small {
|
||||||
|
padding-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
.padding-small {
|
.padding-small {
|
||||||
padding-bottom: 8px;
|
padding-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -401,6 +401,8 @@
|
||||||
font: 11px arial;
|
font: 11px arial;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
#id-toolbar-menu-auto-fontcolor > a.selected {
|
#id-toolbar-menu-auto-fontcolor > a.selected {
|
||||||
|
|
|
@ -193,7 +193,6 @@ define([
|
||||||
$('#settings-readermode input:checkbox').attr('checked', Common.SharedSettings.get('readerMode'));
|
$('#settings-readermode input:checkbox').attr('checked', Common.SharedSettings.get('readerMode'));
|
||||||
$('#settings-search').single('click', _.bind(me.onSearch, me));
|
$('#settings-search').single('click', _.bind(me.onSearch, me));
|
||||||
$('#settings-readermode input:checkbox').single('change', _.bind(me.onReaderMode, me));
|
$('#settings-readermode input:checkbox').single('change', _.bind(me.onReaderMode, me));
|
||||||
$('#settings-edit-document').single('click', _.bind(me.onEditDocumet, me));
|
|
||||||
$('#settings-help').single('click', _.bind(me.onShowHelp, me));
|
$('#settings-help').single('click', _.bind(me.onShowHelp, me));
|
||||||
$('#settings-download').single('click', _.bind(me.onDownloadOrigin, me));
|
$('#settings-download').single('click', _.bind(me.onDownloadOrigin, me));
|
||||||
}
|
}
|
||||||
|
@ -267,10 +266,6 @@ define([
|
||||||
|
|
||||||
// Handlers
|
// Handlers
|
||||||
|
|
||||||
onEditDocumet: function() {
|
|
||||||
Common.Gateway.requestEditRights();
|
|
||||||
},
|
|
||||||
|
|
||||||
onSearch: function (e) {
|
onSearch: function (e) {
|
||||||
var toolbarView = DE.getController('Toolbar').getView('Toolbar');
|
var toolbarView = DE.getController('Toolbar').getView('Toolbar');
|
||||||
|
|
||||||
|
|
|
@ -25,18 +25,6 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<% } %>
|
<% } %>
|
||||||
<li>
|
|
||||||
<a id="settings-edit-document" class="item-link no-indicator">
|
|
||||||
<div class="item-content">
|
|
||||||
<div class="item-media">
|
|
||||||
<i class="icon icon-edit"></i>
|
|
||||||
</div>
|
|
||||||
<div class="item-inner">
|
|
||||||
<div class="item-title"><%= scope.textEditDoc %></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
<li>
|
||||||
<div id="settings-readermode" class="item-content">
|
<div id="settings-readermode" class="item-content">
|
||||||
<div class="item-media">
|
<div class="item-media">
|
||||||
|
|
|
@ -34,6 +34,9 @@
|
||||||
<a href="#" id="toolbar-add" class="link icon-only" style="display: none;">
|
<a href="#" id="toolbar-add" class="link icon-only" style="display: none;">
|
||||||
<i class="icon icon-plus"></i>
|
<i class="icon icon-plus"></i>
|
||||||
</a>
|
</a>
|
||||||
|
<a href="#" id="toolbar-edit-document" class="link icon-only" style="display: none;">
|
||||||
|
<i class="icon icon-edit"></i>
|
||||||
|
</a>
|
||||||
<% if (!phone) { %>
|
<% if (!phone) { %>
|
||||||
<a href="#" id="toolbar-search" class="link icon-only">
|
<a href="#" id="toolbar-search" class="link icon-only">
|
||||||
<i class="icon icon-search"></i>
|
<i class="icon icon-search"></i>
|
||||||
|
|
|
@ -108,10 +108,8 @@ define([
|
||||||
isPhone = Common.SharedSettings.get('phone');
|
isPhone = Common.SharedSettings.get('phone');
|
||||||
|
|
||||||
if (_isEdit) {
|
if (_isEdit) {
|
||||||
$layour.find('#settings-edit-document').hide();
|
|
||||||
$layour.find('#settings-search .item-title').text(this.textFindAndReplace)
|
$layour.find('#settings-search .item-title').text(this.textFindAndReplace)
|
||||||
} else {
|
} else {
|
||||||
if (!_canEdit) $layour.find('#settings-edit-document').hide();
|
|
||||||
$layour.find('#settings-document').hide();
|
$layour.find('#settings-document').hide();
|
||||||
}
|
}
|
||||||
if (!_canReader)
|
if (!_canReader)
|
||||||
|
@ -213,7 +211,6 @@ define([
|
||||||
permissions = _.extend(permissions, data.doc.permissions);
|
permissions = _.extend(permissions, data.doc.permissions);
|
||||||
|
|
||||||
if (permissions.edit === false) {
|
if (permissions.edit === false) {
|
||||||
$('#settings-edit-document').hide();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -62,7 +62,8 @@ define([
|
||||||
"click #toolbar-search" : "searchToggle",
|
"click #toolbar-search" : "searchToggle",
|
||||||
"click #toolbar-edit" : "showEdition",
|
"click #toolbar-edit" : "showEdition",
|
||||||
"click #toolbar-add" : "showInserts",
|
"click #toolbar-add" : "showInserts",
|
||||||
"click #toolbar-settings" : "showSettings"
|
"click #toolbar-settings" : "showSettings",
|
||||||
|
"click #toolbar-edit-document": "editDocument"
|
||||||
},
|
},
|
||||||
|
|
||||||
// Set innerHTML and get the references to the DOM elements
|
// Set innerHTML and get the references to the DOM elements
|
||||||
|
@ -100,6 +101,8 @@ define([
|
||||||
setMode: function (mode) {
|
setMode: function (mode) {
|
||||||
if (mode.isEdit) {
|
if (mode.isEdit) {
|
||||||
$('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo').show();
|
$('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo').show();
|
||||||
|
} else if (mode.canEdit && mode.canRequestEditRights){
|
||||||
|
$('#toolbar-edit-document').show();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -147,6 +150,10 @@ define([
|
||||||
DE.getController('Settings').showModal();
|
DE.getController('Settings').showModal();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
editDocument: function () {
|
||||||
|
Common.Gateway.requestEditRights();
|
||||||
|
},
|
||||||
|
|
||||||
textBack: 'Back'
|
textBack: 'Back'
|
||||||
}
|
}
|
||||||
})(), DE.Views.Toolbar || {}))
|
})(), DE.Views.Toolbar || {}))
|
||||||
|
|
|
@ -119,7 +119,10 @@
|
||||||
"DE.Controllers.Main.txtArt": "여기에 귀하의 텍스트",
|
"DE.Controllers.Main.txtArt": "여기에 귀하의 텍스트",
|
||||||
"DE.Controllers.Main.txtDiagramTitle": "차트 제목",
|
"DE.Controllers.Main.txtDiagramTitle": "차트 제목",
|
||||||
"DE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...",
|
"DE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...",
|
||||||
|
"DE.Controllers.Main.txtFooter": "Footer",
|
||||||
|
"DE.Controllers.Main.txtHeader": "머리글",
|
||||||
"DE.Controllers.Main.txtSeries": "Series",
|
"DE.Controllers.Main.txtSeries": "Series",
|
||||||
|
"DE.Controllers.Main.txtStyle_footnote_text": "꼬리말 글",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_1": "제목 1",
|
"DE.Controllers.Main.txtStyle_Heading_1": "제목 1",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_2": "제목 2",
|
"DE.Controllers.Main.txtStyle_Heading_2": "제목 2",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_3": "제목 3",
|
"DE.Controllers.Main.txtStyle_Heading_3": "제목 3",
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
"DE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop",
|
"DE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop",
|
||||||
"DE.Controllers.Main.textDone": "Klaar",
|
"DE.Controllers.Main.textDone": "Klaar",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Document wordt geladen",
|
"DE.Controllers.Main.textLoadingDocument": "Document wordt geladen",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "Open source-versie ONLYOFFICE",
|
"DE.Controllers.Main.textNoLicenseTitle": "Only Office verbindingslimiet",
|
||||||
"DE.Controllers.Main.textOK": "OK",
|
"DE.Controllers.Main.textOK": "OK",
|
||||||
"DE.Controllers.Main.textPassword": "Wachtwoord",
|
"DE.Controllers.Main.textPassword": "Wachtwoord",
|
||||||
"DE.Controllers.Main.textPreloader": "Laden...",
|
"DE.Controllers.Main.textPreloader": "Laden...",
|
||||||
|
@ -119,7 +119,10 @@
|
||||||
"DE.Controllers.Main.txtArt": "Hier tekst invoeren",
|
"DE.Controllers.Main.txtArt": "Hier tekst invoeren",
|
||||||
"DE.Controllers.Main.txtDiagramTitle": "Grafiektitel",
|
"DE.Controllers.Main.txtDiagramTitle": "Grafiektitel",
|
||||||
"DE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...",
|
"DE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...",
|
||||||
|
"DE.Controllers.Main.txtFooter": "Voettekst",
|
||||||
|
"DE.Controllers.Main.txtHeader": "Koptekst",
|
||||||
"DE.Controllers.Main.txtSeries": "Serie",
|
"DE.Controllers.Main.txtSeries": "Serie",
|
||||||
|
"DE.Controllers.Main.txtStyle_footnote_text": "Voetnoot tekst",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_1": "Kop 1",
|
"DE.Controllers.Main.txtStyle_Heading_1": "Kop 1",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_2": "Kop 2",
|
"DE.Controllers.Main.txtStyle_Heading_2": "Kop 2",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_3": "Kop 3",
|
"DE.Controllers.Main.txtStyle_Heading_3": "Kop 3",
|
||||||
|
@ -146,7 +149,8 @@
|
||||||
"DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...",
|
"DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...",
|
||||||
"DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload",
|
"DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload",
|
||||||
"DE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.<br>Werk uw licentie bij en vernieuw de pagina.",
|
"DE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.<br>Werk uw licentie bij en vernieuw de pagina.",
|
||||||
"DE.Controllers.Main.warnNoLicense": "U gebruikt een Open source-versie van ONLYOFFICE. In die versie geldt voor het aantal gelijktijdige verbindingen met de documentserver een limiet van 20 verbindingen.<br>Als u er meer nodig hebt, kunt u overwegen een commerciële licentie aan te schaffen.",
|
"DE.Controllers.Main.warnNoLicense": "Deze versie van Only Office bevat limieten voor het aantal gelijktijdige gebruikers.<br>Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.",
|
||||||
|
"DE.Controllers.Main.warnNoLicenseUsers": "Deze versie van Only Office bevat limieten voor het aantal gelijktijdige gebruikers.<br>Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.",
|
"DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.",
|
||||||
"DE.Controllers.Search.textNoTextFound": "Tekst niet gevonden",
|
"DE.Controllers.Search.textNoTextFound": "Tekst niet gevonden",
|
||||||
"DE.Controllers.Search.textReplaceAll": "Alles vervangen",
|
"DE.Controllers.Search.textReplaceAll": "Alles vervangen",
|
||||||
|
|
|
@ -224,6 +224,9 @@ var ApplicationController = new(function(){
|
||||||
}
|
}
|
||||||
hidePreloader();
|
hidePreloader();
|
||||||
|
|
||||||
|
var zf = (config.customization && config.customization.zoom ? parseInt(config.customization.zoom) : -1);
|
||||||
|
(zf == -1) ? api.zoomFitToPage() : ((zf == -2) ? api.zoomFitToWidth() : api.zoom(zf>0 ? zf : 100));
|
||||||
|
|
||||||
if ( !embedConfig.shareUrl )
|
if ( !embedConfig.shareUrl )
|
||||||
$('#idt-share').hide();
|
$('#idt-share').hide();
|
||||||
|
|
||||||
|
@ -411,7 +414,6 @@ var ApplicationController = new(function(){
|
||||||
api.asc_setViewMode(true);
|
api.asc_setViewMode(true);
|
||||||
api.asc_LoadDocument();
|
api.asc_LoadDocument();
|
||||||
api.Resize();
|
api.Resize();
|
||||||
api.zoomFitToPage();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function onOpenDocument(progress) {
|
function onOpenDocument(progress) {
|
||||||
|
@ -545,7 +547,6 @@ var ApplicationController = new(function(){
|
||||||
function onDocumentResize() {
|
function onDocumentResize() {
|
||||||
if (api) {
|
if (api) {
|
||||||
api.Resize();
|
api.Resize();
|
||||||
api.zoomFitToPage();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -190,6 +190,7 @@ require([
|
||||||
'common/main/lib/controller/ExternalDiagramEditor'
|
'common/main/lib/controller/ExternalDiagramEditor'
|
||||||
,'common/main/lib/controller/ReviewChanges'
|
,'common/main/lib/controller/ReviewChanges'
|
||||||
,'common/main/lib/controller/Protection'
|
,'common/main/lib/controller/Protection'
|
||||||
|
,'common/main/lib/controller/Desktop'
|
||||||
], function() {
|
], function() {
|
||||||
app.start();
|
app.start();
|
||||||
});
|
});
|
||||||
|
|
|
@ -61,6 +61,7 @@ define([
|
||||||
'hide': _.bind(this.onHideChat, this)
|
'hide': _.bind(this.onHideChat, this)
|
||||||
},
|
},
|
||||||
'Common.Views.Header': {
|
'Common.Views.Header': {
|
||||||
|
'file:settings': _.bind(this.clickToolbarSettings,this),
|
||||||
'click:users': _.bind(this.clickStatusbarUsers, this)
|
'click:users': _.bind(this.clickStatusbarUsers, this)
|
||||||
},
|
},
|
||||||
'Common.Views.Plugins': {
|
'Common.Views.Plugins': {
|
||||||
|
@ -89,7 +90,8 @@ define([
|
||||||
'Toolbar': {
|
'Toolbar': {
|
||||||
'file:settings': _.bind(this.clickToolbarSettings,this),
|
'file:settings': _.bind(this.clickToolbarSettings,this),
|
||||||
'file:open': this.clickToolbarTab.bind(this, 'file'),
|
'file:open': this.clickToolbarTab.bind(this, 'file'),
|
||||||
'file:close': this.clickToolbarTab.bind(this, 'other')
|
'file:close': this.clickToolbarTab.bind(this, 'other'),
|
||||||
|
'save:disabled' : this.changeToolbarSaveState.bind(this)
|
||||||
},
|
},
|
||||||
'SearchDialog': {
|
'SearchDialog': {
|
||||||
'hide': _.bind(this.onSearchDlgHide, this),
|
'hide': _.bind(this.onSearchDlgHide, this),
|
||||||
|
@ -305,6 +307,10 @@ define([
|
||||||
this.leftMenu.menuFile.hide();
|
this.leftMenu.menuFile.hide();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
changeToolbarSaveState: function (state) {
|
||||||
|
this.leftMenu.menuFile.getButton('save').setDisabled(state);
|
||||||
|
},
|
||||||
|
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
clickStatusbarUsers: function() {
|
clickStatusbarUsers: function() {
|
||||||
this.leftMenu.menuFile.panels['rights'].changeAccessRights();
|
this.leftMenu.menuFile.panels['rights'].changeAccessRights();
|
||||||
|
|
|
@ -104,6 +104,7 @@ define([
|
||||||
|
|
||||||
this._state = {isDisconnected: false, usersCount: 1, fastCoauth: true, lostEditingRights: false, licenseWarning: false};
|
this._state = {isDisconnected: false, usersCount: 1, fastCoauth: true, lostEditingRights: false, licenseWarning: false};
|
||||||
this.languages = null;
|
this.languages = null;
|
||||||
|
this.translationTable = [];
|
||||||
|
|
||||||
window.storagename = 'presentation';
|
window.storagename = 'presentation';
|
||||||
|
|
||||||
|
@ -123,6 +124,7 @@ define([
|
||||||
// Initialize api
|
// Initialize api
|
||||||
|
|
||||||
window["flat_desine"] = true;
|
window["flat_desine"] = true;
|
||||||
|
|
||||||
this.api = new Asc.asc_docs_api({
|
this.api = new Asc.asc_docs_api({
|
||||||
'id-view' : 'editor_sdk',
|
'id-view' : 'editor_sdk',
|
||||||
'translate': {
|
'translate': {
|
||||||
|
@ -151,6 +153,11 @@ define([
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var themeNames = ['blank', 'pixel', 'classic', 'official', 'green', 'lines', 'office', 'safari', 'dotted', 'corner', 'turtle'];
|
||||||
|
themeNames.forEach(function(item){
|
||||||
|
me.translationTable[item] = me['txtTheme_' + item.replace(/ /g, '_')] || item;
|
||||||
|
});
|
||||||
|
|
||||||
if (this.api){
|
if (this.api){
|
||||||
this.api.SetDrawingFreeze(true);
|
this.api.SetDrawingFreeze(true);
|
||||||
this.api.SetThemesPath("../../../../sdkjs/slide/themes/");
|
this.api.SetThemesPath("../../../../sdkjs/slide/themes/");
|
||||||
|
@ -292,13 +299,16 @@ define([
|
||||||
this.plugins = this.editorConfig.plugins;
|
this.plugins = this.editorConfig.plugins;
|
||||||
|
|
||||||
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
||||||
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '');
|
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '')
|
||||||
|
.setUserName(this.appOptions.user.fullname);
|
||||||
|
|
||||||
if (this.editorConfig.lang)
|
if (this.editorConfig.lang)
|
||||||
this.api.asc_setLocale(this.editorConfig.lang);
|
this.api.asc_setLocale(this.editorConfig.lang);
|
||||||
|
|
||||||
if (this.appOptions.location == 'us' || this.appOptions.location == 'ca')
|
if (this.appOptions.location == 'us' || this.appOptions.location == 'ca')
|
||||||
Common.Utils.Metric.setDefaultMetric(Common.Utils.Metric.c_MetricUnits.inch);
|
Common.Utils.Metric.setDefaultMetric(Common.Utils.Metric.c_MetricUnits.inch);
|
||||||
|
|
||||||
|
Common.Controllers.Desktop.init(this.appOptions);
|
||||||
},
|
},
|
||||||
|
|
||||||
loadDocument: function(data) {
|
loadDocument: function(data) {
|
||||||
|
@ -397,18 +407,20 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
goBack: function() {
|
goBack: function() {
|
||||||
var href = this.appOptions.customization.goback.url;
|
var me = this;
|
||||||
if (this.appOptions.customization.goback.blank!==false) {
|
if ( !Common.Controllers.Desktop.process('goback') ) {
|
||||||
window.open(href, "_blank");
|
var href = me.appOptions.customization.goback.url;
|
||||||
} else {
|
if (me.appOptions.customization.goback.blank!==false) {
|
||||||
parent.location.href = href;
|
window.open(href, "_blank");
|
||||||
}
|
} else {
|
||||||
|
parent.location.href = href;
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onEditComplete: function(cmp) {
|
onEditComplete: function(cmp) {
|
||||||
var application = this.getApplication(),
|
var application = this.getApplication(),
|
||||||
toolbarController = application.getController('Toolbar'),
|
toolbarView = application.getController('Toolbar').getView('Toolbar');
|
||||||
toolbarView = toolbarController.getView('Toolbar');
|
|
||||||
|
|
||||||
application.getController('DocumentHolder').getView('DocumentHolder').focus();
|
application.getController('DocumentHolder').getView('DocumentHolder').focus();
|
||||||
if (this.api && this.api.asc_isDocumentCanSave) {
|
if (this.api && this.api.asc_isDocumentCanSave) {
|
||||||
|
@ -416,12 +428,7 @@ define([
|
||||||
forcesave = this.appOptions.forcesave,
|
forcesave = this.appOptions.forcesave,
|
||||||
isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
||||||
isDisabled = !cansave && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
isDisabled = !cansave && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
||||||
if (toolbarView.btnSave.isDisabled() !== isDisabled)
|
toolbarView.btnSave.setDisabled(isDisabled);
|
||||||
toolbarView.btnsSave.forEach(function(button) {
|
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(isDisabled);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1264,28 +1271,16 @@ define([
|
||||||
var isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
var isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
||||||
forcesave = this.appOptions.forcesave,
|
forcesave = this.appOptions.forcesave,
|
||||||
isDisabled = !isModified && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
isDisabled = !isModified && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
||||||
if (toolbarView.btnSave.isDisabled() !== isDisabled)
|
toolbarView.btnSave.setDisabled(isDisabled);
|
||||||
toolbarView.btnsSave.forEach(function(button) {
|
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(isDisabled);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onDocumentCanSaveChanged: function (isCanSave) {
|
onDocumentCanSaveChanged: function (isCanSave) {
|
||||||
var application = this.getApplication(),
|
var toolbarView = this.getApplication().getController('Toolbar').getView('Toolbar');
|
||||||
toolbarController = application.getController('Toolbar'),
|
if ( toolbarView ) {
|
||||||
toolbarView = toolbarController.getView('Toolbar');
|
|
||||||
if (toolbarView) {
|
|
||||||
var isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
var isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
|
||||||
forcesave = this.appOptions.forcesave,
|
forcesave = this.appOptions.forcesave,
|
||||||
isDisabled = !isCanSave && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
isDisabled = !isCanSave && !isSyncButton && !forcesave || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1 && !forcesave;
|
||||||
if (toolbarView.btnSave.isDisabled() !== isDisabled)
|
toolbarView.btnSave.setDisabled(isDisabled);
|
||||||
toolbarView.btnsSave.forEach(function(button) {
|
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(isDisabled);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -2013,7 +2008,18 @@ define([
|
||||||
txtAddNotes: 'Click to add notes',
|
txtAddNotes: 'Click to add notes',
|
||||||
warnNoLicenseUsers: 'This version of ONLYOFFICE Editors has certain limitations for concurrent users.<br>If you need more please consider upgrading your current license or purchasing a commercial one.',
|
warnNoLicenseUsers: 'This version of ONLYOFFICE Editors has certain limitations for concurrent users.<br>If you need more please consider upgrading your current license or purchasing a commercial one.',
|
||||||
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
||||||
txtAddFirstSlide: 'Click to add first slide'
|
txtAddFirstSlide: 'Click to add first slide',
|
||||||
|
txtTheme_blank: 'Blank',
|
||||||
|
txtTheme_pixel: 'Pixel',
|
||||||
|
txtTheme_classic: 'Classic',
|
||||||
|
txtTheme_official: 'Official',
|
||||||
|
txtTheme_green: 'Green',
|
||||||
|
txtTheme_lines: 'Lines',
|
||||||
|
txtTheme_office: 'Office',
|
||||||
|
txtTheme_safari: 'Safari',
|
||||||
|
txtTheme_dotted: 'Dotted',
|
||||||
|
txtTheme_corner: 'Corner',
|
||||||
|
txtTheme_turtle: 'Turtle'
|
||||||
}
|
}
|
||||||
})(), PE.Controllers.Main || {}))
|
})(), PE.Controllers.Main || {}))
|
||||||
});
|
});
|
||||||
|
|
|
@ -56,12 +56,22 @@ define([
|
||||||
],
|
],
|
||||||
|
|
||||||
initialize: function() {
|
initialize: function() {
|
||||||
|
var me = this;
|
||||||
this.addListeners({
|
this.addListeners({
|
||||||
'FileMenu': {
|
'FileMenu': {
|
||||||
'settings:apply': _.bind(this.applySettings, this)
|
'settings:apply': _.bind(this.applySettings, this)
|
||||||
},
|
},
|
||||||
'Statusbar': {
|
'Statusbar': {
|
||||||
'langchanged': this.onLangMenu
|
'langchanged': this.onLangMenu
|
||||||
|
},
|
||||||
|
'Common.Views.Header': {
|
||||||
|
'statusbar:hide': function (view, status) {
|
||||||
|
me.statusbar.setVisible(!status);
|
||||||
|
Common.localStorage.setBool('pe-hidden-status', status);
|
||||||
|
|
||||||
|
Common.NotificationCenter.trigger('layout:changed', 'status');
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', this.statusbar);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this._state = {
|
this._state = {
|
||||||
|
|
|
@ -129,10 +129,16 @@ define([
|
||||||
'menu:show': this.onFileMenu.bind(this, 'show')
|
'menu:show': this.onFileMenu.bind(this, 'show')
|
||||||
},
|
},
|
||||||
'Common.Views.Header': {
|
'Common.Views.Header': {
|
||||||
|
'toolbar:setcompact': this.onChangeCompactView.bind(this),
|
||||||
'print': function (opts) {
|
'print': function (opts) {
|
||||||
var _main = this.getApplication().getController('Main');
|
var _main = this.getApplication().getController('Main');
|
||||||
_main.onPrint();
|
_main.onPrint();
|
||||||
},
|
},
|
||||||
|
'save': function (opts) {
|
||||||
|
this.api.asc_Save();
|
||||||
|
},
|
||||||
|
'undo': this.onUndo,
|
||||||
|
'redo': this.onRedo,
|
||||||
'downloadas': function (opts) {
|
'downloadas': function (opts) {
|
||||||
var _main = this.getApplication().getController('Main');
|
var _main = this.getApplication().getController('Main');
|
||||||
var _file_type = _main.document.fileType,
|
var _file_type = _main.document.fileType,
|
||||||
|
@ -212,10 +218,14 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onLaunch: function() {
|
onLaunch: function() {
|
||||||
// Create toolbar view
|
|
||||||
this.toolbar = this.createView('Toolbar');
|
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
|
// Create toolbar view
|
||||||
|
me.toolbar = me.createView('Toolbar');
|
||||||
|
me.toolbar.btnSave.on('disabled', _.bind(this.onBtnChangeState, this, 'save:disabled'));
|
||||||
|
me.toolbar.btnUndo.on('disabled', _.bind(this.onBtnChangeState, this, 'undo:disabled'));
|
||||||
|
me.toolbar.btnRedo.on('disabled', _.bind(this.onBtnChangeState, this, 'redo:disabled'));
|
||||||
|
|
||||||
Common.NotificationCenter.on('app:ready', me.onAppReady.bind(me));
|
Common.NotificationCenter.on('app:ready', me.onAppReady.bind(me));
|
||||||
Common.NotificationCenter.on('app:face', me.onAppShowed.bind(me));
|
Common.NotificationCenter.on('app:face', me.onAppShowed.bind(me));
|
||||||
|
|
||||||
|
@ -284,18 +294,10 @@ define([
|
||||||
toolbar.btnInsertTable.menu.on('item:click', _.bind(this.onInsertTableClick, this));
|
toolbar.btnInsertTable.menu.on('item:click', _.bind(this.onInsertTableClick, this));
|
||||||
toolbar.btnClearStyle.on('click', _.bind(this.onClearStyleClick, this));
|
toolbar.btnClearStyle.on('click', _.bind(this.onClearStyleClick, this));
|
||||||
toolbar.btnCopyStyle.on('toggle', _.bind(this.onCopyStyleToggle, this));
|
toolbar.btnCopyStyle.on('toggle', _.bind(this.onCopyStyleToggle, this));
|
||||||
toolbar.btnAdvSettings.on('click', _.bind(this.onAdvSettingsClick, this));
|
|
||||||
toolbar.btnColorSchemas.menu.on('item:click', _.bind(this.onColorSchemaClick, this));
|
toolbar.btnColorSchemas.menu.on('item:click', _.bind(this.onColorSchemaClick, this));
|
||||||
toolbar.btnSlideSize.menu.on('item:click', _.bind(this.onSlideSize, this));
|
toolbar.btnSlideSize.menu.on('item:click', _.bind(this.onSlideSize, this));
|
||||||
toolbar.mnuInsertChartPicker.on('item:click', _.bind(this.onSelectChart, this));
|
toolbar.mnuInsertChartPicker.on('item:click', _.bind(this.onSelectChart, this));
|
||||||
toolbar.listTheme.on('click', _.bind(this.onListThemeSelect, this));
|
toolbar.listTheme.on('click', _.bind(this.onListThemeSelect, this));
|
||||||
toolbar.mnuitemHideStatusBar.on('toggle', _.bind(this.onHideStatusBar, this));
|
|
||||||
toolbar.mnuitemHideRulers.on('toggle', _.bind(this.onHideRulers, this));
|
|
||||||
toolbar.mnuitemCompactToolbar.on('toggle', _.bind(this.onChangeCompactView, this));
|
|
||||||
toolbar.btnFitPage.on('toggle', _.bind(this.onZoomToPageToggle, this));
|
|
||||||
toolbar.btnFitWidth.on('toggle', _.bind(this.onZoomToWidthToggle, this));
|
|
||||||
toolbar.mnuZoomIn.on('click', _.bind(this.onZoomInClick, this));
|
|
||||||
toolbar.mnuZoomOut.on('click', _.bind(this.onZoomOutClick, this));
|
|
||||||
toolbar.btnInsertEquation.on('click', _.bind(this.onInsertEquationClick, this));
|
toolbar.btnInsertEquation.on('click', _.bind(this.onInsertEquationClick, this));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -360,7 +362,6 @@ define([
|
||||||
var me = this;
|
var me = this;
|
||||||
Common.Utils.asyncCall(function () {
|
Common.Utils.asyncCall(function () {
|
||||||
me.onChangeCompactView(null, !me.toolbar.isCompact());
|
me.onChangeCompactView(null, !me.toolbar.isCompact());
|
||||||
me.toolbar.mnuitemCompactToolbar.setChecked(me.toolbar.isCompact(), true);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -505,14 +506,9 @@ define([
|
||||||
btnHorizontalAlign.menu.clearAll();
|
btnHorizontalAlign.menu.clearAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (btnHorizontalAlign.rendered) {
|
if ( btnHorizontalAlign.rendered && btnHorizontalAlign.$icon ) {
|
||||||
var iconEl = $('.icon', btnHorizontalAlign.cmpEl);
|
btnHorizontalAlign.$icon.removeClass(btnHorizontalAlign.options.icls).addClass(align);
|
||||||
|
btnHorizontalAlign.options.icls = align;
|
||||||
if (iconEl) {
|
|
||||||
iconEl.removeClass(btnHorizontalAlign.options.icls);
|
|
||||||
btnHorizontalAlign.options.icls = align;
|
|
||||||
iconEl.addClass(btnHorizontalAlign.options.icls);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -538,14 +534,9 @@ define([
|
||||||
btnVerticalAlign.menu.clearAll();
|
btnVerticalAlign.menu.clearAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (btnVerticalAlign.rendered) {
|
if ( btnVerticalAlign.rendered && btnVerticalAlign.$icon ) {
|
||||||
var iconEl = $('.icon', btnVerticalAlign.cmpEl);
|
btnVerticalAlign.$icon.removeClass(btnVerticalAlign.options.icls).addClass(align);
|
||||||
|
btnVerticalAlign.options.icls = align;
|
||||||
if (iconEl) {
|
|
||||||
iconEl.removeClass(btnVerticalAlign.options.icls);
|
|
||||||
btnVerticalAlign.options.icls = align;
|
|
||||||
iconEl.addClass(btnVerticalAlign.options.icls);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -776,18 +767,7 @@ define([
|
||||||
this.editMode = false;
|
this.editMode = false;
|
||||||
},
|
},
|
||||||
|
|
||||||
onApiZoomChange: function(percent, type) {
|
onApiZoomChange: function(percent, type) {},
|
||||||
if (this._state.zoom_type !== type) {
|
|
||||||
this.toolbar.btnFitPage.setChecked(type == 2, true);
|
|
||||||
this.toolbar.btnFitWidth.setChecked(type == 1, true);
|
|
||||||
this._state.zoom_type = type;
|
|
||||||
}
|
|
||||||
if (this._state.zoom_percent !== percent) {
|
|
||||||
$('.menu-zoom .zoom', this.toolbar.el).html(percent + '%');
|
|
||||||
this._state.zoom_percent = percent;
|
|
||||||
}
|
|
||||||
this.toolbar.mnuZoom.options.value = percent;
|
|
||||||
},
|
|
||||||
|
|
||||||
onApiInitEditorStyles: function(themes) {
|
onApiInitEditorStyles: function(themes) {
|
||||||
if (themes) {
|
if (themes) {
|
||||||
|
@ -903,24 +883,27 @@ define([
|
||||||
var toolbar = this.toolbar;
|
var toolbar = this.toolbar;
|
||||||
if (this.api && this.api.asc_isDocumentCanSave) {
|
if (this.api && this.api.asc_isDocumentCanSave) {
|
||||||
var isModified = this.api.asc_isDocumentCanSave();
|
var isModified = this.api.asc_isDocumentCanSave();
|
||||||
var isSyncButton = $('.icon', this.toolbar.btnSave.cmpEl).hasClass('btn-synch');
|
var isSyncButton = this.toolbar.btnCollabChanges.$icon.hasClass('btn-synch');
|
||||||
if (!isModified && !isSyncButton && !this.toolbar.mode.forcesave)
|
if (!isModified && !isSyncButton && !this.toolbar.mode.forcesave)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this.api.asc_Save();
|
this.api.asc_Save();
|
||||||
}
|
}
|
||||||
|
|
||||||
toolbar.btnsSave.forEach(function(button) {
|
toolbar.btnSave.setDisabled(!toolbar.mode.forcesave);
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(!toolbar.mode.forcesave);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
||||||
Common.component.Analytics.trackEvent('Save');
|
Common.component.Analytics.trackEvent('Save');
|
||||||
Common.component.Analytics.trackEvent('ToolBar', 'Save');
|
Common.component.Analytics.trackEvent('ToolBar', 'Save');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onBtnChangeState: function(prop) {
|
||||||
|
if ( /\:disabled$/.test(prop) ) {
|
||||||
|
var _is_disabled = arguments[2];
|
||||||
|
this.toolbar.fireEvent(prop, [_is_disabled]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onUndo: function(btn, e) {
|
onUndo: function(btn, e) {
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
this.api.Undo();
|
this.api.Undo();
|
||||||
|
@ -1034,14 +1017,11 @@ define([
|
||||||
|
|
||||||
onMenuHorizontalAlignSelect: function(menu, item) {
|
onMenuHorizontalAlignSelect: function(menu, item) {
|
||||||
this._state.pralign = undefined;
|
this._state.pralign = undefined;
|
||||||
var btnHorizontalAlign = this.toolbar.btnHorizontalAlign,
|
var btnHorizontalAlign = this.toolbar.btnHorizontalAlign;
|
||||||
iconEl = $('.icon', btnHorizontalAlign.cmpEl);
|
|
||||||
|
|
||||||
if (iconEl) {
|
btnHorizontalAlign.$icon.removeClass(btnHorizontalAlign.options.icls);
|
||||||
iconEl.removeClass(btnHorizontalAlign.options.icls);
|
btnHorizontalAlign.options.icls = !item.checked ? 'btn-align-left' : item.options.icls;
|
||||||
btnHorizontalAlign.options.icls = !item.checked ? 'btn-align-left' : item.options.icls;
|
btnHorizontalAlign.$icon.addClass(btnHorizontalAlign.options.icls);
|
||||||
iconEl.addClass(btnHorizontalAlign.options.icls);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.api && item.checked)
|
if (this.api && item.checked)
|
||||||
this.api.put_PrAlign(item.value);
|
this.api.put_PrAlign(item.value);
|
||||||
|
@ -1051,14 +1031,11 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onMenuVerticalAlignSelect: function(menu, item) {
|
onMenuVerticalAlignSelect: function(menu, item) {
|
||||||
var btnVerticalAlign = this.toolbar.btnVerticalAlign,
|
var btnVerticalAlign = this.toolbar.btnVerticalAlign;
|
||||||
iconEl = $('.icon', btnVerticalAlign.cmpEl);
|
|
||||||
|
|
||||||
if (iconEl) {
|
btnVerticalAlign.$icon.removeClass(btnVerticalAlign.options.icls);
|
||||||
iconEl.removeClass(btnVerticalAlign.options.icls);
|
btnVerticalAlign.options.icls = !item.checked ? 'btn-align-middle' : item.options.icls;
|
||||||
btnVerticalAlign.options.icls = !item.checked ? 'btn-align-middle' : item.options.icls;
|
btnVerticalAlign.$icon.addClass(btnVerticalAlign.options.icls);
|
||||||
iconEl.addClass(btnVerticalAlign.options.icls);
|
|
||||||
}
|
|
||||||
|
|
||||||
this._state.vtextalign = undefined;
|
this._state.vtextalign = undefined;
|
||||||
if (this.api && item.checked)
|
if (this.api && item.checked)
|
||||||
|
@ -1445,11 +1422,6 @@ define([
|
||||||
this.modeAlwaysSetStyle = state;
|
this.modeAlwaysSetStyle = state;
|
||||||
},
|
},
|
||||||
|
|
||||||
onAdvSettingsClick: function(btn, e) {
|
|
||||||
this.toolbar.fireEvent('file:settings', this);
|
|
||||||
btn.cmpEl.blur();
|
|
||||||
},
|
|
||||||
|
|
||||||
onColorSchemaClick: function(menu, item) {
|
onColorSchemaClick: function(menu, item) {
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
this.api.ChangeColorScheme(item.value);
|
this.api.ChangeColorScheme(item.value);
|
||||||
|
@ -1563,69 +1535,6 @@ define([
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
||||||
},
|
},
|
||||||
|
|
||||||
onHideStatusBar: function(item, checked) {
|
|
||||||
var headerView = this.getApplication().getController('Statusbar').getView('Statusbar');
|
|
||||||
headerView && headerView.setVisible(!checked);
|
|
||||||
|
|
||||||
Common.localStorage.setBool('pe-hidden-status', checked);
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('layout:changed', 'status');
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onHideRulers: function(item, checked) {
|
|
||||||
if (this.api) {
|
|
||||||
this.api.asc_SetViewRulers(!checked);
|
|
||||||
}
|
|
||||||
|
|
||||||
Common.localStorage.setBool('pe-hidden-rulers', checked);
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('layout:changed', 'rulers');
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onZoomToPageToggle: function(item, state) {
|
|
||||||
if (this.api) {
|
|
||||||
this._state.zoom_type = undefined;
|
|
||||||
this._state.zoom_percent = undefined;
|
|
||||||
if (state)
|
|
||||||
this.api.zoomFitToPage();
|
|
||||||
else
|
|
||||||
this.api.zoomCustomMode();
|
|
||||||
}
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onZoomToWidthToggle: function(item, state) {
|
|
||||||
if (this.api) {
|
|
||||||
this._state.zoom_type = undefined;
|
|
||||||
this._state.zoom_percent = undefined;
|
|
||||||
if (state)
|
|
||||||
this.api.zoomFitToWidth();
|
|
||||||
else
|
|
||||||
this.api.zoomCustomMode();
|
|
||||||
}
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onZoomInClick: function(btn) {
|
|
||||||
this._state.zoom_type = undefined;
|
|
||||||
this._state.zoom_percent = undefined;
|
|
||||||
if (this.api)
|
|
||||||
this.api.zoomIn();
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
onZoomOutClick: function(btn) {
|
|
||||||
this._state.zoom_type = undefined;
|
|
||||||
this._state.zoom_percent = undefined;
|
|
||||||
if (this.api)
|
|
||||||
this.api.zoomOut();
|
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
|
||||||
},
|
|
||||||
|
|
||||||
_clearBullets: function() {
|
_clearBullets: function() {
|
||||||
this.toolbar.btnMarkers.toggle(false, true);
|
this.toolbar.btnMarkers.toggle(false, true);
|
||||||
this.toolbar.btnNumbers.toggle(false, true);
|
this.toolbar.btnNumbers.toggle(false, true);
|
||||||
|
@ -1972,7 +1881,8 @@ define([
|
||||||
|
|
||||||
me.toolbar.listTheme.menuPicker.store.reset([]); // remove all
|
me.toolbar.listTheme.menuPicker.store.reset([]); // remove all
|
||||||
|
|
||||||
var themeStore = this.getCollection('SlideThemes');
|
var themeStore = this.getCollection('SlideThemes'),
|
||||||
|
mainController = this.getApplication().getController('Main');
|
||||||
if (themeStore) {
|
if (themeStore) {
|
||||||
var arr = [];
|
var arr = [];
|
||||||
_.each(defaultThemes.concat(docThemes), function(theme) {
|
_.each(defaultThemes.concat(docThemes), function(theme) {
|
||||||
|
@ -1980,13 +1890,15 @@ define([
|
||||||
imageUrl: theme.get_Image(),
|
imageUrl: theme.get_Image(),
|
||||||
uid : Common.UI.getId(),
|
uid : Common.UI.getId(),
|
||||||
themeId : theme.get_Index(),
|
themeId : theme.get_Index(),
|
||||||
|
tip : mainController.translationTable[theme.get_Name()] || theme.get_Name(),
|
||||||
itemWidth : 85,
|
itemWidth : 85,
|
||||||
itemHeight : 38
|
itemHeight : 38
|
||||||
}));
|
}));
|
||||||
me.toolbar.listTheme.menuPicker.store.add({
|
me.toolbar.listTheme.menuPicker.store.add({
|
||||||
imageUrl: theme.get_Image(),
|
imageUrl: theme.get_Image(),
|
||||||
uid : Common.UI.getId(),
|
uid : Common.UI.getId(),
|
||||||
themeId : theme.get_Index()
|
themeId : theme.get_Index(),
|
||||||
|
tip : mainController.translationTable[theme.get_Name()] || theme.get_Name()
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
themeStore.reset(arr);
|
themeStore.reset(arr);
|
||||||
|
@ -2051,7 +1963,7 @@ define([
|
||||||
var toolbar = this.toolbar;
|
var toolbar = this.toolbar;
|
||||||
toolbar.$el.find('.toolbar').toggleClass('masked', disable);
|
toolbar.$el.find('.toolbar').toggleClass('masked', disable);
|
||||||
|
|
||||||
this.toolbar.lockToolbar(PE.enumLock.menuFileOpen, disable, {array: [toolbar.btnsAddSlide, toolbar.btnChangeSlide, toolbar.btnPreview, toolbar.btnHide]});
|
this.toolbar.lockToolbar(PE.enumLock.menuFileOpen, disable, {array: toolbar.btnsAddSlide.concat(toolbar.btnChangeSlide, toolbar.btnPreview)});
|
||||||
if(disable) {
|
if(disable) {
|
||||||
mask = $("<div class='toolbar-mask'>").appendTo(toolbar.$el.find('.toolbar'));
|
mask = $("<div class='toolbar-mask'>").appendTo(toolbar.$el.find('.toolbar'));
|
||||||
Common.util.Shortcuts.suspendEvents('command+k, ctrl+k, alt+h, command+f5, ctrl+f5');
|
Common.util.Shortcuts.suspendEvents('command+k, ctrl+k, alt+h, command+f5, ctrl+f5');
|
||||||
|
@ -2086,11 +1998,23 @@ define([
|
||||||
if ( $panel )
|
if ( $panel )
|
||||||
me.toolbar.addTab(tab, $panel, 3);
|
me.toolbar.addTab(tab, $panel, 3);
|
||||||
|
|
||||||
if (config.isDesktopApp && config.isOffline) {
|
if ( config.isDesktopApp ) {
|
||||||
tab = {action: 'protect', caption: me.toolbar.textTabProtect};
|
// hide 'print' and 'save' buttons group and next separator
|
||||||
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
|
me.toolbar.btnPrint.$el.parents('.group').hide().next().hide();
|
||||||
if ( $panel )
|
|
||||||
me.toolbar.addTab(tab, $panel, 4);
|
// hide 'undo' and 'redo' buttons and get container
|
||||||
|
var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent();
|
||||||
|
|
||||||
|
// move 'paste' button to the container instead of 'undo' and 'redo'
|
||||||
|
me.toolbar.btnPaste.$el.detach().appendTo($box);
|
||||||
|
me.toolbar.btnCopy.$el.removeClass('split');
|
||||||
|
|
||||||
|
if ( config.isOffline ) {
|
||||||
|
tab = {action: 'protect', caption: me.toolbar.textTabProtect};
|
||||||
|
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
|
||||||
|
if ($panel)
|
||||||
|
me.toolbar.addTab(tab, $panel, 4);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -49,7 +49,7 @@ define([
|
||||||
], function (Viewport) {
|
], function (Viewport) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
PE.Controllers.Viewport = Backbone.Controller.extend({
|
PE.Controllers.Viewport = Backbone.Controller.extend(_.assign({
|
||||||
// Specifying a Viewport model
|
// Specifying a Viewport model
|
||||||
models: [],
|
models: [],
|
||||||
|
|
||||||
|
@ -69,6 +69,10 @@ define([
|
||||||
|
|
||||||
// This most important part when we will tell our controller what events should be handled
|
// This most important part when we will tell our controller what events should be handled
|
||||||
this.addListeners({
|
this.addListeners({
|
||||||
|
'FileMenu': {
|
||||||
|
'menu:hide': me.onFileMenu.bind(me, 'hide'),
|
||||||
|
'menu:show': me.onFileMenu.bind(me, 'show')
|
||||||
|
},
|
||||||
'Toolbar': {
|
'Toolbar': {
|
||||||
'render:before' : function (toolbar) {
|
'render:before' : function (toolbar) {
|
||||||
var config = PE.getController('Main').appOptions;
|
var config = PE.getController('Main').appOptions;
|
||||||
|
@ -76,7 +80,27 @@ define([
|
||||||
toolbar.setExtra('left', me.header.getPanel('left', config));
|
toolbar.setExtra('left', me.header.getPanel('left', config));
|
||||||
},
|
},
|
||||||
'view:compact' : function (toolbar, state) {
|
'view:compact' : function (toolbar, state) {
|
||||||
me.viewport.vlayout.panels[0].height = state ? 32 : 32+67;
|
me.header.mnuitemCompactToolbar.setChecked(state, true);
|
||||||
|
me.viewport.vlayout.getItem('toolbar').height = state ?
|
||||||
|
Common.Utils.InternalSettings.get('toolbar-height-compact') : Common.Utils.InternalSettings.get('toolbar-height-normal');
|
||||||
|
},
|
||||||
|
'undo:disabled' : function (state) {
|
||||||
|
if ( me.header.btnUndo ) {
|
||||||
|
if ( me.header.btnUndo.keepState )
|
||||||
|
me.header.btnUndo.keepState.disabled = state;
|
||||||
|
else me.header.btnUndo.setDisabled(state);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'redo:disabled' : function (state) {
|
||||||
|
if ( me.header.btnRedo ) {
|
||||||
|
if ( me.header.btnRedo.keepState )
|
||||||
|
me.header.btnRedo.keepState.disabled = state;
|
||||||
|
else me.header.btnRedo.setDisabled(state);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'save:disabled' : function (state) {
|
||||||
|
if ( me.header.btnSave )
|
||||||
|
me.header.btnSave.setDisabled(state);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Events generated by main view
|
// Events generated by main view
|
||||||
|
@ -89,6 +113,7 @@ define([
|
||||||
|
|
||||||
setApi: function(api) {
|
setApi: function(api) {
|
||||||
this.api = api;
|
this.api = api;
|
||||||
|
this.api.asc_registerCallback('asc_onZoomChange', this.onApiZoomChange.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
@ -111,20 +136,152 @@ define([
|
||||||
Common.localStorage.setItem('pe-mainmenu-width',leftPanel.width());
|
Common.localStorage.setItem('pe-mainmenu-width',leftPanel.width());
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
|
this.header.mnuitemFitPage = this.header.fakeMenuItem();
|
||||||
|
this.header.mnuitemFitWidth = this.header.fakeMenuItem();
|
||||||
|
|
||||||
Common.NotificationCenter.on('app:face', this.onAppShowed.bind(this));
|
Common.NotificationCenter.on('app:face', this.onAppShowed.bind(this));
|
||||||
|
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
onAppShowed: function (config) {
|
onAppShowed: function (config) {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
me.appConfig = config;
|
||||||
|
|
||||||
|
var _intvars = Common.Utils.InternalSettings;
|
||||||
|
var $filemenu = $('.toolbar-fullview-panel');
|
||||||
|
$filemenu.css('top', _intvars.get('toolbar-height-tabs'));
|
||||||
|
|
||||||
if ( !config.isEdit ||
|
if ( !config.isEdit ||
|
||||||
( !Common.localStorage.itemExists("pe-compact-toolbar") &&
|
( !Common.localStorage.itemExists("pe-compact-toolbar") &&
|
||||||
config.customization && config.customization.compactToolbar ))
|
config.customization && config.customization.compactToolbar ))
|
||||||
{
|
{
|
||||||
me.viewport.vlayout.panels[0].height = 32;
|
me.viewport.vlayout.getItem('toolbar').height = _intvars.get('toolbar-height-compact');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( config.isDesktopApp && config.isEdit ) {
|
||||||
|
var $title = me.viewport.vlayout.getItem('title').el;
|
||||||
|
$title.html(me.header.getPanel('title', config)).show();
|
||||||
|
|
||||||
|
var toolbar = me.viewport.vlayout.getItem('toolbar');
|
||||||
|
toolbar.el.addClass('top-title');
|
||||||
|
toolbar.height -= _intvars.get('toolbar-height-tabs') - _intvars.get('toolbar-height-tabs-top-title');
|
||||||
|
|
||||||
|
var _tabs_new_height = _intvars.get('toolbar-height-tabs-top-title');
|
||||||
|
_intvars.set('toolbar-height-tabs', _tabs_new_height);
|
||||||
|
_intvars.set('toolbar-height-compact', _tabs_new_height);
|
||||||
|
_intvars.set('toolbar-height-normal', _tabs_new_height + _intvars.get('toolbar-height-controls'));
|
||||||
|
|
||||||
|
$filemenu.css('top', _tabs_new_height + _intvars.get('document-title-height'));
|
||||||
|
|
||||||
|
toolbar = me.getApplication().getController('Toolbar').getView('Toolbar');
|
||||||
|
toolbar.btnCollabChanges = me.header.btnSave;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onAppReady: function (config) {
|
||||||
|
var me = this;
|
||||||
|
if ( me.header.btnOptions ) {
|
||||||
|
var compactview = !config.isEdit;
|
||||||
|
if ( config.isEdit ) {
|
||||||
|
if ( Common.localStorage.itemExists("pe-compact-toolbar") ) {
|
||||||
|
compactview = Common.localStorage.getBool("pe-compact-toolbar");
|
||||||
|
} else
|
||||||
|
if ( config.customization && config.customization.compactToolbar )
|
||||||
|
compactview = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
me.header.mnuitemCompactToolbar = new Common.UI.MenuItem({
|
||||||
|
caption: me.header.textCompactView,
|
||||||
|
checked: compactview,
|
||||||
|
checkable: true,
|
||||||
|
value: 'toolbar'
|
||||||
|
});
|
||||||
|
|
||||||
|
var mnuitemHideStatusBar = new Common.UI.MenuItem({
|
||||||
|
caption: me.header.textHideStatusBar,
|
||||||
|
checked: Common.localStorage.getBool("pe-hidden-status"),
|
||||||
|
checkable: true,
|
||||||
|
value: 'statusbar'
|
||||||
|
});
|
||||||
|
|
||||||
|
if ( config.canBrandingExt && config.customization && config.customization.statusBar === false )
|
||||||
|
mnuitemHideStatusBar.hide();
|
||||||
|
|
||||||
|
var mnuitemHideRulers = new Common.UI.MenuItem({
|
||||||
|
caption: me.header.textHideLines,
|
||||||
|
checked: Common.localStorage.getBool("pe-hidden-rulers", true),
|
||||||
|
checkable: true,
|
||||||
|
value: 'rulers'
|
||||||
|
});
|
||||||
|
|
||||||
|
me.header.mnuitemFitPage = new Common.UI.MenuItem({
|
||||||
|
caption: me.textFitPage,
|
||||||
|
checkable: true,
|
||||||
|
checked: me.header.mnuitemFitPage.isChecked(),
|
||||||
|
value: 'zoom:page'
|
||||||
|
});
|
||||||
|
|
||||||
|
me.header.mnuitemFitWidth = new Common.UI.MenuItem({
|
||||||
|
caption: me.textFitWidth,
|
||||||
|
checkable: true,
|
||||||
|
checked: me.header.mnuitemFitWidth.isChecked(),
|
||||||
|
value: 'zoom:width'
|
||||||
|
});
|
||||||
|
|
||||||
|
me.header.mnuZoom = new Common.UI.MenuItem({
|
||||||
|
template: _.template([
|
||||||
|
'<div id="hdr-menu-zoom" class="menu-zoom" style="height: 25px;" ',
|
||||||
|
'<% if(!_.isUndefined(options.stopPropagation)) { %>',
|
||||||
|
'data-stopPropagation="true"',
|
||||||
|
'<% } %>', '>',
|
||||||
|
'<label class="title">' + me.header.textZoom + '</label>',
|
||||||
|
'<button id="hdr-menu-zoom-in" type="button" style="float:right; margin: 2px 5px 0 0;" class="btn small btn-toolbar"><i class="icon btn-zoomin"> </i></button>',
|
||||||
|
'<label class="zoom"><%= options.value %>%</label>',
|
||||||
|
'<button id="hdr-menu-zoom-out" type="button" style="float:right; margin-top: 2px;" class="btn small btn-toolbar"><i class="icon btn-zoomout"> </i></button>',
|
||||||
|
'</div>'
|
||||||
|
].join('')),
|
||||||
|
stopPropagation: true,
|
||||||
|
value: me.header.mnuZoom.options.value
|
||||||
|
});
|
||||||
|
|
||||||
|
me.header.btnOptions.setMenu(new Common.UI.Menu({
|
||||||
|
cls: 'pull-right',
|
||||||
|
style: 'min-width: 180px;',
|
||||||
|
items: [
|
||||||
|
me.header.mnuitemCompactToolbar,
|
||||||
|
mnuitemHideStatusBar,
|
||||||
|
mnuitemHideRulers,
|
||||||
|
{caption:'--'},
|
||||||
|
me.header.mnuitemFitPage,
|
||||||
|
me.header.mnuitemFitWidth,
|
||||||
|
me.header.mnuZoom,
|
||||||
|
{caption:'--'},
|
||||||
|
new Common.UI.MenuItem({
|
||||||
|
caption: me.header.textAdvSettings,
|
||||||
|
value: 'advanced'
|
||||||
|
})
|
||||||
|
]
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
var _on_btn_zoom = function (btn) {
|
||||||
|
btn == 'up' ? me.api.zoomIn() : me.api.zoomOut();
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
|
};
|
||||||
|
|
||||||
|
(new Common.UI.Button({
|
||||||
|
el : $('#hdr-menu-zoom-out', me.header.mnuZoom.$el),
|
||||||
|
cls : 'btn-toolbar'
|
||||||
|
})).on('click', _on_btn_zoom.bind(me, 'down'));
|
||||||
|
|
||||||
|
(new Common.UI.Button({
|
||||||
|
el : $('#hdr-menu-zoom-in', me.header.mnuZoom.$el),
|
||||||
|
cls : 'btn-toolbar'
|
||||||
|
})).on('click', _on_btn_zoom.bind(me, 'up'));
|
||||||
|
|
||||||
|
me.header.btnOptions.menu.on('item:click', me.onOptionsItemClick.bind(this));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onLayoutChanged: function(area) {
|
onLayoutChanged: function(area) {
|
||||||
switch (area) {
|
switch (area) {
|
||||||
|
@ -201,6 +358,51 @@ define([
|
||||||
element.msRequestFullscreen();
|
element.msRequestFullscreen();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
|
||||||
|
onFileMenu: function (opts) {
|
||||||
|
var me = this;
|
||||||
|
var _need_disable = opts == 'show';
|
||||||
|
|
||||||
|
me.header.lockHeaderBtns( 'undo', _need_disable );
|
||||||
|
me.header.lockHeaderBtns( 'redo', _need_disable );
|
||||||
|
me.header.lockHeaderBtns( 'opts', _need_disable );
|
||||||
|
},
|
||||||
|
|
||||||
|
onApiZoomChange: function(percent, type) {
|
||||||
|
this.header.mnuitemFitPage.setChecked(type == 2, true);
|
||||||
|
this.header.mnuitemFitWidth.setChecked(type == 1, true);
|
||||||
|
this.header.mnuZoom.options.value = percent;
|
||||||
|
|
||||||
|
if ( this.header.mnuZoom.$el )
|
||||||
|
$('.menu-zoom label.zoom', this.header.mnuZoom.$el).html(percent + '%');
|
||||||
|
},
|
||||||
|
|
||||||
|
onOptionsItemClick: function (menu, item, e) {
|
||||||
|
var me = this;
|
||||||
|
|
||||||
|
switch ( item.value ) {
|
||||||
|
case 'toolbar': me.header.fireEvent('toolbar:setcompact', [menu, item.isChecked()]); break;
|
||||||
|
case 'statusbar': me.header.fireEvent('statusbar:hide', [item, item.isChecked()]); break;
|
||||||
|
case 'rulers':
|
||||||
|
me.api.asc_SetViewRulers(!item.isChecked());
|
||||||
|
Common.localStorage.setBool('pe-hidden-rulers', item.isChecked());
|
||||||
|
Common.NotificationCenter.trigger('layout:changed', 'rulers');
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
|
break;
|
||||||
|
case 'zoom:page':
|
||||||
|
item.isChecked() ? me.api.zoomFitToPage() : me.api.zoomCustomMode();
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
|
break;
|
||||||
|
case 'zoom:width':
|
||||||
|
item.isChecked() ? me.api.zoomFitToWidth() : me.api.zoomCustomMode();
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.header);
|
||||||
|
break;
|
||||||
|
case 'advanced': me.header.fireEvent('file:settings', me.header); break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
textFitPage: 'Fit to Page',
|
||||||
|
textFitWidth: 'Fit to Width'
|
||||||
|
}, PE.Controllers.Viewport));
|
||||||
});
|
});
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
<ul>
|
<ul>
|
||||||
<% for(var i in tabs) { %>
|
<% for(var i in tabs) { %>
|
||||||
<li class="ribtab<% if (tabs[i].extcls) print(' ' + tabs[i].extcls) %>">
|
<li class="ribtab<% if (tabs[i].extcls) print(' ' + tabs[i].extcls) %>">
|
||||||
<div class="tab-bg" />
|
|
||||||
<a data-tab="<%= tabs[i].action %>" data-title="<%= tabs[i].caption %>"><%= tabs[i].caption %></a>
|
<a data-tab="<%= tabs[i].action %>" data-title="<%= tabs[i].caption %>"><%= tabs[i].caption %></a>
|
||||||
</li>
|
</li>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
@ -111,16 +110,7 @@
|
||||||
<span class="btn-slot split" id="slot-btn-slidesize"></span>
|
<span class="btn-slot split" id="slot-btn-slidesize"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="group" id="slot-field-styles" style="width: 100%; min-width: 140px;">
|
<div class="group" id="slot-field-styles" style="width: 100%; min-width: 140px;"></div>
|
||||||
</div>
|
|
||||||
<div class="group no-mask">
|
|
||||||
<div class="elset">
|
|
||||||
<span class="btn-slot split" id="slot-btn-hidebars"></span>
|
|
||||||
</div>
|
|
||||||
<div class="elset">
|
|
||||||
<span class="btn-slot" id="slot-btn-settings"></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
<section class="panel" data-tab="ins">
|
<section class="panel" data-tab="ins">
|
||||||
<div class="group">
|
<div class="group">
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
<div id="file-menu-panel" class="toolbar-fullview-panel" style="display:none;"></div>
|
<div id="file-menu-panel" class="toolbar-fullview-panel" style="display:none;"></div>
|
||||||
</section>
|
</section>
|
||||||
<div id="viewport-vbox-layout" class="layout-ct vbox">
|
<div id="viewport-vbox-layout" class="layout-ct vbox">
|
||||||
|
<section id="app-title" class="layout-item"></section>
|
||||||
<div id="toolbar" class="layout-item"></div>
|
<div id="toolbar" class="layout-item"></div>
|
||||||
<div class="layout-item middle">
|
<div class="layout-item middle">
|
||||||
<div id="viewport-hbox-layout" class="layout-ct hbox">
|
<div id="viewport-hbox-layout" class="layout-ct hbox">
|
||||||
|
|
|
@ -530,12 +530,13 @@ define([
|
||||||
ToolTip = getUserName(moveData.get_UserId());
|
ToolTip = getUserName(moveData.get_UserId());
|
||||||
|
|
||||||
showPoint = [moveData.get_X()+me._XY[0], moveData.get_Y()+me._XY[1]];
|
showPoint = [moveData.get_X()+me._XY[0], moveData.get_Y()+me._XY[1]];
|
||||||
|
var maxwidth = showPoint[0];
|
||||||
showPoint[0] = me._BodyWidth - showPoint[0];
|
showPoint[0] = me._BodyWidth - showPoint[0];
|
||||||
showPoint[1] -= ((moveData.get_LockedObjectType()==2) ? me._TtHeight : 0);
|
showPoint[1] -= ((moveData.get_LockedObjectType()==2) ? me._TtHeight : 0);
|
||||||
|
|
||||||
if (showPoint[1] > me._XY[1] && showPoint[1]+me._TtHeight < me._XY[1]+me._Height) {
|
if (showPoint[1] > me._XY[1] && showPoint[1]+me._TtHeight < me._XY[1]+me._Height) {
|
||||||
src.text(ToolTip);
|
src.text(ToolTip);
|
||||||
src.css({visibility: 'visible', top: showPoint[1] + 'px', right: showPoint[0] + 'px'});
|
src.css({visibility: 'visible', top: showPoint[1] + 'px', right: showPoint[0] + 'px', 'max-width': maxwidth + 'px'});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
|
@ -2722,6 +2723,43 @@ define([
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var menuImgReplace = new Common.UI.MenuItem({
|
||||||
|
caption : me.textReplace,
|
||||||
|
menu : new Common.UI.Menu({
|
||||||
|
menuAlign: 'tl-tr',
|
||||||
|
items: [
|
||||||
|
new Common.UI.MenuItem({
|
||||||
|
caption : this.textFromFile
|
||||||
|
}).on('click', function(item) {
|
||||||
|
setTimeout(function(){
|
||||||
|
if (me.api) me.api.ChangeImageFromFile();
|
||||||
|
me.fireEvent('editcomplete', me);
|
||||||
|
}, 10);
|
||||||
|
}),
|
||||||
|
new Common.UI.MenuItem({
|
||||||
|
caption : this.textFromUrl
|
||||||
|
}).on('click', function(item) {
|
||||||
|
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)) {
|
||||||
|
var props = new Asc.asc_CImgProperty();
|
||||||
|
props.put_ImageUrl(checkUrl);
|
||||||
|
me.api.ImgApply(props);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
me.fireEvent('editcomplete', me);
|
||||||
|
}
|
||||||
|
})).show();
|
||||||
|
})
|
||||||
|
]
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
var menuAddCommentPara = new Common.UI.MenuItem({
|
var menuAddCommentPara = new Common.UI.MenuItem({
|
||||||
caption : me.addCommentText
|
caption : me.addCommentText
|
||||||
|
@ -3116,18 +3154,23 @@ define([
|
||||||
mnuGroupImg.setDisabled(!me.api.canGroup());
|
mnuGroupImg.setDisabled(!me.api.canGroup());
|
||||||
}
|
}
|
||||||
|
|
||||||
var imgdisabled = (value.imgProps!==undefined && value.imgProps.locked),
|
var isimage = (_.isUndefined(value.shapeProps) || value.shapeProps.value.get_FromImage()) && _.isUndefined(value.chartProps),
|
||||||
|
imgdisabled = (value.imgProps!==undefined && value.imgProps.locked),
|
||||||
shapedisabled = (value.shapeProps!==undefined && value.shapeProps.locked),
|
shapedisabled = (value.shapeProps!==undefined && value.shapeProps.locked),
|
||||||
chartdisabled = (value.chartProps!==undefined && value.chartProps.locked),
|
chartdisabled = (value.chartProps!==undefined && value.chartProps.locked),
|
||||||
disabled = imgdisabled || shapedisabled || chartdisabled || (value.slideProps!==undefined && value.slideProps.locked);
|
disabled = imgdisabled || shapedisabled || chartdisabled || (value.slideProps!==undefined && value.slideProps.locked),
|
||||||
|
pluginGuid = (value.imgProps) ? value.imgProps.value.asc_getPluginGuid() : null;
|
||||||
|
|
||||||
// image properties
|
// image properties
|
||||||
menuImgOriginalSize.setVisible((_.isUndefined(value.shapeProps) || value.shapeProps.value.get_FromImage()) && _.isUndefined(value.chartProps));
|
menuImgOriginalSize.setVisible(isimage);
|
||||||
|
|
||||||
if (menuImgOriginalSize.isVisible())
|
if (menuImgOriginalSize.isVisible())
|
||||||
menuImgOriginalSize.setDisabled(disabled || _.isNull(value.imgProps.value.get_ImageUrl()) || _.isUndefined(value.imgProps.value.get_ImageUrl()));
|
menuImgOriginalSize.setDisabled(disabled || _.isNull(value.imgProps.value.get_ImageUrl()) || _.isUndefined(value.imgProps.value.get_ImageUrl()));
|
||||||
|
|
||||||
menuImageAdvanced.setVisible((_.isUndefined(value.shapeProps) || value.shapeProps.value.get_FromImage()) && _.isUndefined(value.chartProps));
|
menuImgReplace.setVisible(isimage && (pluginGuid===null || pluginGuid===undefined));
|
||||||
|
if (menuImgReplace.isVisible())
|
||||||
|
menuImgReplace.setDisabled(disabled || pluginGuid===null);
|
||||||
|
|
||||||
|
menuImageAdvanced.setVisible(isimage);
|
||||||
menuShapeAdvanced.setVisible(_.isUndefined(value.imgProps) && _.isUndefined(value.chartProps));
|
menuShapeAdvanced.setVisible(_.isUndefined(value.imgProps) && _.isUndefined(value.chartProps));
|
||||||
menuChartEdit.setVisible(_.isUndefined(value.imgProps) && !_.isUndefined(value.chartProps) && (_.isUndefined(value.shapeProps) || value.shapeProps.isChart));
|
menuChartEdit.setVisible(_.isUndefined(value.imgProps) && !_.isUndefined(value.chartProps) && (_.isUndefined(value.shapeProps) || value.shapeProps.isChart));
|
||||||
menuImgShapeSeparator.setVisible(menuImageAdvanced.isVisible() || menuShapeAdvanced.isVisible() || menuChartEdit.isVisible());
|
menuImgShapeSeparator.setVisible(menuImageAdvanced.isVisible() || menuShapeAdvanced.isVisible() || menuChartEdit.isVisible());
|
||||||
|
@ -3154,6 +3197,7 @@ define([
|
||||||
menuImgShapeAlign,
|
menuImgShapeAlign,
|
||||||
menuImgShapeSeparator,
|
menuImgShapeSeparator,
|
||||||
menuImgOriginalSize,
|
menuImgOriginalSize,
|
||||||
|
menuImgReplace,
|
||||||
menuImageAdvanced,
|
menuImageAdvanced,
|
||||||
menuShapeAdvanced
|
menuShapeAdvanced
|
||||||
,menuChartEdit
|
,menuChartEdit
|
||||||
|
@ -3398,7 +3442,10 @@ define([
|
||||||
txtPasteSourceFormat: 'Keep source formatting',
|
txtPasteSourceFormat: 'Keep source formatting',
|
||||||
txtPasteDestFormat: 'Use destination theme',
|
txtPasteDestFormat: 'Use destination theme',
|
||||||
textDistributeRows: 'Distribute rows',
|
textDistributeRows: 'Distribute rows',
|
||||||
textDistributeCols: 'Distribute columns'
|
textDistributeCols: 'Distribute columns',
|
||||||
|
textReplace: 'Replace image',
|
||||||
|
textFromUrl: 'From URL',
|
||||||
|
textFromFile: 'From File'
|
||||||
|
|
||||||
}, PE.Views.DocumentHolder || {}));
|
}, PE.Views.DocumentHolder || {}));
|
||||||
});
|
});
|
|
@ -294,8 +294,13 @@ define([
|
||||||
me.previewControls.css('display', 'none');
|
me.previewControls.css('display', 'none');
|
||||||
me.$el.css('cursor', 'none');
|
me.$el.css('cursor', 'none');
|
||||||
}, 3000);
|
}, 3000);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
if (!me.previewControls.hasClass('over')) {
|
||||||
|
me.timerMove = setTimeout(function () {
|
||||||
|
me.previewControls.css('display', 'none');
|
||||||
|
me.$el.css('cursor', 'none');
|
||||||
|
}, 3000);
|
||||||
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
$('#viewport-vbox-layout').css('z-index','0');
|
$('#viewport-vbox-layout').css('z-index','0');
|
||||||
this.fireEvent('editcomplete', this);
|
this.fireEvent('editcomplete', this);
|
||||||
|
|
|
@ -69,14 +69,14 @@ define([
|
||||||
}, options || {});
|
}, options || {});
|
||||||
|
|
||||||
this.template = [
|
this.template = [
|
||||||
'<div class="box" style="height: 270px;">',
|
'<div class="box" style="height: 250px;">',
|
||||||
'<div class="input-row">',
|
'<div class="input-row" style="margin-bottom: 10px;">',
|
||||||
'<label style="font-weight: bold;">' + this.textLinkType + '</label>',
|
'<button type="button" class="btn btn-text-default auto" id="id-dlg-hyperlink-external" style="border-top-right-radius: 0;border-bottom-right-radius: 0;">', this.textExternalLink,'</button>',
|
||||||
|
'<button type="button" class="btn btn-text-default auto" id="id-dlg-hyperlink-internal" style="border-top-left-radius: 0;border-bottom-left-radius: 0;">', this.textInternalLink,'</button>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div id="id-dlg-hyperlink-type" class="input-row" style="margin-bottom: 5px;"></div>',
|
|
||||||
'<div id="id-external-link">',
|
'<div id="id-external-link">',
|
||||||
'<div class="input-row">',
|
'<div class="input-row">',
|
||||||
'<label style="font-weight: bold;">' + this.strLinkTo + ' *</label>',
|
'<label>' + this.strLinkTo + ' *</label>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div id="id-dlg-hyperlink-url" class="input-row" style="margin-bottom: 5px;"></div>',
|
'<div id="id-dlg-hyperlink-url" class="input-row" style="margin-bottom: 5px;"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
|
@ -89,11 +89,11 @@ define([
|
||||||
'<div id="id-dlg-hyperlink-slide" style="display: inline-block;margin-bottom: 10px;"></div>',
|
'<div id="id-dlg-hyperlink-slide" style="display: inline-block;margin-bottom: 10px;"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div class="input-row">',
|
'<div class="input-row">',
|
||||||
'<label style="font-weight: bold;">' + this.strDisplay + '</label>',
|
'<label>' + this.strDisplay + '</label>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div id="id-dlg-hyperlink-display" class="input-row" style="margin-bottom: 5px;"></div>',
|
'<div id="id-dlg-hyperlink-display" class="input-row" style="margin-bottom: 5px;"></div>',
|
||||||
'<div class="input-row">',
|
'<div class="input-row">',
|
||||||
'<label style="font-weight: bold;">' + this.textTipText + '</label>',
|
'<label>' + this.textTipText + '</label>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div id="id-dlg-hyperlink-tip" class="input-row" style="margin-bottom: 5px;"></div>',
|
'<div id="id-dlg-hyperlink-tip" class="input-row" style="margin-bottom: 5px;"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
|
@ -116,23 +116,22 @@ define([
|
||||||
var me = this,
|
var me = this,
|
||||||
$window = this.getChild();
|
$window = this.getChild();
|
||||||
|
|
||||||
me._arrTypeSrc = [
|
me.btnExternal = new Common.UI.Button({
|
||||||
{displayValue: me.textInternalLink, value: c_oHyperlinkType.InternalLink},
|
el: $('#id-dlg-hyperlink-external'),
|
||||||
{displayValue: me.textExternalLink, value: c_oHyperlinkType.WebLink}
|
enableToggle: true,
|
||||||
];
|
toggleGroup: 'hyperlink-type',
|
||||||
|
allowDepress: false,
|
||||||
me.cmbLinkType = new Common.UI.ComboBox({
|
pressed: true
|
||||||
el: $('#id-dlg-hyperlink-type'),
|
|
||||||
cls: 'input-group-nr',
|
|
||||||
style: 'width: 100%;',
|
|
||||||
menuStyle: 'min-width: 318px;',
|
|
||||||
editable: false,
|
|
||||||
data: this._arrTypeSrc
|
|
||||||
});
|
});
|
||||||
me.cmbLinkType.setValue(me._arrTypeSrc[1].value);
|
me.btnExternal.on('click', _.bind(me.onLinkTypeClick, me, c_oHyperlinkType.WebLink));
|
||||||
me.cmbLinkType.on('selected', _.bind(function(combo, record) {
|
|
||||||
this.ShowHideElem(record.value);
|
me.btnInternal = new Common.UI.Button({
|
||||||
}, me));
|
el: $('#id-dlg-hyperlink-internal'),
|
||||||
|
enableToggle: true,
|
||||||
|
toggleGroup: 'hyperlink-type',
|
||||||
|
allowDepress: false
|
||||||
|
});
|
||||||
|
me.btnInternal.on('click', _.bind(me.onLinkTypeClick, me, c_oHyperlinkType.InternalLink));
|
||||||
|
|
||||||
me.inputUrl = new Common.UI.InputField({
|
me.inputUrl = new Common.UI.InputField({
|
||||||
el : $('#id-dlg-hyperlink-url'),
|
el : $('#id-dlg-hyperlink-url'),
|
||||||
|
@ -217,7 +216,7 @@ define([
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
var type = me.parseUrl(props.get_Value());
|
var type = me.parseUrl(props.get_Value());
|
||||||
me.cmbLinkType.setValue(type);
|
(type == c_oHyperlinkType.WebLink) ? me.btnExternal.toggle(true) : me.btnInternal.toggle(true);
|
||||||
me.ShowHideElem(type);
|
me.ShowHideElem(type);
|
||||||
|
|
||||||
if (props.get_Text()!==null) {
|
if (props.get_Text()!==null) {
|
||||||
|
@ -239,7 +238,7 @@ define([
|
||||||
var me = this,
|
var me = this,
|
||||||
props = new Asc.CHyperlinkProperty();
|
props = new Asc.CHyperlinkProperty();
|
||||||
var def_display = '';
|
var def_display = '';
|
||||||
if (me.cmbLinkType.getValue() == c_oHyperlinkType.InternalLink) {
|
if (this.btnInternal.isActive()) {//InternalLink
|
||||||
var url = "ppaction://hlink";
|
var url = "ppaction://hlink";
|
||||||
var tip = '';
|
var tip = '';
|
||||||
var txttip = me.inputTip.getValue();
|
var txttip = me.inputTip.getValue();
|
||||||
|
@ -298,7 +297,7 @@ define([
|
||||||
_handleInput: function(state) {
|
_handleInput: function(state) {
|
||||||
if (this.options.handler) {
|
if (this.options.handler) {
|
||||||
if (state == 'ok') {
|
if (state == 'ok') {
|
||||||
var checkurl = (this.cmbLinkType.getValue() == c_oHyperlinkType.WebLink) ? this.inputUrl.checkValidate() : true,
|
var checkurl = (this.btnExternal.isActive()) ? this.inputUrl.checkValidate() : true,
|
||||||
checkdisp = this.inputDisplay.checkValidate();
|
checkdisp = this.inputDisplay.checkValidate();
|
||||||
if (checkurl !== true) {
|
if (checkurl !== true) {
|
||||||
this.inputUrl.cmpEl.find('input').focus();
|
this.inputUrl.cmpEl.find('input').focus();
|
||||||
|
@ -321,6 +320,10 @@ define([
|
||||||
this.internalPanel.toggleClass('hidden', value !== c_oHyperlinkType.InternalLink);
|
this.internalPanel.toggleClass('hidden', value !== c_oHyperlinkType.InternalLink);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onLinkTypeClick: function(type, btn, event) {
|
||||||
|
this.ShowHideElem(type);
|
||||||
|
},
|
||||||
|
|
||||||
parseUrl: function(url) {
|
parseUrl: function(url) {
|
||||||
if (url===null || url===undefined || url=='' )
|
if (url===null || url===undefined || url=='' )
|
||||||
return c_oHyperlinkType.WebLink;
|
return c_oHyperlinkType.WebLink;
|
||||||
|
@ -364,13 +367,12 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
textTitle: 'Hyperlink Settings',
|
textTitle: 'Hyperlink Settings',
|
||||||
textInternalLink: 'Place In This Document',
|
textInternalLink: 'Slide In This Presentation',
|
||||||
textExternalLink: 'File or Web Page',
|
textExternalLink: 'External Link',
|
||||||
textEmptyLink: 'Enter link here',
|
textEmptyLink: 'Enter link here',
|
||||||
textEmptyDesc: 'Enter caption here',
|
textEmptyDesc: 'Enter caption here',
|
||||||
textEmptyTooltip: 'Enter tooltip here',
|
textEmptyTooltip: 'Enter tooltip here',
|
||||||
txtSlide: 'Slide',
|
txtSlide: 'Slide',
|
||||||
textLinkType: 'Link Type',
|
|
||||||
strDisplay: 'Display',
|
strDisplay: 'Display',
|
||||||
textTipText: 'Screen Tip Text',
|
textTipText: 'Screen Tip Text',
|
||||||
strLinkTo: 'Link To',
|
strLinkTo: 'Link To',
|
||||||
|
|
|
@ -174,7 +174,7 @@ define([
|
||||||
this.btnOriginalSize.setDisabled(props.get_ImageUrl()===null || props.get_ImageUrl()===undefined || this._locked);
|
this.btnOriginalSize.setDisabled(props.get_ImageUrl()===null || props.get_ImageUrl()===undefined || this._locked);
|
||||||
|
|
||||||
var pluginGuid = props.asc_getPluginGuid();
|
var pluginGuid = props.asc_getPluginGuid();
|
||||||
value = (pluginGuid !== null && pluginGuid !== undefined);
|
value = (pluginGuid !== null && pluginGuid !== undefined); // undefined - only images are selected, null - selected images and ole-objects
|
||||||
if (this._state.isOleObject!==value) {
|
if (this._state.isOleObject!==value) {
|
||||||
this.btnInsertFromUrl.setVisible(!value);
|
this.btnInsertFromUrl.setVisible(!value);
|
||||||
this.btnInsertFromFile.setVisible(!value);
|
this.btnInsertFromFile.setVisible(!value);
|
||||||
|
|
|
@ -83,45 +83,6 @@ define([
|
||||||
commentLock: 'can-comment'
|
commentLock: 'can-comment'
|
||||||
};
|
};
|
||||||
|
|
||||||
var buttonsArray = function (opts) {
|
|
||||||
var arr = [];
|
|
||||||
arr.push.apply(arr, arguments);
|
|
||||||
arr.__proto__ = buttonsArray.prototype;
|
|
||||||
return arr;
|
|
||||||
};
|
|
||||||
|
|
||||||
buttonsArray.prototype = new Array;
|
|
||||||
|
|
||||||
buttonsArray.prototype.disable = function (state) {
|
|
||||||
this.forEach(function(btn) {
|
|
||||||
btn.setDisabled(state);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
buttonsArray.prototype.toggle = function (state, suppress) {
|
|
||||||
this.forEach(function(btn) {
|
|
||||||
btn.toggle(state, suppress);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
buttonsArray.prototype.pressed = function () {
|
|
||||||
return this.some(function(btn) {
|
|
||||||
return btn.pressed;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
buttonsArray.prototype.on = function (event, func) {
|
|
||||||
this.forEach(function(btn) {
|
|
||||||
btn.on.apply(btn, arguments);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
buttonsArray.prototype.contains = function (id) {
|
|
||||||
return this.some(function(btn) {
|
|
||||||
return btn.id == id;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
PE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend((function(){
|
PE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend((function(){
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -209,15 +170,17 @@ define([
|
||||||
id : 'id-toolbar-btn-save',
|
id : 'id-toolbar-btn-save',
|
||||||
cls : 'btn-toolbar',
|
cls : 'btn-toolbar',
|
||||||
iconCls : 'no-mask ' + me.btnSaveCls,
|
iconCls : 'no-mask ' + me.btnSaveCls,
|
||||||
lock : [_set.lostConnect]
|
lock : [_set.lostConnect],
|
||||||
|
signals : ['disabled']
|
||||||
});
|
});
|
||||||
me.btnsSave = [me.btnSave];
|
me.btnCollabChanges = me.btnSave;
|
||||||
|
|
||||||
me.btnUndo = new Common.UI.Button({
|
me.btnUndo = new Common.UI.Button({
|
||||||
id : 'id-toolbar-btn-undo',
|
id : 'id-toolbar-btn-undo',
|
||||||
cls : 'btn-toolbar',
|
cls : 'btn-toolbar',
|
||||||
iconCls : 'btn-undo',
|
iconCls : 'btn-undo',
|
||||||
lock : [_set.undoLock, _set.slideDeleted, _set.lostConnect, _set.disableOnStart]
|
lock : [_set.undoLock, _set.slideDeleted, _set.lostConnect, _set.disableOnStart],
|
||||||
|
signals : ['disabled']
|
||||||
});
|
});
|
||||||
me.slideOnlyControls.push(me.btnUndo);
|
me.slideOnlyControls.push(me.btnUndo);
|
||||||
|
|
||||||
|
@ -225,7 +188,8 @@ define([
|
||||||
id : 'id-toolbar-btn-redo',
|
id : 'id-toolbar-btn-redo',
|
||||||
cls : 'btn-toolbar',
|
cls : 'btn-toolbar',
|
||||||
iconCls : 'btn-redo',
|
iconCls : 'btn-redo',
|
||||||
lock : [_set.redoLock, _set.slideDeleted, _set.lostConnect, _set.disableOnStart]
|
lock : [_set.redoLock, _set.slideDeleted, _set.lostConnect, _set.disableOnStart],
|
||||||
|
signals : ['disabled']
|
||||||
});
|
});
|
||||||
me.slideOnlyControls.push(me.btnRedo);
|
me.slideOnlyControls.push(me.btnRedo);
|
||||||
|
|
||||||
|
@ -612,31 +576,6 @@ define([
|
||||||
});
|
});
|
||||||
me.slideOnlyControls.push(me.btnColorSchemas);
|
me.slideOnlyControls.push(me.btnColorSchemas);
|
||||||
|
|
||||||
me.btnHide = new Common.UI.Button({
|
|
||||||
id : 'id-toolbar-btn-hidebars',
|
|
||||||
cls : 'btn-toolbar',
|
|
||||||
iconCls : 'btn-hidebars no-mask',
|
|
||||||
lock : [_set.menuFileOpen, _set.slideDeleted, _set.disableOnStart],
|
|
||||||
menu : true
|
|
||||||
});
|
|
||||||
me.slideOnlyControls.push(me.btnHide);
|
|
||||||
|
|
||||||
this.btnFitPage = {
|
|
||||||
conf: {checked:false},
|
|
||||||
setChecked: function(val) { this.conf.checked = val;},
|
|
||||||
isChecked: function () { return this.conf.checked; }
|
|
||||||
};
|
|
||||||
this.btnFitWidth = clone(this.btnFitPage);
|
|
||||||
this.mnuZoom = {options: {value: 100}};
|
|
||||||
|
|
||||||
me.btnAdvSettings = new Common.UI.Button({
|
|
||||||
id : 'id-toolbar-btn-settings',
|
|
||||||
cls : 'btn-toolbar',
|
|
||||||
iconCls : 'btn-settings no-mask',
|
|
||||||
lock : [_set.slideDeleted, _set.disableOnStart]
|
|
||||||
});
|
|
||||||
me.slideOnlyControls.push(me.btnAdvSettings);
|
|
||||||
|
|
||||||
me.btnShapeAlign = new Common.UI.Button({
|
me.btnShapeAlign = new Common.UI.Button({
|
||||||
id : 'id-toolbar-btn-shape-align',
|
id : 'id-toolbar-btn-shape-align',
|
||||||
cls : 'btn-toolbar',
|
cls : 'btn-toolbar',
|
||||||
|
@ -768,7 +707,6 @@ define([
|
||||||
itemWidth : 85,
|
itemWidth : 85,
|
||||||
enableKeyEvents: true,
|
enableKeyEvents: true,
|
||||||
itemHeight : 38,
|
itemHeight : 38,
|
||||||
hint: this.tipSlideTheme,
|
|
||||||
lock: [_set.themeLock, _set.lostConnect, _set.noSlides],
|
lock: [_set.themeLock, _set.lostConnect, _set.noSlides],
|
||||||
beforeOpenHandler: function(e) {
|
beforeOpenHandler: function(e) {
|
||||||
var cmp = this,
|
var cmp = this,
|
||||||
|
@ -911,9 +849,9 @@ define([
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
me.setTab('home');
|
||||||
if ( me.isCompactView )
|
if ( me.isCompactView )
|
||||||
me.setFolded(true); else
|
me.setFolded(true);
|
||||||
me.setTab('home');
|
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
@ -979,11 +917,9 @@ define([
|
||||||
_injectComponent('#slot-btn-colorschemas', this.btnColorSchemas);
|
_injectComponent('#slot-btn-colorschemas', this.btnColorSchemas);
|
||||||
_injectComponent('#slot-btn-slidesize', this.btnSlideSize);
|
_injectComponent('#slot-btn-slidesize', this.btnSlideSize);
|
||||||
_injectComponent('#slot-field-styles', this.listTheme);
|
_injectComponent('#slot-field-styles', this.listTheme);
|
||||||
_injectComponent('#slot-btn-hidebars', this.btnHide);
|
|
||||||
_injectComponent('#slot-btn-settings', this.btnAdvSettings);
|
|
||||||
|
|
||||||
function _injectBtns(opts) {
|
function _injectBtns(opts) {
|
||||||
var array = new buttonsArray;
|
var array = createButtonSet();
|
||||||
var $slots = $host.find(opts.slot);
|
var $slots = $host.find(opts.slot);
|
||||||
var id = opts.btnconfig.id;
|
var id = opts.btnconfig.id;
|
||||||
$slots.each(function(index, el) {
|
$slots.each(function(index, el) {
|
||||||
|
@ -992,7 +928,7 @@ define([
|
||||||
var button = new Common.UI.Button(opts.btnconfig);
|
var button = new Common.UI.Button(opts.btnconfig);
|
||||||
button.render( $slots.eq(index) );
|
button.render( $slots.eq(index) );
|
||||||
|
|
||||||
array.push(button);
|
array.add(button);
|
||||||
});
|
});
|
||||||
|
|
||||||
return array;
|
return array;
|
||||||
|
@ -1141,8 +1077,6 @@ define([
|
||||||
this.btnInsertHyperlink.updateHint(this.tipInsertHyperlink + Common.Utils.String.platformKey('Ctrl+K'));
|
this.btnInsertHyperlink.updateHint(this.tipInsertHyperlink + Common.Utils.String.platformKey('Ctrl+K'));
|
||||||
this.btnInsertTextArt.updateHint(this.tipInsertTextArt);
|
this.btnInsertTextArt.updateHint(this.tipInsertTextArt);
|
||||||
this.btnColorSchemas.updateHint(this.tipColorSchemas);
|
this.btnColorSchemas.updateHint(this.tipColorSchemas);
|
||||||
this.btnHide.updateHint(this.tipViewSettings);
|
|
||||||
this.btnAdvSettings.updateHint(this.tipAdvSettings);
|
|
||||||
this.btnShapeAlign.updateHint(this.tipShapeAlign);
|
this.btnShapeAlign.updateHint(this.tipShapeAlign);
|
||||||
this.btnShapeArrange.updateHint(this.tipShapeArrange);
|
this.btnShapeArrange.updateHint(this.tipShapeArrange);
|
||||||
this.btnSlideSize.updateHint(this.tipSlideSize);
|
this.btnSlideSize.updateHint(this.tipSlideSize);
|
||||||
|
@ -1151,66 +1085,6 @@ define([
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
this.btnHide.setMenu(
|
|
||||||
new Common.UI.Menu({
|
|
||||||
cls: 'pull-right',
|
|
||||||
style: 'min-width: 180px;',
|
|
||||||
items: [
|
|
||||||
this.mnuitemCompactToolbar = new Common.UI.MenuItem({
|
|
||||||
caption: this.textCompactView,
|
|
||||||
checkable: true,
|
|
||||||
checked: me.isCompactView
|
|
||||||
}),
|
|
||||||
this.mnuitemHideStatusBar = new Common.UI.MenuItem({
|
|
||||||
caption: this.textHideStatusBar,
|
|
||||||
checkable: true
|
|
||||||
}),
|
|
||||||
this.mnuitemHideRulers = new Common.UI.MenuItem({
|
|
||||||
caption: this.textHideLines,
|
|
||||||
checkable: true
|
|
||||||
}),
|
|
||||||
{caption: '--'},
|
|
||||||
this.btnFitPage = new Common.UI.MenuItem({
|
|
||||||
caption: this.textFitPage,
|
|
||||||
checkable: true,
|
|
||||||
checked: this.btnFitPage.isChecked()
|
|
||||||
}),
|
|
||||||
this.btnFitWidth = new Common.UI.MenuItem({
|
|
||||||
caption: this.textFitWidth,
|
|
||||||
checkable: true,
|
|
||||||
checked: this.btnFitWidth.isChecked()
|
|
||||||
}),
|
|
||||||
this.mnuZoom = new Common.UI.MenuItem({
|
|
||||||
template: _.template([
|
|
||||||
'<div id="id-toolbar-menu-zoom" class="menu-zoom" style="height: 25px;" ',
|
|
||||||
'<% if(!_.isUndefined(options.stopPropagation)) { %>',
|
|
||||||
'data-stopPropagation="true"',
|
|
||||||
'<% } %>',
|
|
||||||
'>',
|
|
||||||
'<label class="title">' + this.textZoom + '</label>',
|
|
||||||
'<button id="id-menu-zoom-in" type="button" style="float:right; margin: 2px 5px 0 0;" class="btn small btn-toolbar"><i class="icon btn-zoomin"></i></button>',
|
|
||||||
'<label class="zoom"><%= options.value %>%</label>',
|
|
||||||
'<button id="id-menu-zoom-out" type="button" style="float:right; margin-top: 2px;" class="btn small btn-toolbar"><i class="icon btn-zoomout"></i></button>',
|
|
||||||
'</div>'
|
|
||||||
].join('')),
|
|
||||||
stopPropagation: true,
|
|
||||||
value: this.mnuZoom.options.value
|
|
||||||
})
|
|
||||||
]
|
|
||||||
})
|
|
||||||
);
|
|
||||||
if (this.mode.canBrandingExt && this.mode.customization && this.mode.customization.statusBar === false)
|
|
||||||
this.mnuitemHideStatusBar.hide();
|
|
||||||
|
|
||||||
this.mnuZoomOut = new Common.UI.Button({
|
|
||||||
el: $('#id-menu-zoom-out'),
|
|
||||||
cls: 'btn-toolbar'
|
|
||||||
});
|
|
||||||
this.mnuZoomIn = new Common.UI.Button({
|
|
||||||
el: $('#id-menu-zoom-in'),
|
|
||||||
cls: 'btn-toolbar'
|
|
||||||
});
|
|
||||||
|
|
||||||
this.btnMarkers.setMenu(
|
this.btnMarkers.setMenu(
|
||||||
new Common.UI.Menu({
|
new Common.UI.Menu({
|
||||||
style: 'min-width: 139px',
|
style: 'min-width: 139px',
|
||||||
|
@ -1375,19 +1249,9 @@ define([
|
||||||
me.mnuChangeSlidePicker._needRecalcSlideLayout = true;
|
me.mnuChangeSlidePicker._needRecalcSlideLayout = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.mnuitemHideStatusBar.setChecked(Common.localStorage.getBool('pe-hidden-status'), true);
|
|
||||||
this.mnuitemHideRulers.setChecked(Common.localStorage.getBool("pe-hidden-rulers", true), true);
|
|
||||||
|
|
||||||
// // Enable none paragraph components
|
// // Enable none paragraph components
|
||||||
this.lockToolbar(PE.enumLock.disableOnStart, false, {array: this.slideOnlyControls.concat(this.shapeControls)});
|
this.lockToolbar(PE.enumLock.disableOnStart, false, {array: this.slideOnlyControls.concat(this.shapeControls)});
|
||||||
|
|
||||||
var btnsave = PE.getController('LeftMenu').getView('LeftMenu').getMenu('file').getButton('save');
|
|
||||||
if (btnsave && this.btnsSave) {
|
|
||||||
this.btnsSave.push(btnsave);
|
|
||||||
this.lockControls.push(btnsave);
|
|
||||||
btnsave.setDisabled(this.btnsSave[0].isDisabled());
|
|
||||||
}
|
|
||||||
|
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
this.showSynchTip = !Common.localStorage.getBool('pe-hide-synch');
|
this.showSynchTip = !Common.localStorage.getBool('pe-hide-synch');
|
||||||
this.needShowSynchTip = false;
|
this.needShowSynchTip = false;
|
||||||
|
@ -1511,7 +1375,7 @@ define([
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
onCollaborativeChanges: function () {
|
onCollaborativeChanges: function () {
|
||||||
if (this._state.hasCollaborativeChanges) return;
|
if (this._state.hasCollaborativeChanges) return;
|
||||||
if (!this.btnSave.rendered) {
|
if (!this.btnCollabChanges.rendered) {
|
||||||
this.needShowSynchTip = true;
|
this.needShowSynchTip = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1523,59 +1387,47 @@ define([
|
||||||
}
|
}
|
||||||
|
|
||||||
this._state.hasCollaborativeChanges = true;
|
this._state.hasCollaborativeChanges = true;
|
||||||
var iconEl = $('.icon', this.btnSave.cmpEl);
|
this.btnCollabChanges.$icon.removeClass(this.btnSaveCls).addClass('btn-synch');
|
||||||
iconEl.removeClass(this.btnSaveCls);
|
|
||||||
iconEl.addClass('btn-synch');
|
|
||||||
if (this.showSynchTip) {
|
if (this.showSynchTip) {
|
||||||
this.btnSave.updateHint('');
|
this.btnCollabChanges.updateHint('');
|
||||||
if (this.synchTooltip === undefined)
|
if (this.synchTooltip === undefined)
|
||||||
this.createSynchTip();
|
this.createSynchTip();
|
||||||
|
|
||||||
this.synchTooltip.show();
|
this.synchTooltip.show();
|
||||||
} else {
|
} else {
|
||||||
this.btnSave.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
this.btnCollabChanges.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
||||||
}
|
}
|
||||||
|
|
||||||
this.btnsSave.forEach(function(button) {
|
this.btnSave.setDisabled(false);
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(false);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Common.Gateway.collaborativeChanges();
|
Common.Gateway.collaborativeChanges();
|
||||||
},
|
},
|
||||||
|
|
||||||
createSynchTip: function () {
|
createSynchTip: function () {
|
||||||
this.synchTooltip = new Common.UI.SynchronizeTip({
|
this.synchTooltip = new Common.UI.SynchronizeTip({
|
||||||
target: $('#id-toolbar-btn-save')
|
target: this.btnCollabChanges.$el
|
||||||
});
|
});
|
||||||
this.synchTooltip.on('dontshowclick', function () {
|
this.synchTooltip.on('dontshowclick', function () {
|
||||||
this.showSynchTip = false;
|
this.showSynchTip = false;
|
||||||
this.synchTooltip.hide();
|
this.synchTooltip.hide();
|
||||||
this.btnSave.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
this.btnCollabChanges.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
||||||
Common.localStorage.setItem("pe-hide-synch", 1);
|
Common.localStorage.setItem("pe-hide-synch", 1);
|
||||||
}, this);
|
}, this);
|
||||||
this.synchTooltip.on('closeclick', function () {
|
this.synchTooltip.on('closeclick', function () {
|
||||||
this.synchTooltip.hide();
|
this.synchTooltip.hide();
|
||||||
this.btnSave.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
this.btnCollabChanges.updateHint(this.tipSynchronize + Common.Utils.String.platformKey('Ctrl+S'));
|
||||||
}, this);
|
}, this);
|
||||||
},
|
},
|
||||||
|
|
||||||
synchronizeChanges: function () {
|
synchronizeChanges: function () {
|
||||||
if (this.btnSave.rendered) {
|
if (this.btnCollabChanges.rendered) {
|
||||||
var iconEl = $('.icon', this.btnSave.cmpEl),
|
var me = this;
|
||||||
me = this;
|
|
||||||
|
|
||||||
if (iconEl.hasClass('btn-synch')) {
|
if ( me.btnCollabChanges.$icon.hasClass('btn-synch') ) {
|
||||||
iconEl.removeClass('btn-synch');
|
me.btnCollabChanges.$icon.removeClass('btn-synch').addClass(this.btnSaveCls);
|
||||||
iconEl.addClass(this.btnSaveCls);
|
|
||||||
if (this.synchTooltip)
|
if (this.synchTooltip)
|
||||||
this.synchTooltip.hide();
|
this.synchTooltip.hide();
|
||||||
this.btnSave.updateHint(this.btnSaveTip);
|
this.btnCollabChanges.updateHint(this.btnSaveTip);
|
||||||
this.btnsSave.forEach(function(button) {
|
this.btnSave.setDisabled(!me.mode.forcesave);
|
||||||
if ( button ) {
|
|
||||||
button.setDisabled(!me.mode.forcesave);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
this._state.hasCollaborativeChanges = false;
|
this._state.hasCollaborativeChanges = false;
|
||||||
}
|
}
|
||||||
|
@ -1591,14 +1443,12 @@ define([
|
||||||
|
|
||||||
var length = _.size(editusers);
|
var length = _.size(editusers);
|
||||||
var cls = (length > 1) ? 'btn-save-coauth' : 'btn-save';
|
var cls = (length > 1) ? 'btn-save-coauth' : 'btn-save';
|
||||||
if (cls !== this.btnSaveCls && this.btnSave.rendered) {
|
if (cls !== this.btnSaveCls && this.btnCollabChanges.rendered) {
|
||||||
this.btnSaveTip = ((length > 1) ? this.tipSaveCoauth : this.tipSave ) + Common.Utils.String.platformKey('Ctrl+S');
|
this.btnSaveTip = ((length > 1) ? this.tipSaveCoauth : this.tipSave ) + Common.Utils.String.platformKey('Ctrl+S');
|
||||||
|
|
||||||
var iconEl = $('.icon', this.btnSave.cmpEl);
|
if ( !this.btnCollabChanges.$icon.hasClass('btn-synch') ) {
|
||||||
if (!iconEl.hasClass('btn-synch')) {
|
this.btnCollabChanges.$icon.removeClass(this.btnSaveCls).addClass(cls);
|
||||||
iconEl.removeClass(this.btnSaveCls);
|
this.btnCollabChanges.updateHint(this.btnSaveTip);
|
||||||
iconEl.addClass(cls);
|
|
||||||
this.btnSave.updateHint(this.btnSaveTip);
|
|
||||||
}
|
}
|
||||||
this.btnSaveCls = cls;
|
this.btnSaveCls = cls;
|
||||||
}
|
}
|
||||||
|
@ -1804,15 +1654,6 @@ define([
|
||||||
mniSlideWide: 'Widescreen (16:9)',
|
mniSlideWide: 'Widescreen (16:9)',
|
||||||
mniSlideAdvanced: 'Advanced Settings',
|
mniSlideAdvanced: 'Advanced Settings',
|
||||||
tipSlideSize: 'Select Slide Size',
|
tipSlideSize: 'Select Slide Size',
|
||||||
tipViewSettings: 'View Settings',
|
|
||||||
tipAdvSettings: 'Advanced Settings',
|
|
||||||
textCompactView: 'Hide Toolbar',
|
|
||||||
textHideTitleBar: 'Hide Title Bar',
|
|
||||||
textHideStatusBar: 'Hide Status Bar',
|
|
||||||
textHideLines: 'Hide Rulers',
|
|
||||||
textFitPage: 'Fit to Slide',
|
|
||||||
textFitWidth: 'Fit to Width',
|
|
||||||
textZoom: 'Zoom',
|
|
||||||
tipInsertChart: 'Insert Chart',
|
tipInsertChart: 'Insert Chart',
|
||||||
textLine: 'Line',
|
textLine: 'Line',
|
||||||
textColumn: 'Column',
|
textColumn: 'Column',
|
||||||
|
|
|
@ -86,13 +86,19 @@ define([
|
||||||
this.vlayout = new Common.UI.VBoxLayout({
|
this.vlayout = new Common.UI.VBoxLayout({
|
||||||
box: $container,
|
box: $container,
|
||||||
items: [{
|
items: [{
|
||||||
el: items[0],
|
el: $container.find('> .layout-item#app-title').hide(),
|
||||||
height: Common.localStorage.getBool('pe-compact-toolbar') ? 32 : 32+67
|
alias: 'title',
|
||||||
|
height: Common.Utils.InternalSettings.get('document-title-height')
|
||||||
}, {
|
}, {
|
||||||
el: items[1],
|
el: items[1],
|
||||||
stretch: true
|
alias: 'toolbar',
|
||||||
|
height: Common.localStorage.getBool('pe-compact-toolbar') ?
|
||||||
|
Common.Utils.InternalSettings.get('toolbar-height-compact') : Common.Utils.InternalSettings.get('toolbar-height-normal')
|
||||||
}, {
|
}, {
|
||||||
el: items[2],
|
el: items[2],
|
||||||
|
stretch: true
|
||||||
|
}, {
|
||||||
|
el: items[3],
|
||||||
height: 25
|
height: 25
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
|
|
|
@ -181,6 +181,7 @@ require([
|
||||||
'common/main/lib/controller/ExternalDiagramEditor'
|
'common/main/lib/controller/ExternalDiagramEditor'
|
||||||
,'common/main/lib/controller/ReviewChanges'
|
,'common/main/lib/controller/ReviewChanges'
|
||||||
,'common/main/lib/controller/Protection'
|
,'common/main/lib/controller/Protection'
|
||||||
|
,'common/main/lib/controller/Desktop'
|
||||||
], function() {
|
], function() {
|
||||||
window.compareVersions = true;
|
window.compareVersions = true;
|
||||||
app.start();
|
app.start();
|
||||||
|
|
|
@ -875,7 +875,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Zde zadejte popisek",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Zde zadejte popisek",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externí odkaz",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externí odkaz",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide In This Presentation",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide In This Presentation",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Typ odkazu",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "Text rady",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "Text rady",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Nastavení hypertextového odkazu",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Nastavení hypertextového odkazu",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole je povinné",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole je povinné",
|
||||||
|
@ -1282,12 +1281,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Zrušit",
|
"PE.Views.Toolbar.textCancel": "Zrušit",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafy",
|
"PE.Views.Toolbar.textCharts": "Grafy",
|
||||||
"PE.Views.Toolbar.textColumn": "Sloupec",
|
"PE.Views.Toolbar.textColumn": "Sloupec",
|
||||||
"PE.Views.Toolbar.textCompactView": "Skrýt panel nástrojů",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Přizpůsobit snímku",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Přizpůsobit šířce",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Schovat pravítka",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Skrýt stavový řádek",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Skrýt lištu s nadpisem",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
||||||
"PE.Views.Toolbar.textLine": "Čára",
|
"PE.Views.Toolbar.textLine": "Čára",
|
||||||
"PE.Views.Toolbar.textNewColor": "Vlastní barva",
|
"PE.Views.Toolbar.textNewColor": "Vlastní barva",
|
||||||
|
@ -1314,9 +1307,7 @@
|
||||||
"PE.Views.Toolbar.textTabInsert": "Vložit",
|
"PE.Views.Toolbar.textTabInsert": "Vložit",
|
||||||
"PE.Views.Toolbar.textTitleError": "Chyba",
|
"PE.Views.Toolbar.textTitleError": "Chyba",
|
||||||
"PE.Views.Toolbar.textUnderline": "Podtržení",
|
"PE.Views.Toolbar.textUnderline": "Podtržení",
|
||||||
"PE.Views.Toolbar.textZoom": "Přiblížit",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Přidat snímek",
|
"PE.Views.Toolbar.tipAddSlide": "Přidat snímek",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Pokročilé nastavení",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Zpět",
|
"PE.Views.Toolbar.tipBack": "Zpět",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Změnit typ grafu",
|
"PE.Views.Toolbar.tipChangeChart": "Změnit typ grafu",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout",
|
"PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout",
|
||||||
|
@ -1329,7 +1320,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Font",
|
"PE.Views.Toolbar.tipFontName": "Font",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Velikost písma",
|
"PE.Views.Toolbar.tipFontSize": "Velikost písma",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Horizontální zarovnání",
|
"PE.Views.Toolbar.tipHAligh": "Horizontální zarovnání",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Skrýt lištu s nadpisem & Stavový řádek",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení",
|
"PE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Vložit graf",
|
"PE.Views.Toolbar.tipInsertChart": "Vložit graf",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Vložit rovnici",
|
"PE.Views.Toolbar.tipInsertEquation": "Vložit rovnici",
|
||||||
|
|
|
@ -80,15 +80,21 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Speichern und beenden",
|
"Common.Views.ExternalDiagramEditor.textSave": "Speichern und beenden",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
|
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Erweiterte Einstellungen",
|
||||||
"Common.Views.Header.textBack": "Zu Dokumenten übergehen",
|
"Common.Views.Header.textBack": "Zu Dokumenten übergehen",
|
||||||
|
"Common.Views.Header.textCompactView": "Symbolleiste ausblenden",
|
||||||
|
"Common.Views.Header.textHideLines": "Lineale verbergen",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Statusleiste verbergen",
|
||||||
"Common.Views.Header.textSaveBegin": "Speicherung...",
|
"Common.Views.Header.textSaveBegin": "Speicherung...",
|
||||||
"Common.Views.Header.textSaveChanged": "Verändert",
|
"Common.Views.Header.textSaveChanged": "Verändert",
|
||||||
"Common.Views.Header.textSaveEnd": "Alle Änderungen sind gespeichert",
|
"Common.Views.Header.textSaveEnd": "Alle Änderungen sind gespeichert",
|
||||||
"Common.Views.Header.textSaveExpander": "Alle Änderungen sind gespeichert",
|
"Common.Views.Header.textSaveExpander": "Alle Änderungen sind gespeichert",
|
||||||
|
"Common.Views.Header.textZoom": "Zoom",
|
||||||
"Common.Views.Header.tipAccessRights": "Zugriffsrechte für das Dokument verwalten",
|
"Common.Views.Header.tipAccessRights": "Zugriffsrechte für das Dokument verwalten",
|
||||||
"Common.Views.Header.tipDownload": "Datei herunterladen",
|
"Common.Views.Header.tipDownload": "Datei herunterladen",
|
||||||
"Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten",
|
"Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten",
|
||||||
"Common.Views.Header.tipPrint": "Datei drucken",
|
"Common.Views.Header.tipPrint": "Datei drucken",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Ansichts-Einstellungen",
|
||||||
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
|
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
|
||||||
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
|
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
|
||||||
"Common.Views.Header.txtRename": "Umbenennen",
|
"Common.Views.Header.txtRename": "Umbenennen",
|
||||||
|
@ -352,6 +358,17 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Folientext",
|
"PE.Controllers.Main.txtSlideText": "Folientext",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Folientitel",
|
"PE.Controllers.Main.txtSlideTitle": "Folientitel",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Sterne & Bänder",
|
"PE.Controllers.Main.txtStarsRibbons": "Sterne & Bänder",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "Leer",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Klassisch",
|
||||||
|
"PE.Controllers.Main.txtTheme_corner": "Ecke",
|
||||||
|
"PE.Controllers.Main.txtTheme_dotted": "Punktiert",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "Grün",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "Linien",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "Büro",
|
||||||
|
"PE.Controllers.Main.txtTheme_official": "Offiziell",
|
||||||
|
"PE.Controllers.Main.txtTheme_pixel": "Pixel",
|
||||||
|
"PE.Controllers.Main.txtTheme_safari": "Safari",
|
||||||
|
"PE.Controllers.Main.txtTheme_turtle": "Schildkröte",
|
||||||
"PE.Controllers.Main.txtXAxis": "x-Achse",
|
"PE.Controllers.Main.txtXAxis": "x-Achse",
|
||||||
"PE.Controllers.Main.txtYAxis": "y-Achse",
|
"PE.Controllers.Main.txtYAxis": "y-Achse",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.",
|
"PE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.",
|
||||||
|
@ -700,6 +717,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikale Ellipse",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikale Ellipse",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "Folie anpassen",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "Breite anpassen",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
"PE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
||||||
"PE.Views.ChartSettings.textArea": "Flächen",
|
"PE.Views.ChartSettings.textArea": "Flächen",
|
||||||
"PE.Views.ChartSettings.textBar": "Balken",
|
"PE.Views.ChartSettings.textBar": "Balken",
|
||||||
|
@ -778,9 +797,12 @@
|
||||||
"PE.Views.DocumentHolder.textCut": "Ausschneiden",
|
"PE.Views.DocumentHolder.textCut": "Ausschneiden",
|
||||||
"PE.Views.DocumentHolder.textDistributeCols": "Spalten verteilen",
|
"PE.Views.DocumentHolder.textDistributeCols": "Spalten verteilen",
|
||||||
"PE.Views.DocumentHolder.textDistributeRows": "Zeilen verteilen",
|
"PE.Views.DocumentHolder.textDistributeRows": "Zeilen verteilen",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "Aus Datei",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "Aus URL",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Nächste Folie",
|
"PE.Views.DocumentHolder.textNextPage": "Nächste Folie",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Einfügen",
|
"PE.Views.DocumentHolder.textPaste": "Einfügen",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Vorherige Folie",
|
"PE.Views.DocumentHolder.textPrevPage": "Vorherige Folie",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "Bild ersetzen",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "Unten ausrichten",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "Unten ausrichten",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "Zentriert ausrichten",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "Zentriert ausrichten",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "Links ausrichten",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "Links ausrichten",
|
||||||
|
@ -980,7 +1002,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Geben Sie den QuickInfo-Text hier ein",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Geben Sie den QuickInfo-Text hier ein",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externer Link",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externer Link",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Folie in dieser Präsentation",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Folie in dieser Präsentation",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Hyperlinktyp",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "QuickInfo-Text",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "QuickInfo-Text",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink-Einstellungen",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink-Einstellungen",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||||
|
@ -1405,12 +1426,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Abbrechen",
|
"PE.Views.Toolbar.textCancel": "Abbrechen",
|
||||||
"PE.Views.Toolbar.textCharts": "Diagramme",
|
"PE.Views.Toolbar.textCharts": "Diagramme",
|
||||||
"PE.Views.Toolbar.textColumn": "Spalte",
|
"PE.Views.Toolbar.textColumn": "Spalte",
|
||||||
"PE.Views.Toolbar.textCompactView": "Symbolleiste ausblenden",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Folie anpassen",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Breite anpassen",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Lineale verbergen ",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Statusleiste verbergen",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Titelleiste verbergen",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Kursiv",
|
"PE.Views.Toolbar.textItalic": "Kursiv",
|
||||||
"PE.Views.Toolbar.textLine": "Linie",
|
"PE.Views.Toolbar.textLine": "Linie",
|
||||||
"PE.Views.Toolbar.textNewColor": "Benutzerdefinierte Farbe",
|
"PE.Views.Toolbar.textNewColor": "Benutzerdefinierte Farbe",
|
||||||
|
@ -1439,9 +1454,7 @@
|
||||||
"PE.Views.Toolbar.textTabProtect": "Schutz",
|
"PE.Views.Toolbar.textTabProtect": "Schutz",
|
||||||
"PE.Views.Toolbar.textTitleError": "Fehler",
|
"PE.Views.Toolbar.textTitleError": "Fehler",
|
||||||
"PE.Views.Toolbar.textUnderline": "Unterstrichen",
|
"PE.Views.Toolbar.textUnderline": "Unterstrichen",
|
||||||
"PE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Folie hinzufügen",
|
"PE.Views.Toolbar.tipAddSlide": "Folie hinzufügen",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Erweiterte Einstellungen",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Zurück",
|
"PE.Views.Toolbar.tipBack": "Zurück",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Diagrammtyp ändern",
|
"PE.Views.Toolbar.tipChangeChart": "Diagrammtyp ändern",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Folienlayout ändern",
|
"PE.Views.Toolbar.tipChangeSlide": "Folienlayout ändern",
|
||||||
|
@ -1454,7 +1467,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Schriftart",
|
"PE.Views.Toolbar.tipFontName": "Schriftart",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Schriftgrad",
|
"PE.Views.Toolbar.tipFontSize": "Schriftgrad",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Horizontale Ausrichtung",
|
"PE.Views.Toolbar.tipHAligh": "Horizontale Ausrichtung",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Titel- und Statusleiste verbergen",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Einzug vergrößern",
|
"PE.Views.Toolbar.tipIncPrLeft": "Einzug vergrößern",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Diagramm einfügen",
|
"PE.Views.Toolbar.tipInsertChart": "Diagramm einfügen",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Formel einfügen",
|
"PE.Views.Toolbar.tipInsertEquation": "Formel einfügen",
|
||||||
|
|
|
@ -80,15 +80,21 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Save & Exit",
|
"Common.Views.ExternalDiagramEditor.textSave": "Save & Exit",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Document is currently being edited by several users.",
|
"Common.Views.Header.labelCoUsersDescr": "Document is currently being edited by several users.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Advanced settings",
|
||||||
"Common.Views.Header.textBack": "Go to Documents",
|
"Common.Views.Header.textBack": "Go to Documents",
|
||||||
|
"Common.Views.Header.textCompactView": "Hide Toolbar",
|
||||||
|
"Common.Views.Header.textHideLines": "Hide Rulers",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Hide Status Bar",
|
||||||
"Common.Views.Header.textSaveBegin": "Saving...",
|
"Common.Views.Header.textSaveBegin": "Saving...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modified",
|
"Common.Views.Header.textSaveChanged": "Modified",
|
||||||
"Common.Views.Header.textSaveEnd": "All changes saved",
|
"Common.Views.Header.textSaveEnd": "All changes saved",
|
||||||
"Common.Views.Header.textSaveExpander": "All changes saved",
|
"Common.Views.Header.textSaveExpander": "All changes saved",
|
||||||
|
"Common.Views.Header.textZoom": "Zoom",
|
||||||
"Common.Views.Header.tipAccessRights": "Manage document access rights",
|
"Common.Views.Header.tipAccessRights": "Manage document access rights",
|
||||||
"Common.Views.Header.tipDownload": "Download file",
|
"Common.Views.Header.tipDownload": "Download file",
|
||||||
"Common.Views.Header.tipGoEdit": "Edit current file",
|
"Common.Views.Header.tipGoEdit": "Edit current file",
|
||||||
"Common.Views.Header.tipPrint": "Print file",
|
"Common.Views.Header.tipPrint": "Print file",
|
||||||
|
"Common.Views.Header.tipViewSettings": "View settings",
|
||||||
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
|
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
|
||||||
"Common.Views.Header.txtAccessRights": "Change access rights",
|
"Common.Views.Header.txtAccessRights": "Change access rights",
|
||||||
"Common.Views.Header.txtRename": "Rename",
|
"Common.Views.Header.txtRename": "Rename",
|
||||||
|
@ -352,6 +358,17 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Slide text",
|
"PE.Controllers.Main.txtSlideText": "Slide text",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Slide title",
|
"PE.Controllers.Main.txtSlideTitle": "Slide title",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
|
"PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "Blank",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Classic",
|
||||||
|
"PE.Controllers.Main.txtTheme_corner": "Corner",
|
||||||
|
"PE.Controllers.Main.txtTheme_dotted": "Dotted",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "Green",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "Lines",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "Office",
|
||||||
|
"PE.Controllers.Main.txtTheme_official": "Official",
|
||||||
|
"PE.Controllers.Main.txtTheme_pixel": "Pixel",
|
||||||
|
"PE.Controllers.Main.txtTheme_safari": "Safari",
|
||||||
|
"PE.Controllers.Main.txtTheme_turtle": "Turtle",
|
||||||
"PE.Controllers.Main.txtXAxis": "X Axis",
|
"PE.Controllers.Main.txtXAxis": "X Axis",
|
||||||
"PE.Controllers.Main.txtYAxis": "Y Axis",
|
"PE.Controllers.Main.txtYAxis": "Y Axis",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Unknown error.",
|
"PE.Controllers.Main.unknownErrorText": "Unknown error.",
|
||||||
|
@ -700,6 +717,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "Fit to Slide",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "Fit to Width",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
"PE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||||
"PE.Views.ChartSettings.textArea": "Area",
|
"PE.Views.ChartSettings.textArea": "Area",
|
||||||
"PE.Views.ChartSettings.textBar": "Bar",
|
"PE.Views.ChartSettings.textBar": "Bar",
|
||||||
|
@ -778,9 +797,12 @@
|
||||||
"PE.Views.DocumentHolder.textCut": "Cut",
|
"PE.Views.DocumentHolder.textCut": "Cut",
|
||||||
"PE.Views.DocumentHolder.textDistributeCols": "Distribute columns",
|
"PE.Views.DocumentHolder.textDistributeCols": "Distribute columns",
|
||||||
"PE.Views.DocumentHolder.textDistributeRows": "Distribute rows",
|
"PE.Views.DocumentHolder.textDistributeRows": "Distribute rows",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "From File",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "From URL",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Next Slide",
|
"PE.Views.DocumentHolder.textNextPage": "Next Slide",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Paste",
|
"PE.Views.DocumentHolder.textPaste": "Paste",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Previous Slide",
|
"PE.Views.DocumentHolder.textPrevPage": "Previous Slide",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "Replace image",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "Align Left",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "Align Left",
|
||||||
|
@ -980,7 +1002,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide In This Presentation",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide In This Presentation",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Link Type",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
|
||||||
|
@ -1405,12 +1426,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Cancel",
|
"PE.Views.Toolbar.textCancel": "Cancel",
|
||||||
"PE.Views.Toolbar.textCharts": "Charts",
|
"PE.Views.Toolbar.textCharts": "Charts",
|
||||||
"PE.Views.Toolbar.textColumn": "Column",
|
"PE.Views.Toolbar.textColumn": "Column",
|
||||||
"PE.Views.Toolbar.textCompactView": "Hide Toolbar",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Fit to Slide",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Fit to Width",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Hide Rulers",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Hide Status Bar",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Hide Title Bar",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Italic",
|
"PE.Views.Toolbar.textItalic": "Italic",
|
||||||
"PE.Views.Toolbar.textLine": "Line",
|
"PE.Views.Toolbar.textLine": "Line",
|
||||||
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
||||||
|
@ -1439,9 +1454,7 @@
|
||||||
"PE.Views.Toolbar.textTabProtect": "Protection",
|
"PE.Views.Toolbar.textTabProtect": "Protection",
|
||||||
"PE.Views.Toolbar.textTitleError": "Error",
|
"PE.Views.Toolbar.textTitleError": "Error",
|
||||||
"PE.Views.Toolbar.textUnderline": "Underline",
|
"PE.Views.Toolbar.textUnderline": "Underline",
|
||||||
"PE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Add slide",
|
"PE.Views.Toolbar.tipAddSlide": "Add slide",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Advanced settings",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Back",
|
"PE.Views.Toolbar.tipBack": "Back",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Change chart type",
|
"PE.Views.Toolbar.tipChangeChart": "Change chart type",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Change slide layout",
|
"PE.Views.Toolbar.tipChangeSlide": "Change slide layout",
|
||||||
|
@ -1454,7 +1467,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Font",
|
"PE.Views.Toolbar.tipFontName": "Font",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Font size",
|
"PE.Views.Toolbar.tipFontSize": "Font size",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Horizontal align",
|
"PE.Views.Toolbar.tipHAligh": "Horizontal align",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Hide Title bar & Status bar",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Increase indent",
|
"PE.Views.Toolbar.tipIncPrLeft": "Increase indent",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Insert chart",
|
"PE.Views.Toolbar.tipInsertChart": "Insert chart",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Insert equation",
|
"PE.Views.Toolbar.tipInsertEquation": "Insert equation",
|
||||||
|
|
|
@ -80,15 +80,21 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Guardar y salir",
|
"Common.Views.ExternalDiagramEditor.textSave": "Guardar y salir",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "El documento actualmente está siendo editado por varios usuarios.",
|
"Common.Views.Header.labelCoUsersDescr": "El documento actualmente está siendo editado por varios usuarios.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Ajustes avanzados",
|
||||||
"Common.Views.Header.textBack": "Ir a Documentos",
|
"Common.Views.Header.textBack": "Ir a Documentos",
|
||||||
|
"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.textSaveBegin": "Guardando...",
|
"Common.Views.Header.textSaveBegin": "Guardando...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modificado",
|
"Common.Views.Header.textSaveChanged": "Modificado",
|
||||||
"Common.Views.Header.textSaveEnd": "Todos los cambios son guardados",
|
"Common.Views.Header.textSaveEnd": "Todos los cambios son guardados",
|
||||||
"Common.Views.Header.textSaveExpander": "Todos los cambios son guardados",
|
"Common.Views.Header.textSaveExpander": "Todos los cambios son guardados",
|
||||||
|
"Common.Views.Header.textZoom": "Ampliación",
|
||||||
"Common.Views.Header.tipAccessRights": "Gestionar derechos de acceso al documento",
|
"Common.Views.Header.tipAccessRights": "Gestionar derechos de acceso al documento",
|
||||||
"Common.Views.Header.tipDownload": "Descargar archivo",
|
"Common.Views.Header.tipDownload": "Descargar archivo",
|
||||||
"Common.Views.Header.tipGoEdit": "Editar el archivo actual",
|
"Common.Views.Header.tipGoEdit": "Editar el archivo actual",
|
||||||
"Common.Views.Header.tipPrint": "Imprimir archivo",
|
"Common.Views.Header.tipPrint": "Imprimir archivo",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Mostrar ajustes",
|
||||||
"Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
|
"Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
|
||||||
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
|
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
|
||||||
"Common.Views.Header.txtRename": "Renombrar",
|
"Common.Views.Header.txtRename": "Renombrar",
|
||||||
|
@ -352,6 +358,11 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Texto de diapositiva",
|
"PE.Controllers.Main.txtSlideText": "Texto de diapositiva",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Título de diapositiva",
|
"PE.Controllers.Main.txtSlideTitle": "Título de diapositiva",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas",
|
"PE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "En blanco",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Clásico",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "Verde",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "Líneas",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "Oficina",
|
||||||
"PE.Controllers.Main.txtXAxis": "Eje X",
|
"PE.Controllers.Main.txtXAxis": "Eje X",
|
||||||
"PE.Controllers.Main.txtYAxis": "Eje Y",
|
"PE.Controllers.Main.txtYAxis": "Eje Y",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Error desconocido.",
|
"PE.Controllers.Main.unknownErrorText": "Error desconocido.",
|
||||||
|
@ -700,6 +711,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Elipsis vertical",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Elipsis vertical",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Csi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Csi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Dseda",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Dseda",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "Ajustar a la diapositiva",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "Ajustar al ancho",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
"PE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
||||||
"PE.Views.ChartSettings.textArea": "Gráfico de área",
|
"PE.Views.ChartSettings.textArea": "Gráfico de área",
|
||||||
"PE.Views.ChartSettings.textBar": "Gráfico de barras",
|
"PE.Views.ChartSettings.textBar": "Gráfico de barras",
|
||||||
|
@ -778,9 +791,12 @@
|
||||||
"PE.Views.DocumentHolder.textCut": "Cortar",
|
"PE.Views.DocumentHolder.textCut": "Cortar",
|
||||||
"PE.Views.DocumentHolder.textDistributeCols": "Distribuir columnas",
|
"PE.Views.DocumentHolder.textDistributeCols": "Distribuir columnas",
|
||||||
"PE.Views.DocumentHolder.textDistributeRows": "Distribuir filas",
|
"PE.Views.DocumentHolder.textDistributeRows": "Distribuir filas",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "De archivo",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "De URL",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Diapositiva siguiente",
|
"PE.Views.DocumentHolder.textNextPage": "Diapositiva siguiente",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Pegar",
|
"PE.Views.DocumentHolder.textPaste": "Pegar",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Diapositiva anterior",
|
"PE.Views.DocumentHolder.textPrevPage": "Diapositiva anterior",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "Reemplazar imagen",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "Alinear en la parte inferior",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "Alinear en la parte inferior",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "Alinear al centro",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "Alinear al centro",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "Alinear a la izquierda",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "Alinear a la izquierda",
|
||||||
|
@ -980,7 +996,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Introduzca informacíon sobre herramientas aquí",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Introduzca informacíon sobre herramientas aquí",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Enlace externo",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Enlace externo",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositiva en esta presentación",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositiva en esta presentación",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Típo de enlace",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "Información en pantalla",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "Información en pantalla",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Configuración de hiperenlace",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Configuración de hiperenlace",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo es obligatorio",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo es obligatorio",
|
||||||
|
@ -1405,12 +1420,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Cancelar",
|
"PE.Views.Toolbar.textCancel": "Cancelar",
|
||||||
"PE.Views.Toolbar.textCharts": "Gráficos",
|
"PE.Views.Toolbar.textCharts": "Gráficos",
|
||||||
"PE.Views.Toolbar.textColumn": "Histograma",
|
"PE.Views.Toolbar.textColumn": "Histograma",
|
||||||
"PE.Views.Toolbar.textCompactView": "Esconder barra de herramientas",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Ajustar a la diapositiva",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Ajustar a ancho",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Ocultar reglas",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Ocultar barra de estado",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Ocultar barra de título",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Cursiva",
|
"PE.Views.Toolbar.textItalic": "Cursiva",
|
||||||
"PE.Views.Toolbar.textLine": "Línea",
|
"PE.Views.Toolbar.textLine": "Línea",
|
||||||
"PE.Views.Toolbar.textNewColor": "Color personalizado",
|
"PE.Views.Toolbar.textNewColor": "Color personalizado",
|
||||||
|
@ -1439,9 +1448,7 @@
|
||||||
"PE.Views.Toolbar.textTabProtect": "Protección",
|
"PE.Views.Toolbar.textTabProtect": "Protección",
|
||||||
"PE.Views.Toolbar.textTitleError": "Error",
|
"PE.Views.Toolbar.textTitleError": "Error",
|
||||||
"PE.Views.Toolbar.textUnderline": "Subrayar",
|
"PE.Views.Toolbar.textUnderline": "Subrayar",
|
||||||
"PE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Añadir diapositiva",
|
"PE.Views.Toolbar.tipAddSlide": "Añadir diapositiva",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Ajustes avanzados",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Atrás",
|
"PE.Views.Toolbar.tipBack": "Atrás",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Cambiar tipo de gráfico",
|
"PE.Views.Toolbar.tipChangeChart": "Cambiar tipo de gráfico",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Cambiar diseño de diapositiva",
|
"PE.Views.Toolbar.tipChangeSlide": "Cambiar diseño de diapositiva",
|
||||||
|
@ -1454,7 +1461,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Letra ",
|
"PE.Views.Toolbar.tipFontName": "Letra ",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Tamaño de letra",
|
"PE.Views.Toolbar.tipFontSize": "Tamaño de letra",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Alineación horizontal",
|
"PE.Views.Toolbar.tipHAligh": "Alineación horizontal",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Ocultar barras de título y estado",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Aumentar sangría",
|
"PE.Views.Toolbar.tipIncPrLeft": "Aumentar sangría",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Insertar gráfico",
|
"PE.Views.Toolbar.tipInsertChart": "Insertar gráfico",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Insertar ecuación",
|
"PE.Views.Toolbar.tipInsertEquation": "Insertar ecuación",
|
||||||
|
|
|
@ -80,15 +80,21 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Enregistrer",
|
"Common.Views.ExternalDiagramEditor.textSave": "Enregistrer",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Éditeur de graphique",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Éditeur de graphique",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par plusieurs utilisateurs.",
|
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par plusieurs utilisateurs.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Paramètres avancés",
|
||||||
"Common.Views.Header.textBack": "Aller aux Documents",
|
"Common.Views.Header.textBack": "Aller aux Documents",
|
||||||
|
"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.textSaveBegin": "Enregistrement en cours...",
|
"Common.Views.Header.textSaveBegin": "Enregistrement en cours...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modifié",
|
"Common.Views.Header.textSaveChanged": "Modifié",
|
||||||
"Common.Views.Header.textSaveEnd": "Toutes les modifications sont enregistrées",
|
"Common.Views.Header.textSaveEnd": "Toutes les modifications sont enregistrées",
|
||||||
"Common.Views.Header.textSaveExpander": "Toutes les modifications sont enregistrées",
|
"Common.Views.Header.textSaveExpander": "Toutes les modifications sont enregistrées",
|
||||||
|
"Common.Views.Header.textZoom": "Grossissement",
|
||||||
"Common.Views.Header.tipAccessRights": "Gérer les droits d'accès au document",
|
"Common.Views.Header.tipAccessRights": "Gérer les droits d'accès au document",
|
||||||
"Common.Views.Header.tipDownload": "Télécharger le fichier",
|
"Common.Views.Header.tipDownload": "Télécharger le fichier",
|
||||||
"Common.Views.Header.tipGoEdit": "Modifier le fichier courant",
|
"Common.Views.Header.tipGoEdit": "Modifier le fichier courant",
|
||||||
"Common.Views.Header.tipPrint": "Imprimer le fichier",
|
"Common.Views.Header.tipPrint": "Imprimer le fichier",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Paramètres d'affichage",
|
||||||
"Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents",
|
"Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents",
|
||||||
"Common.Views.Header.txtAccessRights": "Modifier les droits d'accès",
|
"Common.Views.Header.txtAccessRights": "Modifier les droits d'accès",
|
||||||
"Common.Views.Header.txtRename": "Renommer",
|
"Common.Views.Header.txtRename": "Renommer",
|
||||||
|
@ -119,7 +125,7 @@
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Fichier protégé",
|
"Common.Views.OpenDialog.txtTitleProtected": "Fichier protégé",
|
||||||
"Common.Views.PasswordDialog.cancelButtonText": "Annuler",
|
"Common.Views.PasswordDialog.cancelButtonText": "Annuler",
|
||||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||||
"Common.Views.PasswordDialog.txtDescription": "Un mot de passe est requis pour ouvrir ce document",
|
"Common.Views.PasswordDialog.txtDescription": "Indiquez un mot de passe pour protéger ce document",
|
||||||
"Common.Views.PasswordDialog.txtIncorrectPwd": "Le mot de passe de confirmation n'est pas identique",
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "Le mot de passe de confirmation n'est pas identique",
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
|
"Common.Views.PasswordDialog.txtPassword": "Mot de passe",
|
||||||
"Common.Views.PasswordDialog.txtRepeat": "Confirmer le mot de passe",
|
"Common.Views.PasswordDialog.txtRepeat": "Confirmer le mot de passe",
|
||||||
|
@ -352,6 +358,11 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Texte de la diapositive",
|
"PE.Controllers.Main.txtSlideText": "Texte de la diapositive",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Titre de la diapositive",
|
"PE.Controllers.Main.txtSlideTitle": "Titre de la diapositive",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
|
"PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "Vide",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Classique",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "Vert",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "Lignes",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "Bureau",
|
||||||
"PE.Controllers.Main.txtXAxis": "Axe X",
|
"PE.Controllers.Main.txtXAxis": "Axe X",
|
||||||
"PE.Controllers.Main.txtYAxis": "Axe Y",
|
"PE.Controllers.Main.txtYAxis": "Axe Y",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Erreur inconnue.",
|
"PE.Controllers.Main.unknownErrorText": "Erreur inconnue.",
|
||||||
|
@ -700,6 +711,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Trois points verticaux",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Trois points verticaux",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zêta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zêta",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "Ajuster à la diapositive",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "Ajuster à la largeur",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
"PE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
||||||
"PE.Views.ChartSettings.textArea": "En aires",
|
"PE.Views.ChartSettings.textArea": "En aires",
|
||||||
"PE.Views.ChartSettings.textBar": "À barres",
|
"PE.Views.ChartSettings.textBar": "À barres",
|
||||||
|
@ -778,9 +791,12 @@
|
||||||
"PE.Views.DocumentHolder.textCut": "Couper",
|
"PE.Views.DocumentHolder.textCut": "Couper",
|
||||||
"PE.Views.DocumentHolder.textDistributeCols": "Distribuer les colonnes",
|
"PE.Views.DocumentHolder.textDistributeCols": "Distribuer les colonnes",
|
||||||
"PE.Views.DocumentHolder.textDistributeRows": "Distribuer les lignes",
|
"PE.Views.DocumentHolder.textDistributeRows": "Distribuer les lignes",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "D'un fichier",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "D'une URL",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Diapositive suivante",
|
"PE.Views.DocumentHolder.textNextPage": "Diapositive suivante",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Coller",
|
"PE.Views.DocumentHolder.textPaste": "Coller",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Diapositive précédente",
|
"PE.Views.DocumentHolder.textPrevPage": "Diapositive précédente",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "Remplacer l’image",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "Aligner en bas",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "Aligner en bas",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "Aligner au centre",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "Aligner au centre",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "Aligner à gauche",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "Aligner à gauche",
|
||||||
|
@ -980,7 +996,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enterez une info-bulle ici",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enterez une info-bulle ici",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Lien externe",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Lien externe",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Emplacement dans cette présentation",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Emplacement dans cette présentation",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Type de lien",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "Texte de l'info-bulle ",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "Texte de l'info-bulle ",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres du lien hypertexte",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Paramètres du lien hypertexte",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Champ obligatoire",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Champ obligatoire",
|
||||||
|
@ -1405,12 +1420,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Annuler",
|
"PE.Views.Toolbar.textCancel": "Annuler",
|
||||||
"PE.Views.Toolbar.textCharts": "Graphiques",
|
"PE.Views.Toolbar.textCharts": "Graphiques",
|
||||||
"PE.Views.Toolbar.textColumn": "Histogramme",
|
"PE.Views.Toolbar.textColumn": "Histogramme",
|
||||||
"PE.Views.Toolbar.textCompactView": "Masquer la barre d'outils",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Ajuster à la diapositive",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Ajuster à la largeur",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Masquer les règles",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Masquer la barre d'état",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Masquer la barre de titres",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Italique",
|
"PE.Views.Toolbar.textItalic": "Italique",
|
||||||
"PE.Views.Toolbar.textLine": "En ligne",
|
"PE.Views.Toolbar.textLine": "En ligne",
|
||||||
"PE.Views.Toolbar.textNewColor": "Couleur personnalisée",
|
"PE.Views.Toolbar.textNewColor": "Couleur personnalisée",
|
||||||
|
@ -1439,9 +1448,7 @@
|
||||||
"PE.Views.Toolbar.textTabProtect": "Protection",
|
"PE.Views.Toolbar.textTabProtect": "Protection",
|
||||||
"PE.Views.Toolbar.textTitleError": "Erreur",
|
"PE.Views.Toolbar.textTitleError": "Erreur",
|
||||||
"PE.Views.Toolbar.textUnderline": "Souligné",
|
"PE.Views.Toolbar.textUnderline": "Souligné",
|
||||||
"PE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Ajouter diapositive",
|
"PE.Views.Toolbar.tipAddSlide": "Ajouter diapositive",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Paramètres avancés",
|
|
||||||
"PE.Views.Toolbar.tipBack": "En arrière",
|
"PE.Views.Toolbar.tipBack": "En arrière",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Modifier le type de graphique",
|
"PE.Views.Toolbar.tipChangeChart": "Modifier le type de graphique",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Modifier la disposition de diapositive",
|
"PE.Views.Toolbar.tipChangeSlide": "Modifier la disposition de diapositive",
|
||||||
|
@ -1454,7 +1461,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Police",
|
"PE.Views.Toolbar.tipFontName": "Police",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Taille de la police",
|
"PE.Views.Toolbar.tipFontSize": "Taille de la police",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Alignement horizontal",
|
"PE.Views.Toolbar.tipHAligh": "Alignement horizontal",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Masquer la barre de titre et la barre d'état",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Augmenter le retrait",
|
"PE.Views.Toolbar.tipIncPrLeft": "Augmenter le retrait",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Insérer un graphique",
|
"PE.Views.Toolbar.tipInsertChart": "Insérer un graphique",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Insérer une équation",
|
"PE.Views.Toolbar.tipInsertEquation": "Insérer une équation",
|
||||||
|
|
|
@ -80,15 +80,21 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Salva ed esci",
|
"Common.Views.ExternalDiagramEditor.textSave": "Salva ed esci",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Modifica grafico",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Modifica grafico",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "È in corso la modifica del documento da parte di più utenti.",
|
"Common.Views.Header.labelCoUsersDescr": "È in corso la modifica del documento da parte di più utenti.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
|
||||||
"Common.Views.Header.textBack": "Va' ai Documenti",
|
"Common.Views.Header.textBack": "Va' ai Documenti",
|
||||||
|
"Common.Views.Header.textCompactView": "Mostra barra degli strumenti compatta",
|
||||||
|
"Common.Views.Header.textHideLines": "Nascondi righelli",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Nascondi barra di stato",
|
||||||
"Common.Views.Header.textSaveBegin": "Salvataggio in corso...",
|
"Common.Views.Header.textSaveBegin": "Salvataggio in corso...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modificato",
|
"Common.Views.Header.textSaveChanged": "Modificato",
|
||||||
"Common.Views.Header.textSaveEnd": "Tutte le modifiche sono state salvate",
|
"Common.Views.Header.textSaveEnd": "Tutte le modifiche sono state salvate",
|
||||||
"Common.Views.Header.textSaveExpander": "Tutte le modifiche sono state salvate",
|
"Common.Views.Header.textSaveExpander": "Tutte le modifiche sono state salvate",
|
||||||
|
"Common.Views.Header.textZoom": "Ingrandimento",
|
||||||
"Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento",
|
"Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento",
|
||||||
"Common.Views.Header.tipDownload": "Scarica file",
|
"Common.Views.Header.tipDownload": "Scarica file",
|
||||||
"Common.Views.Header.tipGoEdit": "Modifica il file corrente",
|
"Common.Views.Header.tipGoEdit": "Modifica il file corrente",
|
||||||
"Common.Views.Header.tipPrint": "Stampa file",
|
"Common.Views.Header.tipPrint": "Stampa file",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Mostra impostazioni",
|
||||||
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
|
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
|
||||||
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
|
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
|
||||||
"Common.Views.Header.txtRename": "Rinomina",
|
"Common.Views.Header.txtRename": "Rinomina",
|
||||||
|
@ -351,6 +357,11 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Testo diapositiva",
|
"PE.Controllers.Main.txtSlideText": "Testo diapositiva",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Titolo diapositiva",
|
"PE.Controllers.Main.txtSlideTitle": "Titolo diapositiva",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Stelle e nastri",
|
"PE.Controllers.Main.txtStarsRibbons": "Stelle e nastri",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "Vuoto",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Classico",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "Verde",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "Linee",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "Ufficio",
|
||||||
"PE.Controllers.Main.txtXAxis": "Asse X",
|
"PE.Controllers.Main.txtXAxis": "Asse X",
|
||||||
"PE.Controllers.Main.txtYAxis": "Asse Y",
|
"PE.Controllers.Main.txtYAxis": "Asse Y",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Errore sconosciuto.",
|
"PE.Controllers.Main.unknownErrorText": "Errore sconosciuto.",
|
||||||
|
@ -699,6 +710,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Ellissi verticale",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Ellissi verticale",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "Adatta alla diapositiva",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
"PE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
||||||
"PE.Views.ChartSettings.textArea": "Area",
|
"PE.Views.ChartSettings.textArea": "Area",
|
||||||
"PE.Views.ChartSettings.textBar": "Barra",
|
"PE.Views.ChartSettings.textBar": "Barra",
|
||||||
|
@ -777,9 +790,12 @@
|
||||||
"PE.Views.DocumentHolder.textCut": "Taglia",
|
"PE.Views.DocumentHolder.textCut": "Taglia",
|
||||||
"PE.Views.DocumentHolder.textDistributeCols": "Distribuisci colonne",
|
"PE.Views.DocumentHolder.textDistributeCols": "Distribuisci colonne",
|
||||||
"PE.Views.DocumentHolder.textDistributeRows": "Distribuisci righe",
|
"PE.Views.DocumentHolder.textDistributeRows": "Distribuisci righe",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "Da file",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "Da URL",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Diapositiva successiva",
|
"PE.Views.DocumentHolder.textNextPage": "Diapositiva successiva",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Incolla",
|
"PE.Views.DocumentHolder.textPaste": "Incolla",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Diapositiva precedente",
|
"PE.Views.DocumentHolder.textPrevPage": "Diapositiva precedente",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "Sostituisci immagine",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "Allinea in basso",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "Allinea in basso",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "Allinea al centro",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "Allinea al centro",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "Allinea a sinistra",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "Allinea a sinistra",
|
||||||
|
@ -979,7 +995,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Inserisci descrizione comando qui",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Inserisci descrizione comando qui",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Collegamento esterno",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Collegamento esterno",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositiva in questa presentazione",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositiva in questa presentazione",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Tipo collegamento",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "Testo del suggerimento",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "Testo del suggerimento",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Impostazioni collegamento ipertestuale",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Impostazioni collegamento ipertestuale",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Questo campo è richiesto",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Questo campo è richiesto",
|
||||||
|
@ -1404,12 +1419,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Annulla",
|
"PE.Views.Toolbar.textCancel": "Annulla",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafici",
|
"PE.Views.Toolbar.textCharts": "Grafici",
|
||||||
"PE.Views.Toolbar.textColumn": "Colonna",
|
"PE.Views.Toolbar.textColumn": "Colonna",
|
||||||
"PE.Views.Toolbar.textCompactView": "Mostra barra degli strumenti compatta",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Adatta alla diapositiva",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Adatta alla larghezza",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Nascondi righelli",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Nascondi barra di stato",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Nascondi barra di titolo",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Corsivo",
|
"PE.Views.Toolbar.textItalic": "Corsivo",
|
||||||
"PE.Views.Toolbar.textLine": "Linea",
|
"PE.Views.Toolbar.textLine": "Linea",
|
||||||
"PE.Views.Toolbar.textNewColor": "Colore personalizzato",
|
"PE.Views.Toolbar.textNewColor": "Colore personalizzato",
|
||||||
|
@ -1438,9 +1447,7 @@
|
||||||
"PE.Views.Toolbar.textTabProtect": "Protezione",
|
"PE.Views.Toolbar.textTabProtect": "Protezione",
|
||||||
"PE.Views.Toolbar.textTitleError": "Errore",
|
"PE.Views.Toolbar.textTitleError": "Errore",
|
||||||
"PE.Views.Toolbar.textUnderline": "Sottolineato",
|
"PE.Views.Toolbar.textUnderline": "Sottolineato",
|
||||||
"PE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Aggiungi diapositiva",
|
"PE.Views.Toolbar.tipAddSlide": "Aggiungi diapositiva",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Impostazioni avanzate",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Indietro",
|
"PE.Views.Toolbar.tipBack": "Indietro",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Cambia tipo di grafico",
|
"PE.Views.Toolbar.tipChangeChart": "Cambia tipo di grafico",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Cambia layout diapositiva",
|
"PE.Views.Toolbar.tipChangeSlide": "Cambia layout diapositiva",
|
||||||
|
@ -1453,7 +1460,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Tipo di carattere",
|
"PE.Views.Toolbar.tipFontName": "Tipo di carattere",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Dimensione carattere",
|
"PE.Views.Toolbar.tipFontSize": "Dimensione carattere",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Allineamento orizzontale",
|
"PE.Views.Toolbar.tipHAligh": "Allineamento orizzontale",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Nascondi barra di titolo e barra di stato",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Aumenta rientro",
|
"PE.Views.Toolbar.tipIncPrLeft": "Aumenta rientro",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Inserisci grafico",
|
"PE.Views.Toolbar.tipInsertChart": "Inserisci grafico",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Inserisci Equazione",
|
"PE.Views.Toolbar.tipInsertEquation": "Inserisci Equazione",
|
||||||
|
|
|
@ -57,6 +57,7 @@
|
||||||
"Common.Views.Comments.textAddComment": "덧글 추가",
|
"Common.Views.Comments.textAddComment": "덧글 추가",
|
||||||
"Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가",
|
"Common.Views.Comments.textAddCommentToDoc": "문서에 설명 추가",
|
||||||
"Common.Views.Comments.textAddReply": "답장 추가",
|
"Common.Views.Comments.textAddReply": "답장 추가",
|
||||||
|
"Common.Views.Comments.textAnonym": "손님",
|
||||||
"Common.Views.Comments.textCancel": "취소",
|
"Common.Views.Comments.textCancel": "취소",
|
||||||
"Common.Views.Comments.textClose": "닫기",
|
"Common.Views.Comments.textClose": "닫기",
|
||||||
"Common.Views.Comments.textComments": "Comments",
|
"Common.Views.Comments.textComments": "Comments",
|
||||||
|
@ -79,12 +80,21 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "저장 및 종료",
|
"Common.Views.ExternalDiagramEditor.textSave": "저장 및 종료",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "차트 편집기",
|
"Common.Views.ExternalDiagramEditor.textTitle": "차트 편집기",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "문서는 현재 여러 사용자가 편집하고 있습니다.",
|
"Common.Views.Header.labelCoUsersDescr": "문서는 현재 여러 사용자가 편집하고 있습니다.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "고급 설정",
|
||||||
"Common.Views.Header.textBack": "문서로 이동",
|
"Common.Views.Header.textBack": "문서로 이동",
|
||||||
|
"Common.Views.Header.textCompactView": "보기 컴팩트 도구 모음",
|
||||||
|
"Common.Views.Header.textHideLines": "눈금자 숨기기",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "상태 표시 줄 숨기기",
|
||||||
"Common.Views.Header.textSaveBegin": "저장 중 ...",
|
"Common.Views.Header.textSaveBegin": "저장 중 ...",
|
||||||
|
"Common.Views.Header.textSaveChanged": "수정된",
|
||||||
"Common.Views.Header.textSaveEnd": "모든 변경 사항이 저장되었습니다",
|
"Common.Views.Header.textSaveEnd": "모든 변경 사항이 저장되었습니다",
|
||||||
"Common.Views.Header.textSaveExpander": "모든 변경 사항이 저장되었습니다",
|
"Common.Views.Header.textSaveExpander": "모든 변경 사항이 저장되었습니다",
|
||||||
|
"Common.Views.Header.textZoom": "확대 / 축소",
|
||||||
"Common.Views.Header.tipAccessRights": "문서 액세스 권한 관리",
|
"Common.Views.Header.tipAccessRights": "문서 액세스 권한 관리",
|
||||||
"Common.Views.Header.tipDownload": "파일을 다운로드",
|
"Common.Views.Header.tipDownload": "파일을 다운로드",
|
||||||
|
"Common.Views.Header.tipGoEdit": "현재 파일 편집",
|
||||||
|
"Common.Views.Header.tipPrint": "파일 출력",
|
||||||
|
"Common.Views.Header.tipViewSettings": "보기 설정",
|
||||||
"Common.Views.Header.tipViewUsers": "사용자보기 및 문서 액세스 권한 관리",
|
"Common.Views.Header.tipViewUsers": "사용자보기 및 문서 액세스 권한 관리",
|
||||||
"Common.Views.Header.txtAccessRights": "액세스 권한 변경",
|
"Common.Views.Header.txtAccessRights": "액세스 권한 변경",
|
||||||
"Common.Views.Header.txtRename": "이름 바꾸기",
|
"Common.Views.Header.txtRename": "이름 바꾸기",
|
||||||
|
@ -106,55 +116,105 @@
|
||||||
"Common.Views.LanguageDialog.btnOk": "Ok",
|
"Common.Views.LanguageDialog.btnOk": "Ok",
|
||||||
"Common.Views.LanguageDialog.labelSelect": "문서 언어 선택",
|
"Common.Views.LanguageDialog.labelSelect": "문서 언어 선택",
|
||||||
"Common.Views.OpenDialog.cancelButtonText": "취소",
|
"Common.Views.OpenDialog.cancelButtonText": "취소",
|
||||||
|
"Common.Views.OpenDialog.closeButtonText": "파일 닫기",
|
||||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "인코딩",
|
"Common.Views.OpenDialog.txtEncoding": "인코딩",
|
||||||
|
"Common.Views.OpenDialog.txtIncorrectPwd": "비밀번호가 맞지 않음",
|
||||||
"Common.Views.OpenDialog.txtPassword": "비밀번호",
|
"Common.Views.OpenDialog.txtPassword": "비밀번호",
|
||||||
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
|
"Common.Views.OpenDialog.txtTitle": "% 1 옵션 선택",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "보호 된 파일",
|
"Common.Views.OpenDialog.txtTitleProtected": "보호 된 파일",
|
||||||
"Common.Views.PasswordDialog.cancelButtonText": "취소",
|
"Common.Views.PasswordDialog.cancelButtonText": "취소",
|
||||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.PasswordDialog.txtDescription": "문서 보호용 비밀번호를 세팅하세요",
|
||||||
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "확인 비밀번호가 같지 않음",
|
||||||
"Common.Views.PasswordDialog.txtPassword": "암호",
|
"Common.Views.PasswordDialog.txtPassword": "암호",
|
||||||
|
"Common.Views.PasswordDialog.txtRepeat": "비밀번호 반복",
|
||||||
|
"Common.Views.PasswordDialog.txtTitle": "비밀번호 설정",
|
||||||
"Common.Views.PluginDlg.textLoading": "로드 중",
|
"Common.Views.PluginDlg.textLoading": "로드 중",
|
||||||
"Common.Views.Plugins.groupCaption": "플러그인",
|
"Common.Views.Plugins.groupCaption": "플러그인",
|
||||||
"Common.Views.Plugins.strPlugins": "플러그인",
|
"Common.Views.Plugins.strPlugins": "플러그인",
|
||||||
"Common.Views.Plugins.textLoading": "로드 중",
|
"Common.Views.Plugins.textLoading": "로드 중",
|
||||||
"Common.Views.Plugins.textStart": "시작",
|
"Common.Views.Plugins.textStart": "시작",
|
||||||
|
"Common.Views.Plugins.textStop": "정지",
|
||||||
|
"Common.Views.Protection.hintAddPwd": "비밀번호로 암호화",
|
||||||
|
"Common.Views.Protection.hintPwd": "비밀번호 변경 또는 삭제",
|
||||||
|
"Common.Views.Protection.hintSignature": "디지털 서명 또는 서명 라인을 추가 ",
|
||||||
|
"Common.Views.Protection.txtAddPwd": "비밀번호 추가",
|
||||||
"Common.Views.Protection.txtChangePwd": "비밀번호를 변경",
|
"Common.Views.Protection.txtChangePwd": "비밀번호를 변경",
|
||||||
|
"Common.Views.Protection.txtDeletePwd": "비밀번호 삭제",
|
||||||
|
"Common.Views.Protection.txtEncrypt": "암호화",
|
||||||
|
"Common.Views.Protection.txtInvisibleSignature": "디지털 서명을 추가",
|
||||||
|
"Common.Views.Protection.txtSignature": "서명",
|
||||||
|
"Common.Views.Protection.txtSignatureLine": "서명 라인",
|
||||||
"Common.Views.RenameDialog.cancelButtonText": "취소",
|
"Common.Views.RenameDialog.cancelButtonText": "취소",
|
||||||
"Common.Views.RenameDialog.okButtonText": "Ok",
|
"Common.Views.RenameDialog.okButtonText": "Ok",
|
||||||
"Common.Views.RenameDialog.textName": "파일 이름",
|
"Common.Views.RenameDialog.textName": "파일 이름",
|
||||||
"Common.Views.RenameDialog.txtInvalidName": "파일 이름에 다음 문자를 포함 할 수 없습니다 :",
|
"Common.Views.RenameDialog.txtInvalidName": "파일 이름에 다음 문자를 포함 할 수 없습니다 :",
|
||||||
"Common.Views.ReviewChanges.hintNext": "다음 변경 사항",
|
"Common.Views.ReviewChanges.hintNext": "다음 변경 사항",
|
||||||
"Common.Views.ReviewChanges.hintPrev": "이전 변경으로",
|
"Common.Views.ReviewChanges.hintPrev": "이전 변경으로",
|
||||||
|
"Common.Views.ReviewChanges.strFast": "빠르게",
|
||||||
|
"Common.Views.ReviewChanges.strFastDesc": "실시간 협력 편집. 모든 변경사항들은 자동적으로 저장됨.",
|
||||||
|
"Common.Views.ReviewChanges.strStrict": "엄격한",
|
||||||
|
"Common.Views.ReviewChanges.strStrictDesc": "귀하와 다른 사람이 변경사항을 동기화 하려면 '저장'버튼을 사용하세요.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "현재 변경 내용 적용",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "현재 변경 내용 적용",
|
||||||
|
"Common.Views.ReviewChanges.tipCoAuthMode": "협력 편집 모드 세팅",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "버전 표시",
|
"Common.Views.ReviewChanges.tipHistory": "버전 표시",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "현재 변경 거부",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "현재 변경 거부",
|
||||||
"Common.Views.ReviewChanges.tipReview": "변경 내용 추적",
|
"Common.Views.ReviewChanges.tipReview": "변경 내용 추적",
|
||||||
|
"Common.Views.ReviewChanges.tipReviewView": "변경사항이 표시될 모드 선택",
|
||||||
"Common.Views.ReviewChanges.tipSetDocLang": "문서 언어 설정",
|
"Common.Views.ReviewChanges.tipSetDocLang": "문서 언어 설정",
|
||||||
"Common.Views.ReviewChanges.tipSetSpelling": "맞춤법 검사",
|
"Common.Views.ReviewChanges.tipSetSpelling": "맞춤법 검사",
|
||||||
"Common.Views.ReviewChanges.tipSharing": "문서 액세스 권한 관리",
|
"Common.Views.ReviewChanges.tipSharing": "문서 액세스 권한 관리",
|
||||||
"Common.Views.ReviewChanges.txtAccept": "수락",
|
"Common.Views.ReviewChanges.txtAccept": "수락",
|
||||||
"Common.Views.ReviewChanges.txtAcceptAll": "모든 변경 내용 적용",
|
"Common.Views.ReviewChanges.txtAcceptAll": "모든 변경 내용 적용",
|
||||||
|
"Common.Views.ReviewChanges.txtAcceptChanges": "변경 접수",
|
||||||
"Common.Views.ReviewChanges.txtAcceptCurrent": "현재 변경 내용 적용",
|
"Common.Views.ReviewChanges.txtAcceptCurrent": "현재 변경 내용 적용",
|
||||||
|
"Common.Views.ReviewChanges.txtChat": "채팅",
|
||||||
"Common.Views.ReviewChanges.txtClose": "완료",
|
"Common.Views.ReviewChanges.txtClose": "완료",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "공동 편집 모드",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "공동 편집 모드",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "언어",
|
"Common.Views.ReviewChanges.txtDocLang": "언어",
|
||||||
|
"Common.Views.ReviewChanges.txtFinal": "모든 변경 접수됨 (미리보기)",
|
||||||
|
"Common.Views.ReviewChanges.txtFinalCap": "최종",
|
||||||
"Common.Views.ReviewChanges.txtHistory": "버전 기록",
|
"Common.Views.ReviewChanges.txtHistory": "버전 기록",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkup": "모든 변경 (편집)",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkupCap": "마크업",
|
||||||
"Common.Views.ReviewChanges.txtNext": "다음",
|
"Common.Views.ReviewChanges.txtNext": "다음",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginal": "모든 변경 거부됨 (미리보기)",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginalCap": "오리지널",
|
||||||
"Common.Views.ReviewChanges.txtPrev": "이전",
|
"Common.Views.ReviewChanges.txtPrev": "이전",
|
||||||
"Common.Views.ReviewChanges.txtReject": "거부",
|
"Common.Views.ReviewChanges.txtReject": "거부",
|
||||||
"Common.Views.ReviewChanges.txtRejectAll": "모든 변경 사항 거부",
|
"Common.Views.ReviewChanges.txtRejectAll": "모든 변경 사항 거부",
|
||||||
|
"Common.Views.ReviewChanges.txtRejectChanges": "변경 거부",
|
||||||
"Common.Views.ReviewChanges.txtRejectCurrent": "현재 변경 거부",
|
"Common.Views.ReviewChanges.txtRejectCurrent": "현재 변경 거부",
|
||||||
|
"Common.Views.ReviewChanges.txtSharing": "공유",
|
||||||
"Common.Views.ReviewChanges.txtSpelling": "맞춤법 검사",
|
"Common.Views.ReviewChanges.txtSpelling": "맞춤법 검사",
|
||||||
"Common.Views.ReviewChanges.txtTurnon": "변경 내용 추적",
|
"Common.Views.ReviewChanges.txtTurnon": "변경 내용 추적",
|
||||||
|
"Common.Views.ReviewChanges.txtView": "디스플레이 모드",
|
||||||
"Common.Views.SignDialog.cancelButtonText": "취소",
|
"Common.Views.SignDialog.cancelButtonText": "취소",
|
||||||
"Common.Views.SignDialog.okButtonText": "OK",
|
"Common.Views.SignDialog.okButtonText": "OK",
|
||||||
"Common.Views.SignDialog.textBold": "볼드체",
|
"Common.Views.SignDialog.textBold": "볼드체",
|
||||||
|
"Common.Views.SignDialog.textCertificate": "인증",
|
||||||
"Common.Views.SignDialog.textChange": "변경",
|
"Common.Views.SignDialog.textChange": "변경",
|
||||||
|
"Common.Views.SignDialog.textInputName": "서명자 성함을 입력하세요",
|
||||||
|
"Common.Views.SignDialog.textItalic": "이탤릭",
|
||||||
|
"Common.Views.SignDialog.textPurpose": "이 문서에 서명하는 목적",
|
||||||
|
"Common.Views.SignDialog.textSelectImage": "이미지 선택",
|
||||||
|
"Common.Views.SignDialog.textSignature": "서명은 처럼 보임",
|
||||||
|
"Common.Views.SignDialog.textTitle": "서명문서",
|
||||||
|
"Common.Views.SignDialog.textUseImage": "또는 서명으로 그림을 사용하려면 '이미지 선택'을 클릭",
|
||||||
|
"Common.Views.SignDialog.textValid": "%1에서 %2까지 유효",
|
||||||
|
"Common.Views.SignDialog.tipFontName": "폰트명",
|
||||||
"Common.Views.SignDialog.tipFontSize": "글꼴 크기",
|
"Common.Views.SignDialog.tipFontSize": "글꼴 크기",
|
||||||
"Common.Views.SignSettingsDialog.cancelButtonText": "취소",
|
"Common.Views.SignSettingsDialog.cancelButtonText": "취소",
|
||||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.SignSettingsDialog.textAllowComment": "서명 대화창에 서명자의 코멘트 추가 허용",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfo": "서명자 정보",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoEmail": "이메일",
|
||||||
"Common.Views.SignSettingsDialog.textInfoName": "이름",
|
"Common.Views.SignSettingsDialog.textInfoName": "이름",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoTitle": "서명자 타이틀",
|
||||||
|
"Common.Views.SignSettingsDialog.textInstructions": "서명자용 지침",
|
||||||
|
"Common.Views.SignSettingsDialog.textShowDate": "서명라인에 서명 날짜를 보여주세요",
|
||||||
|
"Common.Views.SignSettingsDialog.textTitle": "서명 세팅",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목",
|
"Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목",
|
||||||
"PE.Controllers.LeftMenu.newDocumentTitle": "명명되지 않은 프레젠테이션",
|
"PE.Controllers.LeftMenu.newDocumentTitle": "명명되지 않은 프레젠테이션",
|
||||||
"PE.Controllers.LeftMenu.requestEditRightsText": "편집 권한 요청 중 ...",
|
"PE.Controllers.LeftMenu.requestEditRightsText": "편집 권한 요청 중 ...",
|
||||||
|
@ -176,6 +236,7 @@
|
||||||
"PE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
|
"PE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
|
||||||
"PE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
|
"PE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
|
||||||
"PE.Controllers.Main.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.",
|
"PE.Controllers.Main.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.",
|
||||||
|
"PE.Controllers.Main.errorForceSave": "파일 저장중 문제 발생됨. 컴퓨터 하드 드라이브에 파일을 저장하려면 '로 다운로드' 옵션을 사용 또는 나중에 다시 시도하세요.",
|
||||||
"PE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자",
|
"PE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자",
|
||||||
"PE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다",
|
"PE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다",
|
||||||
"PE.Controllers.Main.errorProcessSaveResult": "저장하지 못했습니다.",
|
"PE.Controllers.Main.errorProcessSaveResult": "저장하지 못했습니다.",
|
||||||
|
@ -232,6 +293,8 @@
|
||||||
"PE.Controllers.Main.textTryUndoRedo": "빠른 편집 편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다. <br>\"엄격 모드 \"버튼을 클릭하면 Strict 동시 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 변경 사항을 보내십시오. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ",
|
"PE.Controllers.Main.textTryUndoRedo": "빠른 편집 편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다. <br>\"엄격 모드 \"버튼을 클릭하면 Strict 동시 편집 모드로 전환되어 파일을 편집 할 수 있습니다. 다른 사용자가 방해를해서 저장 한 후에 만 변경 사항을 보내십시오. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ",
|
||||||
"PE.Controllers.Main.titleLicenseExp": "라이센스 만료",
|
"PE.Controllers.Main.titleLicenseExp": "라이센스 만료",
|
||||||
"PE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다",
|
"PE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다",
|
||||||
|
"PE.Controllers.Main.txtAddFirstSlide": "첫번째 슬라이드를 추가하려면 클릭",
|
||||||
|
"PE.Controllers.Main.txtAddNotes": "노트를 추가하려면 클릭",
|
||||||
"PE.Controllers.Main.txtArt": "여기에 귀하의 텍스트",
|
"PE.Controllers.Main.txtArt": "여기에 귀하의 텍스트",
|
||||||
"PE.Controllers.Main.txtBasicShapes": "기본 도형",
|
"PE.Controllers.Main.txtBasicShapes": "기본 도형",
|
||||||
"PE.Controllers.Main.txtButtons": "버튼",
|
"PE.Controllers.Main.txtButtons": "버튼",
|
||||||
|
@ -295,6 +358,11 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "슬라이드 텍스트",
|
"PE.Controllers.Main.txtSlideText": "슬라이드 텍스트",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "슬라이드 제목",
|
"PE.Controllers.Main.txtSlideTitle": "슬라이드 제목",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "별 & 리본",
|
"PE.Controllers.Main.txtStarsRibbons": "별 & 리본",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "공백",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "클래식",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "녹색",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "선",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "사무실",
|
||||||
"PE.Controllers.Main.txtXAxis": "X 축",
|
"PE.Controllers.Main.txtXAxis": "X 축",
|
||||||
"PE.Controllers.Main.txtYAxis": "Y 축",
|
"PE.Controllers.Main.txtYAxis": "Y 축",
|
||||||
"PE.Controllers.Main.unknownErrorText": "알 수없는 오류.",
|
"PE.Controllers.Main.unknownErrorText": "알 수없는 오류.",
|
||||||
|
@ -643,6 +711,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "세로 줄임표",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "세로 줄임표",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "슬라이드에 맞추기",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "너비에 맞춤",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
"PE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
||||||
"PE.Views.ChartSettings.textArea": "영역",
|
"PE.Views.ChartSettings.textArea": "영역",
|
||||||
"PE.Views.ChartSettings.textBar": "Bar",
|
"PE.Views.ChartSettings.textBar": "Bar",
|
||||||
|
@ -719,9 +789,14 @@
|
||||||
"PE.Views.DocumentHolder.textArrangeFront": "전경으로 가져 오기",
|
"PE.Views.DocumentHolder.textArrangeFront": "전경으로 가져 오기",
|
||||||
"PE.Views.DocumentHolder.textCopy": "복사",
|
"PE.Views.DocumentHolder.textCopy": "복사",
|
||||||
"PE.Views.DocumentHolder.textCut": "잘라 내기",
|
"PE.Views.DocumentHolder.textCut": "잘라 내기",
|
||||||
|
"PE.Views.DocumentHolder.textDistributeCols": "컬럼 배포",
|
||||||
|
"PE.Views.DocumentHolder.textDistributeRows": "행 배포",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "파일로부터",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "URL로부터",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "다음 슬라이드",
|
"PE.Views.DocumentHolder.textNextPage": "다음 슬라이드",
|
||||||
"PE.Views.DocumentHolder.textPaste": "붙여 넣기",
|
"PE.Views.DocumentHolder.textPaste": "붙여 넣기",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "이전 슬라이드",
|
"PE.Views.DocumentHolder.textPrevPage": "이전 슬라이드",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "이미지 바꾸기",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "아래쪽 정렬",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "아래쪽 정렬",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "가운데 맞춤",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "가운데 맞춤",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "왼쪽 정렬",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "왼쪽 정렬",
|
||||||
|
@ -747,6 +822,7 @@
|
||||||
"PE.Views.DocumentHolder.txtBorderProps": "테두리 속성",
|
"PE.Views.DocumentHolder.txtBorderProps": "테두리 속성",
|
||||||
"PE.Views.DocumentHolder.txtBottom": "Bottom",
|
"PE.Views.DocumentHolder.txtBottom": "Bottom",
|
||||||
"PE.Views.DocumentHolder.txtChangeLayout": "레이아웃 변경",
|
"PE.Views.DocumentHolder.txtChangeLayout": "레이아웃 변경",
|
||||||
|
"PE.Views.DocumentHolder.txtChangeTheme": "테마 변경",
|
||||||
"PE.Views.DocumentHolder.txtColumnAlign": "열 정렬",
|
"PE.Views.DocumentHolder.txtColumnAlign": "열 정렬",
|
||||||
"PE.Views.DocumentHolder.txtDecreaseArg": "인수 크기 감소",
|
"PE.Views.DocumentHolder.txtDecreaseArg": "인수 크기 감소",
|
||||||
"PE.Views.DocumentHolder.txtDeleteArg": "인수 삭제",
|
"PE.Views.DocumentHolder.txtDeleteArg": "인수 삭제",
|
||||||
|
@ -794,7 +870,9 @@
|
||||||
"PE.Views.DocumentHolder.txtMatrixAlign": "매트릭스 정렬",
|
"PE.Views.DocumentHolder.txtMatrixAlign": "매트릭스 정렬",
|
||||||
"PE.Views.DocumentHolder.txtNewSlide": "새 슬라이드",
|
"PE.Views.DocumentHolder.txtNewSlide": "새 슬라이드",
|
||||||
"PE.Views.DocumentHolder.txtOverbar": "텍스트 위에 가로 막기",
|
"PE.Views.DocumentHolder.txtOverbar": "텍스트 위에 가로 막기",
|
||||||
|
"PE.Views.DocumentHolder.txtPasteDestFormat": "목적 테마를 사용하기",
|
||||||
"PE.Views.DocumentHolder.txtPastePicture": "그림",
|
"PE.Views.DocumentHolder.txtPastePicture": "그림",
|
||||||
|
"PE.Views.DocumentHolder.txtPasteSourceFormat": "소스 포맷을 유지하세요",
|
||||||
"PE.Views.DocumentHolder.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭",
|
"PE.Views.DocumentHolder.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭",
|
||||||
"PE.Views.DocumentHolder.txtPreview": "슬라이드 쇼 시작",
|
"PE.Views.DocumentHolder.txtPreview": "슬라이드 쇼 시작",
|
||||||
"PE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거",
|
"PE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거",
|
||||||
|
@ -814,6 +892,7 @@
|
||||||
"PE.Views.DocumentHolder.txtShowPlaceholder": "자리 표시 자 표시",
|
"PE.Views.DocumentHolder.txtShowPlaceholder": "자리 표시 자 표시",
|
||||||
"PE.Views.DocumentHolder.txtShowTopLimit": "상한 표시",
|
"PE.Views.DocumentHolder.txtShowTopLimit": "상한 표시",
|
||||||
"PE.Views.DocumentHolder.txtSlide": "슬라이드",
|
"PE.Views.DocumentHolder.txtSlide": "슬라이드",
|
||||||
|
"PE.Views.DocumentHolder.txtSlideHide": "슬라이드 감추기",
|
||||||
"PE.Views.DocumentHolder.txtStretchBrackets": "스트레치 괄호",
|
"PE.Views.DocumentHolder.txtStretchBrackets": "스트레치 괄호",
|
||||||
"PE.Views.DocumentHolder.txtTop": "Top",
|
"PE.Views.DocumentHolder.txtTop": "Top",
|
||||||
"PE.Views.DocumentHolder.txtUnderbar": "텍스트 아래에 바",
|
"PE.Views.DocumentHolder.txtUnderbar": "텍스트 아래에 바",
|
||||||
|
@ -822,6 +901,7 @@
|
||||||
"PE.Views.DocumentPreview.goToSlideText": "슬라이드로 이동",
|
"PE.Views.DocumentPreview.goToSlideText": "슬라이드로 이동",
|
||||||
"PE.Views.DocumentPreview.slideIndexText": "{1} 중 {0} 슬라이드",
|
"PE.Views.DocumentPreview.slideIndexText": "{1} 중 {0} 슬라이드",
|
||||||
"PE.Views.DocumentPreview.txtClose": "슬라이드 쇼 닫기",
|
"PE.Views.DocumentPreview.txtClose": "슬라이드 쇼 닫기",
|
||||||
|
"PE.Views.DocumentPreview.txtEndSlideshow": "슬라이드쇼 끝",
|
||||||
"PE.Views.DocumentPreview.txtExitFullScreen": "전체 화면 나가기",
|
"PE.Views.DocumentPreview.txtExitFullScreen": "전체 화면 나가기",
|
||||||
"PE.Views.DocumentPreview.txtFinalMessage": "슬라이드 미리보기의 끝입니다. 끝내려면 클릭하십시오.",
|
"PE.Views.DocumentPreview.txtFinalMessage": "슬라이드 미리보기의 끝입니다. 끝내려면 클릭하십시오.",
|
||||||
"PE.Views.DocumentPreview.txtFullScreen": "전체 화면",
|
"PE.Views.DocumentPreview.txtFullScreen": "전체 화면",
|
||||||
|
@ -839,6 +919,7 @@
|
||||||
"PE.Views.FileMenu.btnHelpCaption": "Help ...",
|
"PE.Views.FileMenu.btnHelpCaption": "Help ...",
|
||||||
"PE.Views.FileMenu.btnInfoCaption": "프레젠테이션 정보 ...",
|
"PE.Views.FileMenu.btnInfoCaption": "프레젠테이션 정보 ...",
|
||||||
"PE.Views.FileMenu.btnPrintCaption": "인쇄",
|
"PE.Views.FileMenu.btnPrintCaption": "인쇄",
|
||||||
|
"PE.Views.FileMenu.btnProtectCaption": "보호",
|
||||||
"PE.Views.FileMenu.btnRecentFilesCaption": "최근 열기 ...",
|
"PE.Views.FileMenu.btnRecentFilesCaption": "최근 열기 ...",
|
||||||
"PE.Views.FileMenu.btnRenameCaption": "Rename ...",
|
"PE.Views.FileMenu.btnRenameCaption": "Rename ...",
|
||||||
"PE.Views.FileMenu.btnReturnCaption": "프레젠테이션으로 돌아 가기",
|
"PE.Views.FileMenu.btnReturnCaption": "프레젠테이션으로 돌아 가기",
|
||||||
|
@ -861,7 +942,15 @@
|
||||||
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "액세스 권한 변경",
|
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "액세스 권한 변경",
|
||||||
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람",
|
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "권한이있는 사람",
|
||||||
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "경고",
|
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "경고",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "비밀번호로",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.strProtect": "프리젠테이션 보호",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.strSignature": "서명으로",
|
||||||
"PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "프리젠 테이션 편집",
|
"PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "프리젠 테이션 편집",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "편집은 프리젠테이션에서 서명을 삭제할 것입니다.<br>계속하시겠습니까?",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "이 프리젠테이션은 비밀번호로 보호되었슴.",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "유효 서명자가 프리젠테이션에 추가되었슴. 이 프리젠테이션은 편집할 수 없도록 보호됨.",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "프리젠테이션내 몇가지 디지털 서명이 유효하지 않거나 확인되지 않음. 이 프리젠테이션은 편집할 수 없도록 보호됨.",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtView": "서명 보기",
|
||||||
"PE.Views.FileMenuPanels.Settings.okButtonText": "적용",
|
"PE.Views.FileMenuPanels.Settings.okButtonText": "적용",
|
||||||
"PE.Views.FileMenuPanels.Settings.strAlignGuides": "정렬 안내선 켜기",
|
"PE.Views.FileMenuPanels.Settings.strAlignGuides": "정렬 안내선 켜기",
|
||||||
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "자동 검색 켜기",
|
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "자동 검색 켜기",
|
||||||
|
@ -907,7 +996,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "여기에 툴팁 입력",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "여기에 툴팁 입력",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "외부 링크",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "외부 링크",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "이 프리젠 테이션에서 슬라이드",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "이 프리젠 테이션에서 슬라이드",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "링크 유형",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "스크린 팁 텍스트",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "스크린 팁 텍스트",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "하이퍼 링크 설정",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "하이퍼 링크 설정",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "이 입력란은 필수 항목",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "이 입력란은 필수 항목",
|
||||||
|
@ -992,6 +1080,7 @@
|
||||||
"PE.Views.RightMenu.txtImageSettings": "이미지 설정",
|
"PE.Views.RightMenu.txtImageSettings": "이미지 설정",
|
||||||
"PE.Views.RightMenu.txtParagraphSettings": "텍스트 설정",
|
"PE.Views.RightMenu.txtParagraphSettings": "텍스트 설정",
|
||||||
"PE.Views.RightMenu.txtShapeSettings": "도형 설정",
|
"PE.Views.RightMenu.txtShapeSettings": "도형 설정",
|
||||||
|
"PE.Views.RightMenu.txtSignatureSettings": "서명 세팅",
|
||||||
"PE.Views.RightMenu.txtSlideSettings": "슬라이드 설정",
|
"PE.Views.RightMenu.txtSlideSettings": "슬라이드 설정",
|
||||||
"PE.Views.RightMenu.txtTableSettings": "표 설정",
|
"PE.Views.RightMenu.txtTableSettings": "표 설정",
|
||||||
"PE.Views.RightMenu.txtTextArtSettings": "텍스트 아트 설정",
|
"PE.Views.RightMenu.txtTextArtSettings": "텍스트 아트 설정",
|
||||||
|
@ -1072,6 +1161,16 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWidth": "너비",
|
"PE.Views.ShapeSettingsAdvanced.textWidth": "너비",
|
||||||
"PE.Views.ShapeSettingsAdvanced.txtNone": "없음",
|
"PE.Views.ShapeSettingsAdvanced.txtNone": "없음",
|
||||||
"PE.Views.SignatureSettings.notcriticalErrorTitle": "경고",
|
"PE.Views.SignatureSettings.notcriticalErrorTitle": "경고",
|
||||||
|
"PE.Views.SignatureSettings.strDelete": "서명 삭제",
|
||||||
|
"PE.Views.SignatureSettings.strDetails": "서명 상세",
|
||||||
|
"PE.Views.SignatureSettings.strInvalid": "잘못된 서명",
|
||||||
|
"PE.Views.SignatureSettings.strSign": "서명",
|
||||||
|
"PE.Views.SignatureSettings.strSignature": "서명",
|
||||||
|
"PE.Views.SignatureSettings.strValid": "유효 서명",
|
||||||
|
"PE.Views.SignatureSettings.txtContinueEditing": "무조건 편집",
|
||||||
|
"PE.Views.SignatureSettings.txtEditWarning": "편집은 프리젠테이션에서 서명을 삭제할 것입니다.<br>계속하시겠습니까?",
|
||||||
|
"PE.Views.SignatureSettings.txtSigned": "유효 서명자가 프리젠테이션에 추가되었슴. 이 프리젠테이션은 편집할 수 없도록 보호됨.",
|
||||||
|
"PE.Views.SignatureSettings.txtSignedInvalid": "프리젠테이션내 몇가지 디지털 서명이 유효하지 않거나 확인되지 않음. 이 프리젠테이션은 편집할 수 없도록 보호됨.",
|
||||||
"PE.Views.SlideSettings.strBackground": "배경색",
|
"PE.Views.SlideSettings.strBackground": "배경색",
|
||||||
"PE.Views.SlideSettings.strColor": "Color",
|
"PE.Views.SlideSettings.strColor": "Color",
|
||||||
"PE.Views.SlideSettings.strDelay": "지연",
|
"PE.Views.SlideSettings.strDelay": "지연",
|
||||||
|
@ -1202,17 +1301,22 @@
|
||||||
"PE.Views.TableSettings.textBanded": "줄무늬",
|
"PE.Views.TableSettings.textBanded": "줄무늬",
|
||||||
"PE.Views.TableSettings.textBorderColor": "Color",
|
"PE.Views.TableSettings.textBorderColor": "Color",
|
||||||
"PE.Views.TableSettings.textBorders": "테두리 스타일",
|
"PE.Views.TableSettings.textBorders": "테두리 스타일",
|
||||||
|
"PE.Views.TableSettings.textCellSize": "셀 크기",
|
||||||
"PE.Views.TableSettings.textColumns": "열",
|
"PE.Views.TableSettings.textColumns": "열",
|
||||||
|
"PE.Views.TableSettings.textDistributeCols": "컬럼 배포",
|
||||||
|
"PE.Views.TableSettings.textDistributeRows": "행 배포",
|
||||||
"PE.Views.TableSettings.textEdit": "행 및 열",
|
"PE.Views.TableSettings.textEdit": "행 및 열",
|
||||||
"PE.Views.TableSettings.textEmptyTemplate": "템플릿 없음",
|
"PE.Views.TableSettings.textEmptyTemplate": "템플릿 없음",
|
||||||
"PE.Views.TableSettings.textFirst": "First",
|
"PE.Views.TableSettings.textFirst": "First",
|
||||||
"PE.Views.TableSettings.textHeader": "머리글",
|
"PE.Views.TableSettings.textHeader": "머리글",
|
||||||
|
"PE.Views.TableSettings.textHeight": "높이",
|
||||||
"PE.Views.TableSettings.textLast": "마지막",
|
"PE.Views.TableSettings.textLast": "마지막",
|
||||||
"PE.Views.TableSettings.textNewColor": "사용자 정의 색상",
|
"PE.Views.TableSettings.textNewColor": "사용자 정의 색상",
|
||||||
"PE.Views.TableSettings.textRows": "행",
|
"PE.Views.TableSettings.textRows": "행",
|
||||||
"PE.Views.TableSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택",
|
"PE.Views.TableSettings.textSelectBorders": "위에서 선택한 스타일 적용을 변경하려는 테두리 선택",
|
||||||
"PE.Views.TableSettings.textTemplate": "템플릿에서 선택",
|
"PE.Views.TableSettings.textTemplate": "템플릿에서 선택",
|
||||||
"PE.Views.TableSettings.textTotal": "합계",
|
"PE.Views.TableSettings.textTotal": "합계",
|
||||||
|
"PE.Views.TableSettings.textWidth": "너비",
|
||||||
"PE.Views.TableSettings.tipAll": "바깥 쪽 테두리 및 모든 안쪽 선 설정",
|
"PE.Views.TableSettings.tipAll": "바깥 쪽 테두리 및 모든 안쪽 선 설정",
|
||||||
"PE.Views.TableSettings.tipBottom": "바깥 쪽 테두리 만 설정",
|
"PE.Views.TableSettings.tipBottom": "바깥 쪽 테두리 만 설정",
|
||||||
"PE.Views.TableSettings.tipInner": "내부 라인 만 설정",
|
"PE.Views.TableSettings.tipInner": "내부 라인 만 설정",
|
||||||
|
@ -1287,7 +1391,9 @@
|
||||||
"PE.Views.Toolbar.capInsertEquation": "수식",
|
"PE.Views.Toolbar.capInsertEquation": "수식",
|
||||||
"PE.Views.Toolbar.capInsertHyperlink": "하이퍼 링크",
|
"PE.Views.Toolbar.capInsertHyperlink": "하이퍼 링크",
|
||||||
"PE.Views.Toolbar.capInsertImage": "그림",
|
"PE.Views.Toolbar.capInsertImage": "그림",
|
||||||
|
"PE.Views.Toolbar.capInsertShape": "쉐이프",
|
||||||
"PE.Views.Toolbar.capInsertTable": "테이블",
|
"PE.Views.Toolbar.capInsertTable": "테이블",
|
||||||
|
"PE.Views.Toolbar.capInsertText": "텍스트 박스",
|
||||||
"PE.Views.Toolbar.capTabFile": "파일",
|
"PE.Views.Toolbar.capTabFile": "파일",
|
||||||
"PE.Views.Toolbar.capTabHome": "집",
|
"PE.Views.Toolbar.capTabHome": "집",
|
||||||
"PE.Views.Toolbar.capTabInsert": "삽입",
|
"PE.Views.Toolbar.capTabInsert": "삽입",
|
||||||
|
@ -1314,12 +1420,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "취소",
|
"PE.Views.Toolbar.textCancel": "취소",
|
||||||
"PE.Views.Toolbar.textCharts": "차트",
|
"PE.Views.Toolbar.textCharts": "차트",
|
||||||
"PE.Views.Toolbar.textColumn": "Column",
|
"PE.Views.Toolbar.textColumn": "Column",
|
||||||
"PE.Views.Toolbar.textCompactView": "보기 컴팩트 도구 모음",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "슬라이드에 맞추기",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "너비에 맞춤",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "눈금자 숨기기",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "상태 표시 줄 숨기기",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "제목 표시 줄 숨기기",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Italic",
|
"PE.Views.Toolbar.textItalic": "Italic",
|
||||||
"PE.Views.Toolbar.textLine": "Line",
|
"PE.Views.Toolbar.textLine": "Line",
|
||||||
"PE.Views.Toolbar.textNewColor": "사용자 정의 색상",
|
"PE.Views.Toolbar.textNewColor": "사용자 정의 색상",
|
||||||
|
@ -1334,20 +1434,21 @@
|
||||||
"PE.Views.Toolbar.textShapeAlignTop": "정렬",
|
"PE.Views.Toolbar.textShapeAlignTop": "정렬",
|
||||||
"PE.Views.Toolbar.textShowBegin": "처음부터 보여주기",
|
"PE.Views.Toolbar.textShowBegin": "처음부터 보여주기",
|
||||||
"PE.Views.Toolbar.textShowCurrent": "현재 슬라이드에서보기",
|
"PE.Views.Toolbar.textShowCurrent": "현재 슬라이드에서보기",
|
||||||
|
"PE.Views.Toolbar.textShowPresenterView": "프리젠터뷰를 보기",
|
||||||
"PE.Views.Toolbar.textShowSettings": "설정 표시",
|
"PE.Views.Toolbar.textShowSettings": "설정 표시",
|
||||||
"PE.Views.Toolbar.textStock": "Stock",
|
"PE.Views.Toolbar.textStock": "Stock",
|
||||||
"PE.Views.Toolbar.textStrikeout": "Strikeout",
|
"PE.Views.Toolbar.textStrikeout": "Strikeout",
|
||||||
"PE.Views.Toolbar.textSubscript": "아래 첨자",
|
"PE.Views.Toolbar.textSubscript": "아래 첨자",
|
||||||
"PE.Views.Toolbar.textSuperscript": "위첨자",
|
"PE.Views.Toolbar.textSuperscript": "위첨자",
|
||||||
"PE.Views.Toolbar.textSurface": "Surface",
|
"PE.Views.Toolbar.textSurface": "Surface",
|
||||||
|
"PE.Views.Toolbar.textTabCollaboration": "합치기",
|
||||||
"PE.Views.Toolbar.textTabFile": "파일",
|
"PE.Views.Toolbar.textTabFile": "파일",
|
||||||
"PE.Views.Toolbar.textTabHome": "집",
|
"PE.Views.Toolbar.textTabHome": "집",
|
||||||
"PE.Views.Toolbar.textTabInsert": "삽입",
|
"PE.Views.Toolbar.textTabInsert": "삽입",
|
||||||
|
"PE.Views.Toolbar.textTabProtect": "보호",
|
||||||
"PE.Views.Toolbar.textTitleError": "오류",
|
"PE.Views.Toolbar.textTitleError": "오류",
|
||||||
"PE.Views.Toolbar.textUnderline": "밑줄",
|
"PE.Views.Toolbar.textUnderline": "밑줄",
|
||||||
"PE.Views.Toolbar.textZoom": "확대 / 축소",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "슬라이드 추가",
|
"PE.Views.Toolbar.tipAddSlide": "슬라이드 추가",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "고급 설정",
|
|
||||||
"PE.Views.Toolbar.tipBack": "뒤로",
|
"PE.Views.Toolbar.tipBack": "뒤로",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "차트 유형 변경",
|
"PE.Views.Toolbar.tipChangeChart": "차트 유형 변경",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "슬라이드 레이아웃 변경",
|
"PE.Views.Toolbar.tipChangeSlide": "슬라이드 레이아웃 변경",
|
||||||
|
@ -1360,7 +1461,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "글꼴",
|
"PE.Views.Toolbar.tipFontName": "글꼴",
|
||||||
"PE.Views.Toolbar.tipFontSize": "글꼴 크기",
|
"PE.Views.Toolbar.tipFontSize": "글꼴 크기",
|
||||||
"PE.Views.Toolbar.tipHAligh": "수평 정렬",
|
"PE.Views.Toolbar.tipHAligh": "수평 정렬",
|
||||||
"PE.Views.Toolbar.tipHideBars": "제목 표시 줄 및 상태 표시 줄 숨기기",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "들여 쓰기",
|
"PE.Views.Toolbar.tipIncPrLeft": "들여 쓰기",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "차트 삽입",
|
"PE.Views.Toolbar.tipInsertChart": "차트 삽입",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "수식 삽입",
|
"PE.Views.Toolbar.tipInsertEquation": "수식 삽입",
|
||||||
|
@ -1368,7 +1468,7 @@
|
||||||
"PE.Views.Toolbar.tipInsertImage": "그림 삽입",
|
"PE.Views.Toolbar.tipInsertImage": "그림 삽입",
|
||||||
"PE.Views.Toolbar.tipInsertShape": "도형 삽입",
|
"PE.Views.Toolbar.tipInsertShape": "도형 삽입",
|
||||||
"PE.Views.Toolbar.tipInsertTable": "표 삽입",
|
"PE.Views.Toolbar.tipInsertTable": "표 삽입",
|
||||||
"PE.Views.Toolbar.tipInsertText": "텍스트 삽입",
|
"PE.Views.Toolbar.tipInsertText": "텍스트 상자 삽입",
|
||||||
"PE.Views.Toolbar.tipInsertTextArt": "텍스트 아트 삽입",
|
"PE.Views.Toolbar.tipInsertTextArt": "텍스트 아트 삽입",
|
||||||
"PE.Views.Toolbar.tipLineSpace": "줄 간격",
|
"PE.Views.Toolbar.tipLineSpace": "줄 간격",
|
||||||
"PE.Views.Toolbar.tipMarkers": "글 머리 기호",
|
"PE.Views.Toolbar.tipMarkers": "글 머리 기호",
|
||||||
|
|
|
@ -80,11 +80,14 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Save & Exit",
|
"Common.Views.ExternalDiagramEditor.textSave": "Save & Exit",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Šobrīd dokumentu rediģē vairāki lietotāji.",
|
"Common.Views.Header.labelCoUsersDescr": "Šobrīd dokumentu rediģē vairāki lietotāji.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Papildu iestatījumi",
|
||||||
"Common.Views.Header.textBack": "Go to Documents",
|
"Common.Views.Header.textBack": "Go to Documents",
|
||||||
|
"Common.Views.Header.textCompactView": "Slēpt rīkjoslu",
|
||||||
"Common.Views.Header.textSaveBegin": "Saglabā ...",
|
"Common.Views.Header.textSaveBegin": "Saglabā ...",
|
||||||
"Common.Views.Header.textSaveChanged": "Pārveidots",
|
"Common.Views.Header.textSaveChanged": "Pārveidots",
|
||||||
"Common.Views.Header.textSaveEnd": "Visas izmaiņas saglabātas",
|
"Common.Views.Header.textSaveEnd": "Visas izmaiņas saglabātas",
|
||||||
"Common.Views.Header.textSaveExpander": "Visas izmaiņas saglabātas",
|
"Common.Views.Header.textSaveExpander": "Visas izmaiņas saglabātas",
|
||||||
|
"Common.Views.Header.textZoom": "Palielināšana",
|
||||||
"Common.Views.Header.tipAccessRights": "Pārvaldīt dokumenta piekļuves tiesības",
|
"Common.Views.Header.tipAccessRights": "Pārvaldīt dokumenta piekļuves tiesības",
|
||||||
"Common.Views.Header.tipDownload": "Lejupielādēt failu",
|
"Common.Views.Header.tipDownload": "Lejupielādēt failu",
|
||||||
"Common.Views.Header.tipGoEdit": "Rediģēt šībrīža failu",
|
"Common.Views.Header.tipGoEdit": "Rediģēt šībrīža failu",
|
||||||
|
@ -352,6 +355,11 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Slaida teksts",
|
"PE.Controllers.Main.txtSlideText": "Slaida teksts",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Slaida nosaukums",
|
"PE.Controllers.Main.txtSlideTitle": "Slaida nosaukums",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
|
"PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "Tukšs",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Klasiskais",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "Zaļš",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "Līnijas",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "Birojs",
|
||||||
"PE.Controllers.Main.txtXAxis": "X Axis",
|
"PE.Controllers.Main.txtXAxis": "X Axis",
|
||||||
"PE.Controllers.Main.txtYAxis": "Y Axis",
|
"PE.Controllers.Main.txtYAxis": "Y Axis",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Unknown error.",
|
"PE.Controllers.Main.unknownErrorText": "Unknown error.",
|
||||||
|
@ -700,6 +708,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikālā elipse",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikālā elipse",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Ksi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Ksi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "Saskaņot ar slaidu",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "Saskaņot ar platumu",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Radīt papildu iestatījumus",
|
"PE.Views.ChartSettings.textAdvanced": "Radīt papildu iestatījumus",
|
||||||
"PE.Views.ChartSettings.textArea": "Area Chart",
|
"PE.Views.ChartSettings.textArea": "Area Chart",
|
||||||
"PE.Views.ChartSettings.textBar": "Bar Chart",
|
"PE.Views.ChartSettings.textBar": "Bar Chart",
|
||||||
|
@ -778,9 +788,12 @@
|
||||||
"PE.Views.DocumentHolder.textCut": "Cut",
|
"PE.Views.DocumentHolder.textCut": "Cut",
|
||||||
"PE.Views.DocumentHolder.textDistributeCols": "Izplatīt kolonnas",
|
"PE.Views.DocumentHolder.textDistributeCols": "Izplatīt kolonnas",
|
||||||
"PE.Views.DocumentHolder.textDistributeRows": "Izplatīt rindas",
|
"PE.Views.DocumentHolder.textDistributeRows": "Izplatīt rindas",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "No faila",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "No URL",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Next Slide",
|
"PE.Views.DocumentHolder.textNextPage": "Next Slide",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Paste",
|
"PE.Views.DocumentHolder.textPaste": "Paste",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Previous Slide",
|
"PE.Views.DocumentHolder.textPrevPage": "Previous Slide",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "Aizvietot attēlu",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "Align Left",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "Align Left",
|
||||||
|
@ -980,7 +993,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide In This Presentation",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide In This Presentation",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Link Type",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
|
||||||
|
@ -1405,12 +1417,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Cancel",
|
"PE.Views.Toolbar.textCancel": "Cancel",
|
||||||
"PE.Views.Toolbar.textCharts": "Diagrammas",
|
"PE.Views.Toolbar.textCharts": "Diagrammas",
|
||||||
"PE.Views.Toolbar.textColumn": "Column Chart",
|
"PE.Views.Toolbar.textColumn": "Column Chart",
|
||||||
"PE.Views.Toolbar.textCompactView": "Slēpt rīkjoslu",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Fit Slide",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Fit Width",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Hide Rulers",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Hide Status Bar",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Hide Title Bar",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Italic",
|
"PE.Views.Toolbar.textItalic": "Italic",
|
||||||
"PE.Views.Toolbar.textLine": "Line Chart",
|
"PE.Views.Toolbar.textLine": "Line Chart",
|
||||||
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
||||||
|
@ -1439,9 +1445,7 @@
|
||||||
"PE.Views.Toolbar.textTabProtect": "Aizsardzība",
|
"PE.Views.Toolbar.textTabProtect": "Aizsardzība",
|
||||||
"PE.Views.Toolbar.textTitleError": "Error",
|
"PE.Views.Toolbar.textTitleError": "Error",
|
||||||
"PE.Views.Toolbar.textUnderline": "Underline",
|
"PE.Views.Toolbar.textUnderline": "Underline",
|
||||||
"PE.Views.Toolbar.textZoom": "Zoom",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Add Slide",
|
"PE.Views.Toolbar.tipAddSlide": "Add Slide",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Advanced Settings",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Back",
|
"PE.Views.Toolbar.tipBack": "Back",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Izmainīt diagrammas veidu",
|
"PE.Views.Toolbar.tipChangeChart": "Izmainīt diagrammas veidu",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout",
|
"PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout",
|
||||||
|
@ -1454,7 +1458,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Fonts",
|
"PE.Views.Toolbar.tipFontName": "Fonts",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Font Size",
|
"PE.Views.Toolbar.tipFontSize": "Font Size",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Horizontal Align",
|
"PE.Views.Toolbar.tipHAligh": "Horizontal Align",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Hide Title bar & Status bar",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Increase Indent",
|
"PE.Views.Toolbar.tipIncPrLeft": "Increase Indent",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Insert Chart",
|
"PE.Views.Toolbar.tipInsertChart": "Insert Chart",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Ievietot vienādojumu",
|
"PE.Views.Toolbar.tipInsertEquation": "Ievietot vienādojumu",
|
||||||
|
|
|
@ -80,15 +80,21 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Opslaan en afsluiten",
|
"Common.Views.ExternalDiagramEditor.textSave": "Opslaan en afsluiten",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Grafiekeditor",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Grafiekeditor",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Document wordt op dit moment bewerkt door verschillende gebruikers.",
|
"Common.Views.Header.labelCoUsersDescr": "Document wordt op dit moment bewerkt door verschillende gebruikers.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Geavanceerde instellingen",
|
||||||
"Common.Views.Header.textBack": "Naar documenten",
|
"Common.Views.Header.textBack": "Naar documenten",
|
||||||
|
"Common.Views.Header.textCompactView": "Werkbalk Verbergen",
|
||||||
|
"Common.Views.Header.textHideLines": "Linialen verbergen",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Statusbalk verbergen",
|
||||||
"Common.Views.Header.textSaveBegin": "Opslaan...",
|
"Common.Views.Header.textSaveBegin": "Opslaan...",
|
||||||
"Common.Views.Header.textSaveChanged": "Gewijzigd",
|
"Common.Views.Header.textSaveChanged": "Gewijzigd",
|
||||||
"Common.Views.Header.textSaveEnd": "Alle wijzigingen zijn opgeslagen.",
|
"Common.Views.Header.textSaveEnd": "Alle wijzigingen zijn opgeslagen.",
|
||||||
"Common.Views.Header.textSaveExpander": "Alle wijzigingen zijn opgeslagen.",
|
"Common.Views.Header.textSaveExpander": "Alle wijzigingen zijn opgeslagen.",
|
||||||
|
"Common.Views.Header.textZoom": "Zoomen",
|
||||||
"Common.Views.Header.tipAccessRights": "Toegangsrechten van documenten beheren",
|
"Common.Views.Header.tipAccessRights": "Toegangsrechten van documenten beheren",
|
||||||
"Common.Views.Header.tipDownload": "Bestand downloaden",
|
"Common.Views.Header.tipDownload": "Bestand downloaden",
|
||||||
"Common.Views.Header.tipGoEdit": "Huidig bestand bewerken",
|
"Common.Views.Header.tipGoEdit": "Huidig bestand bewerken",
|
||||||
"Common.Views.Header.tipPrint": "Bestand afdrukken",
|
"Common.Views.Header.tipPrint": "Bestand afdrukken",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Weergave-instellingen",
|
||||||
"Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren",
|
"Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren",
|
||||||
"Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen",
|
"Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen",
|
||||||
"Common.Views.Header.txtRename": "Hernoemen",
|
"Common.Views.Header.txtRename": "Hernoemen",
|
||||||
|
@ -110,21 +116,106 @@
|
||||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||||
"Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren",
|
"Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren",
|
||||||
"Common.Views.OpenDialog.cancelButtonText": "Annuleren",
|
"Common.Views.OpenDialog.cancelButtonText": "Annuleren",
|
||||||
|
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
|
||||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
|
"Common.Views.OpenDialog.txtEncoding": "Versleuteling",
|
||||||
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist",
|
||||||
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
|
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
|
||||||
"Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen",
|
"Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen",
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Beschermd bestand",
|
"Common.Views.OpenDialog.txtTitleProtected": "Beschermd bestand",
|
||||||
|
"Common.Views.PasswordDialog.cancelButtonText": "Annuleren",
|
||||||
|
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.PasswordDialog.txtDescription": "Pas een wachtwoord toe om dit document te beveiligen",
|
||||||
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "Bevestig wachtwoord is niet identiek",
|
||||||
|
"Common.Views.PasswordDialog.txtPassword": "Wachtwoord",
|
||||||
|
"Common.Views.PasswordDialog.txtRepeat": "Herhaal wachtwoord",
|
||||||
|
"Common.Views.PasswordDialog.txtTitle": "Wachtwoord instellen",
|
||||||
"Common.Views.PluginDlg.textLoading": "Laden",
|
"Common.Views.PluginDlg.textLoading": "Laden",
|
||||||
"Common.Views.Plugins.groupCaption": "Plug-ins",
|
"Common.Views.Plugins.groupCaption": "Plug-ins",
|
||||||
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
"Common.Views.Plugins.strPlugins": "Plug-ins",
|
||||||
"Common.Views.Plugins.textLoading": "Laden",
|
"Common.Views.Plugins.textLoading": "Laden",
|
||||||
"Common.Views.Plugins.textStart": "Starten",
|
"Common.Views.Plugins.textStart": "Starten",
|
||||||
"Common.Views.Plugins.textStop": "Stoppen",
|
"Common.Views.Plugins.textStop": "Stoppen",
|
||||||
|
"Common.Views.Protection.hintAddPwd": "Versleutelen met wachtwoord",
|
||||||
|
"Common.Views.Protection.hintPwd": "Verander of verwijder wachtwoord",
|
||||||
|
"Common.Views.Protection.hintSignature": "Digitale handtekening toevoegen of handtekening lijn",
|
||||||
|
"Common.Views.Protection.txtAddPwd": "Wachtwoord toevoegen",
|
||||||
|
"Common.Views.Protection.txtChangePwd": "Verander wachtwoord",
|
||||||
|
"Common.Views.Protection.txtDeletePwd": "Wachtwoord verwijderen",
|
||||||
|
"Common.Views.Protection.txtEncrypt": "Versleutelen",
|
||||||
|
"Common.Views.Protection.txtInvisibleSignature": "Digitale handtekening toevoegen",
|
||||||
|
"Common.Views.Protection.txtSignature": "Handtekening",
|
||||||
|
"Common.Views.Protection.txtSignatureLine": "Handtekening lijn",
|
||||||
"Common.Views.RenameDialog.cancelButtonText": "Annuleren",
|
"Common.Views.RenameDialog.cancelButtonText": "Annuleren",
|
||||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||||
"Common.Views.RenameDialog.textName": "Bestandsnaam",
|
"Common.Views.RenameDialog.textName": "Bestandsnaam",
|
||||||
"Common.Views.RenameDialog.txtInvalidName": "De bestandsnaam mag geen van de volgende tekens bevatten:",
|
"Common.Views.RenameDialog.txtInvalidName": "De bestandsnaam mag geen van de volgende tekens bevatten:",
|
||||||
|
"Common.Views.ReviewChanges.hintNext": "Naar volgende wijziging",
|
||||||
|
"Common.Views.ReviewChanges.hintPrev": "Naar vorige wijziging",
|
||||||
|
"Common.Views.ReviewChanges.strFast": "Snel",
|
||||||
|
"Common.Views.ReviewChanges.strFastDesc": "Real-time samenwerken. Alle wijzigingen worden automatisch opgeslagen.",
|
||||||
|
"Common.Views.ReviewChanges.strStrict": "Strikt",
|
||||||
|
"Common.Views.ReviewChanges.strStrictDesc": "Gebruik de 'Opslaan' knop om de wijzigingen van u en andere te synchroniseren.",
|
||||||
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Huidige wijziging accepteren",
|
||||||
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Zet samenwerkings modus",
|
||||||
|
"Common.Views.ReviewChanges.tipHistory": "Toon versie geschiedenis",
|
||||||
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Huidige wijziging afwijzen",
|
||||||
|
"Common.Views.ReviewChanges.tipReview": "Wijzigingen bijhouden",
|
||||||
|
"Common.Views.ReviewChanges.tipReviewView": "Selecteer de modus waarin u de veranderingen weer wilt laten geven",
|
||||||
|
"Common.Views.ReviewChanges.tipSetDocLang": "Taal van document instellen",
|
||||||
|
"Common.Views.ReviewChanges.tipSetSpelling": "Spellingcontrole",
|
||||||
|
"Common.Views.ReviewChanges.tipSharing": "Toegangsrechten documenten beheren",
|
||||||
|
"Common.Views.ReviewChanges.txtAccept": "Accepteren",
|
||||||
|
"Common.Views.ReviewChanges.txtAcceptAll": "Alle wijzigingen accepteren",
|
||||||
|
"Common.Views.ReviewChanges.txtAcceptChanges": "Wijzigingen Accepteren",
|
||||||
|
"Common.Views.ReviewChanges.txtAcceptCurrent": "Huidige wijziging accepteren",
|
||||||
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
|
"Common.Views.ReviewChanges.txtClose": "Sluiten",
|
||||||
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Modus Gezamenlijk bewerken",
|
||||||
|
"Common.Views.ReviewChanges.txtDocLang": "Taal",
|
||||||
|
"Common.Views.ReviewChanges.txtFinal": "Alle veranderingen geaccepteerd (Voorbeeld)",
|
||||||
|
"Common.Views.ReviewChanges.txtFinalCap": "Einde",
|
||||||
|
"Common.Views.ReviewChanges.txtHistory": "Versie geschiedenis",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkup": "Alle veranderingen (Bewerken)",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
|
||||||
|
"Common.Views.ReviewChanges.txtNext": "Volgende",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginal": "Alle veranderingen afgekeurd (Voorbeeld)",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginalCap": "Origineel",
|
||||||
|
"Common.Views.ReviewChanges.txtPrev": "Vorige",
|
||||||
|
"Common.Views.ReviewChanges.txtReject": "Afwijzen",
|
||||||
|
"Common.Views.ReviewChanges.txtRejectAll": "Alle wijzigingen afwijzen",
|
||||||
|
"Common.Views.ReviewChanges.txtRejectChanges": "Wijzigingen Afwijzen",
|
||||||
|
"Common.Views.ReviewChanges.txtRejectCurrent": "Huidige wijziging afwijzen",
|
||||||
|
"Common.Views.ReviewChanges.txtSharing": "Delen",
|
||||||
|
"Common.Views.ReviewChanges.txtSpelling": "Spellingcontrole",
|
||||||
|
"Common.Views.ReviewChanges.txtTurnon": "Wijzigingen bijhouden",
|
||||||
|
"Common.Views.ReviewChanges.txtView": "Weergavemodus",
|
||||||
|
"Common.Views.SignDialog.cancelButtonText": "Annuleren",
|
||||||
|
"Common.Views.SignDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.SignDialog.textBold": "Vet",
|
||||||
|
"Common.Views.SignDialog.textCertificate": "Certificaat",
|
||||||
|
"Common.Views.SignDialog.textChange": "Wijzigen",
|
||||||
|
"Common.Views.SignDialog.textInputName": "Naam ondertekenaar invoeren",
|
||||||
|
"Common.Views.SignDialog.textItalic": "Cursief",
|
||||||
|
"Common.Views.SignDialog.textPurpose": "Doel voor het ondertekenen van dit document",
|
||||||
|
"Common.Views.SignDialog.textSelectImage": "Selecteer afbeelding",
|
||||||
|
"Common.Views.SignDialog.textSignature": "Handtekening lijkt op",
|
||||||
|
"Common.Views.SignDialog.textTitle": "Onderteken document",
|
||||||
|
"Common.Views.SignDialog.textUseImage": "of klik 'Selecteer afbeelding' om een afbeelding als handtekening te gebruiken",
|
||||||
|
"Common.Views.SignDialog.textValid": "Geldig van %1 tot %2",
|
||||||
|
"Common.Views.SignDialog.tipFontName": "Lettertype",
|
||||||
|
"Common.Views.SignDialog.tipFontSize": "Tekengrootte",
|
||||||
|
"Common.Views.SignSettingsDialog.cancelButtonText": "Annuleren",
|
||||||
|
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.SignSettingsDialog.textAllowComment": "Sta ondertekenaar toe commentaar toe te voegen in het handtekening venster.",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfo": "Ondertekenaar info",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoName": "Naam",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoTitle": "Ondertekenaar titel",
|
||||||
|
"Common.Views.SignSettingsDialog.textInstructions": "Instructies voor ondertekenaar",
|
||||||
|
"Common.Views.SignSettingsDialog.textShowDate": "Toon signeer datum in handtekening regel",
|
||||||
|
"Common.Views.SignSettingsDialog.textTitle": "Handtekening instellingen",
|
||||||
|
"Common.Views.SignSettingsDialog.txtEmpty": "Dit veld is vereist",
|
||||||
"PE.Controllers.LeftMenu.newDocumentTitle": "Presentatie zonder naam",
|
"PE.Controllers.LeftMenu.newDocumentTitle": "Presentatie zonder naam",
|
||||||
"PE.Controllers.LeftMenu.requestEditRightsText": "Bewerkrechten worden aangevraagd...",
|
"PE.Controllers.LeftMenu.requestEditRightsText": "Bewerkrechten worden aangevraagd...",
|
||||||
"PE.Controllers.LeftMenu.textNoTextFound": "De gegevens waarnaar u zoekt, zijn niet gevonden. Pas uw zoekopties aan.",
|
"PE.Controllers.LeftMenu.textNoTextFound": "De gegevens waarnaar u zoekt, zijn niet gevonden. Pas uw zoekopties aan.",
|
||||||
|
@ -145,6 +236,7 @@
|
||||||
"PE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.",
|
"PE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.",
|
||||||
"PE.Controllers.Main.errorDefaultMessage": "Foutcode: %1",
|
"PE.Controllers.Main.errorDefaultMessage": "Foutcode: %1",
|
||||||
"PE.Controllers.Main.errorFilePassProtect": "Het document is beschermd met een wachtwoord en kan niet worden geopend.",
|
"PE.Controllers.Main.errorFilePassProtect": "Het document is beschermd met een wachtwoord en kan niet worden geopend.",
|
||||||
|
"PE.Controllers.Main.errorForceSave": "Er is een fout ontstaan bij het opslaan van het bestand. Gebruik de 'Download als' knop om het bestand op te slaan op uw computer of probeer het later nog eens.",
|
||||||
"PE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor",
|
"PE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor",
|
||||||
"PE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen",
|
"PE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen",
|
||||||
"PE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt.",
|
"PE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt.",
|
||||||
|
@ -195,12 +287,14 @@
|
||||||
"PE.Controllers.Main.textCloseTip": "Klik om de tip te sluiten",
|
"PE.Controllers.Main.textCloseTip": "Klik om de tip te sluiten",
|
||||||
"PE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop",
|
"PE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop",
|
||||||
"PE.Controllers.Main.textLoadingDocument": "Presentatie wordt geladen",
|
"PE.Controllers.Main.textLoadingDocument": "Presentatie wordt geladen",
|
||||||
"PE.Controllers.Main.textNoLicenseTitle": "Open source-versie ONLYOFFICE",
|
"PE.Controllers.Main.textNoLicenseTitle": "Only Office verbindingslimiet",
|
||||||
"PE.Controllers.Main.textShape": "Vorm",
|
"PE.Controllers.Main.textShape": "Vorm",
|
||||||
"PE.Controllers.Main.textStrict": "Strikte modus",
|
"PE.Controllers.Main.textStrict": "Strikte modus",
|
||||||
"PE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.<br>Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.",
|
"PE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.<br>Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.",
|
||||||
"PE.Controllers.Main.titleLicenseExp": "Licentie vervallen",
|
"PE.Controllers.Main.titleLicenseExp": "Licentie vervallen",
|
||||||
"PE.Controllers.Main.titleServerVersion": "Editor bijgewerkt",
|
"PE.Controllers.Main.titleServerVersion": "Editor bijgewerkt",
|
||||||
|
"PE.Controllers.Main.txtAddFirstSlide": "Klik om de eerste slide te maken",
|
||||||
|
"PE.Controllers.Main.txtAddNotes": "Klik om notities toe te voegen",
|
||||||
"PE.Controllers.Main.txtArt": "Hier tekst invoeren",
|
"PE.Controllers.Main.txtArt": "Hier tekst invoeren",
|
||||||
"PE.Controllers.Main.txtBasicShapes": "Basisvormen",
|
"PE.Controllers.Main.txtBasicShapes": "Basisvormen",
|
||||||
"PE.Controllers.Main.txtButtons": "Knoppen",
|
"PE.Controllers.Main.txtButtons": "Knoppen",
|
||||||
|
@ -216,7 +310,7 @@
|
||||||
"PE.Controllers.Main.txtHeader": "Koptekst",
|
"PE.Controllers.Main.txtHeader": "Koptekst",
|
||||||
"PE.Controllers.Main.txtImage": "Afbeelding",
|
"PE.Controllers.Main.txtImage": "Afbeelding",
|
||||||
"PE.Controllers.Main.txtLines": "Lijnen",
|
"PE.Controllers.Main.txtLines": "Lijnen",
|
||||||
"PE.Controllers.Main.txtLoading": "Aan het laden...",
|
"PE.Controllers.Main.txtLoading": "Bezig met laden...",
|
||||||
"PE.Controllers.Main.txtMath": "Wiskunde",
|
"PE.Controllers.Main.txtMath": "Wiskunde",
|
||||||
"PE.Controllers.Main.txtMedia": "Media",
|
"PE.Controllers.Main.txtMedia": "Media",
|
||||||
"PE.Controllers.Main.txtNeedSynchronize": "U hebt updates",
|
"PE.Controllers.Main.txtNeedSynchronize": "U hebt updates",
|
||||||
|
@ -264,6 +358,17 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Tekst van dia",
|
"PE.Controllers.Main.txtSlideText": "Tekst van dia",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Diatitel",
|
"PE.Controllers.Main.txtSlideTitle": "Diatitel",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Sterren en linten",
|
"PE.Controllers.Main.txtStarsRibbons": "Sterren en linten",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "Leeg",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Klassiek",
|
||||||
|
"PE.Controllers.Main.txtTheme_corner": "Hoek",
|
||||||
|
"PE.Controllers.Main.txtTheme_dotted": "Stippels",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "Groen",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "Lijnen",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "Kantoor",
|
||||||
|
"PE.Controllers.Main.txtTheme_official": "Officieel",
|
||||||
|
"PE.Controllers.Main.txtTheme_pixel": "Pixel",
|
||||||
|
"PE.Controllers.Main.txtTheme_safari": "Safari",
|
||||||
|
"PE.Controllers.Main.txtTheme_turtle": "Turtle",
|
||||||
"PE.Controllers.Main.txtXAxis": "X-as",
|
"PE.Controllers.Main.txtXAxis": "X-as",
|
||||||
"PE.Controllers.Main.txtYAxis": "Y-as",
|
"PE.Controllers.Main.txtYAxis": "Y-as",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Onbekende fout.",
|
"PE.Controllers.Main.unknownErrorText": "Onbekende fout.",
|
||||||
|
@ -276,7 +381,8 @@
|
||||||
"PE.Controllers.Main.warnBrowserIE9": "Met IE9 heeft de toepassing beperkte mogelijkheden. Gebruik IE10 of hoger.",
|
"PE.Controllers.Main.warnBrowserIE9": "Met IE9 heeft de toepassing beperkte mogelijkheden. Gebruik IE10 of hoger.",
|
||||||
"PE.Controllers.Main.warnBrowserZoom": "De huidige zoominstelling van uw browser wordt niet ondersteund. Zet de zoominstelling terug op de standaardwaarde door op Ctrl+0 te drukken.",
|
"PE.Controllers.Main.warnBrowserZoom": "De huidige zoominstelling van uw browser wordt niet ondersteund. Zet de zoominstelling terug op de standaardwaarde door op Ctrl+0 te drukken.",
|
||||||
"PE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.<br>Werk uw licentie bij en vernieuw de pagina.",
|
"PE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.<br>Werk uw licentie bij en vernieuw de pagina.",
|
||||||
"PE.Controllers.Main.warnNoLicense": "U gebruikt een Open source-versie van ONLYOFFICE. In die versie geldt voor het aantal gelijktijdige verbindingen met de documentserver een limiet van 20 verbindingen.<br>Als u er meer nodig hebt, kunt u overwegen een commerciële licentie aan te schaffen.",
|
"PE.Controllers.Main.warnNoLicense": "Deze versie van Only Office bevat limieten voor het aantal gelijktijdige gebruikers.<br>Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.",
|
||||||
|
"PE.Controllers.Main.warnNoLicenseUsers": "Deze versie van Only Office bevat limieten voor het aantal gelijktijdige gebruikers.<br>Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.",
|
"PE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.",
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoomen {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoomen {0}%",
|
||||||
"PE.Controllers.Toolbar.confirmAddFontName": "Het lettertype dat u probeert op te slaan, is niet beschikbaar op het huidige apparaat.<br>De tekststijl wordt weergegeven met een van de systeemlettertypen. Het opgeslagen lettertype wordt gebruikt wanneer het beschikbaar is.<br>Wilt u doorgaan?",
|
"PE.Controllers.Toolbar.confirmAddFontName": "Het lettertype dat u probeert op te slaan, is niet beschikbaar op het huidige apparaat.<br>De tekststijl wordt weergegeven met een van de systeemlettertypen. Het opgeslagen lettertype wordt gebruikt wanneer het beschikbaar is.<br>Wilt u doorgaan?",
|
||||||
|
@ -611,6 +717,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Verticale ellips",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Verticale ellips",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "Aanpassen aan dia",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "Aan breedte aanpassen",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
"PE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
||||||
"PE.Views.ChartSettings.textArea": "Vlak",
|
"PE.Views.ChartSettings.textArea": "Vlak",
|
||||||
"PE.Views.ChartSettings.textBar": "Staaf",
|
"PE.Views.ChartSettings.textBar": "Staaf",
|
||||||
|
@ -682,14 +790,19 @@
|
||||||
"PE.Views.DocumentHolder.splitCellTitleText": "Cel splitsen",
|
"PE.Views.DocumentHolder.splitCellTitleText": "Cel splitsen",
|
||||||
"PE.Views.DocumentHolder.tableText": "Tabel",
|
"PE.Views.DocumentHolder.tableText": "Tabel",
|
||||||
"PE.Views.DocumentHolder.textArrangeBack": "Naar achtergrond sturen",
|
"PE.Views.DocumentHolder.textArrangeBack": "Naar achtergrond sturen",
|
||||||
"PE.Views.DocumentHolder.textArrangeBackward": "Naar achter verplaatsen",
|
"PE.Views.DocumentHolder.textArrangeBackward": "Naar achteren",
|
||||||
"PE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen",
|
"PE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen",
|
||||||
"PE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen",
|
"PE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen",
|
||||||
"PE.Views.DocumentHolder.textCopy": "Kopiëren",
|
"PE.Views.DocumentHolder.textCopy": "Kopiëren",
|
||||||
"PE.Views.DocumentHolder.textCut": "Knippen",
|
"PE.Views.DocumentHolder.textCut": "Knippen",
|
||||||
|
"PE.Views.DocumentHolder.textDistributeCols": "Kolommen verdelen",
|
||||||
|
"PE.Views.DocumentHolder.textDistributeRows": "Rijen verdelen",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "Van bestand",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "Van URL",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Volgende dia",
|
"PE.Views.DocumentHolder.textNextPage": "Volgende dia",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Plakken",
|
"PE.Views.DocumentHolder.textPaste": "Plakken",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Vorige dia",
|
"PE.Views.DocumentHolder.textPrevPage": "Vorige dia",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "Afbeelding vervangen",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "Onder uitlijnen",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "Onder uitlijnen",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "Midden uitlijnen",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "Midden uitlijnen",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "Links uitlijnen",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "Links uitlijnen",
|
||||||
|
@ -755,6 +868,7 @@
|
||||||
"PE.Views.DocumentHolder.txtInsertBreak": "Handmatig einde invoegen",
|
"PE.Views.DocumentHolder.txtInsertBreak": "Handmatig einde invoegen",
|
||||||
"PE.Views.DocumentHolder.txtInsertEqAfter": "Vergelijking invoegen na",
|
"PE.Views.DocumentHolder.txtInsertEqAfter": "Vergelijking invoegen na",
|
||||||
"PE.Views.DocumentHolder.txtInsertEqBefore": "Vergelijking invoegen vóór",
|
"PE.Views.DocumentHolder.txtInsertEqBefore": "Vergelijking invoegen vóór",
|
||||||
|
"PE.Views.DocumentHolder.txtKeepTextOnly": "Alleen tekst behouden",
|
||||||
"PE.Views.DocumentHolder.txtLimitChange": "Locatie limieten wijzigen",
|
"PE.Views.DocumentHolder.txtLimitChange": "Locatie limieten wijzigen",
|
||||||
"PE.Views.DocumentHolder.txtLimitOver": "Limiet over tekst",
|
"PE.Views.DocumentHolder.txtLimitOver": "Limiet over tekst",
|
||||||
"PE.Views.DocumentHolder.txtLimitUnder": "Limiet onder tekst",
|
"PE.Views.DocumentHolder.txtLimitUnder": "Limiet onder tekst",
|
||||||
|
@ -762,6 +876,9 @@
|
||||||
"PE.Views.DocumentHolder.txtMatrixAlign": "Matrixuitlijning",
|
"PE.Views.DocumentHolder.txtMatrixAlign": "Matrixuitlijning",
|
||||||
"PE.Views.DocumentHolder.txtNewSlide": "Nieuwe dia",
|
"PE.Views.DocumentHolder.txtNewSlide": "Nieuwe dia",
|
||||||
"PE.Views.DocumentHolder.txtOverbar": "Streep boven tekst",
|
"PE.Views.DocumentHolder.txtOverbar": "Streep boven tekst",
|
||||||
|
"PE.Views.DocumentHolder.txtPasteDestFormat": "Gebruik doel thema",
|
||||||
|
"PE.Views.DocumentHolder.txtPastePicture": "Afbeelding",
|
||||||
|
"PE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak",
|
||||||
"PE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling",
|
"PE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling",
|
||||||
"PE.Views.DocumentHolder.txtPreview": "Diavoorstelling starten",
|
"PE.Views.DocumentHolder.txtPreview": "Diavoorstelling starten",
|
||||||
"PE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen",
|
"PE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen",
|
||||||
|
@ -808,6 +925,7 @@
|
||||||
"PE.Views.FileMenu.btnHelpCaption": "Help...",
|
"PE.Views.FileMenu.btnHelpCaption": "Help...",
|
||||||
"PE.Views.FileMenu.btnInfoCaption": "Info over presentatie...",
|
"PE.Views.FileMenu.btnInfoCaption": "Info over presentatie...",
|
||||||
"PE.Views.FileMenu.btnPrintCaption": "Afdrukken",
|
"PE.Views.FileMenu.btnPrintCaption": "Afdrukken",
|
||||||
|
"PE.Views.FileMenu.btnProtectCaption": "Beveilig",
|
||||||
"PE.Views.FileMenu.btnRecentFilesCaption": "Recente openen...",
|
"PE.Views.FileMenu.btnRecentFilesCaption": "Recente openen...",
|
||||||
"PE.Views.FileMenu.btnRenameCaption": "Hernoemen...",
|
"PE.Views.FileMenu.btnRenameCaption": "Hernoemen...",
|
||||||
"PE.Views.FileMenu.btnReturnCaption": "Terug naar presentatie",
|
"PE.Views.FileMenu.btnReturnCaption": "Terug naar presentatie",
|
||||||
|
@ -829,6 +947,16 @@
|
||||||
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Presentatietitel",
|
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Presentatietitel",
|
||||||
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Toegangsrechten wijzigen",
|
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Toegangsrechten wijzigen",
|
||||||
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen met rechten",
|
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen met rechten",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Waarschuwing",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Met wachtwoord",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Beveilig presentatie",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Met handtekening",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Presentatie bewerken",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van deze presentatie verwijderd worden.<br>Weet u zeker dat u door wilt gaan?",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Deze presentatie is beveiligd met een wachtwoord",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Geldige hantekeningen zijn toegevoegd aan de presentatie. Deze presentatie is beveiligd tegen aanpassingen.",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Een of meer digitale handtekeningen in deze presentatie zijn ongeldig of konden niet geverifieerd worden. Deze presentatie is beveiligd tegen aanpassingen.",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtView": "Toon handtekeningen",
|
||||||
"PE.Views.FileMenuPanels.Settings.okButtonText": "Toepassen",
|
"PE.Views.FileMenuPanels.Settings.okButtonText": "Toepassen",
|
||||||
"PE.Views.FileMenuPanels.Settings.strAlignGuides": "Uitlijningshulplijnen inschakelen",
|
"PE.Views.FileMenuPanels.Settings.strAlignGuides": "Uitlijningshulplijnen inschakelen",
|
||||||
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoHerstel inschakelen",
|
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "AutoHerstel inschakelen",
|
||||||
|
@ -874,7 +1002,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tooltip hier invoeren",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tooltip hier invoeren",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externe koppeling",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externe koppeling",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Dia in deze presentatie",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Dia in deze presentatie",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Type koppeling",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "Tekst van Scherminfo",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "Tekst van Scherminfo",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Instellingen hyperlink",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Instellingen hyperlink",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Dit veld is vereist",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Dit veld is vereist",
|
||||||
|
@ -917,6 +1044,7 @@
|
||||||
"PE.Views.LeftMenu.tipSupport": "Feedback en Support",
|
"PE.Views.LeftMenu.tipSupport": "Feedback en Support",
|
||||||
"PE.Views.LeftMenu.tipTitles": "Titels",
|
"PE.Views.LeftMenu.tipTitles": "Titels",
|
||||||
"PE.Views.LeftMenu.txtDeveloper": "ONTWIKKELAARSMODUS",
|
"PE.Views.LeftMenu.txtDeveloper": "ONTWIKKELAARSMODUS",
|
||||||
|
"PE.Views.LeftMenu.txtTrial": "TEST MODUS",
|
||||||
"PE.Views.ParagraphSettings.strLineHeight": "Regelafstand",
|
"PE.Views.ParagraphSettings.strLineHeight": "Regelafstand",
|
||||||
"PE.Views.ParagraphSettings.strParagraphSpacing": "Afstand tussen alinea's",
|
"PE.Views.ParagraphSettings.strParagraphSpacing": "Afstand tussen alinea's",
|
||||||
"PE.Views.ParagraphSettings.strSpacingAfter": "Na",
|
"PE.Views.ParagraphSettings.strSpacingAfter": "Na",
|
||||||
|
@ -958,6 +1086,7 @@
|
||||||
"PE.Views.RightMenu.txtImageSettings": "Afbeeldingsinstellingen",
|
"PE.Views.RightMenu.txtImageSettings": "Afbeeldingsinstellingen",
|
||||||
"PE.Views.RightMenu.txtParagraphSettings": "Tekstinstellingen",
|
"PE.Views.RightMenu.txtParagraphSettings": "Tekstinstellingen",
|
||||||
"PE.Views.RightMenu.txtShapeSettings": "Vorminstellingen",
|
"PE.Views.RightMenu.txtShapeSettings": "Vorminstellingen",
|
||||||
|
"PE.Views.RightMenu.txtSignatureSettings": "Handtekening instellingen",
|
||||||
"PE.Views.RightMenu.txtSlideSettings": "Dia-instellingen",
|
"PE.Views.RightMenu.txtSlideSettings": "Dia-instellingen",
|
||||||
"PE.Views.RightMenu.txtTableSettings": "Tabelinstellingen",
|
"PE.Views.RightMenu.txtTableSettings": "Tabelinstellingen",
|
||||||
"PE.Views.RightMenu.txtTextArtSettings": "TextArt-instellingen",
|
"PE.Views.RightMenu.txtTextArtSettings": "TextArt-instellingen",
|
||||||
|
@ -1037,6 +1166,17 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Gewichten & pijlen",
|
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Gewichten & pijlen",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWidth": "Breedte",
|
"PE.Views.ShapeSettingsAdvanced.textWidth": "Breedte",
|
||||||
"PE.Views.ShapeSettingsAdvanced.txtNone": "Geen",
|
"PE.Views.ShapeSettingsAdvanced.txtNone": "Geen",
|
||||||
|
"PE.Views.SignatureSettings.notcriticalErrorTitle": "Waarschuwing",
|
||||||
|
"PE.Views.SignatureSettings.strDelete": "Handtekening verwijderen",
|
||||||
|
"PE.Views.SignatureSettings.strDetails": "Handtekening details",
|
||||||
|
"PE.Views.SignatureSettings.strInvalid": "Ongeldige handtekeningen",
|
||||||
|
"PE.Views.SignatureSettings.strSign": "Onderteken",
|
||||||
|
"PE.Views.SignatureSettings.strSignature": "Handtekening",
|
||||||
|
"PE.Views.SignatureSettings.strValid": "Geldige handtekeningen",
|
||||||
|
"PE.Views.SignatureSettings.txtContinueEditing": "Hoe dan ook bewerken",
|
||||||
|
"PE.Views.SignatureSettings.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van deze presentatie verwijderd worden.<br>Weet u zeker dat u door wilt gaan?",
|
||||||
|
"PE.Views.SignatureSettings.txtSigned": "Geldige hantekeningen zijn toegevoegd aan de presentatie. Deze presentatie is beveiligd tegen aanpassingen.",
|
||||||
|
"PE.Views.SignatureSettings.txtSignedInvalid": "Een of meer digitale handtekeningen in deze presentatie zijn ongeldig of konden niet geverifieerd worden. Deze presentatie is beveiligd tegen aanpassingen.",
|
||||||
"PE.Views.SlideSettings.strBackground": "Achtergrondkleur",
|
"PE.Views.SlideSettings.strBackground": "Achtergrondkleur",
|
||||||
"PE.Views.SlideSettings.strColor": "Kleur",
|
"PE.Views.SlideSettings.strColor": "Kleur",
|
||||||
"PE.Views.SlideSettings.strDelay": "Vertragen",
|
"PE.Views.SlideSettings.strDelay": "Vertragen",
|
||||||
|
@ -1167,17 +1307,22 @@
|
||||||
"PE.Views.TableSettings.textBanded": "Gestreept",
|
"PE.Views.TableSettings.textBanded": "Gestreept",
|
||||||
"PE.Views.TableSettings.textBorderColor": "Kleur",
|
"PE.Views.TableSettings.textBorderColor": "Kleur",
|
||||||
"PE.Views.TableSettings.textBorders": "Randstijl",
|
"PE.Views.TableSettings.textBorders": "Randstijl",
|
||||||
|
"PE.Views.TableSettings.textCellSize": "Celgrootte",
|
||||||
"PE.Views.TableSettings.textColumns": "Kolommen",
|
"PE.Views.TableSettings.textColumns": "Kolommen",
|
||||||
|
"PE.Views.TableSettings.textDistributeCols": "Kolommen verdelen",
|
||||||
|
"PE.Views.TableSettings.textDistributeRows": "Rijen verdelen",
|
||||||
"PE.Views.TableSettings.textEdit": "Rijen en kolommen",
|
"PE.Views.TableSettings.textEdit": "Rijen en kolommen",
|
||||||
"PE.Views.TableSettings.textEmptyTemplate": "Geen sjablonen",
|
"PE.Views.TableSettings.textEmptyTemplate": "Geen sjablonen",
|
||||||
"PE.Views.TableSettings.textFirst": "Eerste",
|
"PE.Views.TableSettings.textFirst": "Eerste",
|
||||||
"PE.Views.TableSettings.textHeader": "Koptekst",
|
"PE.Views.TableSettings.textHeader": "Koptekst",
|
||||||
|
"PE.Views.TableSettings.textHeight": "Hoogte",
|
||||||
"PE.Views.TableSettings.textLast": "Laatste",
|
"PE.Views.TableSettings.textLast": "Laatste",
|
||||||
"PE.Views.TableSettings.textNewColor": "Aangepaste kleur",
|
"PE.Views.TableSettings.textNewColor": "Aangepaste kleur",
|
||||||
"PE.Views.TableSettings.textRows": "Rijen",
|
"PE.Views.TableSettings.textRows": "Rijen",
|
||||||
"PE.Views.TableSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen",
|
"PE.Views.TableSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen",
|
||||||
"PE.Views.TableSettings.textTemplate": "Selecteren uit sjabloon",
|
"PE.Views.TableSettings.textTemplate": "Selecteren uit sjabloon",
|
||||||
"PE.Views.TableSettings.textTotal": "Totaal",
|
"PE.Views.TableSettings.textTotal": "Totaal",
|
||||||
|
"PE.Views.TableSettings.textWidth": "Breedte",
|
||||||
"PE.Views.TableSettings.tipAll": "Buitenrand en alle binnenlijnen instellen",
|
"PE.Views.TableSettings.tipAll": "Buitenrand en alle binnenlijnen instellen",
|
||||||
"PE.Views.TableSettings.tipBottom": "Alleen buitenrand onder instellen",
|
"PE.Views.TableSettings.tipBottom": "Alleen buitenrand onder instellen",
|
||||||
"PE.Views.TableSettings.tipInner": "Alleen binnenlijnen instellen",
|
"PE.Views.TableSettings.tipInner": "Alleen binnenlijnen instellen",
|
||||||
|
@ -1273,7 +1418,7 @@
|
||||||
"PE.Views.Toolbar.textAlignTop": "Tekst bovenaan uitlijnen",
|
"PE.Views.Toolbar.textAlignTop": "Tekst bovenaan uitlijnen",
|
||||||
"PE.Views.Toolbar.textArea": "Vlak",
|
"PE.Views.Toolbar.textArea": "Vlak",
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Naar achtergrond sturen",
|
"PE.Views.Toolbar.textArrangeBack": "Naar achtergrond sturen",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Naar achter verplaatsen",
|
"PE.Views.Toolbar.textArrangeBackward": "Naar achteren",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Naar Voren Verplaatsen",
|
"PE.Views.Toolbar.textArrangeForward": "Naar Voren Verplaatsen",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Naar voorgrond brengen",
|
"PE.Views.Toolbar.textArrangeFront": "Naar voorgrond brengen",
|
||||||
"PE.Views.Toolbar.textBar": "Staaf",
|
"PE.Views.Toolbar.textBar": "Staaf",
|
||||||
|
@ -1281,12 +1426,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Annuleren",
|
"PE.Views.Toolbar.textCancel": "Annuleren",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafieken",
|
"PE.Views.Toolbar.textCharts": "Grafieken",
|
||||||
"PE.Views.Toolbar.textColumn": "Kolom",
|
"PE.Views.Toolbar.textColumn": "Kolom",
|
||||||
"PE.Views.Toolbar.textCompactView": "Compacte werkbalk weergeven",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Aanpassen aan dia",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Aan breedte aanpassen",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Linialen verbergen",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Statusbalk verbergen",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Titelbalk verbergen",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Cursief",
|
"PE.Views.Toolbar.textItalic": "Cursief",
|
||||||
"PE.Views.Toolbar.textLine": "Lijn",
|
"PE.Views.Toolbar.textLine": "Lijn",
|
||||||
"PE.Views.Toolbar.textNewColor": "Aangepaste kleur",
|
"PE.Views.Toolbar.textNewColor": "Aangepaste kleur",
|
||||||
|
@ -1308,14 +1447,14 @@
|
||||||
"PE.Views.Toolbar.textSubscript": "Subscript",
|
"PE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"PE.Views.Toolbar.textSurface": "Oppervlak",
|
"PE.Views.Toolbar.textSurface": "Oppervlak",
|
||||||
|
"PE.Views.Toolbar.textTabCollaboration": "Samenwerking",
|
||||||
"PE.Views.Toolbar.textTabFile": "Bestand",
|
"PE.Views.Toolbar.textTabFile": "Bestand",
|
||||||
"PE.Views.Toolbar.textTabHome": "Home",
|
"PE.Views.Toolbar.textTabHome": "Home",
|
||||||
"PE.Views.Toolbar.textTabInsert": "Invoegen",
|
"PE.Views.Toolbar.textTabInsert": "Invoegen",
|
||||||
|
"PE.Views.Toolbar.textTabProtect": "Beveiliging",
|
||||||
"PE.Views.Toolbar.textTitleError": "Fout",
|
"PE.Views.Toolbar.textTitleError": "Fout",
|
||||||
"PE.Views.Toolbar.textUnderline": "Onderstrepen",
|
"PE.Views.Toolbar.textUnderline": "Onderstrepen",
|
||||||
"PE.Views.Toolbar.textZoom": "Zoomen",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Dia toevoegen",
|
"PE.Views.Toolbar.tipAddSlide": "Dia toevoegen",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Geavanceerde instellingen",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Terug",
|
"PE.Views.Toolbar.tipBack": "Terug",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Grafiektype wijzigen",
|
"PE.Views.Toolbar.tipChangeChart": "Grafiektype wijzigen",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Dia-indeling wijzigen",
|
"PE.Views.Toolbar.tipChangeSlide": "Dia-indeling wijzigen",
|
||||||
|
@ -1328,7 +1467,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Lettertype",
|
"PE.Views.Toolbar.tipFontName": "Lettertype",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Tekengrootte",
|
"PE.Views.Toolbar.tipFontSize": "Tekengrootte",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Horizontale uitlijning",
|
"PE.Views.Toolbar.tipHAligh": "Horizontale uitlijning",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Titelbalk en statusbalk verbergen",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Inspringing vergroten",
|
"PE.Views.Toolbar.tipIncPrLeft": "Inspringing vergroten",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Grafiek invoegen",
|
"PE.Views.Toolbar.tipInsertChart": "Grafiek invoegen",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Vergelijking invoegen",
|
"PE.Views.Toolbar.tipInsertEquation": "Vergelijking invoegen",
|
||||||
|
@ -1336,7 +1474,7 @@
|
||||||
"PE.Views.Toolbar.tipInsertImage": "Afbeelding invoegen",
|
"PE.Views.Toolbar.tipInsertImage": "Afbeelding invoegen",
|
||||||
"PE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen",
|
"PE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen",
|
||||||
"PE.Views.Toolbar.tipInsertTable": "Tabel invoegen",
|
"PE.Views.Toolbar.tipInsertTable": "Tabel invoegen",
|
||||||
"PE.Views.Toolbar.tipInsertText": "Tekst invoegen",
|
"PE.Views.Toolbar.tipInsertText": "Tekstvak invoegen",
|
||||||
"PE.Views.Toolbar.tipInsertTextArt": "Text Art Invoegen",
|
"PE.Views.Toolbar.tipInsertTextArt": "Text Art Invoegen",
|
||||||
"PE.Views.Toolbar.tipLineSpace": "Regelafstand",
|
"PE.Views.Toolbar.tipLineSpace": "Regelafstand",
|
||||||
"PE.Views.Toolbar.tipMarkers": "Opsommingstekens",
|
"PE.Views.Toolbar.tipMarkers": "Opsommingstekens",
|
||||||
|
|
|
@ -80,15 +80,21 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Сохранить и выйти",
|
"Common.Views.ExternalDiagramEditor.textSave": "Сохранить и выйти",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Редактор диаграмм",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Редактор диаграмм",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Документ редактируется несколькими пользователями.",
|
"Common.Views.Header.labelCoUsersDescr": "Документ редактируется несколькими пользователями.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Дополнительные параметры",
|
||||||
"Common.Views.Header.textBack": "Перейти к Документам",
|
"Common.Views.Header.textBack": "Перейти к Документам",
|
||||||
|
"Common.Views.Header.textCompactView": "Скрыть панель инструментов",
|
||||||
|
"Common.Views.Header.textHideLines": "Скрыть линейки",
|
||||||
|
"Common.Views.Header.textHideStatusBar": "Скрыть строку состояния",
|
||||||
"Common.Views.Header.textSaveBegin": "Сохранение...",
|
"Common.Views.Header.textSaveBegin": "Сохранение...",
|
||||||
"Common.Views.Header.textSaveChanged": "Изменен",
|
"Common.Views.Header.textSaveChanged": "Изменен",
|
||||||
"Common.Views.Header.textSaveEnd": "Все изменения сохранены",
|
"Common.Views.Header.textSaveEnd": "Все изменения сохранены",
|
||||||
"Common.Views.Header.textSaveExpander": "Все изменения сохранены",
|
"Common.Views.Header.textSaveExpander": "Все изменения сохранены",
|
||||||
|
"Common.Views.Header.textZoom": "Масштаб",
|
||||||
"Common.Views.Header.tipAccessRights": "Управление правами доступа к документу",
|
"Common.Views.Header.tipAccessRights": "Управление правами доступа к документу",
|
||||||
"Common.Views.Header.tipDownload": "Скачать файл",
|
"Common.Views.Header.tipDownload": "Скачать файл",
|
||||||
"Common.Views.Header.tipGoEdit": "Редактировать текущий файл",
|
"Common.Views.Header.tipGoEdit": "Редактировать текущий файл",
|
||||||
"Common.Views.Header.tipPrint": "Напечатать файл",
|
"Common.Views.Header.tipPrint": "Напечатать файл",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Параметры представления",
|
||||||
"Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
|
"Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
|
||||||
"Common.Views.Header.txtAccessRights": "Изменить права доступа",
|
"Common.Views.Header.txtAccessRights": "Изменить права доступа",
|
||||||
"Common.Views.Header.txtRename": "Переименовать",
|
"Common.Views.Header.txtRename": "Переименовать",
|
||||||
|
@ -352,6 +358,17 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Текст слайда",
|
"PE.Controllers.Main.txtSlideText": "Текст слайда",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Заголовок слайда",
|
"PE.Controllers.Main.txtSlideTitle": "Заголовок слайда",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Звезды и ленты",
|
"PE.Controllers.Main.txtStarsRibbons": "Звезды и ленты",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "Пустой слайд",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Классический",
|
||||||
|
"PE.Controllers.Main.txtTheme_corner": "Угловая",
|
||||||
|
"PE.Controllers.Main.txtTheme_dotted": "Точечная",
|
||||||
|
"PE.Controllers.Main.txtTheme_green": "Зеленый",
|
||||||
|
"PE.Controllers.Main.txtTheme_lines": "Линии",
|
||||||
|
"PE.Controllers.Main.txtTheme_office": "Офис",
|
||||||
|
"PE.Controllers.Main.txtTheme_official": "Официальная",
|
||||||
|
"PE.Controllers.Main.txtTheme_pixel": "Пиксельная",
|
||||||
|
"PE.Controllers.Main.txtTheme_safari": "Сафари",
|
||||||
|
"PE.Controllers.Main.txtTheme_turtle": "Черепаха",
|
||||||
"PE.Controllers.Main.txtXAxis": "Ось X",
|
"PE.Controllers.Main.txtXAxis": "Ось X",
|
||||||
"PE.Controllers.Main.txtYAxis": "Ось Y",
|
"PE.Controllers.Main.txtYAxis": "Ось Y",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.",
|
"PE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.",
|
||||||
|
@ -700,6 +717,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальное многоточие",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальное многоточие",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Кси",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Кси",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Дзета",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Дзета",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "По размеру слайда",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "По ширине",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
"PE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
||||||
"PE.Views.ChartSettings.textArea": "С областями",
|
"PE.Views.ChartSettings.textArea": "С областями",
|
||||||
"PE.Views.ChartSettings.textBar": "Линейчатая",
|
"PE.Views.ChartSettings.textBar": "Линейчатая",
|
||||||
|
@ -778,9 +797,12 @@
|
||||||
"PE.Views.DocumentHolder.textCut": "Вырезать",
|
"PE.Views.DocumentHolder.textCut": "Вырезать",
|
||||||
"PE.Views.DocumentHolder.textDistributeCols": "Выровнять ширину столбцов",
|
"PE.Views.DocumentHolder.textDistributeCols": "Выровнять ширину столбцов",
|
||||||
"PE.Views.DocumentHolder.textDistributeRows": "Выровнять высоту строк",
|
"PE.Views.DocumentHolder.textDistributeRows": "Выровнять высоту строк",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "Из файла",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "По URL",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Следующий слайд",
|
"PE.Views.DocumentHolder.textNextPage": "Следующий слайд",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Вставить",
|
"PE.Views.DocumentHolder.textPaste": "Вставить",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Предыдущий слайд",
|
"PE.Views.DocumentHolder.textPrevPage": "Предыдущий слайд",
|
||||||
|
"PE.Views.DocumentHolder.textReplace": "Заменить изображение",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignBottom": "Выровнять по нижнему краю",
|
"PE.Views.DocumentHolder.textShapeAlignBottom": "Выровнять по нижнему краю",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignCenter": "Выровнять по центру",
|
"PE.Views.DocumentHolder.textShapeAlignCenter": "Выровнять по центру",
|
||||||
"PE.Views.DocumentHolder.textShapeAlignLeft": "Выровнять по левому краю",
|
"PE.Views.DocumentHolder.textShapeAlignLeft": "Выровнять по левому краю",
|
||||||
|
@ -980,7 +1002,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Введите здесь подсказку",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Введите здесь подсказку",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Внешняя ссылка",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Внешняя ссылка",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Слайд в этой презентации",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Слайд в этой презентации",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Тип ссылки",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "Текст подсказки",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "Текст подсказки",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Параметры гиперссылки",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Параметры гиперссылки",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Это поле обязательно для заполнения",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Это поле обязательно для заполнения",
|
||||||
|
@ -1405,12 +1426,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Отмена",
|
"PE.Views.Toolbar.textCancel": "Отмена",
|
||||||
"PE.Views.Toolbar.textCharts": "Диаграммы",
|
"PE.Views.Toolbar.textCharts": "Диаграммы",
|
||||||
"PE.Views.Toolbar.textColumn": "Гистограмма",
|
"PE.Views.Toolbar.textColumn": "Гистограмма",
|
||||||
"PE.Views.Toolbar.textCompactView": "Скрыть панель инструментов",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "По размеру слайда",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "По ширине",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Скрыть линейки",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Скрыть строку состояния",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Скрыть строку заголовка",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Курсив",
|
"PE.Views.Toolbar.textItalic": "Курсив",
|
||||||
"PE.Views.Toolbar.textLine": "График",
|
"PE.Views.Toolbar.textLine": "График",
|
||||||
"PE.Views.Toolbar.textNewColor": "Пользовательский цвет",
|
"PE.Views.Toolbar.textNewColor": "Пользовательский цвет",
|
||||||
|
@ -1439,9 +1454,7 @@
|
||||||
"PE.Views.Toolbar.textTabProtect": "Защита",
|
"PE.Views.Toolbar.textTabProtect": "Защита",
|
||||||
"PE.Views.Toolbar.textTitleError": "Ошибка",
|
"PE.Views.Toolbar.textTitleError": "Ошибка",
|
||||||
"PE.Views.Toolbar.textUnderline": "Подчеркнутый",
|
"PE.Views.Toolbar.textUnderline": "Подчеркнутый",
|
||||||
"PE.Views.Toolbar.textZoom": "Масштаб",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Добавить слайд",
|
"PE.Views.Toolbar.tipAddSlide": "Добавить слайд",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Дополнительные параметры",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Назад",
|
"PE.Views.Toolbar.tipBack": "Назад",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Изменить тип диаграммы",
|
"PE.Views.Toolbar.tipChangeChart": "Изменить тип диаграммы",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Изменить макет слайда",
|
"PE.Views.Toolbar.tipChangeSlide": "Изменить макет слайда",
|
||||||
|
@ -1454,7 +1467,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Шрифт",
|
"PE.Views.Toolbar.tipFontName": "Шрифт",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Размер шрифта",
|
"PE.Views.Toolbar.tipFontSize": "Размер шрифта",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание",
|
"PE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Скрыть строки заголовка и статуса",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Увеличить отступ",
|
"PE.Views.Toolbar.tipIncPrLeft": "Увеличить отступ",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Вставить диаграмму",
|
"PE.Views.Toolbar.tipInsertChart": "Вставить диаграмму",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Вставить формулу",
|
"PE.Views.Toolbar.tipInsertEquation": "Вставить формулу",
|
||||||
|
|
|
@ -80,6 +80,7 @@
|
||||||
"Common.Views.ExternalDiagramEditor.textSave": "Uložiť a Zavrieť",
|
"Common.Views.ExternalDiagramEditor.textSave": "Uložiť a Zavrieť",
|
||||||
"Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu",
|
"Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.",
|
"Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Pokročilé nastavenia",
|
||||||
"Common.Views.Header.textBack": "Prejsť do Dokumentov",
|
"Common.Views.Header.textBack": "Prejsť do Dokumentov",
|
||||||
"Common.Views.Header.textSaveBegin": "Ukladanie ...",
|
"Common.Views.Header.textSaveBegin": "Ukladanie ...",
|
||||||
"Common.Views.Header.textSaveChanged": "Modifikovaný",
|
"Common.Views.Header.textSaveChanged": "Modifikovaný",
|
||||||
|
@ -110,6 +111,7 @@
|
||||||
"Common.Views.LanguageDialog.btnOk": "OK",
|
"Common.Views.LanguageDialog.btnOk": "OK",
|
||||||
"Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu",
|
"Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu",
|
||||||
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
|
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
|
||||||
|
"Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor",
|
||||||
"Common.Views.OpenDialog.okButtonText": "OK",
|
"Common.Views.OpenDialog.okButtonText": "OK",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
|
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.",
|
||||||
|
@ -118,6 +120,7 @@
|
||||||
"Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor",
|
"Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor",
|
||||||
"Common.Views.PasswordDialog.cancelButtonText": "Zrušiť",
|
"Common.Views.PasswordDialog.cancelButtonText": "Zrušiť",
|
||||||
"Common.Views.PasswordDialog.okButtonText": "OK",
|
"Common.Views.PasswordDialog.okButtonText": "OK",
|
||||||
|
"Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú",
|
||||||
"Common.Views.PasswordDialog.txtPassword": "Heslo",
|
"Common.Views.PasswordDialog.txtPassword": "Heslo",
|
||||||
"Common.Views.PluginDlg.textLoading": "Nahrávanie",
|
"Common.Views.PluginDlg.textLoading": "Nahrávanie",
|
||||||
"Common.Views.Plugins.groupCaption": "Pluginy",
|
"Common.Views.Plugins.groupCaption": "Pluginy",
|
||||||
|
@ -125,6 +128,12 @@
|
||||||
"Common.Views.Plugins.textLoading": "Nahrávanie",
|
"Common.Views.Plugins.textLoading": "Nahrávanie",
|
||||||
"Common.Views.Plugins.textStart": "Začať/začiatok",
|
"Common.Views.Plugins.textStart": "Začať/začiatok",
|
||||||
"Common.Views.Plugins.textStop": "Stop",
|
"Common.Views.Plugins.textStop": "Stop",
|
||||||
|
"Common.Views.Protection.hintPwd": "Zmeniť alebo odstrániť heslo",
|
||||||
|
"Common.Views.Protection.hintSignature": "Pridajte riadok digitálneho podpisu alebo podpisu",
|
||||||
|
"Common.Views.Protection.txtAddPwd": "Pridajte heslo",
|
||||||
|
"Common.Views.Protection.txtChangePwd": "Zmeniť heslo",
|
||||||
|
"Common.Views.Protection.txtDeletePwd": "Odstrániť heslo",
|
||||||
|
"Common.Views.Protection.txtInvisibleSignature": "Pridajte digitálny podpis",
|
||||||
"Common.Views.RenameDialog.cancelButtonText": "Zrušiť",
|
"Common.Views.RenameDialog.cancelButtonText": "Zrušiť",
|
||||||
"Common.Views.RenameDialog.okButtonText": "OK",
|
"Common.Views.RenameDialog.okButtonText": "OK",
|
||||||
"Common.Views.RenameDialog.textName": "Názov súboru",
|
"Common.Views.RenameDialog.textName": "Názov súboru",
|
||||||
|
@ -135,21 +144,26 @@
|
||||||
"Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny",
|
"Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny",
|
||||||
"Common.Views.ReviewChanges.txtAcceptChanges": "Akceptovať zmeny",
|
"Common.Views.ReviewChanges.txtAcceptChanges": "Akceptovať zmeny",
|
||||||
"Common.Views.ReviewChanges.txtAcceptCurrent": "Akceptovať aktuálnu zmenu",
|
"Common.Views.ReviewChanges.txtAcceptCurrent": "Akceptovať aktuálnu zmenu",
|
||||||
|
"Common.Views.ReviewChanges.txtChat": "Rozhovor",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Zavrieť",
|
"Common.Views.ReviewChanges.txtClose": "Zavrieť",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Režim spoločnej úpravy",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Režim spoločnej úpravy",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Všetky zmeny prijaté (ukážka)",
|
"Common.Views.ReviewChanges.txtFinal": "Všetky zmeny prijaté (ukážka)",
|
||||||
"Common.Views.ReviewChanges.txtMarkup": "Všetky zmeny (upravované)",
|
"Common.Views.ReviewChanges.txtMarkup": "Všetky zmeny (upravované)",
|
||||||
"Common.Views.ReviewChanges.txtOriginal": "Všetky zmeny boli zamietnuté (ukážka)",
|
"Common.Views.ReviewChanges.txtOriginal": "Všetky zmeny boli zamietnuté (ukážka)",
|
||||||
"Common.Views.ReviewChanges.txtPrev": "Predchádzajúce",
|
"Common.Views.ReviewChanges.txtPrev": "Predchádzajúce",
|
||||||
|
"Common.Views.ReviewChanges.txtView": "Režim zobrazenia",
|
||||||
"Common.Views.SignDialog.cancelButtonText": "Zrušiť",
|
"Common.Views.SignDialog.cancelButtonText": "Zrušiť",
|
||||||
"Common.Views.SignDialog.okButtonText": "OK",
|
"Common.Views.SignDialog.okButtonText": "OK",
|
||||||
"Common.Views.SignDialog.textBold": "Tučné",
|
"Common.Views.SignDialog.textBold": "Tučné",
|
||||||
"Common.Views.SignDialog.textCertificate": "Certifikát",
|
"Common.Views.SignDialog.textCertificate": "Certifikát",
|
||||||
"Common.Views.SignDialog.textChange": "Zmeniť",
|
"Common.Views.SignDialog.textChange": "Zmeniť",
|
||||||
"Common.Views.SignDialog.textUseImage": "alebo kliknite na položku 'Vybrať obrázok' ak chcete použiť obrázok ako podpis",
|
"Common.Views.SignDialog.textUseImage": "alebo kliknite na položku 'Vybrať obrázok' ak chcete použiť obrázok ako podpis",
|
||||||
|
"Common.Views.SignDialog.tipFontName": "Názov písma",
|
||||||
|
"Common.Views.SignDialog.tipFontSize": "Veľkosť písma",
|
||||||
"Common.Views.SignSettingsDialog.cancelButtonText": "Zrušiť",
|
"Common.Views.SignSettingsDialog.cancelButtonText": "Zrušiť",
|
||||||
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
"Common.Views.SignSettingsDialog.okButtonText": "OK",
|
||||||
"Common.Views.SignSettingsDialog.textAllowComment": "Povoliť signatárovi pridať komentár do podpisového dialógu",
|
"Common.Views.SignSettingsDialog.textAllowComment": "Povoliť signatárovi pridať komentár do podpisového dialógu",
|
||||||
|
"Common.Views.SignSettingsDialog.textInfoEmail": "E-mail",
|
||||||
"Common.Views.SignSettingsDialog.textInfoName": "Názov",
|
"Common.Views.SignSettingsDialog.textInfoName": "Názov",
|
||||||
"PE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaná prezentácia",
|
"PE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaná prezentácia",
|
||||||
"PE.Controllers.LeftMenu.requestEditRightsText": "Žiadanie o práva na úpravu ...",
|
"PE.Controllers.LeftMenu.requestEditRightsText": "Žiadanie o práva na úpravu ...",
|
||||||
|
@ -171,6 +185,7 @@
|
||||||
"PE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.",
|
"PE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.",
|
||||||
"PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
"PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||||
"PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.",
|
"PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.",
|
||||||
|
"PE.Controllers.Main.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.",
|
||||||
"PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru",
|
"PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru",
|
||||||
"PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal",
|
"PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal",
|
||||||
"PE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo.",
|
"PE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo.",
|
||||||
|
@ -227,6 +242,8 @@
|
||||||
"PE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.<br>Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.",
|
"PE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.<br>Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.",
|
||||||
"PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula",
|
"PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula",
|
||||||
"PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný",
|
"PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný",
|
||||||
|
"PE.Controllers.Main.txtAddFirstSlide": "Kliknutím pridajte prvú snímku",
|
||||||
|
"PE.Controllers.Main.txtAddNotes": "Kliknutím pridáte poznámky",
|
||||||
"PE.Controllers.Main.txtArt": "Váš text tu",
|
"PE.Controllers.Main.txtArt": "Váš text tu",
|
||||||
"PE.Controllers.Main.txtBasicShapes": "Základné tvary",
|
"PE.Controllers.Main.txtBasicShapes": "Základné tvary",
|
||||||
"PE.Controllers.Main.txtButtons": "Tlačidlá",
|
"PE.Controllers.Main.txtButtons": "Tlačidlá",
|
||||||
|
@ -290,6 +307,8 @@
|
||||||
"PE.Controllers.Main.txtSlideText": "Text snímku",
|
"PE.Controllers.Main.txtSlideText": "Text snímku",
|
||||||
"PE.Controllers.Main.txtSlideTitle": "Názov snímku",
|
"PE.Controllers.Main.txtSlideTitle": "Názov snímku",
|
||||||
"PE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy",
|
"PE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy",
|
||||||
|
"PE.Controllers.Main.txtTheme_blank": "Prázdny",
|
||||||
|
"PE.Controllers.Main.txtTheme_classic": "Classic",
|
||||||
"PE.Controllers.Main.txtXAxis": "Os X",
|
"PE.Controllers.Main.txtXAxis": "Os X",
|
||||||
"PE.Controllers.Main.txtYAxis": "Os Y",
|
"PE.Controllers.Main.txtYAxis": "Os Y",
|
||||||
"PE.Controllers.Main.unknownErrorText": "Neznáma chyba.",
|
"PE.Controllers.Main.unknownErrorText": "Neznáma chyba.",
|
||||||
|
@ -637,6 +656,8 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Ksí ",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Ksí ",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zéta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zéta",
|
||||||
|
"PE.Controllers.Viewport.textFitPage": "Prispôsobiť snímke",
|
||||||
|
"PE.Controllers.Viewport.textFitWidth": "Prispôsobiť na šírku",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
|
"PE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
|
||||||
"PE.Views.ChartSettings.textArea": "Plošný graf",
|
"PE.Views.ChartSettings.textArea": "Plošný graf",
|
||||||
"PE.Views.ChartSettings.textBar": "Vodorovná čiarka",
|
"PE.Views.ChartSettings.textBar": "Vodorovná čiarka",
|
||||||
|
@ -713,6 +734,10 @@
|
||||||
"PE.Views.DocumentHolder.textArrangeFront": "Premiestniť do popredia",
|
"PE.Views.DocumentHolder.textArrangeFront": "Premiestniť do popredia",
|
||||||
"PE.Views.DocumentHolder.textCopy": "Kopírovať",
|
"PE.Views.DocumentHolder.textCopy": "Kopírovať",
|
||||||
"PE.Views.DocumentHolder.textCut": "Vystrihnúť",
|
"PE.Views.DocumentHolder.textCut": "Vystrihnúť",
|
||||||
|
"PE.Views.DocumentHolder.textDistributeCols": "Rozdeliť stĺpce",
|
||||||
|
"PE.Views.DocumentHolder.textDistributeRows": "Rozdeliť riadky",
|
||||||
|
"PE.Views.DocumentHolder.textFromFile": "Zo súboru",
|
||||||
|
"PE.Views.DocumentHolder.textFromUrl": "Z URL adresy ",
|
||||||
"PE.Views.DocumentHolder.textNextPage": "Nasledujúca snímka",
|
"PE.Views.DocumentHolder.textNextPage": "Nasledujúca snímka",
|
||||||
"PE.Views.DocumentHolder.textPaste": "Vložiť",
|
"PE.Views.DocumentHolder.textPaste": "Vložiť",
|
||||||
"PE.Views.DocumentHolder.textPrevPage": "Predchádzajúca snímka",
|
"PE.Views.DocumentHolder.textPrevPage": "Predchádzajúca snímka",
|
||||||
|
@ -856,6 +881,8 @@
|
||||||
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov prezentácie",
|
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov prezentácie",
|
||||||
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva",
|
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva",
|
||||||
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami",
|
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Upraviť prezentáciu",
|
||||||
|
"PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Úprava odstráni podpisy z prezentácie. <br> Naozaj chcete pokračovať?",
|
||||||
"PE.Views.FileMenuPanels.Settings.okButtonText": "Použiť",
|
"PE.Views.FileMenuPanels.Settings.okButtonText": "Použiť",
|
||||||
"PE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania",
|
"PE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania",
|
||||||
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu",
|
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu",
|
||||||
|
@ -901,7 +928,6 @@
|
||||||
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku",
|
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz",
|
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímok v tejto prezentácii",
|
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímok v tejto prezentácii",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Typ odkazu",
|
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTipText": "Popis",
|
"PE.Views.HyperlinkSettingsDialog.textTipText": "Popis",
|
||||||
"PE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu",
|
"PE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu",
|
||||||
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje",
|
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje",
|
||||||
|
@ -1065,6 +1091,7 @@
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru",
|
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru",
|
||||||
"PE.Views.ShapeSettingsAdvanced.textWidth": "Šírka",
|
"PE.Views.ShapeSettingsAdvanced.textWidth": "Šírka",
|
||||||
"PE.Views.ShapeSettingsAdvanced.txtNone": "Žiadny",
|
"PE.Views.ShapeSettingsAdvanced.txtNone": "Žiadny",
|
||||||
|
"PE.Views.SignatureSettings.txtEditWarning": "Úprava odstráni podpisy z prezentácie. <br> Naozaj chcete pokračovať?",
|
||||||
"PE.Views.SlideSettings.strBackground": "Farba pozadia",
|
"PE.Views.SlideSettings.strBackground": "Farba pozadia",
|
||||||
"PE.Views.SlideSettings.strColor": "Farba",
|
"PE.Views.SlideSettings.strColor": "Farba",
|
||||||
"PE.Views.SlideSettings.strDelay": "Oneskorenie",
|
"PE.Views.SlideSettings.strDelay": "Oneskorenie",
|
||||||
|
@ -1195,7 +1222,10 @@
|
||||||
"PE.Views.TableSettings.textBanded": "Pruhovaný/pásikovaný",
|
"PE.Views.TableSettings.textBanded": "Pruhovaný/pásikovaný",
|
||||||
"PE.Views.TableSettings.textBorderColor": "Farba",
|
"PE.Views.TableSettings.textBorderColor": "Farba",
|
||||||
"PE.Views.TableSettings.textBorders": "Štýl orámovania",
|
"PE.Views.TableSettings.textBorders": "Štýl orámovania",
|
||||||
|
"PE.Views.TableSettings.textCellSize": "Veľkosť bunky",
|
||||||
"PE.Views.TableSettings.textColumns": "Stĺpce",
|
"PE.Views.TableSettings.textColumns": "Stĺpce",
|
||||||
|
"PE.Views.TableSettings.textDistributeCols": "Rozdeliť stĺpce",
|
||||||
|
"PE.Views.TableSettings.textDistributeRows": "Rozdeliť riadky",
|
||||||
"PE.Views.TableSettings.textEdit": "Riadky a stĺpce",
|
"PE.Views.TableSettings.textEdit": "Riadky a stĺpce",
|
||||||
"PE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny",
|
"PE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny",
|
||||||
"PE.Views.TableSettings.textFirst": "Prvý",
|
"PE.Views.TableSettings.textFirst": "Prvý",
|
||||||
|
@ -1309,12 +1339,6 @@
|
||||||
"PE.Views.Toolbar.textCancel": "Zrušiť",
|
"PE.Views.Toolbar.textCancel": "Zrušiť",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafy",
|
"PE.Views.Toolbar.textCharts": "Grafy",
|
||||||
"PE.Views.Toolbar.textColumn": "Stĺpec",
|
"PE.Views.Toolbar.textColumn": "Stĺpec",
|
||||||
"PE.Views.Toolbar.textCompactView": "Skryť panel s nástrojmi",
|
|
||||||
"PE.Views.Toolbar.textFitPage": "Prispôsobiť snímke",
|
|
||||||
"PE.Views.Toolbar.textFitWidth": "Prispôsobiť na šírku",
|
|
||||||
"PE.Views.Toolbar.textHideLines": "Skryť pravítka",
|
|
||||||
"PE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok",
|
|
||||||
"PE.Views.Toolbar.textHideTitleBar": "Skryť lištu nadpisu",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
||||||
"PE.Views.Toolbar.textLine": "Čiara/líniový graf",
|
"PE.Views.Toolbar.textLine": "Čiara/líniový graf",
|
||||||
"PE.Views.Toolbar.textNewColor": "Vlastná farba",
|
"PE.Views.Toolbar.textNewColor": "Vlastná farba",
|
||||||
|
@ -1336,14 +1360,13 @@
|
||||||
"PE.Views.Toolbar.textSubscript": "Dolný index",
|
"PE.Views.Toolbar.textSubscript": "Dolný index",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Horný index",
|
"PE.Views.Toolbar.textSuperscript": "Horný index",
|
||||||
"PE.Views.Toolbar.textSurface": "Povrch",
|
"PE.Views.Toolbar.textSurface": "Povrch",
|
||||||
|
"PE.Views.Toolbar.textTabCollaboration": "Spolupráca",
|
||||||
"PE.Views.Toolbar.textTabFile": "Súbor",
|
"PE.Views.Toolbar.textTabFile": "Súbor",
|
||||||
"PE.Views.Toolbar.textTabHome": "Hlavná stránka",
|
"PE.Views.Toolbar.textTabHome": "Hlavná stránka",
|
||||||
"PE.Views.Toolbar.textTabInsert": "Vložiť",
|
"PE.Views.Toolbar.textTabInsert": "Vložiť",
|
||||||
"PE.Views.Toolbar.textTitleError": "Chyba",
|
"PE.Views.Toolbar.textTitleError": "Chyba",
|
||||||
"PE.Views.Toolbar.textUnderline": "Podčiarknuť",
|
"PE.Views.Toolbar.textUnderline": "Podčiarknuť",
|
||||||
"PE.Views.Toolbar.textZoom": "Priblíženie",
|
|
||||||
"PE.Views.Toolbar.tipAddSlide": "Pridať snímku",
|
"PE.Views.Toolbar.tipAddSlide": "Pridať snímku",
|
||||||
"PE.Views.Toolbar.tipAdvSettings": "Pokročilé nastavenia",
|
|
||||||
"PE.Views.Toolbar.tipBack": "Späť",
|
"PE.Views.Toolbar.tipBack": "Späť",
|
||||||
"PE.Views.Toolbar.tipChangeChart": "Zmeniť typ grafu",
|
"PE.Views.Toolbar.tipChangeChart": "Zmeniť typ grafu",
|
||||||
"PE.Views.Toolbar.tipChangeSlide": "Zmeniť usporiadanie snímky",
|
"PE.Views.Toolbar.tipChangeSlide": "Zmeniť usporiadanie snímky",
|
||||||
|
@ -1356,7 +1379,6 @@
|
||||||
"PE.Views.Toolbar.tipFontName": "Písmo",
|
"PE.Views.Toolbar.tipFontName": "Písmo",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Veľkosť písma",
|
"PE.Views.Toolbar.tipFontSize": "Veľkosť písma",
|
||||||
"PE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie",
|
"PE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie",
|
||||||
"PE.Views.Toolbar.tipHideBars": "Skryť titulok a stavový riadok",
|
|
||||||
"PE.Views.Toolbar.tipIncPrLeft": "Zväčšiť zarážku",
|
"PE.Views.Toolbar.tipIncPrLeft": "Zväčšiť zarážku",
|
||||||
"PE.Views.Toolbar.tipInsertChart": "Vložiť graf",
|
"PE.Views.Toolbar.tipInsertChart": "Vložiť graf",
|
||||||
"PE.Views.Toolbar.tipInsertEquation": "Vložiť rovnicu",
|
"PE.Views.Toolbar.tipInsertEquation": "Vložiť rovnicu",
|
||||||
|
|
|
@ -341,6 +341,8 @@
|
||||||
font: 11px arial;
|
font: 11px arial;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-equation {
|
.item-equation {
|
||||||
|
|
|
@ -155,7 +155,6 @@ define([
|
||||||
var me = this;
|
var me = this;
|
||||||
$('#settings-search').single('click', _.bind(me._onSearch, me));
|
$('#settings-search').single('click', _.bind(me._onSearch, me));
|
||||||
$('#settings-readermode input:checkbox').single('change', _.bind(me._onReaderMode, me));
|
$('#settings-readermode input:checkbox').single('change', _.bind(me._onReaderMode, me));
|
||||||
$('#settings-edit-presentation').single('click', _.bind(me._onEditPresentation, me));
|
|
||||||
$(modalView).find('.formats a').single('click', _.bind(me._onSaveFormat, me));
|
$(modalView).find('.formats a').single('click', _.bind(me._onSaveFormat, me));
|
||||||
$('#page-settings-setup-view li').single('click', _.bind(me._onSlideSize, me));
|
$('#page-settings-setup-view li').single('click', _.bind(me._onSlideSize, me));
|
||||||
|
|
||||||
|
@ -224,10 +223,6 @@ define([
|
||||||
$('#settings-presentation-title').html(name ? name : '-');
|
$('#settings-presentation-title').html(name ? name : '-');
|
||||||
},
|
},
|
||||||
|
|
||||||
_onEditPresentation: function() {
|
|
||||||
Common.Gateway.requestEditRights();
|
|
||||||
},
|
|
||||||
|
|
||||||
_onSearch: function (e) {
|
_onSearch: function (e) {
|
||||||
var toolbarView = PE.getController('Toolbar').getView('Toolbar');
|
var toolbarView = PE.getController('Toolbar').getView('Toolbar');
|
||||||
|
|
||||||
|
|
|
@ -25,18 +25,6 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<% } %>
|
<% } %>
|
||||||
<li>
|
|
||||||
<a id="settings-edit-presentation" class="item-link no-indicator">
|
|
||||||
<div class="item-content">
|
|
||||||
<div class="item-media">
|
|
||||||
<i class="icon icon-edit"></i>
|
|
||||||
</div>
|
|
||||||
<div class="item-inner">
|
|
||||||
<div class="item-title"><%= scope.textEditPresent %></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
<li>
|
||||||
<a id="settings-presentation-setup" class="item-link">
|
<a id="settings-presentation-setup" class="item-link">
|
||||||
<div class="item-content">
|
<div class="item-content">
|
||||||
|
|
|
@ -37,6 +37,9 @@
|
||||||
<a href="#" id="toolbar-add" class="link icon-only" style="display: none;">
|
<a href="#" id="toolbar-add" class="link icon-only" style="display: none;">
|
||||||
<i class="icon icon-plus"></i>
|
<i class="icon icon-plus"></i>
|
||||||
</a>
|
</a>
|
||||||
|
<a href="#" id="toolbar-edit-document" class="link icon-only" style="display: none;">
|
||||||
|
<i class="icon icon-edit"></i>
|
||||||
|
</a>
|
||||||
<% if (!phone) { %>
|
<% if (!phone) { %>
|
||||||
<a href="#" id="toolbar-search" class="link icon-only">
|
<a href="#" id="toolbar-search" class="link icon-only">
|
||||||
<i class="icon icon-search"></i>
|
<i class="icon icon-search"></i>
|
||||||
|
|
|
@ -109,11 +109,9 @@ define([
|
||||||
isPhone = Common.SharedSettings.get('phone');
|
isPhone = Common.SharedSettings.get('phone');
|
||||||
|
|
||||||
if (isEdit) {
|
if (isEdit) {
|
||||||
$layour.find('#settings-edit-presentation').hide();
|
|
||||||
$layour.find('#settings-readermode').hide();
|
$layour.find('#settings-readermode').hide();
|
||||||
$layour.find('#settings-search .item-title').text(this.textFindAndReplace)
|
$layour.find('#settings-search .item-title').text(this.textFindAndReplace)
|
||||||
} else {
|
} else {
|
||||||
if (!canEdit) $layour.find('#settings-edit-presentation').hide();
|
|
||||||
$layour.find('#settings-presentation-setup').hide();
|
$layour.find('#settings-presentation-setup').hide();
|
||||||
$layour.find('#settings-readermode input:checkbox')
|
$layour.find('#settings-readermode input:checkbox')
|
||||||
.attr('checked', Common.SharedSettings.get('readerMode'))
|
.attr('checked', Common.SharedSettings.get('readerMode'))
|
||||||
|
@ -190,7 +188,6 @@ define([
|
||||||
permissions = _.extend(permissions, data.doc.permissions);
|
permissions = _.extend(permissions, data.doc.permissions);
|
||||||
|
|
||||||
if (permissions.edit === false) {
|
if (permissions.edit === false) {
|
||||||
$('#settings-edit-presentation').hide();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -63,7 +63,8 @@ define([
|
||||||
"click #toolbar-edit" : "showEdition",
|
"click #toolbar-edit" : "showEdition",
|
||||||
"click #toolbar-add" : "showInserts",
|
"click #toolbar-add" : "showInserts",
|
||||||
"click #toolbar-settings" : "showSettings",
|
"click #toolbar-settings" : "showSettings",
|
||||||
"click #toolbar-preview" : "showPreview"
|
"click #toolbar-preview" : "showPreview",
|
||||||
|
"click #toolbar-edit-document": "editDocument"
|
||||||
},
|
},
|
||||||
|
|
||||||
// Set innerHTML and get the references to the DOM elements
|
// Set innerHTML and get the references to the DOM elements
|
||||||
|
@ -101,6 +102,8 @@ define([
|
||||||
setMode: function (mode) {
|
setMode: function (mode) {
|
||||||
if (mode.isEdit) {
|
if (mode.isEdit) {
|
||||||
$('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo').show();
|
$('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo').show();
|
||||||
|
} else if (mode.canEdit && mode.canRequestEditRights){
|
||||||
|
$('#toolbar-edit-document').show();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -152,6 +155,10 @@ define([
|
||||||
PE.getController('DocumentPreview').show();
|
PE.getController('DocumentPreview').show();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
editDocument: function () {
|
||||||
|
Common.Gateway.requestEditRights();
|
||||||
|
},
|
||||||
|
|
||||||
textBack: 'Back'
|
textBack: 'Back'
|
||||||
}
|
}
|
||||||
})(), PE.Views.Toolbar || {}))
|
})(), PE.Views.Toolbar || {}))
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue