Merge branch 'develop' into feature/new-toolbar-pivot-table

This commit is contained in:
Julia Radzhabova 2017-08-22 14:31:14 +03:00
commit 0a1d11cd18
681 changed files with 7507 additions and 1126 deletions

View file

@ -313,7 +313,7 @@
}
if (typeof _config.document.fileType === 'string' && _config.document.fileType != '') {
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps))$/
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps|docm|dot|dotm|dotx))$/
.exec(_config.document.fileType);
if (!type) {
window.alert("The \"document.fileType\" parameter for the config object is invalid. Please correct it.");
@ -649,7 +649,7 @@
app = appMap[config.documentType.toLowerCase()];
} else
if (!!config.document && typeof config.document.fileType === 'string') {
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides))$/
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm))$/
.exec(config.document.fileType);
if (type) {
if (typeof type[1] === 'string') app = appMap['spreadsheet']; else

View file

@ -60,6 +60,15 @@ define([
return count;
},
getEditingCount: function() {
var count = 0;
this.each(function(user){
user.get('online') && !user.get('view') && ++count;
});
return count;
},
findUser: function(id) {
return this.find(
function(model){

View file

@ -130,7 +130,7 @@ define([
'<% } %>';
var templateHugeCaption =
'<button type="button" class="btn <%= cls %>">' +
'<button type="button" class="btn <%= cls %>" id="<%= id %>" > ' +
'<div class="inner-box-icon">' +
templateBtnIcon +
'</div>' +
@ -155,11 +155,15 @@ define([
var templateHugeSplitCaption =
'<div class="btn-group x-huge split icon-top" id="<%= id %>" style="<%= style %>">' +
'<button type="button" class="btn <%= cls %> inner-box-icon">' +
'<span class="btn-fixflex-hcenter">' +
templateBtnIcon +
'</span>' +
'</button>' +
'<button type="button" class="btn <%= cls %> inner-box-caption dropdown-toggle" data-toggle="dropdown">' +
'<span class="caption"><%= caption %></span>' +
'<span class="btn-fixflex-vcenter">' +
'<i class="caret img-commonctrl"></i>' +
'</span>' +
'</button>' +
'</div>';

View file

@ -494,10 +494,10 @@ define([
var v_out = value;
// to sec
if (fromUnit=='ms' || fromUnit=='мс')
v_out = v_out/1000.;
v_out = parseFloat((v_out/1000.).toFixed(6));
// from sec
if (this.options.defaultUnit=='ms' || this.options.defaultUnit=='мс')
v_out = v_out*1000;
v_out = parseFloat((v_out*1000).toFixed(6));
return v_out;
}
@ -517,13 +517,13 @@ define([
// from mm
if (this.options.defaultUnit=='cm' || this.options.defaultUnit=='см')
v_out = v_out/10.;
v_out = parseFloat((v_out/10.).toFixed(6));
else if (this.options.defaultUnit=='pt' || this.options.defaultUnit=='пт')
v_out = parseFloat((v_out * 72.0 / 25.4).toFixed(3));
else if (this.options.defaultUnit=='\"')
v_out = parseFloat((v_out / 25.4).toFixed(3));
else if (this.options.defaultUnit=='pc')
v_out = v_out * 6.0 / 25.4;
v_out = parseFloat((v_out * 6.0 / 25.4).toFixed(6));
return v_out;
}

View file

@ -847,9 +847,9 @@ define([
'<div class="resize-border bottom" style="left: 4px; right: 4px; width: auto; z-index: 2; border-top-style: solid; cursor: s-resize;"></div>' +
'<div class="resize-border right bottom" style="border-bottom-right-radius: 5px; cursor: se-resize;"></div>' +
'<div class="resize-border right" style="top:' + ((this.initConfig.header) ? '33' : '5') + 'px; bottom: 5px; height: auto; border-left-style: solid; cursor: w-resize;"></div>' +
'<div class="resize-border left top" style="border-top-left-radius: 5px; cursor: se-resize;"></div>' +
'<div class="resize-border left top" style="border-top-left-radius: 5px; cursor: nw-resize;"></div>' +
'<div class="resize-border top" style="left: 4px; right: 4px; width: auto; z-index: 2; border-bottom-style:' + ((this.initConfig.header) ? "none" : "solid") + '; cursor: s-resize;"></div>' +
'<div class="resize-border right top" style="border-top-right-radius: 5px; cursor: sw-resize;"></div>';
'<div class="resize-border right top" style="border-top-right-radius: 5px; cursor: ne-resize;"></div>';
if (this.initConfig.header)
bordersTemplate += '<div class="resize-border left" style="top: 5px; height: 28px; cursor: e-resize;"></div>' +
'<div class="resize-border right" style="top: 5px; height: 28px; cursor: w-resize;"></div>';

View file

@ -64,6 +64,16 @@ define([
'message:add': _.bind(this.onSendMessage, this)
}
});
var me = this;
Common.NotificationCenter.on('layout:changed', function(area){
Common.Utils.asyncCall(function(e) {
if ( e == 'toolbar' && me.panelChat.$el.is(':visible') ) {
me.panelChat.updateLayout(true);
me.panelChat.setupAutoSizingTextBox();
}
}, this, area);
});
},
events: {

View file

@ -108,6 +108,13 @@ define([
Common.NotificationCenter.on('comments:updatefilter', _.bind(this.onUpdateFilter, this));
Common.NotificationCenter.on('app:comment:add', _.bind(this.onAppAddComment, this));
Common.NotificationCenter.on('layout:changed', function(area){
Common.Utils.asyncCall(function(e) {
if ( e == 'toolbar' && this.view.$el.is(':visible') ) {
this.onAfterShow();
}
}, this, area);
}.bind(this));
},
onLaunch: function () {
this.collection = this.getApplication().getCollection('Common.Collections.Comments');

View file

@ -57,10 +57,14 @@ define([
this.addListeners({
'Toolbar': {
'render:before' : function (toolbar) {
// var tab = {action: 'plugins', caption: 'Addons'};
// var $panel = me.panelPlugins.getPanel();
//
// toolbar.addTab(tab, $panel, 4);
var appOptions = me.getApplication().getController('Main').appOptions;
if ( appOptions.isEdit && !appOptions.isEditMailMerge && !appOptions.isEditDiagram ) {
var tab = {action: 'plugins', caption: me.panelPlugins.groupCaption};
var $panel = me.panelPlugins.getPanel();
toolbar.addTab(tab, $panel, 4); // TODO: clear plugins list in left panel
}
}
},
'Common.Views.Plugins': {
@ -106,6 +110,7 @@ define([
var $panel = toolbar.$el.find('#plugins-panel');
if ( $panel ) {
this.panelPlugins.renderTo( $panel );
this.panelPlugins._onAppReady();
}
}
},
@ -283,17 +288,16 @@ define([
});
me.pluginDlg.show();
}
} else
this.panelPlugins.openNotVisualMode(plugin.get_Guid());
}
this.panelPlugins.openedPluginMode(plugin.get_Guid());
},
onPluginClose: function() {
onPluginClose: function(plugin) {
if (this.pluginDlg)
this.pluginDlg.close();
else if (this.panelPlugins.iframePlugin)
this.panelPlugins.closeInsideMode();
else
this.panelPlugins.closeNotVisualMode();
this.panelPlugins.closedPluginMode(plugin.get_Guid());
},
onPluginResize: function(size, minSize, maxSize, callback ) {

View file

@ -140,7 +140,7 @@ define([
changes = this.readSDKChange(sdkchange),
posX = sdkchange[0].get_X(),
posY = sdkchange[0].get_Y(),
animate = ( Math.abs(this._state.posx-posX)>0.001 || Math.abs(this._state.posy-posY)>0.001),
animate = ( Math.abs(this._state.posx-posX)>0.001 || Math.abs(this._state.posy-posY)>0.001) || (sdkchange.length !== this._state.changes_length),
lock = (sdkchange[0].get_LockUserId()!==null),
lockUser = this.getUserName(sdkchange[0].get_LockUserId());
@ -164,9 +164,11 @@ define([
}
this._state.posx = posX;
this._state.posy = posY;
this._state.changes_length = sdkchange.length;
this._state.popoverVisible = true;
} else if (this._state.popoverVisible){
this._state.posx = this._state.posy = -1000;
this._state.changes_length = 0;
this._state.popoverVisible = false;
this.getPopover().hide();
this.popoverChanges.reset();

View file

@ -5,7 +5,7 @@
<div class="user-name"><%=scope.getUserName(username)%></div>
<div class="user-date"><%=date%></div>
<% if (quote!==null) { %>
<% if (quote!==null && quote!=='') { %>
<div class="user-quote"><%=scope.getFixedQuote(quote)%></div>
<% } %>
<% if (!editText) { %>

View file

@ -759,7 +759,8 @@ define([
},
loadText: function () {
if (this.textVal && this.commentsView) {
this.commentsView.getTextBox().val(this.textVal);
var textBox = this.commentsView.getTextBox();
textBox && textBox.val(this.textVal);
}
},
getEditText: function () {

View file

@ -70,7 +70,9 @@ define([
'</ul>');
var templateRightBox = '<section>' +
'<section id="box-doc-name"><input type="text" id="rib-doc-name" spellcheck="false" data-can-copy="false"></input></section>' +
'<section id="box-doc-name">' +
'<input type="text" id="rib-doc-name" spellcheck="false" data-can-copy="false"></input>' +
'</section>' +
'<a id="rib-save-status" class="status-label locked"><%= textSaveEnd %></a>' +
'<div class="hedset">' +
'<div class="btn-slot" id="slot-hbtn-edit"></div>' +
@ -81,7 +83,7 @@ define([
// '<span class="btn-slot text" id="slot-btn-users"></span>' +
'<section id="tlb-box-users" class="box-cousers dropdown"">' +
'<div class="btn-users">' +
'<svg class="icon"><use href="#svg-btn-users"></use></svg>' +
'<svg class="icon"><use xlink:href="#svg-btn-users"></use></svg>' +
'<label class="caption">&plus;</label>' +
'</div>' +
'<div class="cousers-menu dropdown-menu">' +
@ -120,7 +122,7 @@ define([
$userList.scroller && $userList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true});
}
applyUsers( collection.getOnlineCount() );
applyUsers( collection.getEditingCount() );
};
function onUsersChanged(model, collection) {
@ -129,13 +131,13 @@ define([
$userList.scroller && $userList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true});
}
applyUsers(model.collection.getOnlineCount());
applyUsers(model.collection.getEditingCount());
};
function onResetUsers(collection, opts) {
var usercount = collection.getOnlineCount();
var usercount = collection.getEditingCount();
if ( $userList ) {
if ( usercount > 1 ) {
if ( usercount > 1 || usercount > 0 && appConfig && !appConfig.isEdit) {
$userList.html(templateUserList({
users: collection.models,
usertpl: _.template(templateUserItem),
@ -157,7 +159,7 @@ define([
};
function applyUsers(count) {
if ( count > 1 ) {
if ( count > 1 || count > 0 && appConfig && !appConfig.isEdit) {
$btnUsers
.attr('data-toggle', 'dropdown')
.addClass('dropdown-toggle')
@ -174,13 +176,13 @@ define([
}
$btnUsers.find('.caption')
.css({'font-size': (count > 1 ? '12px' : '14px'),
'margin-top': (count > 1 ? '0' : '-1px')})
.html(count > 1 ? count : '&plus;');
.css({'font-size': ((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? '12px' : '14px'),
'margin-top': ((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? '0' : '-1px')})
.html((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? count : '&plus;');
var usertip = $btnUsers.data('bs.tooltip');
if ( usertip ) {
usertip.options.title = count > 1 ? usertip.options.titleExt : usertip.options.titleNorm;
usertip.options.title = (count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? usertip.options.titleExt : usertip.options.titleNorm;
usertip.setContent();
}
}
@ -216,8 +218,8 @@ define([
var _url = !!me.branding && !!me.branding.logo && !!me.branding.logo.url ?
me.branding.logo.url : 'http://www.onlyoffice.com';
var newDocumentPage = window.open(_url);
newDocumentPage && newDocumentPage.focus();
// var newDocumentPage = window.open(_url);
// newDocumentPage && newDocumentPage.focus();
});
$panelUsers.on('shown.bs.dropdown', function () {
@ -227,8 +229,9 @@ define([
$panelUsers.find('.cousers-menu')
.on('click', function(e) { return false; });
var editingUsers = storeUsers.getEditingCount();
$btnUsers.tooltip({
title: 'Manage document access rights',
title: (editingUsers > 1 || editingUsers>0 && !appConfig.isEdit) ? me.tipViewUsers : me.tipAccessRights,
titleNorm: me.tipAccessRights,
titleExt: me.tipViewUsers,
placement: 'bottom',
@ -238,10 +241,13 @@ define([
$btnUsers.on('click', onUsersClick.bind(me));
var $labelChangeRights = $panelUsers.find('#tlb-change-rights');
$labelChangeRights.on('click', onUsersClick.bind(me));
$labelChangeRights.on('click', function(e) {
$panelUsers.removeClass('open');
me.fireEvent('click:users', me);
});
$labelChangeRights[(!mode.isOffline && !mode.isReviewOnly && mode.sharingSettingsUrl && mode.sharingSettingsUrl.length)?'show':'hide']();
$panelUsers[(storeUsers.size() > 1 || !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']();
if ( $saveStatus ) {
$saveStatus.attr('data-width', me.textSaveExpander);
@ -263,7 +269,7 @@ define([
}
if ( me.btnPrint ) {
me.btnPrint.updateHint(me.tipPrint);
me.btnPrint.updateHint(me.tipPrint + Common.Utils.String.platformKey('Ctrl+P'));
me.btnPrint.on('click', function (e) {
me.fireEvent('print', me);
});
@ -382,12 +388,13 @@ define([
if ( this.labelDocName ) this.labelDocName.off();
this.labelDocName = $html.find('#rib-doc-name');
this.labelDocName.on({
'keydown': onDocNameKeyDown.bind(this)
});
// this.labelDocName.attr('maxlength', 50);
this.labelDocName.text = function (text) {
this.val(text).attr('size', text.length);
}
if ( this.documentCaption ) {
this.labelDocName.val( this.documentCaption );
this.labelDocName.text( this.documentCaption );
}
if ( !_.isUndefined(this.options.canRename) ) {
@ -485,8 +492,8 @@ define([
this.documentCaption = value;
this.isModified && (value += '*');
if ( this.labelDocName ) {
this.labelDocName.val( value );
this.labelDocName.attr('size', value.length);
this.labelDocName.text( value );
// this.labelDocName.attr('size', value.length);
this.setCanRename(true);
}
@ -504,7 +511,7 @@ define([
var _name = this.documentCaption;
changed && (_name += '*');
this.labelDocName.val(_name);
this.labelDocName.text(_name);
},
setCanBack: function (value) {
@ -529,7 +536,16 @@ define([
title: me.txtRename,
placement: 'cursor'}
);
label.on({
'keydown': onDocNameKeyDown.bind(this),
'blur': function (e) {
}
});
} else {
label.off();
label.attr('disabled', true);
var tip = label.data('bs.tooltip');
if ( tip ) {

View file

@ -73,15 +73,16 @@ define([
initialize: function(options) {
_.extend(this, options);
this._locked = false;
this._pluginsIsInited = false;
this._state = {
DisabledControls: true
};
this.lockedControls = [];
Common.UI.BaseView.prototype.initialize.call(this, arguments);
(new Promise(function (resolve) {
Common.NotificationCenter.on('app:ready', function (m) { resolve(m); });
})).then(this._onAppReady.bind(this));
Common.NotificationCenter.on('app:ready', function (mode) {
Common.Utils.asyncCall(this._onAppReady, this, mode);
}.bind(this));
},
render: function(el) {
@ -95,7 +96,7 @@ define([
enableKeyEvents: false,
itemTemplate: _.template([
'<div id="<%= id %>" class="item-plugins" style="display: block;">',
'<div class="plugin-icon" style="background-image: url(' + '<%= baseUrl %>' + '<%= variations[currentVariation].get("icons")[(window.devicePixelRatio > 1) ? 1 : 0] %>);"></div>',
'<div class="plugin-icon" style="background-image: url(' + '<%= baseUrl %>' + '<%= variations[currentVariation].get("icons")[((window.devicePixelRatio > 1) ? 1 : 0) + (variations[currentVariation].get("icons").length>2 ? 2 : 0)] %>);"></div>',
'<% if (variations.length>1) { %>',
'<div class="plugin-caret img-commonctrl"></div>',
'<% } %>',
@ -126,16 +127,16 @@ define([
if ( !this.storePlugins.isEmpty() ) {
var _group = $('<div class="group"></div>');
this.storePlugins.each(function (model) {
var btn = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'img-commonctrl review-prev',
caption: model.get('name'),
value: model.get('guid'),
hint: model.get('name')
});
var $slot = $('<span class="slot"></span>').appendTo(_group);
btn.render($slot);
// var btn = new Common.UI.Button({
// cls: 'btn-toolbar x-huge icon-top',
// iconCls: 'img-commonctrl review-prev',
// caption: model.get('name'),
// value: model.get('guid'),
// hint: model.get('name')
// });
//
// var $slot = $('<span class="slot"></span>').appendTo(_group);
// btn.render($slot);
});
_group.appendTo(_panel);
@ -149,10 +150,11 @@ define([
var me = this;
var _group = $('<div class="group"></div>');
this.storePlugins.each(function (model) {
var modes = model.get('variations');
var guid = model.get('guid');
var _icon_url = model.get('baseUrl') + modes[model.get('currentVariation')].get('icons')[(window.devicePixelRatio > 1) ? 1 : 0];
var btn = new Common.UI.Button({
var modes = model.get('variations'),
guid = model.get('guid'),
icons = modes[model.get('currentVariation')].get('icons'),
_icon_url = model.get('baseUrl') + icons[((window.devicePixelRatio > 1) ? 1 : 0) + (icons.length>2 ? 2 : 0)],
btn = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
iconImg: _icon_url,
caption: model.get('name'),
@ -166,9 +168,11 @@ define([
btn.render($slot);
model.set('button', btn);
me.lockedControls.push(btn);
});
parent.html(_group);
$('<div class="separator long"></div>').prependTo(parent);
}
},
@ -201,7 +205,7 @@ define([
if (!this.iframePlugin) {
this.iframePlugin = document.createElement("iframe");
this.iframePlugin.id = 'plugin_iframe';
this.iframePlugin.name = 'pluginFrameEditor',
this.iframePlugin.name = 'pluginFrameEditor';
this.iframePlugin.width = '100%';
this.iframePlugin.height = '100%';
this.iframePlugin.align = "top";
@ -217,6 +221,8 @@ define([
this.iframePlugin.src = url;
}
this.fireEvent('plugin:open', [this, 'onboard', 'open']);
return true;
},
@ -228,17 +234,40 @@ define([
this.iframePlugin = null;
}
this.currentPluginPanel.toggleClass('hidden', true);
this.pluginsPanel.toggleClass('hidden', false);
// this.pluginsPanel.toggleClass('hidden', false);
this.fireEvent('plugin:open', [this, 'onboard', 'close']);
},
openNotVisualMode: function(pluginGuid) {
var rec = this.viewPluginsList.store.findWhere({guid: pluginGuid});
if (rec)
this.viewPluginsList.cmpEl.find('#' + rec.get('id')).parent().addClass('selected');
openedPluginMode: function(pluginGuid) {
// var rec = this.viewPluginsList.store.findWhere({guid: pluginGuid});
// if ( rec ) {
// this.viewPluginsList.cmpEl.find('#' + rec.get('id')).parent().addClass('selected');
// }
var model = this.storePlugins.findWhere({guid: pluginGuid});
if ( model ) {
var _btn = model.get('button');
if (_btn) {
_btn.toggle(true);
if (_btn.menu && _btn.menu.items.length>0) {
_btn.menu.items[0].setCaption(this.textStop);
}
}
}
},
closeNotVisualMode: function() {
this.viewPluginsList.cmpEl.find('.selected').removeClass('selected');
closedPluginMode: function(guid) {
// this.viewPluginsList.cmpEl.find('.selected').removeClass('selected');
var model = this.storePlugins.findWhere({guid: guid});
if ( model ) {
var _btn = model.get('button');
_btn.toggle(false);
if (_btn.menu && _btn.menu.items.length>0) {
_btn.menu.items[0].setCaption(this.textStart);
}
}
},
_onLoad: function() {
@ -247,7 +276,10 @@ define([
},
_onAppReady: function (mode) {
if (this._pluginsIsInited) return;
var me = this;
this._pluginsIsInited = (this.storePlugins.length>0);
this.storePlugins.each(function(model) {
var _plugin_btn = model.get('button');
@ -282,7 +314,9 @@ define([
strPlugins: 'Plugins',
textLoading: 'Loading',
textStart: 'Start'
textStart: 'Start',
textStop: 'Stop',
groupCaption: 'Plugins'
}, Common.Views.Plugins || {}));
@ -296,7 +330,7 @@ define([
var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34;
if (!_options.header) header_footer -= 34;
this.bordersOffset = 25;
this.bordersOffset = 40;
_options.width = (Common.Utils.innerWidth()-this.bordersOffset*2-_options.width)<0 ? Common.Utils.innerWidth()-this.bordersOffset*2: _options.width;
_options.height += header_footer;
_options.height = (Common.Utils.innerHeight()-this.bordersOffset*2-_options.height)<0 ? Common.Utils.innerHeight()-this.bordersOffset*2: _options.height;
@ -388,7 +422,7 @@ define([
Common.UI.Window.prototype.setWidth.call(this, width + borders_width);
this.$window.css('left',(maxWidth - width - borders_width) / 2);
this.$window.css('top',((maxHeight - height - this._headerFooterHeight) / 2) * 0.9);
this.$window.css('top',((maxHeight - height - this._headerFooterHeight) / 2));
},
onWindowResize: function() {

View file

@ -563,7 +563,7 @@ define([
if ( config.canReview ) {
me.btnPrev.updateHint(me.hintPrev);
me.btnNext.updateHint(me.hintNext);
me.btnTurnOn.updateHint(me.textChangesOn);
me.btnTurnOn.updateHint(me.tipReview);
me.btnAccept.setMenu(
new Common.UI.Menu({
@ -722,7 +722,6 @@ define([
}, this);
},
textChangesOn: 'Preview changes',
txtAccept: 'Accept',
txtAcceptCurrent: 'Accept current Changes',
txtAcceptAll: 'Accept all Changes',

View file

@ -1,7 +1,7 @@
.about-dlg {
.asc-about-office {
background-repeat: no-repeat;
.background-ximage('@{common-image-path}/about/OnlyOffice.png', '@{common-image-path}/about/OnlyOffice@2x.png', 420px);
.background-ximage('@{common-image-path}/about/OnlyOffice.png', '@{common-image-path}/about/OnlyOffice@2x.png', 340px);
width: 340px;
height: 55px;

View file

@ -77,7 +77,7 @@
align-items: center;
.icon {
flex-grow: 1;
//flex-grow: 1;
}
.caption {
@ -129,6 +129,12 @@
min-width: 0;
}
button.small .icon {
width: 20px;
height: 20px;
min-width: 0;
}
&.dropdown-toggle {
.caption {
max-width: 100px;
@ -144,10 +150,24 @@
line-height: 20px;
}
.btn-fixflex-hcenter {
flex-grow: 1;
}
.btn-fixflex-vcenter {
.caret {
vertical-align: inherit;
}
}
.inner-box-caption {
margin: 0;
height: 18px;
}
div.inner-box-icon {
height: 28px; // TODO: clear. Firefox bug 984869. fixed. isn't released.
}
}
.icon-top {
@ -158,6 +178,9 @@
.mx-button-otherstates-icon2(@icon-size);
}
.btn.small {
.mx-button-otherstates-icon2(20px);
}
}
}
@ -414,7 +437,7 @@
}
}
button.active {
button.active:not(.disabled) {
background-color: @color-dark;
}
@ -553,6 +576,10 @@
background-repeat: no-repeat;
}
&.dropdown-toggle:first-child .inner-box-caret {
padding: 0 2px 0 0;
}
&:hover:not(.disabled),
.over:not(.disabled) {
background-color: @secondary !important;

View file

@ -28,6 +28,10 @@
background-color: @input-bg;
&.dropdown-toggle {
.inner-box-caret {
padding: 0 2px 0 0;
}
.caret {
// width: 7px;
// height: 7px;

View file

@ -100,9 +100,18 @@
border: 0 none;
cursor: default;
&:focus {
cursor: text;
&:hover:not(:disabled) {
border: 1px solid @gray-dark;
background-color: rgba(255,255,255,0.2);
}
&:focus:not(:active) {
border: 1px solid @gray-dark;
cursor: text;
background-color: white;
color: @gray-deep;
}
width: 100%;
}
#rib-save-status {
@ -125,7 +134,7 @@
#header-logo {
max-width: 200px;
height: 100%;
cursor: pointer;
//cursor: pointer;
padding: 7px 24px 7px 12px;
i {

View file

@ -125,7 +125,7 @@
#plugins-panel {
.x-huge.icon-top {
img {
height: 20px;
height: 26px;
}
.caption {
@ -142,4 +142,8 @@
.dropdown-menu {
min-width: 100px;
}
.separator:first-child {
display: none;
}
}

View file

@ -35,7 +35,7 @@
}
#sd-text-replace, #search-label-replace {
margin-left: 36px;
margin-left: 39px;
}
#search-label-replace {

View file

@ -143,7 +143,7 @@
}
.box-controls {
height: @height-controls;
//height: @height-controls; // button has strange offset in IE when odd height
padding: 10px 0;
display: flex;

View file

@ -14,7 +14,7 @@
left: 0;
width: 100%;
height: 100%;
opacity: 0;
opacity: 0.2;
background-color: rgb(0,0,0);
z-index: @zindex-modal - 1;
}
@ -96,6 +96,10 @@
&.modal {
z-index: @zindex-modal;
-ms-touch-action: none;
-moz-user-select:none;
-khtml-user-select:none;
user-select:none;
}
&.dethrone {

View file

@ -1,9 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill-rule:evenodd;clip-rule:evenodd;}
</style>
<path class="st0" d="M17,8.5h31.5L56,16v31.5L48.5,55H17l-7.5-7.5V16L17,8.5z"/>
viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<polygon points="18.576,55 5.153,31.75 18.576,8.5 45.424,8.5 58.848,31.75 45.424,55 "/>
</svg>

Before

Width:  |  Height:  |  Size: 508 B

After

Width:  |  Height:  |  Size: 532 B

View file

@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<g>
<polygon id="XMLID_2_" points="56,30 56,25 25,25 25,14 9.5,27.3 25,40.5 25,30 51,30 51,50 56,50 56,30 "/>
</g>
viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<path d="M32.5,55.5l-23-23.3L32.5,9v13H56v20H32.5V55.5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 469 B

After

Width:  |  Height:  |  Size: 503 B

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<g id="XMLID_3_">
<polygon id="XMLID_2_" points="9.5,30 9.5,25 40.5,25 40.5,14 56,27.3 40.5,40.5 40.5,30 14.5,30 14.5,50 9.5,50 9.5,30 "/>
</g>
viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<polygon id="XMLID_2_" points="43.75,53.25 43.75,25.25 53.75,25.25 38.45,7.75 23.25,25.25 32.75,25.25 32.75,42.25 11.75,42.25
11.75,53.25 "/>
</svg>

Before

Width:  |  Height:  |  Size: 498 B

After

Width:  |  Height:  |  Size: 588 B

View file

@ -57,7 +57,6 @@ define([
initialize: function() {
this.addListeners({
/** coauthoring begin **/
'Common.Views.Chat': {
'hide': _.bind(this.onHideChat, this)
},
@ -68,15 +67,17 @@ define([
this.clickMenuFileItem('header', 'history');
}.bind(this)
},
'LeftMenu': {
'comments:show': _.bind(this.commentsShowHide, this, 'show'),
'comments:hide': _.bind(this.commentsShowHide, this, 'hide')
},
/** coauthoring end **/
'Common.Views.About': {
'show': _.bind(this.aboutShowHide, this, false),
'hide': _.bind(this.aboutShowHide, this, true)
},
'Common.Views.Plugins': {
'plugin:open': _.bind(this.onPluginOpen, this)
},
'LeftMenu': {
'comments:show': _.bind(this.commentsShowHide, this, 'show'),
'comments:hide': _.bind(this.commentsShowHide, this, 'hide')
},
'FileMenu': {
'menu:hide': _.bind(this.menuFilesShowHide, this, 'hide'),
'menu:show': _.bind(this.menuFilesShowHide, this, 'show'),
@ -160,6 +161,14 @@ define([
this.leftMenu.setMode(mode);
this.leftMenu.getMenu('file').setMode(mode);
if (!mode.isEdit) // TODO: unlock 'save as', 'open file menu' for 'view' mode
Common.util.Shortcuts.removeShortcuts({
shortcuts: {
'command+shift+s,ctrl+shift+s': _.bind(this.onShortcut, this, 'save'),
'alt+f': _.bind(this.onShortcut, this, 'file')
}
});
return this;
},
@ -190,7 +199,7 @@ define([
enablePlugins: function() {
if (this.mode.canPlugins) {
this.leftMenu.btnPlugins.show();
// this.leftMenu.btnPlugins.show();
this.leftMenu.setOptionsPanel('plugins', this.getApplication().getController('Common.Controllers.Plugins').getView('Common.Views.Plugins'));
} else
this.leftMenu.btnPlugins.hide();
@ -530,6 +539,13 @@ define([
if (this.api)
this.api.asc_enableKeyEvents(value);
if (value) $(this.leftMenu.btnAbout.el).blur();
if (value && this.leftMenu._state.pluginIsRunning) {
this.leftMenu.panelPlugins.show();
if (this.mode.canCoAuthoring) {
this.mode.canComments && this.leftMenu.panelComments['hide']();
this.mode.canChat && this.leftMenu.panelChat['hide']();
}
}
},
menuFilesShowHide: function(state) {
@ -576,8 +592,10 @@ define([
}
return false;
case 'help':
if ( this.mode.isEdit ) { // TODO: unlock 'help' for 'view' mode
Common.UI.Menu.Manager.hideAll();
this.leftMenu.showMenu('file:help');
}
return false;
case 'file':
Common.UI.Menu.Manager.hideAll();
@ -628,6 +646,20 @@ define([
}
},
onPluginOpen: function(panel, type, action) {
if ( type == 'onboard' ) {
if ( action == 'open' ) {
this.leftMenu.close();
this.leftMenu.panelPlugins.show();
this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}});
this.leftMenu._state.pluginIsRunning = true;
} else {
this.leftMenu._state.pluginIsRunning = false;
this.leftMenu.close();
}
}
},
showHistory: function() {
var maincontroller = DE.getController('Main');
if (!maincontroller.loadMask)

View file

@ -552,7 +552,7 @@ define([
toolbarView = toolbarController.getView();
if (this.appOptions.isEdit && toolbarView && (toolbarView.btnInsertShape.pressed || toolbarView.btnInsertText.pressed) &&
( !_.isObject(arguments[1]) || arguments[1].id !== 'tlb-btn-insshape')) { // TODO: Event from api is needed to clear btnInsertShape state
( !_.isObject(arguments[1]) || arguments[1].id !== 'tlbtn-insertshape')) { // TODO: Event from api is needed to clear btnInsertShape state
if (this.api)
this.api.StartAddShape('', false);

View file

@ -207,7 +207,7 @@ define([
var props = new Asc.asc_CImgProperty();
props.put_WrappingStyle(item.options.wrapType);
if ( _imgOriginalProps.get_WrappingStyle() === Asc.c_oAscWrapStyle2.Inline && item.wrapType !== Asc.c_oAscWrapStyle2.Inline ) {
if ( _imgOriginalProps.get_WrappingStyle() === Asc.c_oAscWrapStyle2.Inline && item.options.wrapType !== Asc.c_oAscWrapStyle2.Inline ) {
props.put_PositionH(new Asc.CImagePositionH());
props.get_PositionH().put_UseAlign(false);
props.get_PositionH().put_RelativeFrom(Asc.c_oAscRelativeFromH.Column);
@ -229,7 +229,7 @@ define([
onClickMenuGroup: function (menu, item, e) {
var props = new Asc.asc_CImgProperty();
props.put_Group(item.groupval);
props.put_Group(item.options.groupval);
this.api.ImgApply(props);
this.toolbar.fireEvent('editcomplete', this.toolbar);

View file

@ -2832,6 +2832,7 @@ define([
/x-huge/.test(el.className) && (_cls += ' x-huge icon-top');
var button = new Common.UI.Button({
id: 'tlbtn-addcomment-' + index,
cls: _cls,
iconCls: 'btn-menu-comments',
caption: me.toolbar.capBtnComment

View file

@ -84,6 +84,7 @@ define([
initialize: function () {
this.minimizedMode = true;
this._state = {};
},
render: function () {
@ -163,6 +164,7 @@ define([
onBtnMenuToggle: function(btn, state) {
if (state) {
btn.panel['show']();
if (!this._state.pluginIsRunning)
this.$el.width(SCALE_MIN);
if (this.btnSearch.isActive())
@ -190,7 +192,7 @@ define([
if (!(this.$el.width() > SCALE_MIN)) {
this.$el.width(parseInt(Common.localStorage.getItem('de-mainmenu-width')) || MENU_SCALE_PART);
}
} else {
} else if (!this._state.pluginIsRunning) {
Common.localStorage.setItem('de-mainmenu-width',this.$el.width());
this.$el.width(SCALE_MIN);
}
@ -221,12 +223,12 @@ define([
}
}
/** coauthoring end **/
if (this.mode.canPlugins && this.panelPlugins) {
if (this.btnPlugins.pressed) {
this.panelPlugins.show();
} else
this.panelPlugins['hide']();
}
// if (this.mode.canPlugins && this.panelPlugins) {
// if (this.btnPlugins.pressed) {
// this.panelPlugins.show();
// } else
// this.panelPlugins['hide']();
// }
},
setOptionsPanel: function(name, panel) {
@ -262,6 +264,7 @@ define([
this.menuFile.hide();
} else {
this.btnAbout.toggle(false);
if (!this._state.pluginIsRunning)
this.$el.width(SCALE_MIN);
/** coauthoring begin **/
if (this.mode.canCoAuthoring) {
@ -277,7 +280,7 @@ define([
}
}
/** coauthoring end **/
if (this.mode.canPlugins && this.panelPlugins) {
if (this.mode.canPlugins && this.panelPlugins && !this._state.pluginIsRunning) {
this.panelPlugins['hide']();
this.btnPlugins.toggle(false, true);
}

View file

@ -455,7 +455,7 @@ define([
this.mnuMultilevelPicker = clone(this.mnuMarkersPicker);
this.btnInsertTable = new Common.UI.Button({
id: 'tlb-btn-instable',
id: 'tlbtn-inserttable',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-inserttable',
caption: me.capBtnInsTable,
@ -469,7 +469,7 @@ define([
this.paragraphControls.push(this.btnInsertTable);
this.btnInsertImage = new Common.UI.Button({
id: 'tlb-btn-insimage',
id: 'tlbtn-insertimage',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-insertimage',
caption: me.capBtnInsImage,
@ -483,7 +483,7 @@ define([
this.paragraphControls.push(this.btnInsertImage);
this.btnInsertChart = new Common.UI.Button({
id: 'tlb-btn-inschart',
id: 'tlbtn-insertchart',
cls: 'btn-toolbar x-huge icon-top',
caption: me.capBtnInsChart,
iconCls: 'btn-insertchart',
@ -497,7 +497,7 @@ define([
this.paragraphControls.push(this.btnInsertChart);
this.btnInsertText = new Common.UI.Button({
id: 'tlb-btn-inserttext',
id: 'tlbtn-inserttext',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-text',
caption: me.capBtnInsTextbox,
@ -505,7 +505,7 @@ define([
});
this.paragraphControls.push(this.btnInsertText);
this.btnInsertTextArt = new Common.UI.Button({
id: 'tlb-btn-instextart',
id: 'tlbtn-inserttextart',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-textart',
caption: me.capBtnInsTextart,
@ -519,7 +519,7 @@ define([
this.paragraphControls.push(this.btnInsertTextArt);
this.btnInsertHyperlink = new Common.UI.Button({
id: 'tlb-btn-inshyperlink',
id: 'tlbtn-insertlink',
cls: 'btn-toolbar x-huge icon-top',
caption: me.capBtnInsLink,
iconCls: 'btn-inserthyperlink'
@ -550,7 +550,7 @@ define([
this.toolbarControls.push(this.btnEditHeader);
this.btnInsertShape = new Common.UI.Button({
id: 'tlb-btn-insshape',
id: 'tlbtn-insertshape',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-insertshape',
caption: me.capBtnInsShape,
@ -560,7 +560,7 @@ define([
this.paragraphControls.push(this.btnInsertShape);
this.btnInsertEquation = new Common.UI.Button({
id: 'tlb-btn-insequation',
id: 'tlbtn-insertequation',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-insertequation',
caption: me.capBtnInsEquation,
@ -570,7 +570,7 @@ define([
this.paragraphControls.push(this.btnInsertEquation);
this.btnDropCap = new Common.UI.Button({
id: 'tlb-btn-dropcap',
id: 'tlbtn-dropcap',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-dropcap',
caption: me.capBtnInsDropcap,
@ -607,7 +607,7 @@ define([
this.paragraphControls.push(this.btnDropCap);
this.btnColumns = new Common.UI.Button({
id: 'tlb-btn-columns',
id: 'tlbtn-columns',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-columns',
caption: me.capBtnColumns,
@ -657,7 +657,7 @@ define([
this.paragraphControls.push(this.btnColumns);
this.btnPageOrient = new Common.UI.Button({
id: 'tlb-btn-pageorient',
id: 'tlbtn-pageorient',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-pageorient',
caption: me.capBtnPageOrient,
@ -693,7 +693,7 @@ define([
'<% } %></a>');
this.btnPageMargins = new Common.UI.Button({
id: 'tlb-btn-pagemargins',
id: 'tlbtn-pagemargins',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-pagemargins',
caption: me.capBtnMargins,
@ -752,7 +752,7 @@ define([
'<%= parseFloat(Common.Utils.Metric.fnRecalcFromMM(options.value[1]).toFixed(2)) %> <%= Common.Utils.Metric.getCurrentMetricName() %></div></a>');
this.btnPageSize = new Common.UI.Button({
id: 'tlb-btn-pagesize',
id: 'tlbtn-pagesize',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-pagesize',
caption: me.capBtnPageSize,

View file

@ -14,7 +14,7 @@
"Common.Controllers.ReviewChanges.textAtLeast": "at least",
"Common.Controllers.ReviewChanges.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Baseline",
"Common.Controllers.ReviewChanges.textBold": "Bold",
"Common.Controllers.ReviewChanges.textBold": "Tučné",
"Common.Controllers.ReviewChanges.textBreakBefore": "Page break before",
"Common.Controllers.ReviewChanges.textCaps": "All caps",
"Common.Controllers.ReviewChanges.textCenter": "Align center",
@ -62,7 +62,7 @@
"Common.Controllers.ReviewChanges.textSubScript": "Subscript",
"Common.Controllers.ReviewChanges.textSuperScript": "Superscript",
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
"Common.Controllers.ReviewChanges.textUnderline": "Podtržené",
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
@ -102,7 +102,7 @@
"Common.Utils.Metric.txtPt": "pt",
"Common.Views.About.txtAddress": "adresa:",
"Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Lotyšsko, EU, LV-1021",
"Common.Views.About.txtLicensee": "DRŽITEL LICENCE",
"Common.Views.About.txtLicensee": "LICENCE",
"Common.Views.About.txtLicensor": "UDĚLOVATEL LICENCE",
"Common.Views.About.txtMail": "email:",
"Common.Views.About.txtPoweredBy": "Poháněno",
@ -121,6 +121,7 @@
"Common.Views.Comments.textComments": "Komentáře",
"Common.Views.Comments.textEdit": "Upravit",
"Common.Views.Comments.textEnterCommentHint": "Zde napište svůj komentář",
"Common.Views.Comments.textHintAddComment": "Přidat komentář",
"Common.Views.Comments.textOpenAgain": "Znovu otevřít",
"Common.Views.Comments.textReply": "Odpovědět",
"Common.Views.Comments.textResolve": "Vyřešit",
@ -139,8 +140,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Zavřít",
"Common.Views.ExternalMergeEditor.textSave": "Uložit a odejít",
"Common.Views.ExternalMergeEditor.textTitle": "Příjemci korespondence",
"Common.Views.Header.openNewTabText": "Otevřít v nové záložce",
"Common.Views.Header.labelCoUsersDescr": "Dokument je aktuálně upravován několika uživateli.",
"Common.Views.Header.textBack": "Jít do dokumentů",
"Common.Views.Header.textSaveBegin": "Ukládání...",
"Common.Views.Header.textSaveChanged": "Modifikováno",
"Common.Views.Header.textSaveEnd": "Všechny změny uloženy",
"Common.Views.Header.textSaveExpander": "Všechny změny uloženy",
"Common.Views.Header.tipAccessRights": "Spravovat přístupová práva k dokumentům",
"Common.Views.Header.tipDownload": "Stáhnout soubor",
"Common.Views.Header.tipGoEdit": "Upravit aktuální soubor",
"Common.Views.Header.tipPrint": "Vytisknout soubor",
"Common.Views.Header.tipViewUsers": "Zobrazte uživatele a spravujte přístupová práva k dokumentům",
"Common.Views.Header.txtAccessRights": "Změnit přístupová práva",
"Common.Views.Header.txtRename": "Přejmenovat",
"Common.Views.History.textCloseHistory": "Zavřít historii",
"Common.Views.History.textHide": "Kolaps",
@ -161,6 +172,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Minimální hodnota tohoto pole je {0}.",
"Common.Views.InsertTableDialog.txtRows": "Počet řádků",
"Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky",
"Common.Views.InsertTableDialog.txtTitleSplit": "Rozdělit buňku",
"Common.Views.LanguageDialog.btnCancel": "Zrušit",
"Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Vybrat jazyk dokumentu",
@ -171,6 +183,7 @@
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
"Common.Views.OpenDialog.txtTitleProtected": "Chráněný soubor",
"Common.Views.PluginDlg.textLoading": "Nahrávám ...",
"Common.Views.Plugins.groupCaption": "Doplňky",
"Common.Views.Plugins.strPlugins": "Pluginy",
"Common.Views.Plugins.textLoading": "Nahrávám ...",
"Common.Views.Plugins.textStart": "Začátek",
@ -178,15 +191,34 @@
"Common.Views.RenameDialog.okButtonText": "OK",
"Common.Views.RenameDialog.textName": "Název souboru",
"Common.Views.RenameDialog.txtInvalidName": "Název souboru nesmí obsahovat žádný z následujících znaků:",
"Common.Views.ReviewChanges.hintNext": "K další změně",
"Common.Views.ReviewChanges.hintPrev": "K předchozí změně",
"Common.Views.ReviewChanges.tipReview": "Přehled",
"Common.Views.ReviewChanges.tipSetDocLang": "Nastavit jazyk dokumentu",
"Common.Views.ReviewChanges.tipSetSpelling": "Kontrola pravopisu",
"Common.Views.ReviewChanges.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
"Common.Views.ReviewChanges.txtAcceptChanges": "Akceptovat změny",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",
"Common.Views.ReviewChanges.txtClose": "Close",
"Common.Views.ReviewChanges.txtDocLang": "Jazyk",
"Common.Views.ReviewChanges.txtNext": "To Next Change",
"Common.Views.ReviewChanges.txtPrev": "To Previous Change",
"Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes",
"Common.Views.ReviewChanges.txtRejectChanges": "Odmítnout změny",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes",
"Common.Views.ReviewChanges.txtSpelling": "Kontrola pravopisu",
"Common.Views.ReviewChanges.txtTurnon": "Sledovat změny",
"Common.Views.ReviewChangesDialog.textTitle": "Zkontrolovat změny",
"Common.Views.ReviewChangesDialog.txtAccept": "Přijmout",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Přijmout všechny změny",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Přijmout aktuální změnu",
"Common.Views.ReviewChangesDialog.txtNext": "K další změně",
"Common.Views.ReviewChangesDialog.txtPrev": "K předchozí změně",
"Common.Views.ReviewChangesDialog.txtReject": "Odmítnout",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Odmítnout všechny změny",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Odmítnout aktuální změnu",
"DE.Controllers.LeftMenu.leavePageText": "Všechny neuložené změny v tomto dokumentu budou ztraceny.<br>Klikněte na \"Zrušit\" a poté na \"Uložit\" pro uložení. Klikněte na \"OK\" pro zrušení všech neuložených změn.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Nepojmenovaný dokument",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Varování",
@ -323,6 +355,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.tipReview": "Přehled",
"DE.Controllers.Statusbar.zoomText": "Přiblížení {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "Písmo, které se chystáte uložit není dostupné na stávajícím zařízení.<br>Text bude zobrazen s jedním ze systémových písem, uložené písmo bude použito, jakmile bude dostupné.<br>Chcete pokračovat?",
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Chcete odstranit všechny poznámky pod čarou?",
@ -910,7 +943,7 @@
"DE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako...",
"DE.Views.FileMenu.btnHelpCaption": "Pomoc...",
"DE.Views.FileMenu.btnHistoryCaption": "Historie verzí",
"DE.Views.FileMenu.btnInfoCaption": "Informace dokumentu...",
"DE.Views.FileMenu.btnInfoCaption": "Informace o dokumentu...",
"DE.Views.FileMenu.btnPrintCaption": "Tisk",
"DE.Views.FileMenu.btnRecentFilesCaption": "Otevřít nedávné...",
"DE.Views.FileMenu.btnRenameCaption": "Přejmenovat...",
@ -937,13 +970,13 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboly s mezerami",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiky",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboly",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titulek dokumentu",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Název dokumentu",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Slova",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Změnit přístupová práva",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, které mají práva",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Použít",
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnout tipy pro zarovnání",
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnout automatickou obnovu",
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Povolit automatické obnovení",
"DE.Views.FileMenuPanels.Settings.strAutosave": "Zapnout automatické ukládání",
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once",
@ -952,19 +985,19 @@
"DE.Views.FileMenuPanels.Settings.strFontRender": "Hinting",
"DE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložit na server (jinak uložit na server při zavření dokumentu)",
"DE.Views.FileMenuPanels.Settings.strInputMode": "Zapnout hieroglyfy",
"DE.Views.FileMenuPanels.Settings.strLiveComment": "Zapnout zobrazování komentářů.",
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "Zapnout zobrazení vyřešených komentářů",
"DE.Views.FileMenuPanels.Settings.strLiveComment": "Povolit zobrazení komentářů",
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "Povolit zobrazení vyřešených komentářů",
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Změny spolupráce v reálném čase",
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnout kontrolu pravopisu",
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Povolit kontrolu pravopisu",
"DE.Views.FileMenuPanels.Settings.strStrict": "Strict",
"DE.Views.FileMenuPanels.Settings.strUnit": "Jednotky měření",
"DE.Views.FileMenuPanels.Settings.strZoom": "Výchozí hodnota přiblížení",
"DE.Views.FileMenuPanels.Settings.strUnit": "Zobrazovat hodnoty v jednotkách",
"DE.Views.FileMenuPanels.Settings.strZoom": "Výchozí měřítko zobrazení",
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Každých 10 minut",
"DE.Views.FileMenuPanels.Settings.text30Minutes": "Každých 30 minut",
"DE.Views.FileMenuPanels.Settings.text5Minutes": "Každých 5 minut",
"DE.Views.FileMenuPanels.Settings.text60Minutes": "Každou hodinu",
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Nápověda zarovnání",
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatická obnova",
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatické obnovení",
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatické ukládání",
"DE.Views.FileMenuPanels.Settings.textDisabled": "Zakázáno",
"DE.Views.FileMenuPanels.Settings.textForceSave": "Uložit na server",
@ -974,7 +1007,7 @@
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Přízpůsobit stránce",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce",
"DE.Views.FileMenuPanels.Settings.txtInch": "Palec (míra 2,54 cm)\n",
"DE.Views.FileMenuPanels.Settings.txtInput": "Náhradní vstup",
"DE.Views.FileMenuPanels.Settings.txtInput": "Alternativní zadávání",
"DE.Views.FileMenuPanels.Settings.txtLast": "Zobraz poslední",
"DE.Views.FileMenuPanels.Settings.txtLiveComment": "Zobrazení komentářů",
"DE.Views.FileMenuPanels.Settings.txtMac": "jako OS X",
@ -1009,6 +1042,7 @@
"DE.Views.ImageSettings.textAdvanced": "Zobrazit pokročilé nastavení",
"DE.Views.ImageSettings.textEdit": "Upravit",
"DE.Views.ImageSettings.textEditObject": "Upravit objekt",
"DE.Views.ImageSettings.textFitMargins": "Přizpůsobit na okraj",
"DE.Views.ImageSettings.textFromFile": "Ze souboru",
"DE.Views.ImageSettings.textFromUrl": "Z adresy URL",
"DE.Views.ImageSettings.textHeight": "Výška",
@ -1083,6 +1117,7 @@
"DE.Views.ImageSettingsAdvanced.textTop": "Nahoře",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Horní okraj",
"DE.Views.ImageSettingsAdvanced.textVertical": "Svislé",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Síla a šipky",
"DE.Views.ImageSettingsAdvanced.textWidth": "Šířka",
"DE.Views.ImageSettingsAdvanced.textWrap": "Obtékání textu",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za",
@ -1095,10 +1130,9 @@
"DE.Views.LeftMenu.tipAbout": "Informace",
"DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Komentáře",
"DE.Views.LeftMenu.tipFile": "Soubor",
"DE.Views.LeftMenu.tipPlugins": "Pluginy",
"DE.Views.LeftMenu.tipSearch": "Hledat",
"DE.Views.LeftMenu.tipSupport": "Podpora a zpětná vazba",
"DE.Views.LeftMenu.tipSupport": "Zpětná vazba a Podpora",
"DE.Views.LeftMenu.tipTitles": "Nadpisy",
"DE.Views.LeftMenu.txtDeveloper": "VÝVOJÁŘSKÝ REŽIM",
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Zrušit",
@ -1314,23 +1348,12 @@
"DE.Views.ShapeSettings.txtWood": "Dřevo",
"DE.Views.Statusbar.goToPageText": "Jít na stránku",
"DE.Views.Statusbar.pageIndexText": "Stránka {0} z {1}",
"DE.Views.Statusbar.textChangesPanel": "Changes Panel",
"DE.Views.Statusbar.textTrackChanges": "Track Changes",
"DE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"DE.Views.Statusbar.tipFitPage": "Přízpůsobit stránce",
"DE.Views.Statusbar.tipFitWidth": "Přizpůsobit šířce",
"DE.Views.Statusbar.tipMoreUsers": "a %1 uživatelů.",
"DE.Views.Statusbar.tipReview": "Review",
"DE.Views.Statusbar.tipSetDocLang": "Nastavit jazyk dokumentu",
"DE.Views.Statusbar.tipSetLang": "Nastavit jazyk psaní",
"DE.Views.Statusbar.tipSetSpelling": "Kontrola pravopisu",
"DE.Views.Statusbar.tipShowUsers": "Pro zobrazená všech uživatelů klikněte na ikonu níže.",
"DE.Views.Statusbar.tipUsers": "Dokument je aktuálně upravován několika uživateli.",
"DE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"DE.Views.Statusbar.tipZoomFactor": "Zvětšení",
"DE.Views.Statusbar.tipZoomIn": "Přiblížit",
"DE.Views.Statusbar.tipZoomOut": "Oddálit",
"DE.Views.Statusbar.txAccessRights": "Change access rights",
"DE.Views.Statusbar.txtPageNumInvalid": "Neplatné číslo stránky",
"DE.Views.StyleTitleDialog.textHeader": "Vytvořit nový styl",
"DE.Views.StyleTitleDialog.textNextStyle": "Styl dalšího odstavce",
@ -1479,6 +1502,27 @@
"DE.Views.TextArtSettings.textTemplate": "Šablona",
"DE.Views.TextArtSettings.textTransform": "Transformovat",
"DE.Views.TextArtSettings.txtNoBorders": "Bez čáry",
"DE.Views.Toolbar.capBtnColumns": "Sloupce",
"DE.Views.Toolbar.capBtnInsChart": "Graf",
"DE.Views.Toolbar.capBtnInsDropcap": "Iniciála",
"DE.Views.Toolbar.capBtnInsEquation": "Rovnice",
"DE.Views.Toolbar.capBtnInsFootnote": "Poznámka pod čarou",
"DE.Views.Toolbar.capBtnInsHeader": "Záhlaví/Zápatí",
"DE.Views.Toolbar.capBtnInsImage": "Obrázek",
"DE.Views.Toolbar.capBtnInsLink": "Hypertextový odkaz",
"DE.Views.Toolbar.capBtnInsPagebreak": "Rozdělení stránky",
"DE.Views.Toolbar.capBtnInsShape": "Tvar",
"DE.Views.Toolbar.capBtnInsTable": "Tabulka",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Text",
"DE.Views.Toolbar.capBtnMargins": "Okraje",
"DE.Views.Toolbar.capBtnPageOrient": "Orientace",
"DE.Views.Toolbar.capBtnPageSize": "Velikost",
"DE.Views.Toolbar.capImgAlign": "Zarovnat",
"DE.Views.Toolbar.capImgBackward": "Posunout zpět",
"DE.Views.Toolbar.capImgForward": "Posunout vpřed",
"DE.Views.Toolbar.capImgGroup": "Skupina",
"DE.Views.Toolbar.capImgWrapping": "Zalamování",
"DE.Views.Toolbar.mniCustomTable": "Vložit vlastní tabulku",
"DE.Views.Toolbar.mniDelFootnote": "Odstranit všechny poznámky pod čarou",
"DE.Views.Toolbar.mniEditDropCap": "Nastavení Iniciály",
@ -1494,7 +1538,7 @@
"DE.Views.Toolbar.textArea": "Plošný graf",
"DE.Views.Toolbar.textAutoColor": "Automaticky",
"DE.Views.Toolbar.textBar": "Pruhový graf",
"DE.Views.Toolbar.textBold": "Tučně",
"DE.Views.Toolbar.textBold": "Tučné",
"DE.Views.Toolbar.textBottom": "Bottom: ",
"DE.Views.Toolbar.textCharts": "Grafy",
"DE.Views.Toolbar.textColumn": "Sloupcový graf",
@ -1519,8 +1563,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Vložit číslo stránky",
"DE.Views.Toolbar.textInsPageBreak": "Vložit rozdělovač stránky",
"DE.Views.Toolbar.textInsSectionBreak": "Vložit rozdělovač sekce",
"DE.Views.Toolbar.textInsText": "Vložit textové pole",
"DE.Views.Toolbar.textInsTextArt": "Vložit Text art",
"DE.Views.Toolbar.textInText": "V textu",
"DE.Views.Toolbar.textItalic": "Kurzíva",
"DE.Views.Toolbar.textLandscape": "Na šířku",
@ -1553,10 +1595,15 @@
"DE.Views.Toolbar.textSubscript": "Dolní index",
"DE.Views.Toolbar.textSuperscript": "Horní index",
"DE.Views.Toolbar.textSurface": "Povrch",
"DE.Views.Toolbar.textTabFile": "Soubor",
"DE.Views.Toolbar.textTabHome": "Domů",
"DE.Views.Toolbar.textTabInsert": "Vložit",
"DE.Views.Toolbar.textTabLayout": "Rozložení",
"DE.Views.Toolbar.textTabReview": "Přehled",
"DE.Views.Toolbar.textTitleError": "Chyba",
"DE.Views.Toolbar.textToCurrent": "Na součásnou pozici",
"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",
@ -1579,6 +1626,9 @@
"DE.Views.Toolbar.tipFontSize": "Velikost písma",
"DE.Views.Toolbar.tipHAligh": "Horizontální zarovnání",
"DE.Views.Toolbar.tipHighlightColor": "Barva zvýraznění",
"DE.Views.Toolbar.tipImgAlign": "Zarovnat objekty",
"DE.Views.Toolbar.tipImgGroup": "Skupinové objekty\n\n",
"DE.Views.Toolbar.tipImgWrapping": "Zalamovat text",
"DE.Views.Toolbar.tipIncFont": "Zvětšit velikost písma",
"DE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení",
"DE.Views.Toolbar.tipInsertChart": "Vložit graf",
@ -1589,14 +1639,13 @@
"DE.Views.Toolbar.tipInsertShape": "Vložit tvar",
"DE.Views.Toolbar.tipInsertTable": "Vložit tabulku",
"DE.Views.Toolbar.tipInsertText": "Vložení textu",
"DE.Views.Toolbar.tipInsertTextArt": "Vložit Text art",
"DE.Views.Toolbar.tipLineSpace": "Řádkování odstavce",
"DE.Views.Toolbar.tipMailRecepients": "Korespondence",
"DE.Views.Toolbar.tipMarkers": "Odrážky",
"DE.Views.Toolbar.tipMultilevels": "Obrys",
"DE.Views.Toolbar.tipNewDocument": "Nový dokument",
"DE.Views.Toolbar.tipNotes": "Poznámky pod čarou",
"DE.Views.Toolbar.tipNumbers": "Číslování",
"DE.Views.Toolbar.tipOpenDocument": "Otevřít dokument",
"DE.Views.Toolbar.tipPageBreak": "Vložit rozdělovač stránky nebo sekce",
"DE.Views.Toolbar.tipPageMargins": "Page Margins",
"DE.Views.Toolbar.tipPageOrient": "Otočení stránky",
@ -1608,6 +1657,8 @@
"DE.Views.Toolbar.tipRedo": "Krok vpřed",
"DE.Views.Toolbar.tipSave": "Uložit",
"DE.Views.Toolbar.tipSaveCoauth": "Uložte změny, aby je viděli i ostatní uživatelé.",
"DE.Views.Toolbar.tipSendBackward": "Odeslat zpět",
"DE.Views.Toolbar.tipSendForward": "Odeslat vpřed",
"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.tipUndo": "Krok zpět",

View file

@ -121,6 +121,7 @@
"Common.Views.Comments.textComments": "Kommentare",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Geben Sie Ihren Kommentar hier ein",
"Common.Views.Comments.textHintAddComment": "Kommentar hinzufügen",
"Common.Views.Comments.textOpenAgain": "Erneut öffnen",
"Common.Views.Comments.textReply": "Antworten",
"Common.Views.Comments.textResolve": "Lösen",
@ -139,8 +140,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Schließen",
"Common.Views.ExternalMergeEditor.textSave": "Speichern und beenden",
"Common.Views.ExternalMergeEditor.textTitle": "Seriendruckempfänger\t",
"Common.Views.Header.openNewTabText": "In neuer Registerkarte öffnen",
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
"Common.Views.Header.textBack": "Zu Dokumenten übergehen",
"Common.Views.Header.textSaveBegin": "Speicherung...",
"Common.Views.Header.textSaveChanged": "Verändert",
"Common.Views.Header.textSaveEnd": "Alle Änderungen sind gespeichert",
"Common.Views.Header.textSaveExpander": "Alle Änderungen sind gespeichert",
"Common.Views.Header.tipAccessRights": "Zugriffsrechte für das Dokument verwalten",
"Common.Views.Header.tipDownload": "Datei herunterladen",
"Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten",
"Common.Views.Header.tipPrint": "Datei drucken",
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
"Common.Views.Header.txtRename": "Umbenennen",
"Common.Views.History.textCloseHistory": "Historie schließen",
"Common.Views.History.textHide": "Reduzieren",
@ -161,6 +172,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Der minimale Wert für dieses Feld ist {0}.",
"Common.Views.InsertTableDialog.txtRows": "Anzahl von Zeilen\t",
"Common.Views.InsertTableDialog.txtTitle": "Größe der Tabelle",
"Common.Views.InsertTableDialog.txtTitleSplit": "Zelle teilen",
"Common.Views.LanguageDialog.btnCancel": "Abbrechen",
"Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Sprache des Dokuments wählen",
@ -171,6 +183,7 @@
"Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen",
"Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei",
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Ladevorgang",
"Common.Views.Plugins.textStart": "Starten",
@ -178,15 +191,34 @@
"Common.Views.RenameDialog.okButtonText": "OK",
"Common.Views.RenameDialog.textName": "Dateiname",
"Common.Views.RenameDialog.txtInvalidName": "Dieser Dateiname darf keines der folgenden Zeichen enthalten:",
"Common.Views.ReviewChanges.hintNext": "Zur nächsten Änderung",
"Common.Views.ReviewChanges.hintPrev": "Zur vorherigen Änderung",
"Common.Views.ReviewChanges.tipReview": "Review",
"Common.Views.ReviewChanges.tipSetDocLang": "Sprache des Dokumentes festlegen",
"Common.Views.ReviewChanges.tipSetSpelling": "Rechtschreibprüfung",
"Common.Views.ReviewChanges.txtAccept": "Annehmen",
"Common.Views.ReviewChanges.txtAcceptAll": "Alle Änderungen annehmen",
"Common.Views.ReviewChanges.txtAcceptChanges": "Änderungen annehmen",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Aktuelle Änderungen annehmen",
"Common.Views.ReviewChanges.txtClose": "Schließen",
"Common.Views.ReviewChanges.txtDocLang": "Sprache",
"Common.Views.ReviewChanges.txtNext": "Zur nächsten Änderung",
"Common.Views.ReviewChanges.txtPrev": "Zur vorherigen Änderung",
"Common.Views.ReviewChanges.txtReject": "Ablehnen",
"Common.Views.ReviewChanges.txtRejectAll": "Alle Änderungen ablehnen",
"Common.Views.ReviewChanges.txtRejectChanges": "Änderungen ablehnen",
"Common.Views.ReviewChanges.txtRejectCurrent": "Aktuelle Änderungen ablehnen",
"Common.Views.ReviewChanges.txtSpelling": "Rechtschreibprüfung",
"Common.Views.ReviewChanges.txtTurnon": "Nachverfolgen von Änderungen",
"Common.Views.ReviewChangesDialog.textTitle": "Änderungen überprüfen",
"Common.Views.ReviewChangesDialog.txtAccept": "Annehmen",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Alle Änderungen annehmen",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Aktuelle Änderungen annehmen",
"Common.Views.ReviewChangesDialog.txtNext": "Zur nächsten Änderung",
"Common.Views.ReviewChangesDialog.txtPrev": "Zur vorherigen Änderung",
"Common.Views.ReviewChangesDialog.txtReject": "Ablehnen",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Alle Änderungen ablehnen",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Aktuelle Änderungen ablehnen",
"DE.Controllers.LeftMenu.leavePageText": "Alle ungespeicherten Änderungen in diesem Dokument werden verloren.<br> Klicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. Klicken Sie auf den Button \"OK\", so werden alle ungespeicherten Änderungen verloren gehen. ",
"DE.Controllers.LeftMenu.newDocumentTitle": "Unbetiteltes Dokument",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Achtung",
@ -323,6 +355,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
"DE.Controllers.Statusbar.textHasChanges": "Neue Änderungen wurden zurückverfolgt",
"DE.Controllers.Statusbar.textTrackChanges": "Das Dokument wird im Modus \"Nachverfolgen von Änderungen\" geöffnet. ",
"DE.Controllers.Statusbar.tipReview": "Review",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "Die Schriftart, die Sie verwenden wollen, ist auf diesem Gerät nicht verfügbar.<br>Der Textstil wird mit einer der Systemschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.<br>Wollen Sie fortsetzen?",
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Möchten Sie alle Fußnoten löschen?",
@ -1009,6 +1042,7 @@
"DE.Views.ImageSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
"DE.Views.ImageSettings.textEdit": "Bearbeiten",
"DE.Views.ImageSettings.textEditObject": "Objekt bearbeiten",
"DE.Views.ImageSettings.textFitMargins": "Rändern anpassen",
"DE.Views.ImageSettings.textFromFile": "Aus Datei",
"DE.Views.ImageSettings.textFromUrl": "Aus URL",
"DE.Views.ImageSettings.textHeight": "Höhe",
@ -1083,6 +1117,7 @@
"DE.Views.ImageSettingsAdvanced.textTop": "Oben",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Oberer Rand",
"DE.Views.ImageSettingsAdvanced.textVertical": "Vertikal",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Stärken & Pfeile",
"DE.Views.ImageSettingsAdvanced.textWidth": "Breite",
"DE.Views.ImageSettingsAdvanced.textWrap": "Textumbruch",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Hinten",
@ -1095,7 +1130,6 @@
"DE.Views.LeftMenu.tipAbout": "Über das Produkt",
"DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Kommentare",
"DE.Views.LeftMenu.tipFile": "Datei",
"DE.Views.LeftMenu.tipPlugins": "Plugins",
"DE.Views.LeftMenu.tipSearch": "Suchen",
"DE.Views.LeftMenu.tipSupport": "Feedback und Support",
@ -1314,23 +1348,12 @@
"DE.Views.ShapeSettings.txtWood": "Holz",
"DE.Views.Statusbar.goToPageText": "Auf die Seite übergehen",
"DE.Views.Statusbar.pageIndexText": "Seite {0} von {1}",
"DE.Views.Statusbar.textChangesPanel": "Änderungen anzeigen",
"DE.Views.Statusbar.textTrackChanges": "Nachverfolgen von Änderungen",
"DE.Views.Statusbar.tipAccessRights": "Zugriffsrechte für das Dokument verwalten",
"DE.Views.Statusbar.tipFitPage": "Seite anpassen",
"DE.Views.Statusbar.tipFitWidth": "Breite anpassen",
"DE.Views.Statusbar.tipMoreUsers": "und %1 Benutzer.",
"DE.Views.Statusbar.tipReview": "Review",
"DE.Views.Statusbar.tipSetDocLang": "Sprache des Dokumentes festlegen",
"DE.Views.Statusbar.tipSetLang": "Textsprache wählen",
"DE.Views.Statusbar.tipSetSpelling": "Rechtschreibprüfung",
"DE.Views.Statusbar.tipShowUsers": "Um alle Benutzer zu sehen, klicken Sie auf dieses Symbol.",
"DE.Views.Statusbar.tipUsers": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
"DE.Views.Statusbar.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
"DE.Views.Statusbar.tipZoomFactor": "Zoommodus",
"DE.Views.Statusbar.tipZoomIn": "Vergrößern",
"DE.Views.Statusbar.tipZoomOut": "Verkleinern",
"DE.Views.Statusbar.txAccessRights": "Zugriffsrechte ändern",
"DE.Views.Statusbar.txtPageNumInvalid": "Ungültige Seitennummer",
"DE.Views.StyleTitleDialog.textHeader": "Neuer Stil erstellen",
"DE.Views.StyleTitleDialog.textNextStyle": "Nächste Absatz-Formatvorlage",
@ -1479,6 +1502,27 @@
"DE.Views.TextArtSettings.textTemplate": "Vorlage",
"DE.Views.TextArtSettings.textTransform": "Transformieren\t",
"DE.Views.TextArtSettings.txtNoBorders": "Keine Linie",
"DE.Views.Toolbar.capBtnColumns": "Spalten",
"DE.Views.Toolbar.capBtnInsChart": "Diagramm",
"DE.Views.Toolbar.capBtnInsDropcap": "Initialbuchstaben ",
"DE.Views.Toolbar.capBtnInsEquation": "Gleichung",
"DE.Views.Toolbar.capBtnInsFootnote": "Fußnote",
"DE.Views.Toolbar.capBtnInsHeader": "Kopf- und Fußzeile",
"DE.Views.Toolbar.capBtnInsImage": "Bild",
"DE.Views.Toolbar.capBtnInsLink": "Hyperlink",
"DE.Views.Toolbar.capBtnInsPagebreak": "Umbrüche",
"DE.Views.Toolbar.capBtnInsShape": "Form",
"DE.Views.Toolbar.capBtnInsTable": "Tabelle",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Text",
"DE.Views.Toolbar.capBtnMargins": "Ränder",
"DE.Views.Toolbar.capBtnPageOrient": "Orientierung",
"DE.Views.Toolbar.capBtnPageSize": "Größe",
"DE.Views.Toolbar.capImgAlign": "Ausrichten",
"DE.Views.Toolbar.capImgBackward": "Rückwärts navigieren",
"DE.Views.Toolbar.capImgForward": "Vorwärts navigieren",
"DE.Views.Toolbar.capImgGroup": "Gruppieren",
"DE.Views.Toolbar.capImgWrapping": "Umbruch",
"DE.Views.Toolbar.mniCustomTable": "Benutzerdefinierte Tabelle einfügen",
"DE.Views.Toolbar.mniDelFootnote": "Alle Fußnoten löschen ",
"DE.Views.Toolbar.mniEditDropCap": "Initialeinstellungen",
@ -1519,8 +1563,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Seitenzahl einfügen",
"DE.Views.Toolbar.textInsPageBreak": "Seitenumbruch einfügen",
"DE.Views.Toolbar.textInsSectionBreak": "Abschnittsumbruch einfügen",
"DE.Views.Toolbar.textInsText": "Textfeld einfügen\t",
"DE.Views.Toolbar.textInsTextArt": "Text Art einfügen",
"DE.Views.Toolbar.textInText": "Im Text",
"DE.Views.Toolbar.textItalic": "Kursiv",
"DE.Views.Toolbar.textLandscape": "Querformat",
@ -1553,6 +1595,11 @@
"DE.Views.Toolbar.textSubscript": "Tiefgestellt",
"DE.Views.Toolbar.textSuperscript": "Hochgestellt",
"DE.Views.Toolbar.textSurface": "Oberfläche",
"DE.Views.Toolbar.textTabFile": "Datei",
"DE.Views.Toolbar.textTabHome": "Startseite",
"DE.Views.Toolbar.textTabInsert": "Einfügen",
"DE.Views.Toolbar.textTabLayout": "Layout",
"DE.Views.Toolbar.textTabReview": "Review",
"DE.Views.Toolbar.textTitleError": "Fehler",
"DE.Views.Toolbar.textToCurrent": "An aktueller Position",
"DE.Views.Toolbar.textTop": "Oben: ",
@ -1579,6 +1626,9 @@
"DE.Views.Toolbar.tipFontSize": "Schriftgrad",
"DE.Views.Toolbar.tipHAligh": "Horizontale Ausrichtung",
"DE.Views.Toolbar.tipHighlightColor": "Texthervorhebungsfarbe",
"DE.Views.Toolbar.tipImgAlign": "Objekte ausrichten",
"DE.Views.Toolbar.tipImgGroup": "Objekte gruppieren",
"DE.Views.Toolbar.tipImgWrapping": "Textumbruch",
"DE.Views.Toolbar.tipIncFont": "Schriftart vergrößern\n ",
"DE.Views.Toolbar.tipIncPrLeft": "Einzug vergrößern",
"DE.Views.Toolbar.tipInsertChart": "Diagramm einfügen",
@ -1589,14 +1639,13 @@
"DE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
"DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
"DE.Views.Toolbar.tipInsertText": "Text einfügen",
"DE.Views.Toolbar.tipInsertTextArt": "TextArt einfügen",
"DE.Views.Toolbar.tipLineSpace": "Zeilenabstand",
"DE.Views.Toolbar.tipMailRecepients": "Serienbrief",
"DE.Views.Toolbar.tipMarkers": "Aufzählung",
"DE.Views.Toolbar.tipMultilevels": "Gliederung",
"DE.Views.Toolbar.tipNewDocument": "Neues Dokument",
"DE.Views.Toolbar.tipNotes": "Fußnoten",
"DE.Views.Toolbar.tipNumbers": "Nummerierung",
"DE.Views.Toolbar.tipOpenDocument": "Dokument öffnen",
"DE.Views.Toolbar.tipPageBreak": "Seiten- oder Abschnittsumbruch einfügen",
"DE.Views.Toolbar.tipPageMargins": "Seitenränder\t",
"DE.Views.Toolbar.tipPageOrient": "Seitenausrichtung",
@ -1608,6 +1657,8 @@
"DE.Views.Toolbar.tipRedo": "Wiederholen",
"DE.Views.Toolbar.tipSave": "Speichern",
"DE.Views.Toolbar.tipSaveCoauth": "Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.",
"DE.Views.Toolbar.tipSendBackward": "Eine Ebene nach hinten",
"DE.Views.Toolbar.tipSendForward": "Eine Ebene nach vorne",
"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.tipUndo": "Rückgängig machen",

View file

@ -183,30 +183,32 @@
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Protected File",
"Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Loading",
"Common.Views.Plugins.textStart": "Start",
"Common.Views.Plugins.textStop": "Stop",
"Common.Views.RenameDialog.cancelButtonText": "Cancel",
"Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "File name",
"Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ",
"Common.Views.ReviewChanges.hintNext": "To Next Change",
"Common.Views.ReviewChanges.hintPrev": "To Previous Change",
"Common.Views.ReviewChanges.tipReview": "Review",
"Common.Views.ReviewChanges.tipReview": "Track Changes",
"Common.Views.ReviewChanges.tipSetDocLang": "Set Document Language",
"Common.Views.ReviewChanges.tipSetSpelling": "Spell checking",
"Common.Views.ReviewChanges.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Change",
"Common.Views.ReviewChanges.txtAcceptChanges": "Accept Changes",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Change",
"Common.Views.ReviewChanges.txtClose": "Close",
"Common.Views.ReviewChanges.txtDocLang": "Language",
"Common.Views.ReviewChanges.txtNext": "Next",
"Common.Views.ReviewChanges.txtPrev": "Previous",
"Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Change",
"Common.Views.ReviewChanges.txtRejectChanges": "Reject Changes",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Change",
"Common.Views.ReviewChanges.txtSpelling": "Spell checking",
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
"Common.Views.ReviewChangesDialog.textTitle": "Review Changes",
@ -354,7 +356,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.tipReview": "Review",
"DE.Controllers.Statusbar.tipReview": "Track Changes",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the system fonts, the saved font will be used when it is available.<br>Do you want to continue?",
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Do you want to delete all footnotes?",
@ -934,7 +936,7 @@
"DE.Views.DropcapSettingsAdvanced.textTop": "Top",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Width",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Font Name",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Font",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "No borders",
"DE.Views.FileMenu.btnBackCaption": "Go to Documents",
"DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
@ -1522,6 +1524,7 @@
"DE.Views.Toolbar.capImgForward": "Move forward",
"DE.Views.Toolbar.capImgGroup": "Group",
"DE.Views.Toolbar.capImgWrapping": "Wrapping",
"DE.Views.Toolbar.capBtnComment": "Comment",
"DE.Views.Toolbar.mniCustomTable": "Insert Custom Table",
"DE.Views.Toolbar.mniDelFootnote": "Delete All Footnotes",
"DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings",
@ -1621,7 +1624,7 @@
"DE.Views.Toolbar.tipDropCap": "Insert Drop Cap",
"DE.Views.Toolbar.tipEditHeader": "Edit Header or Footer",
"DE.Views.Toolbar.tipFontColor": "Font Color",
"DE.Views.Toolbar.tipFontName": "Font Name",
"DE.Views.Toolbar.tipFontName": "Font",
"DE.Views.Toolbar.tipFontSize": "Font Size",
"DE.Views.Toolbar.tipHAligh": "Horizontal Align",
"DE.Views.Toolbar.tipHighlightColor": "Highlight Color",

View file

@ -121,6 +121,7 @@
"Common.Views.Comments.textComments": "Commenti",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Inserisci il commento qui",
"Common.Views.Comments.textHintAddComment": "Aggiungi commento",
"Common.Views.Comments.textOpenAgain": "Apri di nuovo",
"Common.Views.Comments.textReply": "Rispondi",
"Common.Views.Comments.textResolve": "Chiudi",
@ -139,8 +140,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Close",
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
"Common.Views.Header.openNewTabText": "Open in New Tab",
"Common.Views.Header.labelCoUsersDescr": "È in corso la modifica del documento da parte di più utenti.",
"Common.Views.Header.textBack": "Va' ai Documenti",
"Common.Views.Header.textSaveBegin": "Salvataggio in corso...",
"Common.Views.Header.textSaveChanged": "Modificato",
"Common.Views.Header.textSaveEnd": "Tutte le modifiche sono state salvate",
"Common.Views.Header.textSaveExpander": "Tutte le modifiche sono state salvate",
"Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento",
"Common.Views.Header.tipDownload": "Scarica file",
"Common.Views.Header.tipGoEdit": "Modifica il file corrente",
"Common.Views.Header.tipPrint": "Stampa file",
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
"Common.Views.Header.txtRename": "Rinomina",
"Common.Views.History.textCloseHistory": "Chiudi cronologia",
"Common.Views.History.textHide": "Riduci",
@ -161,6 +172,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Il valore minimo di questo campo è {0}.",
"Common.Views.InsertTableDialog.txtRows": "Numero di righe",
"Common.Views.InsertTableDialog.txtTitle": "Dimensioni tabella",
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividi cella",
"Common.Views.LanguageDialog.btnCancel": "Annulla",
"Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento",
@ -171,6 +183,7 @@
"Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1",
"Common.Views.OpenDialog.txtTitleProtected": "File protetto",
"Common.Views.PluginDlg.textLoading": "Caricamento",
"Common.Views.Plugins.groupCaption": "Componenti Aggiuntivi",
"Common.Views.Plugins.strPlugins": "Plugin",
"Common.Views.Plugins.textLoading": "Caricamento",
"Common.Views.Plugins.textStart": "Avvio",
@ -178,15 +191,34 @@
"Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "Nome del file",
"Common.Views.RenameDialog.txtInvalidName": "Il nome del file non può contenere nessuno dei seguenti caratteri:",
"Common.Views.ReviewChanges.hintNext": "Alla modifica successiva",
"Common.Views.ReviewChanges.hintPrev": "Alla modifica precedente",
"Common.Views.ReviewChanges.tipReview": "Revisione",
"Common.Views.ReviewChanges.tipSetDocLang": "Imposta la lingua del documento",
"Common.Views.ReviewChanges.tipSetSpelling": "Controllo ortografia",
"Common.Views.ReviewChanges.txtAccept": "Accetta",
"Common.Views.ReviewChanges.txtAcceptAll": "Accetta tutte le modifiche",
"Common.Views.ReviewChanges.txtAcceptChanges": "Accetta modifiche",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accetta la modifica corrente",
"Common.Views.ReviewChanges.txtClose": "Close",
"Common.Views.ReviewChanges.txtNext": "Alla modifica successiva",
"Common.Views.ReviewChanges.txtPrev": "Alla modifica precedente",
"Common.Views.ReviewChanges.txtDocLang": "Lingua",
"Common.Views.ReviewChanges.txtNext": "Successivo",
"Common.Views.ReviewChanges.txtPrev": "Precedente",
"Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes",
"Common.Views.ReviewChanges.txtRejectChanges": "Rifiuta modifiche",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes",
"Common.Views.ReviewChanges.txtSpelling": "Controllo ortografia",
"Common.Views.ReviewChanges.txtTurnon": "Traccia cambiamenti",
"Common.Views.ReviewChangesDialog.textTitle": "Cambi di Revisione",
"Common.Views.ReviewChangesDialog.txtAccept": "Accetta",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accetta tutte le modifiche",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accetta la modifica corrente",
"Common.Views.ReviewChangesDialog.txtNext": "Alla modifica successiva",
"Common.Views.ReviewChangesDialog.txtPrev": "Alla modifica precedente",
"Common.Views.ReviewChangesDialog.txtReject": "Respingi",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Annulla tutte le modifiche",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Annulla la modifica attuale",
"DE.Controllers.LeftMenu.leavePageText": "Tutte le modifiche non salvate nel documento verranno perse.<br> Clicca \"Annulla\" e poi \"Salva\" per salvarle. Clicca \"OK\" per annullare tutte le modifiche non salvate.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Documento senza nome",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
@ -323,6 +355,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Ci stato negato il diritto alla modifica del file.",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.tipReview": "Revisione",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "Il carattere che vuoi salvare non è accessibile su questo dispositivo.<br>Lo stile di testo sarà visualizzato usando uno dei caratteri di sistema, il carattere salvato sarà usato quando accessibile.<br>Vuoi continuare?",
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Vuoi eliminare tutte le note a piè di pagina?",
@ -902,7 +935,7 @@
"DE.Views.DropcapSettingsAdvanced.textTop": "In alto",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Verticale",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Larghezza",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Nome tipo di carattere",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipo di carattere",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Nessun bordo",
"DE.Views.FileMenu.btnBackCaption": "Va' ai Documenti",
"DE.Views.FileMenu.btnCloseMenuCaption": "Chiudi il menù",
@ -1009,6 +1042,7 @@
"DE.Views.ImageSettings.textAdvanced": "Mostra impostazioni avanzate",
"DE.Views.ImageSettings.textEdit": "Modifica",
"DE.Views.ImageSettings.textEditObject": "Modifica oggetto",
"DE.Views.ImageSettings.textFitMargins": "Adatta al margine",
"DE.Views.ImageSettings.textFromFile": "Da file",
"DE.Views.ImageSettings.textFromUrl": "Da URL",
"DE.Views.ImageSettings.textHeight": "Altezza",
@ -1083,6 +1117,7 @@
"DE.Views.ImageSettingsAdvanced.textTop": "In alto",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Margine superiore",
"DE.Views.ImageSettingsAdvanced.textVertical": "Verticale",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Spessori e frecce",
"DE.Views.ImageSettingsAdvanced.textWidth": "Larghezza",
"DE.Views.ImageSettingsAdvanced.textWrap": "Stile di disposizione testo",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Dietro al testo",
@ -1095,7 +1130,6 @@
"DE.Views.LeftMenu.tipAbout": "Informazioni su",
"DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Commenti",
"DE.Views.LeftMenu.tipFile": "File",
"DE.Views.LeftMenu.tipPlugins": "Plugin",
"DE.Views.LeftMenu.tipSearch": "Ricerca",
"DE.Views.LeftMenu.tipSupport": "Feedback & Support",
@ -1314,23 +1348,12 @@
"DE.Views.ShapeSettings.txtWood": "Legno",
"DE.Views.Statusbar.goToPageText": "Va' alla pagina",
"DE.Views.Statusbar.pageIndexText": "Pagina {0} di {1}",
"DE.Views.Statusbar.textChangesPanel": "Pannello delle modifiche",
"DE.Views.Statusbar.textTrackChanges": "Track Changes",
"DE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"DE.Views.Statusbar.tipFitPage": "Adatta alla pagina",
"DE.Views.Statusbar.tipFitWidth": "Adatta alla larghezza",
"DE.Views.Statusbar.tipMoreUsers": "e %1 utenti.",
"DE.Views.Statusbar.tipReview": "Review",
"DE.Views.Statusbar.tipSetDocLang": "Imposta lingua del documento",
"DE.Views.Statusbar.tipSetLang": "Seleziona lingua del testo",
"DE.Views.Statusbar.tipSetSpelling": "Controllo ortografia",
"DE.Views.Statusbar.tipShowUsers": "Per vedere tutti gli utenti, clicca sull'icona di sotto.",
"DE.Views.Statusbar.tipUsers": "Il documento sta modificando da più utenti.",
"DE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"DE.Views.Statusbar.tipZoomFactor": "Ingrandimento",
"DE.Views.Statusbar.tipZoomIn": "Zoom avanti",
"DE.Views.Statusbar.tipZoomOut": "Zoom indietro",
"DE.Views.Statusbar.txAccessRights": "Modifica diritti di accesso",
"DE.Views.Statusbar.txtPageNumInvalid": "Numero pagina non valido",
"DE.Views.StyleTitleDialog.textHeader": "Create New Style",
"DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style",
@ -1479,6 +1502,27 @@
"DE.Views.TextArtSettings.textTemplate": "Template",
"DE.Views.TextArtSettings.textTransform": "Transform",
"DE.Views.TextArtSettings.txtNoBorders": "No Line",
"DE.Views.Toolbar.capBtnColumns": "Colonne",
"DE.Views.Toolbar.capBtnInsChart": "Grafico",
"DE.Views.Toolbar.capBtnInsDropcap": "Capolettera",
"DE.Views.Toolbar.capBtnInsEquation": "Equazione",
"DE.Views.Toolbar.capBtnInsFootnote": "Note a piè di pagina",
"DE.Views.Toolbar.capBtnInsHeader": "Inntestazioni/Piè di pagina",
"DE.Views.Toolbar.capBtnInsImage": "Foto",
"DE.Views.Toolbar.capBtnInsLink": "Collegamento ipertestuale",
"DE.Views.Toolbar.capBtnInsPagebreak": "Interruzione di pagina",
"DE.Views.Toolbar.capBtnInsShape": "Forma",
"DE.Views.Toolbar.capBtnInsTable": "Tabella",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Testo",
"DE.Views.Toolbar.capBtnMargins": "Margini",
"DE.Views.Toolbar.capBtnPageOrient": "Orientamento",
"DE.Views.Toolbar.capBtnPageSize": "Dimensione",
"DE.Views.Toolbar.capImgAlign": "Allinea",
"DE.Views.Toolbar.capImgBackward": "Porta indietro",
"DE.Views.Toolbar.capImgForward": "Porta avanti",
"DE.Views.Toolbar.capImgGroup": "Gruppo",
"DE.Views.Toolbar.capImgWrapping": "Disposizione",
"DE.Views.Toolbar.mniCustomTable": "Inserisci tabella personalizzata",
"DE.Views.Toolbar.mniDelFootnote": "Elimina tutte le note a piè di pagina",
"DE.Views.Toolbar.mniEditDropCap": "Impostazioni capolettera",
@ -1519,8 +1563,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Inserisci numero di pagina",
"DE.Views.Toolbar.textInsPageBreak": "Inserisci interruzione di pagina",
"DE.Views.Toolbar.textInsSectionBreak": "Inserisci interruzione di sezione",
"DE.Views.Toolbar.textInsText": "Inserisci casella di testo",
"DE.Views.Toolbar.textInsTextArt": "Inserisci Text Art",
"DE.Views.Toolbar.textInText": "Nel testo",
"DE.Views.Toolbar.textItalic": "Corsivo",
"DE.Views.Toolbar.textLandscape": "Orizzontale",
@ -1553,6 +1595,11 @@
"DE.Views.Toolbar.textSubscript": "Pedice",
"DE.Views.Toolbar.textSuperscript": "Apice",
"DE.Views.Toolbar.textSurface": "Superficie",
"DE.Views.Toolbar.textTabFile": "File",
"DE.Views.Toolbar.textTabHome": "Home",
"DE.Views.Toolbar.textTabInsert": "Inserisci",
"DE.Views.Toolbar.textTabLayout": "Layout di Pagina",
"DE.Views.Toolbar.textTabReview": "Revisione",
"DE.Views.Toolbar.textTitleError": "Errore",
"DE.Views.Toolbar.textToCurrent": "Alla posizione corrente",
"DE.Views.Toolbar.textTop": "Top: ",
@ -1575,10 +1622,13 @@
"DE.Views.Toolbar.tipDropCap": "Inserisci capolettera",
"DE.Views.Toolbar.tipEditHeader": "Modifica intestazione o piè di pagina",
"DE.Views.Toolbar.tipFontColor": "Colore caratteri",
"DE.Views.Toolbar.tipFontName": "Nome tipo di carattere",
"DE.Views.Toolbar.tipFontName": "Tipo di carattere",
"DE.Views.Toolbar.tipFontSize": "Dimensione carattere",
"DE.Views.Toolbar.tipHAligh": "Allineamento orizzontale",
"DE.Views.Toolbar.tipHighlightColor": "Colore evidenziatore",
"DE.Views.Toolbar.tipImgAlign": "Allinea Oggetti",
"DE.Views.Toolbar.tipImgGroup": "Raggruppa oggetti",
"DE.Views.Toolbar.tipImgWrapping": "Disponi testo",
"DE.Views.Toolbar.tipIncFont": "Aumenta dimensione caratteri ",
"DE.Views.Toolbar.tipIncPrLeft": "Aumenta rientro",
"DE.Views.Toolbar.tipInsertChart": "Inserisci grafico",
@ -1589,14 +1639,13 @@
"DE.Views.Toolbar.tipInsertShape": "Inserisci forma",
"DE.Views.Toolbar.tipInsertTable": "Inserisci tabella",
"DE.Views.Toolbar.tipInsertText": "Inserisci testo",
"DE.Views.Toolbar.tipInsertTextArt": "Inserisci Text Art",
"DE.Views.Toolbar.tipLineSpace": "Interlinea tra i paragrafi",
"DE.Views.Toolbar.tipMailRecepients": "Unione della Corrispondenza",
"DE.Views.Toolbar.tipMarkers": "Elenchi puntati",
"DE.Views.Toolbar.tipMultilevels": "Struttura",
"DE.Views.Toolbar.tipNewDocument": "Nuovo documento",
"DE.Views.Toolbar.tipNotes": "Note a piè di pagina",
"DE.Views.Toolbar.tipNumbers": "Elenchi numerati",
"DE.Views.Toolbar.tipOpenDocument": "Apri documento",
"DE.Views.Toolbar.tipPageBreak": "Inserisci interruzione di pagina o di sezione",
"DE.Views.Toolbar.tipPageMargins": "Page Margins",
"DE.Views.Toolbar.tipPageOrient": "Orientamento pagina",
@ -1608,6 +1657,8 @@
"DE.Views.Toolbar.tipRedo": "Ripristina",
"DE.Views.Toolbar.tipSave": "Salva",
"DE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.",
"DE.Views.Toolbar.tipSendBackward": "Porta indietro",
"DE.Views.Toolbar.tipSendForward": "Porta avanti",
"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.tipUndo": "Annulla",

View file

@ -121,6 +121,7 @@
"Common.Views.Comments.textComments": "Комментарии",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Введите здесь свой комментарий",
"Common.Views.Comments.textHintAddComment": "Добавить комментарий",
"Common.Views.Comments.textOpenAgain": "Открыть снова",
"Common.Views.Comments.textReply": "Ответить",
"Common.Views.Comments.textResolve": "Решить",
@ -139,8 +140,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Закрыть",
"Common.Views.ExternalMergeEditor.textSave": "Сохранить и выйти",
"Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния",
"Common.Views.Header.openNewTabText": "Открыть в новой вкладке",
"Common.Views.Header.labelCoUsersDescr": "Документ редактируется несколькими пользователями.",
"Common.Views.Header.textBack": "Перейти к Документам",
"Common.Views.Header.textSaveBegin": "Сохранение...",
"Common.Views.Header.textSaveChanged": "Изменен",
"Common.Views.Header.textSaveEnd": "Все изменения сохранены",
"Common.Views.Header.textSaveExpander": "Все изменения сохранены",
"Common.Views.Header.tipAccessRights": "Управление правами доступа к документу",
"Common.Views.Header.tipDownload": "Скачать файл",
"Common.Views.Header.tipGoEdit": "Редактировать текущий файл",
"Common.Views.Header.tipPrint": "Напечатать файл",
"Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
"Common.Views.Header.txtAccessRights": "Изменить права доступа",
"Common.Views.Header.txtRename": "Переименовать",
"Common.Views.History.textCloseHistory": "Закрыть историю",
"Common.Views.History.textHide": "Свернуть",
@ -161,6 +172,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Минимальное значение для этого поля - {0}.",
"Common.Views.InsertTableDialog.txtRows": "Количество строк",
"Common.Views.InsertTableDialog.txtTitle": "Размер таблицы",
"Common.Views.InsertTableDialog.txtTitleSplit": "Разделить ячейку",
"Common.Views.LanguageDialog.btnCancel": "Отмена",
"Common.Views.LanguageDialog.btnOk": "Ок",
"Common.Views.LanguageDialog.labelSelect": "Выбрать язык документа",
@ -171,22 +183,43 @@
"Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1",
"Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл",
"Common.Views.PluginDlg.textLoading": "Загрузка",
"Common.Views.Plugins.strPlugins": "Дополнения",
"Common.Views.Plugins.groupCaption": "Плагины",
"Common.Views.Plugins.strPlugins": "Плагины",
"Common.Views.Plugins.textLoading": "Загрузка",
"Common.Views.Plugins.textStart": "Запустить",
"Common.Views.Plugins.textStop": "Остановить",
"Common.Views.RenameDialog.cancelButtonText": "Отмена",
"Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "Имя файла",
"Common.Views.RenameDialog.txtInvalidName": "Имя файла не должно содержать следующих символов: ",
"Common.Views.ReviewChanges.hintNext": "К следующему изменению",
"Common.Views.ReviewChanges.hintPrev": "К предыдущему изменению",
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
"Common.Views.ReviewChanges.tipSetDocLang": "Задать язык документа",
"Common.Views.ReviewChanges.tipSetSpelling": "Проверка орфографии",
"Common.Views.ReviewChanges.txtAccept": "Принять",
"Common.Views.ReviewChanges.txtAcceptAll": "Принять все изменения",
"Common.Views.ReviewChanges.txtAcceptChanges": "Принять изменения",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Принять текущее изменение",
"Common.Views.ReviewChanges.txtClose": "Закрыть",
"Common.Views.ReviewChanges.txtNext": "К следующему изменению",
"Common.Views.ReviewChanges.txtPrev": "К предыдущему изменению",
"Common.Views.ReviewChanges.txtDocLang": "Язык",
"Common.Views.ReviewChanges.txtNext": "Далее",
"Common.Views.ReviewChanges.txtPrev": "Назад",
"Common.Views.ReviewChanges.txtReject": "Отклонить",
"Common.Views.ReviewChanges.txtRejectAll": "Отклонить все изменения",
"Common.Views.ReviewChanges.txtRejectChanges": "Отклонить изменения",
"Common.Views.ReviewChanges.txtRejectCurrent": "Отклонить текущее изменение",
"Common.Views.ReviewChanges.txtSpelling": "Проверка орфографии",
"Common.Views.ReviewChanges.txtTurnon": "Исправления",
"Common.Views.ReviewChangesDialog.textTitle": "Просмотр изменений",
"Common.Views.ReviewChangesDialog.txtAccept": "Принять",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Принять все изменения",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Принять текущее изменение",
"Common.Views.ReviewChangesDialog.txtNext": "К следующему изменению",
"Common.Views.ReviewChangesDialog.txtPrev": "К предыдущему изменению",
"Common.Views.ReviewChangesDialog.txtReject": "Отклонить",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Отклонить все изменения",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Отклонить текущее изменение",
"DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны.<br> Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
@ -323,6 +356,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"DE.Controllers.Statusbar.textHasChanges": "Отслежены новые изменения",
"DE.Controllers.Statusbar.textTrackChanges": "Документ открыт при включенном режиме отслеживания изменений",
"DE.Controllers.Statusbar.tipReview": "Отслеживать изменения",
"DE.Controllers.Statusbar.zoomText": "Масштаб {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "Шрифт, который вы хотите сохранить, недоступен на этом устройстве.<br>Стиль текста будет отображаться с помощью одного из системных шрифтов. Сохраненный шрифт будет использоваться, когда он станет доступен.<br>Вы хотите продолжить?",
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Вы хотите удалить все сноски?",
@ -902,7 +936,7 @@
"DE.Views.DropcapSettingsAdvanced.textTop": "Сверху",
"DE.Views.DropcapSettingsAdvanced.textVertical": "По вертикали",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Ширина",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Название шрифта",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Шрифт",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Без границ",
"DE.Views.FileMenu.btnBackCaption": "Перейти к Документам",
"DE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню",
@ -1009,6 +1043,7 @@
"DE.Views.ImageSettings.textAdvanced": "Дополнительные параметры",
"DE.Views.ImageSettings.textEdit": "Редактировать",
"DE.Views.ImageSettings.textEditObject": "Редактировать объект",
"DE.Views.ImageSettings.textFitMargins": "Вписать",
"DE.Views.ImageSettings.textFromFile": "Из файла",
"DE.Views.ImageSettings.textFromUrl": "По URL",
"DE.Views.ImageSettings.textHeight": "Высота",
@ -1083,6 +1118,7 @@
"DE.Views.ImageSettingsAdvanced.textTop": "Сверху",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Верхнего поля",
"DE.Views.ImageSettingsAdvanced.textVertical": "По вертикали",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Линии и стрелки",
"DE.Views.ImageSettingsAdvanced.textWidth": "Ширина",
"DE.Views.ImageSettingsAdvanced.textWrap": "Стиль обтекания",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "За текстом",
@ -1095,8 +1131,7 @@
"DE.Views.LeftMenu.tipAbout": "О программе",
"DE.Views.LeftMenu.tipChat": "Чат",
"DE.Views.LeftMenu.tipComments": "Комментарии",
"DE.Views.LeftMenu.tipFile": "Файл",
"DE.Views.LeftMenu.tipPlugins": "Дополнения",
"DE.Views.LeftMenu.tipPlugins": "Плагины",
"DE.Views.LeftMenu.tipSearch": "Поиск",
"DE.Views.LeftMenu.tipSupport": "Обратная связь и поддержка",
"DE.Views.LeftMenu.tipTitles": "Заголовки",
@ -1314,23 +1349,12 @@
"DE.Views.ShapeSettings.txtWood": "Дерево",
"DE.Views.Statusbar.goToPageText": "Перейти на страницу",
"DE.Views.Statusbar.pageIndexText": "Страница {0} из {1}",
"DE.Views.Statusbar.textChangesPanel": "Панель изменений",
"DE.Views.Statusbar.textTrackChanges": "Отслеживание изменений",
"DE.Views.Statusbar.tipAccessRights": "Управление правами доступа к документу",
"DE.Views.Statusbar.tipFitPage": "По размеру страницы",
"DE.Views.Statusbar.tipFitWidth": "По ширине",
"DE.Views.Statusbar.tipMoreUsers": "и %1 пользователей.",
"DE.Views.Statusbar.tipReview": "Рецензирование",
"DE.Views.Statusbar.tipSetDocLang": "Задать язык документа",
"DE.Views.Statusbar.tipSetLang": "Выбрать язык текста",
"DE.Views.Statusbar.tipSetSpelling": "Проверка орфографии",
"DE.Views.Statusbar.tipShowUsers": "Чтобы увидеть всех пользователей, нажмите на значок ниже.",
"DE.Views.Statusbar.tipUsers": "Документ редактируется несколькими пользователями.",
"DE.Views.Statusbar.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
"DE.Views.Statusbar.tipZoomFactor": "Увеличение",
"DE.Views.Statusbar.tipZoomFactor": "Масштаб",
"DE.Views.Statusbar.tipZoomIn": "Увеличить",
"DE.Views.Statusbar.tipZoomOut": "Уменьшить",
"DE.Views.Statusbar.txAccessRights": "Изменить права доступа",
"DE.Views.Statusbar.txtPageNumInvalid": "Неправильный номер страницы",
"DE.Views.StyleTitleDialog.textHeader": "Создание нового стиля",
"DE.Views.StyleTitleDialog.textNextStyle": "Стиль следующего абзаца",
@ -1479,6 +1503,28 @@
"DE.Views.TextArtSettings.textTemplate": "Шаблон",
"DE.Views.TextArtSettings.textTransform": "Трансформация",
"DE.Views.TextArtSettings.txtNoBorders": "Без обводки",
"DE.Views.Toolbar.capBtnColumns": "Колонки",
"DE.Views.Toolbar.capBtnComment": "Комментарий",
"DE.Views.Toolbar.capBtnInsChart": "Диаграмма",
"DE.Views.Toolbar.capBtnInsDropcap": "Буквица",
"DE.Views.Toolbar.capBtnInsEquation": "Формула",
"DE.Views.Toolbar.capBtnInsFootnote": "Сноска",
"DE.Views.Toolbar.capBtnInsHeader": "Колонтитулы",
"DE.Views.Toolbar.capBtnInsImage": "Изображение",
"DE.Views.Toolbar.capBtnInsLink": "Гиперссылка",
"DE.Views.Toolbar.capBtnInsPagebreak": "Разрывы",
"DE.Views.Toolbar.capBtnInsShape": "Фигура",
"DE.Views.Toolbar.capBtnInsTable": "Таблица",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Текст",
"DE.Views.Toolbar.capBtnMargins": "Поля",
"DE.Views.Toolbar.capBtnPageOrient": "Ориентация",
"DE.Views.Toolbar.capBtnPageSize": "Размер",
"DE.Views.Toolbar.capImgAlign": "Выравнивание",
"DE.Views.Toolbar.capImgBackward": "Перенести назад",
"DE.Views.Toolbar.capImgForward": "Перенести вперед",
"DE.Views.Toolbar.capImgGroup": "Группировка",
"DE.Views.Toolbar.capImgWrapping": "Обтекание",
"DE.Views.Toolbar.mniCustomTable": "Пользовательская таблица",
"DE.Views.Toolbar.mniDelFootnote": "Удалить все сноски",
"DE.Views.Toolbar.mniEditDropCap": "Параметры буквицы",
@ -1504,7 +1550,7 @@
"DE.Views.Toolbar.textColumnsRight": "Справа",
"DE.Views.Toolbar.textColumnsThree": "Три",
"DE.Views.Toolbar.textColumnsTwo": "Две",
"DE.Views.Toolbar.textCompactView": "Компактная панель инструментов",
"DE.Views.Toolbar.textCompactView": "Скрыть панель инструментов",
"DE.Views.Toolbar.textContPage": "На текущей странице",
"DE.Views.Toolbar.textEvenPage": "С четной страницы",
"DE.Views.Toolbar.textFitPage": "По размеру страницы",
@ -1519,8 +1565,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Вставить номер страницы",
"DE.Views.Toolbar.textInsPageBreak": "Вставить разрыв страницы",
"DE.Views.Toolbar.textInsSectionBreak": "Вставить разрыв раздела",
"DE.Views.Toolbar.textInsText": "Вставить надпись",
"DE.Views.Toolbar.textInsTextArt": "Вставить объект Text Art",
"DE.Views.Toolbar.textInText": "В тексте",
"DE.Views.Toolbar.textItalic": "Курсив",
"DE.Views.Toolbar.textLandscape": "Альбомная",
@ -1553,6 +1597,11 @@
"DE.Views.Toolbar.textSubscript": "Подстрочные знаки",
"DE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
"DE.Views.Toolbar.textSurface": "Поверхность",
"DE.Views.Toolbar.textTabFile": "Файл",
"DE.Views.Toolbar.textTabHome": "Главная",
"DE.Views.Toolbar.textTabInsert": "Вставка",
"DE.Views.Toolbar.textTabLayout": "Макет",
"DE.Views.Toolbar.textTabReview": "Рецензирование",
"DE.Views.Toolbar.textTitleError": "Ошибка",
"DE.Views.Toolbar.textToCurrent": "В текущей позиции",
"DE.Views.Toolbar.textTop": "Верхнее: ",
@ -1575,10 +1624,13 @@
"DE.Views.Toolbar.tipDropCap": "Вставить буквицу",
"DE.Views.Toolbar.tipEditHeader": "Изменить колонтитулы",
"DE.Views.Toolbar.tipFontColor": "Цвет шрифта",
"DE.Views.Toolbar.tipFontName": "Название шрифта",
"DE.Views.Toolbar.tipFontName": "Шрифт",
"DE.Views.Toolbar.tipFontSize": "Размер шрифта",
"DE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание",
"DE.Views.Toolbar.tipHighlightColor": "Цвет выделения",
"DE.Views.Toolbar.tipImgAlign": "Выровнять объекты",
"DE.Views.Toolbar.tipImgGroup": "Сгруппировать объекты",
"DE.Views.Toolbar.tipImgWrapping": "Обтекание текстом",
"DE.Views.Toolbar.tipIncFont": "Увеличить размер шрифта",
"DE.Views.Toolbar.tipIncPrLeft": "Увеличить отступ",
"DE.Views.Toolbar.tipInsertChart": "Вставить диаграмму",
@ -1589,14 +1641,13 @@
"DE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
"DE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
"DE.Views.Toolbar.tipInsertText": "Вставить текст",
"DE.Views.Toolbar.tipInsertTextArt": "Вставить объект Text Art",
"DE.Views.Toolbar.tipLineSpace": "Междустрочный интервал в абзацах",
"DE.Views.Toolbar.tipMailRecepients": "Слияние",
"DE.Views.Toolbar.tipMarkers": "Маркированный список",
"DE.Views.Toolbar.tipMultilevels": "Многоуровневый список",
"DE.Views.Toolbar.tipNewDocument": "Новый документ",
"DE.Views.Toolbar.tipNotes": "Сноски",
"DE.Views.Toolbar.tipNotes": "Вставить или редактировать сноски",
"DE.Views.Toolbar.tipNumbers": "Нумерованный список",
"DE.Views.Toolbar.tipOpenDocument": "Открыть документ",
"DE.Views.Toolbar.tipPageBreak": "Вставить разрыв страницы или раздела",
"DE.Views.Toolbar.tipPageMargins": "Поля страницы",
"DE.Views.Toolbar.tipPageOrient": "Ориентация страницы",
@ -1608,6 +1659,8 @@
"DE.Views.Toolbar.tipRedo": "Повторить",
"DE.Views.Toolbar.tipSave": "Сохранить",
"DE.Views.Toolbar.tipSaveCoauth": "Сохраните свои изменения, чтобы другие пользователи их увидели.",
"DE.Views.Toolbar.tipSendBackward": "Переместить назад",
"DE.Views.Toolbar.tipSendForward": "Переместить вперед",
"DE.Views.Toolbar.tipShowHiddenChars": "Непечатаемые символы",
"DE.Views.Toolbar.tipSynchronize": "Документ изменен другим пользователем. Нажмите, чтобы сохранить свои изменения и загрузить обновления.",
"DE.Views.Toolbar.tipUndo": "Отменить",

View file

@ -12,7 +12,7 @@
"Common.Controllers.ExternalMergeEditor.warningTitle": "Upozornenie",
"Common.Controllers.History.notcriticalErrorTitle": "Upozornenie",
"Common.Controllers.ReviewChanges.textAtLeast": "najmenej",
"Common.Controllers.ReviewChanges.textAuto": "automaticky/automatický",
"Common.Controllers.ReviewChanges.textAuto": "Automaticky",
"Common.Controllers.ReviewChanges.textBaseline": "Základná linka/základný\n",
"Common.Controllers.ReviewChanges.textBold": "Tučné",
"Common.Controllers.ReviewChanges.textBreakBefore": "Zlom strany pred",
@ -81,7 +81,7 @@
"Common.UI.SearchDialog.textTitle": "Nájsť a nahradiť",
"Common.UI.SearchDialog.textTitle2": "Nájsť",
"Common.UI.SearchDialog.textWholeWords": "Len celé slová\n\n",
"Common.UI.SearchDialog.txtBtnHideReplace": "Skryť náhradu/zámenu",
"Common.UI.SearchDialog.txtBtnHideReplace": "Skryť náhradu",
"Common.UI.SearchDialog.txtBtnReplace": "Nahradiť",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko",
"Common.UI.SynchronizeTip.textDontShow": "Neukazovať túto správu znova",
@ -93,7 +93,7 @@
"Common.UI.Window.noButtonText": "Nie",
"Common.UI.Window.okButtonText": "OK",
"Common.UI.Window.textConfirmation": "Potvrdenie",
"Common.UI.Window.textDontShow": " Neukazovať túto správu znova",
"Common.UI.Window.textDontShow": "Neukazovať túto správu znova",
"Common.UI.Window.textError": "Chyba",
"Common.UI.Window.textInformation": "Informácia",
"Common.UI.Window.textWarning": "Upozornenie",
@ -125,9 +125,9 @@
"Common.Views.Comments.textReply": "Odpovedať",
"Common.Views.Comments.textResolve": "Vyriešiť",
"Common.Views.Comments.textResolved": "Vyriešené",
"Common.Views.CopyWarningDialog.textDontShow": " Neukazovať túto správu znova",
"Common.Views.CopyWarningDialog.textMsg": "Kopírujte, vystrihujte a priliepajte akcie pomocou tlačidiel panela nástrojov editora a akcie kontextovej ponuky sa vykonajú iba v rámci tejto karty editora.<br><br>Ak chcete kopírovať alebo priliepať do alebo z aplikácií mimo editora, použite nasledujúce klávesové skratky: \n",
"Common.Views.CopyWarningDialog.textTitle": "Kopírovať, vystrihnúť a prilepiť akcie",
"Common.Views.CopyWarningDialog.textDontShow": "Neukazovať túto správu znova",
"Common.Views.CopyWarningDialog.textMsg": "Kopírovať, vystrihovať a priliepať pomocou tlačidiel panela nástrojov editora a kontextovej ponuky sa vykonajú iba v rámci tejto karty editora.<br><br>Ak chcete kopírovať alebo priliepať do alebo z aplikácií mimo editora, použite nasledujúce klávesové skratky: ",
"Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť",
"Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie",
"Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie",
"Common.Views.CopyWarningDialog.textToPaste": "pre vloženie",
@ -139,8 +139,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Zatvoriť",
"Common.Views.ExternalMergeEditor.textSave": "Uložiť a Zavrieť",
"Common.Views.ExternalMergeEditor.textTitle": "Príjemcovia hromadnej korešpondencie\n\n",
"Common.Views.Header.openNewTabText": "Otvoriť na novej karte",
"Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.\n\n",
"Common.Views.Header.textBack": "Prejsť do Dokumentov",
"Common.Views.Header.textSaveBegin": "Ukladanie...",
"Common.Views.Header.textSaveChanged": "Modifikovaný",
"Common.Views.Header.textSaveEnd": "Všetky zmeny boli uložené",
"Common.Views.Header.textSaveExpander": "Všetky zmeny boli uložené",
"Common.Views.Header.tipAccessRights": "Spravovať prístupové práva k dokumentom",
"Common.Views.Header.tipDownload": "Stiahnuť súbor",
"Common.Views.Header.tipGoEdit": "Editovať aktuálny súbor",
"Common.Views.Header.tipPrint": "Vytlačiť súbor",
"Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom\n\n",
"Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva",
"Common.Views.Header.txtRename": "Premenovať",
"Common.Views.History.textCloseHistory": "Zavrieť históriu",
"Common.Views.History.textHide": "Stiahnuť/zbaliť/zvinúť",
@ -166,7 +176,7 @@
"Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu",
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
"Common.Views.OpenDialog.okButtonText": "OK",
"Common.Views.OpenDialog.txtEncoding": "Kódovanie/zakódovanie",
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
"Common.Views.OpenDialog.txtPassword": "Heslo",
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
"Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor",
@ -178,15 +188,32 @@
"Common.Views.RenameDialog.okButtonText": "OK",
"Common.Views.RenameDialog.textName": "Názov súboru",
"Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:\n\n",
"Common.Views.ReviewChanges.hintNext": "K ďalšej zmene\n\n",
"Common.Views.ReviewChanges.hintPrev": "K predošlej zmene",
"Common.Views.ReviewChanges.tipReview": "Prehľad",
"Common.Views.ReviewChanges.tipSetDocLang": "Nastaviť jazyk dokumentov",
"Common.Views.ReviewChanges.tipSetSpelling": "Kontrola pravopisu",
"Common.Views.ReviewChanges.txtAccept": "Akceptovať",
"Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Akceptovať aktuálnu zmenu",
"Common.Views.ReviewChanges.txtClose": "Zatvoriť",
"Common.Views.ReviewChanges.txtNext": "K ďalšej zmene",
"Common.Views.ReviewChanges.txtPrev": "K predchádzajúcej zmene\n\n",
"Common.Views.ReviewChanges.txtDocLang": "Jazyk",
"Common.Views.ReviewChanges.txtNext": "Nasledujúci",
"Common.Views.ReviewChanges.txtPrev": "Predchádzajúci",
"Common.Views.ReviewChanges.txtReject": "Odmietnuť",
"Common.Views.ReviewChanges.txtRejectAll": "Odmietnuť všetky zmeny",
"Common.Views.ReviewChanges.txtRejectCurrent": "Odmietnuť aktuálne zmeny",
"Common.Views.ReviewChanges.txtSpelling": "Kontrola pravopisu",
"Common.Views.ReviewChanges.txtTurnon": "Sledovať zmeny\n\n",
"Common.Views.ReviewChangesDialog.textTitle": "Skontrolovať zmeny\n\n",
"Common.Views.ReviewChangesDialog.txtAccept": "Prijať",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Akceptovať všetky zmeny",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Akceptovať aktuálnu zmenu",
"Common.Views.ReviewChangesDialog.txtNext": "K ďalšej zmene\n\n",
"Common.Views.ReviewChangesDialog.txtPrev": "K predošlej zmene",
"Common.Views.ReviewChangesDialog.txtReject": "Odmietnuť",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Odmietnuť všetky zmeny",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Odmietnuť aktuálnu zmenu",
"DE.Controllers.LeftMenu.leavePageText": "Všetky neuložené zmeny v tomto dokumente sa stratia. <br> Kliknutím na tlačidlo \"Zrušiť\" a potom na \"Uložiť\" ich uložíte. Kliknutím na \"OK\" zahodíte všetky neuložené zmeny.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaný dokument\n\n",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Upozornenie",
@ -323,6 +350,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.",
"DE.Controllers.Statusbar.textHasChanges": "Boli sledované nové zmeny\n\n",
"DE.Controllers.Statusbar.textTrackChanges": "Dokument je otvorený so zapnutým režimom sledovania zmien.\n\n",
"DE.Controllers.Statusbar.tipReview": "Prehľad",
"DE.Controllers.Statusbar.zoomText": "Priblíženie {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.<br>Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.<br>Chcete pokračovať?\n\n\n\n",
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Chcete odstrániť všetky poznámky pod čiarou?\n\n",
@ -339,7 +367,7 @@
"DE.Controllers.Toolbar.textMatrix": "Matice",
"DE.Controllers.Toolbar.textOperator": "Operátory",
"DE.Controllers.Toolbar.textRadical": "Odmocniny",
"DE.Controllers.Toolbar.textScript": "Skripty",
"DE.Controllers.Toolbar.textScript": "Mocniny",
"DE.Controllers.Toolbar.textSymbols": "Symboly",
"DE.Controllers.Toolbar.textWarning": "Upozornenie",
"DE.Controllers.Toolbar.txtAccent_Accent": "Dĺžeň",
@ -383,8 +411,8 @@
"DE.Controllers.Toolbar.txtBracket_Custom_3": "Zložený objekt",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Zložený objekt",
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov\n\n",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient\n\n",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient\n\n",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient",
"DE.Controllers.Toolbar.txtBracket_Line": "Zátvorky",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Zátvorka",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Zátvorka",
@ -439,7 +467,7 @@
"DE.Controllers.Toolbar.txtFunction_Csch": "Funkcia Hyperbolický kosekans",
"DE.Controllers.Toolbar.txtFunction_Custom_1": "Sínus theta ",
"DE.Controllers.Toolbar.txtFunction_Custom_2": "Kosínus 2x",
"DE.Controllers.Toolbar.txtFunction_Custom_3": "Tangentová rovnica\n\n",
"DE.Controllers.Toolbar.txtFunction_Custom_3": "Tangentová rovnica",
"DE.Controllers.Toolbar.txtFunction_Sec": "Funkcia sekans",
"DE.Controllers.Toolbar.txtFunction_Sech": "Funkcia hyperbolický sekans",
"DE.Controllers.Toolbar.txtFunction_Sin": "Funkcia sínus",
@ -508,9 +536,9 @@
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Zjednotenie",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Zjednotenie",
"DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Príklad limitu",
"DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximálny príklad\n\n",
"DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximálny príklad",
"DE.Controllers.Toolbar.txtLimitLog_Lim": "Limita",
"DE.Controllers.Toolbar.txtLimitLog_Ln": "Prirodzený logaritmus\n\n",
"DE.Controllers.Toolbar.txtLimitLog_Ln": "Prirodzený logaritmus",
"DE.Controllers.Toolbar.txtLimitLog_Log": "Logaritmus",
"DE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus",
"DE.Controllers.Toolbar.txtLimitLog_Max": "Maximum",
@ -559,7 +587,7 @@
"DE.Controllers.Toolbar.txtOperator_EqualsEquals": "Dvojité rovná sa",
"DE.Controllers.Toolbar.txtOperator_MinusEquals": "Mínus rovná sa",
"DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus rovná sa",
"DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Merať podľa\n\n",
"DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Merať podľa",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Odmocniny",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Odmocniny",
"DE.Controllers.Toolbar.txtRadicalRoot_2": "Druhá odmocnina so stupňom",
@ -664,7 +692,7 @@
"DE.Views.ChartSettings.textArea": "Plošný graf",
"DE.Views.ChartSettings.textBar": "Pruhový graf",
"DE.Views.ChartSettings.textChartType": "Zmeniť typ grafu",
"DE.Views.ChartSettings.textColumn": "Stĺpec/stĺpcový graf",
"DE.Views.ChartSettings.textColumn": "Stĺpec",
"DE.Views.ChartSettings.textEditData": "Upravovať dáta",
"DE.Views.ChartSettings.textHeight": "Výška",
"DE.Views.ChartSettings.textLine": "Čiara/líniový graf",
@ -680,8 +708,8 @@
"DE.Views.ChartSettings.textWrap": "Obtekanie textu",
"DE.Views.ChartSettings.txtBehind": "Za",
"DE.Views.ChartSettings.txtInFront": "vpredu",
"DE.Views.ChartSettings.txtInline": "V rade za sebou/vnútri riadku\n",
"DE.Views.ChartSettings.txtSquare": "Štvorec/druhá mocnina",
"DE.Views.ChartSettings.txtInline": "Zarovno s textom",
"DE.Views.ChartSettings.txtSquare": "Štvorec",
"DE.Views.ChartSettings.txtThrough": "Cez",
"DE.Views.ChartSettings.txtTight": "Tesný",
"DE.Views.ChartSettings.txtTitle": "Graf",
@ -705,13 +733,13 @@
"DE.Views.DocumentHolder.cellText": "Bunka",
"DE.Views.DocumentHolder.centerText": "Stred",
"DE.Views.DocumentHolder.chartText": "Pokročilé nastavenia grafu",
"DE.Views.DocumentHolder.columnText": "Stĺpec/stĺpcový graf",
"DE.Views.DocumentHolder.columnText": "Stĺpec",
"DE.Views.DocumentHolder.deleteColumnText": "Odstrániť stĺpec",
"DE.Views.DocumentHolder.deleteRowText": "Odstrániť riadok",
"DE.Views.DocumentHolder.deleteTableText": "Odstrániť tabuľku",
"DE.Views.DocumentHolder.deleteText": "Vymazať",
"DE.Views.DocumentHolder.direct270Text": "Otočiť text nahor\n",
"DE.Views.DocumentHolder.direct90Text": "Otočiť text nadol\n\n",
"DE.Views.DocumentHolder.direct270Text": "Otočiť text nahor",
"DE.Views.DocumentHolder.direct90Text": "Otočiť text nadol",
"DE.Views.DocumentHolder.directHText": "Vodorovný",
"DE.Views.DocumentHolder.directionText": "Smer textu",
"DE.Views.DocumentHolder.editChartText": "Upravovať dáta",
@ -821,7 +849,7 @@
"DE.Views.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru\n\n",
"DE.Views.DocumentHolder.txtIncreaseArg": "Zväčšiť veľkosť obsahu/argumentu",
"DE.Views.DocumentHolder.txtInFront": "vpredu",
"DE.Views.DocumentHolder.txtInline": "V rade za sebou/vnútri riadku\n",
"DE.Views.DocumentHolder.txtInline": "Zarovno s textom",
"DE.Views.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po\n\n",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred\n",
"DE.Views.DocumentHolder.txtInsertBreak": "Vložiť manuálny rozdeľovač",
@ -850,7 +878,7 @@
"DE.Views.DocumentHolder.txtShowOpenBracket": "Zobraziť začiatočné zátvorky",
"DE.Views.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka",
"DE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu\n",
"DE.Views.DocumentHolder.txtSquare": "Štvorec/druhá mocnina",
"DE.Views.DocumentHolder.txtSquare": "Štvorec",
"DE.Views.DocumentHolder.txtStretchBrackets": "Zložená zátvorka",
"DE.Views.DocumentHolder.txtThrough": "Cez",
"DE.Views.DocumentHolder.txtTight": "Tesný",
@ -867,14 +895,14 @@
"DE.Views.DropcapSettingsAdvanced.strMargins": "Okraje",
"DE.Views.DropcapSettingsAdvanced.textAlign": "Zarovnanie",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Najmenej\n\n",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Automaticky/automatický",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Automaticky",
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Farba pozadia",
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Farba orámovania",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Ak chcete vybrať orámovanie, kliknite na diagram alebo použite tlačidlá",
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Veľkosť orámovania",
"DE.Views.DropcapSettingsAdvanced.textBottom": "Dole",
"DE.Views.DropcapSettingsAdvanced.textCenter": "Stred",
"DE.Views.DropcapSettingsAdvanced.textColumn": "Stĺpec/stĺpcový graf",
"DE.Views.DropcapSettingsAdvanced.textColumn": "Stĺpec",
"DE.Views.DropcapSettingsAdvanced.textDistance": "Vzdialenosť od textu",
"DE.Views.DropcapSettingsAdvanced.textExact": "Presne",
"DE.Views.DropcapSettingsAdvanced.textFlow": "Obiehať rám",
@ -894,7 +922,7 @@
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Odsek",
"DE.Views.DropcapSettingsAdvanced.textParameters": "Parametre",
"DE.Views.DropcapSettingsAdvanced.textPosition": "Pozícia",
"DE.Views.DropcapSettingsAdvanced.textRelative": "Relatívny k/vzhľadom ku \n\n",
"DE.Views.DropcapSettingsAdvanced.textRelative": "vzhľadom ku \n\n",
"DE.Views.DropcapSettingsAdvanced.textRight": "Vpravo",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Výška v riadkoch",
"DE.Views.DropcapSettingsAdvanced.textTitle": "Iniciála - Pokročilé nastavenia",
@ -948,7 +976,7 @@
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Režim spoločnej úpravy",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz\n\n",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ",
"DE.Views.FileMenuPanels.Settings.strFast": "Rýchlo/rýchly",
"DE.Views.FileMenuPanels.Settings.strFast": "Rýchly",
"DE.Views.FileMenuPanels.Settings.strFontRender": "Náznak typu písma",
"DE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)\n\n",
"DE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy\n\n",
@ -972,7 +1000,7 @@
"DE.Views.FileMenuPanels.Settings.txtAll": "Zobraziť všetko",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Prispôsobiť na stranu",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Prispôsobiť do formátu",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Prispôsobiť na šírku",
"DE.Views.FileMenuPanels.Settings.txtInch": "Palec (miera 2,54 cm)\n",
"DE.Views.FileMenuPanels.Settings.txtInput": "Striedavý vstup",
"DE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný",
@ -1002,13 +1030,14 @@
"DE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok\n",
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Zobraziť",
"DE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Text rady na obrazovke",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Popis",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Odkaz na",
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n",
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
"DE.Views.ImageSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
"DE.Views.ImageSettings.textEdit": "Upraviť",
"DE.Views.ImageSettings.textEditObject": "Upraviť objekt\n\n",
"DE.Views.ImageSettings.textFitMargins": "Prispôsobiť na okraj\n\n",
"DE.Views.ImageSettings.textFromFile": "Zo súboru",
"DE.Views.ImageSettings.textFromUrl": "Z URL adresy ",
"DE.Views.ImageSettings.textHeight": "Výška",
@ -1019,8 +1048,8 @@
"DE.Views.ImageSettings.textWrap": "Obtekanie textu",
"DE.Views.ImageSettings.txtBehind": "Za",
"DE.Views.ImageSettings.txtInFront": "vpredu",
"DE.Views.ImageSettings.txtInline": "V rade za sebou/vnútri riadku\n",
"DE.Views.ImageSettings.txtSquare": "Štvorec/druhá mocnina",
"DE.Views.ImageSettings.txtInline": "Zarovno s textom",
"DE.Views.ImageSettings.txtSquare": "Štvorec",
"DE.Views.ImageSettings.txtThrough": "Cez",
"DE.Views.ImageSettings.txtTight": "Tesný",
"DE.Views.ImageSettings.txtTopAndBottom": "Hore a dole",
@ -1038,24 +1067,24 @@
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Veľkosť začiatku",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Štýl začiatku",
"DE.Views.ImageSettingsAdvanced.textBelow": "pod",
"DE.Views.ImageSettingsAdvanced.textBevel": "Šikmý sklon/strana, úprava okraja",
"DE.Views.ImageSettingsAdvanced.textBevel": "Skosenie",
"DE.Views.ImageSettingsAdvanced.textBottom": "Dole",
"DE.Views.ImageSettingsAdvanced.textBottomMargin": "Dolný okraj",
"DE.Views.ImageSettingsAdvanced.textBtnWrap": "Obtekanie textu",
"DE.Views.ImageSettingsAdvanced.textCapType": "Typ zakončenia\n",
"DE.Views.ImageSettingsAdvanced.textCenter": "Stred",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Symbol",
"DE.Views.ImageSettingsAdvanced.textColumn": "Stĺpec/stĺpcový graf",
"DE.Views.ImageSettingsAdvanced.textColumn": "Stĺpec",
"DE.Views.ImageSettingsAdvanced.textDistance": "Vzdialenosť od textu",
"DE.Views.ImageSettingsAdvanced.textEndSize": "Veľkosť konca",
"DE.Views.ImageSettingsAdvanced.textEndStyle": "Štýl konca",
"DE.Views.ImageSettingsAdvanced.textFlat": "Rovný/plochý",
"DE.Views.ImageSettingsAdvanced.textFlat": "Plochý",
"DE.Views.ImageSettingsAdvanced.textHeight": "Výška",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Vodorovný",
"DE.Views.ImageSettingsAdvanced.textJoinType": "Typ pripojenia\n\n",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n",
"DE.Views.ImageSettingsAdvanced.textLeft": "Vľavo",
"DE.Views.ImageSettingsAdvanced.textLeftMargin": "Ľavý okraj\n\n",
"DE.Views.ImageSettingsAdvanced.textLeftMargin": "Ľavý okraj",
"DE.Views.ImageSettingsAdvanced.textLine": "Čiara/líniový graf",
"DE.Views.ImageSettingsAdvanced.textLineStyle": "Štýl čiary\n\n",
"DE.Views.ImageSettingsAdvanced.textMargin": "Okraj",
@ -1068,15 +1097,15 @@
"DE.Views.ImageSettingsAdvanced.textParagraph": "Odsek",
"DE.Views.ImageSettingsAdvanced.textPosition": "Pozícia",
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Relatívna pozícia\n\n",
"DE.Views.ImageSettingsAdvanced.textRelative": "Relatívny k/vzhľadom ku \n\n",
"DE.Views.ImageSettingsAdvanced.textRelative": "vzhľadom ku \n\n",
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relatívny",
"DE.Views.ImageSettingsAdvanced.textRight": "Vpravo",
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Pravý okraj",
"DE.Views.ImageSettingsAdvanced.textRightOf": "Vpravo od\n\n",
"DE.Views.ImageSettingsAdvanced.textRound": "Kruh/dookola",
"DE.Views.ImageSettingsAdvanced.textRound": "Zaoblené",
"DE.Views.ImageSettingsAdvanced.textShape": "Nastavenia tvaru",
"DE.Views.ImageSettingsAdvanced.textSize": "Veľkosť",
"DE.Views.ImageSettingsAdvanced.textSquare": "Štvorec/druhá mocnina",
"DE.Views.ImageSettingsAdvanced.textSquare": "Štvorec",
"DE.Views.ImageSettingsAdvanced.textTitle": "Obrázok - Pokročilé nastavenia",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Graf - Pokročilé nastavenia",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Tvar - Pokročilé nastavenia",
@ -1087,15 +1116,14 @@
"DE.Views.ImageSettingsAdvanced.textWrap": "Obtekanie textu",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za",
"DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "vpredu",
"DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "V rade za sebou/vnútri riadku\n",
"DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Štvorec/druhá mocnina",
"DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Zarovno s textom",
"DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Štvorec",
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Cez",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tesný",
"DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Hore a dole",
"DE.Views.LeftMenu.tipAbout": "O aplikácii",
"DE.Views.LeftMenu.tipChat": "Rozhovor",
"DE.Views.LeftMenu.tipComments": "Komentáre",
"DE.Views.LeftMenu.tipFile": "Súbor",
"DE.Views.LeftMenu.tipPlugins": "Pluginy",
"DE.Views.LeftMenu.tipSearch": "Hľadať",
"DE.Views.LeftMenu.tipSupport": "Spätná väzba a Podpora\n\n",
@ -1160,7 +1188,7 @@
"DE.Views.NoteSettingsDialog.textCustom": "Vlastná značka\n\n",
"DE.Views.NoteSettingsDialog.textDocument": "Celý dokument",
"DE.Views.NoteSettingsDialog.textEachPage": "Reštartovať/znova spustiť každú stránku\n\n",
"DE.Views.NoteSettingsDialog.textEachSection": "Reštartovať/znova spustiť každú sekciu\n\n",
"DE.Views.NoteSettingsDialog.textEachSection": "Reštartovať každú sekciu\n\n",
"DE.Views.NoteSettingsDialog.textFootnote": "Poznámka pod čiarou\n",
"DE.Views.NoteSettingsDialog.textFormat": "Formát",
"DE.Views.NoteSettingsDialog.textInsert": "Vložiť",
@ -1168,10 +1196,10 @@
"DE.Views.NoteSettingsDialog.textNumbering": "Číslovanie",
"DE.Views.NoteSettingsDialog.textNumFormat": "Formát čísel\n\n",
"DE.Views.NoteSettingsDialog.textPageBottom": "Spodná časť stránky",
"DE.Views.NoteSettingsDialog.textSection": "Aktuálna sekcia\n\n",
"DE.Views.NoteSettingsDialog.textSection": "Aktuálna sekcia",
"DE.Views.NoteSettingsDialog.textStart": "Začať na",
"DE.Views.NoteSettingsDialog.textTextBottom": "Pod textom",
"DE.Views.NoteSettingsDialog.textTitle": "Poznámky Nastavenia\n\n",
"DE.Views.NoteSettingsDialog.textTitle": "Nastavenia poznámok",
"DE.Views.PageMarginsDialog.cancelButtonText": "Zrušiť",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Upozornenie",
"DE.Views.PageMarginsDialog.okButtonText": "OK",
@ -1199,7 +1227,7 @@
"DE.Views.ParagraphSettings.textBackColor": "Farba pozadia",
"DE.Views.ParagraphSettings.textExact": "Presne",
"DE.Views.ParagraphSettings.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.ParagraphSettings.txtAutoText": "Automaticky/automatický",
"DE.Views.ParagraphSettings.txtAutoText": "Automaticky",
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Zrušiť",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli",
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
@ -1263,13 +1291,13 @@
"DE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky",
"DE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art",
"DE.Views.ShapeSettings.strBackground": "Farba pozadia",
"DE.Views.ShapeSettings.strChange": "Zmeniť automatický tvar\n\n",
"DE.Views.ShapeSettings.strChange": "Zmeniť automatický tvar",
"DE.Views.ShapeSettings.strColor": "Farba",
"DE.Views.ShapeSettings.strFill": "Vyplniť",
"DE.Views.ShapeSettings.strForeground": "Farba popredia",
"DE.Views.ShapeSettings.strPattern": "Vzor",
"DE.Views.ShapeSettings.strSize": "Veľkosť",
"DE.Views.ShapeSettings.strStroke": "Ťah/črta",
"DE.Views.ShapeSettings.strStroke": "Obrys",
"DE.Views.ShapeSettings.strTransparency": "Priehľadnosť",
"DE.Views.ShapeSettings.strType": "Typ",
"DE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
@ -1281,7 +1309,7 @@
"DE.Views.ShapeSettings.textFromUrl": "Z URL adresy ",
"DE.Views.ShapeSettings.textGradient": "Prechod",
"DE.Views.ShapeSettings.textGradientFill": "Výplň prechodom",
"DE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra\n\n",
"DE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra",
"DE.Views.ShapeSettings.textLinear": "Lineárny/čiarový",
"DE.Views.ShapeSettings.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.ShapeSettings.textNoFill": "Bez výplne",
@ -1302,35 +1330,24 @@
"DE.Views.ShapeSettings.txtGranite": "Mramorovaný",
"DE.Views.ShapeSettings.txtGreyPaper": "Sivý papier",
"DE.Views.ShapeSettings.txtInFront": "vpredu",
"DE.Views.ShapeSettings.txtInline": "V rade za sebou/vnútri riadku\n",
"DE.Views.ShapeSettings.txtInline": "Zarovno s textom",
"DE.Views.ShapeSettings.txtKnit": "Pletený",
"DE.Views.ShapeSettings.txtLeather": "Koža/kožený",
"DE.Views.ShapeSettings.txtNoBorders": "Bez čiary",
"DE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"DE.Views.ShapeSettings.txtSquare": "Štvorec/druhá mocnina",
"DE.Views.ShapeSettings.txtSquare": "Štvorec",
"DE.Views.ShapeSettings.txtThrough": "Cez",
"DE.Views.ShapeSettings.txtTight": "Tesný",
"DE.Views.ShapeSettings.txtTopAndBottom": "Hore a dole",
"DE.Views.ShapeSettings.txtWood": "Drevo",
"DE.Views.Statusbar.goToPageText": "Ísť na stranu",
"DE.Views.Statusbar.pageIndexText": "Strana {0} z {1}",
"DE.Views.Statusbar.textChangesPanel": "Panel zmien",
"DE.Views.Statusbar.textTrackChanges": "Sledovať zmeny\n\n",
"DE.Views.Statusbar.tipAccessRights": "Spravovať prístupové práva k dokumentom\n\n",
"DE.Views.Statusbar.tipFitPage": "Prispôsobiť na stranu",
"DE.Views.Statusbar.tipFitWidth": "Prispôsobiť do formátu",
"DE.Views.Statusbar.tipMoreUsers": "a %1 užívateľov.",
"DE.Views.Statusbar.tipReview": "Prezerať/posúdiť",
"DE.Views.Statusbar.tipSetDocLang": "Nastaviť jazyk dokumentov\n\n",
"DE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku",
"DE.Views.Statusbar.tipSetLang": "Nastaviť jazyk textu\n\n",
"DE.Views.Statusbar.tipSetSpelling": "Kontrola pravopisu",
"DE.Views.Statusbar.tipShowUsers": "Ak chcete vidieť všetkých používateľov, kliknite na ikonu nižšie.\n\n",
"DE.Views.Statusbar.tipUsers": "Dokument v súčasnosti upravuje niekoľko používateľov.\n\n",
"DE.Views.Statusbar.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom\n\n",
"DE.Views.Statusbar.tipZoomFactor": "Zväčšenie/zväčšenie veľkosti\n",
"DE.Views.Statusbar.tipZoomIn": "Priblížiť",
"DE.Views.Statusbar.tipZoomOut": "Oddialiť",
"DE.Views.Statusbar.txAccessRights": "Zmeniť prístupové práva",
"DE.Views.Statusbar.txtPageNumInvalid": "Číslo stránky je neplatné",
"DE.Views.StyleTitleDialog.textHeader": "Vytvoriť nový štýl",
"DE.Views.StyleTitleDialog.textNextStyle": "Štýl ďalšieho odseku\n\n",
@ -1416,7 +1433,7 @@
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Vľavo",
"DE.Views.TableSettingsAdvanced.textMargin": "Okraj",
"DE.Views.TableSettingsAdvanced.textMargins": "Okraje bunky",
"DE.Views.TableSettingsAdvanced.textMeasure": "Merať v\n\n",
"DE.Views.TableSettingsAdvanced.textMeasure": "Merať v",
"DE.Views.TableSettingsAdvanced.textMove": "Presunúť objekt s textom\n\n",
"DE.Views.TableSettingsAdvanced.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Len pre vybrané bunky",
@ -1426,7 +1443,7 @@
"DE.Views.TableSettingsAdvanced.textPosition": "Pozícia",
"DE.Views.TableSettingsAdvanced.textPrefWidth": "Preferovaná šírka",
"DE.Views.TableSettingsAdvanced.textPreview": "Náhľad",
"DE.Views.TableSettingsAdvanced.textRelative": "Relatívny k/vzhľadom ku \n\n",
"DE.Views.TableSettingsAdvanced.textRelative": "vzhľadom ku \n\n",
"DE.Views.TableSettingsAdvanced.textRight": "Vpravo",
"DE.Views.TableSettingsAdvanced.textRightOf": "Vpravo od\n\n",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "Vpravo",
@ -1443,7 +1460,7 @@
"DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabuľka rovnobežne s textom",
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Obtekať tabuľku",
"DE.Views.TableSettingsAdvanced.textWrappingStyle": "Obtekanie textu",
"DE.Views.TableSettingsAdvanced.textWrapText": "Obtekanie textu\n\n",
"DE.Views.TableSettingsAdvanced.textWrapText": "Obtekanie textu",
"DE.Views.TableSettingsAdvanced.tipAll": "Nastaviť vonkajšie orámovanie a všetky vnútorné čiary",
"DE.Views.TableSettingsAdvanced.tipCellAll": "Nastaviť orámovanie iba pre vnútorné bunky",
"DE.Views.TableSettingsAdvanced.tipCellInner": "Nastaviť vertikálne a horizontálne čiary iba pre vnútorné bunky\n\n",
@ -1462,7 +1479,7 @@
"DE.Views.TextArtSettings.strColor": "Farba",
"DE.Views.TextArtSettings.strFill": "Vyplniť",
"DE.Views.TextArtSettings.strSize": "Veľkosť",
"DE.Views.TextArtSettings.strStroke": "Ťah/črta",
"DE.Views.TextArtSettings.strStroke": "Obrys",
"DE.Views.TextArtSettings.strTransparency": "Priehľadnosť",
"DE.Views.TextArtSettings.strType": "Typ",
"DE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte číselnú hodnotu medzi 0 a 1584.\n",
@ -1479,6 +1496,27 @@
"DE.Views.TextArtSettings.textTemplate": "Šablóna",
"DE.Views.TextArtSettings.textTransform": "Transformovať",
"DE.Views.TextArtSettings.txtNoBorders": "Bez čiary",
"DE.Views.Toolbar.capBtnColumns": "Stĺpce",
"DE.Views.Toolbar.capBtnInsChart": "Graf",
"DE.Views.Toolbar.capBtnInsDropcap": "Iniciála",
"DE.Views.Toolbar.capBtnInsEquation": "Rovnica",
"DE.Views.Toolbar.capBtnInsFootnote": "Poznámka pod čiarou\n",
"DE.Views.Toolbar.capBtnInsHeader": "Záhlavie/päta \n\n",
"DE.Views.Toolbar.capBtnInsImage": "Obrázok",
"DE.Views.Toolbar.capBtnInsLink": "Hypertextový odkaz",
"DE.Views.Toolbar.capBtnInsPagebreak": "Oddeľovač stránky/zlom strany\n\n\n",
"DE.Views.Toolbar.capBtnInsShape": "Tvar",
"DE.Views.Toolbar.capBtnInsTable": "Tabuľka",
"DE.Views.Toolbar.capBtnInsTextart": "Technika/grafika textu",
"DE.Views.Toolbar.capBtnInsTextbox": "Text",
"DE.Views.Toolbar.capBtnMargins": "Okraje",
"DE.Views.Toolbar.capBtnPageOrient": "Orientácia",
"DE.Views.Toolbar.capBtnPageSize": "Veľkosť",
"DE.Views.Toolbar.capImgAlign": "Zarovnať",
"DE.Views.Toolbar.capImgBackward": "Posunúť späť",
"DE.Views.Toolbar.capImgForward": "Posunúť vpred",
"DE.Views.Toolbar.capImgGroup": "Skupina",
"DE.Views.Toolbar.capImgWrapping": "Obal",
"DE.Views.Toolbar.mniCustomTable": "Vložiť vlastnú tabuľku",
"DE.Views.Toolbar.mniDelFootnote": "Odstrániť všetky poznámky pod čiarou\n\n",
"DE.Views.Toolbar.mniEditDropCap": "Nastavenie Iniciály",
@ -1489,15 +1527,15 @@
"DE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru",
"DE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy",
"DE.Views.Toolbar.mniInsFootnote": "Vložiť poznámku pod čiarou\n\n",
"DE.Views.Toolbar.mniNoteSettings": "Poznámky Nastavenia\n\n",
"DE.Views.Toolbar.mniNoteSettings": "Nastavenia poznámok",
"DE.Views.Toolbar.strMenuNoFill": "Bez výplne",
"DE.Views.Toolbar.textArea": "Plošný graf",
"DE.Views.Toolbar.textAutoColor": "Automaticky/automatický",
"DE.Views.Toolbar.textAutoColor": "Automaticky",
"DE.Views.Toolbar.textBar": "Pruhový graf",
"DE.Views.Toolbar.textBold": "Tučné",
"DE.Views.Toolbar.textBottom": "Dolný okraj/päta\n",
"DE.Views.Toolbar.textBottom": "Dole\n",
"DE.Views.Toolbar.textCharts": "Grafy",
"DE.Views.Toolbar.textColumn": "Stĺpec/stĺpcový graf",
"DE.Views.Toolbar.textColumn": "Stĺpec",
"DE.Views.Toolbar.textColumnsCustom": "Vlastné stĺpce\n\n",
"DE.Views.Toolbar.textColumnsLeft": "Vľavo",
"DE.Views.Toolbar.textColumnsOne": "Jeden",
@ -1508,7 +1546,7 @@
"DE.Views.Toolbar.textContPage": "Súvislá/neprerušovaná strana",
"DE.Views.Toolbar.textEvenPage": "Párna stránka",
"DE.Views.Toolbar.textFitPage": "Prispôsobiť na stranu",
"DE.Views.Toolbar.textFitWidth": "Prispôsobiť do formátu",
"DE.Views.Toolbar.textFitWidth": "Prispôsobiť na šírku",
"DE.Views.Toolbar.textGotoFootnote": "Prejdite na Poznámky pod čiarou\n\n",
"DE.Views.Toolbar.textHideLines": "Skryť pravítka\n\n",
"DE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok",
@ -1519,8 +1557,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Vložiť číslo stránky",
"DE.Views.Toolbar.textInsPageBreak": "Vložiť zlom strany",
"DE.Views.Toolbar.textInsSectionBreak": "Vložiť zlom sekcie",
"DE.Views.Toolbar.textInsText": "Vložiť textové pole",
"DE.Views.Toolbar.textInsTextArt": "Vložiť Text Art",
"DE.Views.Toolbar.textInText": "V texte",
"DE.Views.Toolbar.textItalic": "Kurzíva",
"DE.Views.Toolbar.textLandscape": "Na šírku",
@ -1553,6 +1589,11 @@
"DE.Views.Toolbar.textSubscript": "Dolný index",
"DE.Views.Toolbar.textSuperscript": "Horný index",
"DE.Views.Toolbar.textSurface": "Povrch",
"DE.Views.Toolbar.textTabFile": "Súbor",
"DE.Views.Toolbar.textTabHome": "Hlavná stránka",
"DE.Views.Toolbar.textTabInsert": "Vložiť",
"DE.Views.Toolbar.textTabLayout": "Rozloženie stránky\n\n",
"DE.Views.Toolbar.textTabReview": "Prehľad",
"DE.Views.Toolbar.textTitleError": "Chyba",
"DE.Views.Toolbar.textToCurrent": "Na aktuálnu pozíciu",
"DE.Views.Toolbar.textTop": "Hore:",
@ -1579,6 +1620,9 @@
"DE.Views.Toolbar.tipFontSize": "Veľkosť písma",
"DE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie",
"DE.Views.Toolbar.tipHighlightColor": "Farba zvýraznenia",
"DE.Views.Toolbar.tipImgAlign": "Zoradiť/usporiadať objekty",
"DE.Views.Toolbar.tipImgGroup": "Skupinové objekty\n\n",
"DE.Views.Toolbar.tipImgWrapping": "Obtekanie textu",
"DE.Views.Toolbar.tipIncFont": "Zväčšiť veľkosť písma",
"DE.Views.Toolbar.tipIncPrLeft": "Zväčšiť zarážku",
"DE.Views.Toolbar.tipInsertChart": "Vložiť graf",
@ -1586,17 +1630,16 @@
"DE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz",
"DE.Views.Toolbar.tipInsertImage": "Vložiť obrázok",
"DE.Views.Toolbar.tipInsertNum": "Vložiť číslo stránky",
"DE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar\n\n",
"DE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar",
"DE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku",
"DE.Views.Toolbar.tipInsertText": "Vložiť text",
"DE.Views.Toolbar.tipLineSpace": "Riadkovanie odstavcov\n\n",
"DE.Views.Toolbar.tipInsertTextArt": "Vložiť Text Art",
"DE.Views.Toolbar.tipLineSpace": "Riadkovanie odstavcov",
"DE.Views.Toolbar.tipMailRecepients": "Zlúčenie pošty",
"DE.Views.Toolbar.tipMarkers": "Odrážky",
"DE.Views.Toolbar.tipMultilevels": "Viacúrovňový zoznam",
"DE.Views.Toolbar.tipNewDocument": "Nový dokument",
"DE.Views.Toolbar.tipNotes": "Poznámky pod čiarou\n",
"DE.Views.Toolbar.tipNumbers": "Číslovanie",
"DE.Views.Toolbar.tipOpenDocument": "Otvoriť dokument",
"DE.Views.Toolbar.tipPageBreak": "Vložiť zlom strany alebo sekcie",
"DE.Views.Toolbar.tipPageMargins": "Okraje stránky",
"DE.Views.Toolbar.tipPageOrient": "Orientácia stránky",
@ -1608,6 +1651,8 @@
"DE.Views.Toolbar.tipRedo": "Krok vpred",
"DE.Views.Toolbar.tipSave": "Uložiť",
"DE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.\n\n",
"DE.Views.Toolbar.tipSendBackward": "Odoslať späť\n\n",
"DE.Views.Toolbar.tipSendForward": "Odoslať dopredu\n\n",
"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.\n\n",
"DE.Views.Toolbar.tipUndo": "Krok späť",
@ -1616,7 +1661,7 @@
"DE.Views.Toolbar.txtScheme10": "Medián",
"DE.Views.Toolbar.txtScheme11": "Metro",
"DE.Views.Toolbar.txtScheme12": "Modul",
"DE.Views.Toolbar.txtScheme13": "Výnos",
"DE.Views.Toolbar.txtScheme13": "Výnos",
"DE.Views.Toolbar.txtScheme14": "Výklenok\n",
"DE.Views.Toolbar.txtScheme15": "Pôvod",
"DE.Views.Toolbar.txtScheme16": "Papier",

View file

@ -81,6 +81,7 @@
"Common.UI.SearchDialog.textTitle": "Bul ve Değiştir",
"Common.UI.SearchDialog.textTitle2": "Bul",
"Common.UI.SearchDialog.textWholeWords": "Sadece tam kelimeler",
"Common.UI.SearchDialog.txtBtnHideReplace": "Değiştirmeyi Gizle",
"Common.UI.SearchDialog.txtBtnReplace": "Değiştir",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Hepsini Değiştir",
"Common.UI.SynchronizeTip.textDontShow": "Bu mesajı bir daha gösterme",
@ -95,6 +96,8 @@
"Common.UI.Window.textInformation": "Bilgi",
"Common.UI.Window.textWarning": "Dikkat",
"Common.UI.Window.yesButtonText": "Evet",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"Common.Views.About.txtAddress": "adres:",
"Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Letonya, AB, LV-1021",
"Common.Views.About.txtLicensee": "LİSANS SAHİBİ",
@ -134,9 +137,10 @@
"Common.Views.ExternalMergeEditor.textClose": "Close",
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
"Common.Views.Header.openNewTabText": "Open in New Tab",
"Common.Views.Header.textBack": "Dökümanlara Git",
"Common.Views.History.textHistoryHeader": "Back to Document",
"Common.Views.History.textHideAll": "Detaylı değişiklikleri sakla",
"Common.Views.History.textShow": "Genişlet",
"Common.Views.History.textShowAll": "Ayrıntılı değişiklikleri göster",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "İptal Et",
"Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM",
"Common.Views.ImageFromUrlDialog.textUrl": "Resim URL'sini yapıştır:",
@ -154,6 +158,10 @@
"Common.Views.OpenDialog.okButtonText": "OK",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya",
"Common.Views.Plugins.strPlugins": "Plugin",
"Common.Views.Plugins.textLoading": "Yükleniyor",
"Common.Views.RenameDialog.txtInvalidName": "Dosya adı aşağıdaki karakterlerden herhangi birini içeremez:",
"Common.Views.ReviewChanges.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",
@ -174,7 +182,6 @@
"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.Main.applyChangesTextText": "Değişiklikler yükleniyor...",
"DE.Controllers.Main.applyChangesTitleText": "Değişiklikler Yükleniyor",
"DE.Controllers.Main.convertationErrorText": "Değişim başarısız oldu.",
"DE.Controllers.Main.convertationTimeoutText": "Değişim süresi geçti.",
"DE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın",
"DE.Controllers.Main.criticalErrorTitle": "Hata",
@ -184,6 +191,7 @@
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
"DE.Controllers.Main.downloadTextText": "Döküman yükleniyor...",
"DE.Controllers.Main.downloadTitleText": "Döküman yükleniyor",
"DE.Controllers.Main.errorAccessDeny": "Hakiniz olmayan bir eylem gerçekleştirmeye çalışıyorsunuz. <br> Lütfen Document Server yöneticinize başvurun.",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.",
"DE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
"DE.Controllers.Main.errorDatabaseConnection": "Harci hata. <br>Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.",
@ -195,10 +203,16 @@
"DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed",
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.",
"DE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız.",
"DE.Controllers.Main.errorSessionAbsolute": "Doküman düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.",
"DE.Controllers.Main.errorSessionIdle": "Belge oldukça uzun süredir düzenlenmedi. Lütfen sayfayı yeniden yükleyin.",
"DE.Controllers.Main.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.",
"DE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:<br> açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ",
"DE.Controllers.Main.errorToken": "Belge güvenlik belirteci doğru şekilde oluşturulmamış <br> <br> Lütfen Document Server yöneticinize başvurun.",
"DE.Controllers.Main.errorTokenExpire": "Belge güvenlik belirteci doldu. <br> Lütfen Document Server yöneticinize başvurun.",
"DE.Controllers.Main.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecektir.",
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
"DE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısııldı",
"DE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz, <br> ancak bağlantı geri yüklenene kadar indirme veya yazdırma yapamaz.",
"DE.Controllers.Main.leavePageText": "Bu dökümandaki değişiklikleri kaydetmediniz. \"Bu sayfada kal\"'a tıklayınız ve sonrasında kaydetmek için \"Kaydet\"'e tıklayınız. Kaydedilmeyen değişikliklerin tümünü göz ardı etmek için \"Bu Sayfadan Ayrıl\"'a tıklayınız.",
"DE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...",
"DE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor",
@ -213,6 +227,7 @@
"DE.Controllers.Main.mailMergeLoadFileText": "Loading Data Source...",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Loading Data Source",
"DE.Controllers.Main.notcriticalErrorTitle": "Dikkat",
"DE.Controllers.Main.openErrorText": "Dosya açılırken bir hata oluştu.",
"DE.Controllers.Main.openTextText": "Döküman Açılıyor",
"DE.Controllers.Main.openTitleText": "Döküman Açılıyor",
"DE.Controllers.Main.printTextText": "Döküman yazdırılıyor...",
@ -220,6 +235,7 @@
"DE.Controllers.Main.reloadButtonText": "Sayfayı Yenile",
"DE.Controllers.Main.requestEditFailedMessageText": "Şu bu döküman biri tarafından düzenleniyor. Lütfen daha sonra tekrar deneyin.",
"DE.Controllers.Main.requestEditFailedTitleText": "Erişim reddedildi",
"DE.Controllers.Main.saveErrorText": "Dosya açılırken bir hata oluştu.",
"DE.Controllers.Main.savePreparingText": "Kaydetmeye hazırlanıyor",
"DE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...",
"DE.Controllers.Main.saveTextText": "Döküman kaydediliyor...",
@ -230,10 +246,14 @@
"DE.Controllers.Main.splitMaxColsErrorText": "Sütun sayısı %1'den az olmalıdır.",
"DE.Controllers.Main.splitMaxRowsErrorText": "Satır sayısı %1'den az olmalıdır.",
"DE.Controllers.Main.textAnonymous": "Anonim",
"DE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin",
"DE.Controllers.Main.textCloseTip": "Ucu kapamak için tıklayın",
"DE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin",
"DE.Controllers.Main.textLoadingDocument": "Döküman yükleniyor",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE açık kaynak sürümü",
"DE.Controllers.Main.textStrict": "Strict mode",
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.<br>Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.",
"DE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu",
"DE.Controllers.Main.titleUpdateVersion": "Versiyon değiştirildi",
"DE.Controllers.Main.txtArt": "Your text here",
"DE.Controllers.Main.txtBasicShapes": "Temel Şekiller",
@ -261,11 +281,14 @@
"DE.Controllers.Main.uploadImageTitleText": "Resim Yükleniyor",
"DE.Controllers.Main.warnBrowserIE9": "Uygulama IE9'da düşük yeteneklere sahip. IE10 yada daha yükseğini kullanınız",
"DE.Controllers.Main.warnBrowserZoom": "Tarayıcınızın mevcut zum ayarı tam olarak desteklenmiyor. Ctrl+0'a basarak varsayılan zumu sıfırlayınız.",
"DE.Controllers.Main.warnLicenseExp": "Lisansınızın süresi doldu. <br> Lütfen lisansınızı güncelleyin ve sayfayı yenileyin.",
"DE.Controllers.Main.warnNoLicense": "ONLYOFFICE'ın açık kaynaklı bir sürümünü kullanıyorsunuz. Sürüm, doküman sunucusuna eş zamanlı bağlantılar için sınırlamalar getiriyor (bir seferde 20 bağlantı). <br> Daha fazla bilgiye ihtiyacınız varsa, ticari bir lisans satın almayı düşünün lütfen.",
"DE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.zoomText": "Zum {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the device fonts, the saved font will be used when it is available.<br>Do you want to continue?",
"DE.Controllers.Toolbar.confirmDeleteFootnotes": "Tüm dipnotları silmek istiyor musun?",
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning",
"DE.Controllers.Toolbar.textAccent": "Accents",
"DE.Controllers.Toolbar.textBracket": "Brackets",
@ -633,11 +656,9 @@
"DE.Views.DocumentHolder.advancedText": "Gelişmiş Ayarlar",
"DE.Views.DocumentHolder.alignmentText": "Hiza",
"DE.Views.DocumentHolder.belowText": "Altında",
"DE.Views.DocumentHolder.bottomCellText": "Alta Hizala",
"DE.Views.DocumentHolder.breakBeforeText": "Şundan önce sayfa kesmesi:",
"DE.Views.DocumentHolder.cellAlignText": "Hücre Dikey Hizalama",
"DE.Views.DocumentHolder.cellText": "Hücre",
"DE.Views.DocumentHolder.centerCellText": "Ortaya Hizala",
"DE.Views.DocumentHolder.centerText": "Orta",
"DE.Views.DocumentHolder.chartText": "Grafik Gelişmiş Ayarlar",
"DE.Views.DocumentHolder.columnText": "Sütun",
@ -711,7 +732,6 @@
"DE.Views.DocumentHolder.textShapeAlignTop": "Üste Hizala",
"DE.Views.DocumentHolder.textWrap": "Kaydırma Stili",
"DE.Views.DocumentHolder.tipIsLocked": "Bu element şu an başka bir kullanıcı tarafından düzenleniyor.",
"DE.Views.DocumentHolder.topCellText": "Üste Hizala",
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
"DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar",
"DE.Views.DocumentHolder.txtAddHor": "Add horizontal line",
@ -831,8 +851,6 @@
"DE.Views.DropcapSettingsAdvanced.textRelative": "Şununla ilgili:",
"DE.Views.DropcapSettingsAdvanced.textRight": "Sağ",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Sıralarda yükseklik",
"DE.Views.DropcapSettingsAdvanced.textStandartColors": "Standart Renkler",
"DE.Views.DropcapSettingsAdvanced.textThemeColors": "Tema Renkleri",
"DE.Views.DropcapSettingsAdvanced.textTitle": "Büyük Harf - Gelişmiş Ayarlar",
"DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Çerçeve - Gelişmiş Ayarlar",
"DE.Views.DropcapSettingsAdvanced.textTop": "Üst",
@ -841,6 +859,7 @@
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Yazı Tipi İsmi",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sınır yok",
"DE.Views.FileMenu.btnBackCaption": "Dökümanlara Git",
"DE.Views.FileMenu.btnCloseMenuCaption": "Menüyü kapat",
"DE.Views.FileMenu.btnCreateNewCaption": "Yeni oluştur",
"DE.Views.FileMenu.btnDownloadCaption": "Farklı Yükle...",
"DE.Views.FileMenu.btnHelpCaption": "Yardım...",
@ -848,6 +867,7 @@
"DE.Views.FileMenu.btnInfoCaption": "Döküman Bilgisi...",
"DE.Views.FileMenu.btnPrintCaption": "Yazdır",
"DE.Views.FileMenu.btnRecentFilesCaption": "En sonunucuyu aç...",
"DE.Views.FileMenu.btnRenameCaption": "Yeniden adlandır...",
"DE.Views.FileMenu.btnReturnCaption": "Dökümana Geri Dön",
"DE.Views.FileMenu.btnRightsCaption": "Access Rights...",
"DE.Views.FileMenu.btnSaveAsCaption": "Save as",
@ -877,6 +897,7 @@
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Uygula",
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides",
"DE.Views.FileMenuPanels.Settings.strAutoRecover": "Otomatik kaydetmeyi aç",
"DE.Views.FileMenuPanels.Settings.strAutosave": "Otomatik kaydetmeyi aç",
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once",
@ -895,11 +916,13 @@
"DE.Views.FileMenuPanels.Settings.text5Minutes": "Her 5 Dakika",
"DE.Views.FileMenuPanels.Settings.text60Minutes": "Her Saat",
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment Guides",
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Otomatik Kurtarma",
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Otomatik Kaydetme",
"DE.Views.FileMenuPanels.Settings.textDisabled": "Devre Dışı",
"DE.Views.FileMenuPanels.Settings.textMinute": "Her Dakika",
"DE.Views.FileMenuPanels.Settings.txtAll": "Tümünü göster",
"DE.Views.FileMenuPanels.Settings.txtCm": "Santimetre",
"DE.Views.FileMenuPanels.Settings.txtInch": "İnç",
"DE.Views.FileMenuPanels.Settings.txtInput": "Girdiyi Değiştir",
"DE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster",
"DE.Views.FileMenuPanels.Settings.txtLiveComment": "Canlı Yorum",
@ -933,6 +956,7 @@
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Bu alan gereklidir",
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bu alan \"http://www.example.com\" formatında URL olmalıdır",
"DE.Views.ImageSettings.textAdvanced": "Gelişmiş ayarları göster",
"DE.Views.ImageSettings.textEditObject": "Nesneyi düzenle",
"DE.Views.ImageSettings.textFromFile": "Dosyadan",
"DE.Views.ImageSettings.textFromUrl": "URL'den",
"DE.Views.ImageSettings.textHeight": "Yükseklik",
@ -951,8 +975,10 @@
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "İptal Et",
"DE.Views.ImageSettingsAdvanced.okButtonText": "TAMAM",
"DE.Views.ImageSettingsAdvanced.strMargins": "Metin Dolgulama",
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Mutlak",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Hiza",
"DE.Views.ImageSettingsAdvanced.textArrows": "Oklar",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "En-boy oranını kilitle",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Başlama Boyutu",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Başlama Stili",
"DE.Views.ImageSettingsAdvanced.textBelow": "altında",
@ -985,7 +1011,9 @@
"DE.Views.ImageSettingsAdvanced.textPage": "Sayfa",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraf",
"DE.Views.ImageSettingsAdvanced.textPosition": "Pozisyon",
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Göreceli konum",
"DE.Views.ImageSettingsAdvanced.textRelative": "şununla ilgili:",
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Göreceli",
"DE.Views.ImageSettingsAdvanced.textRight": "Sağ",
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Sağ Kenar Boşluğu",
"DE.Views.ImageSettingsAdvanced.textRightOf": "sağına",
@ -1011,7 +1039,7 @@
"DE.Views.LeftMenu.tipAbout": "Hakkında",
"DE.Views.LeftMenu.tipChat": "Sohbet",
"DE.Views.LeftMenu.tipComments": "Yorumlar",
"DE.Views.LeftMenu.tipFile": "Dosya",
"DE.Views.LeftMenu.tipPlugins": "Plugin",
"DE.Views.LeftMenu.tipSearch": "Ara",
"DE.Views.LeftMenu.tipSupport": "Geri Bildirim & Destek",
"DE.Views.LeftMenu.tipTitles": "Başlıklar",
@ -1067,6 +1095,17 @@
"DE.Views.MailMergeSettings.txtPrev": "To previous record",
"DE.Views.MailMergeSettings.txtUntitled": "Untitled",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
"DE.Views.NoteSettingsDialog.textApplyTo": "Değişiklikleri uygula",
"DE.Views.NoteSettingsDialog.textContinue": "Sürekli",
"DE.Views.NoteSettingsDialog.textCustom": "Özel mark",
"DE.Views.NoteSettingsDialog.textDocument": "Tüm döküman",
"DE.Views.NoteSettingsDialog.textEachPage": "Her sayfayı yeniden başlatın",
"DE.Views.NoteSettingsDialog.textEachSection": "Her sayfayı yeniden başlatın",
"DE.Views.NoteSettingsDialog.textFootnote": "Dipnot",
"DE.Views.NoteSettingsDialog.textPageBottom": "Sayfanın alt kısmı",
"DE.Views.NoteSettingsDialog.textSection": "Bu kısım",
"DE.Views.NoteSettingsDialog.textTextBottom": "Aşağıdaki metin",
"DE.Views.NoteSettingsDialog.textTitle": "Not ayarları",
"DE.Views.PageMarginsDialog.cancelButtonText": "Cancel",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
"DE.Views.PageMarginsDialog.okButtonText": "Ok",
@ -1094,8 +1133,6 @@
"DE.Views.ParagraphSettings.textBackColor": "Arka plan rengi",
"DE.Views.ParagraphSettings.textExact": "Tam olarak",
"DE.Views.ParagraphSettings.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.ParagraphSettings.textStandartColors": "Standart Renkler",
"DE.Views.ParagraphSettings.textThemeColors": "Tema Renkleri",
"DE.Views.ParagraphSettings.txtAutoText": "Otomatik",
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "İptal Et",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Belirtilen sekmeler bu alanda görünecektir",
@ -1136,12 +1173,10 @@
"DE.Views.ParagraphSettingsAdvanced.textRight": "Sağ",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Belirt",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Aralık",
"DE.Views.ParagraphSettingsAdvanced.textStandartColors": "Standart Renkler",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Orta",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Sol",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Sekme Pozisyonu",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "Sağ",
"DE.Views.ParagraphSettingsAdvanced.textThemeColors": "Tema Renkleri",
"DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Gelişmiş Ayarlar",
"DE.Views.ParagraphSettingsAdvanced.textTop": "Üst",
"DE.Views.ParagraphSettingsAdvanced.tipAll": "Dış Sınır ve Tüm İç Satırları Belirle",
@ -1186,11 +1221,9 @@
"DE.Views.ShapeSettings.textPatternFill": "Desen",
"DE.Views.ShapeSettings.textRadial": "Radyal",
"DE.Views.ShapeSettings.textSelectTexture": "Seç",
"DE.Views.ShapeSettings.textStandartColors": "Standart Renkler",
"DE.Views.ShapeSettings.textStretch": "Esnet",
"DE.Views.ShapeSettings.textStyle": "Stil",
"DE.Views.ShapeSettings.textTexture": "Doldurma deseninden",
"DE.Views.ShapeSettings.textThemeColors": "Tema Renkleri",
"DE.Views.ShapeSettings.textTile": "Desen",
"DE.Views.ShapeSettings.textWrap": "Kaydırma Stili",
"DE.Views.ShapeSettings.txtBehind": "Arkada",
@ -1213,27 +1246,13 @@
"DE.Views.ShapeSettings.txtTopAndBottom": "Üst ve alt",
"DE.Views.ShapeSettings.txtWood": "Ahşap",
"DE.Views.Statusbar.goToPageText": "Sayfaya Git",
"DE.Views.Statusbar.LanguageDialog.btnCancel": "İptal Et",
"DE.Views.Statusbar.LanguageDialog.btnOk": "Tamam",
"DE.Views.Statusbar.LanguageDialog.labelSelect": "Döküman dilini seçin",
"DE.Views.Statusbar.pageIndexText": "{1}'in {0}. sayfası",
"DE.Views.Statusbar.textChangesPanel": "Changes Panel",
"DE.Views.Statusbar.textTrackChanges": "Track Changes",
"DE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"DE.Views.Statusbar.tipFitPage": "Sayfaya Sığdır",
"DE.Views.Statusbar.tipFitWidth": "Genişliğe Sığdır",
"DE.Views.Statusbar.tipMoreUsers": "ve %1 kullanıcı.",
"DE.Views.Statusbar.tipReview": "Review",
"DE.Views.Statusbar.tipSetDocLang": "Döküman Dilini Belirle",
"DE.Views.Statusbar.tipSetLang": "Metin Dili Belirle",
"DE.Views.Statusbar.tipSetSpelling": "Yazım denetimi",
"DE.Views.Statusbar.tipShowUsers": "Tüm kullanıcıları görmek için aşağıdaki ikona tıklayın.",
"DE.Views.Statusbar.tipUsers": "Döküman şu an bir kaç kullanıcı tarafından düzenleniyor.",
"DE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"DE.Views.Statusbar.tipZoomFactor": "Büyütme",
"DE.Views.Statusbar.tipZoomIn": "Yakınlaştır",
"DE.Views.Statusbar.tipZoomOut": "Uzaklaştır",
"DE.Views.Statusbar.txAccessRights": "Change access rights",
"DE.Views.Statusbar.txtPageNumInvalid": "Sayı numarası geçersiz",
"DE.Views.StyleTitleDialog.textHeader": "Create New Style",
"DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style",
@ -1271,11 +1290,9 @@
"DE.Views.TableSettings.textOK": "TAMAM",
"DE.Views.TableSettings.textRows": "Satırlar",
"DE.Views.TableSettings.textSelectBorders": "Yukarıda seçilen stili uygulayarak değiştirmek istediğiniz sınırları seçin",
"DE.Views.TableSettings.textStandartColors": "Standart Renkler",
"DE.Views.TableSettings.textTemplate": "Şablondan Seç",
"DE.Views.TableSettings.textThemeColors": "Tema Renkleri",
"DE.Views.TableSettings.textTotal": "Toplam",
"DE.Views.TableSettings.textWrap": "Metin Kaydırma",
"DE.Views.TableSettings.textWrap": "Kaydırma Stili",
"DE.Views.TableSettings.textWrapNoneTooltip": "Satıriçi tablo",
"DE.Views.TableSettings.textWrapParallelTooltip": "Yayılma tablası",
"DE.Views.TableSettings.tipAll": "Dış Sınır ve Tüm İç Satırları Belirle",
@ -1303,7 +1320,9 @@
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Sınırlar & Arka Plan",
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Sınır Boyutu",
"DE.Views.TableSettingsAdvanced.textBottom": "Alt",
"DE.Views.TableSettingsAdvanced.textCellOptions": "Hücre seçenekleri",
"DE.Views.TableSettingsAdvanced.textCellProps": "Hücre Özellikleri",
"DE.Views.TableSettingsAdvanced.textCellSize": "Hücre boyutu",
"DE.Views.TableSettingsAdvanced.textCenter": "Orta",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Orta",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Varsayılan kenar boşluklarını kullan",
@ -1315,6 +1334,7 @@
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Sol",
"DE.Views.TableSettingsAdvanced.textMargin": "Kenar boşluğu",
"DE.Views.TableSettingsAdvanced.textMargins": "Hücre Kenar Boşluğu",
"DE.Views.TableSettingsAdvanced.textMeasure": "Birim seç",
"DE.Views.TableSettingsAdvanced.textMove": "Objeyi metinle taşı",
"DE.Views.TableSettingsAdvanced.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Sadece seçilen hücreler için",
@ -1322,14 +1342,13 @@
"DE.Views.TableSettingsAdvanced.textOverlap": "Çakışmaya izin ver",
"DE.Views.TableSettingsAdvanced.textPage": "Sayfa",
"DE.Views.TableSettingsAdvanced.textPosition": "Pozisyon",
"DE.Views.TableSettingsAdvanced.textPrefWidth": "Tercih edilen genişlik",
"DE.Views.TableSettingsAdvanced.textPreview": "Önizleme",
"DE.Views.TableSettingsAdvanced.textRelative": "şununla ilgili:",
"DE.Views.TableSettingsAdvanced.textRight": "Sağ",
"DE.Views.TableSettingsAdvanced.textRightOf": "sağına",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "Sağ",
"DE.Views.TableSettingsAdvanced.textStandartColors": "Standart Renkler",
"DE.Views.TableSettingsAdvanced.textTableBackColor": "Tablo Arka planı",
"DE.Views.TableSettingsAdvanced.textThemeColors": "Tema Renkleri",
"DE.Views.TableSettingsAdvanced.textTitle": "Tablo - Gelişmiş Ayarlar",
"DE.Views.TableSettingsAdvanced.textTop": "Üst",
"DE.Views.TableSettingsAdvanced.textVertical": "Dikey",
@ -1349,6 +1368,7 @@
"DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Dış sınırı ve İç Hücreler için Dikey Yatay Çizgileri Belirleyin",
"DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Dış Sınır Tablosunu ve İç Hücreler için Dış Sınırları Belirle",
"DE.Views.TableSettingsAdvanced.txtNoBorders": "Sınır yok",
"DE.Views.TableSettingsAdvanced.txtPercent": "Yüzde",
"DE.Views.TextArtSettings.strColor": "Color",
"DE.Views.TextArtSettings.strFill": "Fill",
"DE.Views.TextArtSettings.strSize": "Size",
@ -1364,13 +1384,12 @@
"DE.Views.TextArtSettings.textNoFill": "No Fill",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
"DE.Views.TextArtSettings.textStandartColors": "Standard Colors",
"DE.Views.TextArtSettings.textStyle": "Style",
"DE.Views.TextArtSettings.textTemplate": "Template",
"DE.Views.TextArtSettings.textThemeColors": "Theme Colors",
"DE.Views.TextArtSettings.textTransform": "Transform",
"DE.Views.TextArtSettings.txtNoBorders": "No Line",
"DE.Views.Toolbar.mniCustomTable": "Özel Tablo Ekle",
"DE.Views.Toolbar.mniDelFootnote": "Tüm Dipnotları Sil",
"DE.Views.Toolbar.mniEditDropCap": "Büyük Harf Ayarları",
"DE.Views.Toolbar.mniEditFooter": "Altlığı Düzenle",
"DE.Views.Toolbar.mniEditHeader": "Üstlüğü Düzenle",
@ -1378,6 +1397,7 @@
"DE.Views.Toolbar.mniHiddenChars": "Basılmaz Karakterler",
"DE.Views.Toolbar.mniImageFromFile": "Dosyadan resim",
"DE.Views.Toolbar.mniImageFromUrl": "URL'den resim",
"DE.Views.Toolbar.mniInsFootnote": "Dipnot ekle",
"DE.Views.Toolbar.strMenuNoFill": "Dolgu Yok",
"DE.Views.Toolbar.textArea": "Bölge Grafiği",
"DE.Views.Toolbar.textAutoColor": "Otomatik",
@ -1395,24 +1415,26 @@
"DE.Views.Toolbar.textEvenPage": "Çift Sayfa",
"DE.Views.Toolbar.textFitPage": "Sayfaya Sığdır",
"DE.Views.Toolbar.textFitWidth": "Genişliğe Sığdır",
"DE.Views.Toolbar.textGotoFootnote": "Dipnotlara git",
"DE.Views.Toolbar.textHideLines": "Cetvelleri Gizle",
"DE.Views.Toolbar.textHideStatusBar": "Durum Çubuğunu Gizle",
"DE.Views.Toolbar.textHideTitleBar": "Başlık Çubuğunu Gizle",
"DE.Views.Toolbar.textInMargin": "Kenar boşluğunda",
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break",
"DE.Views.Toolbar.textInsertPageCount": "Sayfa sayısı ekle",
"DE.Views.Toolbar.textInsertPageNumber": "Sayfa numarası ekle",
"DE.Views.Toolbar.textInsPageBreak": "Sayfa Kesmesi Ekle",
"DE.Views.Toolbar.textInsSectionBreak": "Bölüm kesmesi ekle",
"DE.Views.Toolbar.textInsText": "Insert text box",
"DE.Views.Toolbar.textInsTextArt": "Insert Text Art",
"DE.Views.Toolbar.textInText": "Metinde",
"DE.Views.Toolbar.textItalic": "İtalik",
"DE.Views.Toolbar.textLandscape": "Yatay",
"DE.Views.Toolbar.textLeft": "Left: ",
"DE.Views.Toolbar.textLine": "Çizgi grafiği",
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
"DE.Views.Toolbar.textMarginsNormal": "Normal",
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.Toolbar.textNextPage": "Sonraki Sayfa",
@ -1422,8 +1444,8 @@
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
"DE.Views.Toolbar.textPie": "Dilim grafik",
"DE.Views.Toolbar.textPoint": "Nokta grafiği",
"DE.Views.Toolbar.textPortrait": "Dikey",
"DE.Views.Toolbar.textRight": "Right: ",
"DE.Views.Toolbar.textStandartColors": "Standart Renkler",
"DE.Views.Toolbar.textStock": "Stok Grafiği",
"DE.Views.Toolbar.textStrikeout": "Üstü çizili",
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
@ -1434,7 +1456,6 @@
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
"DE.Views.Toolbar.textSubscript": "Altsimge",
"DE.Views.Toolbar.textSuperscript": "Üstsimge",
"DE.Views.Toolbar.textThemeColors": "Tema Renkleri",
"DE.Views.Toolbar.textTitleError": "Hata",
"DE.Views.Toolbar.textToCurrent": "Mevcut pozisyona",
"DE.Views.Toolbar.textTop": "Top: ",
@ -1474,9 +1495,8 @@
"DE.Views.Toolbar.tipMailRecepients": "Mail Merge",
"DE.Views.Toolbar.tipMarkers": "İmler",
"DE.Views.Toolbar.tipMultilevels": "Çerçeve",
"DE.Views.Toolbar.tipNewDocument": "Yeni Döküman",
"DE.Views.Toolbar.tipNotes": "Dipnotlar",
"DE.Views.Toolbar.tipNumbers": "Numaralandırma",
"DE.Views.Toolbar.tipOpenDocument": "Dökümanı Aç",
"DE.Views.Toolbar.tipPageBreak": "Sayfa yada Bölüm Kesmesi Ekle",
"DE.Views.Toolbar.tipPageMargins": "Page Margins",
"DE.Views.Toolbar.tipPageOrient": "Sayfa Orientasyonu",

View file

@ -27,6 +27,7 @@
{"src": "UsageInstructions/InsertFootnotes.htm", "name": "Insert footnotes" },
{"src": "UsageInstructions/InsertEquation.htm", "name": "Insert equations" },
{"src": "UsageInstructions/InsertTextObjects.htm", "name": "Insert text objects" },
{"src": "UsageInstructions/InsertRichTextContentControls.htm", "name": "Create forms" },
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Use mail merge"},
{"src": "UsageInstructions/ViewDocInfo.htm", "name": "View document information"},
{"src": "UsageInstructions/SavePrintDownload.htm", "name": "Save/download/print your document"},

View file

@ -12,7 +12,12 @@
<p><b>Document Editor</b> lets you change its advanced settings. To access them, click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Advanced Settings...</b> option. You can also use the <img alt="Advanced Settings icon" src="../images/advanced_settings_icon.png" /> icon in the right upper corner of the top toolbar.</p>
<p>The advanced settings are:</p>
<ul>
<li><b>Commenting Display</b> is used to turn on/off the live commenting option. If you disable this feature, the commented passages will be highlighted only if you click the <b>Comments</b> <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</li>
<li><b>Commenting Display</b> is used to turn on/off the live commenting option:
<ul>
<li><b>Turn on display of the comments</b> - if you disable this feature, the commented passages will be highlighted only if you click the <b>Comments</b> <img alt="Comments icon" src="../images/commentsicon.png" /> icon at the left sidebar.</li>
<li><b>Turn on display of the resolved comments</b> - if you disable this feature, the resolved comments will be hidden in the document text. You'll be able to view such comments only if you click the <b>Comments</b> <img alt="Comments icon" src="../images/commentsicon.png" /> icon at the left sidebar.</li>
</ul>
</li>
<li><b>Spell Checking</b> is used to turn on/off the spell checking option.</li>
<li><b>Alternate Input</b> is used to turn on/off hieroglyphs.</li>
<li><b>Alignment Guides</b> is used to turn on/off alignment guides that appear when you move objects and allow you to position them on the page precisely.</li>

View file

@ -50,14 +50,14 @@
<li>click the <b>Add Comment/Add</b> button.</li>
</ol>
<p>The comment will be seen on the panel on the left. Any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, click the <b>Add Reply</b> link situated under the comment.</p>
<p>The text passage you commented will be highlighted in the document. To view the comment, just click within the passage. If you need to disable this feature, click the <img alt="File icon" src="../images/file.png" /> icon, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on live commenting option</b> box. In this case the commented passages will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</p>
<p>The text passage you commented will be highlighted in the document. To view the comment, just click within the passage. If you need to disable this feature, click the <img alt="File icon" src="../images/file.png" /> icon, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on display of the comments</b> box. In this case the commented passages will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</p>
<p>You can manage the comments you added in the following way:</p>
<ul>
<li>edit them by clicking the <img alt="Edit icon" src="../images/editcommenticon.png" /> icon,</li>
<li>delete them by clicking the <img alt="Delete icon" src="../images/deletecommenticon.png" /> icon,</li>
<li>close the discussion by clicking the <img alt="Resolve icon" src="../images/resolveicon.png" /> icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the <img alt="Open again icon" src="../images/resolvedicon.png" /> icon.</li>
<li>close the discussion by clicking the <img alt="Resolve icon" src="../images/resolveicon.png" /> icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the <img alt="Open again icon" src="../images/resolvedicon.png" /> icon. If you want to hide resolved comments, click the <img alt="File icon" src="../images/file.png" /> icon, select the <b>Advanced Settings...</b> option and uncheck the <b>Turn on display of the resolved comments</b> box. In this case the resolved comments will be highlighted only if you click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon.</li>
</ul>
<p>New comments added by other users will become visible only after you click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p>
<p>If you are using the <b>Strict</b> co-editing mode, new comments added by other users will become visible only after you click the <img alt="Save icon" src="../images/saveupdate.png" /> icon in the left upper corner of the top toolbar.</p>
<p>To close the panel with comments, click the <img alt="Comments icon" src="../images/commentsicon.png" /> icon once again.</p>
</div>
</body>

View file

@ -9,6 +9,7 @@
<body>
<div class="mainpart">
<h1>Copy/paste text passages, undo/redo your actions</h1>
<h3>Use basic clipboard operations</h3>
<p>To cut, copy and paste text passages and inserted objects (autoshapes, images, charts) within the current document use the corresponding options from the right-click menu or icons at the top toolbar:</p>
<ul>
<li><b>Cut</b> select a text fragment or an object and use the <b>Cut</b> option from the right-click menu to delete the selection and send it to the computer clipboard memory. The cut data can be later inserted to another place in the same document.</li>
@ -23,6 +24,14 @@
<li><b>Ctrl+V</b> key combination for pasting.</li>
</ul>
<p class="note"><b>Note</b>: instead of cutting and pasting text within the same document you can just select the necessary text passage and drag and drop it to the necessary position.</p>
<h3>Use the Paste Special feature</h3>
<p>Once the copied text is pasted, the <b>Paste Special</b> <img alt="Paste Special" src="../images/pastespecialbutton.png" /> button appears next to the inserted text passage. Click this button to select the necessary paste option. </p>
<p>When pasting the paragraph text or some text within autoshapes, the following options are available:</p>
<ul>
<li><em>Paste</em> - allows to paste the copied text keeping its original formatting.</li>
<li><em>Keep text only</em> - allows to paste the text without its original formatting.</li>
</ul>
<h3>Undo/redo your actions</h3>
<p>To perform the undo/redo operations, use the corresponding icons at the top toolbar or keyboard shortcuts:</p>
<ul>
<li><b>Undo</b> use the <b>Undo</b> <img alt="Undo icon" src="../images/undo.png" /> icon at the top toolbar or the <b>Ctrl+Z</b> key combination to undo the last operation you performed.</li>

View file

@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>
<head>
<title>Create forms</title>
<meta charset="utf-8" />
<meta name="description" content="Insert rich text content controls to create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted" />
<link type="text/css" rel="stylesheet" href="../editor.css" />
<script type="text/javascript" src="../callback.js"></script>
</head>
<body>
<div class="mainpart">
<h1>Create forms</h1>
<p>Using rich text content controls you can create a form with input fields that can be filled in by other users, or protect some parts of the document from being edited or deleted. Rich text content controls are objects containing text that can be formatted. Inline controls cannot contain more than one paragraph, while floating controls can contain several paragraphs, lists, and objects (images, shapes, tables etc.). </p>
<h3>Adding controls</h3>
<p>To create a new <b>inline</b> control,</p>
<ol>
<li>position the insertion point within a line of the text where you want the control to be added,<br />or select a text passage you want to become the control contents.</li>
<li>press <b>Shift+F1</b></li>
</ol>
<p>The control will be inserted at the insertion point within a line of the existing text. Inline controls do not allow adding line breaks and cannot contain other objects such as images, tables etc.</p>
<p><img alt="New inline content control" src="../images/addedcontentcontrol.png" /></p>
<p>To create a new <b>floating</b> control,</p>
<ol>
<li>position the insertion point at the end of a paragraph after which you want the control to be added,<br />or select one or more of the existing paragraphs you want to become the control contents.</li>
<li>press <b>Shift+F2</b></li>
</ol>
<p>The control will be inserted in a new paragraph. Floating controls allow adding line breaks, i.e. can contain multiple paragraphs as well as some objects, such as images, tables, other content controls etc.</p>
<p><img alt="Floating content control" src="../images/floatingcontentcontrol.png" /></p>
<p class="note"><b>Note</b>: The content control border is visible when the control is selected only. The borders do not appear on a printed version.</p>
<h3>Moving controls</h3>
<p>Controls can be <b>moved</b> to another place in the document: click the button to the left of the control border to select the control and drag it without releasing the mouse button to another position in the document text.</p>
<p><img alt="Moving content control" src="../images/movecontentcontrol.png" /></p>
<p>You can also <b>copy and paste</b> inline controls: select the necessary control and use the <b>Ctrl+C/Ctrl+V</b> key combinations.</p>
<h3>Editing control contents</h3>
<p>To switch to the control editing mode, press <b>Shift+F9</b>. You will be able to navigate between the controls only using the keyboard arrow buttons. <!--To exit from this mode and be able to edit regular text in your document--></p>
<p>Replace the default text within the control ("Your text here") with your own one: select the default text, press the <b>Delete</b> key and type in a new text or copy a text passage from anywhere and paste it into the content control.</p>
<p>Text within the rich text content control of any type (both inline and floating) can be formatted using the icons on the top toolbar: you can adjust the <a href="../UsageInstructions/FontTypeSizeColor.htm" onclick="onhyperlinkclick(this)">font type, size, color</a>, apply <a href="../UsageInstructions/DecorationStyles.htm" onclick="onhyperlinkclick(this)">decoration styles</a> and <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">formatting presets</a>. It's also possible to use the <b>Paragraph - Advanced settings</b> window accessible from the contextual menu or from the right sidebar to change the text properties. Text within floating controls can be formatted like a regular text of the document, i.e. you can set <a href="../UsageInstructions/LineSpacing.htm" onclick="onhyperlinkclick(this)">line spacing</a>, change <a href="../UsageInstructions/ParagraphIndents.htm" onclick="onhyperlinkclick(this)">paragraph indents</a>, adjust <a href="../UsageInstructions/SetTabStops.htm" onclick="onhyperlinkclick(this)">tab stops</a>.</p>
<h3>Protecting controls</h3>
<p>You can prevent users from editing or deleting some individual content controls. Use one of the following keyboard shortcuts:</p>
<ul>
<li>To protect a control from being edited (but not from being deleted), select the necessary control and press <b>Shift+F6</b></li>
<li>To protect a control from being deleted (but not from being edited), select the necessary control and press <b>Shift+F7</b></li>
<li>To protect a control from being both edited and deleted, select the necessary control and press <b>Shift+F8</b></li>
<li>To disable the protection from editing/deleting, select the necessary control and press <b>Shift+F5</b></li>
</ul>
<h3>Removing controls</h3>
<p>If you do not need a control anymore, you can use one of the following keyboard shortcuts:</p>
<ul>
<li>To remove a control and all its contents, select the necessary control and press <b>Shift+F3</b></li>
<li>To remove a control and leave all its contents, select the necessary control and press <b>Shift+F4</b></li>
</ul>
</div>
</body>
</html>

View file

@ -46,6 +46,8 @@
<li><b>Left</b> <img alt="Left column icon" src="../images/leftcolumn.png" /> - to add two columns: a narrow column on the left and a wide column on the right,</li>
<li><b>Right</b> <img alt="Right column icon" src="../images/rightcolumn.png" /> - to add two columns: a narrow column on the right and a wide column on the left.</li>
</ul>
<p>If you want to adjust column settings, select the <b>Custom Columns</b> option from the list. The <b>Columns</b> window will open where you'll be able to set necessary <b>Number of columns</b> (it's possible to add up to 12 columns) and <b>Spacing between columns</b>. Enter your new values into the entry fields or adjust the existing values using arrow buttons. Check the <b>Column divider</b> box to add a vertical line between the columns. When ready, click <b>OK</b> to apply the changes.</p>
<p><img alt="Custom Columns" src="../images/customcolumns.png" /></p>
<p>To exactly specify where a new column should start, place the cursor before the text that you want to move into the new column, click the <b>Insert Page or Section Break</b> <img alt="Insert Page or Section Break" src="../images/pagebreak1.png" /> icon at the top toolbar and then select the <b>Insert Column Break</b> option. The text will be moved to the next column.</p>
<p>Added column breaks are indicated in your document by a dotted line: <img alt="Column break" src="../images/columnbreak.png" />. If you do not see the inserted column breaks, click the <img alt="Nonprinting Characters icon" src="../images/nonprintingcharacters.png" /> icon at the top toolbar to display them. To remove a column break select it with the mouse and press the <b>Delete</b> key.</p>
<p>To manually change the column width and spacing, you can use the horizontal ruler.</p>

View file

@ -12,6 +12,7 @@
<p>To access the detailed information about the currently edited document, click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar and select the <b>Document Info...</b> option.</p>
<h3>General Information</h3>
<p>The document information includes document title, author, location, creation date, and statistics: the number of pages, paragraphs, words, symbols, symbols with spaces.</p>
<p class="note"><b>Note</b>: Online Editors allow you to change the document title directly from the editor interface. To do that, select the <b>Rename...</b> option from the <b>File</b> <img alt="File icon" src="../images/file.png" /> menu or click on the file name displayed in the editor header next to the logo (in the upper left corner), then enter the necessary <b>File name</b> in a new window that opens and click <b>OK</b>.</p>
<div class="onlineDocumentFeatures">
<h3>Permission Information</h3>
<p class="note"><b>Note</b>: this option is not available for users with the <b>Read Only</b> permissions.</p>
@ -21,7 +22,7 @@
<p class="note"><b>Note</b>: this option is not available for free accounts as well as for users with the <b>Read Only</b> permissions.</p>
<p>To view all the changes made to this document, select the <b>Version History</b> option at the left sidebar. You'll see the list of this document versions (major changes) and revisions (minor changes) with the indication of each version/revision author and creation date and time. For document versions, the version number is also specified (e.g. <em>ver. 2</em>). To know exactly which changes have been made in each separate version/revision, you can view the one you need by clicking it at the left sidebar. The changes made by the version/revision author are marked with the color which is displayed next to the author name on the left sidebar. To return to the document current version, click the <b>Back to Document</b> link on the top of the version list.</p>
</div>
<p>To close the <b>File</b> panel and return to document editing, select the <b>Back to Document</b> option.</p>
<p>To close the <b>File</b> panel and return to document editing, select the <b>Close Menu</b> option.</p>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

View file

@ -27,6 +27,7 @@
{"src": "UsageInstructions/InsertFootnotes.htm", "name": "Вставка сносок" },
{"src": "UsageInstructions/InsertEquation.htm", "name": "Вставка формул" },
{"src": "UsageInstructions/InsertTextObjects.htm", "name": "Вставка текстовых объектов" },
{"src": "UsageInstructions/InsertRichTextContentControls.htm", "name": "Создание форм" },
{"src": "UsageInstructions/UseMailMerge.htm", "name": "Использование слияния"},
{"src":"UsageInstructions/ViewDocInfo.htm", "name": "Просмотр сведений о документе"},
{"src":"UsageInstructions/SavePrintDownload.htm", "name": "Сохранение/загрузка/печать документа"},

View file

@ -12,7 +12,12 @@
<p>Вы можете изменить дополнительные параметры онлайн-редактора документов. Для перехода к ним щелкните по значку <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Дополнительные параметры...</b>. Можно также использовать значок <img alt="Значок Дополнительные параметры" src="../images/advanced_settings_icon.png" />, расположенный в правом верхнем углу верхней панели инструментов.</p>
<p>Доступны следующие дополнительные параметры:</p>
<ul>
<li><b>Отображение комментариев</b> - используется для включения/отключения опции комментирования в реальном времени. Если отключить эту функцию, прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок <b>Комментарии</b> <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</li>
<li><b>Отображение комментариев</b> - используется для включения/отключения опции комментирования в реальном времени:
<ul>
<li><b>Включить отображение комментариев в тексте</b> - если отключить эту функцию, прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок <b>Комментарии</b> <img alt="Значок Комментарии" src="../images/commentsicon.png" /> на левой боковой панели.</li>
<li><b>Включить отображение решенных комментариев</b> - если отключить эту функцию, решенные комментарии в тексте документа будут скрыты. Просмотреть такие комментарии можно будет только при нажатии на значок <b>Комментарии</b> <img alt="Значок Комментарии" src="../images/commentsicon.png" /> на левой боковой панели.</li>
</ul>
</li>
<li><b>Проверка орфографии</b> - используется для включения/отключения опции проверки орфографии.</li>
<li><b>Альтернативный ввод</b> - используется для включения/отключения иероглифов.</li>
<li><b>Направляющие выравнивания</b> - используется для включения/отключения направляющих выравнивания, которые появляются при перемещении объектов и позволяют точно расположить их на странице.</li>

View file

@ -53,14 +53,14 @@
<li>нажмите кнопку <b>Добавить</b>.</li>
</ol>
<p>Комментарий появится на панели слева. Любой другой пользователь может ответить на добавленный комментарий, чтобы дать ответ на вопросы или отчитаться о проделанной работе. Для этого надо нажать на ссылку <b>Добавить ответ</b>, расположенную под комментарием.</p>
<p>Фрагмент текста, который Вы прокомментировали, будет подсвечен в документе. Для просмотра комментария щелкните по этому фрагменту. Если требуется отключить эту функцию, нажмите на значок <img alt="Значок Файл" src="../images/file.png" />, выберите опцию <b>Дополнительные параметры...</b> и снимите флажок <b>Включить опцию комментирования в реальном времени</b>. В этом случае прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</p>
<p>Фрагмент текста, который Вы прокомментировали, будет подсвечен в документе. Для просмотра комментария щелкните по этому фрагменту. Если требуется отключить эту функцию, нажмите на значок <img alt="Значок Файл" src="../images/file.png" />, выберите опцию <b>Дополнительные параметры...</b> и снимите флажок <b>Включить отображение комментариев в тексте</b>. В этом случае прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</p>
<p>Вы можете управлять добавленными комментариями следующим образом:</p>
<ul>
<li>отредактировать их, нажав значок <img alt="Значок Редактировать" src="../images/editcommenticon.png" />,</li>
<li>удалить их, нажав значок <img alt="Значок Удалить" src="../images/deletecommenticon.png" />,</li>
<li>закрыть обсуждение, нажав на значок <img alt="Значок Решить" src="../images/resolveicon.png" />, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок <img alt="Значок Открыть снова" src="../images/resolvedicon.png" />.</li>
<li>закрыть обсуждение, нажав на значок <img alt="Значок Решить" src="../images/resolveicon.png" />, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок <img alt="Значок Открыть снова" src="../images/resolvedicon.png" />. Если Вы хотите скрыть решенные комментарии, нажмите на значок <img alt="Значок Файл" src="../images/file.png" />, выберите опцию <b>Дополнительные параметры...</b> и снимите флажок <b>Включить отображение решенных комментариев</b>. В этом случае решенные комментарии будут подсвечиваться, только когда Вы нажмете на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" />.</li>
</ul>
<p>Новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок <img alt="Значок Сохранить и получить обновления" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов.</p>
<p>Если Вы используете <b>Строгий</b> режим совместного редактирования, новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок <img alt="Значок Сохранить и получить обновления" src="../images/saveupdate.png" /> в левом верхнем углу верхней панели инструментов.</p>
<p>Чтобы закрыть панель с комментариями, нажмите на значок <img alt="Значок Комментарии" src="../images/commentsicon.png" /> еще раз.</p>
</div>
</body>

View file

@ -9,6 +9,7 @@
<body>
<div class="mainpart">
<h1>Копирование/вставка текста, отмена/повтор действий</h1>
<h3>Использование основных операций с буфером обмена</h3>
<p>Для выполнения операций вырезания, копирования и вставки фрагментов текста и вставленных объектов (автофигур, рисунков, диаграмм) в текущем документе используйте соответствующие команды контекстного меню или значки на верхней панели инструментов:</p>
<ul>
<li><b>Вырезать</b> выделите фрагмент текста или объект и используйте опцию контекстного меню <b>Вырезать</b>, чтобы удалить выделенный фрагмент и отправить его в буфер обмена компьютера. Вырезанные данные можно затем вставить в другое место этого же документа.</li>
@ -22,6 +23,14 @@
<li>сочетание клавиш <b>Ctrl+V</b> для вставки.</li>
</ul>
<p class="note"><b>Примечание</b>: вместо того чтобы вырезать и вставлять текст в рамках одного и того же документа, можно просто выделить нужный фрагмент текста и перетащить его мышкой в нужное место.</p>
<h3>Использование функции Специальная вставка</h3>
<p>После вставки скопированного текста рядом со вставленным фрагментом текста появляется кнопка <b>Специальная вставка</b> <img alt="Специальная вставка" src="../images/pastespecialbutton.png" />. Нажмите на эту кнопку, чтобы выбрать нужный параметр вставки. </p>
<p>При вставке текста абзаца или текста в автофигурах доступны следующие параметры:</p>
<ul>
<li><em>Вставить</em> - позволяет вставить скопированный текст, сохранив его исходное форматирование.</li>
<li><em>Сохранить только текст</em> - позволяет вставить текст без исходного форматирования.</li>
</ul>
<h3>Отмена / повтор действий</h3>
<p>Для выполнения операций отмены/повтора используйте соответствующие значки на верхней панели инструментов или сочетания клавиш:</p>
<ul>
<li><b>Отменить</b> чтобы отменить последнее выполненное действие, используйте значок <b>Отменить</b> <img alt="Значок Отменить" src="../images/undo.png" /> на верхней панели инструментов или сочетание клавиш <b>Ctrl+Z</b>.</li>

View file

@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>
<head>
<title>Создание форм</title>
<meta charset="utf-8" />
<meta name="description" content="Вставляйте элементы управления содержимым 'форматированный текст' создать форму с полями ввода, которую могут заполнять другие пользователи, или защитить некоторые части документа от редактирования или удаления" />
<link type="text/css" rel="stylesheet" href="../editor.css" />
<script type="text/javascript" src="../callback.js"></script>
</head>
<body>
<div class="mainpart">
<h1>Создание форм</h1>
<p>Используя элементы управления содержимым "форматированный текст", вы можете создать форму с полями ввода, которую могут заполнять другие пользователи, или защитить некоторые части документа от редактирования или удаления. Элементы управления содержимым "форматированный текст" - это объекты, содержащие текст, который можно форматировать. Встроенные элементы управления могут содержать не более одного абзаца, тогда как плавающие элементы управления могут содержать несколько абзацев, списки и объекты (изображения, фигуры, таблицы и так далее). </p>
<h3>Добавление элементов управления</h3>
<p>Для создания нового <b>встроенного</b> элемента управления,</p>
<ol>
<li>установите курсор в строке текста там, где требуется добавить элемент управления,<br />или выделите фрагмент текста, который должен стать содержимым элемента управления.</li>
<li>нажмите сочетание клавиш <b>Shift+F1</b></li>
</ol>
<p>Элемент управления будет вставлен в позицию курсора в строке существующего текста. Встроенные элементы управления не позволяют добавлять разрывы строки и не могут содержать другие объекты, такие как изображения, таблицы и так далее.</p>
<p><img alt="Новый встроенный элемент управления" src="../images/addedcontentcontrol.png" /></p>
<p>Для создания нового <b>плавающего</b> элемента управления,</p>
<ol>
<li>установите курсор в конце абзаца, после которого требуется добавить элемент управления,<br />или выделите один или несколько существующих абзацев, которые должны стать содержимым элемента управления.</li>
<li>нажмите сочетание клавиш <b>Shift+F2</b></li>
</ol>
<p>Элемент управления будет вставлен в новом абзаце. Плавающие элементы управления позволяют добавлять разрывы строки, то есть могут содержать несколько абзацев, а также какие-либо объекты, такие как изображения, таблицы, другие элементы управления содержимым и так далее.</p>
<p><img alt="Плавающий элемент управления" src="../images/floatingcontentcontrol.png" /></p>
<p class="note"><b>Примечание</b>: Граница элемента управления содержимым видна только при выделении элемента управления. Границы не отображаются в печатной версии.</p>
<h3>Перемещение элементов управления</h3>
<p>Элементы управления можно <b>перемещать</b> на другое место в документе: нажмите на кнопку слева от границы элемента управления, чтобы выделить элемент управления, и перетащите его, не отпуская кнопку мыши, на другое место в тексте документа.</p>
<p><img alt="Перемещение элементов управления" src="../images/movecontentcontrol.png" /></p>
<p>Встроенные элементы управления можно также <b>копировать и вставлять</b>: выделите нужный элемент управления и используйте сочетания клавиш <b>Ctrl+C/Ctrl+V</b>.</p>
<h3>Редактирование содержимого элементов управления</h3>
<p>Для перехода в режим редактирования элементов управления нажмите сочетание клавиш <b>Shift+F9</b>. Вы сможете перемещаться только между элементами управления, используя кнопки со стрелками на клавиатуре. <!--To exit from this mode and be able to edit regular text in your document--></p>
<p>Замените стандартный текст в элементе управления ("Введите ваш текст") на свой собственный: выделите стандартный текст, нажмите клавишу <b>Delete</b> и введите новый текст или скопируйте откуда-нибудь фрагмент текста и вставьте его в элемент управления содержимым.</p>
<p>Текст внутри элемента управления содержимым "форматированный текст" любого типа (и встроенного, и плавающего) можно отформатировать с помощью значков на верхней панели инструментов: вы можете изменить <a href="../UsageInstructions/FontTypeSizeColor.htm" onclick="onhyperlinkclick(this)">тип, размер, цвет шрифта</a>, применить <a href="../UsageInstructions/DecorationStyles.htm" onclick="onhyperlinkclick(this)">стили оформления</a> и <a href="../UsageInstructions/FormattingPresets.htm" onclick="onhyperlinkclick(this)">предустановленные стили форматирования</a>. Для изменения свойств текста можно также использовать окно <b>Абзац - Дополнительные параметры</b>, доступное из контекстного меню или с правой боковой панели. Текст в плавающих элементах управления можно форматировать, как обычный текст документа, то есть вы можете задать <a href="../UsageInstructions/LineSpacing.htm" onclick="onhyperlinkclick(this)">междустрочный интервал</a>, изменить <a href="../UsageInstructions/ParagraphIndents.htm" onclick="onhyperlinkclick(this)">отступы абзаца</a>, настроить <a href="../UsageInstructions/SetTabStops.htm" onclick="onhyperlinkclick(this)">позиции табуляции</a>.</p>
<h3>Защита элементов управления</h3>
<p>Можно запретить пользователям редактирование или удаление некоторых отдельных элементов управления содержимым. Используйте одно из следующих сочетаний клавиш:</p>
<ul>
<li>Чтобы защитить элемент управления от редактирования (но не от удаления), выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F6</b></li>
<li>Чтобы защитить элемент управления от удаления (но не от редактирования), выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F7</b></li>
<li>Чтобы защитить элемент управления от редактирования и удаления одновременно, выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F8</b></li>
<li>Чтобы снять защиту от редактирования/удаления, выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F5</b></li>
</ul>
<h3>Удаление элементов управления</h3>
<p>Если вам больше не нужен какой-то элемент управления, вы можете использовать одно из следующих сочетаний клавиш:</p>
<ul>
<li>Чтобы удалить элемент управления и все его содержимое, выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F3</b></li>
<li>Чтобы удалить элемент управления и оставить все его содержимое, выделите нужный элемент управления и нажмите сочетание клавиш <b>Shift+F4</b></li>
</ul>
</div>
</body>
</html>

View file

@ -49,10 +49,10 @@
<li>задать <a href="../UsageInstructions/LineSpacing.htm" onclick="onhyperlinkclick(this)">междустрочный интервал</a>, изменить <a href="../UsageInstructions/ParagraphIndents.htm" onclick="onhyperlinkclick(this)">отступы абзаца</a>, настроить <a href="../UsageInstructions/SetTabStops.htm" onclick="onhyperlinkclick(this)">позиции табуляции</a> для многострочного текста внутри текстового поля</li>
<li>вставить <a href="../UsageInstructions/AddHyperlinks.htm" onclick="onhyperlinkclick(this)">гиперссылку</a></li>
</ul>
<p>Можно также нажать на значок <b>Параметры объекта Text Art</b> <img alt="Значок Параметры объекта Text Art" src="../images/textart_settings_icon.png" /> на правой боковой панели и изменить некоторые параметры стиля.</p>
<p>Можно также нажать на значок <b>Параметры объектов Text Art</b> <img alt="Значок Параметры объектов Text Art" src="../images/textart_settings_icon.png" /> на правой боковой панели и изменить некоторые параметры стиля.</p>
<h3>Изменение стиля объекта Text Art</h3>
<p>Выделите текстовый объект и щелкните по значку <b>Параметры объекта Text Art</b> <img alt="Значок Параметры объекта Text Art" src="../images/textart_settings_icon.png" /> на правой боковой панели.</p>
<p><img alt="Вкладка Параметры объекта Text Art" src="../images/right_textart.png" /></p>
<p>Выделите текстовый объект и щелкните по значку <b>Параметры объектов Text Art</b> <img alt="Значок Параметры объектов Text Art" src="../images/textart_settings_icon.png" /> на правой боковой панели.</p>
<p><img alt="Вкладка Параметры объектов Text Art" src="../images/right_textart.png" /></p>
<p>Измените примененный стиль текста, выбрав из галереи новый <b>Шаблон</b>. Можно также дополнительно изменить этот базовый стиль, выбрав другой тип, размер шрифта и т.д.</p>
<p>Измените <b>Заливку</b> шрифта. Можно выбрать следующие варианты:</p>
<ul>

View file

@ -46,6 +46,8 @@
<li><b>Слева</b> <img alt="Значок колонок Слева" src="../images/leftcolumn.png" /> - чтобы добавить две колонки: узкую слева и широкую справа,</li>
<li><b>Справа</b> <img alt="Значок колонок Справа" src="../images/rightcolumn.png" /> - чтобы добавить две колонки: узкую справа и широкую слева.</li>
</ul>
<p>Если требуется изменить параметры колонок, выберите из списка опцию <b>Настраиваемые колонки</b>. Откроется окно <b>Колонки</b>, в котором можно будет указать нужное <b>Количество колонок</b> (можно добавить не более 12 колонок) и <b>Интервал между колонками</b>. Введите новые значения в поля ввода или скорректируйте имеющиеся значения с помощью кнопок со стрелками. Отметьте опцию <b>Разделитель</b>, чтобы добавить вертикальную линию между колонками. Когда все будет готово, нажмите кнопку <b>OK</b>, чтобы применить изменения.</p>
<p><img alt="Настраиваемые колонки" src="../images/customcolumns.png" /></p>
<p>Чтобы точно определить, где должна начинаться новая колонка, установите курсор перед текстом, который требуется перенести в новую колонку, нажмите на значок <b>Вставить разрыв страницы или раздела</b> <img alt="Разрыв страницы" src="../images/pagebreak1.png" /> на верхней панели инструментов, а затем выберите опцию <b>Вставить разрыв колонки</b>. Текст будет перенесен в следующую колонку.</p>
<p>Добавленные разрывы колонок обозначаются в документе пунктирной линией: <img alt="Разрыв колонки" src="../images/columnbreak.png" />. Если вы не видите вставленных разрывов колонок, для их отображения нужно нажать на кнопку <img alt="Значок Непечатаемые символы" src="../images/nonprintingcharacters.png" /> на верхней панели инструментов. Для того чтобы убрать разрыв колонки, выделите его мышью и нажмите клавишу <b>Delete</b>.</p>
<p>Чтобы вручную изменить ширину колонок и расстояние между ними, можно использовать горизонтальную линейку.</p>

View file

@ -12,6 +12,7 @@
<p>Чтобы получить доступ к подробным сведениям о редактируемом документе, нажмите значок <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> на левой боковой панели и выберите опцию <b>Сведения о документе...</b>.</p>
<h3>Общие сведения</h3>
<p>Сведения о документе включают название документа, автора, размещение, дату создания, а также статистику: количество страниц, абзацев, слов, символов, символов с пробелами.</p>
<p class="note"><b>Примечание</b>: используя онлайн-редакторы, вы можете изменить название документа непосредственно из интерфейса редактора. Для этого выберите опцию <b>Переименовать...</b> в меню <b>Файл</b> <img alt="Значок Файл" src="../images/file.png" /> или щелкните по имени файла, отображенному в шапке редактора рядом с логотипом (в левом верхнем углу), затем введите нужное <b>Имя файла</b> в новом открывшемся окне и нажмите кнопку <b>OK</b>.</p>
<div class="onlineDocumentFeatures">
<h3>Сведения о правах доступа</h3>
<p class="note"><b>Примечание</b>: эта опция недоступна для пользователей с правами доступа <b>Только чтение</b>.</p>
@ -20,7 +21,7 @@
<h3>Журнал версий</h3>
<p class="note"><b>Примечание</b>: эта опция недоступна для бесплатных аккаунтов, а также для пользователей с правами доступа <b>Только чтение</b>.</p>
<p>Чтобы просмотреть все внесенные в документ изменения, выберите опцию <b>Журнал версий</b> на левой боковой панели. Вы увидите список версий (существенных изменений) и ревизий (незначительных изменений) этого документа с указанием автора и даты и времени создания каждой версии/ревизии. Для версий документа также указан номер версии (например, <em>вер. 2</em>). Чтобы точно знать, какие изменения были внесены в каждой конкретной версии/ревизии, можно просмотреть нужную, нажав на нее на левой боковой панели. Изменения, внесенные автором версии/ревизии, помечены цветом, который показан рядом с именем автора на левой боковой панели. Чтобы вернуться к текущей версии документа, нажмите на ссылку <b>Вернуться к документу</b> над списком версий.</p>
<p>Чтобы закрыть панель <b>Файл</b> и вернуться к редактированию документа, выберите опцию <b>Вернуться к документу</b>.</p>
<p>Чтобы закрыть панель <b>Файл</b> и вернуться к редактированию документа, выберите опцию <b>Закрыть меню</b>.</p>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 53 KiB

View file

@ -171,7 +171,7 @@
background-position: -250px 0;
}
.btn-toolbar .icon.btn-borders-small {
.btn-toolbar:not(.x-huge) .icon:not(svg).btn-borders-small {
.background-ximage('@{app-image-path}/right-panels/SmallBorders.png', '@{app-image-path}/right-panels/SmallBorders@2x.png', 84px);
}

View file

@ -51,6 +51,8 @@ require.config({
text : '../vendor/requirejs-text/text',
xregexp : '../vendor/xregexp/xregexp-all-min',
sockjs : '../vendor/sockjs/sockjs.min',
jszip : '../vendor/jszip/jszip.min',
jsziputils : '../vendor/jszip-utils/jszip-utils.min',
api : 'api/documents/api',
core : 'common/main/lib/core/application',
extendes : 'common/mobile/utils/extendes',
@ -115,6 +117,8 @@ require([
'analytics',
'gateway',
'locale',
'jszip',
'jsziputils',
'sockjs'
], function (Backbone, Framework7, Core) {
Backbone.history.start();

View file

@ -51,6 +51,8 @@ require.config({
text : '../vendor/requirejs-text/text',
xregexp : '../vendor/xregexp/xregexp-all-min',
sockjs : '../vendor/sockjs/sockjs.min',
jszip : '../vendor/jszip/jszip.min',
jsziputils : '../vendor/jszip-utils/jszip-utils.min',
allfonts : '../../sdkjs/common/AllFonts',
sdk : '../../sdkjs/word/sdk-all-min',
api : 'api/documents/api',
@ -100,7 +102,9 @@ require.config({
'underscore',
'allfonts',
'xregexp',
'sockjs'
'sockjs',
'jszip',
'jsziputils'
]
},
gateway: {

View file

@ -142,12 +142,12 @@ define([
{
title: 'Left arrow callout',
thumb: 'shape-15.svg',
type: 'leftArrowCallout'
type: 'leftArrow'
},
{
title: 'Right arrow callout',
thumb: 'shape-16.svg',
type: 'rightArrowCallout'
type: 'bentUpArrow'
},
{
title: 'Flow chart off page connector',

View file

@ -1,9 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill-rule:evenodd;clip-rule:evenodd;}
</style>
<path class="st0" d="M17,8.5h31.5L56,16v31.5L48.5,55H17l-7.5-7.5V16L17,8.5z"/>
viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<polygon points="18.576,55 5.153,31.75 18.576,8.5 45.424,8.5 58.848,31.75 45.424,55 "/>
</svg>

Before

Width:  |  Height:  |  Size: 517 B

After

Width:  |  Height:  |  Size: 539 B

View file

@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<g>
<polygon id="XMLID_2_" points="56,30 56,25 25,25 25,14 9.5,27.3 25,40.5 25,30 51,30 51,50 56,50 56,30 "/>
</g>
viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<path d="M32.5,55.5l-23-23.3L32.5,9v13H56v20H32.5V55.5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 477 B

After

Width:  |  Height:  |  Size: 510 B

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<g id="XMLID_3_">
<polygon id="XMLID_2_" points="9.5,30 9.5,25 40.5,25 40.5,14 56,27.3 40.5,40.5 40.5,30 14.5,30 14.5,50 9.5,50 9.5,30 "/>
</g>
viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<polygon id="XMLID_2_" points="43.75,53.25 43.75,25.25 53.75,25.25 38.45,7.75 23.25,25.25 32.75,25.25 32.75,42.25 11.75,42.25
11.75,53.25 "/>
</svg>

Before

Width:  |  Height:  |  Size: 506 B

After

Width:  |  Height:  |  Size: 596 B

View file

@ -98,6 +98,7 @@ var sdk_dev_scrpipts = [
"../../../../sdkjs/word/Editor/Paragraph/ParaTextPrChanges.js",
"../../../../sdkjs/word/Editor/Paragraph/ParaDrawing.js",
"../../../../sdkjs/word/Editor/Paragraph/ParaDrawingChanges.js",
"../../../../sdkjs/word/Editor/Paragraph/ComplexField.js",
"../../../../sdkjs/word/Editor/Paragraph.js",
"../../../../sdkjs/word/Editor/ParagraphChanges.js",
"../../../../sdkjs/word/Editor/DocumentContentBase.js",

View file

@ -45,8 +45,8 @@ require.config({
// scripts that do not call define() to register a module
baseUrl: '../../',
paths: {
jquery : '../vendor/jquery/jquery',
underscore : '../vendor/underscore/underscore',
jquery : '../vendor/jquery/jquery.min',
underscore : '../vendor/underscore/underscore-min',
xregexp : '../vendor/xregexp/xregexp-all-min',
sockjs : '../vendor/sockjs/sockjs.min',
allfonts : '../../sdkjs/common/AllFonts',
@ -109,6 +109,7 @@ require([
docInfo.put_Token(data.token);
}
api.preloadReporter(data);
api.SetThemesPath("../../../../sdkjs/slide/themes/");
api.asc_setDocInfo( docInfo );
api.asc_getEditorPermissions();

View file

@ -57,23 +57,24 @@ define([
initialize: function() {
this._state = { no_slides: undefined };
this.addListeners({
/** coauthoring begin **/
'Common.Views.Chat': {
'hide': _.bind(this.onHideChat, this)
},
'Common.Views.Header': {
'click:users': _.bind(this.clickStatusbarUsers, this)
},
'Common.Views.Plugins': {
'plugin:open': _.bind(this.onPluginOpen, this)
},
'Common.Views.About': {
'show': _.bind(this.aboutShowHide, this, false),
'hide': _.bind(this.aboutShowHide, this, true)
},
'LeftMenu': {
'panel:show': _.bind(this.menuExpand, this),
'comments:show': _.bind(this.commentsShowHide, this, 'show'),
'comments:hide': _.bind(this.commentsShowHide, this, 'hide')
},
/** coauthoring end **/
'Common.Views.About': {
'show': _.bind(this.aboutShowHide, this, false),
'hide': _.bind(this.aboutShowHide, this, true)
},
'FileMenu': {
'menu:hide': _.bind(this.menuFilesShowHide, this, 'hide'),
'menu:show': _.bind(this.menuFilesShowHide, this, 'show'),
@ -153,6 +154,14 @@ define([
this.leftMenu.setMode(mode);
this.leftMenu.getMenu('file').setMode(mode);
if (!mode.isEdit) // TODO: unlock 'save as', 'open file menu' for 'view' mode
Common.util.Shortcuts.removeShortcuts({
shortcuts: {
'command+shift+s,ctrl+shift+s': _.bind(this.onShortcut, this, 'save'),
'alt+f': _.bind(this.onShortcut, this, 'file')
}
});
return this;
},
@ -179,7 +188,7 @@ define([
enablePlugins: function() {
if (this.mode.canPlugins) {
this.leftMenu.btnPlugins.show();
// this.leftMenu.btnPlugins.show();
this.leftMenu.setOptionsPanel('plugins', this.getApplication().getController('Common.Controllers.Plugins').getView('Common.Views.Plugins'));
} else
this.leftMenu.btnPlugins.hide();
@ -456,10 +465,14 @@ define([
}
return false;
case 'help':
if ( this.mode.isEdit ) { // TODO: unlock 'help' panel for 'view' mode
if (!previewPanel || !previewPanel.isVisible()){
Common.UI.Menu.Manager.hideAll();
this.leftMenu.showMenu('file:help');
}
}
return false;
case 'file':
if (!previewPanel || !previewPanel.isVisible()) {
@ -514,6 +527,19 @@ define([
}
},
onPluginOpen: function(panel, type, action) {
if ( type == 'onboard' ) {
if ( action == 'open' ) {
this.leftMenu.close();
this.leftMenu.btnThumbs.toggle(false, false);
this.leftMenu.panelPlugins.show();
this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}});
} else {
this.leftMenu.close();
}
}
},
textNoTextFound : 'Text not found',
newDocumentTitle : 'Unnamed document',
requestEditRightsText : 'Requesting editing rights...'

View file

@ -141,7 +141,8 @@ define([
'Slide number': this.txtSlideNumber,
'Slide subtitle': this.txtSlideSubtitle,
'Table': this.txtSldLtTTbl,
'Slide title': this.txtSlideTitle
'Slide title': this.txtSlideTitle,
'Loading': this.txtLoading
}
});
@ -413,17 +414,16 @@ define([
if (action) {
this.setLongActionView(action)
} else {
var me = this;
if ((id==Asc.c_oAscAsyncAction['Save'] || id==Asc.c_oAscAsyncAction['ForceSaveButton']) && !this.appOptions.isOffline) {
if (this._state.fastCoauth && this._state.usersCount>1) {
var me = this;
me._state.timerSave = setTimeout(function () {
appHeader.setSaveStatus('end');
delete me._state.timerSave;
me.getApplication().getController('Statusbar').setStatusCaption(me.textChangesSaved, false, 3000);
}, 500);
} else
appHeader.setSaveStatus('end');
me.getApplication().getController('Statusbar').setStatusCaption(me.textChangesSaved, false, 3000);
} else
this.getApplication().getController('Statusbar').setStatusCaption('');
me.getApplication().getController('Statusbar').setStatusCaption('');
}
action = this.stackLongActions.get({type: Asc.c_oAscAsyncActionType.BlockInteraction});
@ -451,8 +451,8 @@ define([
case Asc.c_oAscAsyncAction['ForceSaveButton']:
clearTimeout(this._state.timerSave);
force = true;
// title = (!this.appOptions.isOffline) ? this.saveTitleText : '';
// text = (!this.appOptions.isOffline) ? this.saveTextText : '';
title = (!this.appOptions.isOffline) ? this.saveTitleText : '';
text = (!this.appOptions.isOffline) ? this.saveTextText : '';
break;
case Asc.c_oAscAsyncAction['ForceSaveTimeout']:
@ -527,9 +527,6 @@ define([
if (!this.isShowOpenDialog)
this.loadMask.show();
} else
if ( action.id == Asc.c_oAscAsyncAction.Save || action.id == Asc.c_oAscAsyncAction.ForceSaveButton ) {
appHeader.setSaveStatus('begin');
} else {
this.getApplication().getController('Statusbar').setStatusCaption(text, force);
}
@ -878,7 +875,7 @@ define([
Common.Utils.Metric.setCurrentMetric(value);
me.api.asc_SetDocumentUnits((value==Common.Utils.Metric.c_MetricUnits.inch) ? Asc.c_oAscDocumentUnits.Inch : ((value==Common.Utils.Metric.c_MetricUnits.pt) ? Asc.c_oAscDocumentUnits.Point : Asc.c_oAscDocumentUnits.Millimeter));
if (me.api.asc_SetViewRulers) me.api.asc_SetViewRulers(!Common.localStorage.getBool('pe-hidden-rulers'));
if (me.api.asc_SetViewRulers) me.api.asc_SetViewRulers(!Common.localStorage.getBool('pe-hidden-rulers', true));
me.api.asc_registerCallback('asc_onChangeObjectLock', _.bind(me._onChangeObjectLock, me));
me.api.asc_registerCallback('asc_onDocumentModifiedChanged', _.bind(me.onDocumentModifiedChanged, me));
@ -1156,8 +1153,6 @@ define([
this.updateWindowTitle();
this.api.isDocumentModified() && appHeader.setSaveStatus('changed');
var toolbarView = this.getApplication().getController('Toolbar').getView('Toolbar');
if (toolbarView) {
var isSyncButton = $('.icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch'),
@ -1943,7 +1938,11 @@ define([
txtImage: 'Image',
txtSlideNumber: 'Slide number',
txtSlideSubtitle: 'Slide subtitle',
txtSlideTitle: 'Slide title'
txtSlideTitle: 'Slide title',
textChangesSaved: 'All changes saved',
saveTitleText: 'Saving Document',
saveTextText: 'Saving document...',
txtLoading: 'Loading...'
}
})(), PE.Controllers.Main || {}))
});

View file

@ -825,8 +825,8 @@ define([
}
},
onPreview: function(slidenum) {
Common.NotificationCenter.trigger('preview:start', _.isNumber(slidenum) ? slidenum : 0);
onPreview: function(slidenum, presenter) {
Common.NotificationCenter.trigger('preview:start', _.isNumber(slidenum) ? slidenum : 0, presenter);
},
onPreviewBtnClick: function(btn, e) {
@ -842,6 +842,9 @@ define([
this.onPreview(this.api.getCurrentPage());
break;
case 2:
this.onPreview(0, true);
break;
case 3:
var win,
me = this,
selectedElements = me.api.getSelectedElements(),
@ -2074,6 +2077,7 @@ define([
/x-huge/.test(el.className) && (_cls += ' x-huge icon-top');
var button = new Common.UI.Button({
id: 'tlbtn-addcomment-' + index,
cls: _cls,
iconCls: 'btn-menu-comments',
lock: [_set.lostConnect, _set.noSlides],

View file

@ -154,25 +154,41 @@ define([
Common.NotificationCenter.trigger('window:resize');
},
onPreviewStart: function(slidenum) {
onPreviewStart: function(slidenum, presenter) {
this.previewPanel = this.previewPanel || PE.getController('Viewport').getView('DocumentPreview');
var me = this,
isResized = false;
var reporterObject = (presenter) ? PE.getController('Main').document : null;
if (reporterObject) {
reporterObject.translations = {
reset: me.previewPanel.txtReset,
endSlideshow: me.previewPanel.txtEndSlideshow,
slideOf: me.previewPanel.slideIndexText
};
reporterObject.token = me.api.asc_getSessionToken();
}
if (this.previewPanel && !this.previewPanel.isVisible() && this.api) {
this.previewPanel.show();
var _onWindowResize = function() {
if (isResized) return;
isResized = true;
Common.NotificationCenter.off('window:resize', _onWindowResize);
me.api.StartDemonstration('presentation-preview', _.isNumber(slidenum) ? slidenum : 0, PE.getController('Main').document);
me.api.StartDemonstration('presentation-preview', _.isNumber(slidenum) ? slidenum : 0, reporterObject);
Common.component.Analytics.trackEvent('Viewport', 'Preview');
};
if (!me.viewport.mode.isDesktopApp && !Common.Utils.isIE11) {
Common.NotificationCenter.on('window:resize', _onWindowResize);
me.fullScreen(document.documentElement);
if (!reporterObject) {
setTimeout(function(){
_onWindowResize();
}, 100);
} else {
_onWindowResize();
}
} else
_onWindowResize();
}
@ -191,6 +207,5 @@ define([
}
}
}
});
});

View file

@ -1768,7 +1768,7 @@ define([
var mnuPreview = new Common.UI.MenuItem({
caption : me.txtPreview
}).on('click', function(item) {
var current = this.api.getCurrentPage();
var current = me.api.getCurrentPage();
Common.NotificationCenter.trigger('preview:start', _.isNumber(current) ? current : 0);
});

View file

@ -246,6 +246,15 @@ define([
}
this.separatorFullScreen = el.find('.separator.fullscreen');
var controls = $(this.el).find('.preview-controls');
controls.on('mouseenter', function(e) {
clearTimeout(me.timerMove);
controls.addClass('over');
});
controls.on('mouseleave', function(e) {
controls.removeClass('over');
});
},
show: function() {
@ -263,6 +272,22 @@ define([
iconEl.addClass('btn-pause');
this.btnPlay.updateHint(this.txtPause);
}
var me = this;
var controls = $(this.el).find('.preview-controls');
controls.css('display', 'none');
setTimeout(function(){
me.$el.on('mousemove', function() {
clearTimeout(me.timerMove);
controls.css('display', '');
if (!controls.hasClass('over'))
me.timerMove = setTimeout(function () {
controls.css('display', 'none');
}, 3000);
});
}, 1000);
$('#viewport-vbox-layout').css('z-index','0');
this.fireEvent('editcomplete', this);
},
@ -279,6 +304,7 @@ define([
toolbar.onCollaborativeChanges();
}
this.$el.off('mousemove');
this.fireEvent('editcomplete', this);
},
@ -373,6 +399,9 @@ define([
txtFinalMessage: 'The end of slide preview. Click to exit.',
txtPageNumInvalid: 'Slide number invalid',
txtFullScreen: 'Full Screen',
txtExitFullScreen: 'Exit Full Screen'
txtExitFullScreen: 'Exit Full Screen',
txtReset: 'Reset',
txtEndSlideshow: 'End slideshow'
}, PE.Views.DocumentPreview || {}));
});

View file

@ -196,10 +196,11 @@ define([
items : [
{caption: this.textShowBegin, value: 0},
{caption: this.textShowCurrent, value: 1},
{caption: this.textShowPresenterView, value: 2},
{caption: '--'},
me.mnuShowSettings = new Common.UI.MenuItem({
caption: this.textShowSettings,
value: 2,
value: 3,
lock: [_set.lostConnect]
})
]
@ -537,7 +538,7 @@ define([
me.paragraphControls.push(me.btnLineSpace);
me.btnInsertTable = new Common.UI.Button({
id : 'id-toolbar-btn-inserttable',
id : 'tlbtn-inserttable',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-inserttable',
caption : me.capInsertTable,
@ -552,7 +553,7 @@ define([
me.slideOnlyControls.push(me.btnInsertTable);
me.btnInsertChart = new Common.UI.Button({
id : 'id-toolbar-btn-insertchart',
id : 'tlbtn-insertchart',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-insertchart',
caption : me.capInsertChart,
@ -567,7 +568,7 @@ define([
me.slideOnlyControls.push(me.btnInsertChart);
me.btnInsertEquation = new Common.UI.Button({
id : 'id-toolbar-btn-insertequation',
id : 'tlbtn-insertequation',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-insertequation',
caption : me.capInsertEquation,
@ -578,7 +579,7 @@ define([
me.slideOnlyControls.push(this.btnInsertEquation);
me.btnInsertHyperlink = new Common.UI.Button({
id : 'id-toolbar-btn-inserthyperlink',
id : 'tlbtn-insertlink',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-inserthyperlink',
caption : me.capInsertHyperlink,
@ -587,7 +588,7 @@ define([
me.paragraphControls.push(me.btnInsertHyperlink);
me.btnInsertTextArt = new Common.UI.Button({
id: 'tlb-btn-instextart',
id: 'tlbtn-inserttextart',
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'btn-textart',
caption: me.capInsertTextArt,
@ -1006,7 +1007,10 @@ define([
function _injectBtns(opts) {
var array = new buttonsArray;
var $slots = $host.find(opts.slot);
var id = opts.btnconfig.id;
$slots.each(function(index, el) {
if ( !!id ) opts.btnconfig.id = id + index;
var button = new Common.UI.Button(opts.btnconfig);
button.render( $slots.eq(index) );
@ -1020,6 +1024,7 @@ define([
me.btnsInsertImage = _injectBtns({
slot: '.slot-insertimg',
btnconfig: {
id : 'tlbtn-insertimage-',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-insertimage',
caption : me.capInsertImage,
@ -1031,6 +1036,7 @@ define([
me.btnsInsertText = _injectBtns({
slot: '.slot-instext',
btnconfig: {
id : 'tlbtn-inserttext-',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-text',
caption : me.capInsertText,
@ -1042,6 +1048,7 @@ define([
me.btnsInsertShape = _injectBtns({
slot: '.slot-insertshape',
btnconfig: {
id : 'tlbtn-insertshape-',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-insertshape',
caption : me.capInsertShape,
@ -1391,7 +1398,7 @@ define([
});
this.mnuitemHideStatusBar.setChecked(Common.localStorage.getBool('pe-hidden-status'), true);
this.mnuitemHideRulers.setChecked(Common.localStorage.getBool("pe-hidden-rulers"), true);
this.mnuitemHideRulers.setChecked(Common.localStorage.getBool("pe-hidden-rulers", true), true);
// // Enable none paragraph components
this.lockToolbar(PE.enumLock.disableOnStart, false, {array: this.slideOnlyControls.concat(this.shapeControls)});
@ -1826,7 +1833,8 @@ define([
textTabFile: 'File',
textTabHome: 'Home',
textTabInsert: 'Insert',
textSurface: 'Surface'
textSurface: 'Surface',
textShowPresenterView: 'Show presenter view'
}
}()), PE.Views.Toolbar || {}));
});

View file

@ -110,6 +110,7 @@ require([
docInfo.put_Token(data.token);
}
api.preloadReporter(data);
api.SetThemesPath("../../../../sdkjs/slide/themes/");
api.asc_setDocInfo( docInfo );
api.asc_getEditorPermissions();

View file

@ -63,6 +63,7 @@
"Common.Views.Comments.textComments": "Komentáře",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Zde napište svůj komentář",
"Common.Views.Comments.textHintAddComment": "Přidat komentář",
"Common.Views.Comments.textOpenAgain": "Znovu otevřít",
"Common.Views.Comments.textReply": "Odpovědět",
"Common.Views.Comments.textResolve": "Vyřešit",
@ -76,10 +77,20 @@
"Common.Views.DocumentAccessDialog.textLoading": "Nahrávám ...",
"Common.Views.DocumentAccessDialog.textTitle": "Nastavení sdílení",
"Common.Views.ExternalDiagramEditor.textClose": "Zavřít",
"Common.Views.ExternalDiagramEditor.textSave": "Uložit a odejít",
"Common.Views.ExternalDiagramEditor.textSave": "Uložit a ukončit",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu",
"Common.Views.Header.openNewTabText": "Otevřít v nové záložce",
"Common.Views.Header.labelCoUsersDescr": "Dokument je aktuálně upravován několika uživateli.",
"Common.Views.Header.textBack": "Jít do dokumentů",
"Common.Views.Header.textSaveBegin": "Ukládání...",
"Common.Views.Header.textSaveChanged": "Modifikováno",
"Common.Views.Header.textSaveEnd": "Všechny změny uloženy",
"Common.Views.Header.textSaveExpander": "Všechny změny uloženy",
"Common.Views.Header.tipAccessRights": "Spravovat přístupová práva k dokumentům",
"Common.Views.Header.tipDownload": "Stáhnout soubor",
"Common.Views.Header.tipGoEdit": "Upravit aktuální soubor",
"Common.Views.Header.tipPrint": "Vytisknout soubor",
"Common.Views.Header.tipViewUsers": "Zobrazte uživatele a spravujte přístupová práva k dokumentům",
"Common.Views.Header.txtAccessRights": "Změnit přístupová práva",
"Common.Views.Header.txtRename": "Přejmenovat",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušit",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -94,6 +105,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Minimální hodnota tohoto pole je {0}.",
"Common.Views.InsertTableDialog.txtRows": "Počet řádků",
"Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky",
"Common.Views.InsertTableDialog.txtTitleSplit": "Rozdělit buňku",
"Common.Views.LanguageDialog.btnCancel": "Zrušit",
"Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Vybrat jazyk dokumentu",
@ -104,6 +116,7 @@
"Common.Views.OpenDialog.txtTitle": "Vyberte 1% možností",
"Common.Views.OpenDialog.txtTitleProtected": "Chráněný soubor",
"Common.Views.PluginDlg.textLoading": "Nahrávám",
"Common.Views.Plugins.groupCaption": "Doplňky",
"Common.Views.Plugins.strPlugins": "Pluginy",
"Common.Views.Plugins.textLoading": "Nahrávám",
"Common.Views.Plugins.textStart": "Začátek",
@ -202,6 +215,7 @@
"PE.Controllers.Main.txtHeader": "Záhlaví",
"PE.Controllers.Main.txtImage": "Obrázek",
"PE.Controllers.Main.txtLines": "Čáry",
"PE.Controllers.Main.txtLoading": "Načítání...",
"PE.Controllers.Main.txtMath": "Matematika",
"PE.Controllers.Main.txtMedia": "Média",
"PE.Controllers.Main.txtNeedSynchronize": "Máte nové aktualizace",
@ -700,6 +714,7 @@
"PE.Views.DocumentHolder.txtBorderProps": "Vlastnosti ohraničení",
"PE.Views.DocumentHolder.txtBottom": "Dole",
"PE.Views.DocumentHolder.txtChangeLayout": "Change Layout",
"PE.Views.DocumentHolder.txtChangeTheme": "Změnit motiv",
"PE.Views.DocumentHolder.txtColumnAlign": "Zarovnání sloupce",
"PE.Views.DocumentHolder.txtDecreaseArg": "Snížit velikost argumentu",
"PE.Views.DocumentHolder.txtDeleteArg": "Odstranit argument",
@ -765,6 +780,7 @@
"PE.Views.DocumentHolder.txtShowPlaceholder": "Zobrazit zástupný symbol",
"PE.Views.DocumentHolder.txtShowTopLimit": "Zobrazit horní limit",
"PE.Views.DocumentHolder.txtSlide": "Snímek",
"PE.Views.DocumentHolder.txtSlideHide": "Skrýt snímek",
"PE.Views.DocumentHolder.txtStretchBrackets": "Roztáhnout závorky",
"PE.Views.DocumentHolder.txtTop": "Nahoře",
"PE.Views.DocumentHolder.txtUnderbar": "Čárka pod textem",
@ -773,6 +789,7 @@
"PE.Views.DocumentPreview.goToSlideText": "Přejít na snímek",
"PE.Views.DocumentPreview.slideIndexText": "Snímek {0} z {1}",
"PE.Views.DocumentPreview.txtClose": "Zavřít náhled",
"PE.Views.DocumentPreview.txtEndSlideshow": "Ukončit prezentaci",
"PE.Views.DocumentPreview.txtExitFullScreen": "Ukončit režim celé obrazovky",
"PE.Views.DocumentPreview.txtFinalMessage": "The end of slide preview. Click to exit.",
"PE.Views.DocumentPreview.txtFullScreen": "Celá obrazovka",
@ -781,6 +798,7 @@
"PE.Views.DocumentPreview.txtPause": "Pozastavit prezentaci",
"PE.Views.DocumentPreview.txtPlay": "Spustit prezentaci",
"PE.Views.DocumentPreview.txtPrev": "Předchozí snímek",
"PE.Views.DocumentPreview.txtReset": "Obnovit",
"PE.Views.FileMenu.btnAboutCaption": "Informace",
"PE.Views.FileMenu.btnBackCaption": "Jít do dokumentů",
"PE.Views.FileMenu.btnCloseMenuCaption": "Zavřít menu",
@ -793,7 +811,7 @@
"PE.Views.FileMenu.btnRenameCaption": "Přejmenovat...",
"PE.Views.FileMenu.btnReturnCaption": "Zpátky k prezentaci",
"PE.Views.FileMenu.btnRightsCaption": "Přístupové práva...",
"PE.Views.FileMenu.btnSaveAsCaption": "Save as",
"PE.Views.FileMenu.btnSaveAsCaption": "Uložit jako...",
"PE.Views.FileMenu.btnSaveCaption": "Uložit",
"PE.Views.FileMenu.btnSettingsCaption": "Pokročilé nastavení...",
"PE.Views.FileMenu.btnToEditCaption": "Upravit prezentaci",
@ -823,7 +841,7 @@
"PE.Views.FileMenuPanels.Settings.strShowChanges": "Změny spolupráce v reálném čase",
"PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnout kontrolu pravopisu",
"PE.Views.FileMenuPanels.Settings.strStrict": "Strict",
"PE.Views.FileMenuPanels.Settings.strUnit": "Jednotky měření",
"PE.Views.FileMenuPanels.Settings.strUnit": "Zobrazovat hodnoty v jednotkách",
"PE.Views.FileMenuPanels.Settings.strZoom": "Výchozí hodnota přiblížení",
"PE.Views.FileMenuPanels.Settings.text10Minutes": "Každých 10 minut",
"PE.Views.FileMenuPanels.Settings.text30Minutes": "Každých 30 minut",
@ -836,10 +854,10 @@
"PE.Views.FileMenuPanels.Settings.textForceSave": "Uložit na server",
"PE.Views.FileMenuPanels.Settings.textMinute": "Každou minutu",
"PE.Views.FileMenuPanels.Settings.txtAll": "Zobrazit všechny",
"PE.Views.FileMenuPanels.Settings.txtCm": "Centimetr",
"PE.Views.FileMenuPanels.Settings.txtCm": "Centimetry",
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Přizpůsobit snímku",
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce",
"PE.Views.FileMenuPanels.Settings.txtInch": "Palec (míra 2,54 cm)\n",
"PE.Views.FileMenuPanels.Settings.txtInch": "Palce\n",
"PE.Views.FileMenuPanels.Settings.txtInput": "Náhradní vstup",
"PE.Views.FileMenuPanels.Settings.txtLast": "Zobraz poslední",
"PE.Views.FileMenuPanels.Settings.txtPt": "Body",
@ -892,11 +910,10 @@
"PE.Views.LeftMenu.tipAbout": "Informace",
"PE.Views.LeftMenu.tipChat": "Chat",
"PE.Views.LeftMenu.tipComments": "Komentáře",
"PE.Views.LeftMenu.tipFile": "Soubor",
"PE.Views.LeftMenu.tipPlugins": "Pluginy",
"PE.Views.LeftMenu.tipSearch": "Hledání",
"PE.Views.LeftMenu.tipSlides": "Snímky",
"PE.Views.LeftMenu.tipSupport": "Podpora a zpětná vazba",
"PE.Views.LeftMenu.tipSupport": "Zpětná vazba a Podpora",
"PE.Views.LeftMenu.tipTitles": "Nadpisy",
"PE.Views.LeftMenu.txtDeveloper": "VÝVOJÁŘSKÝ REŽIM",
"PE.Views.ParagraphSettings.strLineHeight": "Řádkování",
@ -952,7 +969,7 @@
"PE.Views.ShapeSettings.strSize": "Velikost",
"PE.Views.ShapeSettings.strStroke": "Tloušťka",
"PE.Views.ShapeSettings.strTransparency": "Průhlednost",
"PE.Views.ShapeSettings.strType": "Type",
"PE.Views.ShapeSettings.strType": "Typ",
"PE.Views.ShapeSettings.textAdvanced": "Zobrazit pokročilé nastavení",
"PE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota není správná.<br>Zadejte prosím hodnotu mezi 0 a 1584.",
"PE.Views.ShapeSettings.textColor": "Vyplnit barvou",
@ -1122,18 +1139,13 @@
"PE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"PE.Views.Statusbar.tipFitPage": "Přizpůsobit snímku",
"PE.Views.Statusbar.tipFitWidth": "Přizpůsobit šířce",
"PE.Views.Statusbar.tipMoreUsers": "a %1 uživatelů.",
"PE.Views.Statusbar.tipPreview": "Spustit náhled",
"PE.Views.Statusbar.tipSetDocLang": "Nastavit jazyk dokumentu",
"PE.Views.Statusbar.tipSetLang": "Nastavit jazyk psaní",
"PE.Views.Statusbar.tipSetSpelling": "Kontrola pravopisu",
"PE.Views.Statusbar.tipShowUsers": "Pro zobrazená všech uživatelů klikněte na ikonu níže.",
"PE.Views.Statusbar.tipUsers": "Dokument je aktuálně upravován několika uživateli.",
"PE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"PE.Views.Statusbar.tipZoomFactor": "Zvětšení",
"PE.Views.Statusbar.tipZoomIn": "Přiblížit",
"PE.Views.Statusbar.tipZoomOut": "Oddálit",
"PE.Views.Statusbar.txAccessRights": "Change access rights",
"PE.Views.Statusbar.txtPageNumInvalid": "Invalid slide number",
"PE.Views.TableSettings.deleteColumnText": "Smazat sloupec",
"PE.Views.TableSettings.deleteRowText": "Smazat řádek",
@ -1233,6 +1245,17 @@
"PE.Views.TextArtSettings.txtNoBorders": "Bez čáry",
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Dřevo",
"PE.Views.Toolbar.capAddSlide": "Přidat snímek",
"PE.Views.Toolbar.capInsertChart": "Graf",
"PE.Views.Toolbar.capInsertEquation": "Rovnice",
"PE.Views.Toolbar.capInsertHyperlink": "Hypertextový odkaz",
"PE.Views.Toolbar.capInsertImage": "Obrázek",
"PE.Views.Toolbar.capInsertShape": "Tvar",
"PE.Views.Toolbar.capInsertTable": "Tabulka",
"PE.Views.Toolbar.capInsertText": "Textové pole",
"PE.Views.Toolbar.capTabFile": "Soubor",
"PE.Views.Toolbar.capTabHome": "Domů",
"PE.Views.Toolbar.capTabInsert": "Vložit",
"PE.Views.Toolbar.mniCustomTable": "Vložit vlastní tabulku",
"PE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru",
"PE.Views.Toolbar.mniImageFromUrl": "Obrázek z adresy URL",
@ -1260,10 +1283,8 @@
"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": "Schovat stavový řádek",
"PE.Views.Toolbar.textHideTitleBar": "Schovat lištu nadpisu",
"PE.Views.Toolbar.textInsText": "Vložit textové pole",
"PE.Views.Toolbar.textInsTextArt": "Vložit Text art",
"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.textLine": "Čára",
"PE.Views.Toolbar.textNewColor": "Vlastní barva",
@ -1278,12 +1299,16 @@
"PE.Views.Toolbar.textShapeAlignTop": "Zarovnat nahoru",
"PE.Views.Toolbar.textShowBegin": "Zobrazit od začátku",
"PE.Views.Toolbar.textShowCurrent": "Zobrazit od aktuálního snímku",
"PE.Views.Toolbar.textShowPresenterView": "Ukázat zobrazení přednášejícího",
"PE.Views.Toolbar.textShowSettings": "Zobrazit nastavení",
"PE.Views.Toolbar.textStock": "Akcie",
"PE.Views.Toolbar.textStrikeout": "Přeškrtnout",
"PE.Views.Toolbar.textSubscript": "Dolní index",
"PE.Views.Toolbar.textSuperscript": "Horní index",
"PE.Views.Toolbar.textSurface": "Povrch",
"PE.Views.Toolbar.textTabFile": "Soubor",
"PE.Views.Toolbar.textTabHome": "Domů",
"PE.Views.Toolbar.textTabInsert": "Vložit",
"PE.Views.Toolbar.textTitleError": "Chyba",
"PE.Views.Toolbar.textUnderline": "Podtržení",
"PE.Views.Toolbar.textZoom": "Přiblížit",
@ -1301,7 +1326,7 @@
"PE.Views.Toolbar.tipFontName": "Název písma",
"PE.Views.Toolbar.tipFontSize": "Velikost písma",
"PE.Views.Toolbar.tipHAligh": "Horizontální zarovnání",
"PE.Views.Toolbar.tipHideBars": "Hide Title bar & Status bar",
"PE.Views.Toolbar.tipHideBars": "Skrýt lištu s nadpisem & Stavový řádek",
"PE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení",
"PE.Views.Toolbar.tipInsertChart": "Vložit graf",
"PE.Views.Toolbar.tipInsertEquation": "Vložit rovnici",
@ -1310,11 +1335,10 @@
"PE.Views.Toolbar.tipInsertShape": "Vložit tvar",
"PE.Views.Toolbar.tipInsertTable": "Vložit tabulku",
"PE.Views.Toolbar.tipInsertText": "Vložení textu",
"PE.Views.Toolbar.tipInsertTextArt": "Vložit Text art",
"PE.Views.Toolbar.tipLineSpace": "Řádkování",
"PE.Views.Toolbar.tipMarkers": "Odrážky",
"PE.Views.Toolbar.tipNewDocument": "Nová prezentace",
"PE.Views.Toolbar.tipNumbers": "Číslování",
"PE.Views.Toolbar.tipOpenDocument": "Otevřít prezentaci",
"PE.Views.Toolbar.tipPaste": "Vložit",
"PE.Views.Toolbar.tipPreview": "Spustit náhled",
"PE.Views.Toolbar.tipPrint": "Tisk",

View file

@ -63,6 +63,7 @@
"Common.Views.Comments.textComments": "Kommentare",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Geben Sie Ihren Kommentar hier ein",
"Common.Views.Comments.textHintAddComment": "Kommentar hinzufügen",
"Common.Views.Comments.textOpenAgain": "Erneut eröffnen",
"Common.Views.Comments.textReply": "Antworten",
"Common.Views.Comments.textResolve": "Lösen",
@ -78,8 +79,18 @@
"Common.Views.ExternalDiagramEditor.textClose": "Schließen",
"Common.Views.ExternalDiagramEditor.textSave": "Speichern und beenden",
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten",
"Common.Views.Header.openNewTabText": "In neuer Registerkarte öffnen",
"Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
"Common.Views.Header.textBack": "Zu Dokumenten übergehen",
"Common.Views.Header.textSaveBegin": "Speicherung...",
"Common.Views.Header.textSaveChanged": "Verändert",
"Common.Views.Header.textSaveEnd": "Alle Änderungen sind gespeichert",
"Common.Views.Header.textSaveExpander": "Alle Änderungen sind gespeichert",
"Common.Views.Header.tipAccessRights": "Zugriffsrechte für das Dokument verwalten",
"Common.Views.Header.tipDownload": "Datei herunterladen",
"Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten",
"Common.Views.Header.tipPrint": "Datei drucken",
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
"Common.Views.Header.txtRename": "Umbenennen",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Abbrechen",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -94,6 +105,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Der minimale Wert für dieses Feld ist {0}.",
"Common.Views.InsertTableDialog.txtRows": "Anzahl von Zeilen\t",
"Common.Views.InsertTableDialog.txtTitle": "Größe der Tabelle",
"Common.Views.InsertTableDialog.txtTitleSplit": "Zelle teilen",
"Common.Views.LanguageDialog.btnCancel": "Abbrechen",
"Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Sprache des Dokuments wählen",
@ -104,6 +116,7 @@
"Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen",
"Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei",
"Common.Views.PluginDlg.textLoading": "Ladevorgang",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Ladevorgang",
"Common.Views.Plugins.textStart": "Starten",
@ -202,6 +215,7 @@
"PE.Controllers.Main.txtHeader": "Kopfzeile",
"PE.Controllers.Main.txtImage": "Bild",
"PE.Controllers.Main.txtLines": "Linien",
"PE.Controllers.Main.txtLoading": "Ladevorgang...",
"PE.Controllers.Main.txtMath": "Mathematik",
"PE.Controllers.Main.txtMedia": "Medien",
"PE.Controllers.Main.txtNeedSynchronize": "Änderungen wurden vorgenommen",
@ -700,6 +714,7 @@
"PE.Views.DocumentHolder.txtBorderProps": "Rahmeneigenschaften\n",
"PE.Views.DocumentHolder.txtBottom": "Unten",
"PE.Views.DocumentHolder.txtChangeLayout": "Layout ändern",
"PE.Views.DocumentHolder.txtChangeTheme": "Thema ändern",
"PE.Views.DocumentHolder.txtColumnAlign": "Spaltenausrichtung",
"PE.Views.DocumentHolder.txtDecreaseArg": "Argumentgröße reduzieren",
"PE.Views.DocumentHolder.txtDeleteArg": "Argument löschen\t",
@ -765,6 +780,7 @@
"PE.Views.DocumentHolder.txtShowPlaceholder": "Platzhaltertext anzeigen",
"PE.Views.DocumentHolder.txtShowTopLimit": "Höchstgrenze anzeigen",
"PE.Views.DocumentHolder.txtSlide": "Folie",
"PE.Views.DocumentHolder.txtSlideHide": "Folie ausblenden ",
"PE.Views.DocumentHolder.txtStretchBrackets": "Eckige Klammern dehnen\t",
"PE.Views.DocumentHolder.txtTop": "Oben",
"PE.Views.DocumentHolder.txtUnderbar": "Linie unter dem Text ",
@ -773,6 +789,7 @@
"PE.Views.DocumentPreview.goToSlideText": "Zu Folie übergehen",
"PE.Views.DocumentPreview.slideIndexText": "Folie {0} von {1}",
"PE.Views.DocumentPreview.txtClose": "Vorschaufenster schließen",
"PE.Views.DocumentPreview.txtEndSlideshow": "Slideshow beenden",
"PE.Views.DocumentPreview.txtExitFullScreen": "Vollbildmodus verlassen",
"PE.Views.DocumentPreview.txtFinalMessage": "Ende der Folienvorschau. Zum Schließen bitte klicken.",
"PE.Views.DocumentPreview.txtFullScreen": "Vollbild-Modus",
@ -781,6 +798,7 @@
"PE.Views.DocumentPreview.txtPause": "Präsentation anhalten",
"PE.Views.DocumentPreview.txtPlay": "Präsentation starten",
"PE.Views.DocumentPreview.txtPrev": "Vorherige Folie",
"PE.Views.DocumentPreview.txtReset": "Zurücksetzen",
"PE.Views.FileMenu.btnAboutCaption": "Über das Produkt",
"PE.Views.FileMenu.btnBackCaption": "Zu Dokumenten übergehen",
"PE.Views.FileMenu.btnCloseMenuCaption": "Menü schließen",
@ -892,7 +910,6 @@
"PE.Views.LeftMenu.tipAbout": "Über das Produkt",
"PE.Views.LeftMenu.tipChat": "Chat",
"PE.Views.LeftMenu.tipComments": "Kommentare",
"PE.Views.LeftMenu.tipFile": "Datei",
"PE.Views.LeftMenu.tipPlugins": "Plugins",
"PE.Views.LeftMenu.tipSearch": "Suche",
"PE.Views.LeftMenu.tipSlides": "Folien",
@ -1122,18 +1139,13 @@
"PE.Views.Statusbar.tipAccessRights": "Dokumentzugriffsrechte verwalten",
"PE.Views.Statusbar.tipFitPage": "Folie anpassen",
"PE.Views.Statusbar.tipFitWidth": "Breite anpassen",
"PE.Views.Statusbar.tipMoreUsers": "und %1 Benutzer.",
"PE.Views.Statusbar.tipPreview": "Vorschau starten",
"PE.Views.Statusbar.tipSetDocLang": "Sprache des Dokumentes festlegen",
"PE.Views.Statusbar.tipSetLang": "Textsprache wählen",
"PE.Views.Statusbar.tipSetSpelling": "Rechtschreibprüfung",
"PE.Views.Statusbar.tipShowUsers": "Um alle Benutzer zu sehen, klicken Sie auf dieses Symbol.",
"PE.Views.Statusbar.tipUsers": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
"PE.Views.Statusbar.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
"PE.Views.Statusbar.tipZoomFactor": "Zoommodus",
"PE.Views.Statusbar.tipZoomIn": "Vergrößern",
"PE.Views.Statusbar.tipZoomOut": "Verkleinern",
"PE.Views.Statusbar.txAccessRights": "Zugriffsrechte ändern",
"PE.Views.Statusbar.txtPageNumInvalid": "Ungültige Nummer der Folie",
"PE.Views.TableSettings.deleteColumnText": "Spalte löschen",
"PE.Views.TableSettings.deleteRowText": "Zeile löschen",
@ -1233,6 +1245,17 @@
"PE.Views.TextArtSettings.txtNoBorders": "Keine Linie",
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Holz",
"PE.Views.Toolbar.capAddSlide": "Folie hinzufügen",
"PE.Views.Toolbar.capInsertChart": "Diagramm",
"PE.Views.Toolbar.capInsertEquation": "Gleichung",
"PE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
"PE.Views.Toolbar.capInsertImage": "Bild",
"PE.Views.Toolbar.capInsertShape": "Form",
"PE.Views.Toolbar.capInsertTable": "Tabelle",
"PE.Views.Toolbar.capInsertText": "Textfeld",
"PE.Views.Toolbar.capTabFile": "Datei",
"PE.Views.Toolbar.capTabHome": "Startseite",
"PE.Views.Toolbar.capTabInsert": "Einfügen",
"PE.Views.Toolbar.mniCustomTable": "Benutzerdefinierte Tabelle einfügen",
"PE.Views.Toolbar.mniImageFromFile": "Bild aus Datei",
"PE.Views.Toolbar.mniImageFromUrl": "Bild aus URL",
@ -1256,14 +1279,12 @@
"PE.Views.Toolbar.textCancel": "Abbrechen",
"PE.Views.Toolbar.textCharts": "Diagramme",
"PE.Views.Toolbar.textColumn": "Spalte",
"PE.Views.Toolbar.textCompactView": "Kompaktsymbolleiste anzeigen",
"PE.Views.Toolbar.textCompactView": "Symbolleiste ausblenden",
"PE.Views.Toolbar.textFitPage": "Folie anpassen",
"PE.Views.Toolbar.textFitWidth": "Breite anpassen",
"PE.Views.Toolbar.textHideLines": "Lineale vergeben ",
"PE.Views.Toolbar.textHideStatusBar": "Statusleiste vergeben",
"PE.Views.Toolbar.textHideTitleBar": "Titelleiste vergeben",
"PE.Views.Toolbar.textInsText": "Textfeld einfügen\t",
"PE.Views.Toolbar.textInsTextArt": "TextArt einfügen",
"PE.Views.Toolbar.textItalic": "Kursiv",
"PE.Views.Toolbar.textLine": "Linie",
"PE.Views.Toolbar.textNewColor": "Benutzerdefinierte Farbe",
@ -1278,12 +1299,16 @@
"PE.Views.Toolbar.textShapeAlignTop": "Oben ausrichten",
"PE.Views.Toolbar.textShowBegin": " Von Beginn anschauen",
"PE.Views.Toolbar.textShowCurrent": "Von aktueller Folie abschauen",
"PE.Views.Toolbar.textShowPresenterView": "Referentenansicht",
"PE.Views.Toolbar.textShowSettings": "Einstellungen anzeigen",
"PE.Views.Toolbar.textStock": "Bestand",
"PE.Views.Toolbar.textStrikeout": "Durchgestrichen",
"PE.Views.Toolbar.textSubscript": "Tiefgestellt",
"PE.Views.Toolbar.textSuperscript": "Hochgestellt",
"PE.Views.Toolbar.textSurface": "Oberfläche",
"PE.Views.Toolbar.textTabFile": "Datei",
"PE.Views.Toolbar.textTabHome": "Startseite",
"PE.Views.Toolbar.textTabInsert": "Einfügen",
"PE.Views.Toolbar.textTitleError": "Fehler",
"PE.Views.Toolbar.textUnderline": "Unterstrichen",
"PE.Views.Toolbar.textZoom": "Zoom",
@ -1310,11 +1335,10 @@
"PE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
"PE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
"PE.Views.Toolbar.tipInsertText": "Text einfügen",
"PE.Views.Toolbar.tipInsertTextArt": "TextArt einfügen",
"PE.Views.Toolbar.tipLineSpace": "Zeilenabstand",
"PE.Views.Toolbar.tipMarkers": "Aufzählung",
"PE.Views.Toolbar.tipNewDocument": "Neue Präsentation",
"PE.Views.Toolbar.tipNumbers": "Nummerierung",
"PE.Views.Toolbar.tipOpenDocument": "Präsentation öffnen",
"PE.Views.Toolbar.tipPaste": "Einfügen",
"PE.Views.Toolbar.tipPreview": "Vorschau starten",
"PE.Views.Toolbar.tipPrint": "Drucken",

View file

@ -116,9 +116,11 @@
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Protected File",
"Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Loading",
"Common.Views.Plugins.textStart": "Start",
"Common.Views.Plugins.textStop": "Stop",
"Common.Views.RenameDialog.cancelButtonText": "Cancel",
"Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "File name",
@ -182,11 +184,14 @@
"PE.Controllers.Main.saveErrorText": "An error has occurred while saving the file",
"PE.Controllers.Main.savePreparingText": "Preparing to save",
"PE.Controllers.Main.savePreparingTitle": "Preparing to save. Please wait...",
"PE.Controllers.Main.saveTextText": "Saving presentation...",
"PE.Controllers.Main.saveTitleText": "Saving Presentation",
"PE.Controllers.Main.splitDividerErrorText": "The number of rows must be a divisor of %1.",
"PE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1.",
"PE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1.",
"PE.Controllers.Main.textAnonymous": "Anonymous",
"PE.Controllers.Main.textBuyNow": "Visit website",
"PE.Controllers.Main.textChangesSaved": "All changes saved",
"PE.Controllers.Main.textCloseTip": "Click to close the tip",
"PE.Controllers.Main.textContactUs": "Contact sales",
"PE.Controllers.Main.textLoadingDocument": "Loading presentation",
@ -211,6 +216,7 @@
"PE.Controllers.Main.txtHeader": "Header",
"PE.Controllers.Main.txtImage": "Image",
"PE.Controllers.Main.txtLines": "Lines",
"PE.Controllers.Main.txtLoading": "Loading...",
"PE.Controllers.Main.txtMath": "Math",
"PE.Controllers.Main.txtMedia": "Media",
"PE.Controllers.Main.txtNeedSynchronize": "You have updates",
@ -784,6 +790,7 @@
"PE.Views.DocumentPreview.goToSlideText": "Go to Slide",
"PE.Views.DocumentPreview.slideIndexText": "Slide {0} of {1}",
"PE.Views.DocumentPreview.txtClose": "Close Slideshow",
"PE.Views.DocumentPreview.txtEndSlideshow": "End slideshow",
"PE.Views.DocumentPreview.txtExitFullScreen": "Exit Full Screen",
"PE.Views.DocumentPreview.txtFinalMessage": "The end of slide preview. Click to exit.",
"PE.Views.DocumentPreview.txtFullScreen": "Full Screen",
@ -792,6 +799,7 @@
"PE.Views.DocumentPreview.txtPause": "Pause Presentation",
"PE.Views.DocumentPreview.txtPlay": "Start Presentation",
"PE.Views.DocumentPreview.txtPrev": "Previous Slide",
"PE.Views.DocumentPreview.txtReset": "Reset",
"PE.Views.FileMenu.btnAboutCaption": "About",
"PE.Views.FileMenu.btnBackCaption": "Go to Documents",
"PE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
@ -1239,6 +1247,7 @@
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Wood",
"PE.Views.Toolbar.capAddSlide": "Add Slide",
"PE.Views.Toolbar.capBtnComment": "Comment",
"PE.Views.Toolbar.capInsertChart": "Chart",
"PE.Views.Toolbar.capInsertEquation": "Equation",
"PE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
@ -1278,8 +1287,6 @@
"PE.Views.Toolbar.textHideLines": "Hide Rulers",
"PE.Views.Toolbar.textHideStatusBar": "Hide Status Bar",
"PE.Views.Toolbar.textHideTitleBar": "Hide Title Bar",
"del_PE.Views.Toolbar.textInsText": "Insert text box",
"del_PE.Views.Toolbar.textInsTextArt": "Insert Text Art",
"PE.Views.Toolbar.textItalic": "Italic",
"PE.Views.Toolbar.textLine": "Line",
"PE.Views.Toolbar.textNewColor": "Custom Color",
@ -1294,6 +1301,7 @@
"PE.Views.Toolbar.textShapeAlignTop": "Align Top",
"PE.Views.Toolbar.textShowBegin": "Show from Beginning",
"PE.Views.Toolbar.textShowCurrent": "Show from Current slide",
"PE.Views.Toolbar.textShowPresenterView": "Show presenter view",
"PE.Views.Toolbar.textShowSettings": "Show Settings",
"PE.Views.Toolbar.textStock": "Stock",
"PE.Views.Toolbar.textStrikeout": "Strikeout",
@ -1317,7 +1325,7 @@
"PE.Views.Toolbar.tipCopyStyle": "Copy Style",
"PE.Views.Toolbar.tipDecPrLeft": "Decrease Indent",
"PE.Views.Toolbar.tipFontColor": "Font color",
"PE.Views.Toolbar.tipFontName": "Font Name",
"PE.Views.Toolbar.tipFontName": "Font",
"PE.Views.Toolbar.tipFontSize": "Font Size",
"PE.Views.Toolbar.tipHAligh": "Horizontal Align",
"PE.Views.Toolbar.tipHideBars": "Hide Title bar & Status bar",

View file

@ -63,6 +63,7 @@
"Common.Views.Comments.textComments": "Commenti",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Inserisci commento qui",
"Common.Views.Comments.textHintAddComment": "Aggiungi commento",
"Common.Views.Comments.textOpenAgain": "Apri di nuovo",
"Common.Views.Comments.textReply": "Rispondi",
"Common.Views.Comments.textResolve": "Chiudi",
@ -78,8 +79,18 @@
"Common.Views.ExternalDiagramEditor.textClose": "Chiudi",
"Common.Views.ExternalDiagramEditor.textSave": "Salva ed esci",
"Common.Views.ExternalDiagramEditor.textTitle": "Modifica grafico",
"Common.Views.Header.openNewTabText": "Open in New Tab",
"Common.Views.Header.labelCoUsersDescr": "È in corso la modifica del documento da parte di più utenti.",
"Common.Views.Header.textBack": "Va' ai Documenti",
"Common.Views.Header.textSaveBegin": "Salvataggio in corso...",
"Common.Views.Header.textSaveChanged": "Modificato",
"Common.Views.Header.textSaveEnd": "Tutte le modifiche sono state salvate",
"Common.Views.Header.textSaveExpander": "Tutte le modifiche sono state salvate",
"Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento",
"Common.Views.Header.tipDownload": "Scarica file",
"Common.Views.Header.tipGoEdit": "Modifica il file corrente",
"Common.Views.Header.tipPrint": "Stampa file",
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
"Common.Views.Header.txtRename": "Rinomina",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Annulla",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -94,6 +105,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Il valore minimo di questo campo è {0}.",
"Common.Views.InsertTableDialog.txtRows": "Numero di righe",
"Common.Views.InsertTableDialog.txtTitle": "Dimensioni tabella",
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividi cella",
"Common.Views.LanguageDialog.btnCancel": "Annulla",
"Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento",
@ -104,6 +116,7 @@
"Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1",
"Common.Views.OpenDialog.txtTitleProtected": "File protetto",
"Common.Views.PluginDlg.textLoading": "Caricamento",
"Common.Views.Plugins.groupCaption": "Componenti Aggiuntivi",
"Common.Views.Plugins.strPlugins": "Plugin",
"Common.Views.Plugins.textLoading": "Caricamento",
"Common.Views.Plugins.textStart": "Avvio",
@ -202,6 +215,7 @@
"PE.Controllers.Main.txtHeader": "Intestazione",
"PE.Controllers.Main.txtImage": "Immagine",
"PE.Controllers.Main.txtLines": "Linee",
"PE.Controllers.Main.txtLoading": "Caricamento in corso...",
"PE.Controllers.Main.txtMath": "Matematica",
"PE.Controllers.Main.txtMedia": "Multimedia",
"PE.Controllers.Main.txtNeedSynchronize": "Ci sono aggiornamenti disponibili",
@ -700,6 +714,7 @@
"PE.Views.DocumentHolder.txtBorderProps": "Proprietà bordo",
"PE.Views.DocumentHolder.txtBottom": "In basso",
"PE.Views.DocumentHolder.txtChangeLayout": "Cambia layout",
"PE.Views.DocumentHolder.txtChangeTheme": "Modifica Tema",
"PE.Views.DocumentHolder.txtColumnAlign": "Allineamento Colonna",
"PE.Views.DocumentHolder.txtDecreaseArg": "Diminuisci dimensione argomento",
"PE.Views.DocumentHolder.txtDeleteArg": "Elimina argomento",
@ -765,6 +780,7 @@
"PE.Views.DocumentHolder.txtShowPlaceholder": "Mostra segnaposto",
"PE.Views.DocumentHolder.txtShowTopLimit": "Mostra limite alto",
"PE.Views.DocumentHolder.txtSlide": "Diapositiva",
"PE.Views.DocumentHolder.txtSlideHide": "Nascondi Diapositiva",
"PE.Views.DocumentHolder.txtStretchBrackets": "Allunga Parentesi",
"PE.Views.DocumentHolder.txtTop": "In alto",
"PE.Views.DocumentHolder.txtUnderbar": "Barra sotto al testo",
@ -773,6 +789,7 @@
"PE.Views.DocumentPreview.goToSlideText": "Va' alla diapositiva",
"PE.Views.DocumentPreview.slideIndexText": "Diapositiva {0} di {1}",
"PE.Views.DocumentPreview.txtClose": "Chiudi presentazione",
"PE.Views.DocumentPreview.txtEndSlideshow": "Fine della presentazione",
"PE.Views.DocumentPreview.txtExitFullScreen": "Exit Full Screen",
"PE.Views.DocumentPreview.txtFinalMessage": "Fine dell'anteprima di diapositiva. Clicca per uscire.",
"PE.Views.DocumentPreview.txtFullScreen": "Schermo intero",
@ -781,6 +798,7 @@
"PE.Views.DocumentPreview.txtPause": "Sospendi presentazione",
"PE.Views.DocumentPreview.txtPlay": "Avvia presentazione",
"PE.Views.DocumentPreview.txtPrev": "Diapositiva precedente",
"PE.Views.DocumentPreview.txtReset": "Reimposta",
"PE.Views.FileMenu.btnAboutCaption": "Informazioni sul programma",
"PE.Views.FileMenu.btnBackCaption": "Va' ai Documenti",
"PE.Views.FileMenu.btnCloseMenuCaption": "Chiudi il menù",
@ -892,7 +910,6 @@
"PE.Views.LeftMenu.tipAbout": "Informazioni su",
"PE.Views.LeftMenu.tipChat": "Chat",
"PE.Views.LeftMenu.tipComments": "Commenti",
"PE.Views.LeftMenu.tipFile": "File",
"PE.Views.LeftMenu.tipPlugins": "Plugin",
"PE.Views.LeftMenu.tipSearch": "Ricerca",
"PE.Views.LeftMenu.tipSlides": "Diapositive",
@ -1122,18 +1139,13 @@
"PE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"PE.Views.Statusbar.tipFitPage": "Adatta alla diapositiva",
"PE.Views.Statusbar.tipFitWidth": "Adatta alla larghezza",
"PE.Views.Statusbar.tipMoreUsers": "e %1 utenti.",
"PE.Views.Statusbar.tipPreview": "Avvia presentazione",
"PE.Views.Statusbar.tipSetDocLang": "Imposta lingua del documento",
"PE.Views.Statusbar.tipSetLang": "Seleziona lingua del testo",
"PE.Views.Statusbar.tipSetSpelling": "Controllo ortografia",
"PE.Views.Statusbar.tipShowUsers": "Per vedere tutti gli utenti, clicca sull'icona di sotto.",
"PE.Views.Statusbar.tipUsers": "Il documento sta modificando da più utenti.",
"PE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"PE.Views.Statusbar.tipZoomFactor": "Ingrandimento",
"PE.Views.Statusbar.tipZoomIn": "Zoom avanti",
"PE.Views.Statusbar.tipZoomOut": "Zoom indietro",
"PE.Views.Statusbar.txAccessRights": "Change access rights",
"PE.Views.Statusbar.txtPageNumInvalid": "Numero diapositiva non corretto",
"PE.Views.TableSettings.deleteColumnText": "Elimina colonna",
"PE.Views.TableSettings.deleteRowText": "Elimina riga",
@ -1233,6 +1245,17 @@
"PE.Views.TextArtSettings.txtNoBorders": "No Line",
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Wood",
"PE.Views.Toolbar.capAddSlide": "Aggiungi diapositiva",
"PE.Views.Toolbar.capInsertChart": "Grafico",
"PE.Views.Toolbar.capInsertEquation": "Equazione",
"PE.Views.Toolbar.capInsertHyperlink": "Collegamento ipertestuale",
"PE.Views.Toolbar.capInsertImage": "Foto",
"PE.Views.Toolbar.capInsertShape": "Forma",
"PE.Views.Toolbar.capInsertTable": "Tabella",
"PE.Views.Toolbar.capInsertText": "Casella di testo",
"PE.Views.Toolbar.capTabFile": "File",
"PE.Views.Toolbar.capTabHome": "Home",
"PE.Views.Toolbar.capTabInsert": "Inserisci",
"PE.Views.Toolbar.mniCustomTable": "Inserisci tabella personalizzata",
"PE.Views.Toolbar.mniImageFromFile": "Immagine da file",
"PE.Views.Toolbar.mniImageFromUrl": "Immagine da URL",
@ -1262,8 +1285,6 @@
"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.textInsText": "Insert text box",
"PE.Views.Toolbar.textInsTextArt": "Insert Text Art",
"PE.Views.Toolbar.textItalic": "Corsivo",
"PE.Views.Toolbar.textLine": "Linea",
"PE.Views.Toolbar.textNewColor": "Colore personalizzato",
@ -1278,12 +1299,16 @@
"PE.Views.Toolbar.textShapeAlignTop": "Allinea in alto",
"PE.Views.Toolbar.textShowBegin": "Mostra dall'inizio",
"PE.Views.Toolbar.textShowCurrent": "Mostra dalla diapositiva corrente",
"PE.Views.Toolbar.textShowPresenterView": "Mostra la visualizzazione del presenter",
"PE.Views.Toolbar.textShowSettings": "Mostra Impostazioni",
"PE.Views.Toolbar.textStock": "Azionario",
"PE.Views.Toolbar.textStrikeout": "Barrato",
"PE.Views.Toolbar.textSubscript": "Pedice",
"PE.Views.Toolbar.textSuperscript": "Apice",
"PE.Views.Toolbar.textSurface": "Superficie",
"PE.Views.Toolbar.textTabFile": "File",
"PE.Views.Toolbar.textTabHome": "Home",
"PE.Views.Toolbar.textTabInsert": "Inserisci",
"PE.Views.Toolbar.textTitleError": "Errore",
"PE.Views.Toolbar.textUnderline": "Sottolineato",
"PE.Views.Toolbar.textZoom": "Zoom",
@ -1298,7 +1323,7 @@
"PE.Views.Toolbar.tipCopyStyle": "Copia stile",
"PE.Views.Toolbar.tipDecPrLeft": "Riduci rientro",
"PE.Views.Toolbar.tipFontColor": "Colore caratteri",
"PE.Views.Toolbar.tipFontName": "Nome tipo di carattere",
"PE.Views.Toolbar.tipFontName": "Tipo di carattere",
"PE.Views.Toolbar.tipFontSize": "Dimensione carattere",
"PE.Views.Toolbar.tipHAligh": "Allineamento orizzontale",
"PE.Views.Toolbar.tipHideBars": "Nascondi barra di titolo e barra di stato",
@ -1310,11 +1335,10 @@
"PE.Views.Toolbar.tipInsertShape": "Inserisci forma",
"PE.Views.Toolbar.tipInsertTable": "Inserisci tabella",
"PE.Views.Toolbar.tipInsertText": "Inserisci testo",
"PE.Views.Toolbar.tipInsertTextArt": "Inserisci Text Art",
"PE.Views.Toolbar.tipLineSpace": "Interlinea",
"PE.Views.Toolbar.tipMarkers": "Elenchi puntati",
"PE.Views.Toolbar.tipNewDocument": "Nuova presentazione",
"PE.Views.Toolbar.tipNumbers": "Elenchi numerati",
"PE.Views.Toolbar.tipOpenDocument": "Apri presentazione",
"PE.Views.Toolbar.tipPaste": "Incolla",
"PE.Views.Toolbar.tipPreview": "Avvia presentazione",
"PE.Views.Toolbar.tipPrint": "Stampa",

View file

@ -63,6 +63,7 @@
"Common.Views.Comments.textComments": "Комментарии",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Введите здесь свой комментарий",
"Common.Views.Comments.textHintAddComment": "Добавить комментарий",
"Common.Views.Comments.textOpenAgain": "Открыть снова",
"Common.Views.Comments.textReply": "Ответить",
"Common.Views.Comments.textResolve": "Решить",
@ -78,8 +79,18 @@
"Common.Views.ExternalDiagramEditor.textClose": "Закрыть",
"Common.Views.ExternalDiagramEditor.textSave": "Сохранить и выйти",
"Common.Views.ExternalDiagramEditor.textTitle": "Редактор диаграмм",
"Common.Views.Header.openNewTabText": "Открыть в новой вкладке",
"Common.Views.Header.labelCoUsersDescr": "Документ редактируется несколькими пользователями.",
"Common.Views.Header.textBack": "Перейти к Документам",
"Common.Views.Header.textSaveBegin": "Сохранение...",
"Common.Views.Header.textSaveChanged": "Изменен",
"Common.Views.Header.textSaveEnd": "Все изменения сохранены",
"Common.Views.Header.textSaveExpander": "Все изменения сохранены",
"Common.Views.Header.tipAccessRights": "Управление правами доступа к документу",
"Common.Views.Header.tipDownload": "Скачать файл",
"Common.Views.Header.tipGoEdit": "Редактировать текущий файл",
"Common.Views.Header.tipPrint": "Напечатать файл",
"Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
"Common.Views.Header.txtAccessRights": "Изменить права доступа",
"Common.Views.Header.txtRename": "Переименовать",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Отмена",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -94,6 +105,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Минимальное значение для этого поля - {0}.",
"Common.Views.InsertTableDialog.txtRows": "Количество строк",
"Common.Views.InsertTableDialog.txtTitle": "Размер таблицы",
"Common.Views.InsertTableDialog.txtTitleSplit": "Разделить ячейку",
"Common.Views.LanguageDialog.btnCancel": "Отмена",
"Common.Views.LanguageDialog.btnOk": "Ок",
"Common.Views.LanguageDialog.labelSelect": "Выбрать язык документа",
@ -104,9 +116,11 @@
"Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1",
"Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл",
"Common.Views.PluginDlg.textLoading": "Загрузка",
"Common.Views.Plugins.strPlugins": "Дополнения",
"Common.Views.Plugins.groupCaption": "Плагины",
"Common.Views.Plugins.strPlugins": "Плагины",
"Common.Views.Plugins.textLoading": "Загрузка",
"Common.Views.Plugins.textStart": "Запустить",
"Common.Views.Plugins.textStop": "Остановить",
"Common.Views.RenameDialog.cancelButtonText": "Отмена",
"Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "Имя файла",
@ -202,6 +216,7 @@
"PE.Controllers.Main.txtHeader": "Верхний колонтитул",
"PE.Controllers.Main.txtImage": "Образ слайда",
"PE.Controllers.Main.txtLines": "Линии",
"PE.Controllers.Main.txtLoading": "Загрузка...",
"PE.Controllers.Main.txtMath": "Математические знаки",
"PE.Controllers.Main.txtMedia": "Клип мультимедиа",
"PE.Controllers.Main.txtNeedSynchronize": "Есть обновления",
@ -700,6 +715,7 @@
"PE.Views.DocumentHolder.txtBorderProps": "Свойства границ",
"PE.Views.DocumentHolder.txtBottom": "По нижнему краю",
"PE.Views.DocumentHolder.txtChangeLayout": "Изменить макет",
"PE.Views.DocumentHolder.txtChangeTheme": "Изменить тему",
"PE.Views.DocumentHolder.txtColumnAlign": "Выравнивание столбца",
"PE.Views.DocumentHolder.txtDecreaseArg": "Уменьшить размер аргумента",
"PE.Views.DocumentHolder.txtDeleteArg": "Удалить аргумент",
@ -765,6 +781,7 @@
"PE.Views.DocumentHolder.txtShowPlaceholder": "Показать поля для заполнения",
"PE.Views.DocumentHolder.txtShowTopLimit": "Показать верхний предел",
"PE.Views.DocumentHolder.txtSlide": "Слайд",
"PE.Views.DocumentHolder.txtSlideHide": "Скрыть слайд",
"PE.Views.DocumentHolder.txtStretchBrackets": "Растянуть скобки",
"PE.Views.DocumentHolder.txtTop": "По верхнему краю",
"PE.Views.DocumentHolder.txtUnderbar": "Черта под текстом",
@ -773,6 +790,7 @@
"PE.Views.DocumentPreview.goToSlideText": "Перейти к слайду",
"PE.Views.DocumentPreview.slideIndexText": "Слайд {0} из {1}",
"PE.Views.DocumentPreview.txtClose": "Завершить показ слайдов",
"PE.Views.DocumentPreview.txtEndSlideshow": "Завершить показ слайдов",
"PE.Views.DocumentPreview.txtExitFullScreen": "Выйти из полноэкранного режима",
"PE.Views.DocumentPreview.txtFinalMessage": "Просмотр слайдов завершен. Щелкните, чтобы выйти.",
"PE.Views.DocumentPreview.txtFullScreen": "Полноэкранный режим",
@ -781,6 +799,7 @@
"PE.Views.DocumentPreview.txtPause": "Приостановить презентацию",
"PE.Views.DocumentPreview.txtPlay": "Запустить презентацию",
"PE.Views.DocumentPreview.txtPrev": "Предыдущий слайд",
"PE.Views.DocumentPreview.txtReset": "Сброс",
"PE.Views.FileMenu.btnAboutCaption": "О программе",
"PE.Views.FileMenu.btnBackCaption": "Перейти к Документам",
"PE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню",
@ -892,8 +911,7 @@
"PE.Views.LeftMenu.tipAbout": "О программе",
"PE.Views.LeftMenu.tipChat": "Чат",
"PE.Views.LeftMenu.tipComments": "Комментарии",
"PE.Views.LeftMenu.tipFile": "Файл",
"PE.Views.LeftMenu.tipPlugins": "Дополнения",
"PE.Views.LeftMenu.tipPlugins": "Плагины",
"PE.Views.LeftMenu.tipSearch": "Поиск",
"PE.Views.LeftMenu.tipSlides": "Слайды",
"PE.Views.LeftMenu.tipSupport": "Обратная связь и поддержка",
@ -1122,18 +1140,13 @@
"PE.Views.Statusbar.tipAccessRights": "Управление правами доступа к документу",
"PE.Views.Statusbar.tipFitPage": "По размеру слайда",
"PE.Views.Statusbar.tipFitWidth": "По ширине",
"PE.Views.Statusbar.tipMoreUsers": "и %1 пользователей.",
"PE.Views.Statusbar.tipPreview": "Начать показ слайдов",
"PE.Views.Statusbar.tipSetDocLang": "Задать язык документа",
"PE.Views.Statusbar.tipSetLang": "Выбрать язык текста",
"PE.Views.Statusbar.tipSetSpelling": "Проверка орфографии",
"PE.Views.Statusbar.tipShowUsers": "Чтобы увидеть всех пользователей, нажмите на значок ниже.",
"PE.Views.Statusbar.tipUsers": "Документ редактируется несколькими пользователями.",
"PE.Views.Statusbar.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
"PE.Views.Statusbar.tipZoomFactor": "Увеличение",
"PE.Views.Statusbar.tipZoomFactor": "Масштаб",
"PE.Views.Statusbar.tipZoomIn": "Увеличить",
"PE.Views.Statusbar.tipZoomOut": "Уменьшить",
"PE.Views.Statusbar.txAccessRights": "Изменить права доступа",
"PE.Views.Statusbar.txtPageNumInvalid": "Неправильный номер слайда",
"PE.Views.TableSettings.deleteColumnText": "Удалить столбец",
"PE.Views.TableSettings.deleteRowText": "Удалить строку",
@ -1233,6 +1246,18 @@
"PE.Views.TextArtSettings.txtNoBorders": "Без обводки",
"PE.Views.TextArtSettings.txtPapyrus": "Папирус",
"PE.Views.TextArtSettings.txtWood": "Дерево",
"PE.Views.Toolbar.capAddSlide": "Добавить слайд",
"PE.Views.Toolbar.capBtnComment": "Комментарий",
"PE.Views.Toolbar.capInsertChart": "Диаграмма",
"PE.Views.Toolbar.capInsertEquation": "Формула",
"PE.Views.Toolbar.capInsertHyperlink": "Гиперссылка",
"PE.Views.Toolbar.capInsertImage": "Изображение",
"PE.Views.Toolbar.capInsertShape": "Фигура",
"PE.Views.Toolbar.capInsertTable": "Таблица",
"PE.Views.Toolbar.capInsertText": "Надпись",
"PE.Views.Toolbar.capTabFile": "Файл",
"PE.Views.Toolbar.capTabHome": "Главная",
"PE.Views.Toolbar.capTabInsert": "Вставка",
"PE.Views.Toolbar.mniCustomTable": "Пользовательская таблица",
"PE.Views.Toolbar.mniImageFromFile": "Изображение из файла",
"PE.Views.Toolbar.mniImageFromUrl": "Изображение по URL",
@ -1256,14 +1281,12 @@
"PE.Views.Toolbar.textCancel": "Отмена",
"PE.Views.Toolbar.textCharts": "Диаграммы",
"PE.Views.Toolbar.textColumn": "Гистограмма",
"PE.Views.Toolbar.textCompactView": "Компактная панель инструментов",
"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.textInsText": "Вставить надпись",
"PE.Views.Toolbar.textInsTextArt": "Вставить объект Text Art",
"PE.Views.Toolbar.textItalic": "Курсив",
"PE.Views.Toolbar.textLine": "График",
"PE.Views.Toolbar.textNewColor": "Пользовательский цвет",
@ -1278,12 +1301,16 @@
"PE.Views.Toolbar.textShapeAlignTop": "Выровнять по верхнему краю",
"PE.Views.Toolbar.textShowBegin": "Показ слайдов с начала",
"PE.Views.Toolbar.textShowCurrent": "Показ слайдов с текущего слайда",
"PE.Views.Toolbar.textShowPresenterView": "Показать режим докладчика",
"PE.Views.Toolbar.textShowSettings": "Параметры показа слайдов",
"PE.Views.Toolbar.textStock": "Биржевая",
"PE.Views.Toolbar.textStrikeout": "Зачеркнутый",
"PE.Views.Toolbar.textSubscript": "Подстрочные знаки",
"PE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
"PE.Views.Toolbar.textSurface": "Поверхность",
"PE.Views.Toolbar.textTabFile": "Файл",
"PE.Views.Toolbar.textTabHome": "Главная",
"PE.Views.Toolbar.textTabInsert": "Вставка",
"PE.Views.Toolbar.textTitleError": "Ошибка",
"PE.Views.Toolbar.textUnderline": "Подчеркнутый",
"PE.Views.Toolbar.textZoom": "Масштаб",
@ -1298,7 +1325,7 @@
"PE.Views.Toolbar.tipCopyStyle": "Копировать стиль",
"PE.Views.Toolbar.tipDecPrLeft": "Уменьшить отступ",
"PE.Views.Toolbar.tipFontColor": "Цвет шрифта",
"PE.Views.Toolbar.tipFontName": "Название шрифта",
"PE.Views.Toolbar.tipFontName": "Шрифт",
"PE.Views.Toolbar.tipFontSize": "Размер шрифта",
"PE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание",
"PE.Views.Toolbar.tipHideBars": "Скрыть строки заголовка и статуса",
@ -1310,11 +1337,10 @@
"PE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
"PE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
"PE.Views.Toolbar.tipInsertText": "Вставить текст",
"PE.Views.Toolbar.tipInsertTextArt": "Вставить объект Text Art",
"PE.Views.Toolbar.tipLineSpace": "Междустрочный интервал",
"PE.Views.Toolbar.tipMarkers": "Маркированный список",
"PE.Views.Toolbar.tipNewDocument": "Новая презентация",
"PE.Views.Toolbar.tipNumbers": "Нумерованный список",
"PE.Views.Toolbar.tipOpenDocument": "Открыть презентацию",
"PE.Views.Toolbar.tipPaste": "Вставить",
"PE.Views.Toolbar.tipPreview": "Начать показ слайдов",
"PE.Views.Toolbar.tipPrint": "Печать",

View file

@ -23,7 +23,7 @@
"Common.UI.SearchDialog.textTitle": "Hľadať",
"Common.UI.SearchDialog.textTitle2": "Hľadať",
"Common.UI.SearchDialog.textWholeWords": "Len celé slová\n\n",
"Common.UI.SearchDialog.txtBtnHideReplace": "Skryť náhradu/zámenu",
"Common.UI.SearchDialog.txtBtnHideReplace": "Skryť náhradu",
"Common.UI.SearchDialog.txtBtnReplace": "Nahradiť",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko",
"Common.UI.SynchronizeTip.textDontShow": "Neukazovať túto správu znova",
@ -68,8 +68,8 @@
"Common.Views.Comments.textResolve": "Vyriešiť",
"Common.Views.Comments.textResolved": "Vyriešené",
"Common.Views.CopyWarningDialog.textDontShow": "Neukazovať túto správu znova",
"Common.Views.CopyWarningDialog.textMsg": "Kopírujte, vystrihujte a priliepajte akcie pomocou tlačidiel panela nástrojov editora a akcie kontextovej ponuky sa vykonajú iba v rámci tejto karty editora.<br><br>Ak chcete kopírovať alebo priliepať do alebo z aplikácií mimo editora, použite nasledujúce klávesové skratky: \n",
"Common.Views.CopyWarningDialog.textTitle": "Kopírovať, vystrihnúť a prilepiť akcie",
"Common.Views.CopyWarningDialog.textMsg": "Kopírovať, vystrihovať a priliepať pomocou tlačidiel panela nástrojov editora a kontextovej ponuky sa vykonajú iba v rámci tejto karty editora.<br><br>Ak chcete kopírovať alebo priliepať do alebo z aplikácií mimo editora, použite nasledujúce klávesové skratky: ",
"Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť",
"Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie",
"Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie",
"Common.Views.CopyWarningDialog.textToPaste": "pre vloženie",
@ -78,8 +78,18 @@
"Common.Views.ExternalDiagramEditor.textClose": "Zatvoriť",
"Common.Views.ExternalDiagramEditor.textSave": "Uložiť a Zavrieť",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu",
"Common.Views.Header.openNewTabText": "Otvoriť na novej karte",
"Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.\n\n",
"Common.Views.Header.textBack": "Prejsť do Dokumentov",
"Common.Views.Header.textSaveBegin": "Ukladanie ...",
"Common.Views.Header.textSaveChanged": "Modifikovaný",
"Common.Views.Header.textSaveEnd": "Všetky zmeny boli uložené",
"Common.Views.Header.textSaveExpander": "Všetky zmeny boli uložené",
"Common.Views.Header.tipAccessRights": "Spravovať prístupové práva k dokumentom",
"Common.Views.Header.tipDownload": "Stiahnuť súbor",
"Common.Views.Header.tipGoEdit": "Editovať aktuálny súbor",
"Common.Views.Header.tipPrint": "Vytlačiť súbor",
"Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom\n\n",
"Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva",
"Common.Views.Header.txtRename": "Premenovať",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -99,7 +109,7 @@
"Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu",
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
"Common.Views.OpenDialog.okButtonText": "OK",
"Common.Views.OpenDialog.txtEncoding": "Kódovanie/zakódovanie",
"Common.Views.OpenDialog.txtEncoding": "Kódovanie",
"Common.Views.OpenDialog.txtPassword": "Heslo",
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
"Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor",
@ -277,7 +287,7 @@
"PE.Controllers.Toolbar.textMatrix": "Matice",
"PE.Controllers.Toolbar.textOperator": "Operátory",
"PE.Controllers.Toolbar.textRadical": "Odmocniny",
"PE.Controllers.Toolbar.textScript": "Skripty",
"PE.Controllers.Toolbar.textScript": "Mocniny",
"PE.Controllers.Toolbar.textSymbols": "Symboly",
"PE.Controllers.Toolbar.textWarning": "Upozornenie",
"PE.Controllers.Toolbar.txtAccent_Accent": "Dĺžeň",
@ -321,8 +331,8 @@
"PE.Controllers.Toolbar.txtBracket_Custom_3": "Zložený objekt",
"PE.Controllers.Toolbar.txtBracket_Custom_4": "Zložený objekt",
"PE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov\n\n",
"PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient\n\n",
"PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient\n\n",
"PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient",
"PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient",
"PE.Controllers.Toolbar.txtBracket_Line": "Zátvorky",
"PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Zátvorka",
"PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Zátvorka",
@ -377,7 +387,7 @@
"PE.Controllers.Toolbar.txtFunction_Csch": "Funkcia hyperbolický kosekans",
"PE.Controllers.Toolbar.txtFunction_Custom_1": "Sínus theta ",
"PE.Controllers.Toolbar.txtFunction_Custom_2": "Kosínus 2x",
"PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangentová rovnica\n\n",
"PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangentová rovnica",
"PE.Controllers.Toolbar.txtFunction_Sec": "Funkcia sekans",
"PE.Controllers.Toolbar.txtFunction_Sech": "Funkcia hyperbolický sekans",
"PE.Controllers.Toolbar.txtFunction_Sin": "Funkcia sínus",
@ -446,9 +456,9 @@
"PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Zjednotenie",
"PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Zjednotenie",
"PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Príklad limitu",
"PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximálny príklad\n\n",
"PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximálny príklad",
"PE.Controllers.Toolbar.txtLimitLog_Lim": "Limita",
"PE.Controllers.Toolbar.txtLimitLog_Ln": "Prirodzený logaritmus\n\n",
"PE.Controllers.Toolbar.txtLimitLog_Ln": "Prirodzený logaritmus",
"PE.Controllers.Toolbar.txtLimitLog_Log": "Logaritmus",
"PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus",
"PE.Controllers.Toolbar.txtLimitLog_Max": "Maximum",
@ -495,7 +505,7 @@
"PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Dvojité rovná sa",
"PE.Controllers.Toolbar.txtOperator_MinusEquals": "Mínus rovná sa",
"PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus rovná sa",
"PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Merať podľa\n\n",
"PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Merať podľa",
"PE.Controllers.Toolbar.txtRadicalCustom_1": "Odmocniny",
"PE.Controllers.Toolbar.txtRadicalCustom_2": "Odmocniny",
"PE.Controllers.Toolbar.txtRadicalRoot_2": "Druhá odmocnina",
@ -635,8 +645,8 @@
"PE.Views.DocumentHolder.deleteRowText": "Odstrániť riadok",
"PE.Views.DocumentHolder.deleteTableText": "Odstrániť tabuľku",
"PE.Views.DocumentHolder.deleteText": "Vymazať",
"PE.Views.DocumentHolder.direct270Text": "Otočiť text nahor\n",
"PE.Views.DocumentHolder.direct90Text": "Otočiť text nadol\n\n",
"PE.Views.DocumentHolder.direct270Text": "Otočiť text nahor",
"PE.Views.DocumentHolder.direct90Text": "Otočiť text nadol",
"PE.Views.DocumentHolder.directHText": "Vodorovný",
"PE.Views.DocumentHolder.directionText": "Smer textu",
"PE.Views.DocumentHolder.editChartText": "Upravovať dáta",
@ -765,6 +775,7 @@
"PE.Views.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka",
"PE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu\n",
"PE.Views.DocumentHolder.txtSlide": "Snímka",
"PE.Views.DocumentHolder.txtSlideHide": "Skryť snímok\n\n",
"PE.Views.DocumentHolder.txtStretchBrackets": "Zložená zátvorka",
"PE.Views.DocumentHolder.txtTop": "Hore",
"PE.Views.DocumentHolder.txtUnderbar": "Čiara pod textom",
@ -817,7 +828,7 @@
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Režim spoločnej úpravy",
"PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz\n\n",
"PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ",
"PE.Views.FileMenuPanels.Settings.strFast": "Rýchlo/rýchly",
"PE.Views.FileMenuPanels.Settings.strFast": "Rýchly",
"PE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)\n\n",
"PE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy\n\n",
"PE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase\n\n",
@ -838,7 +849,7 @@
"PE.Views.FileMenuPanels.Settings.txtAll": "Zobraziť všetko",
"PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Prispôsobiť snímke",
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "Prispôsobiť do formátu",
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "Prispôsobiť na šírku",
"PE.Views.FileMenuPanels.Settings.txtInch": "Palec (miera 2,54 cm)\n",
"PE.Views.FileMenuPanels.Settings.txtInput": "Alternatívny vstup\n\n",
"PE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný",
@ -856,7 +867,7 @@
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz",
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímok v tejto prezentácii\n\n",
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Typ odkazu",
"PE.Views.HyperlinkSettingsDialog.textTipText": "Text rady na obrazovke",
"PE.Views.HyperlinkSettingsDialog.textTipText": "Popis",
"PE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu",
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n",
"PE.Views.HyperlinkSettingsDialog.txtFirst": "Prvá snímka",
@ -892,7 +903,6 @@
"PE.Views.LeftMenu.tipAbout": "O aplikácii",
"PE.Views.LeftMenu.tipChat": "Rozhovor",
"PE.Views.LeftMenu.tipComments": "Komentáre",
"PE.Views.LeftMenu.tipFile": "Súbor",
"PE.Views.LeftMenu.tipPlugins": "Pluginy",
"PE.Views.LeftMenu.tipSearch": "Hľadať",
"PE.Views.LeftMenu.tipSlides": "Snímky",
@ -908,7 +918,7 @@
"PE.Views.ParagraphSettings.textAtLeast": "Najmenej\n\n",
"PE.Views.ParagraphSettings.textAuto": "Násobky",
"PE.Views.ParagraphSettings.textExact": "Presne",
"PE.Views.ParagraphSettings.txtAutoText": "automaticky/automatický",
"PE.Views.ParagraphSettings.txtAutoText": "Automaticky",
"PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Zrušiť",
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli",
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
@ -944,13 +954,13 @@
"PE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky",
"PE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art",
"PE.Views.ShapeSettings.strBackground": "Farba pozadia",
"PE.Views.ShapeSettings.strChange": "Zmeniť automatický tvar\n\n",
"PE.Views.ShapeSettings.strChange": "Zmeniť automatický tvar",
"PE.Views.ShapeSettings.strColor": "Farba",
"PE.Views.ShapeSettings.strFill": "Vyplniť",
"PE.Views.ShapeSettings.strForeground": "Farba popredia",
"PE.Views.ShapeSettings.strPattern": "Vzor",
"PE.Views.ShapeSettings.strSize": "Veľkosť",
"PE.Views.ShapeSettings.strStroke": "Ťah/črta",
"PE.Views.ShapeSettings.strStroke": "Obrys",
"PE.Views.ShapeSettings.strTransparency": "Priehľadnosť",
"PE.Views.ShapeSettings.strType": "Typ",
"PE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
@ -962,7 +972,7 @@
"PE.Views.ShapeSettings.textFromUrl": "Z URL adresy ",
"PE.Views.ShapeSettings.textGradient": "Prechod",
"PE.Views.ShapeSettings.textGradientFill": "Výplň prechodom",
"PE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra\n\n",
"PE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra",
"PE.Views.ShapeSettings.textLinear": "Lineárny/čiarový",
"PE.Views.ShapeSettings.textNewColor": "Vlastná farba",
"PE.Views.ShapeSettings.textNoFill": "Bez výplne",
@ -996,13 +1006,13 @@
"PE.Views.ShapeSettingsAdvanced.textArrows": "Šípky",
"PE.Views.ShapeSettingsAdvanced.textBeginSize": "Veľkosť začiatku",
"PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Štýl začiatku",
"PE.Views.ShapeSettingsAdvanced.textBevel": "Šikmý sklon/strana, úprava okraja",
"PE.Views.ShapeSettingsAdvanced.textBevel": "Skosenie",
"PE.Views.ShapeSettingsAdvanced.textBottom": "Dole",
"PE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia\n",
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Počet stĺpcov",
"PE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca",
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "Štýl konca",
"PE.Views.ShapeSettingsAdvanced.textFlat": "Rovný/plochý",
"PE.Views.ShapeSettingsAdvanced.textFlat": "Plochý",
"PE.Views.ShapeSettingsAdvanced.textHeight": "Výška",
"PE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia\n\n",
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n",
@ -1010,13 +1020,13 @@
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary\n\n",
"PE.Views.ShapeSettingsAdvanced.textMiter": "Sklon",
"PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo",
"PE.Views.ShapeSettingsAdvanced.textRound": "Kruh/dookola",
"PE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené",
"PE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť",
"PE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami\n\n",
"PE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec/druhá mocnina",
"PE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec",
"PE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavenia",
"PE.Views.ShapeSettingsAdvanced.textTop": "Hore",
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Hmotnosti a šípky\n\n",
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru\n\n",
"PE.Views.ShapeSettingsAdvanced.textWidth": "Šírka",
"PE.Views.ShapeSettingsAdvanced.txtNone": "Žiadny",
"PE.Views.SlideSettings.strBackground": "Farba pozadia",
@ -1030,14 +1040,14 @@
"PE.Views.SlideSettings.strStartOnClick": "Začať kliknutím\n\n",
"PE.Views.SlideSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
"PE.Views.SlideSettings.textApplyAll": "Použiť na všetky snímky",
"PE.Views.SlideSettings.textBlack": "Prostredníctvom čiernej\n\n",
"PE.Views.SlideSettings.textBlack": "Prostredníctvom čiernej",
"PE.Views.SlideSettings.textBottom": "Dole",
"PE.Views.SlideSettings.textBottomLeft": "Dole vľavo",
"PE.Views.SlideSettings.textBottomRight": "Dole vpravo",
"PE.Views.SlideSettings.textClock": "Hodiny",
"PE.Views.SlideSettings.textClockwise": "V smere hodinových ručičiek\n\n",
"PE.Views.SlideSettings.textClockwise": "V smere hodinových ručičiek",
"PE.Views.SlideSettings.textColor": "Vyplniť farbou",
"PE.Views.SlideSettings.textCounterclockwise": "Proti smeru hodinových ručičiek\n\n",
"PE.Views.SlideSettings.textCounterclockwise": "Proti smeru hodinových ručičiek",
"PE.Views.SlideSettings.textCover": "Zakryť",
"PE.Views.SlideSettings.textDirection": "Smer",
"PE.Views.SlideSettings.textEmptyPattern": "Bez vzoru",
@ -1046,9 +1056,9 @@
"PE.Views.SlideSettings.textFromUrl": "Z URL adresy ",
"PE.Views.SlideSettings.textGradient": "Prechod",
"PE.Views.SlideSettings.textGradientFill": "Výplň prechodom",
"PE.Views.SlideSettings.textHorizontalIn": "Horizontálne dnu\n\n",
"PE.Views.SlideSettings.textHorizontalOut": "Horizontálne von\n\n",
"PE.Views.SlideSettings.textImageTexture": "Obrázok alebo textúra\n\n",
"PE.Views.SlideSettings.textHorizontalIn": "Horizontálne dnu",
"PE.Views.SlideSettings.textHorizontalOut": "Horizontálne von",
"PE.Views.SlideSettings.textImageTexture": "Obrázok alebo textúra",
"PE.Views.SlideSettings.textLeft": "Vľavo",
"PE.Views.SlideSettings.textLinear": "Lineárny/čiarový",
"PE.Views.SlideSettings.textNewColor": "Vlastná farba",
@ -1072,7 +1082,7 @@
"PE.Views.SlideSettings.textTopLeft": "Hore vľavo",
"PE.Views.SlideSettings.textTopRight": "Hore vpravo",
"PE.Views.SlideSettings.textUnCover": "Odkryť",
"PE.Views.SlideSettings.textVerticalIn": "Vertikálne dnu\n\n",
"PE.Views.SlideSettings.textVerticalIn": "Vertikálne dnu",
"PE.Views.SlideSettings.textVerticalOut": "Vertikálne von",
"PE.Views.SlideSettings.textWedge": "Konjunkcia",
"PE.Views.SlideSettings.textWipe": "Rozotrieť",
@ -1119,21 +1129,16 @@
"PE.Views.SlideSizeSettings.txtWidescreen2": "Širokouhlý (16:10)",
"PE.Views.Statusbar.goToPageText": "Prejsť na snímku",
"PE.Views.Statusbar.pageIndexText": "Snímka {0} z {1}",
"PE.Views.Statusbar.tipAccessRights": "Spravovať prístupové práva k dokumentom\n\n",
"PE.Views.Statusbar.tipAccessRights": "Spravovať prístupové práva k dokumentom",
"PE.Views.Statusbar.tipFitPage": "Prispôsobiť snímke",
"PE.Views.Statusbar.tipFitWidth": "Prispôsobiť do formátu",
"PE.Views.Statusbar.tipMoreUsers": "a %1 užívateľov.",
"PE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku",
"PE.Views.Statusbar.tipPreview": "Spustiť prezentáciu",
"PE.Views.Statusbar.tipSetDocLang": "Nastaviť jazyk dokumentov\n\n",
"PE.Views.Statusbar.tipSetDocLang": "Nastaviť jazyk dokumentov",
"PE.Views.Statusbar.tipSetLang": "Nastaviť jazyk textu\n\n",
"PE.Views.Statusbar.tipSetSpelling": "Kontrola pravopisu",
"PE.Views.Statusbar.tipShowUsers": "Ak chcete vidieť všetkých používateľov, kliknite na ikonu nižšie.\n\n",
"PE.Views.Statusbar.tipUsers": "Dokument v súčasnosti upravuje niekoľko používateľov.\n\n",
"PE.Views.Statusbar.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom\n\n",
"PE.Views.Statusbar.tipZoomFactor": "Zväčšenie/zväčšenie veľkosti\n",
"PE.Views.Statusbar.tipZoomIn": "Priblížiť",
"PE.Views.Statusbar.tipZoomOut": "Oddialiť",
"PE.Views.Statusbar.txAccessRights": "Zmeniť prístupové práva",
"PE.Views.Statusbar.txtPageNumInvalid": "Neplatné číslo snímky",
"PE.Views.TableSettings.deleteColumnText": "Odstrániť stĺpec",
"PE.Views.TableSettings.deleteRowText": "Odstrániť riadok",
@ -1197,7 +1202,7 @@
"PE.Views.TextArtSettings.strForeground": "Farba popredia",
"PE.Views.TextArtSettings.strPattern": "Vzor",
"PE.Views.TextArtSettings.strSize": "Veľkosť",
"PE.Views.TextArtSettings.strStroke": "Ťah/črta",
"PE.Views.TextArtSettings.strStroke": "Obrys",
"PE.Views.TextArtSettings.strTransparency": "Priehľadnosť",
"PE.Views.TextArtSettings.strType": "Typ",
"PE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte číselnú hodnotu medzi 0 a 1584.\n",
@ -1208,7 +1213,7 @@
"PE.Views.TextArtSettings.textFromUrl": "Z URL adresy ",
"PE.Views.TextArtSettings.textGradient": "Prechod",
"PE.Views.TextArtSettings.textGradientFill": "Výplň prechodom",
"PE.Views.TextArtSettings.textImageTexture": "Obrázok alebo textúra\n\n",
"PE.Views.TextArtSettings.textImageTexture": "Obrázok alebo textúra",
"PE.Views.TextArtSettings.textLinear": "Lineárny/čiarový",
"PE.Views.TextArtSettings.textNewColor": "Pridať novú vlastnú farbu",
"PE.Views.TextArtSettings.textNoFill": "Bez výplne",
@ -1233,6 +1238,17 @@
"PE.Views.TextArtSettings.txtNoBorders": "Bez čiary",
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Drevo",
"PE.Views.Toolbar.capAddSlide": "Pridať snímku",
"PE.Views.Toolbar.capInsertChart": "Graf",
"PE.Views.Toolbar.capInsertEquation": "Rovnica",
"PE.Views.Toolbar.capInsertHyperlink": "Hypertextový odkaz",
"PE.Views.Toolbar.capInsertImage": "Obrázok",
"PE.Views.Toolbar.capInsertShape": "Tvar",
"PE.Views.Toolbar.capInsertTable": "Tabuľka",
"PE.Views.Toolbar.capInsertText": "Textové pole\n\n",
"PE.Views.Toolbar.capTabFile": "Súbor",
"PE.Views.Toolbar.capTabHome": "Hlavná stránka",
"PE.Views.Toolbar.capTabInsert": "Vložiť",
"PE.Views.Toolbar.mniCustomTable": "Vložiť vlastnú tabuľku",
"PE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru",
"PE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy",
@ -1258,12 +1274,10 @@
"PE.Views.Toolbar.textColumn": "Stĺpec",
"PE.Views.Toolbar.textCompactView": "Zobraziť kompaktnú lištu nástrojov",
"PE.Views.Toolbar.textFitPage": "Prispôsobiť snímke",
"PE.Views.Toolbar.textFitWidth": "Prispôsobiť do formátu",
"PE.Views.Toolbar.textFitWidth": "Prispôsobiť na šírku",
"PE.Views.Toolbar.textHideLines": "Skryť pravítka\n\n",
"PE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok",
"PE.Views.Toolbar.textHideTitleBar": "Skryť lištu nadpisu\n\n",
"PE.Views.Toolbar.textInsText": "Vložiť textové pole",
"PE.Views.Toolbar.textInsTextArt": "Vložiť Text Art",
"PE.Views.Toolbar.textItalic": "Kurzíva",
"PE.Views.Toolbar.textLine": "Čiara/líniový graf",
"PE.Views.Toolbar.textNewColor": "Vlastná farba",
@ -1284,6 +1298,9 @@
"PE.Views.Toolbar.textSubscript": "Dolný index",
"PE.Views.Toolbar.textSuperscript": "Horný index",
"PE.Views.Toolbar.textSurface": "Povrch",
"PE.Views.Toolbar.textTabFile": "Súbor",
"PE.Views.Toolbar.textTabHome": "Hlavná stránka",
"PE.Views.Toolbar.textTabInsert": "Vložiť",
"PE.Views.Toolbar.textTitleError": "Chyba",
"PE.Views.Toolbar.textUnderline": "Podčiarknuť",
"PE.Views.Toolbar.textZoom": "Priblíženie",
@ -1307,14 +1324,12 @@
"PE.Views.Toolbar.tipInsertEquation": "Vložiť rovnicu",
"PE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz",
"PE.Views.Toolbar.tipInsertImage": "Vložiť obrázok",
"PE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar\n\n",
"PE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar",
"PE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku",
"PE.Views.Toolbar.tipInsertText": "Vložiť text",
"PE.Views.Toolbar.tipLineSpace": "Riadkovanie",
"PE.Views.Toolbar.tipMarkers": "Odrážky",
"PE.Views.Toolbar.tipNewDocument": "Nová prezentácia",
"PE.Views.Toolbar.tipNumbers": "Číslovanie",
"PE.Views.Toolbar.tipOpenDocument": "Otvoriť prezentáciu",
"PE.Views.Toolbar.tipPaste": "Vložiť",
"PE.Views.Toolbar.tipPreview": "Spustiť prezentáciu",
"PE.Views.Toolbar.tipPrint": "Tlačiť",
@ -1335,7 +1350,7 @@
"PE.Views.Toolbar.txtScheme10": "Medián",
"PE.Views.Toolbar.txtScheme11": "Metro",
"PE.Views.Toolbar.txtScheme12": "Modul",
"PE.Views.Toolbar.txtScheme13": "Výnos",
"PE.Views.Toolbar.txtScheme13": "Výnos",
"PE.Views.Toolbar.txtScheme14": "Výklenok\n",
"PE.Views.Toolbar.txtScheme15": "Pôvod",
"PE.Views.Toolbar.txtScheme16": "Papier",

View file

@ -24,6 +24,7 @@
{"src": "HelpfulHints/AdvancedSettings.htm", "name": "Advanced Settings of Presentation Editor"},
{"src": "HelpfulHints/Navigation.htm", "name": "View Settings and Navigation Tools"},
{"src": "HelpfulHints/Search.htm", "name": "Search Function"},
{"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative Presentation Editing"},
{"src": "HelpfulHints/CollaborativeEditing.htm", "name": "Collaborative Presentation Editing" },
{"src": "HelpfulHints/SpellChecking.htm", "name": "Spell-checking"},
{"src": "HelpfulHints/KeyboardShortcuts.htm", "name": "Keyboard Shortcuts"}
]

View file

@ -13,7 +13,7 @@
and edit presentations<span class="onlineDocumentFeatures"> directly in your browser</span>.</p>
<p>Using <b>Presentation Editor</b>, you can perform various editing operations like in any desktop editor,
print the edited presentations keeping all the formatting details or download them onto your computer hard disk drive
as PDF or PPTX files.</p>
as PDF, PPTX, or ODP files.</p>
<p>To view the current software version and licensor details, click the <img alt="About icon" src="../images/about.png" /> icon at the left sidebar.</p>
</div>
</body>

View file

@ -31,7 +31,7 @@
To fit the whole slide to the visible part of the working area, click the <b>Fit Slide</b> <img alt="Fit Slide button" src="../images/fitslide.png" /> icon.
Zoom settings are also available in the <b>View Settings</b> <img alt="View Settings icon" src="../images/viewsettingsicon.png" /> drop-down list that can be useful if you decide to hide the <b>Status Bar</b>.</p>
<p class="note"><b>Note</b>: you can set a default zoom value. Click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar, go to the <b>Advanced Settings...</b> section, choose the necessary <b>Default Zoom Value</b> from the list and click the <b>Apply</b> button.</p>
<p>The <b>Previous Slide</b> <img alt="Previous Slide button" src="../images/previouspage.png" /> and <b>Next Slide</b> <img alt="Next Slide button" src="../images/nextpage.png" /> buttons are situated in the lower right corner under the scrollbar and used to go to the previous or next slide of the current presentation.</p>
<p>To go to the previous or next slide when editing the presentation, you can use the <img alt="Previous Slide button" src="../images/previouspage.png" /> and <img alt="Next Slide button" src="../images/nextpage.png" /> buttons at the top and bottom of the vertical scroll bar located to the right of the slide.</p>
<p>The <b>Slide Number Indicator</b> shows the current slide as a part of all the slides in the current presentation (slide 'n' of 'nn').
Click this caption to open the window where you can enter the slide number and quickly go to it. If you decide to hide the <b>Status Bar</b>, this tool will become inaccessible.</p>

View file

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<title>Spell-checking</title>
<meta charset="utf-8" />
<meta name="description" content="Spell check the text in your language while editing a presentation" />
<link type="text/css" rel="stylesheet" href="../editor.css" />
</head>
<body>
<div class="mainpart">
<h1>Spell-checking</h1>
<p><b>Presentation Editor</b> allows you to check the spelling of your text in a certain language and correct mistakes while editing.</p>
<p>First of all, <b>choose a language</b> for your presentation. Click the <img alt="Set Presentation Language icon" src="../images/document_language.png" /> icon at the right part of the <b>Status bar</b>. In the window that appears, select the necessary language and click <b>OK</b>. The selected language will be applied to the whole presentation. </p>
<p><img alt="Set Presentation Language window" src="../images/document_language_window.png" /></p>
<p>To <b>choose a different language</b> for any piece of text within the presentation, select the necessary text passage with the mouse and use the <img alt="Spell-checking - Text Language selector" src="../images/spellchecking_language.png" /> menu at the <b>Status bar</b>.</p>
<p>Incorrectly spelled words will be underlined by a red line.</p>
<p>Right click on the necessary word to activate the menu and:</p>
<ul>
<li>choose one of the suggested similar words spelled correctly to replace the misspelled word with the suggested one. If too many variants are found, the <b>More variants...</b> option appears in the menu;</li>
<li>use the <b>Ignore</b> option to skip just that word and remove underlining or <b>Ignore all</b> to skip all the identical words repeated in the text;</li>
<li>select a different language for this word.</li>
</ul>
<p><img alt="Spell-checking" src="../images/spellchecking_presentation.png" /></p>
<p>To <b>turn off</b> the spell checking option,</p>
<ol>
<li>click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar,</li>
<li>select the <b>Advanced Settings...</b> option,</li>
<li>uncheck the <b>Turn on spell checking option</b> box,</li>
<li>click the <b>Apply</b> button.</li>
</ol>
<p>You can alternatively click the <img alt="Spell Checking activated icon" src="../images/spellcheckactivated.png" /> icon at the right part of the <b>Status bar</b> - after that the icon will look like this <img alt="Spell Checking deactivated icon" src="../images/spellcheckdeactivated.png" />.</p>
</div>
</body>
</html>

View file

@ -38,7 +38,7 @@
<td>OpenDocument Presentation<br />File format that represents presentation document created by Impress application, which is a part of OpenOffice based office suites</td>
<td>+</td>
<td>+</td>
<td></td>
<td>+</td>
</tr>
<tr>
<td>PDF</td>

View file

@ -75,15 +75,39 @@
</li>
<li><b>Arrows</b> - this option group is available if a shape from the <b>Lines</b> shape group is selected. It allows to set the arrow <b>Start</b> and <b>End Style</b> and <b>Size</b> by selecting the appropriate option from the drop-down lists.</li>
</ul>
<p><img alt="Shape Properties - Text Padding tab" src="../images/shape_properties3.png" /></p>
<p><a id="internalmargins"></a>The <b>Text Padding</b> tab allows to change the autoshape <b>Top</b>, <b>Bottom</b>, <b>Left</b> and <b>Right</b> internal margins (i.e. the distance between the text within the shape and the autoshape borders).</p>
<p id="internalmargins"><img alt="Shape Properties - Text Padding tab" src="../images/shape_properties3.png" /></p>
<p>The <b>Text Padding</b> tab allows to change the autoshape <b>Top</b>, <b>Bottom</b>, <b>Left</b> and <b>Right</b> internal margins (i.e. the distance between the text within the shape and the autoshape borders).</p>
<p class="note"><b>Note</b>: this tab is only available if text is added within the autoshape, otherwise the tab is disabled.</p>
<p id ="columns"><img alt="Shape Properties - Columns tab" src="../images/shape_properties2.png" /></p>
<p>The <b>Columns</b> tab allows to add columns of text within the autoshape specifying the necessary <b>Number of columns</b> (up to 16) and <b>Spacing between columns</b>. Once you click <b>OK</b>, the text that already exists or any other text you enter within the autoshape will appear in columns and will flow from one column to another.</p>
<p><img alt="Shape Properties - Alternative Text tab" src="../images/shape_properties4.png" /></p>
<p>The <b>Alternative Text</b> tab allows to specify a <b>Title</b> and <b>Description</b> which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the shape.</p>
<hr />
<p>To <b>replace</b> the added autoshape, left-click it and use the <b>Change Autoshape</b> drop-down list at the <b>Shape Settings</b> tab of the right sidebar.</p>
<p>To <b>delete</b> the added autoshape, left-click it and press the <b>Delete</b> key on the keyboard.</p>
<p>To learn how to <b>align</b> an autoshape on the slide or <b>arrange</b> several autoshapes, refer to the <a href="../UsageInstructions/AlignArrangeObjects.htm" onclick="onhyperlinkclick(this)">Align and arrange objects on a slide</a> section.</p>
<hr />
<h3>Join autoshapes using connectors</h3>
<p>You can connect autoshapes using lines with connection points to demonstrate dependencies between the objects (e.g. if you want to create a flowchart). To do that,</p>
<ol>
<li>click the <b>Insert Autoshape</b> <img alt="Insert Autoshape icon" src="../images/insertautoshape.png" /> icon at the top toolbar,</li>
<li>
select the <b>Lines</b> group from the menu,
<p><img alt="Shapes - Lines" src="../images/connectors.png" /></p>
</li>
<li>click the necessary shape within the selected group (excepting the last three shapes which are not connectors, namely <em>shape 10</em>, <em>11</em> and <em>12</em>),</li>
<li>
hover the mouse cursor over the first autoshape and click one of the connection points <img alt="Connection point icon" src="../images/connectionpoint.png" /> that appear on the shape outline,
<p><img alt="Using connectors" src="../images/connectors_firstshape.png" /></p>
</li>
<li>
drag the mouse cursor towards the second autoshape and click the necessary connection point on its outline.
<p><img alt="Using connectors" src="../images/connectors_secondshape.png" /></p>
</li>
</ol>
<p>If you move the joined autoshapes, the connector remains attached to the shapes and moves together with them. </p>
<p><img alt="Moving joined shapes" src="../images/connectors_moveshape.png" /></p>
<p>You can also detach the connector from the shapes and then attach it to any other connection points.</p>
</div>
</body>
</html>

View file

@ -41,6 +41,7 @@
<li>to <a href="../UsageInstructions/ManipulateObjects.htm" onclick="onhyperlinkclick(this)">resize, move, rotate</a> the text box use the special handles on the edges of the shape.</li>
<li>to edit the text box <a href="../UsageInstructions/FillObjectsSelectColor.htm" onclick="onhyperlinkclick(this)">fill</a>, <a href="../UsageInstructions/InsertAutoshapes.htm#shapestroke" onclick="onhyperlinkclick(this)">stroke</a>, <b>replace</b> the rectangular box with a different shape, or access the <a href="InsertAutoshapes.htm" onclick="onhyperlinkclick(this)">shape advanced settings</a>, click the <b>Shape Settings</b> <img alt="Shape Settings icon" src="../images/shape_settings_icon.png" /> icon on the right sidebar and use the corresponding options.</li>
<li>to <a href="../UsageInstructions/AlignArrangeObjects.htm" onclick="onhyperlinkclick(this)">align a text box on the slide or arrange</a> text boxes as related to other objects, right-click on the text box border and use the contextual menu options.</li>
<li>to create <b>columns of text</b> within the text box, right-click on the text box border, click the <b>Shape Advanced Settings</b> option and switch to the <a href="../UsageInstructions/InsertAutoshapes.htm#columns" onclick="onhyperlinkclick(this)"><b>Columns</b></a> tab in the <b>Shape - Advanced Settings</b> window.</li>
</ul>
<h3 id="formattext">Format the text within the text box</h3>
<p>Click the text within the text box to be able to change its properties. When the text is selected, the text box borders are displayed as dashed lines.</p>
@ -156,6 +157,7 @@
<ul>
<li><b>First Line Indent</b> marker <img alt="First Line Indent marker" src="../images/firstline_indent.png" /> is used to set the offset from the left internal margin of the text box for the first line of the paragraph.</li>
<li><b>Hanging Indent</b> marker <img alt="Hanging Indent marker" src="../images/hanging.png" /> is used to set the offset from the left internal margin of the text box for the second and all the subsequent lines of the paragraph.</li>
<li><b>Left Indent</b> marker <img alt="Left Indent marker" src="../images/leftindent.png" /> is used to set the entire paragraph offset from the left internal margin of the text box.</li>
<li><b>Right Indent</b> marker <img alt="Right Indent marker" src="../images/right_indent.png" /> is used to set the paragraph offset from the right internal margin of the text box.</li>
</ul>
<p class="note"><b>Note</b>: if you don't see the rulers, click the <b>View Settings</b> <img alt="View Settings icon" src="../images/viewsettingsicon.png" /> icon at the upper left corner of the top toolbar and uncheck the <b>Hide Rulers</b> option to display them.</p>

View file

@ -10,7 +10,7 @@
<body>
<div class="mainpart">
<h1>Preview your presentation</h1>
<p>To preview your currently edited presentation click the <b>Start Preview</b> <img alt="Start Preview icon" src="../images/startpreview.png" /> icon at the top toolbar or at the bottom left corner. You can also select a certain slide within the slide list on the left, right-click it and choose the <b>Preview</b> option from the menu.</p>
<p>To preview your currently edited presentation click the <b>Start Slideshow</b> <img alt="Start Slideshow icon" src="../images/startpreview.png" /> icon at the top toolbar or at the bottom left corner. You can also select a certain slide within the slide list on the left, right-click it and choose the <b>Start Slideshow</b> option from the contextual menu.</p>
<p>The preview will start from the currently selected slide. In the <b>Preview</b> mode, you can use the following controls at the bottom left corner:</p>
<ul>
<li>the <b>Pause Presentation</b> <img alt="Pause Presentation icon" src="../images/pausepresentation.png" /> button allows you to stop previewing.</li>
@ -21,7 +21,7 @@
</li>
<li>the <b>Full Screen</b> <img alt="Full Screen icon" src="../images/fullscreen.png" /> button allows you to switch to full screen mode.</li>
<li>the <b>Exit Full Screen</b> <img alt="Exit Full Screen icon" src="../images/exitfullscreen.png" /> button allows you to exit full screen mode.</li>
<li>the <b>Close Preview</b> <img alt="Close Preview icon" src="../images/closepreview.png" /> button allows you to exit the preview mode.</li>
<li>the <b>Close Slideshow</b> <img alt="Close Slideshow icon" src="../images/closepreview.png" /> button allows you to exit the preview mode.</li>
</ul>
<p>You can also <a href="../HelpfulHints/KeyboardShortcuts.htm#preview" onclick="onhyperlinkclick(this)">use the keyboard shortcuts</a> to navigate between the slides in the preview mode.</p>

View file

@ -29,7 +29,7 @@
<ol>
<li>click the <b>File</b> <img alt="File icon" src="../images/file.png" /> icon at the left sidebar,</li>
<li>select the <b>Download as</b> option,</li>
<li>choose one of the available formats depending on your needs: PDF, PPTX.</li>
<li>choose one of the available formats depending on your needs: PDF, PPTX, or ODP.</li>
</ol>
</div>
</div>

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