Merge pull request #1 from ONLYOFFICE/release/v5.0.0

Release/v5.0.0
This commit is contained in:
Julia Radzhabova 2017-08-22 14:08:09 +03:00 committed by GitHub
commit 8c7287def2
63 changed files with 1156 additions and 671 deletions

View file

@ -313,7 +313,7 @@
} }
if (typeof _config.document.fileType === 'string' && _config.document.fileType != '') { 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); .exec(_config.document.fileType);
if (!type) { if (!type) {
window.alert("The \"document.fileType\" parameter for the config object is invalid. Please correct it."); window.alert("The \"document.fileType\" parameter for the config object is invalid. Please correct it.");
@ -649,7 +649,7 @@
app = appMap[config.documentType.toLowerCase()]; app = appMap[config.documentType.toLowerCase()];
} else } else
if (!!config.document && typeof config.document.fileType === 'string') { 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); .exec(config.document.fileType);
if (type) { if (type) {
if (typeof type[1] === 'string') app = appMap['spreadsheet']; else if (typeof type[1] === 'string') app = appMap['spreadsheet']; else

View file

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

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 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 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 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 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) if (this.initConfig.header)
bordersTemplate += '<div class="resize-border left" style="top: 5px; height: 28px; cursor: e-resize;"></div>' + 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>'; '<div class="resize-border right" style="top: 5px; height: 28px; cursor: w-resize;"></div>';

View file

@ -110,6 +110,7 @@ define([
var $panel = toolbar.$el.find('#plugins-panel'); var $panel = toolbar.$el.find('#plugins-panel');
if ( $panel ) { if ( $panel ) {
this.panelPlugins.renderTo( $panel ); this.panelPlugins.renderTo( $panel );
this.panelPlugins._onAppReady();
} }
} }
}, },
@ -287,8 +288,8 @@ define([
}); });
me.pluginDlg.show(); me.pluginDlg.show();
} }
} else }
this.panelPlugins.openNotVisualMode(plugin.get_Guid()); this.panelPlugins.openedPluginMode(plugin.get_Guid());
}, },
onPluginClose: function(plugin) { onPluginClose: function(plugin) {
@ -296,9 +297,7 @@ define([
this.pluginDlg.close(); this.pluginDlg.close();
else if (this.panelPlugins.iframePlugin) else if (this.panelPlugins.iframePlugin)
this.panelPlugins.closeInsideMode(); this.panelPlugins.closeInsideMode();
else { this.panelPlugins.closedPluginMode(plugin.get_Guid());
this.panelPlugins.closeNotVisualMode(plugin.guid);
}
}, },
onPluginResize: function(size, minSize, maxSize, callback ) { onPluginResize: function(size, minSize, maxSize, callback ) {

View file

@ -83,7 +83,7 @@ define([
// '<span class="btn-slot text" id="slot-btn-users"></span>' + // '<span class="btn-slot text" id="slot-btn-users"></span>' +
'<section id="tlb-box-users" class="box-cousers dropdown"">' + '<section id="tlb-box-users" class="box-cousers dropdown"">' +
'<div class="btn-users">' + '<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>' + '<label class="caption">&plus;</label>' +
'</div>' + '</div>' +
'<div class="cousers-menu dropdown-menu">' + '<div class="cousers-menu dropdown-menu">' +
@ -122,7 +122,7 @@ define([
$userList.scroller && $userList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true}); $userList.scroller && $userList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true});
} }
applyUsers( collection.getOnlineCount() ); applyUsers( collection.getEditingCount() );
}; };
function onUsersChanged(model, collection) { function onUsersChanged(model, collection) {
@ -131,13 +131,13 @@ define([
$userList.scroller && $userList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true}); $userList.scroller && $userList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true});
} }
applyUsers(model.collection.getOnlineCount()); applyUsers(model.collection.getEditingCount());
}; };
function onResetUsers(collection, opts) { function onResetUsers(collection, opts) {
var usercount = collection.getOnlineCount(); var usercount = collection.getEditingCount();
if ( $userList ) { if ( $userList ) {
if ( usercount > 1 ) { if ( usercount > 1 || usercount > 0 && appConfig && !appConfig.isEdit) {
$userList.html(templateUserList({ $userList.html(templateUserList({
users: collection.models, users: collection.models,
usertpl: _.template(templateUserItem), usertpl: _.template(templateUserItem),
@ -159,7 +159,7 @@ define([
}; };
function applyUsers(count) { function applyUsers(count) {
if ( count > 1 ) { if ( count > 1 || count > 0 && appConfig && !appConfig.isEdit) {
$btnUsers $btnUsers
.attr('data-toggle', 'dropdown') .attr('data-toggle', 'dropdown')
.addClass('dropdown-toggle') .addClass('dropdown-toggle')
@ -176,13 +176,13 @@ define([
} }
$btnUsers.find('.caption') $btnUsers.find('.caption')
.css({'font-size': (count > 1 ? '12px' : '14px'), .css({'font-size': ((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? '12px' : '14px'),
'margin-top': (count > 1 ? '0' : '-1px')}) 'margin-top': ((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? '0' : '-1px')})
.html(count > 1 ? count : '&plus;'); .html((count > 1 || count > 0 && appConfig && !appConfig.isEdit) ? count : '&plus;');
var usertip = $btnUsers.data('bs.tooltip'); var usertip = $btnUsers.data('bs.tooltip');
if ( usertip ) { 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(); usertip.setContent();
} }
} }
@ -218,8 +218,8 @@ define([
var _url = !!me.branding && !!me.branding.logo && !!me.branding.logo.url ? var _url = !!me.branding && !!me.branding.logo && !!me.branding.logo.url ?
me.branding.logo.url : 'http://www.onlyoffice.com'; me.branding.logo.url : 'http://www.onlyoffice.com';
var newDocumentPage = window.open(_url); // var newDocumentPage = window.open(_url);
newDocumentPage && newDocumentPage.focus(); // newDocumentPage && newDocumentPage.focus();
}); });
$panelUsers.on('shown.bs.dropdown', function () { $panelUsers.on('shown.bs.dropdown', function () {
@ -229,8 +229,9 @@ define([
$panelUsers.find('.cousers-menu') $panelUsers.find('.cousers-menu')
.on('click', function(e) { return false; }); .on('click', function(e) { return false; });
var editingUsers = storeUsers.getEditingCount();
$btnUsers.tooltip({ $btnUsers.tooltip({
title: 'Manage document access rights', title: (editingUsers > 1 || editingUsers>0 && !appConfig.isEdit) ? me.tipViewUsers : me.tipAccessRights,
titleNorm: me.tipAccessRights, titleNorm: me.tipAccessRights,
titleExt: me.tipViewUsers, titleExt: me.tipViewUsers,
placement: 'bottom', placement: 'bottom',
@ -240,10 +241,13 @@ define([
$btnUsers.on('click', onUsersClick.bind(me)); $btnUsers.on('click', onUsersClick.bind(me));
var $labelChangeRights = $panelUsers.find('#tlb-change-rights'); 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'](); $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 ) { if ( $saveStatus ) {
$saveStatus.attr('data-width', me.textSaveExpander); $saveStatus.attr('data-width', me.textSaveExpander);

View file

@ -73,6 +73,7 @@ define([
initialize: function(options) { initialize: function(options) {
_.extend(this, options); _.extend(this, options);
this._locked = false; this._locked = false;
this._pluginsIsInited = false;
this._state = { this._state = {
DisabledControls: true DisabledControls: true
}; };
@ -95,7 +96,7 @@ define([
enableKeyEvents: false, enableKeyEvents: false,
itemTemplate: _.template([ itemTemplate: _.template([
'<div id="<%= id %>" class="item-plugins" style="display: block;">', '<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) { %>', '<% if (variations.length>1) { %>',
'<div class="plugin-caret img-commonctrl"></div>', '<div class="plugin-caret img-commonctrl"></div>',
'<% } %>', '<% } %>',
@ -149,10 +150,11 @@ define([
var me = this; var me = this;
var _group = $('<div class="group"></div>'); var _group = $('<div class="group"></div>');
this.storePlugins.each(function (model) { this.storePlugins.each(function (model) {
var modes = model.get('variations'); var modes = model.get('variations'),
var guid = model.get('guid'); guid = model.get('guid'),
var _icon_url = model.get('baseUrl') + modes[model.get('currentVariation')].get('icons')[(window.devicePixelRatio > 1) ? 1 : 0]; icons = modes[model.get('currentVariation')].get('icons'),
var btn = new Common.UI.Button({ _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', cls: 'btn-toolbar x-huge icon-top',
iconImg: _icon_url, iconImg: _icon_url,
caption: model.get('name'), caption: model.get('name'),
@ -160,7 +162,7 @@ define([
split: modes && modes.length > 1, split: modes && modes.length > 1,
value: guid, value: guid,
hint: model.get('name') hint: model.get('name')
}); });
var $slot = $('<span class="slot"></span>').appendTo(_group); var $slot = $('<span class="slot"></span>').appendTo(_group);
btn.render($slot); btn.render($slot);
@ -203,7 +205,7 @@ define([
if (!this.iframePlugin) { if (!this.iframePlugin) {
this.iframePlugin = document.createElement("iframe"); this.iframePlugin = document.createElement("iframe");
this.iframePlugin.id = 'plugin_iframe'; this.iframePlugin.id = 'plugin_iframe';
this.iframePlugin.name = 'pluginFrameEditor', this.iframePlugin.name = 'pluginFrameEditor';
this.iframePlugin.width = '100%'; this.iframePlugin.width = '100%';
this.iframePlugin.height = '100%'; this.iframePlugin.height = '100%';
this.iframePlugin.align = "top"; this.iframePlugin.align = "top";
@ -232,12 +234,12 @@ define([
this.iframePlugin = null; this.iframePlugin = null;
} }
this.currentPluginPanel.toggleClass('hidden', true); this.currentPluginPanel.toggleClass('hidden', true);
this.pluginsPanel.toggleClass('hidden', false); // this.pluginsPanel.toggleClass('hidden', false);
this.fireEvent('plugin:open', [this, 'onboard', 'close']); this.fireEvent('plugin:open', [this, 'onboard', 'close']);
}, },
openNotVisualMode: function(pluginGuid) { openedPluginMode: function(pluginGuid) {
// var rec = this.viewPluginsList.store.findWhere({guid: pluginGuid}); // var rec = this.viewPluginsList.store.findWhere({guid: pluginGuid});
// if ( rec ) { // if ( rec ) {
// this.viewPluginsList.cmpEl.find('#' + rec.get('id')).parent().addClass('selected'); // this.viewPluginsList.cmpEl.find('#' + rec.get('id')).parent().addClass('selected');
@ -246,16 +248,25 @@ define([
var model = this.storePlugins.findWhere({guid: pluginGuid}); var model = this.storePlugins.findWhere({guid: pluginGuid});
if ( model ) { if ( model ) {
var _btn = model.get('button'); var _btn = model.get('button');
_btn && _btn.toggle(true); if (_btn) {
_btn.toggle(true);
if (_btn.menu && _btn.menu.items.length>0) {
_btn.menu.items[0].setCaption(this.textStop);
}
}
} }
}, },
closeNotVisualMode: function(guid) { closedPluginMode: function(guid) {
// this.viewPluginsList.cmpEl.find('.selected').removeClass('selected'); // this.viewPluginsList.cmpEl.find('.selected').removeClass('selected');
var model = this.storePlugins.findWhere({guid: guid}); var model = this.storePlugins.findWhere({guid: guid});
if ( model ) { if ( model ) {
model.get('button').toggle(false); var _btn = model.get('button');
_btn.toggle(false);
if (_btn.menu && _btn.menu.items.length>0) {
_btn.menu.items[0].setCaption(this.textStart);
}
} }
}, },
@ -265,7 +276,10 @@ define([
}, },
_onAppReady: function (mode) { _onAppReady: function (mode) {
if (this._pluginsIsInited) return;
var me = this; var me = this;
this._pluginsIsInited = (this.storePlugins.length>0);
this.storePlugins.each(function(model) { this.storePlugins.each(function(model) {
var _plugin_btn = model.get('button'); var _plugin_btn = model.get('button');
@ -301,7 +315,8 @@ define([
strPlugins: 'Plugins', strPlugins: 'Plugins',
textLoading: 'Loading', textLoading: 'Loading',
textStart: 'Start', textStart: 'Start',
groupCaption: 'Add-ons' textStop: 'Stop',
groupCaption: 'Plugins'
}, Common.Views.Plugins || {})); }, Common.Views.Plugins || {}));
@ -315,7 +330,7 @@ define([
var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34; var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34;
if (!_options.header) header_footer -= 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.width = (Common.Utils.innerWidth()-this.bordersOffset*2-_options.width)<0 ? Common.Utils.innerWidth()-this.bordersOffset*2: _options.width;
_options.height += header_footer; _options.height += header_footer;
_options.height = (Common.Utils.innerHeight()-this.bordersOffset*2-_options.height)<0 ? Common.Utils.innerHeight()-this.bordersOffset*2: _options.height; _options.height = (Common.Utils.innerHeight()-this.bordersOffset*2-_options.height)<0 ? Common.Utils.innerHeight()-this.bordersOffset*2: _options.height;
@ -407,7 +422,7 @@ define([
Common.UI.Window.prototype.setWidth.call(this, width + borders_width); Common.UI.Window.prototype.setWidth.call(this, width + borders_width);
this.$window.css('left',(maxWidth - width - borders_width) / 2); 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() { onWindowResize: function() {

View file

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

View file

@ -1,7 +1,7 @@
.about-dlg { .about-dlg {
.asc-about-office { .asc-about-office {
background-repeat: no-repeat; 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; width: 340px;
height: 55px; height: 55px;

View file

@ -129,6 +129,12 @@
min-width: 0; min-width: 0;
} }
button.small .icon {
width: 20px;
height: 20px;
min-width: 0;
}
&.dropdown-toggle { &.dropdown-toggle {
.caption { .caption {
max-width: 100px; max-width: 100px;
@ -172,6 +178,9 @@
.mx-button-otherstates-icon2(@icon-size); .mx-button-otherstates-icon2(@icon-size);
} }
.btn.small {
.mx-button-otherstates-icon2(20px);
}
} }
} }

View file

@ -111,6 +111,7 @@
background-color: white; background-color: white;
color: @gray-deep; color: @gray-deep;
} }
width: 100%;
} }
#rib-save-status { #rib-save-status {
@ -133,7 +134,7 @@
#header-logo { #header-logo {
max-width: 200px; max-width: 200px;
height: 100%; height: 100%;
cursor: pointer; //cursor: pointer;
padding: 7px 24px 7px 12px; padding: 7px 24px 7px 12px;
i { i {

View file

@ -125,7 +125,7 @@
#plugins-panel { #plugins-panel {
.x-huge.icon-top { .x-huge.icon-top {
img { img {
height: 20px; height: 26px;
} }
.caption { .caption {

View file

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

View file

@ -1,9 +1,7 @@
<?xml version="1.0" encoding="utf-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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<style type="text/css"> <polygon points="18.576,55 5.153,31.75 18.576,8.5 45.424,8.5 58.848,31.75 45.424,55 "/>
.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"/>
</svg> </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"?> <?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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<g> <path d="M32.5,55.5l-23-23.3L32.5,9v13H56v20H32.5V55.5z"/>
<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>
</svg> </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"?> <?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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<g id="XMLID_3_"> <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
<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 "/> 11.75,53.25 "/>
</g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 498 B

After

Width:  |  Height:  |  Size: 588 B

View file

@ -539,6 +539,13 @@ define([
if (this.api) if (this.api)
this.api.asc_enableKeyEvents(value); this.api.asc_enableKeyEvents(value);
if (value) $(this.leftMenu.btnAbout.el).blur(); 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) { menuFilesShowHide: function(state) {
@ -642,9 +649,12 @@ define([
onPluginOpen: function(panel, type, action) { onPluginOpen: function(panel, type, action) {
if ( type == 'onboard' ) { if ( type == 'onboard' ) {
if ( action == 'open' ) { if ( action == 'open' ) {
this.leftMenu.close();
this.leftMenu.panelPlugins.show(); this.leftMenu.panelPlugins.show();
this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}}); this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}});
this.leftMenu._state.pluginIsRunning = true;
} else { } else {
this.leftMenu._state.pluginIsRunning = false;
this.leftMenu.close(); this.leftMenu.close();
} }
} }

View file

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

View file

@ -14,7 +14,7 @@
"Common.Controllers.ReviewChanges.textAtLeast": "at least", "Common.Controllers.ReviewChanges.textAtLeast": "at least",
"Common.Controllers.ReviewChanges.textAuto": "auto", "Common.Controllers.ReviewChanges.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Baseline", "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.textBreakBefore": "Page break before",
"Common.Controllers.ReviewChanges.textCaps": "All caps", "Common.Controllers.ReviewChanges.textCaps": "All caps",
"Common.Controllers.ReviewChanges.textCenter": "Align center", "Common.Controllers.ReviewChanges.textCenter": "Align center",
@ -62,7 +62,7 @@
"Common.Controllers.ReviewChanges.textSubScript": "Subscript", "Common.Controllers.ReviewChanges.textSubScript": "Subscript",
"Common.Controllers.ReviewChanges.textSuperScript": "Superscript", "Common.Controllers.ReviewChanges.textSuperScript": "Superscript",
"Common.Controllers.ReviewChanges.textTabs": "Change tabs", "Common.Controllers.ReviewChanges.textTabs": "Change tabs",
"Common.Controllers.ReviewChanges.textUnderline": "Underline", "Common.Controllers.ReviewChanges.textUnderline": "Podtržené",
"Common.Controllers.ReviewChanges.textWidow": "Widow control", "Common.Controllers.ReviewChanges.textWidow": "Widow control",
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení", "Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
@ -102,7 +102,7 @@
"Common.Utils.Metric.txtPt": "pt", "Common.Utils.Metric.txtPt": "pt",
"Common.Views.About.txtAddress": "adresa:", "Common.Views.About.txtAddress": "adresa:",
"Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Lotyšsko, EU, LV-1021", "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.txtLicensor": "UDĚLOVATEL LICENCE",
"Common.Views.About.txtMail": "email:", "Common.Views.About.txtMail": "email:",
"Common.Views.About.txtPoweredBy": "Poháněno", "Common.Views.About.txtPoweredBy": "Poháněno",
@ -121,6 +121,7 @@
"Common.Views.Comments.textComments": "Komentáře", "Common.Views.Comments.textComments": "Komentáře",
"Common.Views.Comments.textEdit": "Upravit", "Common.Views.Comments.textEdit": "Upravit",
"Common.Views.Comments.textEnterCommentHint": "Zde napište svůj komentář", "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.textOpenAgain": "Znovu otevřít",
"Common.Views.Comments.textReply": "Odpovědět", "Common.Views.Comments.textReply": "Odpovědět",
"Common.Views.Comments.textResolve": "Vyřešit", "Common.Views.Comments.textResolve": "Vyřešit",
@ -139,8 +140,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Zavřít", "Common.Views.ExternalMergeEditor.textClose": "Zavřít",
"Common.Views.ExternalMergeEditor.textSave": "Uložit a odejít", "Common.Views.ExternalMergeEditor.textSave": "Uložit a odejít",
"Common.Views.ExternalMergeEditor.textTitle": "Příjemci korespondence", "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.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.Header.txtRename": "Přejmenovat",
"Common.Views.History.textCloseHistory": "Zavřít historii", "Common.Views.History.textCloseHistory": "Zavřít historii",
"Common.Views.History.textHide": "Kolaps", "Common.Views.History.textHide": "Kolaps",
@ -161,6 +172,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Minimální hodnota tohoto pole je {0}.", "Common.Views.InsertTableDialog.txtMinText": "Minimální hodnota tohoto pole je {0}.",
"Common.Views.InsertTableDialog.txtRows": "Počet řádků", "Common.Views.InsertTableDialog.txtRows": "Počet řádků",
"Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky", "Common.Views.InsertTableDialog.txtTitle": "Velikost tabulky",
"Common.Views.InsertTableDialog.txtTitleSplit": "Rozdělit buňku",
"Common.Views.LanguageDialog.btnCancel": "Zrušit", "Common.Views.LanguageDialog.btnCancel": "Zrušit",
"Common.Views.LanguageDialog.btnOk": "OK", "Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Vybrat jazyk dokumentu", "Common.Views.LanguageDialog.labelSelect": "Vybrat jazyk dokumentu",
@ -171,6 +183,7 @@
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
"Common.Views.OpenDialog.txtTitleProtected": "Chráněný soubor", "Common.Views.OpenDialog.txtTitleProtected": "Chráněný soubor",
"Common.Views.PluginDlg.textLoading": "Nahrávám ...", "Common.Views.PluginDlg.textLoading": "Nahrávám ...",
"Common.Views.Plugins.groupCaption": "Doplňky",
"Common.Views.Plugins.strPlugins": "Pluginy", "Common.Views.Plugins.strPlugins": "Pluginy",
"Common.Views.Plugins.textLoading": "Nahrávám ...", "Common.Views.Plugins.textLoading": "Nahrávám ...",
"Common.Views.Plugins.textStart": "Začátek", "Common.Views.Plugins.textStart": "Začátek",
@ -178,15 +191,34 @@
"Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.okButtonText": "OK",
"Common.Views.RenameDialog.textName": "Název souboru", "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.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.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
"Common.Views.ReviewChanges.txtAcceptChanges": "Akceptovat změny",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes", "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",
"Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtClose": "Close",
"Common.Views.ReviewChanges.txtDocLang": "Jazyk",
"Common.Views.ReviewChanges.txtNext": "To Next Change", "Common.Views.ReviewChanges.txtNext": "To Next Change",
"Common.Views.ReviewChanges.txtPrev": "To Previous Change", "Common.Views.ReviewChanges.txtPrev": "To Previous Change",
"Common.Views.ReviewChanges.txtReject": "Reject", "Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", "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.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.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.newDocumentTitle": "Nepojmenovaný dokument",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Varování", "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.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", "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.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.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.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?", "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.btnDownloadCaption": "Stáhnout jako...",
"DE.Views.FileMenu.btnHelpCaption": "Pomoc...", "DE.Views.FileMenu.btnHelpCaption": "Pomoc...",
"DE.Views.FileMenu.btnHistoryCaption": "Historie verzí", "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.btnPrintCaption": "Tisk",
"DE.Views.FileMenu.btnRecentFilesCaption": "Otevřít nedávné...", "DE.Views.FileMenu.btnRecentFilesCaption": "Otevřít nedávné...",
"DE.Views.FileMenu.btnRenameCaption": "Přejmenovat...", "DE.Views.FileMenu.btnRenameCaption": "Přejmenovat...",
@ -937,13 +970,13 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboly s mezerami", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboly s mezerami",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiky", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiky",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboly", "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.DocumentInfo.txtWords": "Slova",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Změnit přístupová práva", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Změnit přístupová práva",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, které mají práva", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, které mají práva",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Použít", "DE.Views.FileMenuPanels.Settings.okButtonText": "Použít",
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnout tipy pro zarovnání", "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.strAutosave": "Zapnout automatické ukládání",
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", "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.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.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.strInputMode": "Zapnout hieroglyfy",
"DE.Views.FileMenuPanels.Settings.strLiveComment": "Zapnout zobrazování komentářů.", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Povolit zobrazení komentářů",
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "Zapnout zobrazení vyřešených 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.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.strStrict": "Strict",
"DE.Views.FileMenuPanels.Settings.strUnit": "Jednotky měření", "DE.Views.FileMenuPanels.Settings.strUnit": "Zobrazovat hodnoty v jednotkách",
"DE.Views.FileMenuPanels.Settings.strZoom": "Výchozí hodnota přiblížení", "DE.Views.FileMenuPanels.Settings.strZoom": "Výchozí měřítko zobrazení",
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Každých 10 minut", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Každých 10 minut",
"DE.Views.FileMenuPanels.Settings.text30Minutes": "Každých 30 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.text5Minutes": "Každých 5 minut",
"DE.Views.FileMenuPanels.Settings.text60Minutes": "Každou hodinu", "DE.Views.FileMenuPanels.Settings.text60Minutes": "Každou hodinu",
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Nápověda zarovnání", "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.textAutoSave": "Automatické ukládání",
"DE.Views.FileMenuPanels.Settings.textDisabled": "Zakázáno", "DE.Views.FileMenuPanels.Settings.textDisabled": "Zakázáno",
"DE.Views.FileMenuPanels.Settings.textForceSave": "Uložit na server", "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.txtFitPage": "Přízpůsobit stránce",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce", "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.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.txtLast": "Zobraz poslední",
"DE.Views.FileMenuPanels.Settings.txtLiveComment": "Zobrazení komentářů", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Zobrazení komentářů",
"DE.Views.FileMenuPanels.Settings.txtMac": "jako OS X", "DE.Views.FileMenuPanels.Settings.txtMac": "jako OS X",
@ -1009,6 +1042,7 @@
"DE.Views.ImageSettings.textAdvanced": "Zobrazit pokročilé nastavení", "DE.Views.ImageSettings.textAdvanced": "Zobrazit pokročilé nastavení",
"DE.Views.ImageSettings.textEdit": "Upravit", "DE.Views.ImageSettings.textEdit": "Upravit",
"DE.Views.ImageSettings.textEditObject": "Upravit objekt", "DE.Views.ImageSettings.textEditObject": "Upravit objekt",
"DE.Views.ImageSettings.textFitMargins": "Přizpůsobit na okraj",
"DE.Views.ImageSettings.textFromFile": "Ze souboru", "DE.Views.ImageSettings.textFromFile": "Ze souboru",
"DE.Views.ImageSettings.textFromUrl": "Z adresy URL", "DE.Views.ImageSettings.textFromUrl": "Z adresy URL",
"DE.Views.ImageSettings.textHeight": "Výška", "DE.Views.ImageSettings.textHeight": "Výška",
@ -1083,6 +1117,7 @@
"DE.Views.ImageSettingsAdvanced.textTop": "Nahoře", "DE.Views.ImageSettingsAdvanced.textTop": "Nahoře",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Horní okraj", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Horní okraj",
"DE.Views.ImageSettingsAdvanced.textVertical": "Svislé", "DE.Views.ImageSettingsAdvanced.textVertical": "Svislé",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Síla a šipky",
"DE.Views.ImageSettingsAdvanced.textWidth": "Šířka", "DE.Views.ImageSettingsAdvanced.textWidth": "Šířka",
"DE.Views.ImageSettingsAdvanced.textWrap": "Obtékání textu", "DE.Views.ImageSettingsAdvanced.textWrap": "Obtékání textu",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za",
@ -1095,10 +1130,9 @@
"DE.Views.LeftMenu.tipAbout": "Informace", "DE.Views.LeftMenu.tipAbout": "Informace",
"DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Komentáře", "DE.Views.LeftMenu.tipComments": "Komentáře",
"DE.Views.LeftMenu.tipFile": "Soubor",
"DE.Views.LeftMenu.tipPlugins": "Pluginy", "DE.Views.LeftMenu.tipPlugins": "Pluginy",
"DE.Views.LeftMenu.tipSearch": "Hledat", "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.tipTitles": "Nadpisy",
"DE.Views.LeftMenu.txtDeveloper": "VÝVOJÁŘSKÝ REŽIM", "DE.Views.LeftMenu.txtDeveloper": "VÝVOJÁŘSKÝ REŽIM",
"DE.Views.MailMergeEmailDlg.cancelButtonText": "Zrušit", "DE.Views.MailMergeEmailDlg.cancelButtonText": "Zrušit",
@ -1314,23 +1348,12 @@
"DE.Views.ShapeSettings.txtWood": "Dřevo", "DE.Views.ShapeSettings.txtWood": "Dřevo",
"DE.Views.Statusbar.goToPageText": "Jít na stránku", "DE.Views.Statusbar.goToPageText": "Jít na stránku",
"DE.Views.Statusbar.pageIndexText": "Stránka {0} z {1}", "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.tipFitPage": "Přízpůsobit stránce",
"DE.Views.Statusbar.tipFitWidth": "Přizpůsobit šířce", "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.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.tipZoomFactor": "Zvětšení",
"DE.Views.Statusbar.tipZoomIn": "Přiblížit", "DE.Views.Statusbar.tipZoomIn": "Přiblížit",
"DE.Views.Statusbar.tipZoomOut": "Oddálit", "DE.Views.Statusbar.tipZoomOut": "Oddálit",
"DE.Views.Statusbar.txAccessRights": "Change access rights",
"DE.Views.Statusbar.txtPageNumInvalid": "Neplatné číslo stránky", "DE.Views.Statusbar.txtPageNumInvalid": "Neplatné číslo stránky",
"DE.Views.StyleTitleDialog.textHeader": "Vytvořit nový styl", "DE.Views.StyleTitleDialog.textHeader": "Vytvořit nový styl",
"DE.Views.StyleTitleDialog.textNextStyle": "Styl dalšího odstavce", "DE.Views.StyleTitleDialog.textNextStyle": "Styl dalšího odstavce",
@ -1479,6 +1502,27 @@
"DE.Views.TextArtSettings.textTemplate": "Šablona", "DE.Views.TextArtSettings.textTemplate": "Šablona",
"DE.Views.TextArtSettings.textTransform": "Transformovat", "DE.Views.TextArtSettings.textTransform": "Transformovat",
"DE.Views.TextArtSettings.txtNoBorders": "Bez čáry", "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.mniCustomTable": "Vložit vlastní tabulku",
"DE.Views.Toolbar.mniDelFootnote": "Odstranit všechny poznámky pod čarou", "DE.Views.Toolbar.mniDelFootnote": "Odstranit všechny poznámky pod čarou",
"DE.Views.Toolbar.mniEditDropCap": "Nastavení Iniciály", "DE.Views.Toolbar.mniEditDropCap": "Nastavení Iniciály",
@ -1494,7 +1538,7 @@
"DE.Views.Toolbar.textArea": "Plošný graf", "DE.Views.Toolbar.textArea": "Plošný graf",
"DE.Views.Toolbar.textAutoColor": "Automaticky", "DE.Views.Toolbar.textAutoColor": "Automaticky",
"DE.Views.Toolbar.textBar": "Pruhový graf", "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.textBottom": "Bottom: ",
"DE.Views.Toolbar.textCharts": "Grafy", "DE.Views.Toolbar.textCharts": "Grafy",
"DE.Views.Toolbar.textColumn": "Sloupcový graf", "DE.Views.Toolbar.textColumn": "Sloupcový graf",
@ -1519,8 +1563,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Vložit číslo stránky", "DE.Views.Toolbar.textInsertPageNumber": "Vložit číslo stránky",
"DE.Views.Toolbar.textInsPageBreak": "Vložit rozdělovač stránky", "DE.Views.Toolbar.textInsPageBreak": "Vložit rozdělovač stránky",
"DE.Views.Toolbar.textInsSectionBreak": "Vložit rozdělovač sekce", "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.textInText": "V textu",
"DE.Views.Toolbar.textItalic": "Kurzíva", "DE.Views.Toolbar.textItalic": "Kurzíva",
"DE.Views.Toolbar.textLandscape": "Na šířku", "DE.Views.Toolbar.textLandscape": "Na šířku",
@ -1553,10 +1595,15 @@
"DE.Views.Toolbar.textSubscript": "Dolní index", "DE.Views.Toolbar.textSubscript": "Dolní index",
"DE.Views.Toolbar.textSuperscript": "Horní index", "DE.Views.Toolbar.textSuperscript": "Horní index",
"DE.Views.Toolbar.textSurface": "Povrch", "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.textTitleError": "Chyba",
"DE.Views.Toolbar.textToCurrent": "Na součásnou pozici", "DE.Views.Toolbar.textToCurrent": "Na součásnou pozici",
"DE.Views.Toolbar.textTop": "Top: ", "DE.Views.Toolbar.textTop": "Top: ",
"DE.Views.Toolbar.textUnderline": "Podtržení", "DE.Views.Toolbar.textUnderline": "Podtržené",
"DE.Views.Toolbar.textZoom": "Přiblížit", "DE.Views.Toolbar.textZoom": "Přiblížit",
"DE.Views.Toolbar.tipAdvSettings": "Pokročilé nastavení", "DE.Views.Toolbar.tipAdvSettings": "Pokročilé nastavení",
"DE.Views.Toolbar.tipAlignCenter": "Zarovnat na střed", "DE.Views.Toolbar.tipAlignCenter": "Zarovnat na střed",
@ -1579,6 +1626,9 @@
"DE.Views.Toolbar.tipFontSize": "Velikost písma", "DE.Views.Toolbar.tipFontSize": "Velikost písma",
"DE.Views.Toolbar.tipHAligh": "Horizontální zarovnání", "DE.Views.Toolbar.tipHAligh": "Horizontální zarovnání",
"DE.Views.Toolbar.tipHighlightColor": "Barva zvýrazně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.tipIncFont": "Zvětšit velikost písma",
"DE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení", "DE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení",
"DE.Views.Toolbar.tipInsertChart": "Vložit graf", "DE.Views.Toolbar.tipInsertChart": "Vložit graf",
@ -1589,14 +1639,13 @@
"DE.Views.Toolbar.tipInsertShape": "Vložit tvar", "DE.Views.Toolbar.tipInsertShape": "Vložit tvar",
"DE.Views.Toolbar.tipInsertTable": "Vložit tabulku", "DE.Views.Toolbar.tipInsertTable": "Vložit tabulku",
"DE.Views.Toolbar.tipInsertText": "Vložení textu", "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.tipLineSpace": "Řádkování odstavce",
"DE.Views.Toolbar.tipMailRecepients": "Korespondence", "DE.Views.Toolbar.tipMailRecepients": "Korespondence",
"DE.Views.Toolbar.tipMarkers": "Odrážky", "DE.Views.Toolbar.tipMarkers": "Odrážky",
"DE.Views.Toolbar.tipMultilevels": "Obrys", "DE.Views.Toolbar.tipMultilevels": "Obrys",
"DE.Views.Toolbar.tipNewDocument": "Nový dokument",
"DE.Views.Toolbar.tipNotes": "Poznámky pod čarou", "DE.Views.Toolbar.tipNotes": "Poznámky pod čarou",
"DE.Views.Toolbar.tipNumbers": "Číslování", "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.tipPageBreak": "Vložit rozdělovač stránky nebo sekce",
"DE.Views.Toolbar.tipPageMargins": "Page Margins", "DE.Views.Toolbar.tipPageMargins": "Page Margins",
"DE.Views.Toolbar.tipPageOrient": "Otočení stránky", "DE.Views.Toolbar.tipPageOrient": "Otočení stránky",
@ -1608,6 +1657,8 @@
"DE.Views.Toolbar.tipRedo": "Krok vpřed", "DE.Views.Toolbar.tipRedo": "Krok vpřed",
"DE.Views.Toolbar.tipSave": "Uložit", "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.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.tipShowHiddenChars": "Netisknutelné znaky",
"DE.Views.Toolbar.tipSynchronize": "Dokument byl pozměněn jiným uživatelem. Kliněte prosím pro uložení vašich změn a načtení úprav.", "DE.Views.Toolbar.tipSynchronize": "Dokument byl pozměněn jiným uživatelem. Kliněte prosím pro uložení vašich změn a načtení úprav.",
"DE.Views.Toolbar.tipUndo": "Krok zpět", "DE.Views.Toolbar.tipUndo": "Krok zpět",

View file

@ -121,6 +121,7 @@
"Common.Views.Comments.textComments": "Kommentare", "Common.Views.Comments.textComments": "Kommentare",
"Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Geben Sie Ihren Kommentar hier ein", "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.textOpenAgain": "Erneut öffnen",
"Common.Views.Comments.textReply": "Antworten", "Common.Views.Comments.textReply": "Antworten",
"Common.Views.Comments.textResolve": "Lösen", "Common.Views.Comments.textResolve": "Lösen",
@ -139,8 +140,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Schließen", "Common.Views.ExternalMergeEditor.textClose": "Schließen",
"Common.Views.ExternalMergeEditor.textSave": "Speichern und beenden", "Common.Views.ExternalMergeEditor.textSave": "Speichern und beenden",
"Common.Views.ExternalMergeEditor.textTitle": "Seriendruckempfänger\t", "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.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.Header.txtRename": "Umbenennen",
"Common.Views.History.textCloseHistory": "Historie schließen", "Common.Views.History.textCloseHistory": "Historie schließen",
"Common.Views.History.textHide": "Reduzieren", "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.txtMinText": "Der minimale Wert für dieses Feld ist {0}.",
"Common.Views.InsertTableDialog.txtRows": "Anzahl von Zeilen\t", "Common.Views.InsertTableDialog.txtRows": "Anzahl von Zeilen\t",
"Common.Views.InsertTableDialog.txtTitle": "Größe der Tabelle", "Common.Views.InsertTableDialog.txtTitle": "Größe der Tabelle",
"Common.Views.InsertTableDialog.txtTitleSplit": "Zelle teilen",
"Common.Views.LanguageDialog.btnCancel": "Abbrechen", "Common.Views.LanguageDialog.btnCancel": "Abbrechen",
"Common.Views.LanguageDialog.btnOk": "OK", "Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Sprache des Dokuments wählen", "Common.Views.LanguageDialog.labelSelect": "Sprache des Dokuments wählen",
@ -171,6 +183,7 @@
"Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen", "Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen",
"Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei", "Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei",
"Common.Views.PluginDlg.textLoading": "Ladevorgang", "Common.Views.PluginDlg.textLoading": "Ladevorgang",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Ladevorgang", "Common.Views.Plugins.textLoading": "Ladevorgang",
"Common.Views.Plugins.textStart": "Starten", "Common.Views.Plugins.textStart": "Starten",
@ -178,15 +191,34 @@
"Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.okButtonText": "OK",
"Common.Views.RenameDialog.textName": "Dateiname", "Common.Views.RenameDialog.textName": "Dateiname",
"Common.Views.RenameDialog.txtInvalidName": "Dieser Dateiname darf keines der folgenden Zeichen enthalten:", "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.txtAccept": "Annehmen",
"Common.Views.ReviewChanges.txtAcceptAll": "Alle Änderungen annehmen", "Common.Views.ReviewChanges.txtAcceptAll": "Alle Änderungen annehmen",
"Common.Views.ReviewChanges.txtAcceptChanges": "Änderungen annehmen",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Aktuelle Änderungen annehmen", "Common.Views.ReviewChanges.txtAcceptCurrent": "Aktuelle Änderungen annehmen",
"Common.Views.ReviewChanges.txtClose": "Schließen", "Common.Views.ReviewChanges.txtClose": "Schließen",
"Common.Views.ReviewChanges.txtDocLang": "Sprache",
"Common.Views.ReviewChanges.txtNext": "Zur nächsten Änderung", "Common.Views.ReviewChanges.txtNext": "Zur nächsten Änderung",
"Common.Views.ReviewChanges.txtPrev": "Zur vorherigen Änderung", "Common.Views.ReviewChanges.txtPrev": "Zur vorherigen Änderung",
"Common.Views.ReviewChanges.txtReject": "Ablehnen", "Common.Views.ReviewChanges.txtReject": "Ablehnen",
"Common.Views.ReviewChanges.txtRejectAll": "Alle Änderungen ablehnen", "Common.Views.ReviewChanges.txtRejectAll": "Alle Änderungen ablehnen",
"Common.Views.ReviewChanges.txtRejectChanges": "Änderungen ablehnen",
"Common.Views.ReviewChanges.txtRejectCurrent": "Aktuelle Ä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.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.newDocumentTitle": "Unbetiteltes Dokument",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Achtung", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Achtung",
@ -323,6 +355,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.", "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.textHasChanges": "Neue Änderungen wurden zurückverfolgt",
"DE.Controllers.Statusbar.textTrackChanges": "Das Dokument wird im Modus \"Nachverfolgen von Änderungen\" geöffnet. ", "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.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.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?", "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.textAdvanced": "Erweiterte Einstellungen anzeigen",
"DE.Views.ImageSettings.textEdit": "Bearbeiten", "DE.Views.ImageSettings.textEdit": "Bearbeiten",
"DE.Views.ImageSettings.textEditObject": "Objekt bearbeiten", "DE.Views.ImageSettings.textEditObject": "Objekt bearbeiten",
"DE.Views.ImageSettings.textFitMargins": "Rändern anpassen",
"DE.Views.ImageSettings.textFromFile": "Aus Datei", "DE.Views.ImageSettings.textFromFile": "Aus Datei",
"DE.Views.ImageSettings.textFromUrl": "Aus URL", "DE.Views.ImageSettings.textFromUrl": "Aus URL",
"DE.Views.ImageSettings.textHeight": "Höhe", "DE.Views.ImageSettings.textHeight": "Höhe",
@ -1083,6 +1117,7 @@
"DE.Views.ImageSettingsAdvanced.textTop": "Oben", "DE.Views.ImageSettingsAdvanced.textTop": "Oben",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Oberer Rand", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Oberer Rand",
"DE.Views.ImageSettingsAdvanced.textVertical": "Vertikal", "DE.Views.ImageSettingsAdvanced.textVertical": "Vertikal",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Stärken & Pfeile",
"DE.Views.ImageSettingsAdvanced.textWidth": "Breite", "DE.Views.ImageSettingsAdvanced.textWidth": "Breite",
"DE.Views.ImageSettingsAdvanced.textWrap": "Textumbruch", "DE.Views.ImageSettingsAdvanced.textWrap": "Textumbruch",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Hinten", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Hinten",
@ -1095,7 +1130,6 @@
"DE.Views.LeftMenu.tipAbout": "Über das Produkt", "DE.Views.LeftMenu.tipAbout": "Über das Produkt",
"DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Kommentare", "DE.Views.LeftMenu.tipComments": "Kommentare",
"DE.Views.LeftMenu.tipFile": "Datei",
"DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipPlugins": "Plugins",
"DE.Views.LeftMenu.tipSearch": "Suchen", "DE.Views.LeftMenu.tipSearch": "Suchen",
"DE.Views.LeftMenu.tipSupport": "Feedback und Support", "DE.Views.LeftMenu.tipSupport": "Feedback und Support",
@ -1314,23 +1348,12 @@
"DE.Views.ShapeSettings.txtWood": "Holz", "DE.Views.ShapeSettings.txtWood": "Holz",
"DE.Views.Statusbar.goToPageText": "Auf die Seite übergehen", "DE.Views.Statusbar.goToPageText": "Auf die Seite übergehen",
"DE.Views.Statusbar.pageIndexText": "Seite {0} von {1}", "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.tipFitPage": "Seite anpassen",
"DE.Views.Statusbar.tipFitWidth": "Breite 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.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.tipZoomFactor": "Zoommodus",
"DE.Views.Statusbar.tipZoomIn": "Vergrößern", "DE.Views.Statusbar.tipZoomIn": "Vergrößern",
"DE.Views.Statusbar.tipZoomOut": "Verkleinern", "DE.Views.Statusbar.tipZoomOut": "Verkleinern",
"DE.Views.Statusbar.txAccessRights": "Zugriffsrechte ändern",
"DE.Views.Statusbar.txtPageNumInvalid": "Ungültige Seitennummer", "DE.Views.Statusbar.txtPageNumInvalid": "Ungültige Seitennummer",
"DE.Views.StyleTitleDialog.textHeader": "Neuer Stil erstellen", "DE.Views.StyleTitleDialog.textHeader": "Neuer Stil erstellen",
"DE.Views.StyleTitleDialog.textNextStyle": "Nächste Absatz-Formatvorlage", "DE.Views.StyleTitleDialog.textNextStyle": "Nächste Absatz-Formatvorlage",
@ -1479,6 +1502,27 @@
"DE.Views.TextArtSettings.textTemplate": "Vorlage", "DE.Views.TextArtSettings.textTemplate": "Vorlage",
"DE.Views.TextArtSettings.textTransform": "Transformieren\t", "DE.Views.TextArtSettings.textTransform": "Transformieren\t",
"DE.Views.TextArtSettings.txtNoBorders": "Keine Linie", "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.mniCustomTable": "Benutzerdefinierte Tabelle einfügen",
"DE.Views.Toolbar.mniDelFootnote": "Alle Fußnoten löschen ", "DE.Views.Toolbar.mniDelFootnote": "Alle Fußnoten löschen ",
"DE.Views.Toolbar.mniEditDropCap": "Initialeinstellungen", "DE.Views.Toolbar.mniEditDropCap": "Initialeinstellungen",
@ -1519,8 +1563,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Seitenzahl einfügen", "DE.Views.Toolbar.textInsertPageNumber": "Seitenzahl einfügen",
"DE.Views.Toolbar.textInsPageBreak": "Seitenumbruch einfügen", "DE.Views.Toolbar.textInsPageBreak": "Seitenumbruch einfügen",
"DE.Views.Toolbar.textInsSectionBreak": "Abschnittsumbruch 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.textInText": "Im Text",
"DE.Views.Toolbar.textItalic": "Kursiv", "DE.Views.Toolbar.textItalic": "Kursiv",
"DE.Views.Toolbar.textLandscape": "Querformat", "DE.Views.Toolbar.textLandscape": "Querformat",
@ -1553,6 +1595,11 @@
"DE.Views.Toolbar.textSubscript": "Tiefgestellt", "DE.Views.Toolbar.textSubscript": "Tiefgestellt",
"DE.Views.Toolbar.textSuperscript": "Hochgestellt", "DE.Views.Toolbar.textSuperscript": "Hochgestellt",
"DE.Views.Toolbar.textSurface": "Oberfläche", "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.textTitleError": "Fehler",
"DE.Views.Toolbar.textToCurrent": "An aktueller Position", "DE.Views.Toolbar.textToCurrent": "An aktueller Position",
"DE.Views.Toolbar.textTop": "Oben: ", "DE.Views.Toolbar.textTop": "Oben: ",
@ -1579,6 +1626,9 @@
"DE.Views.Toolbar.tipFontSize": "Schriftgrad", "DE.Views.Toolbar.tipFontSize": "Schriftgrad",
"DE.Views.Toolbar.tipHAligh": "Horizontale Ausrichtung", "DE.Views.Toolbar.tipHAligh": "Horizontale Ausrichtung",
"DE.Views.Toolbar.tipHighlightColor": "Texthervorhebungsfarbe", "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.tipIncFont": "Schriftart vergrößern\n ",
"DE.Views.Toolbar.tipIncPrLeft": "Einzug vergrößern", "DE.Views.Toolbar.tipIncPrLeft": "Einzug vergrößern",
"DE.Views.Toolbar.tipInsertChart": "Diagramm einfügen", "DE.Views.Toolbar.tipInsertChart": "Diagramm einfügen",
@ -1589,14 +1639,13 @@
"DE.Views.Toolbar.tipInsertShape": "AutoForm einfügen", "DE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
"DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen", "DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
"DE.Views.Toolbar.tipInsertText": "Text einfügen", "DE.Views.Toolbar.tipInsertText": "Text einfügen",
"DE.Views.Toolbar.tipInsertTextArt": "TextArt einfügen",
"DE.Views.Toolbar.tipLineSpace": "Zeilenabstand", "DE.Views.Toolbar.tipLineSpace": "Zeilenabstand",
"DE.Views.Toolbar.tipMailRecepients": "Serienbrief", "DE.Views.Toolbar.tipMailRecepients": "Serienbrief",
"DE.Views.Toolbar.tipMarkers": "Aufzählung", "DE.Views.Toolbar.tipMarkers": "Aufzählung",
"DE.Views.Toolbar.tipMultilevels": "Gliederung", "DE.Views.Toolbar.tipMultilevels": "Gliederung",
"DE.Views.Toolbar.tipNewDocument": "Neues Dokument",
"DE.Views.Toolbar.tipNotes": "Fußnoten", "DE.Views.Toolbar.tipNotes": "Fußnoten",
"DE.Views.Toolbar.tipNumbers": "Nummerierung", "DE.Views.Toolbar.tipNumbers": "Nummerierung",
"DE.Views.Toolbar.tipOpenDocument": "Dokument öffnen",
"DE.Views.Toolbar.tipPageBreak": "Seiten- oder Abschnittsumbruch einfügen", "DE.Views.Toolbar.tipPageBreak": "Seiten- oder Abschnittsumbruch einfügen",
"DE.Views.Toolbar.tipPageMargins": "Seitenränder\t", "DE.Views.Toolbar.tipPageMargins": "Seitenränder\t",
"DE.Views.Toolbar.tipPageOrient": "Seitenausrichtung", "DE.Views.Toolbar.tipPageOrient": "Seitenausrichtung",
@ -1608,6 +1657,8 @@
"DE.Views.Toolbar.tipRedo": "Wiederholen", "DE.Views.Toolbar.tipRedo": "Wiederholen",
"DE.Views.Toolbar.tipSave": "Speichern", "DE.Views.Toolbar.tipSave": "Speichern",
"DE.Views.Toolbar.tipSaveCoauth": "Speichern Sie die Änderungen, damit die anderen Benutzer sie sehen können.", "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.tipShowHiddenChars": "Formatierungszeichen",
"DE.Views.Toolbar.tipSynchronize": "Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.", "DE.Views.Toolbar.tipSynchronize": "Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.",
"DE.Views.Toolbar.tipUndo": "Rückgängig machen", "DE.Views.Toolbar.tipUndo": "Rückgängig machen",

View file

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

View file

@ -121,6 +121,7 @@
"Common.Views.Comments.textComments": "Commenti", "Common.Views.Comments.textComments": "Commenti",
"Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Inserisci il commento qui", "Common.Views.Comments.textEnterCommentHint": "Inserisci il commento qui",
"Common.Views.Comments.textHintAddComment": "Aggiungi commento",
"Common.Views.Comments.textOpenAgain": "Apri di nuovo", "Common.Views.Comments.textOpenAgain": "Apri di nuovo",
"Common.Views.Comments.textReply": "Rispondi", "Common.Views.Comments.textReply": "Rispondi",
"Common.Views.Comments.textResolve": "Chiudi", "Common.Views.Comments.textResolve": "Chiudi",
@ -139,8 +140,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Close", "Common.Views.ExternalMergeEditor.textClose": "Close",
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
"Common.Views.Header.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.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.Header.txtRename": "Rinomina",
"Common.Views.History.textCloseHistory": "Chiudi cronologia", "Common.Views.History.textCloseHistory": "Chiudi cronologia",
"Common.Views.History.textHide": "Riduci", "Common.Views.History.textHide": "Riduci",
@ -161,6 +172,7 @@
"Common.Views.InsertTableDialog.txtMinText": "Il valore minimo di questo campo è {0}.", "Common.Views.InsertTableDialog.txtMinText": "Il valore minimo di questo campo è {0}.",
"Common.Views.InsertTableDialog.txtRows": "Numero di righe", "Common.Views.InsertTableDialog.txtRows": "Numero di righe",
"Common.Views.InsertTableDialog.txtTitle": "Dimensioni tabella", "Common.Views.InsertTableDialog.txtTitle": "Dimensioni tabella",
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividi cella",
"Common.Views.LanguageDialog.btnCancel": "Annulla", "Common.Views.LanguageDialog.btnCancel": "Annulla",
"Common.Views.LanguageDialog.btnOk": "OK", "Common.Views.LanguageDialog.btnOk": "OK",
"Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento", "Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento",
@ -171,6 +183,7 @@
"Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1", "Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1",
"Common.Views.OpenDialog.txtTitleProtected": "File protetto", "Common.Views.OpenDialog.txtTitleProtected": "File protetto",
"Common.Views.PluginDlg.textLoading": "Caricamento", "Common.Views.PluginDlg.textLoading": "Caricamento",
"Common.Views.Plugins.groupCaption": "Componenti Aggiuntivi",
"Common.Views.Plugins.strPlugins": "Plugin", "Common.Views.Plugins.strPlugins": "Plugin",
"Common.Views.Plugins.textLoading": "Caricamento", "Common.Views.Plugins.textLoading": "Caricamento",
"Common.Views.Plugins.textStart": "Avvio", "Common.Views.Plugins.textStart": "Avvio",
@ -178,15 +191,34 @@
"Common.Views.RenameDialog.okButtonText": "Ok", "Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "Nome del file", "Common.Views.RenameDialog.textName": "Nome del file",
"Common.Views.RenameDialog.txtInvalidName": "Il nome del file non può contenere nessuno dei seguenti caratteri:", "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.txtAccept": "Accetta",
"Common.Views.ReviewChanges.txtAcceptAll": "Accetta tutte le modifiche", "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.txtAcceptCurrent": "Accetta la modifica corrente",
"Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtClose": "Close",
"Common.Views.ReviewChanges.txtNext": "Alla modifica successiva", "Common.Views.ReviewChanges.txtDocLang": "Lingua",
"Common.Views.ReviewChanges.txtPrev": "Alla modifica precedente", "Common.Views.ReviewChanges.txtNext": "Successivo",
"Common.Views.ReviewChanges.txtPrev": "Precedente",
"Common.Views.ReviewChanges.txtReject": "Reject", "Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes",
"Common.Views.ReviewChanges.txtRejectChanges": "Rifiuta modifiche",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes", "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.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.newDocumentTitle": "Documento senza nome",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
@ -323,6 +355,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Ci stato negato il diritto alla modifica del file.", "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.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.tipReview": "Revisione",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%", "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.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?", "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.textTop": "In alto",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Verticale", "DE.Views.DropcapSettingsAdvanced.textVertical": "Verticale",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Larghezza", "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.DropcapSettingsAdvanced.txtNoBorders": "Nessun bordo",
"DE.Views.FileMenu.btnBackCaption": "Va' ai Documenti", "DE.Views.FileMenu.btnBackCaption": "Va' ai Documenti",
"DE.Views.FileMenu.btnCloseMenuCaption": "Chiudi il menù", "DE.Views.FileMenu.btnCloseMenuCaption": "Chiudi il menù",
@ -1009,6 +1042,7 @@
"DE.Views.ImageSettings.textAdvanced": "Mostra impostazioni avanzate", "DE.Views.ImageSettings.textAdvanced": "Mostra impostazioni avanzate",
"DE.Views.ImageSettings.textEdit": "Modifica", "DE.Views.ImageSettings.textEdit": "Modifica",
"DE.Views.ImageSettings.textEditObject": "Modifica oggetto", "DE.Views.ImageSettings.textEditObject": "Modifica oggetto",
"DE.Views.ImageSettings.textFitMargins": "Adatta al margine",
"DE.Views.ImageSettings.textFromFile": "Da file", "DE.Views.ImageSettings.textFromFile": "Da file",
"DE.Views.ImageSettings.textFromUrl": "Da URL", "DE.Views.ImageSettings.textFromUrl": "Da URL",
"DE.Views.ImageSettings.textHeight": "Altezza", "DE.Views.ImageSettings.textHeight": "Altezza",
@ -1083,6 +1117,7 @@
"DE.Views.ImageSettingsAdvanced.textTop": "In alto", "DE.Views.ImageSettingsAdvanced.textTop": "In alto",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Margine superiore", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Margine superiore",
"DE.Views.ImageSettingsAdvanced.textVertical": "Verticale", "DE.Views.ImageSettingsAdvanced.textVertical": "Verticale",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Spessori e frecce",
"DE.Views.ImageSettingsAdvanced.textWidth": "Larghezza", "DE.Views.ImageSettingsAdvanced.textWidth": "Larghezza",
"DE.Views.ImageSettingsAdvanced.textWrap": "Stile di disposizione testo", "DE.Views.ImageSettingsAdvanced.textWrap": "Stile di disposizione testo",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Dietro al testo", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Dietro al testo",
@ -1095,7 +1130,6 @@
"DE.Views.LeftMenu.tipAbout": "Informazioni su", "DE.Views.LeftMenu.tipAbout": "Informazioni su",
"DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Commenti", "DE.Views.LeftMenu.tipComments": "Commenti",
"DE.Views.LeftMenu.tipFile": "File",
"DE.Views.LeftMenu.tipPlugins": "Plugin", "DE.Views.LeftMenu.tipPlugins": "Plugin",
"DE.Views.LeftMenu.tipSearch": "Ricerca", "DE.Views.LeftMenu.tipSearch": "Ricerca",
"DE.Views.LeftMenu.tipSupport": "Feedback & Support", "DE.Views.LeftMenu.tipSupport": "Feedback & Support",
@ -1314,23 +1348,12 @@
"DE.Views.ShapeSettings.txtWood": "Legno", "DE.Views.ShapeSettings.txtWood": "Legno",
"DE.Views.Statusbar.goToPageText": "Va' alla pagina", "DE.Views.Statusbar.goToPageText": "Va' alla pagina",
"DE.Views.Statusbar.pageIndexText": "Pagina {0} di {1}", "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.tipFitPage": "Adatta alla pagina",
"DE.Views.Statusbar.tipFitWidth": "Adatta alla larghezza", "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.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.tipZoomFactor": "Ingrandimento",
"DE.Views.Statusbar.tipZoomIn": "Zoom avanti", "DE.Views.Statusbar.tipZoomIn": "Zoom avanti",
"DE.Views.Statusbar.tipZoomOut": "Zoom indietro", "DE.Views.Statusbar.tipZoomOut": "Zoom indietro",
"DE.Views.Statusbar.txAccessRights": "Modifica diritti di accesso",
"DE.Views.Statusbar.txtPageNumInvalid": "Numero pagina non valido", "DE.Views.Statusbar.txtPageNumInvalid": "Numero pagina non valido",
"DE.Views.StyleTitleDialog.textHeader": "Create New Style", "DE.Views.StyleTitleDialog.textHeader": "Create New Style",
"DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style",
@ -1479,6 +1502,27 @@
"DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTemplate": "Template",
"DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.textTransform": "Transform",
"DE.Views.TextArtSettings.txtNoBorders": "No Line", "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.mniCustomTable": "Inserisci tabella personalizzata",
"DE.Views.Toolbar.mniDelFootnote": "Elimina tutte le note a piè di pagina", "DE.Views.Toolbar.mniDelFootnote": "Elimina tutte le note a piè di pagina",
"DE.Views.Toolbar.mniEditDropCap": "Impostazioni capolettera", "DE.Views.Toolbar.mniEditDropCap": "Impostazioni capolettera",
@ -1519,8 +1563,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Inserisci numero di pagina", "DE.Views.Toolbar.textInsertPageNumber": "Inserisci numero di pagina",
"DE.Views.Toolbar.textInsPageBreak": "Inserisci interruzione di pagina", "DE.Views.Toolbar.textInsPageBreak": "Inserisci interruzione di pagina",
"DE.Views.Toolbar.textInsSectionBreak": "Inserisci interruzione di sezione", "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.textInText": "Nel testo",
"DE.Views.Toolbar.textItalic": "Corsivo", "DE.Views.Toolbar.textItalic": "Corsivo",
"DE.Views.Toolbar.textLandscape": "Orizzontale", "DE.Views.Toolbar.textLandscape": "Orizzontale",
@ -1553,6 +1595,11 @@
"DE.Views.Toolbar.textSubscript": "Pedice", "DE.Views.Toolbar.textSubscript": "Pedice",
"DE.Views.Toolbar.textSuperscript": "Apice", "DE.Views.Toolbar.textSuperscript": "Apice",
"DE.Views.Toolbar.textSurface": "Superficie", "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.textTitleError": "Errore",
"DE.Views.Toolbar.textToCurrent": "Alla posizione corrente", "DE.Views.Toolbar.textToCurrent": "Alla posizione corrente",
"DE.Views.Toolbar.textTop": "Top: ", "DE.Views.Toolbar.textTop": "Top: ",
@ -1575,10 +1622,13 @@
"DE.Views.Toolbar.tipDropCap": "Inserisci capolettera", "DE.Views.Toolbar.tipDropCap": "Inserisci capolettera",
"DE.Views.Toolbar.tipEditHeader": "Modifica intestazione o piè di pagina", "DE.Views.Toolbar.tipEditHeader": "Modifica intestazione o piè di pagina",
"DE.Views.Toolbar.tipFontColor": "Colore caratteri", "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.tipFontSize": "Dimensione carattere",
"DE.Views.Toolbar.tipHAligh": "Allineamento orizzontale", "DE.Views.Toolbar.tipHAligh": "Allineamento orizzontale",
"DE.Views.Toolbar.tipHighlightColor": "Colore evidenziatore", "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.tipIncFont": "Aumenta dimensione caratteri ",
"DE.Views.Toolbar.tipIncPrLeft": "Aumenta rientro", "DE.Views.Toolbar.tipIncPrLeft": "Aumenta rientro",
"DE.Views.Toolbar.tipInsertChart": "Inserisci grafico", "DE.Views.Toolbar.tipInsertChart": "Inserisci grafico",
@ -1589,14 +1639,13 @@
"DE.Views.Toolbar.tipInsertShape": "Inserisci forma", "DE.Views.Toolbar.tipInsertShape": "Inserisci forma",
"DE.Views.Toolbar.tipInsertTable": "Inserisci tabella", "DE.Views.Toolbar.tipInsertTable": "Inserisci tabella",
"DE.Views.Toolbar.tipInsertText": "Inserisci testo", "DE.Views.Toolbar.tipInsertText": "Inserisci testo",
"DE.Views.Toolbar.tipInsertTextArt": "Inserisci Text Art",
"DE.Views.Toolbar.tipLineSpace": "Interlinea tra i paragrafi", "DE.Views.Toolbar.tipLineSpace": "Interlinea tra i paragrafi",
"DE.Views.Toolbar.tipMailRecepients": "Unione della Corrispondenza", "DE.Views.Toolbar.tipMailRecepients": "Unione della Corrispondenza",
"DE.Views.Toolbar.tipMarkers": "Elenchi puntati", "DE.Views.Toolbar.tipMarkers": "Elenchi puntati",
"DE.Views.Toolbar.tipMultilevels": "Struttura", "DE.Views.Toolbar.tipMultilevels": "Struttura",
"DE.Views.Toolbar.tipNewDocument": "Nuovo documento",
"DE.Views.Toolbar.tipNotes": "Note a piè di pagina", "DE.Views.Toolbar.tipNotes": "Note a piè di pagina",
"DE.Views.Toolbar.tipNumbers": "Elenchi numerati", "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.tipPageBreak": "Inserisci interruzione di pagina o di sezione",
"DE.Views.Toolbar.tipPageMargins": "Page Margins", "DE.Views.Toolbar.tipPageMargins": "Page Margins",
"DE.Views.Toolbar.tipPageOrient": "Orientamento pagina", "DE.Views.Toolbar.tipPageOrient": "Orientamento pagina",
@ -1608,6 +1657,8 @@
"DE.Views.Toolbar.tipRedo": "Ripristina", "DE.Views.Toolbar.tipRedo": "Ripristina",
"DE.Views.Toolbar.tipSave": "Salva", "DE.Views.Toolbar.tipSave": "Salva",
"DE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", "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.tipShowHiddenChars": "Caratteri non stampabili",
"DE.Views.Toolbar.tipSynchronize": "Il documento è stato modificato da un altro utente. Clicca per salvare le modifiche e ricaricare gli aggiornamenti.", "DE.Views.Toolbar.tipSynchronize": "Il documento è stato modificato da un altro utente. Clicca per salvare le modifiche e ricaricare gli aggiornamenti.",
"DE.Views.Toolbar.tipUndo": "Annulla", "DE.Views.Toolbar.tipUndo": "Annulla",

View file

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

View file

@ -12,7 +12,7 @@
"Common.Controllers.ExternalMergeEditor.warningTitle": "Upozornenie", "Common.Controllers.ExternalMergeEditor.warningTitle": "Upozornenie",
"Common.Controllers.History.notcriticalErrorTitle": "Upozornenie", "Common.Controllers.History.notcriticalErrorTitle": "Upozornenie",
"Common.Controllers.ReviewChanges.textAtLeast": "najmenej", "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.textBaseline": "Základná linka/základný\n",
"Common.Controllers.ReviewChanges.textBold": "Tučné", "Common.Controllers.ReviewChanges.textBold": "Tučné",
"Common.Controllers.ReviewChanges.textBreakBefore": "Zlom strany pred", "Common.Controllers.ReviewChanges.textBreakBefore": "Zlom strany pred",
@ -81,7 +81,7 @@
"Common.UI.SearchDialog.textTitle": "Nájsť a nahradiť", "Common.UI.SearchDialog.textTitle": "Nájsť a nahradiť",
"Common.UI.SearchDialog.textTitle2": "Nájsť", "Common.UI.SearchDialog.textTitle2": "Nájsť",
"Common.UI.SearchDialog.textWholeWords": "Len celé slová\n\n", "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.txtBtnReplace": "Nahradiť",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko", "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko",
"Common.UI.SynchronizeTip.textDontShow": "Neukazovať túto správu znova", "Common.UI.SynchronizeTip.textDontShow": "Neukazovať túto správu znova",
@ -93,7 +93,7 @@
"Common.UI.Window.noButtonText": "Nie", "Common.UI.Window.noButtonText": "Nie",
"Common.UI.Window.okButtonText": "OK", "Common.UI.Window.okButtonText": "OK",
"Common.UI.Window.textConfirmation": "Potvrdenie", "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.textError": "Chyba",
"Common.UI.Window.textInformation": "Informácia", "Common.UI.Window.textInformation": "Informácia",
"Common.UI.Window.textWarning": "Upozornenie", "Common.UI.Window.textWarning": "Upozornenie",
@ -125,9 +125,9 @@
"Common.Views.Comments.textReply": "Odpovedať", "Common.Views.Comments.textReply": "Odpovedať",
"Common.Views.Comments.textResolve": "Vyriešiť", "Common.Views.Comments.textResolve": "Vyriešiť",
"Common.Views.Comments.textResolved": "Vyriešené", "Common.Views.Comments.textResolved": "Vyriešené",
"Common.Views.CopyWarningDialog.textDontShow": " Neukazovať túto správu znova", "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.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": "Kopírovať, vystrihnúť a prilepiť akcie", "Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť",
"Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie", "Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie",
"Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie", "Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie",
"Common.Views.CopyWarningDialog.textToPaste": "pre vloženie", "Common.Views.CopyWarningDialog.textToPaste": "pre vloženie",
@ -139,8 +139,18 @@
"Common.Views.ExternalMergeEditor.textClose": "Zatvoriť", "Common.Views.ExternalMergeEditor.textClose": "Zatvoriť",
"Common.Views.ExternalMergeEditor.textSave": "Uložiť a Zavrieť", "Common.Views.ExternalMergeEditor.textSave": "Uložiť a Zavrieť",
"Common.Views.ExternalMergeEditor.textTitle": "Príjemcovia hromadnej korešpondencie\n\n", "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.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.Header.txtRename": "Premenovať",
"Common.Views.History.textCloseHistory": "Zavrieť históriu", "Common.Views.History.textCloseHistory": "Zavrieť históriu",
"Common.Views.History.textHide": "Stiahnuť/zbaliť/zvinúť", "Common.Views.History.textHide": "Stiahnuť/zbaliť/zvinúť",
@ -166,7 +176,7 @@
"Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu", "Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu",
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť", "Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
"Common.Views.OpenDialog.okButtonText": "OK", "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.txtPassword": "Heslo",
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
"Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor", "Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor",
@ -178,15 +188,32 @@
"Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.okButtonText": "OK",
"Common.Views.RenameDialog.textName": "Názov súboru", "Common.Views.RenameDialog.textName": "Názov súboru",
"Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:\n\n", "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.txtAccept": "Akceptovať",
"Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny", "Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Akceptovať aktuálnu zmenu", "Common.Views.ReviewChanges.txtAcceptCurrent": "Akceptovať aktuálnu zmenu",
"Common.Views.ReviewChanges.txtClose": "Zatvoriť", "Common.Views.ReviewChanges.txtClose": "Zatvoriť",
"Common.Views.ReviewChanges.txtNext": "K ďalšej zmene", "Common.Views.ReviewChanges.txtDocLang": "Jazyk",
"Common.Views.ReviewChanges.txtPrev": "K predchádzajúcej zmene\n\n", "Common.Views.ReviewChanges.txtNext": "Nasledujúci",
"Common.Views.ReviewChanges.txtPrev": "Predchádzajúci",
"Common.Views.ReviewChanges.txtReject": "Odmietnuť", "Common.Views.ReviewChanges.txtReject": "Odmietnuť",
"Common.Views.ReviewChanges.txtRejectAll": "Odmietnuť všetky zmeny", "Common.Views.ReviewChanges.txtRejectAll": "Odmietnuť všetky zmeny",
"Common.Views.ReviewChanges.txtRejectCurrent": "Odmietnuť aktuálne 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.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.newDocumentTitle": "Nepomenovaný dokument\n\n",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Upozornenie", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Upozornenie",
@ -323,6 +350,7 @@
"DE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "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.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.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.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.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", "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.textMatrix": "Matice",
"DE.Controllers.Toolbar.textOperator": "Operátory", "DE.Controllers.Toolbar.textOperator": "Operátory",
"DE.Controllers.Toolbar.textRadical": "Odmocniny", "DE.Controllers.Toolbar.textRadical": "Odmocniny",
"DE.Controllers.Toolbar.textScript": "Skripty", "DE.Controllers.Toolbar.textScript": "Mocniny",
"DE.Controllers.Toolbar.textSymbols": "Symboly", "DE.Controllers.Toolbar.textSymbols": "Symboly",
"DE.Controllers.Toolbar.textWarning": "Upozornenie", "DE.Controllers.Toolbar.textWarning": "Upozornenie",
"DE.Controllers.Toolbar.txtAccent_Accent": "Dĺžeň", "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_3": "Zložený objekt",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "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_5": "Príklady prípadov\n\n",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient\n\n", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient\n\n", "DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient",
"DE.Controllers.Toolbar.txtBracket_Line": "Zátvorky", "DE.Controllers.Toolbar.txtBracket_Line": "Zátvorky",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Zátvorka", "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Zátvorka",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "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_Csch": "Funkcia Hyperbolický kosekans",
"DE.Controllers.Toolbar.txtFunction_Custom_1": "Sínus theta ", "DE.Controllers.Toolbar.txtFunction_Custom_1": "Sínus theta ",
"DE.Controllers.Toolbar.txtFunction_Custom_2": "Kosínus 2x", "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_Sec": "Funkcia sekans",
"DE.Controllers.Toolbar.txtFunction_Sech": "Funkcia hyperbolický sekans", "DE.Controllers.Toolbar.txtFunction_Sech": "Funkcia hyperbolický sekans",
"DE.Controllers.Toolbar.txtFunction_Sin": "Funkcia sínus", "DE.Controllers.Toolbar.txtFunction_Sin": "Funkcia sínus",
@ -508,9 +536,9 @@
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Zjednotenie", "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Zjednotenie",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Zjednotenie", "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Zjednotenie",
"DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Príklad limitu", "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_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_Log": "Logaritmus",
"DE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus", "DE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus",
"DE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", "DE.Controllers.Toolbar.txtLimitLog_Max": "Maximum",
@ -559,7 +587,7 @@
"DE.Controllers.Toolbar.txtOperator_EqualsEquals": "Dvojité rovná sa", "DE.Controllers.Toolbar.txtOperator_EqualsEquals": "Dvojité rovná sa",
"DE.Controllers.Toolbar.txtOperator_MinusEquals": "Mínus rovná sa", "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Mínus rovná sa",
"DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus 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_1": "Odmocniny",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Odmocniny", "DE.Controllers.Toolbar.txtRadicalCustom_2": "Odmocniny",
"DE.Controllers.Toolbar.txtRadicalRoot_2": "Druhá odmocnina so stupňom", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Druhá odmocnina so stupňom",
@ -664,7 +692,7 @@
"DE.Views.ChartSettings.textArea": "Plošný graf", "DE.Views.ChartSettings.textArea": "Plošný graf",
"DE.Views.ChartSettings.textBar": "Pruhový graf", "DE.Views.ChartSettings.textBar": "Pruhový graf",
"DE.Views.ChartSettings.textChartType": "Zmeniť typ grafu", "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.textEditData": "Upravovať dáta",
"DE.Views.ChartSettings.textHeight": "Výška", "DE.Views.ChartSettings.textHeight": "Výška",
"DE.Views.ChartSettings.textLine": "Čiara/líniový graf", "DE.Views.ChartSettings.textLine": "Čiara/líniový graf",
@ -680,8 +708,8 @@
"DE.Views.ChartSettings.textWrap": "Obtekanie textu", "DE.Views.ChartSettings.textWrap": "Obtekanie textu",
"DE.Views.ChartSettings.txtBehind": "Za", "DE.Views.ChartSettings.txtBehind": "Za",
"DE.Views.ChartSettings.txtInFront": "vpredu", "DE.Views.ChartSettings.txtInFront": "vpredu",
"DE.Views.ChartSettings.txtInline": "V rade za sebou/vnútri riadku\n", "DE.Views.ChartSettings.txtInline": "Zarovno s textom",
"DE.Views.ChartSettings.txtSquare": "Štvorec/druhá mocnina", "DE.Views.ChartSettings.txtSquare": "Štvorec",
"DE.Views.ChartSettings.txtThrough": "Cez", "DE.Views.ChartSettings.txtThrough": "Cez",
"DE.Views.ChartSettings.txtTight": "Tesný", "DE.Views.ChartSettings.txtTight": "Tesný",
"DE.Views.ChartSettings.txtTitle": "Graf", "DE.Views.ChartSettings.txtTitle": "Graf",
@ -705,13 +733,13 @@
"DE.Views.DocumentHolder.cellText": "Bunka", "DE.Views.DocumentHolder.cellText": "Bunka",
"DE.Views.DocumentHolder.centerText": "Stred", "DE.Views.DocumentHolder.centerText": "Stred",
"DE.Views.DocumentHolder.chartText": "Pokročilé nastavenia grafu", "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.deleteColumnText": "Odstrániť stĺpec",
"DE.Views.DocumentHolder.deleteRowText": "Odstrániť riadok", "DE.Views.DocumentHolder.deleteRowText": "Odstrániť riadok",
"DE.Views.DocumentHolder.deleteTableText": "Odstrániť tabuľku", "DE.Views.DocumentHolder.deleteTableText": "Odstrániť tabuľku",
"DE.Views.DocumentHolder.deleteText": "Vymazať", "DE.Views.DocumentHolder.deleteText": "Vymazať",
"DE.Views.DocumentHolder.direct270Text": "Otočiť text nahor\n", "DE.Views.DocumentHolder.direct270Text": "Otočiť text nahor",
"DE.Views.DocumentHolder.direct90Text": "Otočiť text nadol\n\n", "DE.Views.DocumentHolder.direct90Text": "Otočiť text nadol",
"DE.Views.DocumentHolder.directHText": "Vodorovný", "DE.Views.DocumentHolder.directHText": "Vodorovný",
"DE.Views.DocumentHolder.directionText": "Smer textu", "DE.Views.DocumentHolder.directionText": "Smer textu",
"DE.Views.DocumentHolder.editChartText": "Upravovať dáta", "DE.Views.DocumentHolder.editChartText": "Upravovať dáta",
@ -821,7 +849,7 @@
"DE.Views.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru\n\n", "DE.Views.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru\n\n",
"DE.Views.DocumentHolder.txtIncreaseArg": "Zväčšiť veľkosť obsahu/argumentu", "DE.Views.DocumentHolder.txtIncreaseArg": "Zväčšiť veľkosť obsahu/argumentu",
"DE.Views.DocumentHolder.txtInFront": "vpredu", "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.txtInsertArgAfter": "Vložiť argument/obsah po\n\n",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred\n", "DE.Views.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred\n",
"DE.Views.DocumentHolder.txtInsertBreak": "Vložiť manuálny rozdeľovač", "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.txtShowOpenBracket": "Zobraziť začiatočné zátvorky",
"DE.Views.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka", "DE.Views.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka",
"DE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu\n", "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.txtStretchBrackets": "Zložená zátvorka",
"DE.Views.DocumentHolder.txtThrough": "Cez", "DE.Views.DocumentHolder.txtThrough": "Cez",
"DE.Views.DocumentHolder.txtTight": "Tesný", "DE.Views.DocumentHolder.txtTight": "Tesný",
@ -867,14 +895,14 @@
"DE.Views.DropcapSettingsAdvanced.strMargins": "Okraje", "DE.Views.DropcapSettingsAdvanced.strMargins": "Okraje",
"DE.Views.DropcapSettingsAdvanced.textAlign": "Zarovnanie", "DE.Views.DropcapSettingsAdvanced.textAlign": "Zarovnanie",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Najmenej\n\n", "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.textBackColor": "Farba pozadia",
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Farba orámovania", "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.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.textBorderWidth": "Veľkosť orámovania",
"DE.Views.DropcapSettingsAdvanced.textBottom": "Dole", "DE.Views.DropcapSettingsAdvanced.textBottom": "Dole",
"DE.Views.DropcapSettingsAdvanced.textCenter": "Stred", "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.textDistance": "Vzdialenosť od textu",
"DE.Views.DropcapSettingsAdvanced.textExact": "Presne", "DE.Views.DropcapSettingsAdvanced.textExact": "Presne",
"DE.Views.DropcapSettingsAdvanced.textFlow": "Obiehať rám", "DE.Views.DropcapSettingsAdvanced.textFlow": "Obiehať rám",
@ -894,7 +922,7 @@
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Odsek", "DE.Views.DropcapSettingsAdvanced.textParagraph": "Odsek",
"DE.Views.DropcapSettingsAdvanced.textParameters": "Parametre", "DE.Views.DropcapSettingsAdvanced.textParameters": "Parametre",
"DE.Views.DropcapSettingsAdvanced.textPosition": "Pozícia", "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.textRight": "Vpravo",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Výška v riadkoch", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Výška v riadkoch",
"DE.Views.DropcapSettingsAdvanced.textTitle": "Iniciála - Pokročilé nastavenia", "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.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.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.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.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.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", "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.txtAll": "Zobraziť všetko",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Prispôsobiť na stranu", "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.txtInch": "Palec (miera 2,54 cm)\n",
"DE.Views.FileMenuPanels.Settings.txtInput": "Striedavý vstup", "DE.Views.FileMenuPanels.Settings.txtInput": "Striedavý vstup",
"DE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný", "DE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný",
@ -1002,13 +1030,14 @@
"DE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok\n", "DE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok\n",
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Zobraziť", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Zobraziť",
"DE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", "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.textUrl": "Odkaz na",
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", "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.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.textAdvanced": "Zobraziť pokročilé nastavenia",
"DE.Views.ImageSettings.textEdit": "Upraviť", "DE.Views.ImageSettings.textEdit": "Upraviť",
"DE.Views.ImageSettings.textEditObject": "Upraviť objekt\n\n", "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.textFromFile": "Zo súboru",
"DE.Views.ImageSettings.textFromUrl": "Z URL adresy ", "DE.Views.ImageSettings.textFromUrl": "Z URL adresy ",
"DE.Views.ImageSettings.textHeight": "Výška", "DE.Views.ImageSettings.textHeight": "Výška",
@ -1019,8 +1048,8 @@
"DE.Views.ImageSettings.textWrap": "Obtekanie textu", "DE.Views.ImageSettings.textWrap": "Obtekanie textu",
"DE.Views.ImageSettings.txtBehind": "Za", "DE.Views.ImageSettings.txtBehind": "Za",
"DE.Views.ImageSettings.txtInFront": "vpredu", "DE.Views.ImageSettings.txtInFront": "vpredu",
"DE.Views.ImageSettings.txtInline": "V rade za sebou/vnútri riadku\n", "DE.Views.ImageSettings.txtInline": "Zarovno s textom",
"DE.Views.ImageSettings.txtSquare": "Štvorec/druhá mocnina", "DE.Views.ImageSettings.txtSquare": "Štvorec",
"DE.Views.ImageSettings.txtThrough": "Cez", "DE.Views.ImageSettings.txtThrough": "Cez",
"DE.Views.ImageSettings.txtTight": "Tesný", "DE.Views.ImageSettings.txtTight": "Tesný",
"DE.Views.ImageSettings.txtTopAndBottom": "Hore a dole", "DE.Views.ImageSettings.txtTopAndBottom": "Hore a dole",
@ -1038,24 +1067,24 @@
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Veľkosť začiatku", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Veľkosť začiatku",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Štýl začiatku", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Štýl začiatku",
"DE.Views.ImageSettingsAdvanced.textBelow": "pod", "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.textBottom": "Dole",
"DE.Views.ImageSettingsAdvanced.textBottomMargin": "Dolný okraj", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Dolný okraj",
"DE.Views.ImageSettingsAdvanced.textBtnWrap": "Obtekanie textu", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Obtekanie textu",
"DE.Views.ImageSettingsAdvanced.textCapType": "Typ zakončenia\n", "DE.Views.ImageSettingsAdvanced.textCapType": "Typ zakončenia\n",
"DE.Views.ImageSettingsAdvanced.textCenter": "Stred", "DE.Views.ImageSettingsAdvanced.textCenter": "Stred",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Symbol", "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.textDistance": "Vzdialenosť od textu",
"DE.Views.ImageSettingsAdvanced.textEndSize": "Veľkosť konca", "DE.Views.ImageSettingsAdvanced.textEndSize": "Veľkosť konca",
"DE.Views.ImageSettingsAdvanced.textEndStyle": "Štýl 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.textHeight": "Výška",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Vodorovný", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Vodorovný",
"DE.Views.ImageSettingsAdvanced.textJoinType": "Typ pripojenia\n\n", "DE.Views.ImageSettingsAdvanced.textJoinType": "Typ pripojenia\n\n",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n",
"DE.Views.ImageSettingsAdvanced.textLeft": "Vľavo", "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.textLine": "Čiara/líniový graf",
"DE.Views.ImageSettingsAdvanced.textLineStyle": "Štýl čiary\n\n", "DE.Views.ImageSettingsAdvanced.textLineStyle": "Štýl čiary\n\n",
"DE.Views.ImageSettingsAdvanced.textMargin": "Okraj", "DE.Views.ImageSettingsAdvanced.textMargin": "Okraj",
@ -1068,15 +1097,15 @@
"DE.Views.ImageSettingsAdvanced.textParagraph": "Odsek", "DE.Views.ImageSettingsAdvanced.textParagraph": "Odsek",
"DE.Views.ImageSettingsAdvanced.textPosition": "Pozícia", "DE.Views.ImageSettingsAdvanced.textPosition": "Pozícia",
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Relatívna pozícia\n\n", "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.textRelativeWH": "Relatívny",
"DE.Views.ImageSettingsAdvanced.textRight": "Vpravo", "DE.Views.ImageSettingsAdvanced.textRight": "Vpravo",
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Pravý okraj", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Pravý okraj",
"DE.Views.ImageSettingsAdvanced.textRightOf": "Vpravo od\n\n", "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.textShape": "Nastavenia tvaru",
"DE.Views.ImageSettingsAdvanced.textSize": "Veľkosť", "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.textTitle": "Obrázok - Pokročilé nastavenia",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Graf - Pokročilé nastavenia", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Graf - Pokročilé nastavenia",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Tvar - Pokročilé nastavenia", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Tvar - Pokročilé nastavenia",
@ -1087,15 +1116,14 @@
"DE.Views.ImageSettingsAdvanced.textWrap": "Obtekanie textu", "DE.Views.ImageSettingsAdvanced.textWrap": "Obtekanie textu",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za",
"DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "vpredu", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "vpredu",
"DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "V rade za sebou/vnútri riadku\n", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Zarovno s textom",
"DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Štvorec/druhá mocnina", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Štvorec",
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Cez", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Cez",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tesný", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tesný",
"DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Hore a dole", "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Hore a dole",
"DE.Views.LeftMenu.tipAbout": "O aplikácii", "DE.Views.LeftMenu.tipAbout": "O aplikácii",
"DE.Views.LeftMenu.tipChat": "Rozhovor", "DE.Views.LeftMenu.tipChat": "Rozhovor",
"DE.Views.LeftMenu.tipComments": "Komentáre", "DE.Views.LeftMenu.tipComments": "Komentáre",
"DE.Views.LeftMenu.tipFile": "Súbor",
"DE.Views.LeftMenu.tipPlugins": "Pluginy", "DE.Views.LeftMenu.tipPlugins": "Pluginy",
"DE.Views.LeftMenu.tipSearch": "Hľadať", "DE.Views.LeftMenu.tipSearch": "Hľadať",
"DE.Views.LeftMenu.tipSupport": "Spätná väzba a Podpora\n\n", "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.textCustom": "Vlastná značka\n\n",
"DE.Views.NoteSettingsDialog.textDocument": "Celý dokument", "DE.Views.NoteSettingsDialog.textDocument": "Celý dokument",
"DE.Views.NoteSettingsDialog.textEachPage": "Reštartovať/znova spustiť každú stránku\n\n", "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.textFootnote": "Poznámka pod čiarou\n",
"DE.Views.NoteSettingsDialog.textFormat": "Formát", "DE.Views.NoteSettingsDialog.textFormat": "Formát",
"DE.Views.NoteSettingsDialog.textInsert": "Vložiť", "DE.Views.NoteSettingsDialog.textInsert": "Vložiť",
@ -1168,10 +1196,10 @@
"DE.Views.NoteSettingsDialog.textNumbering": "Číslovanie", "DE.Views.NoteSettingsDialog.textNumbering": "Číslovanie",
"DE.Views.NoteSettingsDialog.textNumFormat": "Formát čísel\n\n", "DE.Views.NoteSettingsDialog.textNumFormat": "Formát čísel\n\n",
"DE.Views.NoteSettingsDialog.textPageBottom": "Spodná časť stránky", "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.textStart": "Začať na",
"DE.Views.NoteSettingsDialog.textTextBottom": "Pod textom", "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.cancelButtonText": "Zrušiť",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Upozornenie", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Upozornenie",
"DE.Views.PageMarginsDialog.okButtonText": "OK", "DE.Views.PageMarginsDialog.okButtonText": "OK",
@ -1199,7 +1227,7 @@
"DE.Views.ParagraphSettings.textBackColor": "Farba pozadia", "DE.Views.ParagraphSettings.textBackColor": "Farba pozadia",
"DE.Views.ParagraphSettings.textExact": "Presne", "DE.Views.ParagraphSettings.textExact": "Presne",
"DE.Views.ParagraphSettings.textNewColor": "Pridať novú vlastnú farbu", "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.cancelButtonText": "Zrušiť",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli",
"DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", "DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
@ -1263,13 +1291,13 @@
"DE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky", "DE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky",
"DE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art", "DE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art",
"DE.Views.ShapeSettings.strBackground": "Farba pozadia", "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.strColor": "Farba",
"DE.Views.ShapeSettings.strFill": "Vyplniť", "DE.Views.ShapeSettings.strFill": "Vyplniť",
"DE.Views.ShapeSettings.strForeground": "Farba popredia", "DE.Views.ShapeSettings.strForeground": "Farba popredia",
"DE.Views.ShapeSettings.strPattern": "Vzor", "DE.Views.ShapeSettings.strPattern": "Vzor",
"DE.Views.ShapeSettings.strSize": "Veľkosť", "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.strTransparency": "Priehľadnosť",
"DE.Views.ShapeSettings.strType": "Typ", "DE.Views.ShapeSettings.strType": "Typ",
"DE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "DE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
@ -1281,7 +1309,7 @@
"DE.Views.ShapeSettings.textFromUrl": "Z URL adresy ", "DE.Views.ShapeSettings.textFromUrl": "Z URL adresy ",
"DE.Views.ShapeSettings.textGradient": "Prechod", "DE.Views.ShapeSettings.textGradient": "Prechod",
"DE.Views.ShapeSettings.textGradientFill": "Výplň prechodom", "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.textLinear": "Lineárny/čiarový",
"DE.Views.ShapeSettings.textNewColor": "Pridať novú vlastnú farbu", "DE.Views.ShapeSettings.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.ShapeSettings.textNoFill": "Bez výplne", "DE.Views.ShapeSettings.textNoFill": "Bez výplne",
@ -1302,35 +1330,24 @@
"DE.Views.ShapeSettings.txtGranite": "Mramorovaný", "DE.Views.ShapeSettings.txtGranite": "Mramorovaný",
"DE.Views.ShapeSettings.txtGreyPaper": "Sivý papier", "DE.Views.ShapeSettings.txtGreyPaper": "Sivý papier",
"DE.Views.ShapeSettings.txtInFront": "vpredu", "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.txtKnit": "Pletený",
"DE.Views.ShapeSettings.txtLeather": "Koža/kožený", "DE.Views.ShapeSettings.txtLeather": "Koža/kožený",
"DE.Views.ShapeSettings.txtNoBorders": "Bez čiary", "DE.Views.ShapeSettings.txtNoBorders": "Bez čiary",
"DE.Views.ShapeSettings.txtPapyrus": "Papyrus", "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.txtThrough": "Cez",
"DE.Views.ShapeSettings.txtTight": "Tesný", "DE.Views.ShapeSettings.txtTight": "Tesný",
"DE.Views.ShapeSettings.txtTopAndBottom": "Hore a dole", "DE.Views.ShapeSettings.txtTopAndBottom": "Hore a dole",
"DE.Views.ShapeSettings.txtWood": "Drevo", "DE.Views.ShapeSettings.txtWood": "Drevo",
"DE.Views.Statusbar.goToPageText": "Ísť na stranu", "DE.Views.Statusbar.goToPageText": "Ísť na stranu",
"DE.Views.Statusbar.pageIndexText": "Strana {0} z {1}", "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.tipFitPage": "Prispôsobiť na stranu",
"DE.Views.Statusbar.tipFitWidth": "Prispôsobiť do formátu", "DE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku",
"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.tipSetLang": "Nastaviť jazyk textu\n\n", "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.tipZoomFactor": "Zväčšenie/zväčšenie veľkosti\n",
"DE.Views.Statusbar.tipZoomIn": "Priblížiť", "DE.Views.Statusbar.tipZoomIn": "Priblížiť",
"DE.Views.Statusbar.tipZoomOut": "Oddialiť", "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.Statusbar.txtPageNumInvalid": "Číslo stránky je neplatné",
"DE.Views.StyleTitleDialog.textHeader": "Vytvoriť nový štýl", "DE.Views.StyleTitleDialog.textHeader": "Vytvoriť nový štýl",
"DE.Views.StyleTitleDialog.textNextStyle": "Štýl ďalšieho odseku\n\n", "DE.Views.StyleTitleDialog.textNextStyle": "Štýl ďalšieho odseku\n\n",
@ -1416,7 +1433,7 @@
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Vľavo", "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Vľavo",
"DE.Views.TableSettingsAdvanced.textMargin": "Okraj", "DE.Views.TableSettingsAdvanced.textMargin": "Okraj",
"DE.Views.TableSettingsAdvanced.textMargins": "Okraje bunky", "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.textMove": "Presunúť objekt s textom\n\n",
"DE.Views.TableSettingsAdvanced.textNewColor": "Pridať novú vlastnú farbu", "DE.Views.TableSettingsAdvanced.textNewColor": "Pridať novú vlastnú farbu",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Len pre vybrané bunky", "DE.Views.TableSettingsAdvanced.textOnlyCells": "Len pre vybrané bunky",
@ -1426,7 +1443,7 @@
"DE.Views.TableSettingsAdvanced.textPosition": "Pozícia", "DE.Views.TableSettingsAdvanced.textPosition": "Pozícia",
"DE.Views.TableSettingsAdvanced.textPrefWidth": "Preferovaná šírka", "DE.Views.TableSettingsAdvanced.textPrefWidth": "Preferovaná šírka",
"DE.Views.TableSettingsAdvanced.textPreview": "Náhľad", "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.textRight": "Vpravo",
"DE.Views.TableSettingsAdvanced.textRightOf": "Vpravo od\n\n", "DE.Views.TableSettingsAdvanced.textRightOf": "Vpravo od\n\n",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "Vpravo", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Vpravo",
@ -1443,7 +1460,7 @@
"DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabuľka rovnobežne s textom", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabuľka rovnobežne s textom",
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Obtekať tabuľku", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Obtekať tabuľku",
"DE.Views.TableSettingsAdvanced.textWrappingStyle": "Obtekanie textu", "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.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.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", "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.strColor": "Farba",
"DE.Views.TextArtSettings.strFill": "Vyplniť", "DE.Views.TextArtSettings.strFill": "Vyplniť",
"DE.Views.TextArtSettings.strSize": "Veľkosť", "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.strTransparency": "Priehľadnosť",
"DE.Views.TextArtSettings.strType": "Typ", "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", "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.textTemplate": "Šablóna",
"DE.Views.TextArtSettings.textTransform": "Transformovať", "DE.Views.TextArtSettings.textTransform": "Transformovať",
"DE.Views.TextArtSettings.txtNoBorders": "Bez čiary", "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.mniCustomTable": "Vložiť vlastnú tabuľku",
"DE.Views.Toolbar.mniDelFootnote": "Odstrániť všetky poznámky pod čiarou\n\n", "DE.Views.Toolbar.mniDelFootnote": "Odstrániť všetky poznámky pod čiarou\n\n",
"DE.Views.Toolbar.mniEditDropCap": "Nastavenie Iniciály", "DE.Views.Toolbar.mniEditDropCap": "Nastavenie Iniciály",
@ -1489,15 +1527,15 @@
"DE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", "DE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru",
"DE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", "DE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy",
"DE.Views.Toolbar.mniInsFootnote": "Vložiť poznámku pod čiarou\n\n", "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.strMenuNoFill": "Bez výplne",
"DE.Views.Toolbar.textArea": "Plošný graf", "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.textBar": "Pruhový graf",
"DE.Views.Toolbar.textBold": "Tučné", "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.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.textColumnsCustom": "Vlastné stĺpce\n\n",
"DE.Views.Toolbar.textColumnsLeft": "Vľavo", "DE.Views.Toolbar.textColumnsLeft": "Vľavo",
"DE.Views.Toolbar.textColumnsOne": "Jeden", "DE.Views.Toolbar.textColumnsOne": "Jeden",
@ -1508,7 +1546,7 @@
"DE.Views.Toolbar.textContPage": "Súvislá/neprerušovaná strana", "DE.Views.Toolbar.textContPage": "Súvislá/neprerušovaná strana",
"DE.Views.Toolbar.textEvenPage": "Párna stránka", "DE.Views.Toolbar.textEvenPage": "Párna stránka",
"DE.Views.Toolbar.textFitPage": "Prispôsobiť na stranu", "DE.Views.Toolbar.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.textGotoFootnote": "Prejdite na Poznámky pod čiarou\n\n",
"DE.Views.Toolbar.textHideLines": "Skryť pravítka\n\n", "DE.Views.Toolbar.textHideLines": "Skryť pravítka\n\n",
"DE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok", "DE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok",
@ -1519,8 +1557,6 @@
"DE.Views.Toolbar.textInsertPageNumber": "Vložiť číslo stránky", "DE.Views.Toolbar.textInsertPageNumber": "Vložiť číslo stránky",
"DE.Views.Toolbar.textInsPageBreak": "Vložiť zlom strany", "DE.Views.Toolbar.textInsPageBreak": "Vložiť zlom strany",
"DE.Views.Toolbar.textInsSectionBreak": "Vložiť zlom sekcie", "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.textInText": "V texte",
"DE.Views.Toolbar.textItalic": "Kurzíva", "DE.Views.Toolbar.textItalic": "Kurzíva",
"DE.Views.Toolbar.textLandscape": "Na šírku", "DE.Views.Toolbar.textLandscape": "Na šírku",
@ -1553,6 +1589,11 @@
"DE.Views.Toolbar.textSubscript": "Dolný index", "DE.Views.Toolbar.textSubscript": "Dolný index",
"DE.Views.Toolbar.textSuperscript": "Horný index", "DE.Views.Toolbar.textSuperscript": "Horný index",
"DE.Views.Toolbar.textSurface": "Povrch", "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.textTitleError": "Chyba",
"DE.Views.Toolbar.textToCurrent": "Na aktuálnu pozíciu", "DE.Views.Toolbar.textToCurrent": "Na aktuálnu pozíciu",
"DE.Views.Toolbar.textTop": "Hore:", "DE.Views.Toolbar.textTop": "Hore:",
@ -1579,6 +1620,9 @@
"DE.Views.Toolbar.tipFontSize": "Veľkosť písma", "DE.Views.Toolbar.tipFontSize": "Veľkosť písma",
"DE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie", "DE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie",
"DE.Views.Toolbar.tipHighlightColor": "Farba zvýraznenia", "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.tipIncFont": "Zväčšiť veľkosť písma",
"DE.Views.Toolbar.tipIncPrLeft": "Zväčšiť zarážku", "DE.Views.Toolbar.tipIncPrLeft": "Zväčšiť zarážku",
"DE.Views.Toolbar.tipInsertChart": "Vložiť graf", "DE.Views.Toolbar.tipInsertChart": "Vložiť graf",
@ -1586,17 +1630,16 @@
"DE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz", "DE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz",
"DE.Views.Toolbar.tipInsertImage": "Vložiť obrázok", "DE.Views.Toolbar.tipInsertImage": "Vložiť obrázok",
"DE.Views.Toolbar.tipInsertNum": "Vložiť číslo stránky", "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.tipInsertTable": "Vložiť tabuľku",
"DE.Views.Toolbar.tipInsertText": "Vložiť text", "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.tipMailRecepients": "Zlúčenie pošty",
"DE.Views.Toolbar.tipMarkers": "Odrážky", "DE.Views.Toolbar.tipMarkers": "Odrážky",
"DE.Views.Toolbar.tipMultilevels": "Viacúrovňový zoznam", "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.tipNotes": "Poznámky pod čiarou\n",
"DE.Views.Toolbar.tipNumbers": "Číslovanie", "DE.Views.Toolbar.tipNumbers": "Číslovanie",
"DE.Views.Toolbar.tipOpenDocument": "Otvoriť dokument",
"DE.Views.Toolbar.tipPageBreak": "Vložiť zlom strany alebo sekcie", "DE.Views.Toolbar.tipPageBreak": "Vložiť zlom strany alebo sekcie",
"DE.Views.Toolbar.tipPageMargins": "Okraje stránky", "DE.Views.Toolbar.tipPageMargins": "Okraje stránky",
"DE.Views.Toolbar.tipPageOrient": "Orientácia stránky", "DE.Views.Toolbar.tipPageOrient": "Orientácia stránky",
@ -1608,6 +1651,8 @@
"DE.Views.Toolbar.tipRedo": "Krok vpred", "DE.Views.Toolbar.tipRedo": "Krok vpred",
"DE.Views.Toolbar.tipSave": "Uložiť", "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.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.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.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äť", "DE.Views.Toolbar.tipUndo": "Krok späť",
@ -1616,7 +1661,7 @@
"DE.Views.Toolbar.txtScheme10": "Medián", "DE.Views.Toolbar.txtScheme10": "Medián",
"DE.Views.Toolbar.txtScheme11": "Metro", "DE.Views.Toolbar.txtScheme11": "Metro",
"DE.Views.Toolbar.txtScheme12": "Modul", "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.txtScheme14": "Výklenok\n",
"DE.Views.Toolbar.txtScheme15": "Pôvod", "DE.Views.Toolbar.txtScheme15": "Pôvod",
"DE.Views.Toolbar.txtScheme16": "Papier", "DE.Views.Toolbar.txtScheme16": "Papier",

View file

@ -81,6 +81,7 @@
"Common.UI.SearchDialog.textTitle": "Bul ve Değiştir", "Common.UI.SearchDialog.textTitle": "Bul ve Değiştir",
"Common.UI.SearchDialog.textTitle2": "Bul", "Common.UI.SearchDialog.textTitle2": "Bul",
"Common.UI.SearchDialog.textWholeWords": "Sadece tam kelimeler", "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.txtBtnReplace": "Değiştir",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Hepsini Değiştir", "Common.UI.SearchDialog.txtBtnReplaceAll": "Hepsini Değiştir",
"Common.UI.SynchronizeTip.textDontShow": "Bu mesajı bir daha gösterme", "Common.UI.SynchronizeTip.textDontShow": "Bu mesajı bir daha gösterme",
@ -95,6 +96,8 @@
"Common.UI.Window.textInformation": "Bilgi", "Common.UI.Window.textInformation": "Bilgi",
"Common.UI.Window.textWarning": "Dikkat", "Common.UI.Window.textWarning": "Dikkat",
"Common.UI.Window.yesButtonText": "Evet", "Common.UI.Window.yesButtonText": "Evet",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"Common.Views.About.txtAddress": "adres:", "Common.Views.About.txtAddress": "adres:",
"Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Letonya, AB, LV-1021", "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Letonya, AB, LV-1021",
"Common.Views.About.txtLicensee": "LİSANS SAHİBİ", "Common.Views.About.txtLicensee": "LİSANS SAHİBİ",
@ -134,9 +137,10 @@
"Common.Views.ExternalMergeEditor.textClose": "Close", "Common.Views.ExternalMergeEditor.textClose": "Close",
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
"Common.Views.Header.openNewTabText": "Open in New Tab",
"Common.Views.Header.textBack": "Dökümanlara Git", "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.cancelButtonText": "İptal Et",
"Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM", "Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM",
"Common.Views.ImageFromUrlDialog.textUrl": "Resim URL'sini yapıştır:", "Common.Views.ImageFromUrlDialog.textUrl": "Resim URL'sini yapıştır:",
@ -154,6 +158,10 @@
"Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.okButtonText": "OK",
"Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options", "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.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes", "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes",
@ -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.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.applyChangesTextText": "Değişiklikler yükleniyor...",
"DE.Controllers.Main.applyChangesTitleText": "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.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.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın",
"DE.Controllers.Main.criticalErrorTitle": "Hata", "DE.Controllers.Main.criticalErrorTitle": "Hata",
@ -184,6 +191,7 @@
"DE.Controllers.Main.downloadMergeTitle": "Downloading", "DE.Controllers.Main.downloadMergeTitle": "Downloading",
"DE.Controllers.Main.downloadTextText": "Döküman yükleniyor...", "DE.Controllers.Main.downloadTextText": "Döküman yükleniyor...",
"DE.Controllers.Main.downloadTitleText": "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.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.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.", "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.errorMailMergeLoadFile": "Loading failed",
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.",
"DE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız.", "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.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.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecektir.",
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "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.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.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.loadFontsTextText": "Veri yükleniyor...",
"DE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", "DE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor",
@ -213,6 +227,7 @@
"DE.Controllers.Main.mailMergeLoadFileText": "Loading Data Source...", "DE.Controllers.Main.mailMergeLoadFileText": "Loading Data Source...",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Loading Data Source", "DE.Controllers.Main.mailMergeLoadFileTitle": "Loading Data Source",
"DE.Controllers.Main.notcriticalErrorTitle": "Dikkat", "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.openTextText": "Döküman Açılıyor",
"DE.Controllers.Main.openTitleText": "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...", "DE.Controllers.Main.printTextText": "Döküman yazdırılıyor...",
@ -220,6 +235,7 @@
"DE.Controllers.Main.reloadButtonText": "Sayfayı Yenile", "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.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.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.savePreparingText": "Kaydetmeye hazırlanıyor",
"DE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...", "DE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...",
"DE.Controllers.Main.saveTextText": "Döküman kaydediliyor...", "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.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.splitMaxRowsErrorText": "Satır sayısı %1'den az olmalıdır.",
"DE.Controllers.Main.textAnonymous": "Anonim", "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.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.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.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.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.titleUpdateVersion": "Versiyon değiştirildi",
"DE.Controllers.Main.txtArt": "Your text here", "DE.Controllers.Main.txtArt": "Your text here",
"DE.Controllers.Main.txtBasicShapes": "Temel Şekiller", "DE.Controllers.Main.txtBasicShapes": "Temel Şekiller",
@ -261,11 +281,14 @@
"DE.Controllers.Main.uploadImageTitleText": "Resim Yükleniyor", "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.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.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.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", "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.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.zoomText": "Zum {0}%", "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.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.notcriticalErrorTitle": "Warning",
"DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textAccent": "Accents",
"DE.Controllers.Toolbar.textBracket": "Brackets", "DE.Controllers.Toolbar.textBracket": "Brackets",
@ -633,11 +656,9 @@
"DE.Views.DocumentHolder.advancedText": "Gelişmiş Ayarlar", "DE.Views.DocumentHolder.advancedText": "Gelişmiş Ayarlar",
"DE.Views.DocumentHolder.alignmentText": "Hiza", "DE.Views.DocumentHolder.alignmentText": "Hiza",
"DE.Views.DocumentHolder.belowText": "Altında", "DE.Views.DocumentHolder.belowText": "Altında",
"DE.Views.DocumentHolder.bottomCellText": "Alta Hizala",
"DE.Views.DocumentHolder.breakBeforeText": "Şundan önce sayfa kesmesi:", "DE.Views.DocumentHolder.breakBeforeText": "Şundan önce sayfa kesmesi:",
"DE.Views.DocumentHolder.cellAlignText": "Hücre Dikey Hizalama", "DE.Views.DocumentHolder.cellAlignText": "Hücre Dikey Hizalama",
"DE.Views.DocumentHolder.cellText": "Hücre", "DE.Views.DocumentHolder.cellText": "Hücre",
"DE.Views.DocumentHolder.centerCellText": "Ortaya Hizala",
"DE.Views.DocumentHolder.centerText": "Orta", "DE.Views.DocumentHolder.centerText": "Orta",
"DE.Views.DocumentHolder.chartText": "Grafik Gelişmiş Ayarlar", "DE.Views.DocumentHolder.chartText": "Grafik Gelişmiş Ayarlar",
"DE.Views.DocumentHolder.columnText": "Sütun", "DE.Views.DocumentHolder.columnText": "Sütun",
@ -711,7 +732,6 @@
"DE.Views.DocumentHolder.textShapeAlignTop": "Üste Hizala", "DE.Views.DocumentHolder.textShapeAlignTop": "Üste Hizala",
"DE.Views.DocumentHolder.textWrap": "Kaydırma Stili", "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.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.txtAddBottom": "Add bottom border",
"DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar", "DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar",
"DE.Views.DocumentHolder.txtAddHor": "Add horizontal line", "DE.Views.DocumentHolder.txtAddHor": "Add horizontal line",
@ -831,8 +851,6 @@
"DE.Views.DropcapSettingsAdvanced.textRelative": "Şununla ilgili:", "DE.Views.DropcapSettingsAdvanced.textRelative": "Şununla ilgili:",
"DE.Views.DropcapSettingsAdvanced.textRight": "Sağ", "DE.Views.DropcapSettingsAdvanced.textRight": "Sağ",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Sıralarda yükseklik", "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.textTitle": "Büyük Harf - Gelişmiş Ayarlar",
"DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Çerçeve - Gelişmiş Ayarlar", "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Çerçeve - Gelişmiş Ayarlar",
"DE.Views.DropcapSettingsAdvanced.textTop": "Üst", "DE.Views.DropcapSettingsAdvanced.textTop": "Üst",
@ -841,6 +859,7 @@
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Yazı Tipi İsmi", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Yazı Tipi İsmi",
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sınır yok", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sınır yok",
"DE.Views.FileMenu.btnBackCaption": "Dökümanlara Git", "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.btnCreateNewCaption": "Yeni oluştur",
"DE.Views.FileMenu.btnDownloadCaption": "Farklı Yükle...", "DE.Views.FileMenu.btnDownloadCaption": "Farklı Yükle...",
"DE.Views.FileMenu.btnHelpCaption": "Yardım...", "DE.Views.FileMenu.btnHelpCaption": "Yardım...",
@ -848,6 +867,7 @@
"DE.Views.FileMenu.btnInfoCaption": "Döküman Bilgisi...", "DE.Views.FileMenu.btnInfoCaption": "Döküman Bilgisi...",
"DE.Views.FileMenu.btnPrintCaption": "Yazdır", "DE.Views.FileMenu.btnPrintCaption": "Yazdır",
"DE.Views.FileMenu.btnRecentFilesCaption": "En sonunucuyu aç...", "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.btnReturnCaption": "Dökümana Geri Dön",
"DE.Views.FileMenu.btnRightsCaption": "Access Rights...", "DE.Views.FileMenu.btnRightsCaption": "Access Rights...",
"DE.Views.FileMenu.btnSaveAsCaption": "Save as", "DE.Views.FileMenu.btnSaveAsCaption": "Save as",
@ -877,6 +897,7 @@
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Uygula", "DE.Views.FileMenuPanels.Settings.okButtonText": "Uygula",
"DE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", "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.strAutosave": "Otomatik kaydetmeyi aç",
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", "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.text5Minutes": "Her 5 Dakika",
"DE.Views.FileMenuPanels.Settings.text60Minutes": "Her Saat", "DE.Views.FileMenuPanels.Settings.text60Minutes": "Her Saat",
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment Guides", "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.textAutoSave": "Otomatik Kaydetme",
"DE.Views.FileMenuPanels.Settings.textDisabled": "Devre Dışı", "DE.Views.FileMenuPanels.Settings.textDisabled": "Devre Dışı",
"DE.Views.FileMenuPanels.Settings.textMinute": "Her Dakika", "DE.Views.FileMenuPanels.Settings.textMinute": "Her Dakika",
"DE.Views.FileMenuPanels.Settings.txtAll": "Tümünü göster", "DE.Views.FileMenuPanels.Settings.txtAll": "Tümünü göster",
"DE.Views.FileMenuPanels.Settings.txtCm": "Santimetre", "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.txtInput": "Girdiyi Değiştir",
"DE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster", "DE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster",
"DE.Views.FileMenuPanels.Settings.txtLiveComment": "Canlı Yorum", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Canlı Yorum",
@ -933,6 +956,7 @@
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "Bu alan gereklidir", "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.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.textAdvanced": "Gelişmiş ayarları göster",
"DE.Views.ImageSettings.textEditObject": "Nesneyi düzenle",
"DE.Views.ImageSettings.textFromFile": "Dosyadan", "DE.Views.ImageSettings.textFromFile": "Dosyadan",
"DE.Views.ImageSettings.textFromUrl": "URL'den", "DE.Views.ImageSettings.textFromUrl": "URL'den",
"DE.Views.ImageSettings.textHeight": "Yükseklik", "DE.Views.ImageSettings.textHeight": "Yükseklik",
@ -951,8 +975,10 @@
"DE.Views.ImageSettingsAdvanced.cancelButtonText": "İptal Et", "DE.Views.ImageSettingsAdvanced.cancelButtonText": "İptal Et",
"DE.Views.ImageSettingsAdvanced.okButtonText": "TAMAM", "DE.Views.ImageSettingsAdvanced.okButtonText": "TAMAM",
"DE.Views.ImageSettingsAdvanced.strMargins": "Metin Dolgulama", "DE.Views.ImageSettingsAdvanced.strMargins": "Metin Dolgulama",
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Mutlak",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Hiza", "DE.Views.ImageSettingsAdvanced.textAlignment": "Hiza",
"DE.Views.ImageSettingsAdvanced.textArrows": "Oklar", "DE.Views.ImageSettingsAdvanced.textArrows": "Oklar",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "En-boy oranını kilitle",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Başlama Boyutu", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Başlama Boyutu",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Başlama Stili", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Başlama Stili",
"DE.Views.ImageSettingsAdvanced.textBelow": "altında", "DE.Views.ImageSettingsAdvanced.textBelow": "altında",
@ -985,7 +1011,9 @@
"DE.Views.ImageSettingsAdvanced.textPage": "Sayfa", "DE.Views.ImageSettingsAdvanced.textPage": "Sayfa",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraf", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraf",
"DE.Views.ImageSettingsAdvanced.textPosition": "Pozisyon", "DE.Views.ImageSettingsAdvanced.textPosition": "Pozisyon",
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Göreceli konum",
"DE.Views.ImageSettingsAdvanced.textRelative": "şununla ilgili:", "DE.Views.ImageSettingsAdvanced.textRelative": "şununla ilgili:",
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Göreceli",
"DE.Views.ImageSettingsAdvanced.textRight": "Sağ", "DE.Views.ImageSettingsAdvanced.textRight": "Sağ",
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Sağ Kenar Boşluğu", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Sağ Kenar Boşluğu",
"DE.Views.ImageSettingsAdvanced.textRightOf": "sağına", "DE.Views.ImageSettingsAdvanced.textRightOf": "sağına",
@ -1011,7 +1039,7 @@
"DE.Views.LeftMenu.tipAbout": "Hakkında", "DE.Views.LeftMenu.tipAbout": "Hakkında",
"DE.Views.LeftMenu.tipChat": "Sohbet", "DE.Views.LeftMenu.tipChat": "Sohbet",
"DE.Views.LeftMenu.tipComments": "Yorumlar", "DE.Views.LeftMenu.tipComments": "Yorumlar",
"DE.Views.LeftMenu.tipFile": "Dosya", "DE.Views.LeftMenu.tipPlugins": "Plugin",
"DE.Views.LeftMenu.tipSearch": "Ara", "DE.Views.LeftMenu.tipSearch": "Ara",
"DE.Views.LeftMenu.tipSupport": "Geri Bildirim & Destek", "DE.Views.LeftMenu.tipSupport": "Geri Bildirim & Destek",
"DE.Views.LeftMenu.tipTitles": "Başlıklar", "DE.Views.LeftMenu.tipTitles": "Başlıklar",
@ -1067,6 +1095,17 @@
"DE.Views.MailMergeSettings.txtPrev": "To previous record", "DE.Views.MailMergeSettings.txtPrev": "To previous record",
"DE.Views.MailMergeSettings.txtUntitled": "Untitled", "DE.Views.MailMergeSettings.txtUntitled": "Untitled",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", "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.cancelButtonText": "Cancel",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
"DE.Views.PageMarginsDialog.okButtonText": "Ok", "DE.Views.PageMarginsDialog.okButtonText": "Ok",
@ -1094,8 +1133,6 @@
"DE.Views.ParagraphSettings.textBackColor": "Arka plan rengi", "DE.Views.ParagraphSettings.textBackColor": "Arka plan rengi",
"DE.Views.ParagraphSettings.textExact": "Tam olarak", "DE.Views.ParagraphSettings.textExact": "Tam olarak",
"DE.Views.ParagraphSettings.textNewColor": "Yeni Özel Renk Ekle", "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.ParagraphSettings.txtAutoText": "Otomatik",
"DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "İptal Et", "DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "İptal Et",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Belirtilen sekmeler bu alanda görünecektir", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Belirtilen sekmeler bu alanda görünecektir",
@ -1136,12 +1173,10 @@
"DE.Views.ParagraphSettingsAdvanced.textRight": "Sağ", "DE.Views.ParagraphSettingsAdvanced.textRight": "Sağ",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Belirt", "DE.Views.ParagraphSettingsAdvanced.textSet": "Belirt",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Aralık", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Aralık",
"DE.Views.ParagraphSettingsAdvanced.textStandartColors": "Standart Renkler",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Orta", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Orta",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Sol", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Sol",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Sekme Pozisyonu", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Sekme Pozisyonu",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "Sağ", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Sağ",
"DE.Views.ParagraphSettingsAdvanced.textThemeColors": "Tema Renkleri",
"DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Gelişmiş Ayarlar", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Gelişmiş Ayarlar",
"DE.Views.ParagraphSettingsAdvanced.textTop": "Üst", "DE.Views.ParagraphSettingsAdvanced.textTop": "Üst",
"DE.Views.ParagraphSettingsAdvanced.tipAll": "Dış Sınır ve Tüm İç Satırları Belirle", "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.textPatternFill": "Desen",
"DE.Views.ShapeSettings.textRadial": "Radyal", "DE.Views.ShapeSettings.textRadial": "Radyal",
"DE.Views.ShapeSettings.textSelectTexture": "Seç", "DE.Views.ShapeSettings.textSelectTexture": "Seç",
"DE.Views.ShapeSettings.textStandartColors": "Standart Renkler",
"DE.Views.ShapeSettings.textStretch": "Esnet", "DE.Views.ShapeSettings.textStretch": "Esnet",
"DE.Views.ShapeSettings.textStyle": "Stil", "DE.Views.ShapeSettings.textStyle": "Stil",
"DE.Views.ShapeSettings.textTexture": "Doldurma deseninden", "DE.Views.ShapeSettings.textTexture": "Doldurma deseninden",
"DE.Views.ShapeSettings.textThemeColors": "Tema Renkleri",
"DE.Views.ShapeSettings.textTile": "Desen", "DE.Views.ShapeSettings.textTile": "Desen",
"DE.Views.ShapeSettings.textWrap": "Kaydırma Stili", "DE.Views.ShapeSettings.textWrap": "Kaydırma Stili",
"DE.Views.ShapeSettings.txtBehind": "Arkada", "DE.Views.ShapeSettings.txtBehind": "Arkada",
@ -1213,27 +1246,13 @@
"DE.Views.ShapeSettings.txtTopAndBottom": "Üst ve alt", "DE.Views.ShapeSettings.txtTopAndBottom": "Üst ve alt",
"DE.Views.ShapeSettings.txtWood": "Ahşap", "DE.Views.ShapeSettings.txtWood": "Ahşap",
"DE.Views.Statusbar.goToPageText": "Sayfaya Git", "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.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.tipFitPage": "Sayfaya Sığdır",
"DE.Views.Statusbar.tipFitWidth": "Genişliğe 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.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.tipZoomFactor": "Büyütme",
"DE.Views.Statusbar.tipZoomIn": "Yakınlaştır", "DE.Views.Statusbar.tipZoomIn": "Yakınlaştır",
"DE.Views.Statusbar.tipZoomOut": "Uzaklaş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.Statusbar.txtPageNumInvalid": "Sayı numarası geçersiz",
"DE.Views.StyleTitleDialog.textHeader": "Create New Style", "DE.Views.StyleTitleDialog.textHeader": "Create New Style",
"DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style",
@ -1271,11 +1290,9 @@
"DE.Views.TableSettings.textOK": "TAMAM", "DE.Views.TableSettings.textOK": "TAMAM",
"DE.Views.TableSettings.textRows": "Satırlar", "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.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.textTemplate": "Şablondan Seç",
"DE.Views.TableSettings.textThemeColors": "Tema Renkleri",
"DE.Views.TableSettings.textTotal": "Toplam", "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.textWrapNoneTooltip": "Satıriçi tablo",
"DE.Views.TableSettings.textWrapParallelTooltip": "Yayılma tablası", "DE.Views.TableSettings.textWrapParallelTooltip": "Yayılma tablası",
"DE.Views.TableSettings.tipAll": "Dış Sınır ve Tüm İç Satırları Belirle", "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.textBordersBackgroung": "Sınırlar & Arka Plan",
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Sınır Boyutu", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Sınır Boyutu",
"DE.Views.TableSettingsAdvanced.textBottom": "Alt", "DE.Views.TableSettingsAdvanced.textBottom": "Alt",
"DE.Views.TableSettingsAdvanced.textCellOptions": "Hücre seçenekleri",
"DE.Views.TableSettingsAdvanced.textCellProps": "Hücre Özellikleri", "DE.Views.TableSettingsAdvanced.textCellProps": "Hücre Özellikleri",
"DE.Views.TableSettingsAdvanced.textCellSize": "Hücre boyutu",
"DE.Views.TableSettingsAdvanced.textCenter": "Orta", "DE.Views.TableSettingsAdvanced.textCenter": "Orta",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Orta", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Orta",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Varsayılan kenar boşluklarını kullan", "DE.Views.TableSettingsAdvanced.textCheckMargins": "Varsayılan kenar boşluklarını kullan",
@ -1315,6 +1334,7 @@
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Sol", "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Sol",
"DE.Views.TableSettingsAdvanced.textMargin": "Kenar boşluğu", "DE.Views.TableSettingsAdvanced.textMargin": "Kenar boşluğu",
"DE.Views.TableSettingsAdvanced.textMargins": "Hücre 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.textMove": "Objeyi metinle taşı",
"DE.Views.TableSettingsAdvanced.textNewColor": "Yeni Özel Renk Ekle", "DE.Views.TableSettingsAdvanced.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "Sadece seçilen hücreler için", "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.textOverlap": "Çakışmaya izin ver",
"DE.Views.TableSettingsAdvanced.textPage": "Sayfa", "DE.Views.TableSettingsAdvanced.textPage": "Sayfa",
"DE.Views.TableSettingsAdvanced.textPosition": "Pozisyon", "DE.Views.TableSettingsAdvanced.textPosition": "Pozisyon",
"DE.Views.TableSettingsAdvanced.textPrefWidth": "Tercih edilen genişlik",
"DE.Views.TableSettingsAdvanced.textPreview": "Önizleme", "DE.Views.TableSettingsAdvanced.textPreview": "Önizleme",
"DE.Views.TableSettingsAdvanced.textRelative": "şununla ilgili:", "DE.Views.TableSettingsAdvanced.textRelative": "şununla ilgili:",
"DE.Views.TableSettingsAdvanced.textRight": "Sağ", "DE.Views.TableSettingsAdvanced.textRight": "Sağ",
"DE.Views.TableSettingsAdvanced.textRightOf": "sağına", "DE.Views.TableSettingsAdvanced.textRightOf": "sağına",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "Sağ", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Sağ",
"DE.Views.TableSettingsAdvanced.textStandartColors": "Standart Renkler",
"DE.Views.TableSettingsAdvanced.textTableBackColor": "Tablo Arka planı", "DE.Views.TableSettingsAdvanced.textTableBackColor": "Tablo Arka planı",
"DE.Views.TableSettingsAdvanced.textThemeColors": "Tema Renkleri",
"DE.Views.TableSettingsAdvanced.textTitle": "Tablo - Gelişmiş Ayarlar", "DE.Views.TableSettingsAdvanced.textTitle": "Tablo - Gelişmiş Ayarlar",
"DE.Views.TableSettingsAdvanced.textTop": "Üst", "DE.Views.TableSettingsAdvanced.textTop": "Üst",
"DE.Views.TableSettingsAdvanced.textVertical": "Dikey", "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.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.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.txtNoBorders": "Sınır yok",
"DE.Views.TableSettingsAdvanced.txtPercent": "Yüzde",
"DE.Views.TextArtSettings.strColor": "Color", "DE.Views.TextArtSettings.strColor": "Color",
"DE.Views.TextArtSettings.strFill": "Fill", "DE.Views.TextArtSettings.strFill": "Fill",
"DE.Views.TextArtSettings.strSize": "Size", "DE.Views.TextArtSettings.strSize": "Size",
@ -1364,13 +1384,12 @@
"DE.Views.TextArtSettings.textNoFill": "No Fill", "DE.Views.TextArtSettings.textNoFill": "No Fill",
"DE.Views.TextArtSettings.textRadial": "Radial", "DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select", "DE.Views.TextArtSettings.textSelectTexture": "Select",
"DE.Views.TextArtSettings.textStandartColors": "Standard Colors",
"DE.Views.TextArtSettings.textStyle": "Style", "DE.Views.TextArtSettings.textStyle": "Style",
"DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTemplate": "Template",
"DE.Views.TextArtSettings.textThemeColors": "Theme Colors",
"DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.textTransform": "Transform",
"DE.Views.TextArtSettings.txtNoBorders": "No Line", "DE.Views.TextArtSettings.txtNoBorders": "No Line",
"DE.Views.Toolbar.mniCustomTable": "Özel Tablo Ekle", "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.mniEditDropCap": "Büyük Harf Ayarları",
"DE.Views.Toolbar.mniEditFooter": "Altlığı Düzenle", "DE.Views.Toolbar.mniEditFooter": "Altlığı Düzenle",
"DE.Views.Toolbar.mniEditHeader": "Üstlüğü Düzenle", "DE.Views.Toolbar.mniEditHeader": "Üstlüğü Düzenle",
@ -1378,6 +1397,7 @@
"DE.Views.Toolbar.mniHiddenChars": "Basılmaz Karakterler", "DE.Views.Toolbar.mniHiddenChars": "Basılmaz Karakterler",
"DE.Views.Toolbar.mniImageFromFile": "Dosyadan resim", "DE.Views.Toolbar.mniImageFromFile": "Dosyadan resim",
"DE.Views.Toolbar.mniImageFromUrl": "URL'den resim", "DE.Views.Toolbar.mniImageFromUrl": "URL'den resim",
"DE.Views.Toolbar.mniInsFootnote": "Dipnot ekle",
"DE.Views.Toolbar.strMenuNoFill": "Dolgu Yok", "DE.Views.Toolbar.strMenuNoFill": "Dolgu Yok",
"DE.Views.Toolbar.textArea": "Bölge Grafiği", "DE.Views.Toolbar.textArea": "Bölge Grafiği",
"DE.Views.Toolbar.textAutoColor": "Otomatik", "DE.Views.Toolbar.textAutoColor": "Otomatik",
@ -1395,24 +1415,26 @@
"DE.Views.Toolbar.textEvenPage": "Çift Sayfa", "DE.Views.Toolbar.textEvenPage": "Çift Sayfa",
"DE.Views.Toolbar.textFitPage": "Sayfaya Sığdır", "DE.Views.Toolbar.textFitPage": "Sayfaya Sığdır",
"DE.Views.Toolbar.textFitWidth": "Genişliğe 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.textHideLines": "Cetvelleri Gizle",
"DE.Views.Toolbar.textHideStatusBar": "Durum Çubuğunu Gizle", "DE.Views.Toolbar.textHideStatusBar": "Durum Çubuğunu Gizle",
"DE.Views.Toolbar.textHideTitleBar": "Başlık Çubuğunu Gizle", "DE.Views.Toolbar.textHideTitleBar": "Başlık Çubuğunu Gizle",
"DE.Views.Toolbar.textInMargin": "Kenar boşluğunda", "DE.Views.Toolbar.textInMargin": "Kenar boşluğunda",
"DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break", "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.textInsertPageNumber": "Sayfa numarası ekle",
"DE.Views.Toolbar.textInsPageBreak": "Sayfa Kesmesi Ekle", "DE.Views.Toolbar.textInsPageBreak": "Sayfa Kesmesi Ekle",
"DE.Views.Toolbar.textInsSectionBreak": "Bölüm 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.textInText": "Metinde",
"DE.Views.Toolbar.textItalic": "İtalik", "DE.Views.Toolbar.textItalic": "İtalik",
"DE.Views.Toolbar.textLandscape": "Yatay",
"DE.Views.Toolbar.textLeft": "Left: ", "DE.Views.Toolbar.textLeft": "Left: ",
"DE.Views.Toolbar.textLine": "Çizgi grafiği", "DE.Views.Toolbar.textLine": "Çizgi grafiği",
"DE.Views.Toolbar.textMarginsLast": "Last Custom", "DE.Views.Toolbar.textMarginsLast": "Last Custom",
"DE.Views.Toolbar.textMarginsModerate": "Moderate", "DE.Views.Toolbar.textMarginsModerate": "Moderate",
"DE.Views.Toolbar.textMarginsNarrow": "Narrow", "DE.Views.Toolbar.textMarginsNarrow": "Narrow",
"DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsNormal": "Normal",
"DE.Views.Toolbar.textMarginsUsNormal": "US Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide", "DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textNewColor": "Yeni Özel Renk Ekle", "DE.Views.Toolbar.textNewColor": "Yeni Özel Renk Ekle",
"DE.Views.Toolbar.textNextPage": "Sonraki Sayfa", "DE.Views.Toolbar.textNextPage": "Sonraki Sayfa",
@ -1422,8 +1444,8 @@
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size", "DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
"DE.Views.Toolbar.textPie": "Dilim grafik", "DE.Views.Toolbar.textPie": "Dilim grafik",
"DE.Views.Toolbar.textPoint": "Nokta grafiği", "DE.Views.Toolbar.textPoint": "Nokta grafiği",
"DE.Views.Toolbar.textPortrait": "Dikey",
"DE.Views.Toolbar.textRight": "Right: ", "DE.Views.Toolbar.textRight": "Right: ",
"DE.Views.Toolbar.textStandartColors": "Standart Renkler",
"DE.Views.Toolbar.textStock": "Stok Grafiği", "DE.Views.Toolbar.textStock": "Stok Grafiği",
"DE.Views.Toolbar.textStrikeout": "Üstü çizili", "DE.Views.Toolbar.textStrikeout": "Üstü çizili",
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style", "DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
@ -1434,7 +1456,6 @@
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
"DE.Views.Toolbar.textSubscript": "Altsimge", "DE.Views.Toolbar.textSubscript": "Altsimge",
"DE.Views.Toolbar.textSuperscript": "Üstsimge", "DE.Views.Toolbar.textSuperscript": "Üstsimge",
"DE.Views.Toolbar.textThemeColors": "Tema Renkleri",
"DE.Views.Toolbar.textTitleError": "Hata", "DE.Views.Toolbar.textTitleError": "Hata",
"DE.Views.Toolbar.textToCurrent": "Mevcut pozisyona", "DE.Views.Toolbar.textToCurrent": "Mevcut pozisyona",
"DE.Views.Toolbar.textTop": "Top: ", "DE.Views.Toolbar.textTop": "Top: ",
@ -1474,9 +1495,8 @@
"DE.Views.Toolbar.tipMailRecepients": "Mail Merge", "DE.Views.Toolbar.tipMailRecepients": "Mail Merge",
"DE.Views.Toolbar.tipMarkers": "İmler", "DE.Views.Toolbar.tipMarkers": "İmler",
"DE.Views.Toolbar.tipMultilevels": "Çerçeve", "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.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.tipPageBreak": "Sayfa yada Bölüm Kesmesi Ekle",
"DE.Views.Toolbar.tipPageMargins": "Page Margins", "DE.Views.Toolbar.tipPageMargins": "Page Margins",
"DE.Views.Toolbar.tipPageOrient": "Sayfa Orientasyonu", "DE.Views.Toolbar.tipPageOrient": "Sayfa Orientasyonu",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 53 KiB

View file

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

View file

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

View file

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

View file

@ -1,9 +1,7 @@
<?xml version="1.0" encoding="utf-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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<style type="text/css"> <polygon points="18.576,55 5.153,31.75 18.576,8.5 45.424,8.5 58.848,31.75 45.424,55 "/>
.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"/>
</svg> </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"?> <?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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<g> <path d="M32.5,55.5l-23-23.3L32.5,9v13H56v20H32.5V55.5z"/>
<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>
</svg> </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"?> <?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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<g id="XMLID_3_"> <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
<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 "/> 11.75,53.25 "/>
</g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 506 B

After

Width:  |  Height:  |  Size: 596 B

View file

@ -530,6 +530,7 @@ define([
onPluginOpen: function(panel, type, action) { onPluginOpen: function(panel, type, action) {
if ( type == 'onboard' ) { if ( type == 'onboard' ) {
if ( action == 'open' ) { if ( action == 'open' ) {
this.leftMenu.close();
this.leftMenu.btnThumbs.toggle(false, false); this.leftMenu.btnThumbs.toggle(false, false);
this.leftMenu.panelPlugins.show(); this.leftMenu.panelPlugins.show();
this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}}); this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}});

View file

@ -160,12 +160,14 @@ define([
isResized = false; isResized = false;
var reporterObject = (presenter) ? PE.getController('Main').document : null; var reporterObject = (presenter) ? PE.getController('Main').document : null;
if (reporterObject) if (reporterObject) {
reporterObject.translations = { reporterObject.translations = {
reset: me.previewPanel.txtReset, reset: me.previewPanel.txtReset,
endSlideshow: me.previewPanel.txtEndSlideshow, endSlideshow: me.previewPanel.txtEndSlideshow,
slideOf: me.previewPanel.slideIndexText slideOf: me.previewPanel.slideIndexText
}; };
reporterObject.token = me.api.asc_getSessionToken();
}
if (this.previewPanel && !this.previewPanel.isVisible() && this.api) { if (this.previewPanel && !this.previewPanel.isVisible() && this.api) {
this.previewPanel.show(); this.previewPanel.show();

View file

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

View file

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

View file

@ -116,10 +116,11 @@
"Common.Views.OpenDialog.txtTitle": "Choose %1 options", "Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Protected File", "Common.Views.OpenDialog.txtTitleProtected": "Protected File",
"Common.Views.PluginDlg.textLoading": "Loading", "Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Loading", "Common.Views.Plugins.textLoading": "Loading",
"Common.Views.Plugins.textStart": "Start", "Common.Views.Plugins.textStart": "Start",
"Common.Views.Plugins.groupCaption": "Add-ons", "Common.Views.Plugins.textStop": "Stop",
"Common.Views.RenameDialog.cancelButtonText": "Cancel", "Common.Views.RenameDialog.cancelButtonText": "Cancel",
"Common.Views.RenameDialog.okButtonText": "Ok", "Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "File name", "Common.Views.RenameDialog.textName": "File name",
@ -789,6 +790,7 @@
"PE.Views.DocumentPreview.goToSlideText": "Go to Slide", "PE.Views.DocumentPreview.goToSlideText": "Go to Slide",
"PE.Views.DocumentPreview.slideIndexText": "Slide {0} of {1}", "PE.Views.DocumentPreview.slideIndexText": "Slide {0} of {1}",
"PE.Views.DocumentPreview.txtClose": "Close Slideshow", "PE.Views.DocumentPreview.txtClose": "Close Slideshow",
"PE.Views.DocumentPreview.txtEndSlideshow": "End slideshow",
"PE.Views.DocumentPreview.txtExitFullScreen": "Exit Full Screen", "PE.Views.DocumentPreview.txtExitFullScreen": "Exit Full Screen",
"PE.Views.DocumentPreview.txtFinalMessage": "The end of slide preview. Click to exit.", "PE.Views.DocumentPreview.txtFinalMessage": "The end of slide preview. Click to exit.",
"PE.Views.DocumentPreview.txtFullScreen": "Full Screen", "PE.Views.DocumentPreview.txtFullScreen": "Full Screen",
@ -798,7 +800,6 @@
"PE.Views.DocumentPreview.txtPlay": "Start Presentation", "PE.Views.DocumentPreview.txtPlay": "Start Presentation",
"PE.Views.DocumentPreview.txtPrev": "Previous Slide", "PE.Views.DocumentPreview.txtPrev": "Previous Slide",
"PE.Views.DocumentPreview.txtReset": "Reset", "PE.Views.DocumentPreview.txtReset": "Reset",
"PE.Views.DocumentPreview.txtEndSlideshow": "End slideshow",
"PE.Views.FileMenu.btnAboutCaption": "About", "PE.Views.FileMenu.btnAboutCaption": "About",
"PE.Views.FileMenu.btnBackCaption": "Go to Documents", "PE.Views.FileMenu.btnBackCaption": "Go to Documents",
"PE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "PE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
@ -1246,6 +1247,7 @@
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus", "PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Wood", "PE.Views.TextArtSettings.txtWood": "Wood",
"PE.Views.Toolbar.capAddSlide": "Add Slide", "PE.Views.Toolbar.capAddSlide": "Add Slide",
"PE.Views.Toolbar.capBtnComment": "Comment",
"PE.Views.Toolbar.capInsertChart": "Chart", "PE.Views.Toolbar.capInsertChart": "Chart",
"PE.Views.Toolbar.capInsertEquation": "Equation", "PE.Views.Toolbar.capInsertEquation": "Equation",
"PE.Views.Toolbar.capInsertHyperlink": "Hyperlink", "PE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
@ -1285,8 +1287,6 @@
"PE.Views.Toolbar.textHideLines": "Hide Rulers", "PE.Views.Toolbar.textHideLines": "Hide Rulers",
"PE.Views.Toolbar.textHideStatusBar": "Hide Status Bar", "PE.Views.Toolbar.textHideStatusBar": "Hide Status Bar",
"PE.Views.Toolbar.textHideTitleBar": "Hide Title 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.textItalic": "Italic",
"PE.Views.Toolbar.textLine": "Line", "PE.Views.Toolbar.textLine": "Line",
"PE.Views.Toolbar.textNewColor": "Custom Color", "PE.Views.Toolbar.textNewColor": "Custom Color",
@ -1325,7 +1325,7 @@
"PE.Views.Toolbar.tipCopyStyle": "Copy Style", "PE.Views.Toolbar.tipCopyStyle": "Copy Style",
"PE.Views.Toolbar.tipDecPrLeft": "Decrease Indent", "PE.Views.Toolbar.tipDecPrLeft": "Decrease Indent",
"PE.Views.Toolbar.tipFontColor": "Font color", "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.tipFontSize": "Font Size",
"PE.Views.Toolbar.tipHAligh": "Horizontal Align", "PE.Views.Toolbar.tipHAligh": "Horizontal Align",
"PE.Views.Toolbar.tipHideBars": "Hide Title bar & Status bar", "PE.Views.Toolbar.tipHideBars": "Hide Title bar & Status bar",

View file

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

View file

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

View file

@ -23,7 +23,7 @@
"Common.UI.SearchDialog.textTitle": "Hľadať", "Common.UI.SearchDialog.textTitle": "Hľadať",
"Common.UI.SearchDialog.textTitle2": "Hľadať", "Common.UI.SearchDialog.textTitle2": "Hľadať",
"Common.UI.SearchDialog.textWholeWords": "Len celé slová\n\n", "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.txtBtnReplace": "Nahradiť",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko", "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko",
"Common.UI.SynchronizeTip.textDontShow": "Neukazovať túto správu znova", "Common.UI.SynchronizeTip.textDontShow": "Neukazovať túto správu znova",
@ -68,8 +68,8 @@
"Common.Views.Comments.textResolve": "Vyriešiť", "Common.Views.Comments.textResolve": "Vyriešiť",
"Common.Views.Comments.textResolved": "Vyriešené", "Common.Views.Comments.textResolved": "Vyriešené",
"Common.Views.CopyWarningDialog.textDontShow": "Neukazovať túto správu znova", "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.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": "Kopírovať, vystrihnúť a prilepiť akcie", "Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť",
"Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie", "Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie",
"Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie", "Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie",
"Common.Views.CopyWarningDialog.textToPaste": "pre vloženie", "Common.Views.CopyWarningDialog.textToPaste": "pre vloženie",
@ -78,8 +78,18 @@
"Common.Views.ExternalDiagramEditor.textClose": "Zatvoriť", "Common.Views.ExternalDiagramEditor.textClose": "Zatvoriť",
"Common.Views.ExternalDiagramEditor.textSave": "Uložiť a Zavrieť", "Common.Views.ExternalDiagramEditor.textSave": "Uložiť a Zavrieť",
"Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu", "Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu",
"Common.Views.Header.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.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.Header.txtRename": "Premenovať",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -99,7 +109,7 @@
"Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu", "Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu",
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť", "Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
"Common.Views.OpenDialog.okButtonText": "OK", "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.txtPassword": "Heslo",
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
"Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor", "Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor",
@ -277,7 +287,7 @@
"PE.Controllers.Toolbar.textMatrix": "Matice", "PE.Controllers.Toolbar.textMatrix": "Matice",
"PE.Controllers.Toolbar.textOperator": "Operátory", "PE.Controllers.Toolbar.textOperator": "Operátory",
"PE.Controllers.Toolbar.textRadical": "Odmocniny", "PE.Controllers.Toolbar.textRadical": "Odmocniny",
"PE.Controllers.Toolbar.textScript": "Skripty", "PE.Controllers.Toolbar.textScript": "Mocniny",
"PE.Controllers.Toolbar.textSymbols": "Symboly", "PE.Controllers.Toolbar.textSymbols": "Symboly",
"PE.Controllers.Toolbar.textWarning": "Upozornenie", "PE.Controllers.Toolbar.textWarning": "Upozornenie",
"PE.Controllers.Toolbar.txtAccent_Accent": "Dĺžeň", "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_3": "Zložený objekt",
"PE.Controllers.Toolbar.txtBracket_Custom_4": "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_5": "Príklady prípadov\n\n",
"PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient\n\n", "PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient",
"PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient\n\n", "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient",
"PE.Controllers.Toolbar.txtBracket_Line": "Zátvorky", "PE.Controllers.Toolbar.txtBracket_Line": "Zátvorky",
"PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Zátvorka", "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Zátvorka",
"PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "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_Csch": "Funkcia hyperbolický kosekans",
"PE.Controllers.Toolbar.txtFunction_Custom_1": "Sínus theta ", "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sínus theta ",
"PE.Controllers.Toolbar.txtFunction_Custom_2": "Kosínus 2x", "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_Sec": "Funkcia sekans",
"PE.Controllers.Toolbar.txtFunction_Sech": "Funkcia hyperbolický sekans", "PE.Controllers.Toolbar.txtFunction_Sech": "Funkcia hyperbolický sekans",
"PE.Controllers.Toolbar.txtFunction_Sin": "Funkcia sínus", "PE.Controllers.Toolbar.txtFunction_Sin": "Funkcia sínus",
@ -446,9 +456,9 @@
"PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Zjednotenie", "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Zjednotenie",
"PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Zjednotenie", "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Zjednotenie",
"PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Príklad limitu", "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_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_Log": "Logaritmus",
"PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus", "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus",
"PE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", "PE.Controllers.Toolbar.txtLimitLog_Max": "Maximum",
@ -495,7 +505,7 @@
"PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Dvojité rovná sa", "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Dvojité rovná sa",
"PE.Controllers.Toolbar.txtOperator_MinusEquals": "Mínus rovná sa", "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Mínus rovná sa",
"PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus 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_1": "Odmocniny",
"PE.Controllers.Toolbar.txtRadicalCustom_2": "Odmocniny", "PE.Controllers.Toolbar.txtRadicalCustom_2": "Odmocniny",
"PE.Controllers.Toolbar.txtRadicalRoot_2": "Druhá odmocnina", "PE.Controllers.Toolbar.txtRadicalRoot_2": "Druhá odmocnina",
@ -635,8 +645,8 @@
"PE.Views.DocumentHolder.deleteRowText": "Odstrániť riadok", "PE.Views.DocumentHolder.deleteRowText": "Odstrániť riadok",
"PE.Views.DocumentHolder.deleteTableText": "Odstrániť tabuľku", "PE.Views.DocumentHolder.deleteTableText": "Odstrániť tabuľku",
"PE.Views.DocumentHolder.deleteText": "Vymazať", "PE.Views.DocumentHolder.deleteText": "Vymazať",
"PE.Views.DocumentHolder.direct270Text": "Otočiť text nahor\n", "PE.Views.DocumentHolder.direct270Text": "Otočiť text nahor",
"PE.Views.DocumentHolder.direct90Text": "Otočiť text nadol\n\n", "PE.Views.DocumentHolder.direct90Text": "Otočiť text nadol",
"PE.Views.DocumentHolder.directHText": "Vodorovný", "PE.Views.DocumentHolder.directHText": "Vodorovný",
"PE.Views.DocumentHolder.directionText": "Smer textu", "PE.Views.DocumentHolder.directionText": "Smer textu",
"PE.Views.DocumentHolder.editChartText": "Upravovať dáta", "PE.Views.DocumentHolder.editChartText": "Upravovať dáta",
@ -765,6 +775,7 @@
"PE.Views.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka", "PE.Views.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka",
"PE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu\n", "PE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu\n",
"PE.Views.DocumentHolder.txtSlide": "Snímka", "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.txtStretchBrackets": "Zložená zátvorka",
"PE.Views.DocumentHolder.txtTop": "Hore", "PE.Views.DocumentHolder.txtTop": "Hore",
"PE.Views.DocumentHolder.txtUnderbar": "Čiara pod textom", "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.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.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.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.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.strInputMode": "Zapnúť hieroglyfy\n\n",
"PE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase\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.txtAll": "Zobraziť všetko",
"PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Prispôsobiť snímke", "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.txtInch": "Palec (miera 2,54 cm)\n",
"PE.Views.FileMenuPanels.Settings.txtInput": "Alternatívny vstup\n\n", "PE.Views.FileMenuPanels.Settings.txtInput": "Alternatívny vstup\n\n",
"PE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný", "PE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný",
@ -856,7 +867,7 @@
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz",
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímok v tejto prezentácii\n\n", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímok v tejto prezentácii\n\n",
"PE.Views.HyperlinkSettingsDialog.textLinkType": "Typ odkazu", "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.textTitle": "Nastavenie hypertextového odkazu",
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n",
"PE.Views.HyperlinkSettingsDialog.txtFirst": "Prvá snímka", "PE.Views.HyperlinkSettingsDialog.txtFirst": "Prvá snímka",
@ -892,7 +903,6 @@
"PE.Views.LeftMenu.tipAbout": "O aplikácii", "PE.Views.LeftMenu.tipAbout": "O aplikácii",
"PE.Views.LeftMenu.tipChat": "Rozhovor", "PE.Views.LeftMenu.tipChat": "Rozhovor",
"PE.Views.LeftMenu.tipComments": "Komentáre", "PE.Views.LeftMenu.tipComments": "Komentáre",
"PE.Views.LeftMenu.tipFile": "Súbor",
"PE.Views.LeftMenu.tipPlugins": "Pluginy", "PE.Views.LeftMenu.tipPlugins": "Pluginy",
"PE.Views.LeftMenu.tipSearch": "Hľadať", "PE.Views.LeftMenu.tipSearch": "Hľadať",
"PE.Views.LeftMenu.tipSlides": "Snímky", "PE.Views.LeftMenu.tipSlides": "Snímky",
@ -908,7 +918,7 @@
"PE.Views.ParagraphSettings.textAtLeast": "Najmenej\n\n", "PE.Views.ParagraphSettings.textAtLeast": "Najmenej\n\n",
"PE.Views.ParagraphSettings.textAuto": "Násobky", "PE.Views.ParagraphSettings.textAuto": "Násobky",
"PE.Views.ParagraphSettings.textExact": "Presne", "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.cancelButtonText": "Zrušiť",
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli", "PE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli",
"PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", "PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK",
@ -944,13 +954,13 @@
"PE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky", "PE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky",
"PE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art", "PE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art",
"PE.Views.ShapeSettings.strBackground": "Farba pozadia", "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.strColor": "Farba",
"PE.Views.ShapeSettings.strFill": "Vyplniť", "PE.Views.ShapeSettings.strFill": "Vyplniť",
"PE.Views.ShapeSettings.strForeground": "Farba popredia", "PE.Views.ShapeSettings.strForeground": "Farba popredia",
"PE.Views.ShapeSettings.strPattern": "Vzor", "PE.Views.ShapeSettings.strPattern": "Vzor",
"PE.Views.ShapeSettings.strSize": "Veľkosť", "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.strTransparency": "Priehľadnosť",
"PE.Views.ShapeSettings.strType": "Typ", "PE.Views.ShapeSettings.strType": "Typ",
"PE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "PE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
@ -962,7 +972,7 @@
"PE.Views.ShapeSettings.textFromUrl": "Z URL adresy ", "PE.Views.ShapeSettings.textFromUrl": "Z URL adresy ",
"PE.Views.ShapeSettings.textGradient": "Prechod", "PE.Views.ShapeSettings.textGradient": "Prechod",
"PE.Views.ShapeSettings.textGradientFill": "Výplň prechodom", "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.textLinear": "Lineárny/čiarový",
"PE.Views.ShapeSettings.textNewColor": "Vlastná farba", "PE.Views.ShapeSettings.textNewColor": "Vlastná farba",
"PE.Views.ShapeSettings.textNoFill": "Bez výplne", "PE.Views.ShapeSettings.textNoFill": "Bez výplne",
@ -996,13 +1006,13 @@
"PE.Views.ShapeSettingsAdvanced.textArrows": "Šípky", "PE.Views.ShapeSettingsAdvanced.textArrows": "Šípky",
"PE.Views.ShapeSettingsAdvanced.textBeginSize": "Veľkosť začiatku", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Veľkosť začiatku",
"PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Štýl 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.textBottom": "Dole",
"PE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia\n", "PE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia\n",
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Počet stĺpcov", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Počet stĺpcov",
"PE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca",
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "Štýl 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.textHeight": "Výška",
"PE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia\n\n", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia\n\n",
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\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.textLineStyle": "Štýl čiary\n\n",
"PE.Views.ShapeSettingsAdvanced.textMiter": "Sklon", "PE.Views.ShapeSettingsAdvanced.textMiter": "Sklon",
"PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "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.textSize": "Veľkosť",
"PE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami\n\n", "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.textTitle": "Tvar - Pokročilé nastavenia",
"PE.Views.ShapeSettingsAdvanced.textTop": "Hore", "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.textWidth": "Šírka",
"PE.Views.ShapeSettingsAdvanced.txtNone": "Žiadny", "PE.Views.ShapeSettingsAdvanced.txtNone": "Žiadny",
"PE.Views.SlideSettings.strBackground": "Farba pozadia", "PE.Views.SlideSettings.strBackground": "Farba pozadia",
@ -1030,14 +1040,14 @@
"PE.Views.SlideSettings.strStartOnClick": "Začať kliknutím\n\n", "PE.Views.SlideSettings.strStartOnClick": "Začať kliknutím\n\n",
"PE.Views.SlideSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "PE.Views.SlideSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
"PE.Views.SlideSettings.textApplyAll": "Použiť na všetky snímky", "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.textBottom": "Dole",
"PE.Views.SlideSettings.textBottomLeft": "Dole vľavo", "PE.Views.SlideSettings.textBottomLeft": "Dole vľavo",
"PE.Views.SlideSettings.textBottomRight": "Dole vpravo", "PE.Views.SlideSettings.textBottomRight": "Dole vpravo",
"PE.Views.SlideSettings.textClock": "Hodiny", "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.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.textCover": "Zakryť",
"PE.Views.SlideSettings.textDirection": "Smer", "PE.Views.SlideSettings.textDirection": "Smer",
"PE.Views.SlideSettings.textEmptyPattern": "Bez vzoru", "PE.Views.SlideSettings.textEmptyPattern": "Bez vzoru",
@ -1046,9 +1056,9 @@
"PE.Views.SlideSettings.textFromUrl": "Z URL adresy ", "PE.Views.SlideSettings.textFromUrl": "Z URL adresy ",
"PE.Views.SlideSettings.textGradient": "Prechod", "PE.Views.SlideSettings.textGradient": "Prechod",
"PE.Views.SlideSettings.textGradientFill": "Výplň prechodom", "PE.Views.SlideSettings.textGradientFill": "Výplň prechodom",
"PE.Views.SlideSettings.textHorizontalIn": "Horizontálne dnu\n\n", "PE.Views.SlideSettings.textHorizontalIn": "Horizontálne dnu",
"PE.Views.SlideSettings.textHorizontalOut": "Horizontálne von\n\n", "PE.Views.SlideSettings.textHorizontalOut": "Horizontálne von",
"PE.Views.SlideSettings.textImageTexture": "Obrázok alebo textúra\n\n", "PE.Views.SlideSettings.textImageTexture": "Obrázok alebo textúra",
"PE.Views.SlideSettings.textLeft": "Vľavo", "PE.Views.SlideSettings.textLeft": "Vľavo",
"PE.Views.SlideSettings.textLinear": "Lineárny/čiarový", "PE.Views.SlideSettings.textLinear": "Lineárny/čiarový",
"PE.Views.SlideSettings.textNewColor": "Vlastná farba", "PE.Views.SlideSettings.textNewColor": "Vlastná farba",
@ -1072,7 +1082,7 @@
"PE.Views.SlideSettings.textTopLeft": "Hore vľavo", "PE.Views.SlideSettings.textTopLeft": "Hore vľavo",
"PE.Views.SlideSettings.textTopRight": "Hore vpravo", "PE.Views.SlideSettings.textTopRight": "Hore vpravo",
"PE.Views.SlideSettings.textUnCover": "Odkryť", "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.textVerticalOut": "Vertikálne von",
"PE.Views.SlideSettings.textWedge": "Konjunkcia", "PE.Views.SlideSettings.textWedge": "Konjunkcia",
"PE.Views.SlideSettings.textWipe": "Rozotrieť", "PE.Views.SlideSettings.textWipe": "Rozotrieť",
@ -1119,21 +1129,16 @@
"PE.Views.SlideSizeSettings.txtWidescreen2": "Širokouhlý (16:10)", "PE.Views.SlideSizeSettings.txtWidescreen2": "Širokouhlý (16:10)",
"PE.Views.Statusbar.goToPageText": "Prejsť na snímku", "PE.Views.Statusbar.goToPageText": "Prejsť na snímku",
"PE.Views.Statusbar.pageIndexText": "Snímka {0} z {1}", "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.tipFitPage": "Prispôsobiť snímke",
"PE.Views.Statusbar.tipFitWidth": "Prispôsobiť do formátu", "PE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku",
"PE.Views.Statusbar.tipMoreUsers": "a %1 užívateľov.",
"PE.Views.Statusbar.tipPreview": "Spustiť prezentáciu", "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.tipSetLang": "Nastaviť jazyk textu\n\n",
"PE.Views.Statusbar.tipSetSpelling": "Kontrola pravopisu", "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.tipZoomFactor": "Zväčšenie/zväčšenie veľkosti\n",
"PE.Views.Statusbar.tipZoomIn": "Priblížiť", "PE.Views.Statusbar.tipZoomIn": "Priblížiť",
"PE.Views.Statusbar.tipZoomOut": "Oddialiť", "PE.Views.Statusbar.tipZoomOut": "Oddialiť",
"PE.Views.Statusbar.txAccessRights": "Zmeniť prístupové práva",
"PE.Views.Statusbar.txtPageNumInvalid": "Neplatné číslo snímky", "PE.Views.Statusbar.txtPageNumInvalid": "Neplatné číslo snímky",
"PE.Views.TableSettings.deleteColumnText": "Odstrániť stĺpec", "PE.Views.TableSettings.deleteColumnText": "Odstrániť stĺpec",
"PE.Views.TableSettings.deleteRowText": "Odstrániť riadok", "PE.Views.TableSettings.deleteRowText": "Odstrániť riadok",
@ -1197,7 +1202,7 @@
"PE.Views.TextArtSettings.strForeground": "Farba popredia", "PE.Views.TextArtSettings.strForeground": "Farba popredia",
"PE.Views.TextArtSettings.strPattern": "Vzor", "PE.Views.TextArtSettings.strPattern": "Vzor",
"PE.Views.TextArtSettings.strSize": "Veľkosť", "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.strTransparency": "Priehľadnosť",
"PE.Views.TextArtSettings.strType": "Typ", "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", "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.textFromUrl": "Z URL adresy ",
"PE.Views.TextArtSettings.textGradient": "Prechod", "PE.Views.TextArtSettings.textGradient": "Prechod",
"PE.Views.TextArtSettings.textGradientFill": "Výplň prechodom", "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.textLinear": "Lineárny/čiarový",
"PE.Views.TextArtSettings.textNewColor": "Pridať novú vlastnú farbu", "PE.Views.TextArtSettings.textNewColor": "Pridať novú vlastnú farbu",
"PE.Views.TextArtSettings.textNoFill": "Bez výplne", "PE.Views.TextArtSettings.textNoFill": "Bez výplne",
@ -1233,6 +1238,17 @@
"PE.Views.TextArtSettings.txtNoBorders": "Bez čiary", "PE.Views.TextArtSettings.txtNoBorders": "Bez čiary",
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus", "PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Drevo", "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.mniCustomTable": "Vložiť vlastnú tabuľku",
"PE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", "PE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru",
"PE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", "PE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy",
@ -1258,12 +1274,10 @@
"PE.Views.Toolbar.textColumn": "Stĺpec", "PE.Views.Toolbar.textColumn": "Stĺpec",
"PE.Views.Toolbar.textCompactView": "Zobraziť kompaktnú lištu nástrojov", "PE.Views.Toolbar.textCompactView": "Zobraziť kompaktnú lištu nástrojov",
"PE.Views.Toolbar.textFitPage": "Prispôsobiť snímke", "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.textHideLines": "Skryť pravítka\n\n",
"PE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok", "PE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok",
"PE.Views.Toolbar.textHideTitleBar": "Skryť lištu nadpisu\n\n", "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.textItalic": "Kurzíva",
"PE.Views.Toolbar.textLine": "Čiara/líniový graf", "PE.Views.Toolbar.textLine": "Čiara/líniový graf",
"PE.Views.Toolbar.textNewColor": "Vlastná farba", "PE.Views.Toolbar.textNewColor": "Vlastná farba",
@ -1284,6 +1298,9 @@
"PE.Views.Toolbar.textSubscript": "Dolný index", "PE.Views.Toolbar.textSubscript": "Dolný index",
"PE.Views.Toolbar.textSuperscript": "Horný index", "PE.Views.Toolbar.textSuperscript": "Horný index",
"PE.Views.Toolbar.textSurface": "Povrch", "PE.Views.Toolbar.textSurface": "Povrch",
"PE.Views.Toolbar.textTabFile": "Súbor",
"PE.Views.Toolbar.textTabHome": "Hlavná stránka",
"PE.Views.Toolbar.textTabInsert": "Vložiť",
"PE.Views.Toolbar.textTitleError": "Chyba", "PE.Views.Toolbar.textTitleError": "Chyba",
"PE.Views.Toolbar.textUnderline": "Podčiarknuť", "PE.Views.Toolbar.textUnderline": "Podčiarknuť",
"PE.Views.Toolbar.textZoom": "Priblíženie", "PE.Views.Toolbar.textZoom": "Priblíženie",
@ -1307,14 +1324,12 @@
"PE.Views.Toolbar.tipInsertEquation": "Vložiť rovnicu", "PE.Views.Toolbar.tipInsertEquation": "Vložiť rovnicu",
"PE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz", "PE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz",
"PE.Views.Toolbar.tipInsertImage": "Vložiť obrázok", "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.tipInsertTable": "Vložiť tabuľku",
"PE.Views.Toolbar.tipInsertText": "Vložiť text", "PE.Views.Toolbar.tipInsertText": "Vložiť text",
"PE.Views.Toolbar.tipLineSpace": "Riadkovanie", "PE.Views.Toolbar.tipLineSpace": "Riadkovanie",
"PE.Views.Toolbar.tipMarkers": "Odrážky", "PE.Views.Toolbar.tipMarkers": "Odrážky",
"PE.Views.Toolbar.tipNewDocument": "Nová prezentácia",
"PE.Views.Toolbar.tipNumbers": "Číslovanie", "PE.Views.Toolbar.tipNumbers": "Číslovanie",
"PE.Views.Toolbar.tipOpenDocument": "Otvoriť prezentáciu",
"PE.Views.Toolbar.tipPaste": "Vložiť", "PE.Views.Toolbar.tipPaste": "Vložiť",
"PE.Views.Toolbar.tipPreview": "Spustiť prezentáciu", "PE.Views.Toolbar.tipPreview": "Spustiť prezentáciu",
"PE.Views.Toolbar.tipPrint": "Tlačiť", "PE.Views.Toolbar.tipPrint": "Tlačiť",
@ -1335,7 +1350,7 @@
"PE.Views.Toolbar.txtScheme10": "Medián", "PE.Views.Toolbar.txtScheme10": "Medián",
"PE.Views.Toolbar.txtScheme11": "Metro", "PE.Views.Toolbar.txtScheme11": "Metro",
"PE.Views.Toolbar.txtScheme12": "Modul", "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.txtScheme14": "Výklenok\n",
"PE.Views.Toolbar.txtScheme15": "Pôvod", "PE.Views.Toolbar.txtScheme15": "Pôvod",
"PE.Views.Toolbar.txtScheme16": "Papier", "PE.Views.Toolbar.txtScheme16": "Papier",

View file

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

View file

@ -1,9 +1,7 @@
<?xml version="1.0" encoding="utf-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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<style type="text/css"> <polygon points="18.576,55 5.153,31.75 18.576,8.5 45.424,8.5 58.848,31.75 45.424,55 "/>
.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"/>
</svg> </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"?> <?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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<g> <path d="M32.5,55.5l-23-23.3L32.5,9v13H56v20H32.5V55.5z"/>
<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>
</svg> </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"?> <?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" <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"> viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<g id="XMLID_3_"> <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
<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 "/> 11.75,53.25 "/>
</g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 506 B

After

Width:  |  Height:  |  Size: 596 B

View file

@ -322,6 +322,8 @@
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script> <script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
<script type="text/javascript" src="../../../vendor/underscore/underscore-min.js"></script> <script type="text/javascript" src="../../../vendor/underscore/underscore-min.js"></script>
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script> <script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
<script type="text/javascript" src="../../../vendor/jszip/jszip.min.js"></script>
<script type="text/javascript" src="../../../vendor/jszip-utils/jszip-utils.min.js"></script>
<script type="text/javascript" src="../sdk_dev_scripts.js"></script> <script type="text/javascript" src="../sdk_dev_scripts.js"></script>
<script> <script>

View file

@ -314,6 +314,8 @@
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script> <script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
<script type="text/javascript" src="../../../vendor/underscore/underscore-min.js"></script> <script type="text/javascript" src="../../../vendor/underscore/underscore-min.js"></script>
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script> <script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
<script type="text/javascript" src="../../../vendor/jszip/jszip.min.js"></script>
<script type="text/javascript" src="../../../vendor/jszip-utils/jszip-utils.min.js"></script>
<!--sdk--> <!--sdk-->
<link rel="stylesheet" type="text/css" href="../../../../sdkjs/cell/css/main.css"/> <link rel="stylesheet" type="text/css" href="../../../../sdkjs/cell/css/main.css"/>

View file

@ -53,7 +53,7 @@ define([
'Common.Views.Plugins': { 'Common.Views.Plugins': {
'plugin:open': _.bind(this.onPluginOpen, this) 'plugin:open': _.bind(this.onPluginOpen, this)
}, },
'Statusbar': { 'Common.Views.Header': {
'click:users': _.bind(this.clickStatusbarUsers, this) 'click:users': _.bind(this.clickStatusbarUsers, this)
}, },
'LeftMenu': { 'LeftMenu': {
@ -607,6 +607,13 @@ define([
this.api.asc_enableKeyEvents(!state); this.api.asc_enableKeyEvents(!state);
if (!state) $(this.leftMenu.btnAbout.el).blur(); if (!state) $(this.leftMenu.btnAbout.el).blur();
if (!state && 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']();
}
}
} }
}, },
@ -736,9 +743,12 @@ define([
onPluginOpen: function(panel, type, action) { onPluginOpen: function(panel, type, action) {
if ( type == 'onboard' ) { if ( type == 'onboard' ) {
if ( action == 'open' ) { if ( action == 'open' ) {
this.leftMenu.close();
this.leftMenu.panelPlugins.show(); this.leftMenu.panelPlugins.show();
this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}}); this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}});
this.leftMenu._state.pluginIsRunning = true;
} else { } else {
this.leftMenu._state.pluginIsRunning = false;
this.leftMenu.close(); this.leftMenu.close();
} }
} }

View file

@ -742,10 +742,12 @@ define([
if (value) { if (value) {
item = this.cmbRegSettings.store.findWhere({value: value}); item = this.cmbRegSettings.store.findWhere({value: value});
this.cmbRegSettings.setValue(item ? item.get('value') : Common.util.LanguageInfo.getLocalLanguageName(value)[1]); this.cmbRegSettings.setValue(item ? item.get('value') : Common.util.LanguageInfo.getLocalLanguageName(value)[1]);
item && (value = this.cmbRegSettings.getValue());
} else { } else {
this.cmbRegSettings.setValue((this.mode.lang) ? Common.util.LanguageInfo.getLocalLanguageName(parseInt(Common.util.LanguageInfo.getLocalLanguageCode(this.mode.lang)))[1] : 0x0409); value = this.mode.lang ? parseInt(Common.util.LanguageInfo.getLocalLanguageCode(this.mode.lang)) : 0x0409;
this.cmbRegSettings.setValue(Common.util.LanguageInfo.getLocalLanguageName(value)[1]);
} }
this.updateRegionalExample(this.cmbRegSettings.getValue()); this.updateRegionalExample(value);
}, },
applySettings: function() { applySettings: function() {

View file

@ -74,6 +74,7 @@ define([
initialize: function () { initialize: function () {
this.minimizedMode = true; this.minimizedMode = true;
this._state = {};
}, },
render: function () { render: function () {
@ -153,7 +154,8 @@ define([
onBtnMenuToggle: function(btn, state) { onBtnMenuToggle: function(btn, state) {
if (state) { if (state) {
btn.panel['show'](); btn.panel['show']();
this.$el.width(SCALE_MIN); if (!this._state.pluginIsRunning)
this.$el.width(SCALE_MIN);
if (this.btnSearch.isActive()) if (this.btnSearch.isActive())
this.btnSearch.toggle(false); this.btnSearch.toggle(false);
@ -178,7 +180,7 @@ define([
if (!(this.$el.width() > SCALE_MIN)) { if (!(this.$el.width() > SCALE_MIN)) {
this.$el.width(Common.localStorage.getItem('sse-mainmenu-width') || MENU_SCALE_PART); this.$el.width(Common.localStorage.getItem('sse-mainmenu-width') || MENU_SCALE_PART);
} }
} else { } else if (!this._state.pluginIsRunning){
Common.localStorage.setItem('sse-mainmenu-width',this.$el.width()); Common.localStorage.setItem('sse-mainmenu-width',this.$el.width());
this.$el.width(SCALE_MIN); this.$el.width(SCALE_MIN);
} }
@ -208,12 +210,12 @@ define([
this.panelChat['hide'](); this.panelChat['hide']();
} }
} }
if (this.mode.canPlugins && this.panelPlugins) { // if (this.mode.canPlugins && this.panelPlugins) {
if (this.btnPlugins.pressed) { // if (this.btnPlugins.pressed) {
this.panelPlugins.show(); // this.panelPlugins.show();
} else // } else
this.panelPlugins['hide'](); // this.panelPlugins['hide']();
} // }
}, },
setOptionsPanel: function(name, panel) { setOptionsPanel: function(name, panel) {
@ -241,7 +243,8 @@ define([
close: function(menu) { close: function(menu) {
this.btnAbout.toggle(false); this.btnAbout.toggle(false);
this.$el.width(SCALE_MIN); if (!this._state.pluginIsRunning)
this.$el.width(SCALE_MIN);
/** coauthoring begin **/ /** coauthoring begin **/
if (this.mode.canCoAuthoring) { if (this.mode.canCoAuthoring) {
if (this.mode.canComments) { if (this.mode.canComments) {
@ -256,7 +259,7 @@ define([
} }
} }
/** coauthoring end **/ /** coauthoring end **/
if (this.mode.canPlugins && this.panelPlugins) { if (this.mode.canPlugins && this.panelPlugins && !this._state.pluginIsRunning) {
this.panelPlugins['hide'](); this.panelPlugins['hide']();
this.btnPlugins.toggle(false, true); this.btnPlugins.toggle(false, true);
} }

View file

@ -60,6 +60,7 @@
"Common.Views.Comments.textComments": "Komentáře", "Common.Views.Comments.textComments": "Komentáře",
"Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Zde napište svůj komentář", "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.textOpenAgain": "Znovu otevřít",
"Common.Views.Comments.textReply": "Odpovědět", "Common.Views.Comments.textReply": "Odpovědět",
"Common.Views.Comments.textResolve": "Vyřešit", "Common.Views.Comments.textResolve": "Vyřešit",
@ -72,8 +73,18 @@
"Common.Views.CopyWarningDialog.textToPaste": "pro vložení", "Common.Views.CopyWarningDialog.textToPaste": "pro vložení",
"Common.Views.DocumentAccessDialog.textLoading": "Nahrávám ...", "Common.Views.DocumentAccessDialog.textLoading": "Nahrávám ...",
"Common.Views.DocumentAccessDialog.textTitle": "Nastavení sdílení", "Common.Views.DocumentAccessDialog.textTitle": "Nastavení sdílení",
"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.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.Header.txtRename": "Přejmenovat",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušit", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušit",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -91,6 +102,7 @@
"Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností",
"Common.Views.OpenDialog.txtTitleProtected": "Chráněný soubor", "Common.Views.OpenDialog.txtTitleProtected": "Chráněný soubor",
"Common.Views.PluginDlg.textLoading": "Nahrávám", "Common.Views.PluginDlg.textLoading": "Nahrávám",
"Common.Views.Plugins.groupCaption": "Doplňky",
"Common.Views.Plugins.strPlugins": "Pluginy", "Common.Views.Plugins.strPlugins": "Pluginy",
"Common.Views.Plugins.textLoading": "Nahrávám", "Common.Views.Plugins.textLoading": "Nahrávám",
"Common.Views.Plugins.textStart": "Začátek", "Common.Views.Plugins.textStart": "Začátek",
@ -267,6 +279,7 @@
"SSE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru", "SSE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru",
"SSE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel", "SSE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel",
"SSE.Controllers.Main.errorLockedAll": "Operace nemůže být provedena, protože list byl uzamčen jiným uživatelem.", "SSE.Controllers.Main.errorLockedAll": "Operace nemůže být provedena, protože list byl uzamčen jiným uživatelem.",
"SSE.Controllers.Main.errorLockedCellPivot": "Nemůžete měnit data uvnitř kontingenční tabulky.",
"SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user",
"SSE.Controllers.Main.errorMoveRange": "Nelze změnit část sloučené buňky", "SSE.Controllers.Main.errorMoveRange": "Nelze změnit část sloučené buňky",
"SSE.Controllers.Main.errorOpenWarning": "The length of one of the formulas in the file exceeded<br>the allowed number of characters and it was removed.", "SSE.Controllers.Main.errorOpenWarning": "The length of one of the formulas in the file exceeded<br>the allowed number of characters and it was removed.",
@ -1034,7 +1047,7 @@
"SSE.Views.DocumentHolder.txtRowHeight": "Nastavit výšku řádku", "SSE.Views.DocumentHolder.txtRowHeight": "Nastavit výšku řádku",
"SSE.Views.DocumentHolder.txtSelect": "Vybrat", "SSE.Views.DocumentHolder.txtSelect": "Vybrat",
"SSE.Views.DocumentHolder.txtShiftDown": "Posunout buňky dolů", "SSE.Views.DocumentHolder.txtShiftDown": "Posunout buňky dolů",
"SSE.Views.DocumentHolder.txtShiftLeft": "Posunout buňky doleva", "SSE.Views.DocumentHolder.txtShiftLeft": "Posunout buňky vlevo",
"SSE.Views.DocumentHolder.txtShiftRight": "Posunout buňky doprava", "SSE.Views.DocumentHolder.txtShiftRight": "Posunout buňky doprava",
"SSE.Views.DocumentHolder.txtShiftUp": "Posunout buňky nahoru", "SSE.Views.DocumentHolder.txtShiftUp": "Posunout buňky nahoru",
"SSE.Views.DocumentHolder.txtShow": "Zobrazit", "SSE.Views.DocumentHolder.txtShow": "Zobrazit",
@ -1090,7 +1103,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Příklad:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Příklad:",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Zapnout zobrazení vyřešených komentářů", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Zapnout zobrazení vyřešených komentářů",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Jednotky měření", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Zobrazovat hodnoty v jednotkách",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Výchozí hodnota přiblížení", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Výchozí hodnota přiblížení",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Každých 10 minut", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Každých 10 minut",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Každých 30 minut", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Každých 30 minut",
@ -1226,7 +1239,7 @@
"SSE.Views.LeftMenu.tipFile": "Soubor", "SSE.Views.LeftMenu.tipFile": "Soubor",
"SSE.Views.LeftMenu.tipPlugins": "Pluginy", "SSE.Views.LeftMenu.tipPlugins": "Pluginy",
"SSE.Views.LeftMenu.tipSearch": "Hledat", "SSE.Views.LeftMenu.tipSearch": "Hledat",
"SSE.Views.LeftMenu.tipSupport": "Podpora a zpětná vazba", "SSE.Views.LeftMenu.tipSupport": "Zpětná vazba a Podpora",
"SSE.Views.LeftMenu.txtDeveloper": "VÝVOJÁŘSKÝ REŽIM", "SSE.Views.LeftMenu.txtDeveloper": "VÝVOJÁŘSKÝ REŽIM",
"SSE.Views.MainSettingsPrint.okButtonText": "Uložit", "SSE.Views.MainSettingsPrint.okButtonText": "Uložit",
"SSE.Views.MainSettingsPrint.strBottom": "Dole", "SSE.Views.MainSettingsPrint.strBottom": "Dole",
@ -1464,18 +1477,14 @@
"SSE.Views.Statusbar.textNewColor": "Přidat novou vlastní barvu", "SSE.Views.Statusbar.textNewColor": "Přidat novou vlastní barvu",
"SSE.Views.Statusbar.textNoColor": "Bez barvy", "SSE.Views.Statusbar.textNoColor": "Bez barvy",
"SSE.Views.Statusbar.textSum": "SUMA", "SSE.Views.Statusbar.textSum": "SUMA",
"SSE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"SSE.Views.Statusbar.tipAddTab": "Přidat list", "SSE.Views.Statusbar.tipAddTab": "Přidat list",
"SSE.Views.Statusbar.tipFirst": "Přejít na první list", "SSE.Views.Statusbar.tipFirst": "Přejít na první list",
"SSE.Views.Statusbar.tipLast": "Přejít na poslední list", "SSE.Views.Statusbar.tipLast": "Přejít na poslední list",
"SSE.Views.Statusbar.tipNext": "Posunout seznam listů doprava", "SSE.Views.Statusbar.tipNext": "Posunout seznam listů doprava",
"SSE.Views.Statusbar.tipPrev": "Posunout seznam listů doleva", "SSE.Views.Statusbar.tipPrev": "Posunout seznam listů doleva",
"SSE.Views.Statusbar.tipUsers": "Document is currently being edited by several users.",
"SSE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"SSE.Views.Statusbar.tipZoomFactor": "Zvětšení", "SSE.Views.Statusbar.tipZoomFactor": "Zvětšení",
"SSE.Views.Statusbar.tipZoomIn": "Přiblížit", "SSE.Views.Statusbar.tipZoomIn": "Přiblížit",
"SSE.Views.Statusbar.tipZoomOut": "Oddálit", "SSE.Views.Statusbar.tipZoomOut": "Oddálit",
"SSE.Views.Statusbar.txAccessRights": "Change access rights",
"SSE.Views.Statusbar.zoomText": "Přiblížení {0}%", "SSE.Views.Statusbar.zoomText": "Přiblížení {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operaci nelze provést pro zvolený rozsah buněk.<br>Vyberte jednotnou oblast dat odlišnou od již existující a zkuste to znovu.", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operaci nelze provést pro zvolený rozsah buněk.<br>Vyberte jednotnou oblast dat odlišnou od již existující a zkuste to znovu.",
"SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operace nemohla být dokončena pro vybraný rozsah buněk.<br>Vyberte rozsah tak, aby první řádek tabulky byl na stejném řádku<br>a výsledná tabulka překrývala aktuální.\n", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operace nemohla být dokončena pro vybraný rozsah buněk.<br>Vyberte rozsah tak, aby první řádek tabulky byl na stejném řádku<br>a výsledná tabulka překrývala aktuální.\n",
@ -1570,6 +1579,13 @@
"SSE.Views.TextArtSettings.txtNoBorders": "Bez čáry", "SSE.Views.TextArtSettings.txtNoBorders": "Bez čáry",
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Dřevo", "SSE.Views.TextArtSettings.txtWood": "Dřevo",
"SSE.Views.Toolbar.capInsertChart": "Graf",
"SSE.Views.Toolbar.capInsertEquation": "Rovnice",
"SSE.Views.Toolbar.capInsertHyperlink": "Hypertextový odkaz",
"SSE.Views.Toolbar.capInsertImage": "Obrázek",
"SSE.Views.Toolbar.capInsertShape": "Tvar",
"SSE.Views.Toolbar.capInsertTable": "Tabulka",
"SSE.Views.Toolbar.capInsertText": "Textové pole",
"SSE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru", "SSE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru",
"SSE.Views.Toolbar.mniImageFromUrl": "Obrázek z adresy URL", "SSE.Views.Toolbar.mniImageFromUrl": "Obrázek z adresy URL",
"SSE.Views.Toolbar.textAlignBottom": "Zarovnat dolů", "SSE.Views.Toolbar.textAlignBottom": "Zarovnat dolů",
@ -1593,7 +1609,7 @@
"SSE.Views.Toolbar.textColumnSpark": "Sloupec", "SSE.Views.Toolbar.textColumnSpark": "Sloupec",
"SSE.Views.Toolbar.textCompactToolbar": "Zobrazit kompaktní lištu nástrojů", "SSE.Views.Toolbar.textCompactToolbar": "Zobrazit kompaktní lištu nástrojů",
"SSE.Views.Toolbar.textCounterCw": "Otočit proti směru hodinových ručiček", "SSE.Views.Toolbar.textCounterCw": "Otočit proti směru hodinových ručiček",
"SSE.Views.Toolbar.textDelLeft": "Posunout buňky doleva", "SSE.Views.Toolbar.textDelLeft": "Posunout buňky vlevo",
"SSE.Views.Toolbar.textDelUp": "Posunout buňky nahoru", "SSE.Views.Toolbar.textDelUp": "Posunout buňky nahoru",
"SSE.Views.Toolbar.textDiagDownBorder": "Ohraničení diagonálně dolů", "SSE.Views.Toolbar.textDiagDownBorder": "Ohraničení diagonálně dolů",
"SSE.Views.Toolbar.textDiagUpBorder": "Ohraničení diagonálně nahoru", "SSE.Views.Toolbar.textDiagUpBorder": "Ohraničení diagonálně nahoru",
@ -1607,9 +1623,7 @@
"SSE.Views.Toolbar.textHorizontal": "Vodorovný text", "SSE.Views.Toolbar.textHorizontal": "Vodorovný text",
"SSE.Views.Toolbar.textInsDown": "Posunout buňky dolů", "SSE.Views.Toolbar.textInsDown": "Posunout buňky dolů",
"SSE.Views.Toolbar.textInsideBorders": "Vložit ohraničení", "SSE.Views.Toolbar.textInsideBorders": "Vložit ohraničení",
"SSE.Views.Toolbar.textInsRight": "Posunout buňky doprava", "SSE.Views.Toolbar.textInsRight": "Posunout buňky vpravo",
"SSE.Views.Toolbar.textInsText": "Vložit textové pole",
"SSE.Views.Toolbar.textInsTextArt": "Vložit Text art",
"SSE.Views.Toolbar.textItalic": "Kurzíva", "SSE.Views.Toolbar.textItalic": "Kurzíva",
"SSE.Views.Toolbar.textLeftBorders": "Levé ohraničení", "SSE.Views.Toolbar.textLeftBorders": "Levé ohraničení",
"SSE.Views.Toolbar.textLine": "Čára", "SSE.Views.Toolbar.textLine": "Čára",
@ -1629,6 +1643,9 @@
"SSE.Views.Toolbar.textSparks": "Sparklines", "SSE.Views.Toolbar.textSparks": "Sparklines",
"SSE.Views.Toolbar.textStock": "Burzovní graf", "SSE.Views.Toolbar.textStock": "Burzovní graf",
"SSE.Views.Toolbar.textSurface": "Povrch", "SSE.Views.Toolbar.textSurface": "Povrch",
"SSE.Views.Toolbar.textTabFile": "Soubor",
"SSE.Views.Toolbar.textTabHome": "Domů",
"SSE.Views.Toolbar.textTabInsert": "Vložit",
"SSE.Views.Toolbar.textTopBorders": "Horní ohraničení", "SSE.Views.Toolbar.textTopBorders": "Horní ohraničení",
"SSE.Views.Toolbar.textUnderline": "Podtržení", "SSE.Views.Toolbar.textUnderline": "Podtržení",
"SSE.Views.Toolbar.textWinLossSpark": "Zisk/Ztráta ", "SSE.Views.Toolbar.textWinLossSpark": "Zisk/Ztráta ",
@ -1670,10 +1687,9 @@
"SSE.Views.Toolbar.tipInsertOpt": "Vložit buňky", "SSE.Views.Toolbar.tipInsertOpt": "Vložit buňky",
"SSE.Views.Toolbar.tipInsertShape": "Vložit tvar", "SSE.Views.Toolbar.tipInsertShape": "Vložit tvar",
"SSE.Views.Toolbar.tipInsertText": "Vložení textu", "SSE.Views.Toolbar.tipInsertText": "Vložení textu",
"SSE.Views.Toolbar.tipInsertTextart": "Vložit Text art",
"SSE.Views.Toolbar.tipMerge": "Sloučit", "SSE.Views.Toolbar.tipMerge": "Sloučit",
"SSE.Views.Toolbar.tipNewDocument": "Nový dokument",
"SSE.Views.Toolbar.tipNumFormat": "Formát čísla", "SSE.Views.Toolbar.tipNumFormat": "Formát čísla",
"SSE.Views.Toolbar.tipOpenDocument": "Otevřít dokument",
"SSE.Views.Toolbar.tipPaste": "Vložit", "SSE.Views.Toolbar.tipPaste": "Vložit",
"SSE.Views.Toolbar.tipPrColor": "Barva pozadí", "SSE.Views.Toolbar.tipPrColor": "Barva pozadí",
"SSE.Views.Toolbar.tipPrint": "Tisk", "SSE.Views.Toolbar.tipPrint": "Tisk",

View file

@ -60,6 +60,7 @@
"Common.Views.Comments.textComments": "Kommentare", "Common.Views.Comments.textComments": "Kommentare",
"Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Geben Sie Ihren Kommentar hier ein", "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.textOpenAgain": "Erneut eröffnen",
"Common.Views.Comments.textReply": "Antworten", "Common.Views.Comments.textReply": "Antworten",
"Common.Views.Comments.textResolve": "Lösen", "Common.Views.Comments.textResolve": "Lösen",
@ -72,8 +73,18 @@
"Common.Views.CopyWarningDialog.textToPaste": "zum Einfügen", "Common.Views.CopyWarningDialog.textToPaste": "zum Einfügen",
"Common.Views.DocumentAccessDialog.textLoading": "Ladevorgang...", "Common.Views.DocumentAccessDialog.textLoading": "Ladevorgang...",
"Common.Views.DocumentAccessDialog.textTitle": "Freigabeeinstellungen", "Common.Views.DocumentAccessDialog.textTitle": "Freigabeeinstellungen",
"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.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.Header.txtRename": "Umbenennen",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Abbrechen", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Abbrechen",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -91,6 +102,7 @@
"Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen", "Common.Views.OpenDialog.txtTitle": "%1-Optionen wählen",
"Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei", "Common.Views.OpenDialog.txtTitleProtected": "Geschützte Datei",
"Common.Views.PluginDlg.textLoading": "Ladevorgang", "Common.Views.PluginDlg.textLoading": "Ladevorgang",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Ladevorgang", "Common.Views.Plugins.textLoading": "Ladevorgang",
"Common.Views.Plugins.textStart": "Starten", "Common.Views.Plugins.textStart": "Starten",
@ -267,6 +279,7 @@
"SSE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "SSE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
"SSE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "SSE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
"SSE.Controllers.Main.errorLockedAll": "Die Operation kann nicht durchgeführt werden, weil das Blatt von einem anderen Benutzer gesperrt ist.", "SSE.Controllers.Main.errorLockedAll": "Die Operation kann nicht durchgeführt werden, weil das Blatt von einem anderen Benutzer gesperrt ist.",
"SSE.Controllers.Main.errorLockedCellPivot": "Die Daten innerhalb einer Pivot-Tabelle können nicht geändert werden.",
"SSE.Controllers.Main.errorLockedWorksheetRename": "Umbenennen des Blattes ist derzeit nicht möglich, denn es wird gleichzeitig von einem anderen Benutzer umbenannt.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Umbenennen des Blattes ist derzeit nicht möglich, denn es wird gleichzeitig von einem anderen Benutzer umbenannt.",
"SSE.Controllers.Main.errorMoveRange": "Es ist unmöglich einen Teil der vereinigten Zelle zu ändern", "SSE.Controllers.Main.errorMoveRange": "Es ist unmöglich einen Teil der vereinigten Zelle zu ändern",
"SSE.Controllers.Main.errorOpenWarning": "Die Länge einer der Formeln in der Datei hat<br>die zugelassene Anzahl von Zeichen überschritten und sie wurde entfernt.", "SSE.Controllers.Main.errorOpenWarning": "Die Länge einer der Formeln in der Datei hat<br>die zugelassene Anzahl von Zeichen überschritten und sie wurde entfernt.",
@ -1464,18 +1477,14 @@
"SSE.Views.Statusbar.textNewColor": "Benutzerdefinierte Farbe", "SSE.Views.Statusbar.textNewColor": "Benutzerdefinierte Farbe",
"SSE.Views.Statusbar.textNoColor": "Ohne Farbe", "SSE.Views.Statusbar.textNoColor": "Ohne Farbe",
"SSE.Views.Statusbar.textSum": "SUMME", "SSE.Views.Statusbar.textSum": "SUMME",
"SSE.Views.Statusbar.tipAccessRights": "Zugriffsrechte für das Dokument verwalten",
"SSE.Views.Statusbar.tipAddTab": "Arbeitsblatt hinzufügen", "SSE.Views.Statusbar.tipAddTab": "Arbeitsblatt hinzufügen",
"SSE.Views.Statusbar.tipFirst": "Bis zum ersten Blatt blättern", "SSE.Views.Statusbar.tipFirst": "Bis zum ersten Blatt blättern",
"SSE.Views.Statusbar.tipLast": "Bis zum letzten Blatt blättern", "SSE.Views.Statusbar.tipLast": "Bis zum letzten Blatt blättern",
"SSE.Views.Statusbar.tipNext": "Blattliste nach rechts blättern", "SSE.Views.Statusbar.tipNext": "Blattliste nach rechts blättern",
"SSE.Views.Statusbar.tipPrev": "Blattliste nach links blättern", "SSE.Views.Statusbar.tipPrev": "Blattliste nach links blättern",
"SSE.Views.Statusbar.tipUsers": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.",
"SSE.Views.Statusbar.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
"SSE.Views.Statusbar.tipZoomFactor": "Zoommodus", "SSE.Views.Statusbar.tipZoomFactor": "Zoommodus",
"SSE.Views.Statusbar.tipZoomIn": "Vergrößern", "SSE.Views.Statusbar.tipZoomIn": "Vergrößern",
"SSE.Views.Statusbar.tipZoomOut": "Verkleinern", "SSE.Views.Statusbar.tipZoomOut": "Verkleinern",
"SSE.Views.Statusbar.txAccessRights": "Zugriffsrechte ändern",
"SSE.Views.Statusbar.zoomText": "Zoom {0}%", "SSE.Views.Statusbar.zoomText": "Zoom {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Der Vorgang kann für einen ausgewählten Zellbereich nicht ausgeführt werden.<br>Wählen Sie einen einheitlichen Datenbereich, der sich deutlich von dem bestehenden unterscheidet und versuchen Sie es erneut.", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Der Vorgang kann für einen ausgewählten Zellbereich nicht ausgeführt werden.<br>Wählen Sie einen einheitlichen Datenbereich, der sich deutlich von dem bestehenden unterscheidet und versuchen Sie es erneut.",
"SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Die Operation konnte nicht für den markierten Zellbereich abgeschlossen werden. <br> Wählen Sie einen Bereich so aus, dass die erste Tabellenzeile in der gleichen Zeile war <br> und Ergebnistabelle die aktuelle überlappte. ", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Die Operation konnte nicht für den markierten Zellbereich abgeschlossen werden. <br> Wählen Sie einen Bereich so aus, dass die erste Tabellenzeile in der gleichen Zeile war <br> und Ergebnistabelle die aktuelle überlappte. ",
@ -1570,6 +1579,13 @@
"SSE.Views.TextArtSettings.txtNoBorders": "Keine Linie", "SSE.Views.TextArtSettings.txtNoBorders": "Keine Linie",
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Holz", "SSE.Views.TextArtSettings.txtWood": "Holz",
"SSE.Views.Toolbar.capInsertChart": "Diagramm",
"SSE.Views.Toolbar.capInsertEquation": "Gleichung",
"SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
"SSE.Views.Toolbar.capInsertImage": "Bild",
"SSE.Views.Toolbar.capInsertShape": "Form",
"SSE.Views.Toolbar.capInsertTable": "Tabelle",
"SSE.Views.Toolbar.capInsertText": "Textfeld",
"SSE.Views.Toolbar.mniImageFromFile": "Bild aus Datei", "SSE.Views.Toolbar.mniImageFromFile": "Bild aus Datei",
"SSE.Views.Toolbar.mniImageFromUrl": "Bild aus URL", "SSE.Views.Toolbar.mniImageFromUrl": "Bild aus URL",
"SSE.Views.Toolbar.textAlignBottom": "Unten ausrichten", "SSE.Views.Toolbar.textAlignBottom": "Unten ausrichten",
@ -1591,7 +1607,7 @@
"SSE.Views.Toolbar.textClockwise": "Im Uhrzeigersinn drehen", "SSE.Views.Toolbar.textClockwise": "Im Uhrzeigersinn drehen",
"SSE.Views.Toolbar.textColumn": "Spalte", "SSE.Views.Toolbar.textColumn": "Spalte",
"SSE.Views.Toolbar.textColumnSpark": "Spalte", "SSE.Views.Toolbar.textColumnSpark": "Spalte",
"SSE.Views.Toolbar.textCompactToolbar": "Kompaktsymbolleiste anzeigen", "SSE.Views.Toolbar.textCompactToolbar": "Symbolleiste ausblenden",
"SSE.Views.Toolbar.textCounterCw": "Gegen den Uhrzeigersinn drehen", "SSE.Views.Toolbar.textCounterCw": "Gegen den Uhrzeigersinn drehen",
"SSE.Views.Toolbar.textDelLeft": "Zellen nach links verschieben", "SSE.Views.Toolbar.textDelLeft": "Zellen nach links verschieben",
"SSE.Views.Toolbar.textDelUp": "Zellen nach oben verschieben", "SSE.Views.Toolbar.textDelUp": "Zellen nach oben verschieben",
@ -1608,8 +1624,6 @@
"SSE.Views.Toolbar.textInsDown": "Zellen nach unten verschieben", "SSE.Views.Toolbar.textInsDown": "Zellen nach unten verschieben",
"SSE.Views.Toolbar.textInsideBorders": "Rahmenlinien innen", "SSE.Views.Toolbar.textInsideBorders": "Rahmenlinien innen",
"SSE.Views.Toolbar.textInsRight": "Zellen nach rechts verschieben", "SSE.Views.Toolbar.textInsRight": "Zellen nach rechts verschieben",
"SSE.Views.Toolbar.textInsText": "Textfeld einfügen\t",
"SSE.Views.Toolbar.textInsTextArt": "TextArt einfügen",
"SSE.Views.Toolbar.textItalic": "Kursiv", "SSE.Views.Toolbar.textItalic": "Kursiv",
"SSE.Views.Toolbar.textLeftBorders": "Rahmenlinien links", "SSE.Views.Toolbar.textLeftBorders": "Rahmenlinien links",
"SSE.Views.Toolbar.textLine": "Linie", "SSE.Views.Toolbar.textLine": "Linie",
@ -1629,6 +1643,9 @@
"SSE.Views.Toolbar.textSparks": "Sparklines", "SSE.Views.Toolbar.textSparks": "Sparklines",
"SSE.Views.Toolbar.textStock": "Bestand", "SSE.Views.Toolbar.textStock": "Bestand",
"SSE.Views.Toolbar.textSurface": "Oberfläche", "SSE.Views.Toolbar.textSurface": "Oberfläche",
"SSE.Views.Toolbar.textTabFile": "Datei",
"SSE.Views.Toolbar.textTabHome": "Startseite",
"SSE.Views.Toolbar.textTabInsert": "Einfügen",
"SSE.Views.Toolbar.textTopBorders": "Rahmenlinien oben", "SSE.Views.Toolbar.textTopBorders": "Rahmenlinien oben",
"SSE.Views.Toolbar.textUnderline": "Unterstrichen", "SSE.Views.Toolbar.textUnderline": "Unterstrichen",
"SSE.Views.Toolbar.textWinLossSpark": "Gewinn/Verlust", "SSE.Views.Toolbar.textWinLossSpark": "Gewinn/Verlust",
@ -1670,10 +1687,9 @@
"SSE.Views.Toolbar.tipInsertOpt": "Zellen einfügen", "SSE.Views.Toolbar.tipInsertOpt": "Zellen einfügen",
"SSE.Views.Toolbar.tipInsertShape": "AutoForm einfügen", "SSE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
"SSE.Views.Toolbar.tipInsertText": "Text einfügen", "SSE.Views.Toolbar.tipInsertText": "Text einfügen",
"SSE.Views.Toolbar.tipInsertTextart": "TextArt einfügen",
"SSE.Views.Toolbar.tipMerge": "Verbinden", "SSE.Views.Toolbar.tipMerge": "Verbinden",
"SSE.Views.Toolbar.tipNewDocument": "Neues Dokument",
"SSE.Views.Toolbar.tipNumFormat": "Zahlenformat", "SSE.Views.Toolbar.tipNumFormat": "Zahlenformat",
"SSE.Views.Toolbar.tipOpenDocument": "Dokument öffnen",
"SSE.Views.Toolbar.tipPaste": "Einfügen", "SSE.Views.Toolbar.tipPaste": "Einfügen",
"SSE.Views.Toolbar.tipPrColor": "Hintergrundfarbe", "SSE.Views.Toolbar.tipPrColor": "Hintergrundfarbe",
"SSE.Views.Toolbar.tipPrint": "Drucken", "SSE.Views.Toolbar.tipPrint": "Drucken",

View file

@ -102,10 +102,11 @@
"Common.Views.OpenDialog.txtTitle": "Choose %1 options", "Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Protected File", "Common.Views.OpenDialog.txtTitleProtected": "Protected File",
"Common.Views.PluginDlg.textLoading": "Loading", "Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textLoading": "Loading", "Common.Views.Plugins.textLoading": "Loading",
"Common.Views.Plugins.textStart": "Start", "Common.Views.Plugins.textStart": "Start",
"Common.Views.Plugins.groupCaption": "Add-ons", "Common.Views.Plugins.textStop": "Stop",
"Common.Views.RenameDialog.cancelButtonText": "Cancel", "Common.Views.RenameDialog.cancelButtonText": "Cancel",
"Common.Views.RenameDialog.okButtonText": "Ok", "Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "File name", "Common.Views.RenameDialog.textName": "File name",
@ -1579,6 +1580,7 @@
"SSE.Views.TextArtSettings.txtNoBorders": "No Line", "SSE.Views.TextArtSettings.txtNoBorders": "No Line",
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Wood", "SSE.Views.TextArtSettings.txtWood": "Wood",
"SSE.Views.Toolbar.capBtnComment": "Comment",
"SSE.Views.Toolbar.capInsertChart": "Chart", "SSE.Views.Toolbar.capInsertChart": "Chart",
"SSE.Views.Toolbar.capInsertEquation": "Equation", "SSE.Views.Toolbar.capInsertEquation": "Equation",
"SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
@ -1624,8 +1626,6 @@
"SSE.Views.Toolbar.textInsDown": "Shift Cells Down", "SSE.Views.Toolbar.textInsDown": "Shift Cells Down",
"SSE.Views.Toolbar.textInsideBorders": "Inside Borders", "SSE.Views.Toolbar.textInsideBorders": "Inside Borders",
"SSE.Views.Toolbar.textInsRight": "Shift Cells Right", "SSE.Views.Toolbar.textInsRight": "Shift Cells Right",
"del_SSE.Views.Toolbar.textInsText": "Insert text box",
"del_SSE.Views.Toolbar.textInsTextArt": "Insert Text Art",
"SSE.Views.Toolbar.textItalic": "Italic", "SSE.Views.Toolbar.textItalic": "Italic",
"SSE.Views.Toolbar.textLeftBorders": "Left Borders", "SSE.Views.Toolbar.textLeftBorders": "Left Borders",
"SSE.Views.Toolbar.textLine": "Line", "SSE.Views.Toolbar.textLine": "Line",
@ -1676,7 +1676,7 @@
"SSE.Views.Toolbar.tipDigStylePercent": "Percent Style", "SSE.Views.Toolbar.tipDigStylePercent": "Percent Style",
"SSE.Views.Toolbar.tipEditChart": "Edit Chart", "SSE.Views.Toolbar.tipEditChart": "Edit Chart",
"SSE.Views.Toolbar.tipFontColor": "Font Color", "SSE.Views.Toolbar.tipFontColor": "Font Color",
"SSE.Views.Toolbar.tipFontName": "Font Name", "SSE.Views.Toolbar.tipFontName": "Font",
"SSE.Views.Toolbar.tipFontSize": "Font Size", "SSE.Views.Toolbar.tipFontSize": "Font Size",
"SSE.Views.Toolbar.tipHAligh": "Horizontal Alignment", "SSE.Views.Toolbar.tipHAligh": "Horizontal Alignment",
"SSE.Views.Toolbar.tipIncDecimal": "Increase Decimal", "SSE.Views.Toolbar.tipIncDecimal": "Increase Decimal",

View file

@ -60,6 +60,7 @@
"Common.Views.Comments.textComments": "Commenti", "Common.Views.Comments.textComments": "Commenti",
"Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Inserisci commento qui", "Common.Views.Comments.textEnterCommentHint": "Inserisci commento qui",
"Common.Views.Comments.textHintAddComment": "Aggiungi commento",
"Common.Views.Comments.textOpenAgain": "Apri di nuovo", "Common.Views.Comments.textOpenAgain": "Apri di nuovo",
"Common.Views.Comments.textReply": "Rispondi", "Common.Views.Comments.textReply": "Rispondi",
"Common.Views.Comments.textResolve": "Chiudi", "Common.Views.Comments.textResolve": "Chiudi",
@ -72,8 +73,18 @@
"Common.Views.CopyWarningDialog.textToPaste": "per incollare", "Common.Views.CopyWarningDialog.textToPaste": "per incollare",
"Common.Views.DocumentAccessDialog.textLoading": "Caricamento in corso...", "Common.Views.DocumentAccessDialog.textLoading": "Caricamento in corso...",
"Common.Views.DocumentAccessDialog.textTitle": "Impostazioni di condivisione", "Common.Views.DocumentAccessDialog.textTitle": "Impostazioni di condivisione",
"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.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.Header.txtRename": "Rinomina",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Annulla", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Annulla",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -91,6 +102,7 @@
"Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1", "Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1",
"Common.Views.OpenDialog.txtTitleProtected": "File protetto", "Common.Views.OpenDialog.txtTitleProtected": "File protetto",
"Common.Views.PluginDlg.textLoading": "Caricamento", "Common.Views.PluginDlg.textLoading": "Caricamento",
"Common.Views.Plugins.groupCaption": "Componenti Aggiuntivi",
"Common.Views.Plugins.strPlugins": "Plugin", "Common.Views.Plugins.strPlugins": "Plugin",
"Common.Views.Plugins.textLoading": "Caricamento", "Common.Views.Plugins.textLoading": "Caricamento",
"Common.Views.Plugins.textStart": "Avvio", "Common.Views.Plugins.textStart": "Avvio",
@ -267,6 +279,7 @@
"SSE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "SSE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
"SSE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", "SSE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
"SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.",
"SSE.Controllers.Main.errorLockedCellPivot": "Non è possibile modificare i dati all'interno di una tabella pivot.",
"SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user",
"SSE.Controllers.Main.errorMoveRange": "Impossibile modificare una parte della cella unita", "SSE.Controllers.Main.errorMoveRange": "Impossibile modificare una parte della cella unita",
"SSE.Controllers.Main.errorOpenWarning": "The length of one of the formulas in the file exceeded<br>the allowed number of characters and it was removed.", "SSE.Controllers.Main.errorOpenWarning": "The length of one of the formulas in the file exceeded<br>the allowed number of characters and it was removed.",
@ -1464,18 +1477,14 @@
"SSE.Views.Statusbar.textNewColor": "Colore personalizzato", "SSE.Views.Statusbar.textNewColor": "Colore personalizzato",
"SSE.Views.Statusbar.textNoColor": "Nessun colore", "SSE.Views.Statusbar.textNoColor": "Nessun colore",
"SSE.Views.Statusbar.textSum": "SOMMA", "SSE.Views.Statusbar.textSum": "SOMMA",
"SSE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"SSE.Views.Statusbar.tipAddTab": "Aggiungi foglio di lavoro", "SSE.Views.Statusbar.tipAddTab": "Aggiungi foglio di lavoro",
"SSE.Views.Statusbar.tipFirst": "Scorri verso il primo foglio", "SSE.Views.Statusbar.tipFirst": "Scorri verso il primo foglio",
"SSE.Views.Statusbar.tipLast": "Scorri verso l'ultimo foglio", "SSE.Views.Statusbar.tipLast": "Scorri verso l'ultimo foglio",
"SSE.Views.Statusbar.tipNext": "Scorri elenco fogli a destra", "SSE.Views.Statusbar.tipNext": "Scorri elenco fogli a destra",
"SSE.Views.Statusbar.tipPrev": "Scorri elenco fogli a sinistra", "SSE.Views.Statusbar.tipPrev": "Scorri elenco fogli a sinistra",
"SSE.Views.Statusbar.tipUsers": "Il documento sta modificando da più utenti.",
"SSE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"SSE.Views.Statusbar.tipZoomFactor": "Ingrandimento", "SSE.Views.Statusbar.tipZoomFactor": "Ingrandimento",
"SSE.Views.Statusbar.tipZoomIn": "Zoom avanti", "SSE.Views.Statusbar.tipZoomIn": "Zoom avanti",
"SSE.Views.Statusbar.tipZoomOut": "Zoom indietro", "SSE.Views.Statusbar.tipZoomOut": "Zoom indietro",
"SSE.Views.Statusbar.txAccessRights": "Change access rights",
"SSE.Views.Statusbar.zoomText": "Zoom {0}%", "SSE.Views.Statusbar.zoomText": "Zoom {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Impossibile eseguire l'operazione per l'intervallo celle selezionato.<br>Seleziona un intervallo di celle uniforme all'interno o all'esterno della tabella e riprova.", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Impossibile eseguire l'operazione per l'intervallo celle selezionato.<br>Seleziona un intervallo di celle uniforme all'interno o all'esterno della tabella e riprova.",
"SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "L'operazione non può essere completata per l'intervallo di celle selezionato.<br>Selezionare un intervallo in modo che la prima riga della tabella sia nella stessa riga <br> e la tabella risultante sovrappone quella corrente.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "L'operazione non può essere completata per l'intervallo di celle selezionato.<br>Selezionare un intervallo in modo che la prima riga della tabella sia nella stessa riga <br> e la tabella risultante sovrappone quella corrente.",
@ -1570,6 +1579,13 @@
"SSE.Views.TextArtSettings.txtNoBorders": "No Line", "SSE.Views.TextArtSettings.txtNoBorders": "No Line",
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Wood", "SSE.Views.TextArtSettings.txtWood": "Wood",
"SSE.Views.Toolbar.capInsertChart": "Grafico",
"SSE.Views.Toolbar.capInsertEquation": "Equazione",
"SSE.Views.Toolbar.capInsertHyperlink": "Collegamento ipertestuale",
"SSE.Views.Toolbar.capInsertImage": "Foto",
"SSE.Views.Toolbar.capInsertShape": "Forma",
"SSE.Views.Toolbar.capInsertTable": "Tabella",
"SSE.Views.Toolbar.capInsertText": "Casella di testo",
"SSE.Views.Toolbar.mniImageFromFile": "Immagine da file", "SSE.Views.Toolbar.mniImageFromFile": "Immagine da file",
"SSE.Views.Toolbar.mniImageFromUrl": "Immagine da URL", "SSE.Views.Toolbar.mniImageFromUrl": "Immagine da URL",
"SSE.Views.Toolbar.textAlignBottom": "Allinea in basso", "SSE.Views.Toolbar.textAlignBottom": "Allinea in basso",
@ -1599,6 +1615,7 @@
"SSE.Views.Toolbar.textDiagUpBorder": "Bordo diagonale superiore", "SSE.Views.Toolbar.textDiagUpBorder": "Bordo diagonale superiore",
"SSE.Views.Toolbar.textEntireCol": "Colonna intera", "SSE.Views.Toolbar.textEntireCol": "Colonna intera",
"SSE.Views.Toolbar.textEntireRow": "Riga intera", "SSE.Views.Toolbar.textEntireRow": "Riga intera",
"SSE.Views.Toolbar.textFreezePanes": "Blocca riquadri",
"SSE.Views.Toolbar.textHideFBar": "Nascondi barra di formula", "SSE.Views.Toolbar.textHideFBar": "Nascondi barra di formula",
"SSE.Views.Toolbar.textHideGridlines": "Nascondi griglia", "SSE.Views.Toolbar.textHideGridlines": "Nascondi griglia",
"SSE.Views.Toolbar.textHideHeadings": "Nascondi titoli", "SSE.Views.Toolbar.textHideHeadings": "Nascondi titoli",
@ -1607,8 +1624,6 @@
"SSE.Views.Toolbar.textInsDown": "Sposta celle in basso", "SSE.Views.Toolbar.textInsDown": "Sposta celle in basso",
"SSE.Views.Toolbar.textInsideBorders": "Bordi interni", "SSE.Views.Toolbar.textInsideBorders": "Bordi interni",
"SSE.Views.Toolbar.textInsRight": "Sposta celle a destra", "SSE.Views.Toolbar.textInsRight": "Sposta celle a destra",
"SSE.Views.Toolbar.textInsText": "Insert text box",
"SSE.Views.Toolbar.textInsTextArt": "Insert Text Art",
"SSE.Views.Toolbar.textItalic": "Corsivo", "SSE.Views.Toolbar.textItalic": "Corsivo",
"SSE.Views.Toolbar.textLeftBorders": "Bordi sinistri", "SSE.Views.Toolbar.textLeftBorders": "Bordi sinistri",
"SSE.Views.Toolbar.textLine": "Linea", "SSE.Views.Toolbar.textLine": "Linea",
@ -1628,6 +1643,9 @@
"SSE.Views.Toolbar.textSparks": "Sparklines", "SSE.Views.Toolbar.textSparks": "Sparklines",
"SSE.Views.Toolbar.textStock": "Azionario", "SSE.Views.Toolbar.textStock": "Azionario",
"SSE.Views.Toolbar.textSurface": "Superficie", "SSE.Views.Toolbar.textSurface": "Superficie",
"SSE.Views.Toolbar.textTabFile": "File",
"SSE.Views.Toolbar.textTabHome": "Home",
"SSE.Views.Toolbar.textTabInsert": "Inserisci",
"SSE.Views.Toolbar.textTopBorders": "Bordi superiori", "SSE.Views.Toolbar.textTopBorders": "Bordi superiori",
"SSE.Views.Toolbar.textUnderline": "Sottolineato", "SSE.Views.Toolbar.textUnderline": "Sottolineato",
"SSE.Views.Toolbar.textWinLossSpark": "Vinci/Perdi", "SSE.Views.Toolbar.textWinLossSpark": "Vinci/Perdi",
@ -1669,10 +1687,9 @@
"SSE.Views.Toolbar.tipInsertOpt": "Inserisci celle", "SSE.Views.Toolbar.tipInsertOpt": "Inserisci celle",
"SSE.Views.Toolbar.tipInsertShape": "Inserisci forma", "SSE.Views.Toolbar.tipInsertShape": "Inserisci forma",
"SSE.Views.Toolbar.tipInsertText": "Inserisci testo", "SSE.Views.Toolbar.tipInsertText": "Inserisci testo",
"SSE.Views.Toolbar.tipInsertTextart": "Inserisci Text Art",
"SSE.Views.Toolbar.tipMerge": "Unisci", "SSE.Views.Toolbar.tipMerge": "Unisci",
"SSE.Views.Toolbar.tipNewDocument": "Nuovo documento",
"SSE.Views.Toolbar.tipNumFormat": "Formato numero", "SSE.Views.Toolbar.tipNumFormat": "Formato numero",
"SSE.Views.Toolbar.tipOpenDocument": "Apri documento",
"SSE.Views.Toolbar.tipPaste": "Incolla", "SSE.Views.Toolbar.tipPaste": "Incolla",
"SSE.Views.Toolbar.tipPrColor": "Colore sfondo", "SSE.Views.Toolbar.tipPrColor": "Colore sfondo",
"SSE.Views.Toolbar.tipPrint": "Stampa", "SSE.Views.Toolbar.tipPrint": "Stampa",

View file

@ -67,7 +67,6 @@
"Common.Views.CopyWarningDialog.textToPaste": "lai ielīmētu", "Common.Views.CopyWarningDialog.textToPaste": "lai ielīmētu",
"Common.Views.DocumentAccessDialog.textLoading": "Loading...", "Common.Views.DocumentAccessDialog.textLoading": "Loading...",
"Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings", "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings",
"Common.Views.Header.openNewTabText": "Open in New Tab",
"Common.Views.Header.textBack": "Iet uz Dokumenti", "Common.Views.Header.textBack": "Iet uz Dokumenti",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Atcelt", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Atcelt",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -108,7 +107,6 @@
"SSE.Controllers.LeftMenu.textWorkbook": "Workbook", "SSE.Controllers.LeftMenu.textWorkbook": "Workbook",
"SSE.Controllers.LeftMenu.warnDownloadAs": "Ja jūs izvēlēsieties turpināt saglabāt šajā formātā visas diagrammas un attēli tiks zaudēti.<br>Vai tiešām vēlaties turpināt?", "SSE.Controllers.LeftMenu.warnDownloadAs": "Ja jūs izvēlēsieties turpināt saglabāt šajā formātā visas diagrammas un attēli tiks zaudēti.<br>Vai tiešām vēlaties turpināt?",
"SSE.Controllers.Main.confirmMoveCellRange": "The destination cell range can contain data. Continue the operation?", "SSE.Controllers.Main.confirmMoveCellRange": "The destination cell range can contain data. Continue the operation?",
"SSE.Controllers.Main.convertationErrorText": "Konversija neizdevās",
"SSE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.", "SSE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.",
"SSE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.", "SSE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.",
"SSE.Controllers.Main.criticalErrorTitle": "Kļūda", "SSE.Controllers.Main.criticalErrorTitle": "Kļūda",
@ -162,7 +160,7 @@
"SSE.Controllers.Main.loadImagesTitleText": "Ielādē attēlus", "SSE.Controllers.Main.loadImagesTitleText": "Ielādē attēlus",
"SSE.Controllers.Main.loadImageTextText": "Ielādē attēlu...", "SSE.Controllers.Main.loadImageTextText": "Ielādē attēlu...",
"SSE.Controllers.Main.loadImageTitleText": "Ielādē attēlu", "SSE.Controllers.Main.loadImageTitleText": "Ielādē attēlu",
"SSE.Controllers.Main.loadingDocumentTitleText": "Loading Document", "SSE.Controllers.Main.loadingDocumentTitleText": "Ielādē izklājlapu",
"SSE.Controllers.Main.notcriticalErrorTitle": "Brīdinājums", "SSE.Controllers.Main.notcriticalErrorTitle": "Brīdinājums",
"SSE.Controllers.Main.openTextText": "Atvēras Izklājlapa...", "SSE.Controllers.Main.openTextText": "Atvēras Izklājlapa...",
"SSE.Controllers.Main.openTitleText": "Atvēras Izklājlapa", "SSE.Controllers.Main.openTitleText": "Atvēras Izklājlapa",
@ -179,7 +177,7 @@
"SSE.Controllers.Main.textAnonymous": "Anonymous", "SSE.Controllers.Main.textAnonymous": "Anonymous",
"SSE.Controllers.Main.textCloseTip": "Click to close the tip", "SSE.Controllers.Main.textCloseTip": "Click to close the tip",
"SSE.Controllers.Main.textConfirm": "Confirmation", "SSE.Controllers.Main.textConfirm": "Confirmation",
"SSE.Controllers.Main.textLoadingDocument": "Ielādē Dokumentu", "SSE.Controllers.Main.textLoadingDocument": "Ielādē izklājlapu",
"SSE.Controllers.Main.textNo": "No", "SSE.Controllers.Main.textNo": "No",
"SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...", "SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...",
"SSE.Controllers.Main.textRecalcFormulas": "Forumulas rēķināšana...", "SSE.Controllers.Main.textRecalcFormulas": "Forumulas rēķināšana...",
@ -223,7 +221,7 @@
"SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"SSE.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?", "SSE.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?",
"SSE.Controllers.Toolbar.textCancel": "Cancel", "SSE.Controllers.Toolbar.textCancel": "Cancel",
"SSE.Controllers.Toolbar.textFontSizeErr": "The entered value must be more than 0", "SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 409",
"SSE.Controllers.Toolbar.textWarning": "Warning", "SSE.Controllers.Toolbar.textWarning": "Warning",
"SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell. <br>Are you sure you want to continue?", "SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell. <br>Are you sure you want to continue?",
"SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter",
@ -493,7 +491,6 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows",
"SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General",
"del_SSE.Views.FileMenuPanels.Settings.txtPrint": "Print",
"SSE.Views.FormulaDialog.cancelButtonText": "Atcelt", "SSE.Views.FormulaDialog.cancelButtonText": "Atcelt",
"SSE.Views.FormulaDialog.okButtonText": "OK", "SSE.Views.FormulaDialog.okButtonText": "OK",
"SSE.Views.FormulaDialog.sCategoryAll": "All", "SSE.Views.FormulaDialog.sCategoryAll": "All",
@ -673,7 +670,6 @@
"SSE.Views.PrintSettings.textActualSize": "Actual Size", "SSE.Views.PrintSettings.textActualSize": "Actual Size",
"SSE.Views.PrintSettings.textAllSheets": "All Sheets", "SSE.Views.PrintSettings.textAllSheets": "All Sheets",
"SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet", "SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet",
"del_SSE.Views.PrintSettings.textFit": "Fit to width",
"SSE.Views.PrintSettings.textHideDetails": "Hide Details", "SSE.Views.PrintSettings.textHideDetails": "Hide Details",
"SSE.Views.PrintSettings.textLayout": "Layout", "SSE.Views.PrintSettings.textLayout": "Layout",
"SSE.Views.PrintSettings.textPageOrientation": "Lapas orientācija", "SSE.Views.PrintSettings.textPageOrientation": "Lapas orientācija",
@ -720,11 +716,9 @@
"SSE.Views.ShapeSettings.textPatternFill": "Pattern", "SSE.Views.ShapeSettings.textPatternFill": "Pattern",
"SSE.Views.ShapeSettings.textRadial": "Radial", "SSE.Views.ShapeSettings.textRadial": "Radial",
"SSE.Views.ShapeSettings.textSelectTexture": "Select", "SSE.Views.ShapeSettings.textSelectTexture": "Select",
"SSE.Views.ShapeSettings.textStandartColors": "Standard Colors",
"SSE.Views.ShapeSettings.textStretch": "Stretch", "SSE.Views.ShapeSettings.textStretch": "Stretch",
"SSE.Views.ShapeSettings.textStyle": "Style", "SSE.Views.ShapeSettings.textStyle": "Style",
"SSE.Views.ShapeSettings.textTexture": "From Texture", "SSE.Views.ShapeSettings.textTexture": "From Texture",
"SSE.Views.ShapeSettings.textThemeColors": "Theme Colors",
"SSE.Views.ShapeSettings.textTile": "Tile", "SSE.Views.ShapeSettings.textTile": "Tile",
"SSE.Views.ShapeSettings.txtBrownPaper": "Brown Paper", "SSE.Views.ShapeSettings.txtBrownPaper": "Brown Paper",
"SSE.Views.ShapeSettings.txtCanvas": "Canvas", "SSE.Views.ShapeSettings.txtCanvas": "Canvas",
@ -783,21 +777,15 @@
"SSE.Views.Statusbar.textCount": "COUNT", "SSE.Views.Statusbar.textCount": "COUNT",
"SSE.Views.Statusbar.textNewColor": "Add New Custom Color", "SSE.Views.Statusbar.textNewColor": "Add New Custom Color",
"SSE.Views.Statusbar.textNoColor": "No Color", "SSE.Views.Statusbar.textNoColor": "No Color",
"SSE.Views.Statusbar.textStandartColors": "Standard Colors",
"SSE.Views.Statusbar.textSum": "SUM", "SSE.Views.Statusbar.textSum": "SUM",
"SSE.Views.Statusbar.textThemeColors": "Theme Colors",
"SSE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"SSE.Views.Statusbar.tipAddTab": "Add worksheet", "SSE.Views.Statusbar.tipAddTab": "Add worksheet",
"SSE.Views.Statusbar.tipFirst": "Scroll to First Sheet", "SSE.Views.Statusbar.tipFirst": "Scroll to First Sheet",
"SSE.Views.Statusbar.tipLast": "Scroll to Last Sheet", "SSE.Views.Statusbar.tipLast": "Scroll to Last Sheet",
"SSE.Views.Statusbar.tipNext": "Scroll Sheet List Right", "SSE.Views.Statusbar.tipNext": "Scroll Sheet List Right",
"SSE.Views.Statusbar.tipPrev": "Scroll Sheet List Left", "SSE.Views.Statusbar.tipPrev": "Scroll Sheet List Left",
"SSE.Views.Statusbar.tipUsers": "Document is currently being edited by several users.",
"SSE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"SSE.Views.Statusbar.tipZoomFactor": "Palielināšana", "SSE.Views.Statusbar.tipZoomFactor": "Palielināšana",
"SSE.Views.Statusbar.tipZoomIn": "Palielināt", "SSE.Views.Statusbar.tipZoomIn": "Palielināt",
"SSE.Views.Statusbar.tipZoomOut": "Samazināt", "SSE.Views.Statusbar.tipZoomOut": "Samazināt",
"SSE.Views.Statusbar.txAccessRights": "Change access rights",
"SSE.Views.Statusbar.zoomText": "Lielums {0}%", "SSE.Views.Statusbar.zoomText": "Lielums {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.<br>Select a uniform data range inside or outside the table and try again.", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.<br>Select a uniform data range inside or outside the table and try again.",
"SSE.Views.TableOptionsDialog.textCancel": "Cancel", "SSE.Views.TableOptionsDialog.textCancel": "Cancel",
@ -828,12 +816,10 @@
"SSE.Views.TextArtSettings.textPatternFill": "Pattern", "SSE.Views.TextArtSettings.textPatternFill": "Pattern",
"SSE.Views.TextArtSettings.textRadial": "Radial", "SSE.Views.TextArtSettings.textRadial": "Radial",
"SSE.Views.TextArtSettings.textSelectTexture": "Select", "SSE.Views.TextArtSettings.textSelectTexture": "Select",
"SSE.Views.TextArtSettings.textStandartColors": "Standard Colors",
"SSE.Views.TextArtSettings.textStretch": "Stretch", "SSE.Views.TextArtSettings.textStretch": "Stretch",
"SSE.Views.TextArtSettings.textStyle": "Style", "SSE.Views.TextArtSettings.textStyle": "Style",
"SSE.Views.TextArtSettings.textTemplate": "Template", "SSE.Views.TextArtSettings.textTemplate": "Template",
"SSE.Views.TextArtSettings.textTexture": "From Texture", "SSE.Views.TextArtSettings.textTexture": "From Texture",
"SSE.Views.TextArtSettings.textThemeColors": "Theme Colors",
"SSE.Views.TextArtSettings.textTile": "Tile", "SSE.Views.TextArtSettings.textTile": "Tile",
"SSE.Views.TextArtSettings.textTransform": "Transform", "SSE.Views.TextArtSettings.textTransform": "Transform",
"SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper",
@ -860,7 +846,6 @@
"SSE.Views.Toolbar.textAllBorders": "Visas Apmales", "SSE.Views.Toolbar.textAllBorders": "Visas Apmales",
"SSE.Views.Toolbar.textBold": "Treknraksts", "SSE.Views.Toolbar.textBold": "Treknraksts",
"SSE.Views.Toolbar.textBordersColor": "Apmales krāsa", "SSE.Views.Toolbar.textBordersColor": "Apmales krāsa",
"SSE.Views.Toolbar.textBordersWidth": "Apmales plātums",
"SSE.Views.Toolbar.textBottomBorders": "Apakšējās Apmales", "SSE.Views.Toolbar.textBottomBorders": "Apakšējās Apmales",
"SSE.Views.Toolbar.textCenterBorders": "Iekšējās Vertikālās Apmales", "SSE.Views.Toolbar.textCenterBorders": "Iekšējās Vertikālās Apmales",
"SSE.Views.Toolbar.textClockwise": "Angle Clockwise", "SSE.Views.Toolbar.textClockwise": "Angle Clockwise",
@ -872,6 +857,7 @@
"SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border",
"SSE.Views.Toolbar.textEntireCol": "Entire Column", "SSE.Views.Toolbar.textEntireCol": "Entire Column",
"SSE.Views.Toolbar.textEntireRow": "Entire Row", "SSE.Views.Toolbar.textEntireRow": "Entire Row",
"SSE.Views.Toolbar.textFreezePanes": "Freeze Panes",
"SSE.Views.Toolbar.textHideFBar": "Hide Formula Bar", "SSE.Views.Toolbar.textHideFBar": "Hide Formula Bar",
"SSE.Views.Toolbar.textHideGridlines": "Hide Gridlines", "SSE.Views.Toolbar.textHideGridlines": "Hide Gridlines",
"SSE.Views.Toolbar.textHideHeadings": "Hide Headings", "SSE.Views.Toolbar.textHideHeadings": "Hide Headings",
@ -880,8 +866,6 @@
"SSE.Views.Toolbar.textInsDown": "Shift Cells Down", "SSE.Views.Toolbar.textInsDown": "Shift Cells Down",
"SSE.Views.Toolbar.textInsideBorders": "Iekšējās Apmales", "SSE.Views.Toolbar.textInsideBorders": "Iekšējās Apmales",
"SSE.Views.Toolbar.textInsRight": "Shift Cells Right", "SSE.Views.Toolbar.textInsRight": "Shift Cells Right",
"SSE.Views.Toolbar.textInsText": "Insert text box",
"SSE.Views.Toolbar.textInsTextArt": "Insert Text Art",
"SSE.Views.Toolbar.textItalic": "Kursīvs", "SSE.Views.Toolbar.textItalic": "Kursīvs",
"SSE.Views.Toolbar.textLeftBorders": "Kreisās Apmales", "SSE.Views.Toolbar.textLeftBorders": "Kreisās Apmales",
"SSE.Views.Toolbar.textMiddleBorders": "Iekšējās Horizontālās Apmales", "SSE.Views.Toolbar.textMiddleBorders": "Iekšējās Horizontālās Apmales",
@ -893,8 +877,6 @@
"SSE.Views.Toolbar.textRightBorders": "Labās Apmales", "SSE.Views.Toolbar.textRightBorders": "Labās Apmales",
"SSE.Views.Toolbar.textRotateDown": "Rotate Text Down", "SSE.Views.Toolbar.textRotateDown": "Rotate Text Down",
"SSE.Views.Toolbar.textRotateUp": "Rotate Text Up", "SSE.Views.Toolbar.textRotateUp": "Rotate Text Up",
"SSE.Views.Toolbar.textStandartColors": "Standard Colors",
"SSE.Views.Toolbar.textThemeColors": "Theme Colors",
"SSE.Views.Toolbar.textTopBorders": "Augšējās Apmales", "SSE.Views.Toolbar.textTopBorders": "Augšējās Apmales",
"SSE.Views.Toolbar.textUnderline": "Pasvītrots", "SSE.Views.Toolbar.textUnderline": "Pasvītrots",
"SSE.Views.Toolbar.textZoom": "Zoom", "SSE.Views.Toolbar.textZoom": "Zoom",
@ -934,9 +916,7 @@
"SSE.Views.Toolbar.tipInsertShape": "Insert Autoshape", "SSE.Views.Toolbar.tipInsertShape": "Insert Autoshape",
"SSE.Views.Toolbar.tipInsertText": "Insert Text", "SSE.Views.Toolbar.tipInsertText": "Insert Text",
"SSE.Views.Toolbar.tipMerge": "Sapludināt", "SSE.Views.Toolbar.tipMerge": "Sapludināt",
"SSE.Views.Toolbar.tipNewDocument": "New Document",
"SSE.Views.Toolbar.tipNumFormat": "Skaitļu formāts", "SSE.Views.Toolbar.tipNumFormat": "Skaitļu formāts",
"SSE.Views.Toolbar.tipOpenDocument": "Open Document",
"SSE.Views.Toolbar.tipPaste": "Ielīmēt", "SSE.Views.Toolbar.tipPaste": "Ielīmēt",
"SSE.Views.Toolbar.tipPrColor": "Fona krāsa", "SSE.Views.Toolbar.tipPrColor": "Fona krāsa",
"SSE.Views.Toolbar.tipPrint": "Drukāt", "SSE.Views.Toolbar.tipPrint": "Drukāt",
@ -984,7 +964,7 @@
"SSE.Views.Toolbar.txtPasteRange": "Paste name", "SSE.Views.Toolbar.txtPasteRange": "Paste name",
"SSE.Views.Toolbar.txtPercentage": "Procentuāli", "SSE.Views.Toolbar.txtPercentage": "Procentuāli",
"SSE.Views.Toolbar.txtPound": "£ mārciņa", "SSE.Views.Toolbar.txtPound": "£ mārciņa",
"SSE.Views.Toolbar.txtRouble": "р. rublis", "SSE.Views.Toolbar.txtRouble": "₽ Rublis",
"SSE.Views.Toolbar.txtScheme1": "Jewels", "SSE.Views.Toolbar.txtScheme1": "Jewels",
"SSE.Views.Toolbar.txtScheme10": "Median", "SSE.Views.Toolbar.txtScheme10": "Median",
"SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme11": "Metro",

View file

@ -60,6 +60,7 @@
"Common.Views.Comments.textComments": "Комментарии", "Common.Views.Comments.textComments": "Комментарии",
"Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Введите здесь свой комментарий", "Common.Views.Comments.textEnterCommentHint": "Введите здесь свой комментарий",
"Common.Views.Comments.textHintAddComment": "Добавить комментарий",
"Common.Views.Comments.textOpenAgain": "Открыть снова", "Common.Views.Comments.textOpenAgain": "Открыть снова",
"Common.Views.Comments.textReply": "Ответить", "Common.Views.Comments.textReply": "Ответить",
"Common.Views.Comments.textResolve": "Решить", "Common.Views.Comments.textResolve": "Решить",
@ -72,8 +73,18 @@
"Common.Views.CopyWarningDialog.textToPaste": "для вставки", "Common.Views.CopyWarningDialog.textToPaste": "для вставки",
"Common.Views.DocumentAccessDialog.textLoading": "Загрузка...", "Common.Views.DocumentAccessDialog.textLoading": "Загрузка...",
"Common.Views.DocumentAccessDialog.textTitle": "Настройки совместного доступа", "Common.Views.DocumentAccessDialog.textTitle": "Настройки совместного доступа",
"Common.Views.Header.openNewTabText": "Открыть в новой вкладке", "Common.Views.Header.labelCoUsersDescr": "Документ редактируется несколькими пользователями.",
"Common.Views.Header.textBack": "Перейти к Документам", "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.Header.txtRename": "Переименовать",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Отмена", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Отмена",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -91,9 +102,11 @@
"Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1", "Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1",
"Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл", "Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл",
"Common.Views.PluginDlg.textLoading": "Загрузка", "Common.Views.PluginDlg.textLoading": "Загрузка",
"Common.Views.Plugins.strPlugins": "Дополнения", "Common.Views.Plugins.groupCaption": "Плагины",
"Common.Views.Plugins.strPlugins": "Плагины",
"Common.Views.Plugins.textLoading": "Загрузка", "Common.Views.Plugins.textLoading": "Загрузка",
"Common.Views.Plugins.textStart": "Запустить", "Common.Views.Plugins.textStart": "Запустить",
"Common.Views.Plugins.textStop": "Остановить",
"Common.Views.RenameDialog.cancelButtonText": "Отмена", "Common.Views.RenameDialog.cancelButtonText": "Отмена",
"Common.Views.RenameDialog.okButtonText": "Ok", "Common.Views.RenameDialog.okButtonText": "Ok",
"Common.Views.RenameDialog.textName": "Имя файла", "Common.Views.RenameDialog.textName": "Имя файла",
@ -267,6 +280,7 @@
"SSE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "SSE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
"SSE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", "SSE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
"SSE.Controllers.Main.errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.", "SSE.Controllers.Main.errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.",
"SSE.Controllers.Main.errorLockedCellPivot": "Нельзя изменить данные в сводной таблице.",
"SSE.Controllers.Main.errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь", "SSE.Controllers.Main.errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь",
"SSE.Controllers.Main.errorMoveRange": "Нельзя изменить часть объединенной ячейки", "SSE.Controllers.Main.errorMoveRange": "Нельзя изменить часть объединенной ячейки",
"SSE.Controllers.Main.errorOpenWarning": "Длина одной из формул в файле превышала<br>допустимое количество символов, и формула была удалена.", "SSE.Controllers.Main.errorOpenWarning": "Длина одной из формул в файле превышала<br>допустимое количество символов, и формула была удалена.",
@ -1224,7 +1238,7 @@
"SSE.Views.LeftMenu.tipChat": "Чат", "SSE.Views.LeftMenu.tipChat": "Чат",
"SSE.Views.LeftMenu.tipComments": "Комментарии", "SSE.Views.LeftMenu.tipComments": "Комментарии",
"SSE.Views.LeftMenu.tipFile": "Файл", "SSE.Views.LeftMenu.tipFile": "Файл",
"SSE.Views.LeftMenu.tipPlugins": "Дополнения", "SSE.Views.LeftMenu.tipPlugins": "Плагины",
"SSE.Views.LeftMenu.tipSearch": "Поиск", "SSE.Views.LeftMenu.tipSearch": "Поиск",
"SSE.Views.LeftMenu.tipSupport": "Обратная связь и поддержка", "SSE.Views.LeftMenu.tipSupport": "Обратная связь и поддержка",
"SSE.Views.LeftMenu.txtDeveloper": "РЕЖИМ РАЗРАБОТЧИКА", "SSE.Views.LeftMenu.txtDeveloper": "РЕЖИМ РАЗРАБОТЧИКА",
@ -1464,18 +1478,14 @@
"SSE.Views.Statusbar.textNewColor": "Пользовательский цвет", "SSE.Views.Statusbar.textNewColor": "Пользовательский цвет",
"SSE.Views.Statusbar.textNoColor": "Без цвета", "SSE.Views.Statusbar.textNoColor": "Без цвета",
"SSE.Views.Statusbar.textSum": "СУММА", "SSE.Views.Statusbar.textSum": "СУММА",
"SSE.Views.Statusbar.tipAccessRights": "Управление правами доступа к документу",
"SSE.Views.Statusbar.tipAddTab": "Добавить лист", "SSE.Views.Statusbar.tipAddTab": "Добавить лист",
"SSE.Views.Statusbar.tipFirst": "Прокрутить до первого листа", "SSE.Views.Statusbar.tipFirst": "Прокрутить до первого листа",
"SSE.Views.Statusbar.tipLast": "Прокрутить до последнего листа", "SSE.Views.Statusbar.tipLast": "Прокрутить до последнего листа",
"SSE.Views.Statusbar.tipNext": "Прокрутить список листов вправо", "SSE.Views.Statusbar.tipNext": "Прокрутить список листов вправо",
"SSE.Views.Statusbar.tipPrev": "Прокрутить список листов влево", "SSE.Views.Statusbar.tipPrev": "Прокрутить список листов влево",
"SSE.Views.Statusbar.tipUsers": "Документ редактируется несколькими пользователями.", "SSE.Views.Statusbar.tipZoomFactor": "Масштаб",
"SSE.Views.Statusbar.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу",
"SSE.Views.Statusbar.tipZoomFactor": "Увеличение",
"SSE.Views.Statusbar.tipZoomIn": "Увеличить", "SSE.Views.Statusbar.tipZoomIn": "Увеличить",
"SSE.Views.Statusbar.tipZoomOut": "Уменьшить", "SSE.Views.Statusbar.tipZoomOut": "Уменьшить",
"SSE.Views.Statusbar.txAccessRights": "Изменить права доступа",
"SSE.Views.Statusbar.zoomText": "Масштаб {0}%", "SSE.Views.Statusbar.zoomText": "Масштаб {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Операция не может быть произведена для выбранного диапазона ячеек.<br>Выделите однородный диапазон данных, отличный от существующего, и повторите попытку.", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Операция не может быть произведена для выбранного диапазона ячеек.<br>Выделите однородный диапазон данных, отличный от существующего, и повторите попытку.",
"SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Не удалось выполнить операцию для выбранного диапазона ячеек.<br>Выделите диапазон так, чтобы первая строка таблицы находилась на той же самой строке,<br>а итоговая таблица перекрывала текущую.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Не удалось выполнить операцию для выбранного диапазона ячеек.<br>Выделите диапазон так, чтобы первая строка таблицы находилась на той же самой строке,<br>а итоговая таблица перекрывала текущую.",
@ -1570,6 +1580,14 @@
"SSE.Views.TextArtSettings.txtNoBorders": "Без обводки", "SSE.Views.TextArtSettings.txtNoBorders": "Без обводки",
"SSE.Views.TextArtSettings.txtPapyrus": "Папирус", "SSE.Views.TextArtSettings.txtPapyrus": "Папирус",
"SSE.Views.TextArtSettings.txtWood": "Дерево", "SSE.Views.TextArtSettings.txtWood": "Дерево",
"SSE.Views.Toolbar.capBtnComment": "Комментарий",
"SSE.Views.Toolbar.capInsertChart": "Диаграмма",
"SSE.Views.Toolbar.capInsertEquation": "Формула",
"SSE.Views.Toolbar.capInsertHyperlink": "Гиперссылка",
"SSE.Views.Toolbar.capInsertImage": "Изображение",
"SSE.Views.Toolbar.capInsertShape": "Фигура",
"SSE.Views.Toolbar.capInsertTable": "Таблица",
"SSE.Views.Toolbar.capInsertText": "Надпись",
"SSE.Views.Toolbar.mniImageFromFile": "Изображение из файла", "SSE.Views.Toolbar.mniImageFromFile": "Изображение из файла",
"SSE.Views.Toolbar.mniImageFromUrl": "Изображение по url", "SSE.Views.Toolbar.mniImageFromUrl": "Изображение по url",
"SSE.Views.Toolbar.textAlignBottom": "По нижнему краю", "SSE.Views.Toolbar.textAlignBottom": "По нижнему краю",
@ -1591,7 +1609,7 @@
"SSE.Views.Toolbar.textClockwise": "Текст по часовой стрелке", "SSE.Views.Toolbar.textClockwise": "Текст по часовой стрелке",
"SSE.Views.Toolbar.textColumn": "Гистограмма", "SSE.Views.Toolbar.textColumn": "Гистограмма",
"SSE.Views.Toolbar.textColumnSpark": "Гистограмма", "SSE.Views.Toolbar.textColumnSpark": "Гистограмма",
"SSE.Views.Toolbar.textCompactToolbar": "Компактная панель инструментов", "SSE.Views.Toolbar.textCompactToolbar": "Скрыть панель инструментов",
"SSE.Views.Toolbar.textCounterCw": "Текст против часовой стрелки", "SSE.Views.Toolbar.textCounterCw": "Текст против часовой стрелки",
"SSE.Views.Toolbar.textDelLeft": "Ячейки со сдвигом влево", "SSE.Views.Toolbar.textDelLeft": "Ячейки со сдвигом влево",
"SSE.Views.Toolbar.textDelUp": "Ячейки со сдвигом вверх", "SSE.Views.Toolbar.textDelUp": "Ячейки со сдвигом вверх",
@ -1608,8 +1626,6 @@
"SSE.Views.Toolbar.textInsDown": "Ячейки со сдвигом вниз", "SSE.Views.Toolbar.textInsDown": "Ячейки со сдвигом вниз",
"SSE.Views.Toolbar.textInsideBorders": "Внутренние границы", "SSE.Views.Toolbar.textInsideBorders": "Внутренние границы",
"SSE.Views.Toolbar.textInsRight": "Ячейки со сдвигом вправо", "SSE.Views.Toolbar.textInsRight": "Ячейки со сдвигом вправо",
"SSE.Views.Toolbar.textInsText": "Вставить надпись",
"SSE.Views.Toolbar.textInsTextArt": "Вставить объект Text Art",
"SSE.Views.Toolbar.textItalic": "Курсив", "SSE.Views.Toolbar.textItalic": "Курсив",
"SSE.Views.Toolbar.textLeftBorders": "Левые границы", "SSE.Views.Toolbar.textLeftBorders": "Левые границы",
"SSE.Views.Toolbar.textLine": "График", "SSE.Views.Toolbar.textLine": "График",
@ -1629,6 +1645,9 @@
"SSE.Views.Toolbar.textSparks": "Спарклайны", "SSE.Views.Toolbar.textSparks": "Спарклайны",
"SSE.Views.Toolbar.textStock": "Биржевая", "SSE.Views.Toolbar.textStock": "Биржевая",
"SSE.Views.Toolbar.textSurface": "Поверхность", "SSE.Views.Toolbar.textSurface": "Поверхность",
"SSE.Views.Toolbar.textTabFile": "Файл",
"SSE.Views.Toolbar.textTabHome": "Главная",
"SSE.Views.Toolbar.textTabInsert": "Вставка",
"SSE.Views.Toolbar.textTopBorders": "Верхние границы", "SSE.Views.Toolbar.textTopBorders": "Верхние границы",
"SSE.Views.Toolbar.textUnderline": "Подчеркнутый", "SSE.Views.Toolbar.textUnderline": "Подчеркнутый",
"SSE.Views.Toolbar.textWinLossSpark": "Выигрыш/проигрыш", "SSE.Views.Toolbar.textWinLossSpark": "Выигрыш/проигрыш",
@ -1657,7 +1676,7 @@
"SSE.Views.Toolbar.tipDigStylePercent": "Процентный формат", "SSE.Views.Toolbar.tipDigStylePercent": "Процентный формат",
"SSE.Views.Toolbar.tipEditChart": "Изменить диаграмму", "SSE.Views.Toolbar.tipEditChart": "Изменить диаграмму",
"SSE.Views.Toolbar.tipFontColor": "Цвет шрифта", "SSE.Views.Toolbar.tipFontColor": "Цвет шрифта",
"SSE.Views.Toolbar.tipFontName": "Название шрифта", "SSE.Views.Toolbar.tipFontName": "Шрифт",
"SSE.Views.Toolbar.tipFontSize": "Размер шрифта", "SSE.Views.Toolbar.tipFontSize": "Размер шрифта",
"SSE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание", "SSE.Views.Toolbar.tipHAligh": "Горизонтальное выравнивание",
"SSE.Views.Toolbar.tipIncDecimal": "Увеличить разрядность", "SSE.Views.Toolbar.tipIncDecimal": "Увеличить разрядность",
@ -1670,10 +1689,9 @@
"SSE.Views.Toolbar.tipInsertOpt": "Вставить ячейки", "SSE.Views.Toolbar.tipInsertOpt": "Вставить ячейки",
"SSE.Views.Toolbar.tipInsertShape": "Вставить автофигуру", "SSE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
"SSE.Views.Toolbar.tipInsertText": "Вставить текст", "SSE.Views.Toolbar.tipInsertText": "Вставить текст",
"SSE.Views.Toolbar.tipInsertTextart": "Вставить объект Text Art",
"SSE.Views.Toolbar.tipMerge": "Объединить", "SSE.Views.Toolbar.tipMerge": "Объединить",
"SSE.Views.Toolbar.tipNewDocument": "Новый документ",
"SSE.Views.Toolbar.tipNumFormat": "Числовой формат", "SSE.Views.Toolbar.tipNumFormat": "Числовой формат",
"SSE.Views.Toolbar.tipOpenDocument": "Открыть документ",
"SSE.Views.Toolbar.tipPaste": "Вставить", "SSE.Views.Toolbar.tipPaste": "Вставить",
"SSE.Views.Toolbar.tipPrColor": "Цвет фона", "SSE.Views.Toolbar.tipPrColor": "Цвет фона",
"SSE.Views.Toolbar.tipPrint": "Печать", "SSE.Views.Toolbar.tipPrint": "Печать",

View file

@ -20,7 +20,7 @@
"Common.UI.SearchDialog.textTitle": "Nájsť a nahradiť", "Common.UI.SearchDialog.textTitle": "Nájsť a nahradiť",
"Common.UI.SearchDialog.textTitle2": "Nájsť", "Common.UI.SearchDialog.textTitle2": "Nájsť",
"Common.UI.SearchDialog.textWholeWords": "Len celé slová\n\n", "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.txtBtnReplace": "Nahradiť",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko", "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko",
"Common.UI.SynchronizeTip.textDontShow": "Už nezobrazovať túto správu", "Common.UI.SynchronizeTip.textDontShow": "Už nezobrazovať túto správu",
@ -65,15 +65,25 @@
"Common.Views.Comments.textResolve": "Vyriešiť", "Common.Views.Comments.textResolve": "Vyriešiť",
"Common.Views.Comments.textResolved": "Vyriešené", "Common.Views.Comments.textResolved": "Vyriešené",
"Common.Views.CopyWarningDialog.textDontShow": "Už nezobrazovať túto správu", "Common.Views.CopyWarningDialog.textDontShow": "Už nezobrazovať túto správu",
"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.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": "Kopírovať, vystrihnúť a prilepiť akcie", "Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť",
"Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie", "Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie",
"Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie", "Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie",
"Common.Views.CopyWarningDialog.textToPaste": "pre vloženie", "Common.Views.CopyWarningDialog.textToPaste": "pre vloženie",
"Common.Views.DocumentAccessDialog.textLoading": "Načítava.....", "Common.Views.DocumentAccessDialog.textLoading": "Načítava.....",
"Common.Views.DocumentAccessDialog.textTitle": "Nastavenie zdieľania", "Common.Views.DocumentAccessDialog.textTitle": "Nastavenie zdieľania",
"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.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.Header.txtRename": "Premenovať",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -83,7 +93,7 @@
"Common.Views.OpenDialog.cancelButtonText": "Zrušiť", "Common.Views.OpenDialog.cancelButtonText": "Zrušiť",
"Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.okButtonText": "OK",
"Common.Views.OpenDialog.txtDelimiter": "Oddeľovač", "Common.Views.OpenDialog.txtDelimiter": "Oddeľovač",
"Common.Views.OpenDialog.txtEncoding": "Kódovanie/zakódovanie", "Common.Views.OpenDialog.txtEncoding": "Kódovanie",
"Common.Views.OpenDialog.txtOther": "Ostatné", "Common.Views.OpenDialog.txtOther": "Ostatné",
"Common.Views.OpenDialog.txtPassword": "Heslo", "Common.Views.OpenDialog.txtPassword": "Heslo",
"Common.Views.OpenDialog.txtSpace": "Priestor", "Common.Views.OpenDialog.txtSpace": "Priestor",
@ -191,7 +201,7 @@
"SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formátovanie zdroja\n\n", "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formátovanie zdroja\n\n",
"SSE.Controllers.DocumentHolder.txtPasteTranspose": "Premiestňovať", "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Premiestňovať",
"SSE.Controllers.DocumentHolder.txtPasteValFormat": "Hodnota + všetky formátovania\n", "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Hodnota + všetky formátovania\n",
"SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Hodnota + formát čísla\n\n", "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Hodnota + formát čísla",
"SSE.Controllers.DocumentHolder.txtPasteValues": "Vložiť iba hodnotu", "SSE.Controllers.DocumentHolder.txtPasteValues": "Vložiť iba hodnotu",
"SSE.Controllers.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok",
"SSE.Controllers.DocumentHolder.txtRemLimit": "Odstrániť limitu", "SSE.Controllers.DocumentHolder.txtRemLimit": "Odstrániť limitu",
@ -403,7 +413,7 @@
"SSE.Controllers.Toolbar.textMatrix": "Matice", "SSE.Controllers.Toolbar.textMatrix": "Matice",
"SSE.Controllers.Toolbar.textOperator": "Operátory", "SSE.Controllers.Toolbar.textOperator": "Operátory",
"SSE.Controllers.Toolbar.textRadical": "Odmocniny", "SSE.Controllers.Toolbar.textRadical": "Odmocniny",
"SSE.Controllers.Toolbar.textScript": "Skripty", "SSE.Controllers.Toolbar.textScript": "Mocniny",
"SSE.Controllers.Toolbar.textSymbols": "Symboly", "SSE.Controllers.Toolbar.textSymbols": "Symboly",
"SSE.Controllers.Toolbar.textWarning": "Upozornenie", "SSE.Controllers.Toolbar.textWarning": "Upozornenie",
"SSE.Controllers.Toolbar.txtAccent_Accent": "Dĺžeň", "SSE.Controllers.Toolbar.txtAccent_Accent": "Dĺžeň",
@ -447,8 +457,8 @@
"SSE.Controllers.Toolbar.txtBracket_Custom_3": "Zložený objekt", "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Zložený objekt",
"SSE.Controllers.Toolbar.txtBracket_Custom_4": "Zložený objekt", "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Zložený objekt",
"SSE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov\n\n", "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov\n\n",
"SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient\n\n", "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient",
"SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient\n\n", "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient",
"SSE.Controllers.Toolbar.txtBracket_Line": "Zátvorky", "SSE.Controllers.Toolbar.txtBracket_Line": "Zátvorky",
"SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Zátvorka", "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Zátvorka",
"SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Zátvorka", "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Zátvorka",
@ -505,7 +515,7 @@
"SSE.Controllers.Toolbar.txtFunction_Csch": "Funkcia hyperbolický kosekans", "SSE.Controllers.Toolbar.txtFunction_Csch": "Funkcia hyperbolický kosekans",
"SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sínus theta ", "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sínus theta ",
"SSE.Controllers.Toolbar.txtFunction_Custom_2": "Kosínus 2x", "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Kosínus 2x",
"SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangentová rovnica\n\n", "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangentová rovnica",
"SSE.Controllers.Toolbar.txtFunction_Sec": "Funkcia sekans", "SSE.Controllers.Toolbar.txtFunction_Sec": "Funkcia sekans",
"SSE.Controllers.Toolbar.txtFunction_Sech": "Funkcia hyperbolický sekans", "SSE.Controllers.Toolbar.txtFunction_Sech": "Funkcia hyperbolický sekans",
"SSE.Controllers.Toolbar.txtFunction_Sin": "Funkcia sínus", "SSE.Controllers.Toolbar.txtFunction_Sin": "Funkcia sínus",
@ -575,9 +585,9 @@
"SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Zjednotenie", "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Zjednotenie",
"SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Zjednotenie", "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Zjednotenie",
"SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Príklad limitu", "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Príklad limitu",
"SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximálny príklad\n\n", "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximálny príklad",
"SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limita", "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limita",
"SSE.Controllers.Toolbar.txtLimitLog_Ln": "Prirodzený logaritmus\n\n", "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Prirodzený logaritmus",
"SSE.Controllers.Toolbar.txtLimitLog_Log": "Logaritmus", "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logaritmus",
"SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus", "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus",
"SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum",
@ -624,7 +634,7 @@
"SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Dvojité rovná sa", "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Dvojité rovná sa",
"SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Mínus rovná sa", "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Mínus rovná sa",
"SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus rovná sa", "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus rovná sa",
"SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Merať podľa\n\n", "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Merať podľa",
"SSE.Controllers.Toolbar.txtRadicalCustom_1": "Odmocniny", "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Odmocniny",
"SSE.Controllers.Toolbar.txtRadicalCustom_2": "Odmocniny", "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Odmocniny",
"SSE.Controllers.Toolbar.txtRadicalRoot_2": "Druhá odmocnina", "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Druhá odmocnina",
@ -766,7 +776,7 @@
"SSE.Views.AutoFilterDialog.txtTitle": "Filter", "SSE.Views.AutoFilterDialog.txtTitle": "Filter",
"SSE.Views.AutoFilterDialog.txtTop10": "Top 10", "SSE.Views.AutoFilterDialog.txtTop10": "Top 10",
"SSE.Views.AutoFilterDialog.warnNoSelected": "Musíte vybrať aspoň jednu hodnotu\n\n", "SSE.Views.AutoFilterDialog.warnNoSelected": "Musíte vybrať aspoň jednu hodnotu\n\n",
"SSE.Views.CellEditor.textManager": "Správca zázvov\n\n", "SSE.Views.CellEditor.textManager": "Správca názvov\n\n",
"SSE.Views.CellEditor.tipFormula": "Vložiť funkciu", "SSE.Views.CellEditor.tipFormula": "Vložiť funkciu",
"SSE.Views.CellRangeDialog.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255", "SSE.Views.CellRangeDialog.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255",
"SSE.Views.CellRangeDialog.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", "SSE.Views.CellRangeDialog.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n",
@ -816,14 +826,14 @@
"SSE.Views.ChartSettingsDlg.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", "SSE.Views.ChartSettingsDlg.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ",
"SSE.Views.ChartSettingsDlg.textAltTitle": "Názov", "SSE.Views.ChartSettingsDlg.textAltTitle": "Názov",
"SSE.Views.ChartSettingsDlg.textArea": "Plošný graf", "SSE.Views.ChartSettingsDlg.textArea": "Plošný graf",
"SSE.Views.ChartSettingsDlg.textAuto": "automaticky/automatický", "SSE.Views.ChartSettingsDlg.textAuto": "Automaticky",
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automaticky pre každé", "SSE.Views.ChartSettingsDlg.textAutoEach": "Automaticky pre každé",
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Kríženie os", "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Kríženie os",
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti osi", "SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti osi",
"SSE.Views.ChartSettingsDlg.textAxisPos": "Umiestnenie osi", "SSE.Views.ChartSettingsDlg.textAxisPos": "Umiestnenie osi",
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Nastavenia osi", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Nastavenia osi",
"SSE.Views.ChartSettingsDlg.textBar": "Vodorovná čiarka", "SSE.Views.ChartSettingsDlg.textBar": "Vodorovná čiarka",
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Medzi značkami rozsahu\n\n\n\n", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Medzi značkami rozsahu",
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardy", "SSE.Views.ChartSettingsDlg.textBillions": "Miliardy",
"SSE.Views.ChartSettingsDlg.textBottom": "Dole", "SSE.Views.ChartSettingsDlg.textBottom": "Dole",
"SSE.Views.ChartSettingsDlg.textCategoryName": "Meno kategórie", "SSE.Views.ChartSettingsDlg.textCategoryName": "Meno kategórie",
@ -832,7 +842,7 @@
"SSE.Views.ChartSettingsDlg.textChartTitle": "Názov grafu", "SSE.Views.ChartSettingsDlg.textChartTitle": "Názov grafu",
"SSE.Views.ChartSettingsDlg.textColumn": "Stĺpec", "SSE.Views.ChartSettingsDlg.textColumn": "Stĺpec",
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Stĺpec", "SSE.Views.ChartSettingsDlg.textColumnSpark": "Stĺpec",
"SSE.Views.ChartSettingsDlg.textCross": "Kríž/pretínať", "SSE.Views.ChartSettingsDlg.textCross": "Pretínať",
"SSE.Views.ChartSettingsDlg.textCustom": "Vlastný", "SSE.Views.ChartSettingsDlg.textCustom": "Vlastný",
"SSE.Views.ChartSettingsDlg.textDataColumns": "V stĺpcoch", "SSE.Views.ChartSettingsDlg.textDataColumns": "V stĺpcoch",
"SSE.Views.ChartSettingsDlg.textDataLabels": "Popisky dát\n\n", "SSE.Views.ChartSettingsDlg.textDataLabels": "Popisky dát\n\n",
@ -842,13 +852,13 @@
"SSE.Views.ChartSettingsDlg.textDisplayLegend": "Zobraziť legendu", "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Zobraziť legendu",
"SSE.Views.ChartSettingsDlg.textEmptyCells": "Skryté a prázdne bunky", "SSE.Views.ChartSettingsDlg.textEmptyCells": "Skryté a prázdne bunky",
"SSE.Views.ChartSettingsDlg.textEmptyLine": "Spojiť dátové body s riadkom\n\n", "SSE.Views.ChartSettingsDlg.textEmptyLine": "Spojiť dátové body s riadkom\n\n",
"SSE.Views.ChartSettingsDlg.textFit": "Prispôsobiť do formátu", "SSE.Views.ChartSettingsDlg.textFit": "Prispôsobiť na šírku",
"SSE.Views.ChartSettingsDlg.textFixed": "Fixný/napravený", "SSE.Views.ChartSettingsDlg.textFixed": "Fixný/napravený",
"SSE.Views.ChartSettingsDlg.textGaps": "Medzery", "SSE.Views.ChartSettingsDlg.textGaps": "Medzery",
"SSE.Views.ChartSettingsDlg.textGridLines": "Mriežky", "SSE.Views.ChartSettingsDlg.textGridLines": "Mriežky",
"SSE.Views.ChartSettingsDlg.textGroup": "Skupina Sparkline", "SSE.Views.ChartSettingsDlg.textGroup": "Skupina Sparkline",
"SSE.Views.ChartSettingsDlg.textHide": "Skryť", "SSE.Views.ChartSettingsDlg.textHide": "Skryť",
"SSE.Views.ChartSettingsDlg.textHigh": "Vysoký", "SSE.Views.ChartSettingsDlg.textHigh": "Vysoko",
"SSE.Views.ChartSettingsDlg.textHorAxis": "Vodorovná os", "SSE.Views.ChartSettingsDlg.textHorAxis": "Vodorovná os",
"SSE.Views.ChartSettingsDlg.textHorGrid": "Horizontálne mriežky\n\n", "SSE.Views.ChartSettingsDlg.textHorGrid": "Horizontálne mriežky\n\n",
"SSE.Views.ChartSettingsDlg.textHorizontal": "Vodorovný", "SSE.Views.ChartSettingsDlg.textHorizontal": "Vodorovný",
@ -876,31 +886,31 @@
"SSE.Views.ChartSettingsDlg.textLines": "Čiary", "SSE.Views.ChartSettingsDlg.textLines": "Čiary",
"SSE.Views.ChartSettingsDlg.textLineSpark": "Čiara", "SSE.Views.ChartSettingsDlg.textLineSpark": "Čiara",
"SSE.Views.ChartSettingsDlg.textLocationRange": "Rozsah umiestnenia", "SSE.Views.ChartSettingsDlg.textLocationRange": "Rozsah umiestnenia",
"SSE.Views.ChartSettingsDlg.textLow": "Nízky", "SSE.Views.ChartSettingsDlg.textLow": "Nízko",
"SSE.Views.ChartSettingsDlg.textMajor": "Hlavný\n", "SSE.Views.ChartSettingsDlg.textMajor": "Hlavný\n",
"SSE.Views.ChartSettingsDlg.textMajorMinor": "Hlavný a vedľajší", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Hlavný a vedľajší",
"SSE.Views.ChartSettingsDlg.textMajorType": "Hlavná značka\n\n", "SSE.Views.ChartSettingsDlg.textMajorType": "Hlavná značka\n\n",
"SSE.Views.ChartSettingsDlg.textManual": "Manuál/ručný", "SSE.Views.ChartSettingsDlg.textManual": "Manuál/ručný",
"SSE.Views.ChartSettingsDlg.textMarkers": "Značky", "SSE.Views.ChartSettingsDlg.textMarkers": "Značky",
"SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval medzi značkami\n\n", "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval medzi značkami",
"SSE.Views.ChartSettingsDlg.textMaxValue": "Maximálna hodnota", "SSE.Views.ChartSettingsDlg.textMaxValue": "Maximálna hodnota",
"SSE.Views.ChartSettingsDlg.textMillions": "Milióny", "SSE.Views.ChartSettingsDlg.textMillions": "Milióny",
"SSE.Views.ChartSettingsDlg.textMinor": "Vedľajší", "SSE.Views.ChartSettingsDlg.textMinor": "Vedľajší",
"SSE.Views.ChartSettingsDlg.textMinorType": "Vedľajšia značka", "SSE.Views.ChartSettingsDlg.textMinorType": "Vedľajšia značka",
"SSE.Views.ChartSettingsDlg.textMinValue": "Minimálna hodnota", "SSE.Views.ChartSettingsDlg.textMinValue": "Minimálna hodnota",
"SSE.Views.ChartSettingsDlg.textNextToAxis": "Vedľa osi\n\n", "SSE.Views.ChartSettingsDlg.textNextToAxis": "Vedľa osi",
"SSE.Views.ChartSettingsDlg.textNone": "Žiadny", "SSE.Views.ChartSettingsDlg.textNone": "Žiadny",
"SSE.Views.ChartSettingsDlg.textNoOverlay": "Žiadne prekrytie\n\n", "SSE.Views.ChartSettingsDlg.textNoOverlay": "Žiadne prekrytie",
"SSE.Views.ChartSettingsDlg.textOnTickMarks": "Na značkách", "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Na značkách",
"SSE.Views.ChartSettingsDlg.textOut": "Von/mimo", "SSE.Views.ChartSettingsDlg.textOut": "Von",
"SSE.Views.ChartSettingsDlg.textOuterTop": "Mimo hore\n\n", "SSE.Views.ChartSettingsDlg.textOuterTop": "Mimo hore",
"SSE.Views.ChartSettingsDlg.textOverlay": "Prekrytie", "SSE.Views.ChartSettingsDlg.textOverlay": "Prekrytie",
"SSE.Views.ChartSettingsDlg.textPie": "Koláčový graf", "SSE.Views.ChartSettingsDlg.textPie": "Koláčový graf",
"SSE.Views.ChartSettingsDlg.textPoint": "Bodový graf", "SSE.Views.ChartSettingsDlg.textPoint": "Bodový graf",
"SSE.Views.ChartSettingsDlg.textReverse": "Hodnoty v opačnom poradí", "SSE.Views.ChartSettingsDlg.textReverse": "Hodnoty v opačnom poradí",
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Obrátené poradie\n", "SSE.Views.ChartSettingsDlg.textReverseOrder": "Obrátené poradie\n",
"SSE.Views.ChartSettingsDlg.textRight": "Vpravo", "SSE.Views.ChartSettingsDlg.textRight": "Vpravo",
"SSE.Views.ChartSettingsDlg.textRightOverlay": "Pravé prekrytie\n\n", "SSE.Views.ChartSettingsDlg.textRightOverlay": "Pravé prekrytie",
"SSE.Views.ChartSettingsDlg.textRotated": "Otočený", "SSE.Views.ChartSettingsDlg.textRotated": "Otočený",
"SSE.Views.ChartSettingsDlg.textSameAll": "Rovnaké pre všetky", "SSE.Views.ChartSettingsDlg.textSameAll": "Rovnaké pre všetky",
"SSE.Views.ChartSettingsDlg.textSelectData": "Vybrať údaje", "SSE.Views.ChartSettingsDlg.textSelectData": "Vybrať údaje",
@ -924,7 +934,7 @@
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
"SSE.Views.ChartSettingsDlg.textThousands": "Tisíce\n\n", "SSE.Views.ChartSettingsDlg.textThousands": "Tisíce\n\n",
"SSE.Views.ChartSettingsDlg.textTickOptions": "Začiarknuť/označiť možnosti\n\n", "SSE.Views.ChartSettingsDlg.textTickOptions": "Možnosti značiek\n\n",
"SSE.Views.ChartSettingsDlg.textTitle": "Graf - Pokročilé nastavenia", "SSE.Views.ChartSettingsDlg.textTitle": "Graf - Pokročilé nastavenia",
"SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Pokročilé nastavenia", "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Pokročilé nastavenia",
"SSE.Views.ChartSettingsDlg.textTop": "Hore", "SSE.Views.ChartSettingsDlg.textTop": "Hore",
@ -971,8 +981,8 @@
"SSE.Views.DocumentHolder.deleteColumnText": "Stĺpec", "SSE.Views.DocumentHolder.deleteColumnText": "Stĺpec",
"SSE.Views.DocumentHolder.deleteRowText": "Riadok", "SSE.Views.DocumentHolder.deleteRowText": "Riadok",
"SSE.Views.DocumentHolder.deleteTableText": "Tabuľka", "SSE.Views.DocumentHolder.deleteTableText": "Tabuľka",
"SSE.Views.DocumentHolder.direct270Text": "Otočiť text nahor\n", "SSE.Views.DocumentHolder.direct270Text": "Otočiť text nahor",
"SSE.Views.DocumentHolder.direct90Text": "Otočiť text nadol\n\n", "SSE.Views.DocumentHolder.direct90Text": "Otočiť text nadol",
"SSE.Views.DocumentHolder.directHText": "Vodorovný", "SSE.Views.DocumentHolder.directHText": "Vodorovný",
"SSE.Views.DocumentHolder.directionText": "Smer textu", "SSE.Views.DocumentHolder.directionText": "Smer textu",
"SSE.Views.DocumentHolder.editChartText": "Upravovať dáta", "SSE.Views.DocumentHolder.editChartText": "Upravovať dáta",
@ -1112,7 +1122,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Bod", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Bod",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ruština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ruština",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ako Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ako Windows",
"SSE.Views.FileMenuPanels.Settings.txtGeneral": "Všeobecný", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Všeobecné",
"SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Nastavenie stránky", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Nastavenie stránky",
"SSE.Views.FormatSettingsDialog.textCancel": "Zrušiť", "SSE.Views.FormatSettingsDialog.textCancel": "Zrušiť",
"SSE.Views.FormatSettingsDialog.textCategory": "Kategória", "SSE.Views.FormatSettingsDialog.textCategory": "Kategória",
@ -1121,7 +1131,7 @@
"SSE.Views.FormatSettingsDialog.textOk": "OK", "SSE.Views.FormatSettingsDialog.textOk": "OK",
"SSE.Views.FormatSettingsDialog.textSeparator": "Použiť oddeľovač 1000", "SSE.Views.FormatSettingsDialog.textSeparator": "Použiť oddeľovač 1000",
"SSE.Views.FormatSettingsDialog.textSymbols": "Symboly", "SSE.Views.FormatSettingsDialog.textSymbols": "Symboly",
"SSE.Views.FormatSettingsDialog.textTitle": "Formát čísla\n\n", "SSE.Views.FormatSettingsDialog.textTitle": "Formát čísla",
"SSE.Views.FormatSettingsDialog.txtAccounting": "Účtovníctvo", "SSE.Views.FormatSettingsDialog.txtAccounting": "Účtovníctvo",
"SSE.Views.FormatSettingsDialog.txtAs10": "Ako desatiny (5/10)", "SSE.Views.FormatSettingsDialog.txtAs10": "Ako desatiny (5/10)",
"SSE.Views.FormatSettingsDialog.txtAs100": "Ako stotiny (50/100)", "SSE.Views.FormatSettingsDialog.txtAs100": "Ako stotiny (50/100)",
@ -1133,7 +1143,7 @@
"SSE.Views.FormatSettingsDialog.txtCustom": "Vlastný", "SSE.Views.FormatSettingsDialog.txtCustom": "Vlastný",
"SSE.Views.FormatSettingsDialog.txtDate": "Dátum", "SSE.Views.FormatSettingsDialog.txtDate": "Dátum",
"SSE.Views.FormatSettingsDialog.txtFraction": "Zlomok", "SSE.Views.FormatSettingsDialog.txtFraction": "Zlomok",
"SSE.Views.FormatSettingsDialog.txtGeneral": "Všeobecný", "SSE.Views.FormatSettingsDialog.txtGeneral": "Všeobecné",
"SSE.Views.FormatSettingsDialog.txtNumber": "Číslo", "SSE.Views.FormatSettingsDialog.txtNumber": "Číslo",
"SSE.Views.FormatSettingsDialog.txtPercentage": "Percentuálny podiel", "SSE.Views.FormatSettingsDialog.txtPercentage": "Percentuálny podiel",
"SSE.Views.FormatSettingsDialog.txtSample": "Príklad:", "SSE.Views.FormatSettingsDialog.txtSample": "Príklad:",
@ -1195,10 +1205,10 @@
"SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Tu zadajte odkaz\n\n", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Tu zadajte odkaz\n\n",
"SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku\n\n", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku\n\n",
"SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz",
"SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Interný rozsah údajov\n\n", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Interný rozsah údajov",
"SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "CHYBA! Neplatný rozsah buniek", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "CHYBA! Neplatný rozsah buniek",
"SSE.Views.HyperlinkSettingsDialog.textLinkType": "Typ odkazu", "SSE.Views.HyperlinkSettingsDialog.textLinkType": "Typ odkazu",
"SSE.Views.HyperlinkSettingsDialog.textTipText": "Text rady na obrazovke", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Popis",
"SSE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu",
"SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n",
"SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'",
@ -1267,7 +1277,7 @@
"SSE.Views.NamedRangeEditDlg.txtTitleNew": "Nový názov", "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Nový názov",
"SSE.Views.NamedRangePasteDlg.cancelButtonText": "Zrušiť", "SSE.Views.NamedRangePasteDlg.cancelButtonText": "Zrušiť",
"SSE.Views.NamedRangePasteDlg.okButtonText": "OK", "SSE.Views.NamedRangePasteDlg.okButtonText": "OK",
"SSE.Views.NamedRangePasteDlg.textNames": "Pomenované rozsahy\n\n", "SSE.Views.NamedRangePasteDlg.textNames": "Pomenované rozsahy",
"SSE.Views.NamedRangePasteDlg.txtTitle": "Vložiť názov", "SSE.Views.NamedRangePasteDlg.txtTitle": "Vložiť názov",
"SSE.Views.NameManagerDlg.closeButtonText": "Zatvoriť", "SSE.Views.NameManagerDlg.closeButtonText": "Zatvoriť",
"SSE.Views.NameManagerDlg.guestText": "Návštevník", "SSE.Views.NameManagerDlg.guestText": "Návštevník",
@ -1284,11 +1294,11 @@
"SSE.Views.NameManagerDlg.textFilterWorkbook": "Rozsah názvov do zošita", "SSE.Views.NameManagerDlg.textFilterWorkbook": "Rozsah názvov do zošita",
"SSE.Views.NameManagerDlg.textNew": "Nový", "SSE.Views.NameManagerDlg.textNew": "Nový",
"SSE.Views.NameManagerDlg.textnoNames": "Neboli nájdené žiadne pomenované rozsahy zodpovedajúce vášmu filtrovaniu.\n\n", "SSE.Views.NameManagerDlg.textnoNames": "Neboli nájdené žiadne pomenované rozsahy zodpovedajúce vášmu filtrovaniu.\n\n",
"SSE.Views.NameManagerDlg.textRanges": "Pomenované rozsahy\n\n", "SSE.Views.NameManagerDlg.textRanges": "Pomenované rozsahy",
"SSE.Views.NameManagerDlg.textScope": "Rámec/rozsah", "SSE.Views.NameManagerDlg.textScope": "Rámec/rozsah",
"SSE.Views.NameManagerDlg.textWorkbook": "Zošit", "SSE.Views.NameManagerDlg.textWorkbook": "Zošit",
"SSE.Views.NameManagerDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.", "SSE.Views.NameManagerDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.",
"SSE.Views.NameManagerDlg.txtTitle": "Správca zázvov\n\n", "SSE.Views.NameManagerDlg.txtTitle": "Správca názvov\n\n",
"SSE.Views.ParagraphSettings.strLineHeight": "Riadkovanie", "SSE.Views.ParagraphSettings.strLineHeight": "Riadkovanie",
"SSE.Views.ParagraphSettings.strParagraphSpacing": "Riadkovanie medzi odstavcami", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Riadkovanie medzi odstavcami",
"SSE.Views.ParagraphSettings.strSpacingAfter": "Za", "SSE.Views.ParagraphSettings.strSpacingAfter": "Za",
@ -1352,7 +1362,7 @@
"SSE.Views.PrintSettings.textPrintRange": "Rozsah tlače", "SSE.Views.PrintSettings.textPrintRange": "Rozsah tlače",
"SSE.Views.PrintSettings.textSelection": "Výber", "SSE.Views.PrintSettings.textSelection": "Výber",
"SSE.Views.PrintSettings.textSettings": "Nastavenie listu", "SSE.Views.PrintSettings.textSettings": "Nastavenie listu",
"SSE.Views.PrintSettings.textShowDetails": "Zobraziť podrobnosti\n\n", "SSE.Views.PrintSettings.textShowDetails": "Zobraziť detaily\n\n",
"SSE.Views.PrintSettings.textTitle": "Nastavenia tlače", "SSE.Views.PrintSettings.textTitle": "Nastavenia tlače",
"SSE.Views.RightMenu.txtChartSettings": "Nastavenia grafu", "SSE.Views.RightMenu.txtChartSettings": "Nastavenia grafu",
"SSE.Views.RightMenu.txtImageSettings": "Nastavenie obrázka", "SSE.Views.RightMenu.txtImageSettings": "Nastavenie obrázka",
@ -1367,13 +1377,13 @@
"SSE.Views.SetValueDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}\n\n", "SSE.Views.SetValueDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}\n\n",
"SSE.Views.SetValueDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}\n\n", "SSE.Views.SetValueDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}\n\n",
"SSE.Views.ShapeSettings.strBackground": "Farba pozadia", "SSE.Views.ShapeSettings.strBackground": "Farba pozadia",
"SSE.Views.ShapeSettings.strChange": "Zmeniť automatický tvar\n\n", "SSE.Views.ShapeSettings.strChange": "Zmeniť automatický tvar",
"SSE.Views.ShapeSettings.strColor": "Farba", "SSE.Views.ShapeSettings.strColor": "Farba",
"SSE.Views.ShapeSettings.strFill": "Vyplniť", "SSE.Views.ShapeSettings.strFill": "Vyplniť",
"SSE.Views.ShapeSettings.strForeground": "Farba popredia", "SSE.Views.ShapeSettings.strForeground": "Farba popredia",
"SSE.Views.ShapeSettings.strPattern": "Vzor", "SSE.Views.ShapeSettings.strPattern": "Vzor",
"SSE.Views.ShapeSettings.strSize": "Veľkosť", "SSE.Views.ShapeSettings.strSize": "Veľkosť",
"SSE.Views.ShapeSettings.strStroke": "Ťah/črta", "SSE.Views.ShapeSettings.strStroke": "Obrys",
"SSE.Views.ShapeSettings.strTransparency": "Priehľadnosť", "SSE.Views.ShapeSettings.strTransparency": "Priehľadnosť",
"SSE.Views.ShapeSettings.strType": "Typ", "SSE.Views.ShapeSettings.strType": "Typ",
"SSE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
@ -1385,7 +1395,7 @@
"SSE.Views.ShapeSettings.textFromUrl": "Z URL adresy ", "SSE.Views.ShapeSettings.textFromUrl": "Z URL adresy ",
"SSE.Views.ShapeSettings.textGradient": "Prechod", "SSE.Views.ShapeSettings.textGradient": "Prechod",
"SSE.Views.ShapeSettings.textGradientFill": "Výplň prechodom", "SSE.Views.ShapeSettings.textGradientFill": "Výplň prechodom",
"SSE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra\n\n", "SSE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra",
"SSE.Views.ShapeSettings.textLinear": "Lineárny/čiarový", "SSE.Views.ShapeSettings.textLinear": "Lineárny/čiarový",
"SSE.Views.ShapeSettings.textNewColor": "Vlastná farba", "SSE.Views.ShapeSettings.textNewColor": "Vlastná farba",
"SSE.Views.ShapeSettings.textNoFill": "Bez výplne", "SSE.Views.ShapeSettings.textNoFill": "Bez výplne",
@ -1420,13 +1430,13 @@
"SSE.Views.ShapeSettingsAdvanced.textArrows": "Šípky", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Šípky",
"SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Veľkosť začiatku", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Veľkosť začiatku",
"SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Štýl začiatku", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Štýl začiatku",
"SSE.Views.ShapeSettingsAdvanced.textBevel": "Šikmý sklon/strana, úprava okraja", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Skosenie",
"SSE.Views.ShapeSettingsAdvanced.textBottom": "Dole", "SSE.Views.ShapeSettingsAdvanced.textBottom": "Dole",
"SSE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia\n", "SSE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia\n",
"SSE.Views.ShapeSettingsAdvanced.textColNumber": "Počet stĺpcov\n\n", "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Počet stĺpcov\n\n",
"SSE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca",
"SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Štýl konca", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Štýl konca",
"SSE.Views.ShapeSettingsAdvanced.textFlat": "Rovný/plochý", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Plochý",
"SSE.Views.ShapeSettingsAdvanced.textHeight": "Výška", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Výška",
"SSE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia\n\n", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia\n\n",
"SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n",
@ -1434,13 +1444,13 @@
"SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary\n\n", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary\n\n",
"SSE.Views.ShapeSettingsAdvanced.textMiter": "Sklon", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Sklon",
"SSE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "SSE.Views.ShapeSettingsAdvanced.textRight": "Vpravo",
"SSE.Views.ShapeSettingsAdvanced.textRound": "Kruh/dookola", "SSE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené",
"SSE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť", "SSE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť",
"SSE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami\n\n", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami\n\n",
"SSE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec/druhá mocnina", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec",
"SSE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavenia", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavenia",
"SSE.Views.ShapeSettingsAdvanced.textTop": "Hore", "SSE.Views.ShapeSettingsAdvanced.textTop": "Hore",
"SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Hmotnosti a šípky\n\n", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru\n\n",
"SSE.Views.ShapeSettingsAdvanced.textWidth": "Šírka", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Šírka",
"SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopírovať na koniec)", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopírovať na koniec)",
"SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Presunúť na koniec)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Presunúť na koniec)",
@ -1464,18 +1474,14 @@
"SSE.Views.Statusbar.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.Statusbar.textNewColor": "Pridať novú vlastnú farbu",
"SSE.Views.Statusbar.textNoColor": "Bez farby", "SSE.Views.Statusbar.textNoColor": "Bez farby",
"SSE.Views.Statusbar.textSum": "SÚČET", "SSE.Views.Statusbar.textSum": "SÚČET",
"SSE.Views.Statusbar.tipAccessRights": "Spravovať prístupové práva k dokumentom\n\n",
"SSE.Views.Statusbar.tipAddTab": "Pridať pracovný hárok", "SSE.Views.Statusbar.tipAddTab": "Pridať pracovný hárok",
"SSE.Views.Statusbar.tipFirst": "Prejsť na prvý list\n\n", "SSE.Views.Statusbar.tipFirst": "Prejsť na prvý list\n\n",
"SSE.Views.Statusbar.tipLast": "Prejsť na posledný list\n", "SSE.Views.Statusbar.tipLast": "Prejsť na posledný list\n",
"SSE.Views.Statusbar.tipNext": "Posunúť zoznam listov vpravo\n", "SSE.Views.Statusbar.tipNext": "Posunúť zoznam listov vpravo\n",
"SSE.Views.Statusbar.tipPrev": "Posunúť zoznam listov vľavo\n\n", "SSE.Views.Statusbar.tipPrev": "Posunúť zoznam listov vľavo\n\n",
"SSE.Views.Statusbar.tipUsers": "Dokument v súčasnosti upravuje niekoľko používateľov.\n\n",
"SSE.Views.Statusbar.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom\n\n",
"SSE.Views.Statusbar.tipZoomFactor": "Zväčšenie/zväčšenie veľkosti\n", "SSE.Views.Statusbar.tipZoomFactor": "Zväčšenie/zväčšenie veľkosti\n",
"SSE.Views.Statusbar.tipZoomIn": "Priblížiť", "SSE.Views.Statusbar.tipZoomIn": "Priblížiť",
"SSE.Views.Statusbar.tipZoomOut": "Oddialiť", "SSE.Views.Statusbar.tipZoomOut": "Oddialiť",
"SSE.Views.Statusbar.txAccessRights": "Zmeniť prístupové práva",
"SSE.Views.Statusbar.zoomText": "Priblíženie {0}%", "SSE.Views.Statusbar.zoomText": "Priblíženie {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.<br>Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.\n\n", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.<br>Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.\n\n",
"SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.<br>Vyberte rozsah tak, aby prvý riadok tabuľky bol na rovnakom riadku<br>a výsledná tabuľka sa prekrývala s aktuálnou.\n", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.<br>Vyberte rozsah tak, aby prvý riadok tabuľky bol na rovnakom riadku<br>a výsledná tabuľka sa prekrývala s aktuálnou.\n",
@ -1534,7 +1540,7 @@
"SSE.Views.TextArtSettings.strForeground": "Farba popredia", "SSE.Views.TextArtSettings.strForeground": "Farba popredia",
"SSE.Views.TextArtSettings.strPattern": "Vzor", "SSE.Views.TextArtSettings.strPattern": "Vzor",
"SSE.Views.TextArtSettings.strSize": "Veľkosť", "SSE.Views.TextArtSettings.strSize": "Veľkosť",
"SSE.Views.TextArtSettings.strStroke": "Ťah/črta", "SSE.Views.TextArtSettings.strStroke": "Obrys",
"SSE.Views.TextArtSettings.strTransparency": "Priehľadnosť", "SSE.Views.TextArtSettings.strTransparency": "Priehľadnosť",
"SSE.Views.TextArtSettings.strType": "Typ", "SSE.Views.TextArtSettings.strType": "Typ",
"SSE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.\n", "SSE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.\n",
@ -1545,7 +1551,7 @@
"SSE.Views.TextArtSettings.textFromUrl": "Z URL adresy ", "SSE.Views.TextArtSettings.textFromUrl": "Z URL adresy ",
"SSE.Views.TextArtSettings.textGradient": "Prechod", "SSE.Views.TextArtSettings.textGradient": "Prechod",
"SSE.Views.TextArtSettings.textGradientFill": "Výplň prechodom", "SSE.Views.TextArtSettings.textGradientFill": "Výplň prechodom",
"SSE.Views.TextArtSettings.textImageTexture": "Obrázok alebo textúra\n\n", "SSE.Views.TextArtSettings.textImageTexture": "Obrázok alebo textúra",
"SSE.Views.TextArtSettings.textLinear": "Lineárny/čiarový", "SSE.Views.TextArtSettings.textLinear": "Lineárny/čiarový",
"SSE.Views.TextArtSettings.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.TextArtSettings.textNewColor": "Pridať novú vlastnú farbu",
"SSE.Views.TextArtSettings.textNoFill": "Bez výplne", "SSE.Views.TextArtSettings.textNoFill": "Bez výplne",
@ -1570,6 +1576,13 @@
"SSE.Views.TextArtSettings.txtNoBorders": "Bez čiary", "SSE.Views.TextArtSettings.txtNoBorders": "Bez čiary",
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Drevo", "SSE.Views.TextArtSettings.txtWood": "Drevo",
"SSE.Views.Toolbar.capInsertChart": "Graf",
"SSE.Views.Toolbar.capInsertEquation": "Rovnica",
"SSE.Views.Toolbar.capInsertHyperlink": "Hypertextový odkaz",
"SSE.Views.Toolbar.capInsertImage": "Obrázok",
"SSE.Views.Toolbar.capInsertShape": "Tvar",
"SSE.Views.Toolbar.capInsertTable": "Tabuľka",
"SSE.Views.Toolbar.capInsertText": "Textové pole\n\n",
"SSE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", "SSE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru",
"SSE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", "SSE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy",
"SSE.Views.Toolbar.textAlignBottom": "Zarovnať dole", "SSE.Views.Toolbar.textAlignBottom": "Zarovnať dole",
@ -1586,17 +1599,17 @@
"SSE.Views.Toolbar.textBordersColor": "Farba orámovania", "SSE.Views.Toolbar.textBordersColor": "Farba orámovania",
"SSE.Views.Toolbar.textBordersStyle": "Štýl orámovania", "SSE.Views.Toolbar.textBordersStyle": "Štýl orámovania",
"SSE.Views.Toolbar.textBottomBorders": "Spodné orámovanie", "SSE.Views.Toolbar.textBottomBorders": "Spodné orámovanie",
"SSE.Views.Toolbar.textCenterBorders": "Vnútorné vertikálne hranice\n", "SSE.Views.Toolbar.textCenterBorders": "Vnútorné vertikálne orámovanie\n",
"SSE.Views.Toolbar.textCharts": "Grafy", "SSE.Views.Toolbar.textCharts": "Grafy",
"SSE.Views.Toolbar.textClockwise": "Uhol v smere hodinových ručičiek\n\n", "SSE.Views.Toolbar.textClockwise": "Otočiť v smere hodinových ručičiek",
"SSE.Views.Toolbar.textColumn": "Stĺpec", "SSE.Views.Toolbar.textColumn": "Stĺpec",
"SSE.Views.Toolbar.textColumnSpark": "Stĺpec", "SSE.Views.Toolbar.textColumnSpark": "Stĺpec",
"SSE.Views.Toolbar.textCompactToolbar": "Zobraziť kompaktnú lištu nástrojov", "SSE.Views.Toolbar.textCompactToolbar": "Zobraziť kompaktnú lištu nástrojov",
"SSE.Views.Toolbar.textCounterCw": "Uhol proti smeru hodinových ručičiek\n\n", "SSE.Views.Toolbar.textCounterCw": "Otočiť proti smeru hodinových ručičiek",
"SSE.Views.Toolbar.textDelLeft": "Posunúť bunky vľavo\n", "SSE.Views.Toolbar.textDelLeft": "Posunúť bunky vľavo\n",
"SSE.Views.Toolbar.textDelUp": "Posunúť bunky hore\n", "SSE.Views.Toolbar.textDelUp": "Posunúť bunky hore\n",
"SSE.Views.Toolbar.textDiagDownBorder": "Diagonálna dolná hranica\n\n", "SSE.Views.Toolbar.textDiagDownBorder": "Orámovanie diagonálne nadol",
"SSE.Views.Toolbar.textDiagUpBorder": "Diagonálna horná hranica\n", "SSE.Views.Toolbar.textDiagUpBorder": "Orámovanie diagonálne nahor",
"SSE.Views.Toolbar.textEntireCol": "Celý stĺpec\n\n", "SSE.Views.Toolbar.textEntireCol": "Celý stĺpec\n\n",
"SSE.Views.Toolbar.textEntireRow": "Celý riadok\n\n", "SSE.Views.Toolbar.textEntireRow": "Celý riadok\n\n",
"SSE.Views.Toolbar.textFreezePanes": "Ukotviť priečky", "SSE.Views.Toolbar.textFreezePanes": "Ukotviť priečky",
@ -1606,30 +1619,31 @@
"SSE.Views.Toolbar.textHideTBar": "Skryť lištu nadpisu\n\n", "SSE.Views.Toolbar.textHideTBar": "Skryť lištu nadpisu\n\n",
"SSE.Views.Toolbar.textHorizontal": "Horizontálny Text\n", "SSE.Views.Toolbar.textHorizontal": "Horizontálny Text\n",
"SSE.Views.Toolbar.textInsDown": "Posunúť bunky dole\n\n", "SSE.Views.Toolbar.textInsDown": "Posunúť bunky dole\n\n",
"SSE.Views.Toolbar.textInsideBorders": "Vnútorné hranice\n\n", "SSE.Views.Toolbar.textInsideBorders": "Vnútorné orámovanie\n\n",
"SSE.Views.Toolbar.textInsRight": "Posunúť bunky vpravo\n", "SSE.Views.Toolbar.textInsRight": "Posunúť bunky vpravo\n",
"SSE.Views.Toolbar.textInsText": "Vložiť textové pole",
"SSE.Views.Toolbar.textInsTextArt": "Vložiť Text Art",
"SSE.Views.Toolbar.textItalic": "Kurzíva", "SSE.Views.Toolbar.textItalic": "Kurzíva",
"SSE.Views.Toolbar.textLeftBorders": "Hranice vľavo\n\n", "SSE.Views.Toolbar.textLeftBorders": "Orámovanie vľavo\n\n",
"SSE.Views.Toolbar.textLine": "Čiara", "SSE.Views.Toolbar.textLine": "Čiara",
"SSE.Views.Toolbar.textLineSpark": "Čiara", "SSE.Views.Toolbar.textLineSpark": "Čiara",
"SSE.Views.Toolbar.textMiddleBorders": "Vnútorné horizontálne hranice\n\n", "SSE.Views.Toolbar.textMiddleBorders": "Vnútorné horizontálne orámovanie\n\n",
"SSE.Views.Toolbar.textMoreFormats": "Ďalšie formáty\n\n", "SSE.Views.Toolbar.textMoreFormats": "Ďalšie formáty",
"SSE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu",
"SSE.Views.Toolbar.textNoBorders": "Bez orámovania", "SSE.Views.Toolbar.textNoBorders": "Bez orámovania",
"SSE.Views.Toolbar.textOutBorders": "Vonkajšie hranice\n\n", "SSE.Views.Toolbar.textOutBorders": "Vonkajšie orámovanie\n\n",
"SSE.Views.Toolbar.textPie": "Koláčový graf", "SSE.Views.Toolbar.textPie": "Koláčový graf",
"SSE.Views.Toolbar.textPoint": "Bodový graf", "SSE.Views.Toolbar.textPoint": "Bodový graf",
"SSE.Views.Toolbar.textPrint": "Tlačiť", "SSE.Views.Toolbar.textPrint": "Tlačiť",
"SSE.Views.Toolbar.textPrintOptions": "Nastavenia tlače", "SSE.Views.Toolbar.textPrintOptions": "Nastavenia tlače",
"SSE.Views.Toolbar.textRightBorders": "Hranice vpravo", "SSE.Views.Toolbar.textRightBorders": "Orámovanie vpravo",
"SSE.Views.Toolbar.textRotateDown": "Otočiť text nadol\n\n", "SSE.Views.Toolbar.textRotateDown": "Otočiť text nadol",
"SSE.Views.Toolbar.textRotateUp": "Otočiť text nahor\n", "SSE.Views.Toolbar.textRotateUp": "Otočiť text nahor",
"SSE.Views.Toolbar.textSparks": "Sparklines", "SSE.Views.Toolbar.textSparks": "Sparklines",
"SSE.Views.Toolbar.textStock": "Akcie/burzový graf", "SSE.Views.Toolbar.textStock": "Akcie/burzový graf",
"SSE.Views.Toolbar.textSurface": "Povrch", "SSE.Views.Toolbar.textSurface": "Povrch",
"SSE.Views.Toolbar.textTopBorders": "Horné hranice\n\n", "SSE.Views.Toolbar.textTabFile": "Súbor",
"SSE.Views.Toolbar.textTabHome": "Hlavná stránka",
"SSE.Views.Toolbar.textTabInsert": "Vložiť",
"SSE.Views.Toolbar.textTopBorders": "Horné orámovanie\n\n",
"SSE.Views.Toolbar.textUnderline": "Podčiarknuť", "SSE.Views.Toolbar.textUnderline": "Podčiarknuť",
"SSE.Views.Toolbar.textWinLossSpark": "Zisk/strata", "SSE.Views.Toolbar.textWinLossSpark": "Zisk/strata",
"SSE.Views.Toolbar.textZoom": "Priblíženie", "SSE.Views.Toolbar.textZoom": "Priblíženie",
@ -1649,18 +1663,18 @@
"SSE.Views.Toolbar.tipColorSchemas": "Zmeniť farebnú schému", "SSE.Views.Toolbar.tipColorSchemas": "Zmeniť farebnú schému",
"SSE.Views.Toolbar.tipCopy": "Kopírovať", "SSE.Views.Toolbar.tipCopy": "Kopírovať",
"SSE.Views.Toolbar.tipCopyStyle": "Kopírovať štýl", "SSE.Views.Toolbar.tipCopyStyle": "Kopírovať štýl",
"SSE.Views.Toolbar.tipDecDecimal": "Znížiť desatinné číslo", "SSE.Views.Toolbar.tipDecDecimal": "Znížiť počet desatinných miest",
"SSE.Views.Toolbar.tipDecFont": "Zmenšiť veľkosť písma", "SSE.Views.Toolbar.tipDecFont": "Zmenšiť veľkosť písma",
"SSE.Views.Toolbar.tipDeleteOpt": "Odstrániť bunky", "SSE.Views.Toolbar.tipDeleteOpt": "Odstrániť bunky",
"SSE.Views.Toolbar.tipDigStyleAccounting": "Štýl účtovníctva", "SSE.Views.Toolbar.tipDigStyleAccounting": "Štýl účtovníctva",
"SSE.Views.Toolbar.tipDigStyleCurrency": "Formát/štýl meny", "SSE.Views.Toolbar.tipDigStyleCurrency": "Formát/štýl meny",
"SSE.Views.Toolbar.tipDigStylePercent": "Štýl/formát percent", "SSE.Views.Toolbar.tipDigStylePercent": "Štýl percent",
"SSE.Views.Toolbar.tipEditChart": "Upraviť graf", "SSE.Views.Toolbar.tipEditChart": "Upraviť graf",
"SSE.Views.Toolbar.tipFontColor": "Farba písma", "SSE.Views.Toolbar.tipFontColor": "Farba písma",
"SSE.Views.Toolbar.tipFontName": "Názov písma", "SSE.Views.Toolbar.tipFontName": "Názov písma",
"SSE.Views.Toolbar.tipFontSize": "Veľkosť písma", "SSE.Views.Toolbar.tipFontSize": "Veľkosť písma",
"SSE.Views.Toolbar.tipHAligh": "Vodorovné zarovnanie", "SSE.Views.Toolbar.tipHAligh": "Vodorovné zarovnanie",
"SSE.Views.Toolbar.tipIncDecimal": "Zvýšiť desatinnú hodnotu\n\n", "SSE.Views.Toolbar.tipIncDecimal": "Zvýšiť počet desatinných miest",
"SSE.Views.Toolbar.tipIncFont": "Zväčšiť veľkosť písma", "SSE.Views.Toolbar.tipIncFont": "Zväčšiť veľkosť písma",
"SSE.Views.Toolbar.tipInsertChart": "Vložiť graf", "SSE.Views.Toolbar.tipInsertChart": "Vložiť graf",
"SSE.Views.Toolbar.tipInsertChartSpark": "Vložiť graf alebo Sparkline", "SSE.Views.Toolbar.tipInsertChartSpark": "Vložiť graf alebo Sparkline",
@ -1668,12 +1682,10 @@
"SSE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz", "SSE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz",
"SSE.Views.Toolbar.tipInsertImage": "Vložiť obrázok", "SSE.Views.Toolbar.tipInsertImage": "Vložiť obrázok",
"SSE.Views.Toolbar.tipInsertOpt": "Vložiť bunky", "SSE.Views.Toolbar.tipInsertOpt": "Vložiť bunky",
"SSE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar\n\n", "SSE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar",
"SSE.Views.Toolbar.tipInsertText": "Vložiť text", "SSE.Views.Toolbar.tipInsertText": "Vložiť text",
"SSE.Views.Toolbar.tipMerge": "Zlúčiť", "SSE.Views.Toolbar.tipMerge": "Zlúčiť",
"SSE.Views.Toolbar.tipNewDocument": "Nový dokument", "SSE.Views.Toolbar.tipNumFormat": "Formát čísla",
"SSE.Views.Toolbar.tipNumFormat": "Formát čísla\n\n",
"SSE.Views.Toolbar.tipOpenDocument": "Otvoriť dokument",
"SSE.Views.Toolbar.tipPaste": "Vložiť", "SSE.Views.Toolbar.tipPaste": "Vložiť",
"SSE.Views.Toolbar.tipPrColor": "Farba pozadia", "SSE.Views.Toolbar.tipPrColor": "Farba pozadia",
"SSE.Views.Toolbar.tipPrint": "Tlačiť", "SSE.Views.Toolbar.tipPrint": "Tlačiť",
@ -1685,7 +1697,7 @@
"SSE.Views.Toolbar.tipUndo": "Krok späť", "SSE.Views.Toolbar.tipUndo": "Krok späť",
"SSE.Views.Toolbar.tipVAligh": "Vertikálne zarovnanie", "SSE.Views.Toolbar.tipVAligh": "Vertikálne zarovnanie",
"SSE.Views.Toolbar.tipViewSettings": "Zobraziť nastavenia", "SSE.Views.Toolbar.tipViewSettings": "Zobraziť nastavenia",
"SSE.Views.Toolbar.tipWrap": "Obtekanie textu\n\n", "SSE.Views.Toolbar.tipWrap": "Obtekanie textu",
"SSE.Views.Toolbar.txtAccounting": "Účtovníctvo", "SSE.Views.Toolbar.txtAccounting": "Účtovníctvo",
"SSE.Views.Toolbar.txtAdditional": "Ďalšie", "SSE.Views.Toolbar.txtAdditional": "Ďalšie",
"SSE.Views.Toolbar.txtAscending": "Vzostupne", "SSE.Views.Toolbar.txtAscending": "Vzostupne",
@ -1708,13 +1720,13 @@
"SSE.Views.Toolbar.txtFormula": "Vložiť funkciu", "SSE.Views.Toolbar.txtFormula": "Vložiť funkciu",
"SSE.Views.Toolbar.txtFraction": "Zlomok", "SSE.Views.Toolbar.txtFraction": "Zlomok",
"SSE.Views.Toolbar.txtFranc": "CHF švajčiarsky frank\n\n", "SSE.Views.Toolbar.txtFranc": "CHF švajčiarsky frank\n\n",
"SSE.Views.Toolbar.txtGeneral": "Všeobecný", "SSE.Views.Toolbar.txtGeneral": "Všeobecné",
"SSE.Views.Toolbar.txtInteger": "Celé číslo\n", "SSE.Views.Toolbar.txtInteger": "Celé číslo\n",
"SSE.Views.Toolbar.txtManageRange": "Správca zázvov\n\n", "SSE.Views.Toolbar.txtManageRange": "Správca názvov\n\n",
"SSE.Views.Toolbar.txtMergeAcross": "Zlúčiť naprieč", "SSE.Views.Toolbar.txtMergeAcross": "Zlúčiť naprieč",
"SSE.Views.Toolbar.txtMergeCells": "Zlúčiť bunky", "SSE.Views.Toolbar.txtMergeCells": "Zlúčiť bunky",
"SSE.Views.Toolbar.txtMergeCenter": "Zlúčiť a centrovať", "SSE.Views.Toolbar.txtMergeCenter": "Zlúčiť a centrovať",
"SSE.Views.Toolbar.txtNamedRange": "Pomenované rozsahy\n\n", "SSE.Views.Toolbar.txtNamedRange": "Pomenované rozsahy",
"SSE.Views.Toolbar.txtNewRange": "Definovať meno\n\n", "SSE.Views.Toolbar.txtNewRange": "Definovať meno\n\n",
"SSE.Views.Toolbar.txtNoBorders": "Bez orámovania", "SSE.Views.Toolbar.txtNoBorders": "Bez orámovania",
"SSE.Views.Toolbar.txtNumber": "Číslo", "SSE.Views.Toolbar.txtNumber": "Číslo",
@ -1726,7 +1738,7 @@
"SSE.Views.Toolbar.txtScheme10": "Medián", "SSE.Views.Toolbar.txtScheme10": "Medián",
"SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme11": "Metro",
"SSE.Views.Toolbar.txtScheme12": "Modul", "SSE.Views.Toolbar.txtScheme12": "Modul",
"SSE.Views.Toolbar.txtScheme13": "Výnos", "SSE.Views.Toolbar.txtScheme13": "Výnos",
"SSE.Views.Toolbar.txtScheme14": "Výklenok\n", "SSE.Views.Toolbar.txtScheme14": "Výklenok\n",
"SSE.Views.Toolbar.txtScheme15": "Pôvod", "SSE.Views.Toolbar.txtScheme15": "Pôvod",
"SSE.Views.Toolbar.txtScheme16": "Papier", "SSE.Views.Toolbar.txtScheme16": "Papier",

View file

@ -67,7 +67,6 @@
"Common.Views.CopyWarningDialog.textToPaste": "za Lepljenje", "Common.Views.CopyWarningDialog.textToPaste": "za Lepljenje",
"Common.Views.DocumentAccessDialog.textLoading": "Nalaganje...", "Common.Views.DocumentAccessDialog.textLoading": "Nalaganje...",
"Common.Views.DocumentAccessDialog.textTitle": "Nastavitve deljenja", "Common.Views.DocumentAccessDialog.textTitle": "Nastavitve deljenja",
"Common.Views.Header.openNewTabText": "Open in New Tab",
"Common.Views.Header.textBack": "Pojdi v dokumente", "Common.Views.Header.textBack": "Pojdi v dokumente",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "Prekliči", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Prekliči",
"Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.okButtonText": "OK",
@ -108,7 +107,6 @@
"SSE.Controllers.LeftMenu.textWorkbook": "Delovni zvezek", "SSE.Controllers.LeftMenu.textWorkbook": "Delovni zvezek",
"SSE.Controllers.LeftMenu.warnDownloadAs": "Če boste nadaljevali s shranjevanje v tem dormatu bodo vse funkcije razen besedila izgubljene.<br>Ste prepričani, da želite nadaljevati?", "SSE.Controllers.LeftMenu.warnDownloadAs": "Če boste nadaljevali s shranjevanje v tem dormatu bodo vse funkcije razen besedila izgubljene.<br>Ste prepričani, da želite nadaljevati?",
"SSE.Controllers.Main.confirmMoveCellRange": "Območje ciljne celice lahko vsebuje podatke. Nadaljujem operacijo?", "SSE.Controllers.Main.confirmMoveCellRange": "Območje ciljne celice lahko vsebuje podatke. Nadaljujem operacijo?",
"SSE.Controllers.Main.convertationErrorText": "Pretvorba ni uspela.",
"SSE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.", "SSE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.",
"SSE.Controllers.Main.criticalErrorExtText": "Pritisnite \"OK\" za vrnitev na seznam dokumentov.", "SSE.Controllers.Main.criticalErrorExtText": "Pritisnite \"OK\" za vrnitev na seznam dokumentov.",
"SSE.Controllers.Main.criticalErrorTitle": "Napaka", "SSE.Controllers.Main.criticalErrorTitle": "Napaka",
@ -493,7 +491,6 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "kot Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "kot Windows",
"SSE.Views.FileMenuPanels.Settings.txtGeneral": "Splošen", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Splošen",
"del_SSE.Views.FileMenuPanels.Settings.txtPrint": "Natisni",
"SSE.Views.FormulaDialog.cancelButtonText": "Prekliči", "SSE.Views.FormulaDialog.cancelButtonText": "Prekliči",
"SSE.Views.FormulaDialog.okButtonText": "OK", "SSE.Views.FormulaDialog.okButtonText": "OK",
"SSE.Views.FormulaDialog.sCategoryAll": "All", "SSE.Views.FormulaDialog.sCategoryAll": "All",
@ -673,7 +670,6 @@
"SSE.Views.PrintSettings.textActualSize": "Dejanska velikost", "SSE.Views.PrintSettings.textActualSize": "Dejanska velikost",
"SSE.Views.PrintSettings.textAllSheets": "Vsi listi", "SSE.Views.PrintSettings.textAllSheets": "Vsi listi",
"SSE.Views.PrintSettings.textCurrentSheet": "Trenuten list", "SSE.Views.PrintSettings.textCurrentSheet": "Trenuten list",
"del_SSE.Views.PrintSettings.textFit": "Prilagodi k širini",
"SSE.Views.PrintSettings.textHideDetails": "Skrij podrobnosti", "SSE.Views.PrintSettings.textHideDetails": "Skrij podrobnosti",
"SSE.Views.PrintSettings.textLayout": "Postavitev", "SSE.Views.PrintSettings.textLayout": "Postavitev",
"SSE.Views.PrintSettings.textPageOrientation": "Orientacija strani", "SSE.Views.PrintSettings.textPageOrientation": "Orientacija strani",
@ -720,11 +716,9 @@
"SSE.Views.ShapeSettings.textPatternFill": "Vzorec", "SSE.Views.ShapeSettings.textPatternFill": "Vzorec",
"SSE.Views.ShapeSettings.textRadial": "Radial", "SSE.Views.ShapeSettings.textRadial": "Radial",
"SSE.Views.ShapeSettings.textSelectTexture": "Izberi", "SSE.Views.ShapeSettings.textSelectTexture": "Izberi",
"SSE.Views.ShapeSettings.textStandartColors": "Standardne barve",
"SSE.Views.ShapeSettings.textStretch": "Raztegni", "SSE.Views.ShapeSettings.textStretch": "Raztegni",
"SSE.Views.ShapeSettings.textStyle": "Slog", "SSE.Views.ShapeSettings.textStyle": "Slog",
"SSE.Views.ShapeSettings.textTexture": "S teksture", "SSE.Views.ShapeSettings.textTexture": "S teksture",
"SSE.Views.ShapeSettings.textThemeColors": "Barve teme",
"SSE.Views.ShapeSettings.textTile": "Ploščica", "SSE.Views.ShapeSettings.textTile": "Ploščica",
"SSE.Views.ShapeSettings.txtBrownPaper": "Rjav papir", "SSE.Views.ShapeSettings.txtBrownPaper": "Rjav papir",
"SSE.Views.ShapeSettings.txtCanvas": "Platno", "SSE.Views.ShapeSettings.txtCanvas": "Platno",
@ -783,21 +777,15 @@
"SSE.Views.Statusbar.textCount": "ŠTETJE", "SSE.Views.Statusbar.textCount": "ŠTETJE",
"SSE.Views.Statusbar.textNewColor": "Dodaj novo barvo po meri", "SSE.Views.Statusbar.textNewColor": "Dodaj novo barvo po meri",
"SSE.Views.Statusbar.textNoColor": "Ni barve", "SSE.Views.Statusbar.textNoColor": "Ni barve",
"SSE.Views.Statusbar.textStandartColors": "Standardne barve",
"SSE.Views.Statusbar.textSum": "Vsota", "SSE.Views.Statusbar.textSum": "Vsota",
"SSE.Views.Statusbar.textThemeColors": "Barve teme",
"SSE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"SSE.Views.Statusbar.tipAddTab": "Dodaj delovni list", "SSE.Views.Statusbar.tipAddTab": "Dodaj delovni list",
"SSE.Views.Statusbar.tipFirst": "Premakni do prve strani", "SSE.Views.Statusbar.tipFirst": "Premakni do prve strani",
"SSE.Views.Statusbar.tipLast": "Premakni do zadnje strani", "SSE.Views.Statusbar.tipLast": "Premakni do zadnje strani",
"SSE.Views.Statusbar.tipNext": "Pomakni seznam strani desno", "SSE.Views.Statusbar.tipNext": "Pomakni seznam strani desno",
"SSE.Views.Statusbar.tipPrev": "Pomakni seznam strani levo", "SSE.Views.Statusbar.tipPrev": "Pomakni seznam strani levo",
"SSE.Views.Statusbar.tipUsers": "Dokument trenutno ureja več uporabnikov",
"SSE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"SSE.Views.Statusbar.tipZoomFactor": "Povečava", "SSE.Views.Statusbar.tipZoomFactor": "Povečava",
"SSE.Views.Statusbar.tipZoomIn": "Približaj", "SSE.Views.Statusbar.tipZoomIn": "Približaj",
"SSE.Views.Statusbar.tipZoomOut": "Oddalji", "SSE.Views.Statusbar.tipZoomOut": "Oddalji",
"SSE.Views.Statusbar.txAccessRights": "Change access rights",
"SSE.Views.Statusbar.zoomText": "Povečava {0}%", "SSE.Views.Statusbar.zoomText": "Povečava {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Dejanja ni bilo mogoče izbrati za izbrano območje celic.<br>Izberite uniformirano območje podatkov v ali izven razpredelnice in ponovno poskusite.", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Dejanja ni bilo mogoče izbrati za izbrano območje celic.<br>Izberite uniformirano območje podatkov v ali izven razpredelnice in ponovno poskusite.",
"SSE.Views.TableOptionsDialog.textCancel": "Prekliči", "SSE.Views.TableOptionsDialog.textCancel": "Prekliči",
@ -828,12 +816,10 @@
"SSE.Views.TextArtSettings.textPatternFill": "Pattern", "SSE.Views.TextArtSettings.textPatternFill": "Pattern",
"SSE.Views.TextArtSettings.textRadial": "Radial", "SSE.Views.TextArtSettings.textRadial": "Radial",
"SSE.Views.TextArtSettings.textSelectTexture": "Select", "SSE.Views.TextArtSettings.textSelectTexture": "Select",
"SSE.Views.TextArtSettings.textStandartColors": "Standard Colors",
"SSE.Views.TextArtSettings.textStretch": "Stretch", "SSE.Views.TextArtSettings.textStretch": "Stretch",
"SSE.Views.TextArtSettings.textStyle": "Style", "SSE.Views.TextArtSettings.textStyle": "Style",
"SSE.Views.TextArtSettings.textTemplate": "Template", "SSE.Views.TextArtSettings.textTemplate": "Template",
"SSE.Views.TextArtSettings.textTexture": "From Texture", "SSE.Views.TextArtSettings.textTexture": "From Texture",
"SSE.Views.TextArtSettings.textThemeColors": "Theme Colors",
"SSE.Views.TextArtSettings.textTile": "Tile", "SSE.Views.TextArtSettings.textTile": "Tile",
"SSE.Views.TextArtSettings.textTransform": "Transform", "SSE.Views.TextArtSettings.textTransform": "Transform",
"SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper",
@ -860,7 +846,6 @@
"SSE.Views.Toolbar.textAllBorders": "Vse meje", "SSE.Views.Toolbar.textAllBorders": "Vse meje",
"SSE.Views.Toolbar.textBold": "Krepko", "SSE.Views.Toolbar.textBold": "Krepko",
"SSE.Views.Toolbar.textBordersColor": "Barva obrobe", "SSE.Views.Toolbar.textBordersColor": "Barva obrobe",
"SSE.Views.Toolbar.textBordersWidth": "Širina obrobe",
"SSE.Views.Toolbar.textBottomBorders": "Meje na dnu", "SSE.Views.Toolbar.textBottomBorders": "Meje na dnu",
"SSE.Views.Toolbar.textCenterBorders": "Notranje vertikalne meje", "SSE.Views.Toolbar.textCenterBorders": "Notranje vertikalne meje",
"SSE.Views.Toolbar.textClockwise": "Kot v smeri urinega kazalca", "SSE.Views.Toolbar.textClockwise": "Kot v smeri urinega kazalca",
@ -881,8 +866,6 @@
"SSE.Views.Toolbar.textInsDown": "Celice premakni navzdol", "SSE.Views.Toolbar.textInsDown": "Celice premakni navzdol",
"SSE.Views.Toolbar.textInsideBorders": "Vstavi meje", "SSE.Views.Toolbar.textInsideBorders": "Vstavi meje",
"SSE.Views.Toolbar.textInsRight": "Celice pomakni desno", "SSE.Views.Toolbar.textInsRight": "Celice pomakni desno",
"SSE.Views.Toolbar.textInsText": "Insert text box",
"SSE.Views.Toolbar.textInsTextArt": "Insert Text Art",
"SSE.Views.Toolbar.textItalic": "Poševno", "SSE.Views.Toolbar.textItalic": "Poševno",
"SSE.Views.Toolbar.textLeftBorders": "Leve meje", "SSE.Views.Toolbar.textLeftBorders": "Leve meje",
"SSE.Views.Toolbar.textMiddleBorders": "Notranje horizontalne meje", "SSE.Views.Toolbar.textMiddleBorders": "Notranje horizontalne meje",
@ -894,8 +877,6 @@
"SSE.Views.Toolbar.textRightBorders": "Desne meje", "SSE.Views.Toolbar.textRightBorders": "Desne meje",
"SSE.Views.Toolbar.textRotateDown": "Besedilo zavrti dol", "SSE.Views.Toolbar.textRotateDown": "Besedilo zavrti dol",
"SSE.Views.Toolbar.textRotateUp": "Besedilo zavrti gor", "SSE.Views.Toolbar.textRotateUp": "Besedilo zavrti gor",
"SSE.Views.Toolbar.textStandartColors": "Standardne barve",
"SSE.Views.Toolbar.textThemeColors": "Barve teme",
"SSE.Views.Toolbar.textTopBorders": "Vrhnje meje", "SSE.Views.Toolbar.textTopBorders": "Vrhnje meje",
"SSE.Views.Toolbar.textUnderline": "Podčrtaj", "SSE.Views.Toolbar.textUnderline": "Podčrtaj",
"SSE.Views.Toolbar.textZoom": "Povečava", "SSE.Views.Toolbar.textZoom": "Povečava",
@ -935,9 +916,7 @@
"SSE.Views.Toolbar.tipInsertShape": "Vstavi samodejno obliko", "SSE.Views.Toolbar.tipInsertShape": "Vstavi samodejno obliko",
"SSE.Views.Toolbar.tipInsertText": "Vstavi besedilo", "SSE.Views.Toolbar.tipInsertText": "Vstavi besedilo",
"SSE.Views.Toolbar.tipMerge": "Združi", "SSE.Views.Toolbar.tipMerge": "Združi",
"SSE.Views.Toolbar.tipNewDocument": "Nov dokument",
"SSE.Views.Toolbar.tipNumFormat": "Številčni format", "SSE.Views.Toolbar.tipNumFormat": "Številčni format",
"SSE.Views.Toolbar.tipOpenDocument": "Odpri dokument",
"SSE.Views.Toolbar.tipPaste": "Prilepi", "SSE.Views.Toolbar.tipPaste": "Prilepi",
"SSE.Views.Toolbar.tipPrColor": "Barva ozadja", "SSE.Views.Toolbar.tipPrColor": "Barva ozadja",
"SSE.Views.Toolbar.tipPrint": "Natisni", "SSE.Views.Toolbar.tipPrint": "Natisni",
@ -985,7 +964,7 @@
"SSE.Views.Toolbar.txtPasteRange": "Paste name", "SSE.Views.Toolbar.txtPasteRange": "Paste name",
"SSE.Views.Toolbar.txtPercentage": "Odstotek", "SSE.Views.Toolbar.txtPercentage": "Odstotek",
"SSE.Views.Toolbar.txtPound": "£ funt", "SSE.Views.Toolbar.txtPound": "£ funt",
"SSE.Views.Toolbar.txtRouble": "р. Rubelj", "SSE.Views.Toolbar.txtRouble": " Rubelj",
"SSE.Views.Toolbar.txtScheme1": "Pisarna", "SSE.Views.Toolbar.txtScheme1": "Pisarna",
"SSE.Views.Toolbar.txtScheme10": "Mediana", "SSE.Views.Toolbar.txtScheme10": "Mediana",
"SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme11": "Metro",

View file

@ -67,7 +67,6 @@
"Common.Views.CopyWarningDialog.textToPaste": "Yapıştırmak için", "Common.Views.CopyWarningDialog.textToPaste": "Yapıştırmak için",
"Common.Views.DocumentAccessDialog.textLoading": "Yükleniyor...", "Common.Views.DocumentAccessDialog.textLoading": "Yükleniyor...",
"Common.Views.DocumentAccessDialog.textTitle": "Paylaşım Ayarları", "Common.Views.DocumentAccessDialog.textTitle": "Paylaşım Ayarları",
"Common.Views.Header.openNewTabText": "Open in New Tab",
"Common.Views.Header.textBack": "Dökümanlara Git", "Common.Views.Header.textBack": "Dökümanlara Git",
"Common.Views.ImageFromUrlDialog.cancelButtonText": "İptal Et", "Common.Views.ImageFromUrlDialog.cancelButtonText": "İptal Et",
"Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM", "Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM",
@ -108,7 +107,6 @@
"SSE.Controllers.LeftMenu.textWorkbook": "Not defteri", "SSE.Controllers.LeftMenu.textWorkbook": "Not defteri",
"SSE.Controllers.LeftMenu.warnDownloadAs": "Kaydetmeye bu formatta devam ederseniz metin dışında tüm özellikler kaybolacak.<br> Devam etmek istediğinizden emin misiniz?", "SSE.Controllers.LeftMenu.warnDownloadAs": "Kaydetmeye bu formatta devam ederseniz metin dışında tüm özellikler kaybolacak.<br> Devam etmek istediğinizden emin misiniz?",
"SSE.Controllers.Main.confirmMoveCellRange": "Hedef hücre aralığı veri içerebilir. Operasyona devam etmek istiyor musunuz?", "SSE.Controllers.Main.confirmMoveCellRange": "Hedef hücre aralığı veri içerebilir. Operasyona devam etmek istiyor musunuz?",
"SSE.Controllers.Main.convertationErrorText": "Değişim başarısız oldu.",
"SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", "SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.",
"SSE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın", "SSE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın",
"SSE.Controllers.Main.criticalErrorTitle": "Hata", "SSE.Controllers.Main.criticalErrorTitle": "Hata",
@ -493,7 +491,6 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows olarak", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows olarak",
"SSE.Views.FileMenuPanels.Settings.txtGeneral": "Genel", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Genel",
"del_SSE.Views.FileMenuPanels.Settings.txtPrint": "Yazdır",
"SSE.Views.FormulaDialog.cancelButtonText": "İptal Et", "SSE.Views.FormulaDialog.cancelButtonText": "İptal Et",
"SSE.Views.FormulaDialog.okButtonText": "TAMAM", "SSE.Views.FormulaDialog.okButtonText": "TAMAM",
"SSE.Views.FormulaDialog.sCategoryAll": "All", "SSE.Views.FormulaDialog.sCategoryAll": "All",
@ -673,7 +670,6 @@
"SSE.Views.PrintSettings.textActualSize": "Gerçek Boyut", "SSE.Views.PrintSettings.textActualSize": "Gerçek Boyut",
"SSE.Views.PrintSettings.textAllSheets": "Tüm Tablolar", "SSE.Views.PrintSettings.textAllSheets": "Tüm Tablolar",
"SSE.Views.PrintSettings.textCurrentSheet": "Mevcut Tablo", "SSE.Views.PrintSettings.textCurrentSheet": "Mevcut Tablo",
"del_SSE.Views.PrintSettings.textFit": "Genişliğe Sığdır",
"SSE.Views.PrintSettings.textHideDetails": "Detayları Gizle", "SSE.Views.PrintSettings.textHideDetails": "Detayları Gizle",
"SSE.Views.PrintSettings.textLayout": "Tasarım", "SSE.Views.PrintSettings.textLayout": "Tasarım",
"SSE.Views.PrintSettings.textPageOrientation": "Sayfa Orientasyonu", "SSE.Views.PrintSettings.textPageOrientation": "Sayfa Orientasyonu",
@ -720,11 +716,9 @@
"SSE.Views.ShapeSettings.textPatternFill": "Desen", "SSE.Views.ShapeSettings.textPatternFill": "Desen",
"SSE.Views.ShapeSettings.textRadial": "Radyal", "SSE.Views.ShapeSettings.textRadial": "Radyal",
"SSE.Views.ShapeSettings.textSelectTexture": "Seç", "SSE.Views.ShapeSettings.textSelectTexture": "Seç",
"SSE.Views.ShapeSettings.textStandartColors": "Standart Renkler",
"SSE.Views.ShapeSettings.textStretch": "Esnet", "SSE.Views.ShapeSettings.textStretch": "Esnet",
"SSE.Views.ShapeSettings.textStyle": "Stil", "SSE.Views.ShapeSettings.textStyle": "Stil",
"SSE.Views.ShapeSettings.textTexture": "Doldurma deseninden", "SSE.Views.ShapeSettings.textTexture": "Doldurma deseninden",
"SSE.Views.ShapeSettings.textThemeColors": "Tema Renkleri",
"SSE.Views.ShapeSettings.textTile": "Desen", "SSE.Views.ShapeSettings.textTile": "Desen",
"SSE.Views.ShapeSettings.txtBrownPaper": "Kahverengi Kağıt", "SSE.Views.ShapeSettings.txtBrownPaper": "Kahverengi Kağıt",
"SSE.Views.ShapeSettings.txtCanvas": "Tuval", "SSE.Views.ShapeSettings.txtCanvas": "Tuval",
@ -783,21 +777,15 @@
"SSE.Views.Statusbar.textCount": "MİKTAR", "SSE.Views.Statusbar.textCount": "MİKTAR",
"SSE.Views.Statusbar.textNewColor": "Yeni Özel Renk Ekle", "SSE.Views.Statusbar.textNewColor": "Yeni Özel Renk Ekle",
"SSE.Views.Statusbar.textNoColor": "Renk yok", "SSE.Views.Statusbar.textNoColor": "Renk yok",
"SSE.Views.Statusbar.textStandartColors": "Standart Renkler",
"SSE.Views.Statusbar.textSum": "TOPLAM", "SSE.Views.Statusbar.textSum": "TOPLAM",
"SSE.Views.Statusbar.textThemeColors": "Tema Renkleri",
"SSE.Views.Statusbar.tipAccessRights": "Manage document access rights",
"SSE.Views.Statusbar.tipAddTab": "Çalışma tablosu ekle", "SSE.Views.Statusbar.tipAddTab": "Çalışma tablosu ekle",
"SSE.Views.Statusbar.tipFirst": "İlk Tabloya Kaydır", "SSE.Views.Statusbar.tipFirst": "İlk Tabloya Kaydır",
"SSE.Views.Statusbar.tipLast": "Son tabloya kaydır", "SSE.Views.Statusbar.tipLast": "Son tabloya kaydır",
"SSE.Views.Statusbar.tipNext": "Tablo Listesini Sağa Kaydır", "SSE.Views.Statusbar.tipNext": "Tablo Listesini Sağa Kaydır",
"SSE.Views.Statusbar.tipPrev": "Tablo Listesini Sola Kaydır", "SSE.Views.Statusbar.tipPrev": "Tablo Listesini Sola Kaydır",
"SSE.Views.Statusbar.tipUsers": "Döküman şu an bir kaç kullanıcı tarafından düzenleniyor.",
"SSE.Views.Statusbar.tipViewUsers": "View users and manage document access rights",
"SSE.Views.Statusbar.tipZoomFactor": "Büyütme", "SSE.Views.Statusbar.tipZoomFactor": "Büyütme",
"SSE.Views.Statusbar.tipZoomIn": "Yakınlaştır", "SSE.Views.Statusbar.tipZoomIn": "Yakınlaştır",
"SSE.Views.Statusbar.tipZoomOut": "Uzaklaştır", "SSE.Views.Statusbar.tipZoomOut": "Uzaklaştır",
"SSE.Views.Statusbar.txAccessRights": "Change access rights",
"SSE.Views.Statusbar.zoomText": "Zum {0}%", "SSE.Views.Statusbar.zoomText": "Zum {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Seçilen hücre aralığı için operasyon tamamlanamadı.<br> Tablo içinde yada dışında tekdüze veri aralığı seçin ve tekrar deneyin.", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Seçilen hücre aralığı için operasyon tamamlanamadı.<br> Tablo içinde yada dışında tekdüze veri aralığı seçin ve tekrar deneyin.",
"SSE.Views.TableOptionsDialog.textCancel": "İptal Et", "SSE.Views.TableOptionsDialog.textCancel": "İptal Et",
@ -828,12 +816,10 @@
"SSE.Views.TextArtSettings.textPatternFill": "Pattern", "SSE.Views.TextArtSettings.textPatternFill": "Pattern",
"SSE.Views.TextArtSettings.textRadial": "Radial", "SSE.Views.TextArtSettings.textRadial": "Radial",
"SSE.Views.TextArtSettings.textSelectTexture": "Select", "SSE.Views.TextArtSettings.textSelectTexture": "Select",
"SSE.Views.TextArtSettings.textStandartColors": "Standard Colors",
"SSE.Views.TextArtSettings.textStretch": "Stretch", "SSE.Views.TextArtSettings.textStretch": "Stretch",
"SSE.Views.TextArtSettings.textStyle": "Style", "SSE.Views.TextArtSettings.textStyle": "Style",
"SSE.Views.TextArtSettings.textTemplate": "Template", "SSE.Views.TextArtSettings.textTemplate": "Template",
"SSE.Views.TextArtSettings.textTexture": "From Texture", "SSE.Views.TextArtSettings.textTexture": "From Texture",
"SSE.Views.TextArtSettings.textThemeColors": "Theme Colors",
"SSE.Views.TextArtSettings.textTile": "Tile", "SSE.Views.TextArtSettings.textTile": "Tile",
"SSE.Views.TextArtSettings.textTransform": "Transform", "SSE.Views.TextArtSettings.textTransform": "Transform",
"SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper",
@ -860,7 +846,6 @@
"SSE.Views.Toolbar.textAllBorders": "Tüm Sınırlar", "SSE.Views.Toolbar.textAllBorders": "Tüm Sınırlar",
"SSE.Views.Toolbar.textBold": "Kalın", "SSE.Views.Toolbar.textBold": "Kalın",
"SSE.Views.Toolbar.textBordersColor": "Sınır Rengi", "SSE.Views.Toolbar.textBordersColor": "Sınır Rengi",
"SSE.Views.Toolbar.textBordersWidth": "Sınır Genişliği",
"SSE.Views.Toolbar.textBottomBorders": "Alt Sınırlar", "SSE.Views.Toolbar.textBottomBorders": "Alt Sınırlar",
"SSE.Views.Toolbar.textCenterBorders": "Dikey İç Sınırlar", "SSE.Views.Toolbar.textCenterBorders": "Dikey İç Sınırlar",
"SSE.Views.Toolbar.textClockwise": "Saat yönünde açı", "SSE.Views.Toolbar.textClockwise": "Saat yönünde açı",
@ -881,8 +866,6 @@
"SSE.Views.Toolbar.textInsDown": "Hücreleri aşağı kaydır", "SSE.Views.Toolbar.textInsDown": "Hücreleri aşağı kaydır",
"SSE.Views.Toolbar.textInsideBorders": "İç Sınırlar", "SSE.Views.Toolbar.textInsideBorders": "İç Sınırlar",
"SSE.Views.Toolbar.textInsRight": "Hücreleri sağa kaydır", "SSE.Views.Toolbar.textInsRight": "Hücreleri sağa kaydır",
"SSE.Views.Toolbar.textInsText": "Insert text box",
"SSE.Views.Toolbar.textInsTextArt": "Insert Text Art",
"SSE.Views.Toolbar.textItalic": "İtalik", "SSE.Views.Toolbar.textItalic": "İtalik",
"SSE.Views.Toolbar.textLeftBorders": "Sol Sınırlar", "SSE.Views.Toolbar.textLeftBorders": "Sol Sınırlar",
"SSE.Views.Toolbar.textMiddleBorders": "Yatay İç Sınırlar", "SSE.Views.Toolbar.textMiddleBorders": "Yatay İç Sınırlar",
@ -894,8 +877,6 @@
"SSE.Views.Toolbar.textRightBorders": "Sağ Sınırlar", "SSE.Views.Toolbar.textRightBorders": "Sağ Sınırlar",
"SSE.Views.Toolbar.textRotateDown": "Metini Aşağı Döndür", "SSE.Views.Toolbar.textRotateDown": "Metini Aşağı Döndür",
"SSE.Views.Toolbar.textRotateUp": "Metini Yukarı Döndür", "SSE.Views.Toolbar.textRotateUp": "Metini Yukarı Döndür",
"SSE.Views.Toolbar.textStandartColors": "Standart Renkler",
"SSE.Views.Toolbar.textThemeColors": "Tema Renkleri",
"SSE.Views.Toolbar.textTopBorders": "Üst Sınırlar", "SSE.Views.Toolbar.textTopBorders": "Üst Sınırlar",
"SSE.Views.Toolbar.textUnderline": "Altı çizili", "SSE.Views.Toolbar.textUnderline": "Altı çizili",
"SSE.Views.Toolbar.textZoom": "Zum", "SSE.Views.Toolbar.textZoom": "Zum",
@ -935,9 +916,7 @@
"SSE.Views.Toolbar.tipInsertShape": "Otomatik Şekil ekle", "SSE.Views.Toolbar.tipInsertShape": "Otomatik Şekil ekle",
"SSE.Views.Toolbar.tipInsertText": "Metin ekle", "SSE.Views.Toolbar.tipInsertText": "Metin ekle",
"SSE.Views.Toolbar.tipMerge": "Birleştir", "SSE.Views.Toolbar.tipMerge": "Birleştir",
"SSE.Views.Toolbar.tipNewDocument": "Yeni Döküman",
"SSE.Views.Toolbar.tipNumFormat": "Sayı Formatı", "SSE.Views.Toolbar.tipNumFormat": "Sayı Formatı",
"SSE.Views.Toolbar.tipOpenDocument": "Dökümanı Aç",
"SSE.Views.Toolbar.tipPaste": "Yapıştır", "SSE.Views.Toolbar.tipPaste": "Yapıştır",
"SSE.Views.Toolbar.tipPrColor": "Arka plan rengi", "SSE.Views.Toolbar.tipPrColor": "Arka plan rengi",
"SSE.Views.Toolbar.tipPrint": "Yazdır", "SSE.Views.Toolbar.tipPrint": "Yazdır",
@ -985,7 +964,7 @@
"SSE.Views.Toolbar.txtPasteRange": "Paste name", "SSE.Views.Toolbar.txtPasteRange": "Paste name",
"SSE.Views.Toolbar.txtPercentage": "Yüzde", "SSE.Views.Toolbar.txtPercentage": "Yüzde",
"SSE.Views.Toolbar.txtPound": "£ Sterlin", "SSE.Views.Toolbar.txtPound": "£ Sterlin",
"SSE.Views.Toolbar.txtRouble": "p. Ruble", "SSE.Views.Toolbar.txtRouble": " Ruble",
"SSE.Views.Toolbar.txtScheme1": "Ofis", "SSE.Views.Toolbar.txtScheme1": "Ofis",
"SSE.Views.Toolbar.txtScheme10": "Medyan", "SSE.Views.Toolbar.txtScheme10": "Medyan",
"SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme11": "Metro",

View file

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

View file

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

View file

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

View file

@ -119,7 +119,7 @@
"expand": true, "expand": true,
"cwd": "../apps/documenteditor/main/resources/img/", "cwd": "../apps/documenteditor/main/resources/img/",
"src": [ "src": [
"**/*.{png,jpg,gif}" "**/*.{png,jpg,gif,ico}"
], ],
"dest": "../deploy/web-apps/apps/documenteditor/main/resources/img/" "dest": "../deploy/web-apps/apps/documenteditor/main/resources/img/"
} }

View file

@ -119,7 +119,7 @@
"expand": true, "expand": true,
"cwd": "../apps/presentationeditor/main/resources/img/", "cwd": "../apps/presentationeditor/main/resources/img/",
"src": [ "src": [
"**/*.{png,jpg,gif}" "**/*.{png,jpg,gif,ico}"
], ],
"dest": "../deploy/web-apps/apps/presentationeditor/main/resources/img/" "dest": "../deploy/web-apps/apps/presentationeditor/main/resources/img/"
} }

View file

@ -119,7 +119,7 @@
"expand": true, "expand": true,
"cwd": "../apps/spreadsheeteditor/main/resources/img/", "cwd": "../apps/spreadsheeteditor/main/resources/img/",
"src": [ "src": [
"**/*.{png,jpg,gif}" "**/*.{png,jpg,gif,ico}"
], ],
"dest": "../deploy/web-apps/apps/spreadsheeteditor/main/resources/img/" "dest": "../deploy/web-apps/apps/spreadsheeteditor/main/resources/img/"
} }