Merge branch 'develop' into feature/sse-conditional-formatting
|
@ -385,8 +385,6 @@
|
||||||
if (!_config.editorConfig.customization) _config.editorConfig.customization = {};
|
if (!_config.editorConfig.customization) _config.editorConfig.customization = {};
|
||||||
_config.editorConfig.customization.about = false;
|
_config.editorConfig.customization.about = false;
|
||||||
_config.editorConfig.customization.compactHeader = false;
|
_config.editorConfig.customization.compactHeader = false;
|
||||||
|
|
||||||
if ( window.AscDesktopEditor ) window.AscDesktopEditor.execCommand('webapps:events', 'loading');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -644,7 +644,7 @@ define([
|
||||||
} else {
|
} else {
|
||||||
$(this.el).find('ul').html(_.template([
|
$(this.el).find('ul').html(_.template([
|
||||||
'<% _.each(items, function(item) { %>',
|
'<% _.each(items, function(item) { %>',
|
||||||
'<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem"><%= scope.getDisplayValue(item) %></a></li>',
|
'<li id="<%= item.id %>" data-value="<%- item.value %>"><a tabindex="-1" type="menuitem"><%= scope.getDisplayValue(item) %></a></li>',
|
||||||
'<% }); %>'
|
'<% }); %>'
|
||||||
].join(''))({
|
].join(''))({
|
||||||
items: this.store.toJSON(),
|
items: this.store.toJSON(),
|
||||||
|
|
|
@ -52,8 +52,8 @@ define([
|
||||||
this.label = 'Tab';
|
this.label = 'Tab';
|
||||||
this.cls = '';
|
this.cls = '';
|
||||||
this.index = -1;
|
this.index = -1;
|
||||||
this.template = _.template(['<li class="<% if(active){ %>active selected<% } %> <% if(cls.length){%><%= cls %><%}%>" data-label="<%= label %>">',
|
this.template = _.template(['<li class="<% if(active){ %>active selected<% } %> <% if(cls.length){%><%= cls %><%}%>" data-label="<%- label %>">',
|
||||||
'<span title="<%= label %>" draggable="true" oo_editor_input="true" tabindex="-1" data-index="<%= index %>"><%- label %></span>',
|
'<span title="<%- label %>" draggable="true" oo_editor_input="true" tabindex="-1" data-index="<%= index %>"><%- label %></span>',
|
||||||
'</li>'].join(''));
|
'</li>'].join(''));
|
||||||
|
|
||||||
this.initialize.call(this, opts);
|
this.initialize.call(this, opts);
|
||||||
|
|
|
@ -142,6 +142,7 @@ define([
|
||||||
me.bar.$bar.scrollLeft(me.scrollLeft);
|
me.bar.$bar.scrollLeft(me.scrollLeft);
|
||||||
me.bar.scrollX = undefined;
|
me.bar.scrollX = undefined;
|
||||||
}
|
}
|
||||||
|
me.bar.checkInvisible();
|
||||||
|
|
||||||
me.drag = undefined;
|
me.drag = undefined;
|
||||||
me.bar.trigger('tab:drop', this);
|
me.bar.trigger('tab:drop', this);
|
||||||
|
@ -542,7 +543,7 @@ define([
|
||||||
this.checkInvisible(suppress);
|
this.checkInvisible(suppress);
|
||||||
} else if ( index >= (this.tabs.length - 1) || index == 'last') {
|
} else if ( index >= (this.tabs.length - 1) || index == 'last') {
|
||||||
var tab = this.tabs[this.tabs.length-1].$el;
|
var tab = this.tabs[this.tabs.length-1].$el;
|
||||||
this.$bar.scrollLeft(this.$bar.scrollLeft() + (tab.position().left + parseInt(tab.css('width')) - this.$bar.width()) + 1);
|
this.$bar.scrollLeft(this.$bar.scrollLeft() + (tab.position().left + parseInt(tab.css('width')) - this.$bar.width()) + 20);
|
||||||
this.checkInvisible(suppress);
|
this.checkInvisible(suppress);
|
||||||
} else {
|
} else {
|
||||||
var rightbound = this.$bar.width(),
|
var rightbound = this.$bar.width(),
|
||||||
|
|
|
@ -219,24 +219,34 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function _centre() {
|
function _readDocumetGeometry() {
|
||||||
if (window.innerHeight == undefined) {
|
if (window.innerHeight == undefined) {
|
||||||
var main_width = document.documentElement.offsetWidth;
|
var width = document.documentElement.offsetWidth,
|
||||||
var main_height = document.documentElement.offsetHeight;
|
height = document.documentElement.offsetHeight;
|
||||||
} else {
|
} else {
|
||||||
main_width = Common.Utils.innerWidth();
|
width = Common.Utils.innerWidth();
|
||||||
main_height = Common.Utils.innerHeight();
|
height = Common.Utils.innerHeight();
|
||||||
}
|
}
|
||||||
|
height -= Common.Utils.InternalSettings.get('window-inactive-area-top');
|
||||||
|
return {width: width, height: height, top: Common.Utils.InternalSettings.get('window-inactive-area-top')};
|
||||||
|
}
|
||||||
|
|
||||||
|
function _centre() {
|
||||||
|
var main_geometry = _readDocumetGeometry(),
|
||||||
|
main_width = main_geometry.width,
|
||||||
|
main_height = main_geometry.height;
|
||||||
|
|
||||||
if (this.initConfig.height == 'auto') {
|
if (this.initConfig.height == 'auto') {
|
||||||
var win_height = parseInt(this.$window.find('.body').css('height'));
|
var win_height = parseInt(this.$window.find('.body').css('height'));
|
||||||
this.initConfig.header && (win_height += parseInt(this.$window.find('.header').css('height')));
|
this.initConfig.header && (win_height += parseInt(this.$window.find('.header').css('height')));
|
||||||
} else
|
} else {
|
||||||
win_height = this.initConfig.height;
|
win_height = this.initConfig.height;
|
||||||
|
win_height > main_height && (win_height = main_height);
|
||||||
|
}
|
||||||
|
|
||||||
var win_width = (this.initConfig.width=='auto') ? parseInt(this.$window.find('.body').css('width')) : this.initConfig.width;
|
var win_width = (this.initConfig.width=='auto') ? parseInt(this.$window.find('.body').css('width')) : this.initConfig.width;
|
||||||
|
|
||||||
var top = Math.floor((parseInt(main_height) - parseInt(win_height)) / 2);
|
var top = main_geometry.top + Math.floor((parseInt(main_height) - parseInt(win_height)) / 2);
|
||||||
var left = Math.floor((parseInt(main_width) - parseInt(win_width)) / 2);
|
var left = Math.floor((parseInt(main_width) - parseInt(win_width)) / 2);
|
||||||
|
|
||||||
this.$window.css('left',left);
|
this.$window.css('left',left);
|
||||||
|
@ -244,18 +254,21 @@ define([
|
||||||
}
|
}
|
||||||
|
|
||||||
function _setVisible() {
|
function _setVisible() {
|
||||||
if (window.innerHeight == undefined) {
|
var main_geometry = _readDocumetGeometry(),
|
||||||
var main_width = document.documentElement.offsetWidth;
|
main_width = main_geometry.width,
|
||||||
var main_height = document.documentElement.offsetHeight;
|
main_height = main_geometry.height;
|
||||||
} else {
|
|
||||||
main_width = Common.Utils.innerWidth();
|
|
||||||
main_height = Common.Utils.innerHeight();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.getLeft() + this.getWidth() > main_width)
|
if (this.getLeft() + this.getWidth() > main_width)
|
||||||
this.$window.css('left', main_width - this.getWidth());
|
this.$window.css('left', main_width - this.getWidth());
|
||||||
if (this.getTop() + this.getHeight() > main_height)
|
|
||||||
this.$window.css('top', main_height - this.getHeight());
|
if (this.getTop() < main_geometry.top )
|
||||||
|
this.$window.css('top', main_geometry.top);
|
||||||
|
else
|
||||||
|
if (this.getTop() + this.getHeight() > main_height) {
|
||||||
|
if (main_height - this.getHeight() < 0)
|
||||||
|
this.$window.css('top', main_geometry.top);
|
||||||
|
else this.$window.css('top', main_geometry.top + main_height - this.getHeight());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function _getTransformation(end) {
|
function _getTransformation(end) {
|
||||||
|
@ -277,16 +290,15 @@ define([
|
||||||
this.dragging.initx = event.pageX*zoom - this.getLeft();
|
this.dragging.initx = event.pageX*zoom - this.getLeft();
|
||||||
this.dragging.inity = event.pageY*zoom - this.getTop();
|
this.dragging.inity = event.pageY*zoom - this.getTop();
|
||||||
|
|
||||||
if (window.innerHeight == undefined) {
|
var main_geometry = _readDocumetGeometry(),
|
||||||
var main_width = document.documentElement.offsetWidth;
|
main_width = main_geometry.width,
|
||||||
var main_height = document.documentElement.offsetHeight;
|
main_height = main_geometry.height;
|
||||||
} else {
|
|
||||||
main_width = Common.Utils.innerWidth();
|
|
||||||
main_height = Common.Utils.innerHeight();
|
|
||||||
}
|
|
||||||
|
|
||||||
this.dragging.maxx = main_width - this.getWidth();
|
this.dragging.maxx = main_width - this.getWidth();
|
||||||
this.dragging.maxy = main_height - this.getHeight();
|
this.dragging.maxy = main_height - this.getHeight();
|
||||||
|
if (this.dragging.maxy < 0)
|
||||||
|
this.dragging.maxy = 0;
|
||||||
|
this.dragging.maxy += main_geometry.top;
|
||||||
|
|
||||||
$(document).on('mousemove', this.binding.drag);
|
$(document).on('mousemove', this.binding.drag);
|
||||||
$(document).on('mouseup', this.binding.dragStop);
|
$(document).on('mouseup', this.binding.dragStop);
|
||||||
|
@ -311,10 +323,11 @@ define([
|
||||||
if (this.dragging.enabled) {
|
if (this.dragging.enabled) {
|
||||||
var zoom = (event instanceof jQuery.Event) ? Common.Utils.zoom() : 1,
|
var zoom = (event instanceof jQuery.Event) ? Common.Utils.zoom() : 1,
|
||||||
left = event.pageX*zoom - this.dragging.initx,
|
left = event.pageX*zoom - this.dragging.initx,
|
||||||
top = event.pageY*zoom - this.dragging.inity;
|
top = event.pageY*zoom - this.dragging.inity,
|
||||||
|
topedge = Common.Utils.InternalSettings.get('window-inactive-area-top');
|
||||||
|
|
||||||
left < 0 ? (left = 0) : left > this.dragging.maxx && (left = this.dragging.maxx);
|
left < 0 ? (left = 0) : left > this.dragging.maxx && (left = this.dragging.maxx);
|
||||||
top < 0 ? (top = 0) : top > this.dragging.maxy && (top = this.dragging.maxy);
|
top < topedge ? (top = topedge) : top > this.dragging.maxy && (top = this.dragging.maxy);
|
||||||
|
|
||||||
this.$window.css({left: left, top: top});
|
this.$window.css({left: left, top: top});
|
||||||
}
|
}
|
||||||
|
@ -343,9 +356,10 @@ define([
|
||||||
this.resizing.inith = this.getHeight();
|
this.resizing.inith = this.getHeight();
|
||||||
this.resizing.type = [el.hasClass('left') ? -1 : (el.hasClass('right') ? 1 : 0), el.hasClass('top') ? -1 : (el.hasClass('bottom') ? 1 : 0)];
|
this.resizing.type = [el.hasClass('left') ? -1 : (el.hasClass('right') ? 1 : 0), el.hasClass('top') ? -1 : (el.hasClass('bottom') ? 1 : 0)];
|
||||||
|
|
||||||
var main_width = (window.innerHeight == undefined) ? document.documentElement.offsetWidth : Common.Utils.innerWidth(),
|
var main_geometry = _readDocumetGeometry(),
|
||||||
main_height = (window.innerHeight == undefined) ? document.documentElement.offsetHeight : Common.Utils.innerHeight(),
|
main_width = main_geometry.width,
|
||||||
maxwidth = (this.initConfig.maxwidth) ? this.initConfig.maxwidth : main_width,
|
main_height = main_geometry.height;
|
||||||
|
var maxwidth = (this.initConfig.maxwidth) ? this.initConfig.maxwidth : main_width,
|
||||||
maxheight = (this.initConfig.maxheight) ? this.initConfig.maxheight : main_height;
|
maxheight = (this.initConfig.maxheight) ? this.initConfig.maxheight : main_height;
|
||||||
|
|
||||||
this.resizing.minw = this.initConfig.minwidth;
|
this.resizing.minw = this.initConfig.minwidth;
|
||||||
|
|
|
@ -41,10 +41,16 @@ define([
|
||||||
], function () {
|
], function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
var native = window.AscDesktopEditor;
|
||||||
|
!!native && native.execCommand('webapps:features', JSON.stringify({
|
||||||
|
version: '{{PRODUCT_VERSION}}',
|
||||||
|
eventloading: true,
|
||||||
|
titlebuttons: true
|
||||||
|
}));
|
||||||
|
|
||||||
var Desktop = function () {
|
var Desktop = function () {
|
||||||
var config = {version:'{{PRODUCT_VERSION}}'};
|
var config = {version:'{{PRODUCT_VERSION}}'};
|
||||||
var app = window.AscDesktopEditor,
|
var webapp = window.DE || window.PE || window.SSE;
|
||||||
webapp = window.DE || window.PE || window.SSE;
|
|
||||||
var titlebuttons;
|
var titlebuttons;
|
||||||
var btnsave_icons = {
|
var btnsave_icons = {
|
||||||
'btn-save': 'save',
|
'btn-save': 'save',
|
||||||
|
@ -52,7 +58,7 @@ define([
|
||||||
'btn-synch': 'synch' };
|
'btn-synch': 'synch' };
|
||||||
|
|
||||||
|
|
||||||
if ( !!app ) {
|
if ( !!native ) {
|
||||||
window.on_native_message = function (cmd, param) {
|
window.on_native_message = function (cmd, param) {
|
||||||
if (/^style:change/.test(cmd)) {
|
if (/^style:change/.test(cmd)) {
|
||||||
var obj = JSON.parse(param);
|
var obj = JSON.parse(param);
|
||||||
|
@ -81,6 +87,13 @@ define([
|
||||||
Common.NotificationCenter.trigger('app:config', {canUndock:true});
|
Common.NotificationCenter.trigger('app:config', {canUndock:true});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_.isNumber(obj.skiptoparea)) {
|
||||||
|
if ( $('.asc-window.modal').length && $('.asc-window.modal').position().top < obj.skiptoparea )
|
||||||
|
$('.asc-window.modal').css('top', obj.skiptoparea);
|
||||||
|
|
||||||
|
Common.Utils.InternalSettings.set('window-inactive-area-top', obj.skiptoparea);
|
||||||
|
}
|
||||||
} else
|
} else
|
||||||
if (/window:status/.test(cmd)) {
|
if (/window:status/.test(cmd)) {
|
||||||
var obj = JSON.parse(param);
|
var obj = JSON.parse(param);
|
||||||
|
@ -104,7 +117,7 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
app.execCommand('editor:config', JSON.stringify(opts));
|
native.execCommand('editor:config', JSON.stringify(opts));
|
||||||
} else
|
} else
|
||||||
if ( !config.callback_editorconfig ) {
|
if ( !config.callback_editorconfig ) {
|
||||||
config.callback_editorconfig = function() {
|
config.callback_editorconfig = function() {
|
||||||
|
@ -128,14 +141,19 @@ define([
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
window.on_native_message('editor:config', 'request');
|
||||||
if ( !!window.native_message_cmd ) {
|
if ( !!window.native_message_cmd ) {
|
||||||
for ( var c in window.native_message_cmd ) {
|
for ( var c in window.native_message_cmd ) {
|
||||||
window.on_native_message(c, window.native_message_cmd[c]);
|
window.on_native_message(c, window.native_message_cmd[c]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// app.execCommand('window:features', {version: config.version, action: 'request'});
|
native.execCommand('webapps:features', JSON.stringify({version: config.version, eventloading:true, titlebuttons:true}));
|
||||||
app.execCommand('webapps:features', {version: config.version, eventloading:true, titlebuttons:true});
|
|
||||||
|
// hide mask for modal window
|
||||||
|
var style = document.createElement('style');
|
||||||
|
style.appendChild(document.createTextNode('.modals-mask{opacity:0 !important;}'));
|
||||||
|
document.getElementsByTagName('head')[0].appendChild(style);
|
||||||
}
|
}
|
||||||
|
|
||||||
var _serializeHeaderButton = function(action, config) {
|
var _serializeHeaderButton = function(action, config) {
|
||||||
|
@ -143,31 +161,30 @@ define([
|
||||||
action: action,
|
action: action,
|
||||||
icon: config.icon || undefined,
|
icon: config.icon || undefined,
|
||||||
hint: config.btn.options.hint,
|
hint: config.btn.options.hint,
|
||||||
disabled: config.disabled
|
disabled: config.btn.isDisabled()
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
var _onTitleButtonDisabled = function (action, e, status) {
|
var _onTitleButtonDisabled = function (action, e, status) {
|
||||||
titlebuttons[action].disabled = status;
|
|
||||||
var _buttons = {};
|
var _buttons = {};
|
||||||
_buttons[action] = status;
|
_buttons[action] = status;
|
||||||
app.execCommand('title:button', JSON.stringify({disabled: _buttons}));
|
native.execCommand('title:button', JSON.stringify({disabled: _buttons}));
|
||||||
};
|
};
|
||||||
|
|
||||||
var _onSaveIconChanged = function (e, opts) {
|
var _onSaveIconChanged = function (e, opts) {
|
||||||
app.execCommand('title:button', JSON.stringify({'icon:changed': {'save': btnsave_icons[opts.next]}}));
|
native.execCommand('title:button', JSON.stringify({'icon:changed': {'save': btnsave_icons[opts.next]}}));
|
||||||
};
|
};
|
||||||
|
|
||||||
var _onModalDialog = function (status) {
|
var _onModalDialog = function (status) {
|
||||||
if ( status == 'open' ) {
|
if ( status == 'open' ) {
|
||||||
app.execCommand('title:button', JSON.stringify({disabled: {'all':true}}));
|
native.execCommand('title:button', JSON.stringify({disabled: {'all':true}}));
|
||||||
} else {
|
} else {
|
||||||
var _buttons = {};
|
var _buttons = {};
|
||||||
for (var i in titlebuttons) {
|
for (var i in titlebuttons) {
|
||||||
_buttons[i] = titlebuttons[i].disabled;
|
_buttons[i] = titlebuttons[i].btn.isDisabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
app.execCommand('title:button', JSON.stringify({'disabled': _buttons}));
|
native.execCommand('title:button', JSON.stringify({'disabled': _buttons}));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -178,13 +195,13 @@ define([
|
||||||
if ( config.isDesktopApp ) {
|
if ( config.isDesktopApp ) {
|
||||||
Common.NotificationCenter.on('app:ready', function (opts) {
|
Common.NotificationCenter.on('app:ready', function (opts) {
|
||||||
_.extend(config, opts);
|
_.extend(config, opts);
|
||||||
!!app && app.execCommand('doc:onready', '');
|
!!native && native.execCommand('doc:onready', '');
|
||||||
|
|
||||||
$('.toolbar').addClass('editor-native-color');
|
$('.toolbar').addClass('editor-native-color');
|
||||||
});
|
});
|
||||||
|
|
||||||
Common.NotificationCenter.on('action:undocking', function (opts) {
|
Common.NotificationCenter.on('action:undocking', function (opts) {
|
||||||
app.execCommand('editor:event', JSON.stringify({action:'undocking', state: opts == 'dock' ? 'dock' : 'undock'}));
|
native.execCommand('editor:event', JSON.stringify({action:'undocking', state: opts == 'dock' ? 'dock' : 'undock'}));
|
||||||
});
|
});
|
||||||
|
|
||||||
Common.NotificationCenter.on('app:face', function (mode) {
|
Common.NotificationCenter.on('app:face', function (mode) {
|
||||||
|
@ -192,32 +209,37 @@ define([
|
||||||
Common.NotificationCenter.trigger('app:config', {canUndock: true});
|
Common.NotificationCenter.trigger('app:config', {canUndock: true});
|
||||||
}
|
}
|
||||||
|
|
||||||
var header = webapp.getController('Viewport').getView('Common.Views.Header');
|
|
||||||
titlebuttons = {};
|
titlebuttons = {};
|
||||||
if ( !!header.btnSave ) {
|
if ( !mode.isEdit ) {
|
||||||
titlebuttons['save'] = {btn: header.btnSave, disabled:false};
|
native.execCommand('webapps:features', JSON.stringify(
|
||||||
|
{version: config.version, eventloading:true, titlebuttons:true, viewmode:true} ));
|
||||||
|
} else {
|
||||||
|
var header = webapp.getController('Viewport').getView('Common.Views.Header');
|
||||||
|
if (!!header.btnSave) {
|
||||||
|
titlebuttons['save'] = {btn: header.btnSave};
|
||||||
|
|
||||||
var iconname = /\s?([^\s]+)$/.exec(titlebuttons.save.btn.$icon.attr('class'));
|
var iconname = /\s?([^\s]+)$/.exec(titlebuttons.save.btn.$icon.attr('class'));
|
||||||
!!iconname && iconname.length && (titlebuttons.save.icon = btnsave_icons[iconname]);
|
!!iconname && iconname.length && (titlebuttons.save.icon = btnsave_icons[iconname]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !!header.btnPrint )
|
if (!!header.btnPrint)
|
||||||
titlebuttons['print'] = {btn: header.btnPrint, disabled:false};
|
titlebuttons['print'] = {btn: header.btnPrint};
|
||||||
|
|
||||||
if ( !!header.btnUndo )
|
if (!!header.btnUndo)
|
||||||
titlebuttons['undo'] = {btn: header.btnUndo, disabled:false};
|
titlebuttons['undo'] = {btn: header.btnUndo};
|
||||||
|
|
||||||
if ( !!header.btnRedo )
|
if (!!header.btnRedo)
|
||||||
titlebuttons['redo'] = {btn: header.btnRedo, disabled:false};
|
titlebuttons['redo'] = {btn: header.btnRedo};
|
||||||
|
|
||||||
for (var i in titlebuttons) {
|
for (var i in titlebuttons) {
|
||||||
titlebuttons[i].btn.options.signals = ['disabled'];
|
titlebuttons[i].btn.options.signals = ['disabled'];
|
||||||
titlebuttons[i].btn.on('disabled', _onTitleButtonDisabled.bind(this, i));
|
titlebuttons[i].btn.on('disabled', _onTitleButtonDisabled.bind(this, i));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!!titlebuttons.save) {
|
if (!!titlebuttons.save) {
|
||||||
titlebuttons.save.btn.options.signals.push('icon:changed');
|
titlebuttons.save.btn.options.signals.push('icon:changed');
|
||||||
titlebuttons.save.btn.on('icon:changed', _onSaveIconChanged.bind(this));
|
titlebuttons.save.btn.on('icon:changed', _onSaveIconChanged.bind(this));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !!config.callback_editorconfig ) {
|
if ( !!config.callback_editorconfig ) {
|
||||||
|
@ -233,19 +255,19 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
process: function (opts) {
|
process: function (opts) {
|
||||||
if ( config.isDesktopApp && !!app ) {
|
if ( config.isDesktopApp && !!native ) {
|
||||||
if ( opts == 'goback' ) {
|
if ( opts == 'goback' ) {
|
||||||
app.execCommand('go:folder',
|
native.execCommand('go:folder',
|
||||||
config.isOffline ? 'offline' : config.customization.goback.url);
|
config.isOffline ? 'offline' : config.customization.goback.url);
|
||||||
return true;
|
return true;
|
||||||
} else
|
} else
|
||||||
if ( opts == 'preloader:hide' ) {
|
if ( opts == 'preloader:hide' ) {
|
||||||
app.execCommand('editor:onready', '');
|
native.execCommand('editor:onready', '');
|
||||||
return true;
|
return true;
|
||||||
} else
|
} else
|
||||||
if ( opts == 'create:new' ) {
|
if ( opts == 'create:new' ) {
|
||||||
if (config.createUrl == 'desktop://create.new') {
|
if (config.createUrl == 'desktop://create.new') {
|
||||||
app.LocalFileCreate(!!window.SSE ? 2 : !!window.PE ? 1 : 0);
|
native.LocalFileCreate(!!window.SSE ? 2 : !!window.PE ? 1 : 0);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -254,8 +276,8 @@ define([
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
requestClose: function () {
|
requestClose: function () {
|
||||||
if ( config.isDesktopApp && !!app ) {
|
if ( config.isDesktopApp && !!native ) {
|
||||||
app.execCommand('editor:event', JSON.stringify({action:'close', url: config.customization.goback.url}));
|
native.execCommand('editor:event', JSON.stringify({action:'close', url: config.customization.goback.url}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -99,7 +99,7 @@ define([
|
||||||
},this),
|
},this),
|
||||||
'show': _.bind(function(cmp){
|
'show': _.bind(function(cmp){
|
||||||
var h = this.diagramEditorView.getHeight(),
|
var h = this.diagramEditorView.getHeight(),
|
||||||
innerHeight = Common.Utils.innerHeight();
|
innerHeight = Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top');
|
||||||
if (innerHeight>h && h<700 || innerHeight<h) {
|
if (innerHeight>h && h<700 || innerHeight<h) {
|
||||||
h = Math.min(innerHeight, 700);
|
h = Math.min(innerHeight, 700);
|
||||||
this.diagramEditorView.setHeight(h);
|
this.diagramEditorView.setHeight(h);
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="chat-options" class="layout-item">
|
<div id="chat-options" class="layout-item">
|
||||||
<div id="chat-options-ct">
|
<div id="chat-options-ct">
|
||||||
<textarea id="chat-msg-text" class="user-select" maxlength="<%=maxMsgLength%>"></textarea>
|
<textarea id="chat-msg-text" class="user-select textarea-control" maxlength="<%=maxMsgLength%>"></textarea>
|
||||||
<button id="chat-msg-btn-add" class="btn normal dlg-btn primary"><%=scope.textSend%></button>
|
<button id="chat-msg-btn-add" class="btn normal dlg-btn primary"><%=scope.textSend%></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<div class="user-message" data-can-copy="true"><%=scope.pickLink(comment)%></div>
|
<div class="user-message" data-can-copy="true"><%=scope.pickLink(comment)%></div>
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
<div class="inner-edit-ct">
|
<div class="inner-edit-ct">
|
||||||
<textarea class="msg-reply user-select" maxlength="maxCommLength"><%=comment%></textarea>
|
<textarea class="msg-reply user-select textarea-control" maxlength="maxCommLength"><%=comment%></textarea>
|
||||||
<button class="btn normal dlg-btn primary btn-inner-edit" id="id-comments-change">textEdit</button>
|
<button class="btn normal dlg-btn primary btn-inner-edit" id="id-comments-change">textEdit</button>
|
||||||
<button class="btn normal dlg-btn btn-inner-close">textCancel</button>
|
<button class="btn normal dlg-btn btn-inner-close">textCancel</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
<%}%>
|
<%}%>
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
<div class="inner-edit-ct">
|
<div class="inner-edit-ct">
|
||||||
<textarea class="msg-reply textarea-fix user-select" maxlength="maxCommLength"><%=item.get("reply")%></textarea>
|
<textarea class="msg-reply textarea-fix user-select textarea-control" maxlength="maxCommLength"><%=item.get("reply")%></textarea>
|
||||||
<button class="btn normal dlg-btn primary btn-inner-edit btn-fix" id="id-comments-change">textEdit</button>
|
<button class="btn normal dlg-btn primary btn-inner-edit btn-fix" id="id-comments-change">textEdit</button>
|
||||||
<button class="btn normal dlg-btn btn-inner-close">textClose</button>
|
<button class="btn normal dlg-btn btn-inner-close">textClose</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
|
|
||||||
<% if (showReply) { %>
|
<% if (showReply) { %>
|
||||||
<div class="reply-ct">
|
<div class="reply-ct">
|
||||||
<textarea class="msg-reply user-select" placeholder="textAddReply" maxlength="maxCommLength"></textarea>
|
<textarea class="msg-reply user-select textarea-control" placeholder="textAddReply" maxlength="maxCommLength"></textarea>
|
||||||
<button class="btn normal dlg-btn primary btn-reply" id="id-comments-change">textReply</button>
|
<button class="btn normal dlg-btn primary btn-reply" id="id-comments-change">textReply</button>
|
||||||
<button class="btn normal dlg-btn btn-close">textClose</button>
|
<button class="btn normal dlg-btn btn-close">textClose</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div style="display: none;" class="layout-item new-comment-ct">
|
<div style="display: none;" class="layout-item new-comment-ct">
|
||||||
<div class="inner-ct">
|
<div class="inner-ct">
|
||||||
<textarea id="comment-msg-new" class="user-select" placeholder="<%=textEnterCommentHint%>" maxlength="<%=maxCommLength%>"/>
|
<textarea id="comment-msg-new" class="user-select textarea-control" placeholder="<%=textEnterCommentHint%>" maxlength="<%=maxCommLength%>"/>
|
||||||
</div>
|
</div>
|
||||||
<button class="btn add normal dlg-btn primary"><%=textAddComment%></button>
|
<button class="btn add normal dlg-btn primary"><%=textAddComment%></button>
|
||||||
<button class="btn cancel normal dlg-btn"><%=textCancel%></button>
|
<button class="btn cancel normal dlg-btn"><%=textCancel%></button>
|
||||||
|
|
|
@ -214,6 +214,7 @@ Common.Utils = _.extend(new(function() {
|
||||||
documentSettingsType: documentSettingsType,
|
documentSettingsType: documentSettingsType,
|
||||||
importTextType: importTextType,
|
importTextType: importTextType,
|
||||||
zoom: function() {return me.zoom;},
|
zoom: function() {return me.zoom;},
|
||||||
|
topOffset: 0,
|
||||||
innerWidth: function() {return me.innerWidth;},
|
innerWidth: function() {return me.innerWidth;},
|
||||||
innerHeight: function() {return me.innerHeight;}
|
innerHeight: function() {return me.innerHeight;}
|
||||||
}
|
}
|
||||||
|
@ -896,6 +897,24 @@ Common.Utils.InternalSettings.set('toolbar-height-tabs', 32);
|
||||||
Common.Utils.InternalSettings.set('toolbar-height-tabs-top-title', 28);
|
Common.Utils.InternalSettings.set('toolbar-height-tabs-top-title', 28);
|
||||||
Common.Utils.InternalSettings.set('toolbar-height-controls', 67);
|
Common.Utils.InternalSettings.set('toolbar-height-controls', 67);
|
||||||
Common.Utils.InternalSettings.set('document-title-height', 28);
|
Common.Utils.InternalSettings.set('document-title-height', 28);
|
||||||
|
Common.Utils.InternalSettings.set('window-inactive-area-top', 0);
|
||||||
|
|
||||||
Common.Utils.InternalSettings.set('toolbar-height-compact', Common.Utils.InternalSettings.get('toolbar-height-tabs'));
|
Common.Utils.InternalSettings.set('toolbar-height-compact', Common.Utils.InternalSettings.get('toolbar-height-tabs'));
|
||||||
Common.Utils.InternalSettings.set('toolbar-height-normal', Common.Utils.InternalSettings.get('toolbar-height-tabs') + Common.Utils.InternalSettings.get('toolbar-height-controls'));
|
Common.Utils.InternalSettings.set('toolbar-height-normal', Common.Utils.InternalSettings.get('toolbar-height-tabs') + Common.Utils.InternalSettings.get('toolbar-height-controls'));
|
||||||
|
|
||||||
|
Common.Utils.ModalWindow = new(function() {
|
||||||
|
var count = 0;
|
||||||
|
return {
|
||||||
|
show: function() {
|
||||||
|
count++;
|
||||||
|
},
|
||||||
|
|
||||||
|
close: function() {
|
||||||
|
count--;
|
||||||
|
},
|
||||||
|
|
||||||
|
isVisible: function() {
|
||||||
|
return count>0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})();
|
|
@ -45,10 +45,11 @@ define([
|
||||||
Common.Views.ExternalDiagramEditor = Common.UI.Window.extend(_.extend({
|
Common.Views.ExternalDiagramEditor = Common.UI.Window.extend(_.extend({
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
var _options = {};
|
var _options = {};
|
||||||
|
var _inner_height = Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top');
|
||||||
_.extend(_options, {
|
_.extend(_options, {
|
||||||
title: this.textTitle,
|
title: this.textTitle,
|
||||||
width: 910,
|
width: 910,
|
||||||
height: (Common.Utils.innerHeight()-700)<0 ? Common.Utils.innerHeight(): 700,
|
height: (_inner_height - 700)<0 ? _inner_height : 700,
|
||||||
cls: 'advanced-settings-dlg',
|
cls: 'advanced-settings-dlg',
|
||||||
header: true,
|
header: true,
|
||||||
toolclose: 'hide',
|
toolclose: 'hide',
|
||||||
|
@ -140,11 +141,11 @@ define([
|
||||||
this.$window.find('> .body').css('height', height-header_height);
|
this.$window.find('> .body').css('height', height-header_height);
|
||||||
this.$window.find('> .body > .box').css('height', height-85);
|
this.$window.find('> .body > .box').css('height', height-85);
|
||||||
|
|
||||||
var top = (Common.Utils.innerHeight() - parseInt(height)) / 2;
|
var top = (Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top') - parseInt(height)) / 2;
|
||||||
var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2;
|
var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2;
|
||||||
|
|
||||||
this.$window.css('left',left);
|
this.$window.css('left',left);
|
||||||
this.$window.css('top',top);
|
this.$window.css('top', Common.Utils.InternalSettings.get('window-inactive-area-top') + top);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -471,6 +471,8 @@ define([
|
||||||
if ( me.documentCaption ) {
|
if ( me.documentCaption ) {
|
||||||
me.labelDocName.text(me.documentCaption);
|
me.labelDocName.text(me.documentCaption);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
$html.find('#rib-doc-name').hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !_.isUndefined(this.options.canRename) ) {
|
if ( !_.isUndefined(this.options.canRename) ) {
|
||||||
|
|
|
@ -59,7 +59,7 @@ define([
|
||||||
width = 414;
|
width = 414;
|
||||||
height = 277;
|
height = 277;
|
||||||
} else {
|
} else {
|
||||||
width = (options.type !== Common.Utils.importTextType.DRM) ? 340 : (options.warning ? 370 : 262);
|
width = (options.type !== Common.Utils.importTextType.DRM) ? 340 : (options.warning ? 420 : 262);
|
||||||
height = (options.type == Common.Utils.importTextType.CSV || options.type == Common.Utils.importTextType.Paste || options.type == Common.Utils.importTextType.Columns) ? 190 : (options.warning ? 187 : 147);
|
height = (options.type == Common.Utils.importTextType.CSV || options.type == Common.Utils.importTextType.Paste || options.type == Common.Utils.importTextType.Columns) ? 190 : (options.warning ? 187 : 147);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ define([
|
||||||
'<div class="icon img-commonctrl warn"/>',
|
'<div class="icon img-commonctrl warn"/>',
|
||||||
'<div style="padding-left: 50px;"><div style="font-size: 12px;">' + t.txtProtected+ '</div>',
|
'<div style="padding-left: 50px;"><div style="font-size: 12px;">' + t.txtProtected+ '</div>',
|
||||||
'<label class="header" style="margin-top: 15px;">' + t.txtPassword + '</label>',
|
'<label class="header" style="margin-top: 15px;">' + t.txtPassword + '</label>',
|
||||||
'<div id="id-password-txt" style="width: 240px;"></div></div>',
|
'<div id="id-password-txt" style="width: 290px;"></div></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<% } else { %>',
|
'<% } else { %>',
|
||||||
'<div>',
|
'<div>',
|
||||||
|
|
Before Width: | Height: | Size: 229 B |
BIN
apps/common/main/resources/img/toolbar/1.5x/big/btn-update.png
Normal file
After Width: | Height: | Size: 623 B |
Before Width: | Height: | Size: 275 B |
Before Width: | Height: | Size: 187 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-update.png
Normal file
After Width: | Height: | Size: 468 B |
Before Width: | Height: | Size: 246 B |
Before Width: | Height: | Size: 316 B |
BIN
apps/common/main/resources/img/toolbar/2x/big/btn-update.png
Normal file
After Width: | Height: | Size: 868 B |
Before Width: | Height: | Size: 356 B |
|
@ -180,13 +180,13 @@
|
||||||
@2ximage: replace(@imagepath, '\.png$', '@2x.png');
|
@2ximage: replace(@imagepath, '\.png$', '@2x.png');
|
||||||
|
|
||||||
@media only screen {
|
@media only screen {
|
||||||
@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9),
|
// @media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9),
|
||||||
(min-resolution: 1.5dppx) and (max-resolution: 1.9dppx),
|
// (min-resolution: 1.5dppx) and (max-resolution: 1.9dppx),
|
||||||
(min-resolution: 144dpi) and (max-resolution: 191dpi)
|
// (min-resolution: 144dpi) and (max-resolution: 191dpi)
|
||||||
{
|
// {
|
||||||
background-image: ~"url(@{1d5ximage})";
|
// background-image: ~"url(@{1d5ximage})";
|
||||||
background-size: @w @h;
|
// background-size: @w @h;
|
||||||
}
|
// }
|
||||||
|
|
||||||
@media (-webkit-min-device-pixel-ratio: 2),
|
@media (-webkit-min-device-pixel-ratio: 2),
|
||||||
(min-resolution: 2dppx),
|
(min-resolution: 2dppx),
|
||||||
|
|
|
@ -50,7 +50,6 @@
|
||||||
|
|
||||||
&.right {
|
&.right {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
min-width: 100px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label {
|
.status-label {
|
||||||
|
|
|
@ -108,7 +108,6 @@ textarea.form-control:focus {
|
||||||
right: 22px;
|
right: 22px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,6 +41,9 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
&:last-of-type {
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.bottom {
|
&.bottom {
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
"DE.ApplicationController.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
"DE.ApplicationController.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Код на грешка: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Код на грешка: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.",
|
"DE.ApplicationController.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "Размерът на файла надвишава ограничението, зададено за вашия сървър.<br> Моля, свържете се с вашия администратор на Document Server за подробности.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Интернет връзката е възстановена и версията на файла е променена.<br> Преди да продължите да работите, трябва да изтеглите файла или да копирате съдържанието му, за да сте сигурни, че нищо не е загубено, и след това да презаредите тази страница.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Файлът не може да бъде достъпен в момента.",
|
"DE.ApplicationController.errorUserDrop": "Файлът не може да бъде достъпен в момента.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
"DE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
||||||
"DE.ApplicationController.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.",
|
"DE.ApplicationController.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.",
|
||||||
|
|
|
@ -1,24 +1,28 @@
|
||||||
{
|
{
|
||||||
"common.view.modals.txtCopy": "Zkopírovat do schránky",
|
"common.view.modals.txtCopy": "Zkopírovat do schránky",
|
||||||
"common.view.modals.txtHeight": "Výška",
|
"common.view.modals.txtHeight": "Výška",
|
||||||
|
"common.view.modals.txtShare": "Odkaz pro sdílení",
|
||||||
"common.view.modals.txtWidth": "Šířka",
|
"common.view.modals.txtWidth": "Šířka",
|
||||||
"DE.ApplicationController.convertationErrorText": "Konverze selhala.",
|
"DE.ApplicationController.convertationErrorText": "Převod se nezdařil.",
|
||||||
"DE.ApplicationController.convertationTimeoutText": "Vypršel čas konverze.",
|
"DE.ApplicationController.convertationTimeoutText": "Překročen časový limit pro provedení převodu.",
|
||||||
"DE.ApplicationController.criticalErrorTitle": "Chyba",
|
"DE.ApplicationController.criticalErrorTitle": "Chyba",
|
||||||
"DE.ApplicationController.downloadErrorText": "Stahování selhalo.",
|
"DE.ApplicationController.downloadErrorText": "Stahování se nezdařilo.",
|
||||||
"DE.ApplicationController.downloadTextText": "Stahování dokumentu...",
|
"DE.ApplicationController.downloadTextText": "Stahování dokumentu…",
|
||||||
"DE.ApplicationController.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
"DE.ApplicationController.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Kód chyby: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Kód chyby: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Dokument je chráněn heslem a nelze otevřít.",
|
"DE.ApplicationController.errorFilePassProtect": "Soubor je chráněn heslem a bez něj ho nelze otevřít.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Tento soubor není nyní přístupný.",
|
"DE.ApplicationController.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.<br>Ohledně podrobností se obraťte na správce dokumentového serveru.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.<br>Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.",
|
||||||
|
"DE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Varování",
|
"DE.ApplicationController.notcriticalErrorTitle": "Varování",
|
||||||
|
"DE.ApplicationController.scriptLoadError": "Připojení je příliš pomalé, některé součásti se nepodařilo načíst. Načtěte stránku znovu.",
|
||||||
"DE.ApplicationController.textLoadingDocument": "Načítání dokumentu",
|
"DE.ApplicationController.textLoadingDocument": "Načítání dokumentu",
|
||||||
"DE.ApplicationController.textOf": "z",
|
"DE.ApplicationController.textOf": "z",
|
||||||
"DE.ApplicationController.txtClose": "Zavřít",
|
"DE.ApplicationController.txtClose": "Zavřít",
|
||||||
"DE.ApplicationController.unknownErrorText": "Neznámá chyba.",
|
"DE.ApplicationController.unknownErrorText": "Neznámá chyba.",
|
||||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Váš prohlížeč není podporován.",
|
"DE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.",
|
||||||
"DE.ApplicationController.waitText": "Prosím, čekejte...",
|
"DE.ApplicationController.waitText": "Čekejte prosím…",
|
||||||
"DE.ApplicationView.txtDownload": "Stáhnout",
|
"DE.ApplicationView.txtDownload": "Stáhnout",
|
||||||
"DE.ApplicationView.txtFullScreen": "Celá obrazovka",
|
"DE.ApplicationView.txtFullScreen": "Na celou obrazovku",
|
||||||
"DE.ApplicationView.txtShare": "Sdílet"
|
"DE.ApplicationView.txtShare": "Sdílet"
|
||||||
}
|
}
|
|
@ -5,13 +5,15 @@
|
||||||
"common.view.modals.txtShare": "Link teilen",
|
"common.view.modals.txtShare": "Link teilen",
|
||||||
"common.view.modals.txtWidth": "Breite",
|
"common.view.modals.txtWidth": "Breite",
|
||||||
"DE.ApplicationController.convertationErrorText": "Konvertierung ist fehlgeschlagen.",
|
"DE.ApplicationController.convertationErrorText": "Konvertierung ist fehlgeschlagen.",
|
||||||
"DE.ApplicationController.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
|
"DE.ApplicationController.convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
|
||||||
"DE.ApplicationController.criticalErrorTitle": "Fehler",
|
"DE.ApplicationController.criticalErrorTitle": "Fehler",
|
||||||
"DE.ApplicationController.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
|
"DE.ApplicationController.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
|
||||||
"DE.ApplicationController.downloadTextText": "Dokument wird heruntergeladen...",
|
"DE.ApplicationController.downloadTextText": "Dokument wird heruntergeladen...",
|
||||||
"DE.ApplicationController.errorAccessDeny": "Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
"DE.ApplicationController.errorAccessDeny": "Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.<br>Bitte wenden Sie sich an Ihren Document Serveradministrator.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Fehlercode: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Fehlercode: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
|
"DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.<br>Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
|
"DE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Warnung",
|
"DE.ApplicationController.notcriticalErrorTitle": "Warnung",
|
||||||
"DE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.",
|
"DE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Error code: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Error code: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
|
"DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
|
||||||
"DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
"DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||||
"DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
"DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Warning",
|
"DE.ApplicationController.notcriticalErrorTitle": "Warning",
|
||||||
"DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
|
"DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
|
||||||
|
@ -22,7 +23,6 @@
|
||||||
"DE.ApplicationController.unknownErrorText": "Unknown error.",
|
"DE.ApplicationController.unknownErrorText": "Unknown error.",
|
||||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.",
|
"DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.",
|
||||||
"DE.ApplicationController.waitText": "Please, wait...",
|
"DE.ApplicationController.waitText": "Please, wait...",
|
||||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
|
||||||
"DE.ApplicationView.txtDownload": "Download",
|
"DE.ApplicationView.txtDownload": "Download",
|
||||||
"DE.ApplicationView.txtEmbed": "Embed",
|
"DE.ApplicationView.txtEmbed": "Embed",
|
||||||
"DE.ApplicationView.txtFullScreen": "Full Screen",
|
"DE.ApplicationView.txtFullScreen": "Full Screen",
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
"DE.ApplicationController.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con su Administrador del Servidor de Documentos.",
|
"DE.ApplicationController.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con su Administrador del Servidor de Documentos.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Código de error: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Código de error: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
|
"DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Póngase en contacto con el administrador del Servidor de documentos para obtener más información.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página.",
|
||||||
"DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.",
|
"DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
"DE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||||
"DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.",
|
"DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
|
"DE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
|
||||||
"DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
"DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.<br>Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
"DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
"DE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
||||||
"DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
"DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"common.view.modals.txtCopy": "Másolás a vágólapra",
|
"common.view.modals.txtCopy": "Másolás a vágólapra",
|
||||||
"common.view.modals.txtEmbed": "Beágyaz",
|
"common.view.modals.txtEmbed": "Beágyazás",
|
||||||
"common.view.modals.txtHeight": "Magasság",
|
"common.view.modals.txtHeight": "Magasság",
|
||||||
"common.view.modals.txtShare": "Hivatkozás megosztása",
|
"common.view.modals.txtShare": "Hivatkozás megosztása",
|
||||||
"common.view.modals.txtWidth": "Szélesség",
|
"common.view.modals.txtWidth": "Szélesség",
|
||||||
|
@ -12,17 +12,19 @@
|
||||||
"DE.ApplicationController.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
|
"DE.ApplicationController.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Hibakód: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Hibakód: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.",
|
"DE.ApplicationController.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.",
|
||||||
"DE.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető",
|
"DE.ApplicationController.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.<br>Kérjük, forduljon a Document Server rendszergazdájához a részletekért.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.<br>Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.",
|
||||||
|
"DE.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés",
|
"DE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
"DE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.",
|
"DE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.",
|
||||||
"DE.ApplicationController.textLoadingDocument": "Dokumentum betöltése",
|
"DE.ApplicationController.textLoadingDocument": "Dokumentum betöltése",
|
||||||
"DE.ApplicationController.textOf": "of",
|
"DE.ApplicationController.textOf": "of",
|
||||||
"DE.ApplicationController.txtClose": "Bezár",
|
"DE.ApplicationController.txtClose": "Bezárás",
|
||||||
"DE.ApplicationController.unknownErrorText": "Ismeretlen hiba.",
|
"DE.ApplicationController.unknownErrorText": "Ismeretlen hiba.",
|
||||||
"DE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.",
|
"DE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.",
|
||||||
"DE.ApplicationController.waitText": "Kérjük várjon...",
|
"DE.ApplicationController.waitText": "Kérjük, várjon...",
|
||||||
"DE.ApplicationView.txtDownload": "Letöltés",
|
"DE.ApplicationView.txtDownload": "Letöltés",
|
||||||
"DE.ApplicationView.txtEmbed": "Beágyaz",
|
"DE.ApplicationView.txtEmbed": "Beágyazás",
|
||||||
"DE.ApplicationView.txtFullScreen": "Teljes képernyő",
|
"DE.ApplicationView.txtFullScreen": "Teljes képernyő",
|
||||||
"DE.ApplicationView.txtShare": "Megosztás"
|
"DE.ApplicationView.txtShare": "Megosztás"
|
||||||
}
|
}
|
|
@ -13,6 +13,7 @@
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Codice errore: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Codice errore: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
"DE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
||||||
"DE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
"DE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
"DE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
||||||
"DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
"DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
||||||
|
|
|
@ -1,22 +1,30 @@
|
||||||
{
|
{
|
||||||
"common.view.modals.txtCopy": "Copiar para a área de transferência",
|
"common.view.modals.txtCopy": "Copiar para a área de transferência",
|
||||||
|
"common.view.modals.txtEmbed": "Incorporar",
|
||||||
"common.view.modals.txtHeight": "Altura",
|
"common.view.modals.txtHeight": "Altura",
|
||||||
|
"common.view.modals.txtShare": "Compartilhar link",
|
||||||
"common.view.modals.txtWidth": "Largura",
|
"common.view.modals.txtWidth": "Largura",
|
||||||
|
"DE.ApplicationController.convertationErrorText": "Conversão falhou.",
|
||||||
"DE.ApplicationController.convertationTimeoutText": "Tempo limite de conversão excedido.",
|
"DE.ApplicationController.convertationTimeoutText": "Tempo limite de conversão excedido.",
|
||||||
"DE.ApplicationController.criticalErrorTitle": "Erro",
|
"DE.ApplicationController.criticalErrorTitle": "Erro",
|
||||||
"DE.ApplicationController.downloadErrorText": "Falha ao baixar",
|
"DE.ApplicationController.downloadErrorText": "Transferência falhou.",
|
||||||
"DE.ApplicationController.downloadTextText": "Baixando documento...",
|
"DE.ApplicationController.downloadTextText": "Transferindo documento...",
|
||||||
"DE.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.<br>Entre em contato com o administrador do Document Server.",
|
"DE.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.<br>Entre em contato com o administrador do Document Server.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Código do erro: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Código do erro: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
|
"DE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. <br> Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada. <br> Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.",
|
||||||
"DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.",
|
"DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
"DE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||||
|
"DE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.",
|
||||||
"DE.ApplicationController.textLoadingDocument": "Carregando documento",
|
"DE.ApplicationController.textLoadingDocument": "Carregando documento",
|
||||||
"DE.ApplicationController.textOf": "de",
|
"DE.ApplicationController.textOf": "de",
|
||||||
"DE.ApplicationController.txtClose": "Fechar",
|
"DE.ApplicationController.txtClose": "Fechar",
|
||||||
"DE.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
"DE.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
||||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.",
|
"DE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.",
|
||||||
"DE.ApplicationController.waitText": "Aguarde...",
|
"DE.ApplicationController.waitText": "Aguarde...",
|
||||||
"DE.ApplicationView.txtDownload": "Baixar",
|
"DE.ApplicationView.txtDownload": "Transferir",
|
||||||
|
"DE.ApplicationView.txtEmbed": "Incorporar",
|
||||||
|
"DE.ApplicationView.txtFullScreen": "Tela cheia",
|
||||||
"DE.ApplicationView.txtShare": "Compartilhar"
|
"DE.ApplicationView.txtShare": "Compartilhar"
|
||||||
}
|
}
|
|
@ -13,6 +13,7 @@
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Код ошибки: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Код ошибки: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
"DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
||||||
"DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
"DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.<br>Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
|
||||||
"DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
"DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
"DE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
||||||
"DE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
"DE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
||||||
|
|
30
apps/documenteditor/embed/locale/sv.json
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"common.view.modals.txtCopy": "Kopiera till klippbord",
|
||||||
|
"common.view.modals.txtEmbed": "Inbädda",
|
||||||
|
"common.view.modals.txtHeight": "Höjd",
|
||||||
|
"common.view.modals.txtShare": "Delningslänk",
|
||||||
|
"common.view.modals.txtWidth": "Bredd",
|
||||||
|
"DE.ApplicationController.convertationErrorText": "Fel vid konvertering",
|
||||||
|
"DE.ApplicationController.convertationTimeoutText": "Konverteringstiden har överskridits.",
|
||||||
|
"DE.ApplicationController.criticalErrorTitle": "Fel",
|
||||||
|
"DE.ApplicationController.downloadErrorText": "Nedladdning misslyckades",
|
||||||
|
"DE.ApplicationController.downloadTextText": "Laddar ner dokumentet...",
|
||||||
|
"DE.ApplicationController.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.<br>Vänligen kontakta din systemadministratör.",
|
||||||
|
"DE.ApplicationController.errorDefaultMessage": "Felkod: %1",
|
||||||
|
"DE.ApplicationController.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.<br>Var snäll och kontakta administratören för dokumentservern för mer information.",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.<br>Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.",
|
||||||
|
"DE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ",
|
||||||
|
"DE.ApplicationController.notcriticalErrorTitle": "Varning",
|
||||||
|
"DE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.",
|
||||||
|
"DE.ApplicationController.textLoadingDocument": "Laddar dokument",
|
||||||
|
"DE.ApplicationController.textOf": "av",
|
||||||
|
"DE.ApplicationController.txtClose": "Stäng",
|
||||||
|
"DE.ApplicationController.unknownErrorText": "Okänt fel.",
|
||||||
|
"DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.",
|
||||||
|
"DE.ApplicationController.waitText": "Var snäll och vänta...",
|
||||||
|
"DE.ApplicationView.txtDownload": "Ladda ner",
|
||||||
|
"DE.ApplicationView.txtEmbed": "Inbädda",
|
||||||
|
"DE.ApplicationView.txtFullScreen": "Fullskärm",
|
||||||
|
"DE.ApplicationView.txtShare": "Dela"
|
||||||
|
}
|
|
@ -12,6 +12,8 @@
|
||||||
"DE.ApplicationController.errorAccessDeny": "您正在尝试执行您没有权限的操作。<br>请联系您的文档服务器管理员.",
|
"DE.ApplicationController.errorAccessDeny": "您正在尝试执行您没有权限的操作。<br>请联系您的文档服务器管理员.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "错误代码:%1",
|
"DE.ApplicationController.errorDefaultMessage": "错误代码:%1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法被打开。",
|
"DE.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法被打开。",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.<br>有关详细信息,请与文档服务器管理员联系。",
|
||||||
|
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "网连接已还原文件版本已更改。.<br>在继续工作之前,需要下载文件或复制其内容以确保没有丢失任何内容,然后重新加载此页。",
|
||||||
"DE.ApplicationController.errorUserDrop": "该文件现在无法访问。",
|
"DE.ApplicationController.errorUserDrop": "该文件现在无法访问。",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "警告",
|
"DE.ApplicationController.notcriticalErrorTitle": "警告",
|
||||||
"DE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。",
|
"DE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。",
|
||||||
|
|
|
@ -157,7 +157,7 @@ define([
|
||||||
|
|
||||||
this._state = {isDisconnected: false, usersCount: 1, fastCoauth: true, lostEditingRights: false, licenseType: false};
|
this._state = {isDisconnected: false, usersCount: 1, fastCoauth: true, lostEditingRights: false, licenseType: false};
|
||||||
this.languages = null;
|
this.languages = null;
|
||||||
this.isModalShowed = 0;
|
|
||||||
// Initialize viewport
|
// Initialize viewport
|
||||||
|
|
||||||
if (!Common.Utils.isBrowserSupported()){
|
if (!Common.Utils.isBrowserSupported()){
|
||||||
|
@ -227,15 +227,15 @@ define([
|
||||||
if (/msg-reply/.test(e.target.className)) {
|
if (/msg-reply/.test(e.target.className)) {
|
||||||
me.dontCloseDummyComment = true;
|
me.dontCloseDummyComment = true;
|
||||||
me.beforeShowDummyComment = me.beforeCloseDummyComment = false;
|
me.beforeShowDummyComment = me.beforeCloseDummyComment = false;
|
||||||
} else if (/chat-msg-text/.test(e.target.id))
|
} else if (/textarea-control/.test(e.target.className))
|
||||||
me.dontCloseChat = true;
|
me.inTextareaControl = true;
|
||||||
else if (!me.isModalShowed && /form-control/.test(e.target.className))
|
else if (!Common.Utils.ModalWindow.isVisible() && /form-control/.test(e.target.className))
|
||||||
me.inFormControl = true;
|
me.inFormControl = true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$(document.body).on('blur', 'input, textarea', function(e) {
|
$(document.body).on('blur', 'input, textarea', function(e) {
|
||||||
if (!me.isModalShowed) {
|
if (!Common.Utils.ModalWindow.isVisible()) {
|
||||||
if (/form-control/.test(e.target.className))
|
if (/form-control/.test(e.target.className))
|
||||||
me.inFormControl = false;
|
me.inFormControl = false;
|
||||||
if (me.getApplication().getController('LeftMenu').getView('LeftMenu').getMenu('file').isVisible())
|
if (me.getApplication().getController('LeftMenu').getView('LeftMenu').getMenu('file').isVisible())
|
||||||
|
@ -255,8 +255,8 @@ define([
|
||||||
else
|
else
|
||||||
me.beforeCloseDummyComment = true;
|
me.beforeCloseDummyComment = true;
|
||||||
}
|
}
|
||||||
else if (/chat-msg-text/.test(e.target.id))
|
else if (/textarea-control/.test(e.target.className))
|
||||||
me.dontCloseChat = false;
|
me.inTextareaControl = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).on('dragover', function(e) {
|
}).on('dragover', function(e) {
|
||||||
|
@ -283,31 +283,31 @@ define([
|
||||||
|
|
||||||
Common.NotificationCenter.on({
|
Common.NotificationCenter.on({
|
||||||
'modal:show': function(){
|
'modal:show': function(){
|
||||||
me.isModalShowed++;
|
Common.Utils.ModalWindow.show();
|
||||||
me.api.asc_enableKeyEvents(false);
|
me.api.asc_enableKeyEvents(false);
|
||||||
},
|
},
|
||||||
'modal:close': function(dlg) {
|
'modal:close': function(dlg) {
|
||||||
me.isModalShowed--;
|
Common.Utils.ModalWindow.close();
|
||||||
if (!me.isModalShowed)
|
if (!Common.Utils.ModalWindow.isVisible())
|
||||||
me.api.asc_enableKeyEvents(true);
|
me.api.asc_enableKeyEvents(true);
|
||||||
},
|
},
|
||||||
'modal:hide': function(dlg) {
|
'modal:hide': function(dlg) {
|
||||||
me.isModalShowed--;
|
Common.Utils.ModalWindow.close();
|
||||||
if (!me.isModalShowed)
|
if (!Common.Utils.ModalWindow.isVisible())
|
||||||
me.api.asc_enableKeyEvents(true);
|
me.api.asc_enableKeyEvents(true);
|
||||||
},
|
},
|
||||||
'settings:unitschanged':_.bind(this.unitsChanged, this),
|
'settings:unitschanged':_.bind(this.unitsChanged, this),
|
||||||
'dataview:focus': function(e){
|
'dataview:focus': function(e){
|
||||||
},
|
},
|
||||||
'dataview:blur': function(e){
|
'dataview:blur': function(e){
|
||||||
if (!me.isModalShowed) {
|
if (!Common.Utils.ModalWindow.isVisible()) {
|
||||||
me.api.asc_enableKeyEvents(true);
|
me.api.asc_enableKeyEvents(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'menu:show': function(e){
|
'menu:show': function(e){
|
||||||
},
|
},
|
||||||
'menu:hide': function(e, isFromInputControl){
|
'menu:hide': function(e, isFromInputControl){
|
||||||
if (!me.isModalShowed && !isFromInputControl)
|
if (!Common.Utils.ModalWindow.isVisible() && !isFromInputControl)
|
||||||
me.api.asc_enableKeyEvents(true);
|
me.api.asc_enableKeyEvents(true);
|
||||||
},
|
},
|
||||||
'edit:complete': _.bind(me.onEditComplete, me)
|
'edit:complete': _.bind(me.onEditComplete, me)
|
||||||
|
@ -754,7 +754,7 @@ define([
|
||||||
if ( type == Asc.c_oAscAsyncActionType.BlockInteraction &&
|
if ( type == Asc.c_oAscAsyncActionType.BlockInteraction &&
|
||||||
(!this.getApplication().getController('LeftMenu').dlgSearch || !this.getApplication().getController('LeftMenu').dlgSearch.isVisible()) &&
|
(!this.getApplication().getController('LeftMenu').dlgSearch || !this.getApplication().getController('LeftMenu').dlgSearch.isVisible()) &&
|
||||||
(!this.getApplication().getController('Toolbar').dlgSymbolTable || !this.getApplication().getController('Toolbar').dlgSymbolTable.isVisible()) &&
|
(!this.getApplication().getController('Toolbar').dlgSymbolTable || !this.getApplication().getController('Toolbar').dlgSymbolTable.isVisible()) &&
|
||||||
!((id == Asc.c_oAscAsyncAction['LoadDocumentFonts'] || id == Asc.c_oAscAsyncAction['ApplyChanges']) && (this.dontCloseDummyComment || this.dontCloseChat || this.isModalShowed || this.inFormControl)) ) {
|
!((id == Asc.c_oAscAsyncAction['LoadDocumentFonts'] || id == Asc.c_oAscAsyncAction['ApplyChanges']) && (this.dontCloseDummyComment || this.inTextareaControl || Common.Utils.ModalWindow.isVisible() || this.inFormControl)) ) {
|
||||||
// this.onEditComplete(this.loadMask); //если делать фокус, то при принятии чужих изменений, заканчивается свой композитный ввод
|
// this.onEditComplete(this.loadMask); //если делать фокус, то при принятии чужих изменений, заканчивается свой композитный ввод
|
||||||
this.api.asc_enableKeyEvents(true);
|
this.api.asc_enableKeyEvents(true);
|
||||||
}
|
}
|
||||||
|
@ -2140,7 +2140,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onPrint: function() {
|
onPrint: function() {
|
||||||
if (!this.appOptions.canPrint || this.isModalShowed) return;
|
if (!this.appOptions.canPrint || Common.Utils.ModalWindow.isVisible()) return;
|
||||||
|
|
||||||
if (this.api)
|
if (this.api)
|
||||||
this.api.asc_Print(new Asc.asc_CDownloadOptions(null, Common.Utils.isChrome || Common.Utils.isSafari || Common.Utils.isOpera)); // if isChrome or isSafari or isOpera == true use asc_onPrintUrl event
|
this.api.asc_Print(new Asc.asc_CDownloadOptions(null, Common.Utils.isChrome || Common.Utils.isSafari || Common.Utils.isOpera)); // if isChrome or isSafari or isOpera == true use asc_onPrintUrl event
|
||||||
|
|
|
@ -420,7 +420,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onApiChangeFont: function(font) {
|
onApiChangeFont: function(font) {
|
||||||
!this.getApplication().getController('Main').isModalShowed && this.toolbar.cmbFontName.onApiChangeFont(font);
|
!Common.Utils.ModalWindow.isVisible() && this.toolbar.cmbFontName.onApiChangeFont(font);
|
||||||
},
|
},
|
||||||
|
|
||||||
onApiFontSize: function(size) {
|
onApiFontSize: function(size) {
|
||||||
|
@ -1232,7 +1232,7 @@ define([
|
||||||
onFontNameSelect: function(combo, record) {
|
onFontNameSelect: function(combo, record) {
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
if (record.isNewFont) {
|
if (record.isNewFont) {
|
||||||
!this.getApplication().getController('Main').isModalShowed &&
|
!Common.Utils.ModalWindow.isVisible() &&
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
width: 500,
|
width: 500,
|
||||||
closable: false,
|
closable: false,
|
||||||
|
|
|
@ -422,6 +422,8 @@ define([
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
userTipHide();
|
userTipHide();
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
|
me.mode && me.mode.isDesktopApp && me.api && me.api.asc_onShowPopupWindow();
|
||||||
|
|
||||||
},
|
},
|
||||||
'modal:show': function(e){
|
'modal:show': function(e){
|
||||||
me.hideTips();
|
me.hideTips();
|
||||||
|
|
|
@ -385,7 +385,7 @@ define([
|
||||||
if ( !this.$el.is(':visible') ) return;
|
if ( !this.$el.is(':visible') ) return;
|
||||||
|
|
||||||
if (!this.developerHint) {
|
if (!this.developerHint) {
|
||||||
this.developerHint = $('<div id="developer-hint">' + ((mode == Asc.c_oLicenseMode.Trial) ? this.txtTrial : this.txtDeveloper) + '</div>').appendTo(this.$el);
|
this.developerHint = $('<div id="developer-hint">' + ((mode == Asc.c_oLicenseMode.Trial) ? this.txtTrial.toLocaleUpperCase() : this.txtDeveloper.toLocaleUpperCase()) + '</div>').appendTo(this.$el);
|
||||||
this.devHeight = this.developerHint.outerHeight();
|
this.devHeight = this.developerHint.outerHeight();
|
||||||
$(window).on('resize', _.bind(this.onWindowResize, this));
|
$(window).on('resize', _.bind(this.onWindowResize, this));
|
||||||
}
|
}
|
||||||
|
|
|
@ -133,7 +133,7 @@ define([
|
||||||
|
|
||||||
this.btnContentsUpdate = new Common.UI.Button({
|
this.btnContentsUpdate = new Common.UI.Button({
|
||||||
cls: 'btn-toolbar x-huge icon-top',
|
cls: 'btn-toolbar x-huge icon-top',
|
||||||
iconCls: 'toolbar__icon btn-contents-update',
|
iconCls: 'toolbar__icon btn-update',
|
||||||
caption: this.capBtnContentsUpdate,
|
caption: this.capBtnContentsUpdate,
|
||||||
split: true,
|
split: true,
|
||||||
menu: true,
|
menu: true,
|
||||||
|
|
|
@ -202,6 +202,7 @@
|
||||||
window.parentOrigin = params["parentOrigin"];
|
window.parentOrigin = params["parentOrigin"];
|
||||||
|
|
||||||
if ( window.AscDesktopEditor ) {
|
if ( window.AscDesktopEditor ) {
|
||||||
|
window.desktop = window.AscDesktopEditor;
|
||||||
window.on_native_message = function (cmd, param) {
|
window.on_native_message = function (cmd, param) {
|
||||||
!window.native_message_cmd && (window.native_message_cmd = []);
|
!window.native_message_cmd && (window.native_message_cmd = []);
|
||||||
window.native_message_cmd[cmd] = param;
|
window.native_message_cmd[cmd] = param;
|
||||||
|
@ -216,6 +217,13 @@
|
||||||
<div id="viewport"></div>
|
<div id="viewport"></div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
if ( window.desktop ) {
|
||||||
|
var logo = document.getElementsByClassName('loading-logo');
|
||||||
|
if ( !!logo && logo.length ) {
|
||||||
|
logo[0].setAttribute('style','display:none;');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var params = getUrlParams(),
|
var params = getUrlParams(),
|
||||||
notoolbar = params["toolbar"] == 'false',
|
notoolbar = params["toolbar"] == 'false',
|
||||||
compact = params["compact"] == 'true',
|
compact = params["compact"] == 'true',
|
||||||
|
|
|
@ -1712,7 +1712,7 @@
|
||||||
"DE.Views.RightMenu.txtTableSettings": "Настройки на таблицата",
|
"DE.Views.RightMenu.txtTableSettings": "Настройки на таблицата",
|
||||||
"DE.Views.RightMenu.txtTextArtSettings": "Настройки за текстово изкуство",
|
"DE.Views.RightMenu.txtTextArtSettings": "Настройки за текстово изкуство",
|
||||||
"DE.Views.ShapeSettings.strBackground": "Цвят на фона",
|
"DE.Views.ShapeSettings.strBackground": "Цвят на фона",
|
||||||
"DE.Views.ShapeSettings.strChange": "Промяна на автоматична форма",
|
"DE.Views.ShapeSettings.strChange": "Промяна на форма",
|
||||||
"DE.Views.ShapeSettings.strColor": "Цвят",
|
"DE.Views.ShapeSettings.strColor": "Цвят",
|
||||||
"DE.Views.ShapeSettings.strFill": "Напълнете",
|
"DE.Views.ShapeSettings.strFill": "Напълнете",
|
||||||
"DE.Views.ShapeSettings.strForeground": "Цвят на преден план",
|
"DE.Views.ShapeSettings.strForeground": "Цвят на преден план",
|
||||||
|
|
1879
apps/documenteditor/main/locale/da.json
Normal file
|
@ -10,6 +10,7 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.warningText": "Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.",
|
"Common.Controllers.ExternalMergeEditor.warningText": "Das Objekt ist deaktiviert, weil es momentan von einem anderen Benutzer bearbeitet wird.",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "Warnung",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "Warnung",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "Achtung",
|
"Common.Controllers.History.notcriticalErrorTitle": "Achtung",
|
||||||
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Um Dokumente zu vergleichen, gelten alle nachverfolgten Änderungen als akzeptiert. Möchten Sie weiter machen?",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "Mindestens",
|
"Common.Controllers.ReviewChanges.textAtLeast": "Mindestens",
|
||||||
"Common.Controllers.ReviewChanges.textAuto": "auto",
|
"Common.Controllers.ReviewChanges.textAuto": "auto",
|
||||||
"Common.Controllers.ReviewChanges.textBaseline": "Grundlinie",
|
"Common.Controllers.ReviewChanges.textBaseline": "Grundlinie",
|
||||||
|
@ -63,11 +64,12 @@
|
||||||
"Common.Controllers.ReviewChanges.textStrikeout": "Durchgestrichen",
|
"Common.Controllers.ReviewChanges.textStrikeout": "Durchgestrichen",
|
||||||
"Common.Controllers.ReviewChanges.textSubScript": "Tiefgestellt",
|
"Common.Controllers.ReviewChanges.textSubScript": "Tiefgestellt",
|
||||||
"Common.Controllers.ReviewChanges.textSuperScript": "Hochgestellt",
|
"Common.Controllers.ReviewChanges.textSuperScript": "Hochgestellt",
|
||||||
"Common.Controllers.ReviewChanges.textTableChanged": "<b> Tabelleneinstellungen sind geändert <b />",
|
"Common.Controllers.ReviewChanges.textTableChanged": "<b>Tabelleneinstellungen sind geändert <b />",
|
||||||
"Common.Controllers.ReviewChanges.textTableRowsAdd": "<b> Tabellenzeilen sind hinzugefügt <b />",
|
"Common.Controllers.ReviewChanges.textTableRowsAdd": "<b> Tabellenzeilen sind hinzugefügt <b />",
|
||||||
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b> Tabellenzeilen sind gelöscht<b />",
|
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Tabellenzeilen sind gelöscht<b />",
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Registerkarten ändern",
|
"Common.Controllers.ReviewChanges.textTabs": "Registerkarten ändern",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Unterstrichen",
|
"Common.Controllers.ReviewChanges.textUnderline": "Unterstrichen",
|
||||||
|
"Common.Controllers.ReviewChanges.textUrl": "Dokument-URL einfügen",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow Сontrol",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow Сontrol",
|
||||||
"Common.define.chartData.textArea": "Fläche",
|
"Common.define.chartData.textArea": "Fläche",
|
||||||
"Common.define.chartData.textBar": "Balken",
|
"Common.define.chartData.textBar": "Balken",
|
||||||
|
@ -81,9 +83,36 @@
|
||||||
"Common.UI.Calendar.textApril": "April",
|
"Common.UI.Calendar.textApril": "April",
|
||||||
"Common.UI.Calendar.textAugust": "August",
|
"Common.UI.Calendar.textAugust": "August",
|
||||||
"Common.UI.Calendar.textDecember": "Dezember",
|
"Common.UI.Calendar.textDecember": "Dezember",
|
||||||
|
"Common.UI.Calendar.textFebruary": "Februar",
|
||||||
|
"Common.UI.Calendar.textJanuary": "Januar",
|
||||||
|
"Common.UI.Calendar.textJuly": "Juli",
|
||||||
|
"Common.UI.Calendar.textJune": "Juni",
|
||||||
|
"Common.UI.Calendar.textMarch": "März",
|
||||||
|
"Common.UI.Calendar.textMay": "Mai",
|
||||||
|
"Common.UI.Calendar.textMonths": "Monate",
|
||||||
|
"Common.UI.Calendar.textNovember": "November",
|
||||||
|
"Common.UI.Calendar.textOctober": "Oktober",
|
||||||
|
"Common.UI.Calendar.textSeptember": "September",
|
||||||
"Common.UI.Calendar.textShortApril": "Apr",
|
"Common.UI.Calendar.textShortApril": "Apr",
|
||||||
"Common.UI.Calendar.textShortAugust": "Aug",
|
"Common.UI.Calendar.textShortAugust": "Aug",
|
||||||
"Common.UI.Calendar.textShortDecember": "Dez",
|
"Common.UI.Calendar.textShortDecember": "Dez",
|
||||||
|
"Common.UI.Calendar.textShortFebruary": "Feb",
|
||||||
|
"Common.UI.Calendar.textShortFriday": "Fr",
|
||||||
|
"Common.UI.Calendar.textShortJanuary": "Jan",
|
||||||
|
"Common.UI.Calendar.textShortJuly": "Jul",
|
||||||
|
"Common.UI.Calendar.textShortJune": "Jun",
|
||||||
|
"Common.UI.Calendar.textShortMarch": "Mrz",
|
||||||
|
"Common.UI.Calendar.textShortMay": "Mai",
|
||||||
|
"Common.UI.Calendar.textShortMonday": "Mo",
|
||||||
|
"Common.UI.Calendar.textShortNovember": "Nov",
|
||||||
|
"Common.UI.Calendar.textShortOctober": "Okt",
|
||||||
|
"Common.UI.Calendar.textShortSaturday": "Sa",
|
||||||
|
"Common.UI.Calendar.textShortSeptember": "Sep",
|
||||||
|
"Common.UI.Calendar.textShortSunday": "Son",
|
||||||
|
"Common.UI.Calendar.textShortThursday": "Do",
|
||||||
|
"Common.UI.Calendar.textShortTuesday": "Di",
|
||||||
|
"Common.UI.Calendar.textShortWednesday": "Mi",
|
||||||
|
"Common.UI.Calendar.textYears": "Jahre",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Keine Rahmen",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Keine Rahmen",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Keine Formate",
|
"Common.UI.ComboDataView.emptyComboText": "Keine Formate",
|
||||||
|
@ -143,7 +172,7 @@
|
||||||
"Common.Views.Comments.textResolve": "Lösen",
|
"Common.Views.Comments.textResolve": "Lösen",
|
||||||
"Common.Views.Comments.textResolved": "Gelöst",
|
"Common.Views.Comments.textResolved": "Gelöst",
|
||||||
"Common.Views.CopyWarningDialog.textDontShow": "Diese Meldung nicht mehr anzeigen",
|
"Common.Views.CopyWarningDialog.textDontShow": "Diese Meldung nicht mehr anzeigen",
|
||||||
"Common.Views.CopyWarningDialog.textMsg": "Die Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\" können mithilfe den Schaltflächen in der Symbolleiste und Aktionen im Kontextmenü nur in dieser Editor-Registerkarte durchgeführt werden.<br><br> Für Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:",
|
"Common.Views.CopyWarningDialog.textMsg": "Kopier-, Ausschneide- und Einfügeaktionen mit den Schaltflächen der Editor-Symbolleiste und Kontextmenü-Aktionen werden nur innerhalb dieser Editor-Registerkarte ausgeführt.<br><br>Zum Kopieren oder Einfügen in oder aus anderen Anwendungen nutzen Sie die folgenden Tastenkombinationen:",
|
||||||
"Common.Views.CopyWarningDialog.textTitle": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"",
|
"Common.Views.CopyWarningDialog.textTitle": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"",
|
||||||
"Common.Views.CopyWarningDialog.textToCopy": "zum Kopieren",
|
"Common.Views.CopyWarningDialog.textToCopy": "zum Kopieren",
|
||||||
"Common.Views.CopyWarningDialog.textToCut": "zum Ausschneiden",
|
"Common.Views.CopyWarningDialog.textToCut": "zum Ausschneiden",
|
||||||
|
@ -174,6 +203,7 @@
|
||||||
"Common.Views.Header.tipRedo": "Wiederholen",
|
"Common.Views.Header.tipRedo": "Wiederholen",
|
||||||
"Common.Views.Header.tipSave": "Speichern",
|
"Common.Views.Header.tipSave": "Speichern",
|
||||||
"Common.Views.Header.tipUndo": "Rückgängig machen",
|
"Common.Views.Header.tipUndo": "Rückgängig machen",
|
||||||
|
"Common.Views.Header.tipUndock": "In einem separaten Fenster abdocken",
|
||||||
"Common.Views.Header.tipViewSettings": "Ansichts-Einstellungen",
|
"Common.Views.Header.tipViewSettings": "Ansichts-Einstellungen",
|
||||||
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
|
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
|
||||||
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
|
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
|
||||||
|
@ -230,6 +260,8 @@
|
||||||
"Common.Views.ReviewChanges.hintNext": "Zur nächsten Änderung",
|
"Common.Views.ReviewChanges.hintNext": "Zur nächsten Änderung",
|
||||||
"Common.Views.ReviewChanges.hintPrev": "Zur vorherigen Änderung",
|
"Common.Views.ReviewChanges.hintPrev": "Zur vorherigen Änderung",
|
||||||
"Common.Views.ReviewChanges.mniFromFile": "Dokument aus Datei",
|
"Common.Views.ReviewChanges.mniFromFile": "Dokument aus Datei",
|
||||||
|
"Common.Views.ReviewChanges.mniFromStorage": "Dokument aus dem Speicher",
|
||||||
|
"Common.Views.ReviewChanges.mniFromUrl": "Dokument aus URL",
|
||||||
"Common.Views.ReviewChanges.mniSettings": "Vergleichseinstellungen",
|
"Common.Views.ReviewChanges.mniSettings": "Vergleichseinstellungen",
|
||||||
"Common.Views.ReviewChanges.strFast": "Schnell",
|
"Common.Views.ReviewChanges.strFast": "Schnell",
|
||||||
"Common.Views.ReviewChanges.strFastDesc": "Echtzeit-Zusammenbearbeitung. Alle Änderungen werden automatisch gespeichert.",
|
"Common.Views.ReviewChanges.strFastDesc": "Echtzeit-Zusammenbearbeitung. Alle Änderungen werden automatisch gespeichert.",
|
||||||
|
@ -237,6 +269,8 @@
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Verwenden Sie die Schaltfläche \"Speichern\", um die von Ihnen und anderen vorgenommenen Änderungen zu synchronisieren.",
|
"Common.Views.ReviewChanges.strStrictDesc": "Verwenden Sie die Schaltfläche \"Speichern\", um die von Ihnen und anderen vorgenommenen Änderungen zu synchronisieren.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Aktuelle Änderungen annehmen",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Aktuelle Änderungen annehmen",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Zusammen-Bearbeitungsmodus einstellen",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Zusammen-Bearbeitungsmodus einstellen",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Kommentare entfernen",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Aktuelle Kommentare entfernen",
|
||||||
"Common.Views.ReviewChanges.tipCompare": "Das aktuelle Dokument mit einem anderen vergleichen",
|
"Common.Views.ReviewChanges.tipCompare": "Das aktuelle Dokument mit einem anderen vergleichen",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Versionshistorie anzeigen",
|
"Common.Views.ReviewChanges.tipHistory": "Versionshistorie anzeigen",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Aktuelle Änderungen ablehnen",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Aktuelle Änderungen ablehnen",
|
||||||
|
@ -252,6 +286,11 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Chat",
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Schließen",
|
"Common.Views.ReviewChanges.txtClose": "Schließen",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Alle Kommentare entfernen",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Aktuelle Kommentare entfernen",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Meine Kommentare entfernen",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Meine aktuellen Kommentare entfernen",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Entfernen",
|
||||||
"Common.Views.ReviewChanges.txtCompare": "Vergleichen",
|
"Common.Views.ReviewChanges.txtCompare": "Vergleichen",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Sprache",
|
"Common.Views.ReviewChanges.txtDocLang": "Sprache",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Alle Änderungen werden übernommen (Vorschau)",
|
"Common.Views.ReviewChanges.txtFinal": "Alle Änderungen werden übernommen (Vorschau)",
|
||||||
|
@ -318,20 +357,26 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Signaturdatum in der Signaturzeile anzeigen",
|
"Common.Views.SignSettingsDialog.textShowDate": "Signaturdatum in der Signaturzeile anzeigen",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Signatureinstellungen",
|
"Common.Views.SignSettingsDialog.textTitle": "Signatureinstellungen",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
"Common.Views.SignSettingsDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||||
|
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX Wert",
|
||||||
|
"Common.Views.SymbolTableDialog.textFont": "Schriftart",
|
||||||
|
"Common.Views.SymbolTableDialog.textRange": "Bereich",
|
||||||
|
"Common.Views.SymbolTableDialog.textRecent": "Kürzlich verwendete Symbole",
|
||||||
|
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
|
||||||
"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",
|
||||||
"DE.Controllers.LeftMenu.requestEditRightsText": "Anfrage betreffend die Bearbeitungsberechtigung...",
|
"DE.Controllers.LeftMenu.requestEditRightsText": "Anfrage betreffend die Bearbeitungsberechtigung...",
|
||||||
"DE.Controllers.LeftMenu.textLoadHistory": "Versionen-Historie wird geladen...",
|
"DE.Controllers.LeftMenu.textLoadHistory": "Versionshistorie wird geladen...",
|
||||||
"DE.Controllers.LeftMenu.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.",
|
"DE.Controllers.LeftMenu.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.",
|
"DE.Controllers.LeftMenu.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSuccess": "Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}",
|
"DE.Controllers.LeftMenu.textReplaceSuccess": "Der Suchvorgang wurde durchgeführt. Vorkommen wurden ersetzt:{0}",
|
||||||
|
"DE.Controllers.LeftMenu.txtCompatible": "Das Dokument wird im neuen Format gespeichert. Es ermöglicht die Verwendung aller Funktionen, kann jedoch das Dokument-Layout beeinflussen.<br>Verwenden Sie die Option 'Kompatibilität' in den erweiterten Einstellungen, wenn Sie die Dateien mit älteren MS Word-Versionen kompatibel machen möchten.",
|
||||||
"DE.Controllers.LeftMenu.txtUntitled": "Unbenannt",
|
"DE.Controllers.LeftMenu.txtUntitled": "Unbenannt",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.<br>Möchten Sie wirklich fortsetzen?",
|
"DE.Controllers.LeftMenu.warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.<br>Möchten Sie wirklich fortsetzen?",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, kann die Formatierung teilweise verloren gehen.<br>Möchten Sie wirklich fortsetzen?",
|
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, kann die Formatierung teilweise verloren gehen.<br>Möchten Sie wirklich fortsetzen?",
|
||||||
"DE.Controllers.Main.applyChangesTextText": "Die Änderungen werden geladen...",
|
"DE.Controllers.Main.applyChangesTextText": "Die Änderungen werden geladen...",
|
||||||
"DE.Controllers.Main.applyChangesTitleText": "Laden von Änderungen",
|
"DE.Controllers.Main.applyChangesTitleText": "Laden von Änderungen",
|
||||||
"DE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
|
"DE.Controllers.Main.convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
|
||||||
"DE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf \"OK\", um in die Dokumentenliste zu gelangen.",
|
"DE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf \"OK\", um in die Dokumentenliste zu gelangen.",
|
||||||
"DE.Controllers.Main.criticalErrorTitle": "Fehler",
|
"DE.Controllers.Main.criticalErrorTitle": "Fehler",
|
||||||
"DE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
|
"DE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
|
||||||
|
@ -339,7 +384,7 @@
|
||||||
"DE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen",
|
"DE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen",
|
||||||
"DE.Controllers.Main.downloadTextText": "Dokument wird heruntergeladen...",
|
"DE.Controllers.Main.downloadTextText": "Dokument wird heruntergeladen...",
|
||||||
"DE.Controllers.Main.downloadTitleText": "Herunterladen des Dokuments",
|
"DE.Controllers.Main.downloadTitleText": "Herunterladen des Dokuments",
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
"DE.Controllers.Main.errorAccessDeny": "Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.<br>Bitte wenden Sie sich an Ihren Document Serveradministrator.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
"DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.",
|
"DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.",
|
||||||
|
@ -347,14 +392,16 @@
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
"DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
"DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1",
|
||||||
|
"DE.Controllers.Main.errorDirectUrl": "Bitte überprüfen Sie den Link zum Dokument.<br>Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. <br> Verwenden Sie die Option 'Herunterladen als ...', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. <br> Verwenden Sie die Option 'Herunterladen als ...', um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
|
||||||
"DE.Controllers.Main.errorEditingSaveas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. <br> Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
|
"DE.Controllers.Main.errorEditingSaveas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. <br> Verwenden Sie die Option \"Speichern als ...\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
|
||||||
"DE.Controllers.Main.errorEmailClient": "Es wurde kein E-Mail-Client gefunden.",
|
"DE.Controllers.Main.errorEmailClient": "Es wurde kein E-Mail-Client gefunden.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
|
"DE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
|
||||||
"DE.Controllers.Main.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
|
"DE.Controllers.Main.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
|
"DE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
|
"DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Fehler beim Laden",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.",
|
"DE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.",
|
||||||
"DE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.",
|
"DE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.",
|
||||||
|
@ -365,9 +412,10 @@
|
||||||
"DE.Controllers.Main.errorToken": "Sicherheitstoken des Dokuments ist nicht korrekt.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
"DE.Controllers.Main.errorToken": "Sicherheitstoken des Dokuments ist nicht korrekt.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
"DE.Controllers.Main.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "Die Dateiversion wurde geändert. Die Seite wird neu geladen.",
|
"DE.Controllers.Main.errorUpdateVersion": "Die Dateiversion wurde geändert. Die Seite wird neu geladen.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.<br>Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
|
"DE.Controllers.Main.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten",
|
"DE.Controllers.Main.errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Die Verbindung ist unterbrochen. Man kann das Dokument anschauen.<br>Es ist aber momentan nicht möglich, es herunterzuladen oder auszudrucken bis die Verbindung wiederhergestellt wird.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Die Verbindung ist unterbrochen. Man kann das Dokument weiterhin anschauen.<br>Es ist aber momentan nicht möglich, es herunterzuladen oder zu drucken bis die Verbindung wiederhergestellt <br>und die Seite neu geladen wird.",
|
||||||
"DE.Controllers.Main.leavePageText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.",
|
"DE.Controllers.Main.leavePageText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Daten werden geladen...",
|
"DE.Controllers.Main.loadFontsTextText": "Daten werden geladen...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Daten werden geladen",
|
"DE.Controllers.Main.loadFontsTitleText": "Daten werden geladen",
|
||||||
|
@ -382,7 +430,7 @@
|
||||||
"DE.Controllers.Main.mailMergeLoadFileText": "Laden der Datenquellen...",
|
"DE.Controllers.Main.mailMergeLoadFileText": "Laden der Datenquellen...",
|
||||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Laden der Datenquellen",
|
"DE.Controllers.Main.mailMergeLoadFileTitle": "Laden der Datenquellen",
|
||||||
"DE.Controllers.Main.notcriticalErrorTitle": "Achtung",
|
"DE.Controllers.Main.notcriticalErrorTitle": "Achtung",
|
||||||
"DE.Controllers.Main.openErrorText": "Beim Öffnen dieser Datei ist ein Fehler aufgetreten",
|
"DE.Controllers.Main.openErrorText": "Beim Öffnen dieser Datei ist ein Fehler aufgetreten.",
|
||||||
"DE.Controllers.Main.openTextText": "Dokument wird geöffnet",
|
"DE.Controllers.Main.openTextText": "Dokument wird geöffnet",
|
||||||
"DE.Controllers.Main.openTitleText": "Das Dokument wird geöffnet",
|
"DE.Controllers.Main.openTitleText": "Das Dokument wird geöffnet",
|
||||||
"DE.Controllers.Main.printTextText": "Dokument wird ausgedruckt...",
|
"DE.Controllers.Main.printTextText": "Dokument wird ausgedruckt...",
|
||||||
|
@ -390,7 +438,7 @@
|
||||||
"DE.Controllers.Main.reloadButtonText": "Seite erneut laden",
|
"DE.Controllers.Main.reloadButtonText": "Seite erneut laden",
|
||||||
"DE.Controllers.Main.requestEditFailedMessageText": "Jemand bearbeitet dieses Dokument in diesem Moment. Bitte versuchen Sie es später erneut.",
|
"DE.Controllers.Main.requestEditFailedMessageText": "Jemand bearbeitet dieses Dokument in diesem Moment. Bitte versuchen Sie es später erneut.",
|
||||||
"DE.Controllers.Main.requestEditFailedTitleText": "Zugriff verweigert",
|
"DE.Controllers.Main.requestEditFailedTitleText": "Zugriff verweigert",
|
||||||
"DE.Controllers.Main.saveErrorText": "Beim Speichern dieser Datei ist ein Fehler aufgetreten",
|
"DE.Controllers.Main.saveErrorText": "Beim Speichern dieser Datei ist ein Fehler aufgetreten.",
|
||||||
"DE.Controllers.Main.savePreparingText": "Speichervorbereitung",
|
"DE.Controllers.Main.savePreparingText": "Speichervorbereitung",
|
||||||
"DE.Controllers.Main.savePreparingTitle": "Speichervorbereitung. Bitte warten...",
|
"DE.Controllers.Main.savePreparingTitle": "Speichervorbereitung. Bitte warten...",
|
||||||
"DE.Controllers.Main.saveTextText": "Dokument wird gespeichert...",
|
"DE.Controllers.Main.saveTextText": "Dokument wird gespeichert...",
|
||||||
|
@ -409,7 +457,7 @@
|
||||||
"DE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
|
"DE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
|
||||||
"DE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
"DE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Dokument wird geladen...",
|
"DE.Controllers.Main.textLoadingDocument": "Dokument wird geladen...",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE Verbindungsbeschränkung",
|
"DE.Controllers.Main.textNoLicenseTitle": "%1 Verbindungsbeschränkung",
|
||||||
"DE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
"DE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
||||||
"DE.Controllers.Main.textShape": "Form",
|
"DE.Controllers.Main.textShape": "Form",
|
||||||
"DE.Controllers.Main.textStrict": "Formaler Modus",
|
"DE.Controllers.Main.textStrict": "Formaler Modus",
|
||||||
|
@ -440,12 +488,15 @@
|
||||||
"DE.Controllers.Main.txtHyperlink": "Hyperlink",
|
"DE.Controllers.Main.txtHyperlink": "Hyperlink",
|
||||||
"DE.Controllers.Main.txtIndTooLarge": "Zu großer Index",
|
"DE.Controllers.Main.txtIndTooLarge": "Zu großer Index",
|
||||||
"DE.Controllers.Main.txtLines": "Linien",
|
"DE.Controllers.Main.txtLines": "Linien",
|
||||||
|
"DE.Controllers.Main.txtMainDocOnly": "Fehler! Nur Hauptdokument.",
|
||||||
"DE.Controllers.Main.txtMath": "Mathematik",
|
"DE.Controllers.Main.txtMath": "Mathematik",
|
||||||
"DE.Controllers.Main.txtMissArg": "Fehlendes Argument",
|
"DE.Controllers.Main.txtMissArg": "Fehlendes Argument",
|
||||||
"DE.Controllers.Main.txtMissOperator": "Fehlender Operator",
|
"DE.Controllers.Main.txtMissOperator": "Fehlender Operator",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "Änderungen wurden vorgenommen",
|
"DE.Controllers.Main.txtNeedSynchronize": "Änderungen wurden vorgenommen",
|
||||||
"DE.Controllers.Main.txtNoTableOfContents": "Keine Einträge zum Inhaltsverzeichnis gefunden.",
|
"DE.Controllers.Main.txtNoTableOfContents": "Dieses Dokument enthält keine Überschriften. Wenden Sie ein Überschriftenformat auf den Text an, damit es im Inhaltsverzeichnis angezeigt wird.",
|
||||||
|
"DE.Controllers.Main.txtNoText": "Fehler! Im Dokument gibt es keinen Text des angegebenen Stils.",
|
||||||
"DE.Controllers.Main.txtNotInTable": "Nicht in Tabelle",
|
"DE.Controllers.Main.txtNotInTable": "Nicht in Tabelle",
|
||||||
|
"DE.Controllers.Main.txtNotValidBookmark": "Fehler! Ungültiger Lesezeichen-Link.",
|
||||||
"DE.Controllers.Main.txtOddPage": "Ungerade Seite",
|
"DE.Controllers.Main.txtOddPage": "Ungerade Seite",
|
||||||
"DE.Controllers.Main.txtOnPage": "auf Seite",
|
"DE.Controllers.Main.txtOnPage": "auf Seite",
|
||||||
"DE.Controllers.Main.txtRectangles": "Rechtecke",
|
"DE.Controllers.Main.txtRectangles": "Rechtecke",
|
||||||
|
@ -652,6 +703,9 @@
|
||||||
"DE.Controllers.Main.txtZeroDivide": "Nullteilung",
|
"DE.Controllers.Main.txtZeroDivide": "Nullteilung",
|
||||||
"DE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.",
|
"DE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.",
|
||||||
"DE.Controllers.Main.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.",
|
"DE.Controllers.Main.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.",
|
||||||
|
"DE.Controllers.Main.uploadDocExtMessage": "Unbekanntes Dokumentformat.",
|
||||||
|
"DE.Controllers.Main.uploadDocFileCountMessage": "Keine Dokumente hochgeladen.",
|
||||||
|
"DE.Controllers.Main.uploadDocSizeMessage": "Maximale Dokumentgröße ist überschritten.",
|
||||||
"DE.Controllers.Main.uploadImageExtMessage": "Unbekanntes Bildformat.",
|
"DE.Controllers.Main.uploadImageExtMessage": "Unbekanntes Bildformat.",
|
||||||
"DE.Controllers.Main.uploadImageFileCountMessage": "Kein Bild wird hochgeladen.",
|
"DE.Controllers.Main.uploadImageFileCountMessage": "Kein Bild wird hochgeladen.",
|
||||||
"DE.Controllers.Main.uploadImageSizeMessage": "Die maximal zulässige Bildgröße ist überschritten.",
|
"DE.Controllers.Main.uploadImageSizeMessage": "Die maximal zulässige Bildgröße ist überschritten.",
|
||||||
|
@ -680,6 +734,7 @@
|
||||||
"DE.Controllers.Toolbar.textFontSizeErr": "Der eingegebene Wert ist falsch.<br>Geben Sie bitte einen numerischen Wert zwischen 1 und 100 ein.",
|
"DE.Controllers.Toolbar.textFontSizeErr": "Der eingegebene Wert ist falsch.<br>Geben Sie bitte einen numerischen Wert zwischen 1 und 100 ein.",
|
||||||
"DE.Controllers.Toolbar.textFraction": "Bruchteile",
|
"DE.Controllers.Toolbar.textFraction": "Bruchteile",
|
||||||
"DE.Controllers.Toolbar.textFunction": "Funktionen",
|
"DE.Controllers.Toolbar.textFunction": "Funktionen",
|
||||||
|
"DE.Controllers.Toolbar.textInsert": "Einfügen",
|
||||||
"DE.Controllers.Toolbar.textIntegral": "Integrale",
|
"DE.Controllers.Toolbar.textIntegral": "Integrale",
|
||||||
"DE.Controllers.Toolbar.textLargeOperator": "Große Operatoren",
|
"DE.Controllers.Toolbar.textLargeOperator": "Große Operatoren",
|
||||||
"DE.Controllers.Toolbar.textLimitAndLog": "Grenzwerte und Logarithmen",
|
"DE.Controllers.Toolbar.textLimitAndLog": "Grenzwerte und Logarithmen",
|
||||||
|
@ -702,7 +757,7 @@
|
||||||
"DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Horizontale geschweifte Klammer (unten)",
|
"DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Horizontale geschweifte Klammer (unten)",
|
||||||
"DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Horizontale geschweifte Klammer (oben)",
|
"DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Horizontale geschweifte Klammer (oben)",
|
||||||
"DE.Controllers.Toolbar.txtAccent_Custom_1": "Vektor A",
|
"DE.Controllers.Toolbar.txtAccent_Custom_1": "Vektor A",
|
||||||
"DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Mit Überstreichung",
|
"DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC mit Überstreichung",
|
||||||
"DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y Mit Überstreichung",
|
"DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y Mit Überstreichung",
|
||||||
"DE.Controllers.Toolbar.txtAccent_DDDot": "Dreifacher Punkt",
|
"DE.Controllers.Toolbar.txtAccent_DDDot": "Dreifacher Punkt",
|
||||||
"DE.Controllers.Toolbar.txtAccent_DDot": "Doppelpunkt",
|
"DE.Controllers.Toolbar.txtAccent_DDot": "Doppelpunkt",
|
||||||
|
@ -864,18 +919,18 @@
|
||||||
"DE.Controllers.Toolbar.txtLimitLog_Min": "Minimal",
|
"DE.Controllers.Toolbar.txtLimitLog_Min": "Minimal",
|
||||||
"DE.Controllers.Toolbar.txtMarginsH": "Die oberen und unteren Ränder sind zu hoch für eingegebene Seitenhöhe",
|
"DE.Controllers.Toolbar.txtMarginsH": "Die oberen und unteren Ränder sind zu hoch für eingegebene Seitenhöhe",
|
||||||
"DE.Controllers.Toolbar.txtMarginsW": "Die Ränder rechts und links sind bei gegebener Seitenbreite zu breit. ",
|
"DE.Controllers.Toolbar.txtMarginsW": "Die Ränder rechts und links sind bei gegebener Seitenbreite zu breit. ",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Leere Matrix",
|
"DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 leere Matrix",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Leere Matrix",
|
"DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 leere Matrix",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Leere Matrix",
|
"DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 leere Matrix",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Leere Matrix",
|
"DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 leere Matrix",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Leere Matrix mit Klammern",
|
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Leere Matrix mit Klammern",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Leere Matrix mit Klammern",
|
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Leere Matrix mit Klammern",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Leere Matrix mit Klammern",
|
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Leere Matrix mit Klammern",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Leere Matrix mit Klammern",
|
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Leere Matrix mit Klammern",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Leere Matrix",
|
"DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 leere Matrix",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Leere Matrix",
|
"DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 leere Matrix",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Leere Matrix",
|
"DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 leere Matrix",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Leere Matrix",
|
"DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 leere Matrix",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Grundlinienpunkte",
|
"DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Grundlinienpunkte",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Mittellinienpunkte",
|
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Mittellinienpunkte",
|
||||||
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonale Punkte",
|
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonale Punkte",
|
||||||
|
@ -1009,6 +1064,8 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"DE.Controllers.Viewport.textFitPage": "Seite anpassen",
|
"DE.Controllers.Viewport.textFitPage": "Seite anpassen",
|
||||||
"DE.Controllers.Viewport.textFitWidth": "Breite anpassen",
|
"DE.Controllers.Viewport.textFitWidth": "Breite anpassen",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Bezeichnung:",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "Bezeichnung darf nicht leer sein.",
|
||||||
"DE.Views.BookmarksDialog.textAdd": "Hinzufügen",
|
"DE.Views.BookmarksDialog.textAdd": "Hinzufügen",
|
||||||
"DE.Views.BookmarksDialog.textBookmarkName": "Lesezeichenname",
|
"DE.Views.BookmarksDialog.textBookmarkName": "Lesezeichenname",
|
||||||
"DE.Views.BookmarksDialog.textClose": "Schließen",
|
"DE.Views.BookmarksDialog.textClose": "Schließen",
|
||||||
|
@ -1022,25 +1079,44 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Sortieren nach",
|
"DE.Views.BookmarksDialog.textSort": "Sortieren nach",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Lesezeichen",
|
"DE.Views.BookmarksDialog.textTitle": "Lesezeichen",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Der Name des Lesezeichens darf nur Buchstaben, Ziffern und Unterstriche enthalten und sollte mit dem Buchstaben beginnen",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Der Name des Lesezeichens darf nur Buchstaben, Ziffern und Unterstriche enthalten und sollte mit dem Buchstaben beginnen",
|
||||||
"DE.Views.CaptionDialog.textAdd": "Beschriftung hinzufügen",
|
"DE.Views.CaptionDialog.textAdd": "Hinzufügen",
|
||||||
"DE.Views.CaptionDialog.textAfter": "Nach",
|
"DE.Views.CaptionDialog.textAfter": "Nach",
|
||||||
"DE.Views.CaptionDialog.textBefore": "Vor ",
|
"DE.Views.CaptionDialog.textBefore": "Vor ",
|
||||||
"DE.Views.CaptionDialog.textCaption": "Beschriftung",
|
"DE.Views.CaptionDialog.textCaption": "Beschriftung",
|
||||||
"DE.Views.CaptionDialog.textChapter": "Kapitel beginnt mit Stil",
|
"DE.Views.CaptionDialog.textChapter": "Kapitel beginnt mit Stil",
|
||||||
|
"DE.Views.CaptionDialog.textChapterInc": "Kapitelnummer einschließen",
|
||||||
"DE.Views.CaptionDialog.textColon": "Doppelpunkt",
|
"DE.Views.CaptionDialog.textColon": "Doppelpunkt",
|
||||||
"DE.Views.CaptionDialog.textDash": "Gedankenstrich",
|
"DE.Views.CaptionDialog.textDash": "Gedankenstrich",
|
||||||
"DE.Views.CaptionDialog.textDelete": "Beschriftung löschen",
|
"DE.Views.CaptionDialog.textDelete": "Löschen",
|
||||||
|
"DE.Views.CaptionDialog.textEquation": "Gleichung",
|
||||||
|
"DE.Views.CaptionDialog.textExamples": "Beispiele: Tabelle 2-A, Bild 1.IV",
|
||||||
|
"DE.Views.CaptionDialog.textExclude": "Bezeichnung aus Beschriftung ausschließen",
|
||||||
|
"DE.Views.CaptionDialog.textFigure": "Abbildung",
|
||||||
|
"DE.Views.CaptionDialog.textHyphen": "Bindestrich",
|
||||||
|
"DE.Views.CaptionDialog.textInsert": "Einfügen",
|
||||||
|
"DE.Views.CaptionDialog.textLabel": "Bezeichnung",
|
||||||
|
"DE.Views.CaptionDialog.textLongDash": "langer Strich",
|
||||||
|
"DE.Views.CaptionDialog.textNumbering": "Nummerierung",
|
||||||
|
"DE.Views.CaptionDialog.textPeriod": "Punkt",
|
||||||
|
"DE.Views.CaptionDialog.textSeparator": "Trennzeichen verwenden",
|
||||||
|
"DE.Views.CaptionDialog.textTable": "Tabelle",
|
||||||
|
"DE.Views.CaptionDialog.textTitle": "Beschriftung einfügen",
|
||||||
"DE.Views.CellsAddDialog.textCol": "Spalten",
|
"DE.Views.CellsAddDialog.textCol": "Spalten",
|
||||||
"DE.Views.CellsAddDialog.textDown": "Unter dem Cursor",
|
"DE.Views.CellsAddDialog.textDown": "Unter dem Cursor",
|
||||||
|
"DE.Views.CellsAddDialog.textLeft": "Nach links",
|
||||||
|
"DE.Views.CellsAddDialog.textRight": "Nach rechts ",
|
||||||
|
"DE.Views.CellsAddDialog.textRow": "Zeilen",
|
||||||
|
"DE.Views.CellsAddDialog.textTitle": "Einfügen: mehrere",
|
||||||
"DE.Views.CellsAddDialog.textUp": "Über dem Cursor",
|
"DE.Views.CellsAddDialog.textUp": "Über dem Cursor",
|
||||||
"DE.Views.CellsRemoveDialog.textCol": "Gesamte Spalte löschen",
|
"DE.Views.CellsRemoveDialog.textCol": "Gesamte Spalte löschen",
|
||||||
|
"DE.Views.CellsRemoveDialog.textLeft": "Zellen nach links verschieben",
|
||||||
"DE.Views.CellsRemoveDialog.textRow": "Ganze Zeile löschen",
|
"DE.Views.CellsRemoveDialog.textRow": "Ganze Zeile löschen",
|
||||||
"DE.Views.CellsRemoveDialog.textTitle": "Zellen löschen",
|
"DE.Views.CellsRemoveDialog.textTitle": "Zellen löschen",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
"DE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
||||||
"DE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
|
"DE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
|
||||||
"DE.Views.ChartSettings.textEditData": "Daten ändern",
|
"DE.Views.ChartSettings.textEditData": "Daten ändern",
|
||||||
"DE.Views.ChartSettings.textHeight": "Höhe",
|
"DE.Views.ChartSettings.textHeight": "Höhe",
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Standardgröße",
|
"DE.Views.ChartSettings.textOriginalSize": "Tatsächliche Größe",
|
||||||
"DE.Views.ChartSettings.textSize": "Größe",
|
"DE.Views.ChartSettings.textSize": "Größe",
|
||||||
"DE.Views.ChartSettings.textStyle": "Stil",
|
"DE.Views.ChartSettings.textStyle": "Stil",
|
||||||
"DE.Views.ChartSettings.textUndock": "Seitenbereich abdocken",
|
"DE.Views.ChartSettings.textUndock": "Seitenbereich abdocken",
|
||||||
|
@ -1055,11 +1131,15 @@
|
||||||
"DE.Views.ChartSettings.txtTitle": "Diagramm",
|
"DE.Views.ChartSettings.txtTitle": "Diagramm",
|
||||||
"DE.Views.ChartSettings.txtTopAndBottom": "Oben und unten",
|
"DE.Views.ChartSettings.txtTopAndBottom": "Oben und unten",
|
||||||
"DE.Views.CompareSettingsDialog.textChar": "Zeichen-Ebene",
|
"DE.Views.CompareSettingsDialog.textChar": "Zeichen-Ebene",
|
||||||
|
"DE.Views.CompareSettingsDialog.textShow": "Änderungen anzeigen:",
|
||||||
"DE.Views.CompareSettingsDialog.textTitle": "Vergleichseinstellungen",
|
"DE.Views.CompareSettingsDialog.textTitle": "Vergleichseinstellungen",
|
||||||
|
"DE.Views.CompareSettingsDialog.textWord": "Wortebene",
|
||||||
|
"DE.Views.ControlSettingsDialog.strGeneral": "Allgemein",
|
||||||
"DE.Views.ControlSettingsDialog.textAdd": "Hinzufügen",
|
"DE.Views.ControlSettingsDialog.textAdd": "Hinzufügen",
|
||||||
"DE.Views.ControlSettingsDialog.textAppearance": "Darstellung",
|
"DE.Views.ControlSettingsDialog.textAppearance": "Darstellung",
|
||||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Auf alle anwenden",
|
"DE.Views.ControlSettingsDialog.textApplyAll": "Auf alle anwenden",
|
||||||
"DE.Views.ControlSettingsDialog.textBox": "Begrenzungsrahmen",
|
"DE.Views.ControlSettingsDialog.textBox": "Begrenzungsrahmen",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChange": "Bearbeiten",
|
||||||
"DE.Views.ControlSettingsDialog.textCheckbox": "Kontrollkästchen",
|
"DE.Views.ControlSettingsDialog.textCheckbox": "Kontrollkästchen",
|
||||||
"DE.Views.ControlSettingsDialog.textChecked": "Häkchen-Symbol ",
|
"DE.Views.ControlSettingsDialog.textChecked": "Häkchen-Symbol ",
|
||||||
"DE.Views.ControlSettingsDialog.textColor": "Farbe",
|
"DE.Views.ControlSettingsDialog.textColor": "Farbe",
|
||||||
|
@ -1067,7 +1147,10 @@
|
||||||
"DE.Views.ControlSettingsDialog.textDate": "Datumsformat",
|
"DE.Views.ControlSettingsDialog.textDate": "Datumsformat",
|
||||||
"DE.Views.ControlSettingsDialog.textDelete": "Löschen",
|
"DE.Views.ControlSettingsDialog.textDelete": "Löschen",
|
||||||
"DE.Views.ControlSettingsDialog.textDisplayName": "Anzeigename",
|
"DE.Views.ControlSettingsDialog.textDisplayName": "Anzeigename",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDown": "Unten",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDropDown": "Dropdownliste",
|
||||||
"DE.Views.ControlSettingsDialog.textFormat": "Datum wie folgt anzeigen",
|
"DE.Views.ControlSettingsDialog.textFormat": "Datum wie folgt anzeigen",
|
||||||
|
"DE.Views.ControlSettingsDialog.textLang": "Sprache",
|
||||||
"DE.Views.ControlSettingsDialog.textLock": "Sperrung",
|
"DE.Views.ControlSettingsDialog.textLock": "Sperrung",
|
||||||
"DE.Views.ControlSettingsDialog.textName": "Titel",
|
"DE.Views.ControlSettingsDialog.textName": "Titel",
|
||||||
"DE.Views.ControlSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
|
"DE.Views.ControlSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
|
||||||
|
@ -1076,6 +1159,9 @@
|
||||||
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
|
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
|
||||||
"DE.Views.ControlSettingsDialog.textTag": "Tag",
|
"DE.Views.ControlSettingsDialog.textTag": "Tag",
|
||||||
"DE.Views.ControlSettingsDialog.textTitle": "Einstellungen des Inhaltssteuerelements",
|
"DE.Views.ControlSettingsDialog.textTitle": "Einstellungen des Inhaltssteuerelements",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUnchecked": "Nicht aktiviertes Häkchen",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUp": "Aufwärts",
|
||||||
|
"DE.Views.ControlSettingsDialog.textValue": "Wert",
|
||||||
"DE.Views.ControlSettingsDialog.tipChange": "Symbol ändern",
|
"DE.Views.ControlSettingsDialog.tipChange": "Symbol ändern",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Das Inhaltssteuerelement kann nicht gelöscht werden",
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "Das Inhaltssteuerelement kann nicht gelöscht werden",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Der Inhalt kann nicht bearbeitet werden",
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "Der Inhalt kann nicht bearbeitet werden",
|
||||||
|
@ -1129,7 +1215,7 @@
|
||||||
"DE.Views.DocumentHolder.mergeCellsText": "Zellen verbinden",
|
"DE.Views.DocumentHolder.mergeCellsText": "Zellen verbinden",
|
||||||
"DE.Views.DocumentHolder.moreText": "Mehr Varianten...",
|
"DE.Views.DocumentHolder.moreText": "Mehr Varianten...",
|
||||||
"DE.Views.DocumentHolder.noSpellVariantsText": "Keine Varianten",
|
"DE.Views.DocumentHolder.noSpellVariantsText": "Keine Varianten",
|
||||||
"DE.Views.DocumentHolder.originalSizeText": "Standardgröße",
|
"DE.Views.DocumentHolder.originalSizeText": "Tatsächliche Größe",
|
||||||
"DE.Views.DocumentHolder.paragraphText": "Absatz",
|
"DE.Views.DocumentHolder.paragraphText": "Absatz",
|
||||||
"DE.Views.DocumentHolder.removeHyperlinkText": "Hyperlink entfernen",
|
"DE.Views.DocumentHolder.removeHyperlinkText": "Hyperlink entfernen",
|
||||||
"DE.Views.DocumentHolder.rightText": "Rechts",
|
"DE.Views.DocumentHolder.rightText": "Rechts",
|
||||||
|
@ -1188,6 +1274,7 @@
|
||||||
"DE.Views.DocumentHolder.textRotate90": "90° im UZS drehen",
|
"DE.Views.DocumentHolder.textRotate90": "90° im UZS drehen",
|
||||||
"DE.Views.DocumentHolder.textSeparateList": "Separate Liste",
|
"DE.Views.DocumentHolder.textSeparateList": "Separate Liste",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Einstellungen",
|
"DE.Views.DocumentHolder.textSettings": "Einstellungen",
|
||||||
|
"DE.Views.DocumentHolder.textSeveral": "Mehrere Zeilen/Spalten",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Unten ausrichten",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Unten ausrichten",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Zentriert ausrichten",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Zentriert ausrichten",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignLeft": "Linksbündig ausrichten",
|
"DE.Views.DocumentHolder.textShapeAlignLeft": "Linksbündig ausrichten",
|
||||||
|
@ -1205,14 +1292,14 @@
|
||||||
"DE.Views.DocumentHolder.textWrap": "Textumbruch",
|
"DE.Views.DocumentHolder.textWrap": "Textumbruch",
|
||||||
"DE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.",
|
"DE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.",
|
||||||
"DE.Views.DocumentHolder.toDictionaryText": "Zum Wörterbuch hinzufügen",
|
"DE.Views.DocumentHolder.toDictionaryText": "Zum Wörterbuch hinzufügen",
|
||||||
"DE.Views.DocumentHolder.txtAddBottom": "Unterer Rand hinzufügen",
|
"DE.Views.DocumentHolder.txtAddBottom": "Unteren Rahmen hinzufügen",
|
||||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Bruchstrich hinzufügen",
|
"DE.Views.DocumentHolder.txtAddFractionBar": "Bruchstrich hinzufügen",
|
||||||
"DE.Views.DocumentHolder.txtAddHor": "Horizontale Linie einfügen",
|
"DE.Views.DocumentHolder.txtAddHor": "Horizontale Linie einfügen",
|
||||||
"DE.Views.DocumentHolder.txtAddLB": "Linke untere Linie einfügen",
|
"DE.Views.DocumentHolder.txtAddLB": "Linke untere Linie einfügen",
|
||||||
"DE.Views.DocumentHolder.txtAddLeft": "Linke Grenze hinzufügen",
|
"DE.Views.DocumentHolder.txtAddLeft": "Linken Rahmen hinzufügen",
|
||||||
"DE.Views.DocumentHolder.txtAddLT": "Linke obere Linie einfügen",
|
"DE.Views.DocumentHolder.txtAddLT": "Linke obere Linie einfügen",
|
||||||
"DE.Views.DocumentHolder.txtAddRight": "Rechter Rand hinzufügen",
|
"DE.Views.DocumentHolder.txtAddRight": "Rechten Rahmen hinzufügen",
|
||||||
"DE.Views.DocumentHolder.txtAddTop": "Oberer Rand hinzufügen",
|
"DE.Views.DocumentHolder.txtAddTop": "Oberem Rahmen hinzufügen",
|
||||||
"DE.Views.DocumentHolder.txtAddVer": "Vertikale Linie hinzufügen",
|
"DE.Views.DocumentHolder.txtAddVer": "Vertikale Linie hinzufügen",
|
||||||
"DE.Views.DocumentHolder.txtAlignToChar": "An einem Zeichen ausrichten",
|
"DE.Views.DocumentHolder.txtAlignToChar": "An einem Zeichen ausrichten",
|
||||||
"DE.Views.DocumentHolder.txtBehind": "Hinten",
|
"DE.Views.DocumentHolder.txtBehind": "Hinten",
|
||||||
|
@ -1256,6 +1343,7 @@
|
||||||
"DE.Views.DocumentHolder.txtInsertArgAfter": "Argument nachher einfügen",
|
"DE.Views.DocumentHolder.txtInsertArgAfter": "Argument nachher einfügen",
|
||||||
"DE.Views.DocumentHolder.txtInsertArgBefore": "Argument vorher einfügen",
|
"DE.Views.DocumentHolder.txtInsertArgBefore": "Argument vorher einfügen",
|
||||||
"DE.Views.DocumentHolder.txtInsertBreak": "Manuellen Umbruch einfügen",
|
"DE.Views.DocumentHolder.txtInsertBreak": "Manuellen Umbruch einfügen",
|
||||||
|
"DE.Views.DocumentHolder.txtInsertCaption": "Beschriftung einfügen",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqAfter": "Formel nachher einfügen",
|
"DE.Views.DocumentHolder.txtInsertEqAfter": "Formel nachher einfügen",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqBefore": "Formel vorher einfügen",
|
"DE.Views.DocumentHolder.txtInsertEqBefore": "Formel vorher einfügen",
|
||||||
"DE.Views.DocumentHolder.txtKeepTextOnly": "Nur Text beibehalten",
|
"DE.Views.DocumentHolder.txtKeepTextOnly": "Nur Text beibehalten",
|
||||||
|
@ -1268,6 +1356,7 @@
|
||||||
"DE.Views.DocumentHolder.txtOverwriteCells": "Zellen überschreiben",
|
"DE.Views.DocumentHolder.txtOverwriteCells": "Zellen überschreiben",
|
||||||
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Ursprüngliche Formatierung beibehalten",
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Ursprüngliche Formatierung beibehalten",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link",
|
"DE.Views.DocumentHolder.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link",
|
||||||
|
"DE.Views.DocumentHolder.txtPrintSelection": "Auswahl drucken",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "Bruchstrich entfernen",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "Bruchstrich entfernen",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "Grenzwert entfernen",
|
"DE.Views.DocumentHolder.txtRemLimit": "Grenzwert entfernen",
|
||||||
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Akzentzeichen entfernen",
|
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Akzentzeichen entfernen",
|
||||||
|
@ -1319,7 +1408,7 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.textLeft": "Links",
|
"DE.Views.DropcapSettingsAdvanced.textLeft": "Links",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textMargin": "Rand",
|
"DE.Views.DropcapSettingsAdvanced.textMargin": "Rand",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textMove": "Mit Text verschieben",
|
"DE.Views.DropcapSettingsAdvanced.textMove": "Mit Text verschieben",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textNewColor": "Benutzerdefinierte Farbe",
|
"DE.Views.DropcapSettingsAdvanced.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textNone": "Kein",
|
"DE.Views.DropcapSettingsAdvanced.textNone": "Kein",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textPage": "Seite",
|
"DE.Views.DropcapSettingsAdvanced.textPage": "Seite",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Absatz",
|
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Absatz",
|
||||||
|
@ -1337,6 +1426,7 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Keine Rahmen",
|
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Keine Rahmen",
|
||||||
"DE.Views.EditListItemDialog.textDisplayName": "Anzeigename",
|
"DE.Views.EditListItemDialog.textDisplayName": "Anzeigename",
|
||||||
"DE.Views.EditListItemDialog.textNameError": "Der Anzeigename darf nicht leer sein.",
|
"DE.Views.EditListItemDialog.textNameError": "Der Anzeigename darf nicht leer sein.",
|
||||||
|
"DE.Views.EditListItemDialog.textValue": "Wert",
|
||||||
"DE.Views.EditListItemDialog.textValueError": "Ein Element mit demselben Wert ist bereits vorhanden.",
|
"DE.Views.EditListItemDialog.textValueError": "Ein Element mit demselben Wert ist bereits vorhanden.",
|
||||||
"DE.Views.FileMenu.btnBackCaption": "Dateispeicherort öffnen",
|
"DE.Views.FileMenu.btnBackCaption": "Dateispeicherort öffnen",
|
||||||
"DE.Views.FileMenu.btnCloseMenuCaption": "Menü schließen",
|
"DE.Views.FileMenu.btnCloseMenuCaption": "Menü schließen",
|
||||||
|
@ -1371,14 +1461,19 @@
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Kommentar",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Kommentar",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Erstellt",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Erstellt",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ladevorgang...",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ladevorgang...",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Zuletzt geändert von",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Zuletzt geändert",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Besitzer",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Seiten",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Seiten",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Absätze",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Absätze",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Speicherort",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Speicherort",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen mit Berechtigungen",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen mit Berechtigungen",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbole mit Leerzeichen",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbole mit Leerzeichen",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiken",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiken",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Thema",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbole",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbole",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel des Dokuments",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Hochgeladen",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Wörter",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Wörter",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zugriffsrechte ändern",
|
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zugriffsrechte ändern",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen mit Berechtigungen",
|
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personen mit Berechtigungen",
|
||||||
|
@ -1422,7 +1517,9 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textDisabled": "Deaktiviert",
|
"DE.Views.FileMenuPanels.Settings.textDisabled": "Deaktiviert",
|
||||||
"DE.Views.FileMenuPanels.Settings.textForceSave": "Auf dem Server speichern",
|
"DE.Views.FileMenuPanels.Settings.textForceSave": "Auf dem Server speichern",
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Jede Minute",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Jede Minute",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Die Dateien mit älteren MS Word-Versionen kompatibel machen, wenn sie als DOCX gespeichert werden",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "Alle anzeigen",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "Alle anzeigen",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Standard-Cache-Modus",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Zentimeter",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Zentimeter",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Seite anpassen",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Seite anpassen",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Breite anpassen",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Breite anpassen",
|
||||||
|
@ -1484,7 +1581,7 @@
|
||||||
"DE.Views.ImageSettings.textHintFlipH": "Horizontal kippen",
|
"DE.Views.ImageSettings.textHintFlipH": "Horizontal kippen",
|
||||||
"DE.Views.ImageSettings.textHintFlipV": "Vertikal kippen",
|
"DE.Views.ImageSettings.textHintFlipV": "Vertikal kippen",
|
||||||
"DE.Views.ImageSettings.textInsert": "Bild ersetzen",
|
"DE.Views.ImageSettings.textInsert": "Bild ersetzen",
|
||||||
"DE.Views.ImageSettings.textOriginalSize": "Standardgröße",
|
"DE.Views.ImageSettings.textOriginalSize": "Tatsächliche Größe",
|
||||||
"DE.Views.ImageSettings.textRotate90": "90 Grad drehen",
|
"DE.Views.ImageSettings.textRotate90": "90 Grad drehen",
|
||||||
"DE.Views.ImageSettings.textRotation": "Rotation",
|
"DE.Views.ImageSettings.textRotation": "Rotation",
|
||||||
"DE.Views.ImageSettings.textSize": "Größe",
|
"DE.Views.ImageSettings.textSize": "Größe",
|
||||||
|
@ -1536,7 +1633,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textMiter": "Winkel",
|
"DE.Views.ImageSettingsAdvanced.textMiter": "Winkel",
|
||||||
"DE.Views.ImageSettingsAdvanced.textMove": "Objekt mit Text verschieben",
|
"DE.Views.ImageSettingsAdvanced.textMove": "Objekt mit Text verschieben",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOptions": "Optionen",
|
"DE.Views.ImageSettingsAdvanced.textOptions": "Optionen",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Standardgröße",
|
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Tatsächliche Größe",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOverlap": "Überlappung zulassen",
|
"DE.Views.ImageSettingsAdvanced.textOverlap": "Überlappung zulassen",
|
||||||
"DE.Views.ImageSettingsAdvanced.textPage": "Seite",
|
"DE.Views.ImageSettingsAdvanced.textPage": "Seite",
|
||||||
"DE.Views.ImageSettingsAdvanced.textParagraph": "Absatz",
|
"DE.Views.ImageSettingsAdvanced.textParagraph": "Absatz",
|
||||||
|
@ -1595,16 +1692,29 @@
|
||||||
"DE.Views.Links.textUpdateAll": "Gesamtes Verzeichnis aktualisieren",
|
"DE.Views.Links.textUpdateAll": "Gesamtes Verzeichnis aktualisieren",
|
||||||
"DE.Views.Links.textUpdatePages": "Nur Seitenzahlen aktualisieren",
|
"DE.Views.Links.textUpdatePages": "Nur Seitenzahlen aktualisieren",
|
||||||
"DE.Views.Links.tipBookmarks": "Lesezeichen erstellen",
|
"DE.Views.Links.tipBookmarks": "Lesezeichen erstellen",
|
||||||
|
"DE.Views.Links.tipCaption": "Beschriftung einfügen",
|
||||||
"DE.Views.Links.tipContents": "Inhaltsverzeichnis einfügen",
|
"DE.Views.Links.tipContents": "Inhaltsverzeichnis einfügen",
|
||||||
"DE.Views.Links.tipContentsUpdate": "Inhaltsverzeichnis aktualisieren",
|
"DE.Views.Links.tipContentsUpdate": "Inhaltsverzeichnis aktualisieren",
|
||||||
"DE.Views.Links.tipInsertHyperlink": "Hyperlink hinzufügen",
|
"DE.Views.Links.tipInsertHyperlink": "Hyperlink hinzufügen",
|
||||||
"DE.Views.Links.tipNotes": "Fußnoten einfügen oder bearbeiten",
|
"DE.Views.Links.tipNotes": "Fußnoten einfügen oder bearbeiten",
|
||||||
"DE.Views.ListSettingsDialog.textAuto": "Automatisch",
|
"DE.Views.ListSettingsDialog.textAuto": "Automatisch",
|
||||||
"DE.Views.ListSettingsDialog.textCenter": "Zentriert",
|
"DE.Views.ListSettingsDialog.textCenter": "Zentriert",
|
||||||
|
"DE.Views.ListSettingsDialog.textLeft": "Links",
|
||||||
|
"DE.Views.ListSettingsDialog.textLevel": "Ebene",
|
||||||
"DE.Views.ListSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
"DE.Views.ListSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||||
|
"DE.Views.ListSettingsDialog.textPreview": "Vorschau",
|
||||||
|
"DE.Views.ListSettingsDialog.textRight": "Rechts",
|
||||||
"DE.Views.ListSettingsDialog.txtAlign": "Ausrichtung",
|
"DE.Views.ListSettingsDialog.txtAlign": "Ausrichtung",
|
||||||
"DE.Views.ListSettingsDialog.txtBullet": "Aufzählungszeichen",
|
"DE.Views.ListSettingsDialog.txtBullet": "Aufzählungszeichen",
|
||||||
"DE.Views.ListSettingsDialog.txtColor": "Farbe",
|
"DE.Views.ListSettingsDialog.txtColor": "Farbe",
|
||||||
|
"DE.Views.ListSettingsDialog.txtFont": "Schriftart und Symbol",
|
||||||
|
"DE.Views.ListSettingsDialog.txtLikeText": "Wie ein Text",
|
||||||
|
"DE.Views.ListSettingsDialog.txtNewBullet": "Neues Aufzählungszeichen",
|
||||||
|
"DE.Views.ListSettingsDialog.txtNone": "Keine",
|
||||||
|
"DE.Views.ListSettingsDialog.txtSize": "Größe",
|
||||||
|
"DE.Views.ListSettingsDialog.txtSymbol": "Symbol",
|
||||||
|
"DE.Views.ListSettingsDialog.txtTitle": "Listeneinstellungen",
|
||||||
|
"DE.Views.ListSettingsDialog.txtType": "Typ",
|
||||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Senden",
|
"DE.Views.MailMergeEmailDlg.okButtonText": "Senden",
|
||||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thema",
|
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Thema",
|
||||||
|
@ -1623,7 +1733,7 @@
|
||||||
"DE.Views.MailMergeSettings.downloadMergeTitle": "Merging",
|
"DE.Views.MailMergeSettings.downloadMergeTitle": "Merging",
|
||||||
"DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.",
|
"DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.",
|
||||||
"DE.Views.MailMergeSettings.notcriticalErrorTitle": "Achtung",
|
"DE.Views.MailMergeSettings.notcriticalErrorTitle": "Achtung",
|
||||||
"DE.Views.MailMergeSettings.textAddRecipients": "Einige Empfänger zu der ersten Liste addieren",
|
"DE.Views.MailMergeSettings.textAddRecipients": "Einige Empfänger zur Liste hinzufügen",
|
||||||
"DE.Views.MailMergeSettings.textAll": "Alle Datensätze ",
|
"DE.Views.MailMergeSettings.textAll": "Alle Datensätze ",
|
||||||
"DE.Views.MailMergeSettings.textCurrent": "Aktueller Datensatz",
|
"DE.Views.MailMergeSettings.textCurrent": "Aktueller Datensatz",
|
||||||
"DE.Views.MailMergeSettings.textDataSource": "Datenquelle",
|
"DE.Views.MailMergeSettings.textDataSource": "Datenquelle",
|
||||||
|
@ -1654,7 +1764,7 @@
|
||||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Merge ist fehlgeschlagen",
|
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Merge ist fehlgeschlagen",
|
||||||
"DE.Views.Navigation.txtCollapse": "Alle einklappen",
|
"DE.Views.Navigation.txtCollapse": "Alle einklappen",
|
||||||
"DE.Views.Navigation.txtDemote": "Tieferstufen",
|
"DE.Views.Navigation.txtDemote": "Tieferstufen",
|
||||||
"DE.Views.Navigation.txtEmpty": "Dieses Dokument enthält keine Überschriften",
|
"DE.Views.Navigation.txtEmpty": "Dieses Dokument enthält keine Überschriften.<br>Wenden Sie ein Überschriftenformat auf den Text an, damit es im Inhaltsverzeichnis angezeigt wird.",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Leere Überschrift",
|
"DE.Views.Navigation.txtEmptyItem": "Leere Überschrift",
|
||||||
"DE.Views.Navigation.txtExpand": "Alle ausklappen",
|
"DE.Views.Navigation.txtExpand": "Alle ausklappen",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Auf Ebene erweitern",
|
"DE.Views.Navigation.txtExpandToLevel": "Auf Ebene erweitern",
|
||||||
|
@ -1683,7 +1793,18 @@
|
||||||
"DE.Views.NoteSettingsDialog.textTitle": "Hinweise Einstellungen",
|
"DE.Views.NoteSettingsDialog.textTitle": "Hinweise Einstellungen",
|
||||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Achtung",
|
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Achtung",
|
||||||
"DE.Views.PageMarginsDialog.textBottom": "Unten",
|
"DE.Views.PageMarginsDialog.textBottom": "Unten",
|
||||||
|
"DE.Views.PageMarginsDialog.textGutter": "Bundsteg",
|
||||||
|
"DE.Views.PageMarginsDialog.textGutterPosition": "Bundsteg-Position",
|
||||||
|
"DE.Views.PageMarginsDialog.textInside": "Innen",
|
||||||
|
"DE.Views.PageMarginsDialog.textLandscape": "Querformat",
|
||||||
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
"DE.Views.PageMarginsDialog.textLeft": "Left",
|
||||||
|
"DE.Views.PageMarginsDialog.textMirrorMargins": "Gegenüberliegende Seiten",
|
||||||
|
"DE.Views.PageMarginsDialog.textMultiplePages": "Mehrere Seiten",
|
||||||
|
"DE.Views.PageMarginsDialog.textNormal": "Normal",
|
||||||
|
"DE.Views.PageMarginsDialog.textOrientation": "Ausrichtung",
|
||||||
|
"DE.Views.PageMarginsDialog.textOutside": "Außen",
|
||||||
|
"DE.Views.PageMarginsDialog.textPortrait": "Hochformat",
|
||||||
|
"DE.Views.PageMarginsDialog.textPreview": "Vorschau",
|
||||||
"DE.Views.PageMarginsDialog.textRight": "Rechts",
|
"DE.Views.PageMarginsDialog.textRight": "Rechts",
|
||||||
"DE.Views.PageMarginsDialog.textTitle": "Ränder",
|
"DE.Views.PageMarginsDialog.textTitle": "Ränder",
|
||||||
"DE.Views.PageMarginsDialog.textTop": "Oben",
|
"DE.Views.PageMarginsDialog.textTop": "Oben",
|
||||||
|
@ -1705,31 +1826,39 @@
|
||||||
"DE.Views.ParagraphSettings.textAuto": "Mehrfach",
|
"DE.Views.ParagraphSettings.textAuto": "Mehrfach",
|
||||||
"DE.Views.ParagraphSettings.textBackColor": "Hintergrundfarbe",
|
"DE.Views.ParagraphSettings.textBackColor": "Hintergrundfarbe",
|
||||||
"DE.Views.ParagraphSettings.textExact": "Genau",
|
"DE.Views.ParagraphSettings.textExact": "Genau",
|
||||||
"DE.Views.ParagraphSettings.textNewColor": "Benutzerdefinierte Farbe",
|
"DE.Views.ParagraphSettings.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Die festgelegten Registerkarten werden in diesem Feld erscheinen",
|
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Die festgelegten Registerkarten werden in diesem Feld erscheinen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alle Großbuchstaben",
|
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alle Großbuchstaben",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Rahmen & Füllung",
|
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Rahmen & Füllung",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Seitenumbruch oberhalb",
|
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Seitenumbruch oberhalb",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doppeltes Durchstreichen",
|
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doppeltes Durchstreichen",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Einzüge ",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Links",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Zeilenabstand",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Gliederungsebene",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Nach",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Nach",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Vor ",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Vor ",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speziell",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Absatz zusammenhalten",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Absatz zusammenhalten",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Absätze nicht trennen",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Absätze nicht trennen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Auffüllen",
|
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Auffüllen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Absatzkontrolle",
|
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Absatzkontrolle",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Schriftart",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Schriftart",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Einzüge & Position",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Einzüge und Abstände",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Zeilen- und Seitenumbrüche",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Positionierung",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Positionierung",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kapitälchen",
|
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kapitälchen",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Kein Abstand zwischen Absätzen gleicher Formatierung",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSpacing": "Abstand",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Durchgestrichen",
|
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Durchgestrichen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Tiefgestellt",
|
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Tiefgestellt",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Hochgestellt",
|
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Hochgestellt",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulator",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulator",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Ausrichtung",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Ausrichtung",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Mindestens",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Mindestens",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Mehrfach",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Hintergrundfarbe",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Hintergrundfarbe",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basistext",
|
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basistext",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Rahmenfarbe",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Rahmenfarbe",
|
||||||
|
@ -1740,11 +1869,16 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Zeichenabstand",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Zeichenabstand",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standardregisterkarte",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standardregisterkarte",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effekte",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effekte",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "Genau",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Erste Zeile",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Hängend",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Blocksatz",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Füllzeichen",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Füllzeichen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Benutzerdefinierte Farbe",
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Ebene",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "Kein",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "Kein",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(Keiner)",
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(kein)",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Löschen",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Löschen",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alle löschen",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alle löschen",
|
||||||
|
@ -1782,6 +1916,7 @@
|
||||||
"DE.Views.ShapeSettings.strFill": "Füllung",
|
"DE.Views.ShapeSettings.strFill": "Füllung",
|
||||||
"DE.Views.ShapeSettings.strForeground": "Vordergrundfarbe",
|
"DE.Views.ShapeSettings.strForeground": "Vordergrundfarbe",
|
||||||
"DE.Views.ShapeSettings.strPattern": "Muster",
|
"DE.Views.ShapeSettings.strPattern": "Muster",
|
||||||
|
"DE.Views.ShapeSettings.strShadow": "Schatten anzeigen",
|
||||||
"DE.Views.ShapeSettings.strSize": "Größe",
|
"DE.Views.ShapeSettings.strSize": "Größe",
|
||||||
"DE.Views.ShapeSettings.strStroke": "Strich",
|
"DE.Views.ShapeSettings.strStroke": "Strich",
|
||||||
"DE.Views.ShapeSettings.strTransparency": "Undurchsichtigkeit",
|
"DE.Views.ShapeSettings.strTransparency": "Undurchsichtigkeit",
|
||||||
|
@ -1802,7 +1937,7 @@
|
||||||
"DE.Views.ShapeSettings.textHintFlipV": "Vertikal kippen",
|
"DE.Views.ShapeSettings.textHintFlipV": "Vertikal kippen",
|
||||||
"DE.Views.ShapeSettings.textImageTexture": "Bild oder Textur",
|
"DE.Views.ShapeSettings.textImageTexture": "Bild oder Textur",
|
||||||
"DE.Views.ShapeSettings.textLinear": "Linear",
|
"DE.Views.ShapeSettings.textLinear": "Linear",
|
||||||
"DE.Views.ShapeSettings.textNewColor": "Benutzerdefinierte Farbe",
|
"DE.Views.ShapeSettings.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||||
"DE.Views.ShapeSettings.textNoFill": "Keine Füllung",
|
"DE.Views.ShapeSettings.textNoFill": "Keine Füllung",
|
||||||
"DE.Views.ShapeSettings.textPatternFill": "Muster",
|
"DE.Views.ShapeSettings.textPatternFill": "Muster",
|
||||||
"DE.Views.ShapeSettings.textRadial": "Radial",
|
"DE.Views.ShapeSettings.textRadial": "Radial",
|
||||||
|
@ -1862,6 +1997,7 @@
|
||||||
"DE.Views.StyleTitleDialog.textTitle": "Titel",
|
"DE.Views.StyleTitleDialog.textTitle": "Titel",
|
||||||
"DE.Views.StyleTitleDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
"DE.Views.StyleTitleDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "Das Feld darf nicht leer sein",
|
"DE.Views.StyleTitleDialog.txtNotEmpty": "Das Feld darf nicht leer sein",
|
||||||
|
"DE.Views.StyleTitleDialog.txtSameAs": "Gleich wie der neu erstellte Stil",
|
||||||
"DE.Views.TableFormulaDialog.textBookmark": "Lesezeichen einfügen",
|
"DE.Views.TableFormulaDialog.textBookmark": "Lesezeichen einfügen",
|
||||||
"DE.Views.TableFormulaDialog.textFormat": "Zahlenformat",
|
"DE.Views.TableFormulaDialog.textFormat": "Zahlenformat",
|
||||||
"DE.Views.TableFormulaDialog.textFormula": "Formula",
|
"DE.Views.TableFormulaDialog.textFormula": "Formula",
|
||||||
|
@ -1883,6 +2019,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.txtClassic": "Klassisch",
|
"DE.Views.TableOfContentsSettings.txtClassic": "Klassisch",
|
||||||
"DE.Views.TableOfContentsSettings.txtCurrent": "Aktuell",
|
"DE.Views.TableOfContentsSettings.txtCurrent": "Aktuell",
|
||||||
"DE.Views.TableOfContentsSettings.txtModern": "Modern",
|
"DE.Views.TableOfContentsSettings.txtModern": "Modern",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtOnline": "Online",
|
||||||
"DE.Views.TableOfContentsSettings.txtSimple": "Einfach",
|
"DE.Views.TableOfContentsSettings.txtSimple": "Einfach",
|
||||||
"DE.Views.TableOfContentsSettings.txtStandard": "Standard",
|
"DE.Views.TableOfContentsSettings.txtStandard": "Standard",
|
||||||
"DE.Views.TableSettings.deleteColumnText": "Spalte löschen",
|
"DE.Views.TableSettings.deleteColumnText": "Spalte löschen",
|
||||||
|
@ -1906,7 +2043,7 @@
|
||||||
"DE.Views.TableSettings.textBanded": "Gestreift",
|
"DE.Views.TableSettings.textBanded": "Gestreift",
|
||||||
"DE.Views.TableSettings.textBorderColor": "Farbe",
|
"DE.Views.TableSettings.textBorderColor": "Farbe",
|
||||||
"DE.Views.TableSettings.textBorders": "Stil des Rahmens",
|
"DE.Views.TableSettings.textBorders": "Stil des Rahmens",
|
||||||
"DE.Views.TableSettings.textCellSize": "Zellengröße",
|
"DE.Views.TableSettings.textCellSize": "Zeilen- und Spaltengröße",
|
||||||
"DE.Views.TableSettings.textColumns": "Spalten",
|
"DE.Views.TableSettings.textColumns": "Spalten",
|
||||||
"DE.Views.TableSettings.textDistributeCols": "Spalten verteilen",
|
"DE.Views.TableSettings.textDistributeCols": "Spalten verteilen",
|
||||||
"DE.Views.TableSettings.textDistributeRows": "Zeilen verteilen",
|
"DE.Views.TableSettings.textDistributeRows": "Zeilen verteilen",
|
||||||
|
@ -1936,6 +2073,11 @@
|
||||||
"DE.Views.TableSettings.txtTable_Accent": "Akzent",
|
"DE.Views.TableSettings.txtTable_Accent": "Akzent",
|
||||||
"DE.Views.TableSettings.txtTable_Colorful": "Farbig",
|
"DE.Views.TableSettings.txtTable_Colorful": "Farbig",
|
||||||
"DE.Views.TableSettings.txtTable_Dark": "Dunkel",
|
"DE.Views.TableSettings.txtTable_Dark": "Dunkel",
|
||||||
|
"DE.Views.TableSettings.txtTable_GridTable": "Gitternetztabelle",
|
||||||
|
"DE.Views.TableSettings.txtTable_Light": "Hell",
|
||||||
|
"DE.Views.TableSettings.txtTable_ListTable": "Listentabelle",
|
||||||
|
"DE.Views.TableSettings.txtTable_PlainTable": "Einfache Tabelle",
|
||||||
|
"DE.Views.TableSettings.txtTable_TableGrid": "Tabellenraster",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlign": "Ausrichtung",
|
"DE.Views.TableSettingsAdvanced.textAlign": "Ausrichtung",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Ausrichtung",
|
"DE.Views.TableSettingsAdvanced.textAlignment": "Ausrichtung",
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Abstand zwischen Zellen zulassen",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Abstand zwischen Zellen zulassen",
|
||||||
|
@ -2041,22 +2183,26 @@
|
||||||
"DE.Views.Toolbar.capBtnInsImage": "Bild",
|
"DE.Views.Toolbar.capBtnInsImage": "Bild",
|
||||||
"DE.Views.Toolbar.capBtnInsPagebreak": "Umbrüche",
|
"DE.Views.Toolbar.capBtnInsPagebreak": "Umbrüche",
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "Form",
|
"DE.Views.Toolbar.capBtnInsShape": "Form",
|
||||||
|
"DE.Views.Toolbar.capBtnInsSymbol": "Symbol",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "Tabelle",
|
"DE.Views.Toolbar.capBtnInsTable": "Tabelle",
|
||||||
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
|
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
|
||||||
"DE.Views.Toolbar.capBtnInsTextbox": "Textfeld",
|
"DE.Views.Toolbar.capBtnInsTextbox": "Textfeld",
|
||||||
"DE.Views.Toolbar.capBtnMargins": "Ränder",
|
"DE.Views.Toolbar.capBtnMargins": "Ränder",
|
||||||
"DE.Views.Toolbar.capBtnPageOrient": "Orientierung",
|
"DE.Views.Toolbar.capBtnPageOrient": "Orientierung",
|
||||||
"DE.Views.Toolbar.capBtnPageSize": "Größe",
|
"DE.Views.Toolbar.capBtnPageSize": "Größe",
|
||||||
|
"DE.Views.Toolbar.capBtnWatermark": "Wasserzeichen",
|
||||||
"DE.Views.Toolbar.capImgAlign": "Ausrichten",
|
"DE.Views.Toolbar.capImgAlign": "Ausrichten",
|
||||||
"DE.Views.Toolbar.capImgBackward": "Eine Ebene nach hinten",
|
"DE.Views.Toolbar.capImgBackward": "Eine Ebene nach hinten",
|
||||||
"DE.Views.Toolbar.capImgForward": "Eine Ebene nach vorne",
|
"DE.Views.Toolbar.capImgForward": "Eine Ebene nach vorne",
|
||||||
"DE.Views.Toolbar.capImgGroup": "Gruppieren",
|
"DE.Views.Toolbar.capImgGroup": "Gruppieren",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "Umbruch",
|
"DE.Views.Toolbar.capImgWrapping": "Umbruch",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "Benutzerdefinierte Tabelle einfügen",
|
"DE.Views.Toolbar.mniCustomTable": "Benutzerdefinierte Tabelle einfügen",
|
||||||
|
"DE.Views.Toolbar.mniDrawTable": "Tabelle zeichnen",
|
||||||
"DE.Views.Toolbar.mniEditControls": "Steuerelementeinstellungen",
|
"DE.Views.Toolbar.mniEditControls": "Steuerelementeinstellungen",
|
||||||
"DE.Views.Toolbar.mniEditDropCap": "Initialeinstellungen",
|
"DE.Views.Toolbar.mniEditDropCap": "Initialeinstellungen",
|
||||||
"DE.Views.Toolbar.mniEditFooter": "Fußzeile bearbeiten",
|
"DE.Views.Toolbar.mniEditFooter": "Fußzeile bearbeiten",
|
||||||
"DE.Views.Toolbar.mniEditHeader": "Kopfzeile bearbeiten",
|
"DE.Views.Toolbar.mniEditHeader": "Kopfzeile bearbeiten",
|
||||||
|
"DE.Views.Toolbar.mniEraseTable": "Tabelle löschen",
|
||||||
"DE.Views.Toolbar.mniHiddenBorders": "Ausgeblendete Tabellenrahmen",
|
"DE.Views.Toolbar.mniHiddenBorders": "Ausgeblendete Tabellenrahmen",
|
||||||
"DE.Views.Toolbar.mniHiddenChars": "Formatierungszeichen",
|
"DE.Views.Toolbar.mniHiddenChars": "Formatierungszeichen",
|
||||||
"DE.Views.Toolbar.mniHighlightControls": "Einstellungen für Hervorhebungen",
|
"DE.Views.Toolbar.mniHighlightControls": "Einstellungen für Hervorhebungen",
|
||||||
|
@ -2077,6 +2223,7 @@
|
||||||
"DE.Views.Toolbar.textComboboxControl": "Kombinationsfeld",
|
"DE.Views.Toolbar.textComboboxControl": "Kombinationsfeld",
|
||||||
"DE.Views.Toolbar.textContPage": "Fortlaufende Seite",
|
"DE.Views.Toolbar.textContPage": "Fortlaufende Seite",
|
||||||
"DE.Views.Toolbar.textDateControl": "Datum",
|
"DE.Views.Toolbar.textDateControl": "Datum",
|
||||||
|
"DE.Views.Toolbar.textDropdownControl": "Dropdownliste",
|
||||||
"DE.Views.Toolbar.textEditWatermark": "Benutzerdefiniertes Wasserzeichen",
|
"DE.Views.Toolbar.textEditWatermark": "Benutzerdefiniertes Wasserzeichen",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Gerade Seite",
|
"DE.Views.Toolbar.textEvenPage": "Gerade Seite",
|
||||||
"DE.Views.Toolbar.textInMargin": "Im Rand",
|
"DE.Views.Toolbar.textInMargin": "Im Rand",
|
||||||
|
@ -2089,6 +2236,7 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Kursiv",
|
"DE.Views.Toolbar.textItalic": "Kursiv",
|
||||||
"DE.Views.Toolbar.textLandscape": "Querformat",
|
"DE.Views.Toolbar.textLandscape": "Querformat",
|
||||||
"DE.Views.Toolbar.textLeft": "Links: ",
|
"DE.Views.Toolbar.textLeft": "Links: ",
|
||||||
|
"DE.Views.Toolbar.textListSettings": "Listeneinstellungen",
|
||||||
"DE.Views.Toolbar.textMarginsLast": " Benutzerdefiniert als letzte",
|
"DE.Views.Toolbar.textMarginsLast": " Benutzerdefiniert als letzte",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Mittelmäßig",
|
"DE.Views.Toolbar.textMarginsModerate": "Mittelmäßig",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Schmal",
|
"DE.Views.Toolbar.textMarginsNarrow": "Schmal",
|
||||||
|
@ -2102,10 +2250,12 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Ungerade Seite",
|
"DE.Views.Toolbar.textOddPage": "Ungerade Seite",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Benutzerdefinierte Seitenränder ",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Benutzerdefinierte Seitenränder ",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Benutzerdefiniertes Seitenformat",
|
"DE.Views.Toolbar.textPageSizeCustom": "Benutzerdefiniertes Seitenformat",
|
||||||
"DE.Views.Toolbar.textPlainControl": "Nur-Text-Inhaltssteuerelement einfügen",
|
"DE.Views.Toolbar.textPictureControl": "Bild",
|
||||||
|
"DE.Views.Toolbar.textPlainControl": "Einfacher Text",
|
||||||
"DE.Views.Toolbar.textPortrait": "Hochformat",
|
"DE.Views.Toolbar.textPortrait": "Hochformat",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Inhaltssteuerelement entfernen",
|
"DE.Views.Toolbar.textRemoveControl": "Inhaltssteuerelement entfernen",
|
||||||
"DE.Views.Toolbar.textRichControl": "Rich-Text-Inhaltssteuerelement einfügen",
|
"DE.Views.Toolbar.textRemWatermark": "Wasserzeichen entfernen",
|
||||||
|
"DE.Views.Toolbar.textRichControl": "Rich-Text",
|
||||||
"DE.Views.Toolbar.textRight": "Rechts: ",
|
"DE.Views.Toolbar.textRight": "Rechts: ",
|
||||||
"DE.Views.Toolbar.textStrikeout": "Durchgestrichen",
|
"DE.Views.Toolbar.textStrikeout": "Durchgestrichen",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Stil löschen",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Stil löschen",
|
||||||
|
@ -2159,6 +2309,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertImage": "Bild einfügen",
|
"DE.Views.Toolbar.tipInsertImage": "Bild einfügen",
|
||||||
"DE.Views.Toolbar.tipInsertNum": "Seitenzahl einfügen",
|
"DE.Views.Toolbar.tipInsertNum": "Seitenzahl einfügen",
|
||||||
"DE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
|
"DE.Views.Toolbar.tipInsertShape": "AutoForm einfügen",
|
||||||
|
"DE.Views.Toolbar.tipInsertSymbol": "Symbol einfügen",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
|
"DE.Views.Toolbar.tipInsertTable": "Tabelle einfügen",
|
||||||
"DE.Views.Toolbar.tipInsertText": "Textfeld einfügen",
|
"DE.Views.Toolbar.tipInsertText": "Textfeld einfügen",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "TextArt einfügen",
|
"DE.Views.Toolbar.tipInsertTextArt": "TextArt einfügen",
|
||||||
|
@ -2183,6 +2334,7 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Formatierungszeichen",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Formatierungszeichen",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.",
|
"DE.Views.Toolbar.tipSynchronize": "Das Dokument wurde von einem anderen Benutzer geändert. Bitte speichern Sie Ihre Änderungen und aktualisieren Sie Ihre Seite.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Rückgängig machen",
|
"DE.Views.Toolbar.tipUndo": "Rückgängig machen",
|
||||||
|
"DE.Views.Toolbar.tipWatermark": "Wasserzeichen bearbeiten",
|
||||||
"DE.Views.Toolbar.txtDistribHor": "Horizontal verteilen",
|
"DE.Views.Toolbar.txtDistribHor": "Horizontal verteilen",
|
||||||
"DE.Views.Toolbar.txtDistribVert": "Vertikal verteilen",
|
"DE.Views.Toolbar.txtDistribVert": "Vertikal verteilen",
|
||||||
"DE.Views.Toolbar.txtMarginAlign": "Mit Margin ausrichten",
|
"DE.Views.Toolbar.txtMarginAlign": "Mit Margin ausrichten",
|
||||||
|
@ -2211,6 +2363,25 @@
|
||||||
"DE.Views.Toolbar.txtScheme9": "Phoebe",
|
"DE.Views.Toolbar.txtScheme9": "Phoebe",
|
||||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch",
|
"DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch",
|
||||||
"DE.Views.WatermarkSettingsDialog.textBold": "Fett",
|
"DE.Views.WatermarkSettingsDialog.textBold": "Fett",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textColor": "Textfarbe",
|
||||||
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
|
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
|
||||||
"DE.Views.WatermarkSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen"
|
"DE.Views.WatermarkSettingsDialog.textFont": "Schriftart",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFromFile": "Aus Datei",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFromUrl": "Aus URL",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textImageW": "Bild-Wasserzeichen",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textItalic": "Kursiv",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textLanguage": "Sprache",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textNone": "Kein",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textScale": "Maßstab",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Durchgestrichen",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textText": "Text",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTextW": "Text-Wasserzeichen",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTitle": "Wasserzeichen-Einstellungen",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTransparency": "Halbtransparent",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textUnderline": "Unterstrichen",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.tipFontName": "Schriftartname",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Schriftgrad"
|
||||||
}
|
}
|
|
@ -1390,7 +1390,7 @@
|
||||||
"DE.Views.DocumentHolder.txtOverbar": "Bar over text",
|
"DE.Views.DocumentHolder.txtOverbar": "Bar over text",
|
||||||
"DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells",
|
"DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells",
|
||||||
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting",
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "Press CTRL and click link",
|
"DE.Views.DocumentHolder.txtPressLink": "Press Ctrl and click link",
|
||||||
"DE.Views.DocumentHolder.txtPrintSelection": "Print Selection",
|
"DE.Views.DocumentHolder.txtPrintSelection": "Print Selection",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
|
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
|
||||||
|
@ -1554,6 +1554,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Every Minute",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Every Minute",
|
||||||
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Make the files compatible with older MS Word versions when saved as DOCX",
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Make the files compatible with older MS Word versions when saved as DOCX",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "View All",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "View All",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Default cache mode",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Fit to Page",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Fit to Page",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width",
|
||||||
|
@ -1567,7 +1568,6 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtPt": "Point",
|
"DE.Views.FileMenuPanels.Settings.txtPt": "Point",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking",
|
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Default cache mode",
|
|
||||||
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center",
|
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left",
|
"DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of Page",
|
"DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of Page",
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.warningText": "El objeto está desactivado porque se está editando por otro usuario.",
|
"Common.Controllers.ExternalMergeEditor.warningText": "El objeto está desactivado porque se está editando por otro usuario.",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "Aviso",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "Aviso",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "Aviso",
|
"Common.Controllers.History.notcriticalErrorTitle": "Aviso",
|
||||||
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "A fin de comparar los documentos, se considerará que todos los cambios registrados en ellos han sido aceptados. ¿Quieres continuar?",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "Por lo menos",
|
"Common.Controllers.ReviewChanges.textAtLeast": "Por lo menos",
|
||||||
"Common.Controllers.ReviewChanges.textAuto": "Auto",
|
"Common.Controllers.ReviewChanges.textAuto": "Auto",
|
||||||
"Common.Controllers.ReviewChanges.textBaseline": "Baseline",
|
"Common.Controllers.ReviewChanges.textBaseline": "Baseline",
|
||||||
|
@ -68,15 +69,50 @@
|
||||||
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Se eliminaron filas de la tabla<b/>",
|
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Se eliminaron filas de la tabla<b/>",
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Cambiar tabuladores",
|
"Common.Controllers.ReviewChanges.textTabs": "Cambiar tabuladores",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Subrayado",
|
"Common.Controllers.ReviewChanges.textUnderline": "Subrayado",
|
||||||
|
"Common.Controllers.ReviewChanges.textUrl": "Pegar la URL de documento",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
"Common.define.chartData.textArea": "Área",
|
"Common.define.chartData.textArea": "Área",
|
||||||
"Common.define.chartData.textBar": "Barra",
|
"Common.define.chartData.textBar": "Barra",
|
||||||
|
"Common.define.chartData.textCharts": "Gráficos",
|
||||||
"Common.define.chartData.textColumn": "Gráfico de columnas",
|
"Common.define.chartData.textColumn": "Gráfico de columnas",
|
||||||
"Common.define.chartData.textLine": "Línea",
|
"Common.define.chartData.textLine": "Línea",
|
||||||
"Common.define.chartData.textPie": "Gráfico circular",
|
"Common.define.chartData.textPie": "Gráfico circular",
|
||||||
"Common.define.chartData.textPoint": "XY (Dispersión)",
|
"Common.define.chartData.textPoint": "XY (Dispersión)",
|
||||||
"Common.define.chartData.textStock": "De cotizaciones",
|
"Common.define.chartData.textStock": "De cotizaciones",
|
||||||
"Common.define.chartData.textSurface": "Superficie",
|
"Common.define.chartData.textSurface": "Superficie",
|
||||||
|
"Common.UI.Calendar.textApril": "Abril",
|
||||||
|
"Common.UI.Calendar.textAugust": "Agosto",
|
||||||
|
"Common.UI.Calendar.textDecember": "Diciembre",
|
||||||
|
"Common.UI.Calendar.textFebruary": "Febrero",
|
||||||
|
"Common.UI.Calendar.textJanuary": "Enero",
|
||||||
|
"Common.UI.Calendar.textJuly": "Julio",
|
||||||
|
"Common.UI.Calendar.textJune": "Junio",
|
||||||
|
"Common.UI.Calendar.textMarch": "marzo",
|
||||||
|
"Common.UI.Calendar.textMay": "mayo",
|
||||||
|
"Common.UI.Calendar.textMonths": "meses",
|
||||||
|
"Common.UI.Calendar.textNovember": "noviembre",
|
||||||
|
"Common.UI.Calendar.textOctober": "octubre",
|
||||||
|
"Common.UI.Calendar.textSeptember": "septiembre",
|
||||||
|
"Common.UI.Calendar.textShortApril": "Abr",
|
||||||
|
"Common.UI.Calendar.textShortAugust": "Ago",
|
||||||
|
"Common.UI.Calendar.textShortDecember": "Dic.",
|
||||||
|
"Common.UI.Calendar.textShortFebruary": "Feb.",
|
||||||
|
"Common.UI.Calendar.textShortFriday": "Vie.",
|
||||||
|
"Common.UI.Calendar.textShortJanuary": "Jan.",
|
||||||
|
"Common.UI.Calendar.textShortJuly": "Jul.",
|
||||||
|
"Common.UI.Calendar.textShortJune": "Jun.",
|
||||||
|
"Common.UI.Calendar.textShortMarch": "mar.",
|
||||||
|
"Common.UI.Calendar.textShortMay": "mayo",
|
||||||
|
"Common.UI.Calendar.textShortMonday": "lu.",
|
||||||
|
"Common.UI.Calendar.textShortNovember": "nov.",
|
||||||
|
"Common.UI.Calendar.textShortOctober": "oct.",
|
||||||
|
"Common.UI.Calendar.textShortSaturday": "sá.",
|
||||||
|
"Common.UI.Calendar.textShortSeptember": "sept.",
|
||||||
|
"Common.UI.Calendar.textShortSunday": "do.",
|
||||||
|
"Common.UI.Calendar.textShortThursday": "ju.",
|
||||||
|
"Common.UI.Calendar.textShortTuesday": "ma.",
|
||||||
|
"Common.UI.Calendar.textShortWednesday": "mi.",
|
||||||
|
"Common.UI.Calendar.textYears": "Años",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
||||||
|
@ -149,7 +185,7 @@
|
||||||
"Common.Views.ExternalMergeEditor.textClose": "Cerrar",
|
"Common.Views.ExternalMergeEditor.textClose": "Cerrar",
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Guardar y salir",
|
"Common.Views.ExternalMergeEditor.textSave": "Guardar y salir",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Receptores de Fusión de Correo",
|
"Common.Views.ExternalMergeEditor.textTitle": "Receptores de Fusión de Correo",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "El documento está siendo editado por múltiples usuarios.",
|
"Common.Views.Header.labelCoUsersDescr": "Usuarios que están editando el archivo:",
|
||||||
"Common.Views.Header.textAdvSettings": "Ajustes avanzados",
|
"Common.Views.Header.textAdvSettings": "Ajustes avanzados",
|
||||||
"Common.Views.Header.textBack": "Abrir ubicación del archivo",
|
"Common.Views.Header.textBack": "Abrir ubicación del archivo",
|
||||||
"Common.Views.Header.textCompactView": "Esconder barra de herramientas",
|
"Common.Views.Header.textCompactView": "Esconder barra de herramientas",
|
||||||
|
@ -223,12 +259,19 @@
|
||||||
"Common.Views.RenameDialog.txtInvalidName": "El nombre de archivo no debe contener los símbolos siguientes:",
|
"Common.Views.RenameDialog.txtInvalidName": "El nombre de archivo no debe contener los símbolos siguientes:",
|
||||||
"Common.Views.ReviewChanges.hintNext": "Al siguiente cambio",
|
"Common.Views.ReviewChanges.hintNext": "Al siguiente cambio",
|
||||||
"Common.Views.ReviewChanges.hintPrev": "Al cambio anterior",
|
"Common.Views.ReviewChanges.hintPrev": "Al cambio anterior",
|
||||||
|
"Common.Views.ReviewChanges.mniFromFile": "Documento del archivo",
|
||||||
|
"Common.Views.ReviewChanges.mniFromStorage": "Documento de almacenamiento",
|
||||||
|
"Common.Views.ReviewChanges.mniFromUrl": "Documento de la URL",
|
||||||
|
"Common.Views.ReviewChanges.mniSettings": "Ajustes de comparación",
|
||||||
"Common.Views.ReviewChanges.strFast": "Rápido",
|
"Common.Views.ReviewChanges.strFast": "Rápido",
|
||||||
"Common.Views.ReviewChanges.strFastDesc": "Co-edición a tiempo real. Todos",
|
"Common.Views.ReviewChanges.strFastDesc": "Co-edición a tiempo real. Todos",
|
||||||
"Common.Views.ReviewChanges.strStrict": "Estricto",
|
"Common.Views.ReviewChanges.strStrict": "Estricto",
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Use el botón \"Guardar\" para",
|
"Common.Views.ReviewChanges.strStrictDesc": "Use el botón \"Guardar\" para",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Aceptar cambio actual",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Aceptar cambio actual",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Establezca el modo de co-edición",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Establezca el modo de co-edición",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Eliminar comentarios",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Eliminar comentarios actuales",
|
||||||
|
"Common.Views.ReviewChanges.tipCompare": "Comparar el documento actual con otro",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Mostrar historial de versiones",
|
"Common.Views.ReviewChanges.tipHistory": "Mostrar historial de versiones",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Rechazar cambio actual",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Rechazar cambio actual",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Seguimiento a cambios",
|
"Common.Views.ReviewChanges.tipReview": "Seguimiento a cambios",
|
||||||
|
@ -243,6 +286,12 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Chat",
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Cerrar",
|
"Common.Views.ReviewChanges.txtClose": "Cerrar",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edición",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edición",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Eliminar todos los comentarios",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Eliminar comentarios actuales",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Eliminar mis comentarios",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Eliminar mis actuales comentarios",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Eliminar",
|
||||||
|
"Common.Views.ReviewChanges.txtCompare": "Comparar",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Idioma",
|
"Common.Views.ReviewChanges.txtDocLang": "Idioma",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Todos los cambio aceptados (vista previa)",
|
"Common.Views.ReviewChanges.txtFinal": "Todos los cambio aceptados (vista previa)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
||||||
|
@ -276,6 +325,8 @@
|
||||||
"Common.Views.ReviewPopover.textClose": "Cerrar",
|
"Common.Views.ReviewPopover.textClose": "Cerrar",
|
||||||
"Common.Views.ReviewPopover.textEdit": "OK",
|
"Common.Views.ReviewPopover.textEdit": "OK",
|
||||||
"Common.Views.ReviewPopover.textFollowMove": "Seguir movimiento",
|
"Common.Views.ReviewPopover.textFollowMove": "Seguir movimiento",
|
||||||
|
"Common.Views.ReviewPopover.textMention": "+mención proporcionará acceso al documento y enviará un correo electrónico",
|
||||||
|
"Common.Views.ReviewPopover.textMentionNotify": "+mention notificará al usuario por correo electrónico",
|
||||||
"Common.Views.ReviewPopover.textOpenAgain": "Abrir de nuevo",
|
"Common.Views.ReviewPopover.textOpenAgain": "Abrir de nuevo",
|
||||||
"Common.Views.ReviewPopover.textReply": "Responder",
|
"Common.Views.ReviewPopover.textReply": "Responder",
|
||||||
"Common.Views.ReviewPopover.textResolve": "Resolver",
|
"Common.Views.ReviewPopover.textResolve": "Resolver",
|
||||||
|
@ -306,6 +357,11 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Presentar fecha de la firma",
|
"Common.Views.SignSettingsDialog.textShowDate": "Presentar fecha de la firma",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Preparación de la firma",
|
"Common.Views.SignSettingsDialog.textTitle": "Preparación de la firma",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "Este campo es obligatorio",
|
"Common.Views.SignSettingsDialog.txtEmpty": "Este campo es obligatorio",
|
||||||
|
"Common.Views.SymbolTableDialog.textCode": "Valor HEX de Unicode",
|
||||||
|
"Common.Views.SymbolTableDialog.textFont": "Letra ",
|
||||||
|
"Common.Views.SymbolTableDialog.textRange": "Rango",
|
||||||
|
"Common.Views.SymbolTableDialog.textRecent": "Símbolos utilizados recientemente",
|
||||||
|
"Common.Views.SymbolTableDialog.textTitle": "Símbolo",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "Todos los cambios no guardados de este documento se perderán.<br> Pulse \"Cancelar\" después \"Guardar\" para guardarlos. Pulse \"OK\" para deshacer todos los cambios no guardados.",
|
"DE.Controllers.LeftMenu.leavePageText": "Todos los cambios no guardados de este documento se perderán.<br> Pulse \"Cancelar\" después \"Guardar\" para guardarlos. Pulse \"OK\" para deshacer todos los cambios no guardados.",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Documento sin título",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Documento sin título",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso",
|
||||||
|
@ -314,6 +370,7 @@
|
||||||
"DE.Controllers.LeftMenu.textNoTextFound": "No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.",
|
"DE.Controllers.LeftMenu.textNoTextFound": "No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSkipped": "Se ha realizado el reemplazo. {0} ocurrencias fueron saltadas.",
|
"DE.Controllers.LeftMenu.textReplaceSkipped": "Se ha realizado el reemplazo. {0} ocurrencias fueron saltadas.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSuccess": "La búsqueda se ha realizado. Ocurrencias reemplazadas: {0}",
|
"DE.Controllers.LeftMenu.textReplaceSuccess": "La búsqueda se ha realizado. Ocurrencias reemplazadas: {0}",
|
||||||
|
"DE.Controllers.LeftMenu.txtCompatible": "El documento se guardará en el nuevo formato. Permitirá utilizar todas las características del editor, pero podría afectar el diseño del documento.<br>Utilice la opción 'Compatibilidad' de la configuración avanzada si quiere hacer que los archivos sean compatibles con versiones anteriores de MS Word.",
|
||||||
"DE.Controllers.LeftMenu.txtUntitled": "Sin título",
|
"DE.Controllers.LeftMenu.txtUntitled": "Sin título",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.<br> ¿Está seguro de que quiere continuar?",
|
"DE.Controllers.LeftMenu.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.<br> ¿Está seguro de que quiere continuar?",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si Usted sigue guardando en este formato, una parte de formateo puede perderse.<br>¿Está seguro de que desea continuar?",
|
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si Usted sigue guardando en este formato, una parte de formateo puede perderse.<br>¿Está seguro de que desea continuar?",
|
||||||
|
@ -335,14 +392,16 @@
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
|
"DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
|
||||||
|
"DE.Controllers.Main.errorDirectUrl": "Por favor, verifique el vínculo al documento.<br>Este vínculo debe ser un vínculo directo al archivo para descargar.",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.<br>Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.<br>Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.",
|
||||||
"DE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.<br>Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.",
|
"DE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.<br>Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.",
|
||||||
"DE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de email",
|
"DE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de email",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
|
"DE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor.<br>Por favor, póngase en contacto con el administrador del Servidor de Documentos para obtener más detalles.",
|
||||||
"DE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras",
|
"DE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
|
"DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Error de carga",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "La carga del documento ha fallado. Por favor, seleccione un archivo diferente.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar",
|
"DE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar",
|
||||||
"DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
|
"DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
|
||||||
|
@ -353,9 +412,10 @@
|
||||||
"DE.Controllers.Main.errorToken": "El token de seguridad de documento tiene un formato incorrecto.<br>Por favor, contacte con el Administrador del Servidor de Documentos.",
|
"DE.Controllers.Main.errorToken": "El token de seguridad de documento tiene un formato incorrecto.<br>Por favor, contacte con el Administrador del Servidor de Documentos.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "El token de seguridad de documento ha sido expirado.<br>Por favor, contacte con el Administrador del Servidor de Documentos.",
|
"DE.Controllers.Main.errorTokenExpire": "El token de seguridad de documento ha sido expirado.<br>Por favor, contacte con el Administrador del Servidor de Documentos.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.",
|
"DE.Controllers.Main.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.",
|
"DE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "El número de usuarios permitido según su plan de precios fue excedido",
|
"DE.Controllers.Main.errorUsersExceed": "El número de usuarios permitido según su plan de precios fue excedido",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Se pierde la conexión. Usted todavía puede visualizar el documento,<br> pero no puede descargar o imprimirlo hasta que la conexión sea restaurada.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Se ha perdido la conexión. Usted todavía puede visualizar el documento,<br> pero no puede descargar o imprimirlo hasta que la conexión sea restaurada y la página esté recargada.",
|
||||||
"DE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en 'Permanecer en esta página', después 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.",
|
"DE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en 'Permanecer en esta página', después 'Guardar' para guardarlos. Haga clic en 'Abandonar esta página' para descartar todos los cambios no guardados.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Cargando datos...",
|
"DE.Controllers.Main.loadFontsTextText": "Cargando datos...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Cargando datos",
|
"DE.Controllers.Main.loadFontsTitleText": "Cargando datos",
|
||||||
|
@ -370,7 +430,7 @@
|
||||||
"DE.Controllers.Main.mailMergeLoadFileText": "Cargando fuente de datos...",
|
"DE.Controllers.Main.mailMergeLoadFileText": "Cargando fuente de datos...",
|
||||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Cargando fuente de datos",
|
"DE.Controllers.Main.mailMergeLoadFileTitle": "Cargando fuente de datos",
|
||||||
"DE.Controllers.Main.notcriticalErrorTitle": "Aviso",
|
"DE.Controllers.Main.notcriticalErrorTitle": "Aviso",
|
||||||
"DE.Controllers.Main.openErrorText": "Se ha producido un error al abrir el archivo ",
|
"DE.Controllers.Main.openErrorText": "Ha ocurrido un error al abrir el archivo. ",
|
||||||
"DE.Controllers.Main.openTextText": "Abriendo documento...",
|
"DE.Controllers.Main.openTextText": "Abriendo documento...",
|
||||||
"DE.Controllers.Main.openTitleText": "Abriendo documento",
|
"DE.Controllers.Main.openTitleText": "Abriendo documento",
|
||||||
"DE.Controllers.Main.printTextText": "Imprimiendo documento...",
|
"DE.Controllers.Main.printTextText": "Imprimiendo documento...",
|
||||||
|
@ -378,7 +438,7 @@
|
||||||
"DE.Controllers.Main.reloadButtonText": "Recargar página",
|
"DE.Controllers.Main.reloadButtonText": "Recargar página",
|
||||||
"DE.Controllers.Main.requestEditFailedMessageText": "Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.",
|
"DE.Controllers.Main.requestEditFailedMessageText": "Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.",
|
||||||
"DE.Controllers.Main.requestEditFailedTitleText": "Acceso negado",
|
"DE.Controllers.Main.requestEditFailedTitleText": "Acceso negado",
|
||||||
"DE.Controllers.Main.saveErrorText": "Se ha producido un error al guardar el archivo ",
|
"DE.Controllers.Main.saveErrorText": "Ha ocurrido un error al guardar el archivo. ",
|
||||||
"DE.Controllers.Main.savePreparingText": "Preparando para guardar",
|
"DE.Controllers.Main.savePreparingText": "Preparando para guardar",
|
||||||
"DE.Controllers.Main.savePreparingTitle": "Preparando para guardar.Espere por favor...",
|
"DE.Controllers.Main.savePreparingTitle": "Preparando para guardar.Espere por favor...",
|
||||||
"DE.Controllers.Main.saveTextText": "Guardando documento...",
|
"DE.Controllers.Main.saveTextText": "Guardando documento...",
|
||||||
|
@ -413,6 +473,7 @@
|
||||||
"DE.Controllers.Main.txtButtons": "Botones",
|
"DE.Controllers.Main.txtButtons": "Botones",
|
||||||
"DE.Controllers.Main.txtCallouts": "Llamadas",
|
"DE.Controllers.Main.txtCallouts": "Llamadas",
|
||||||
"DE.Controllers.Main.txtCharts": "Gráficos",
|
"DE.Controllers.Main.txtCharts": "Gráficos",
|
||||||
|
"DE.Controllers.Main.txtChoose": "Elija un item.",
|
||||||
"DE.Controllers.Main.txtCurrentDocument": "Documento actual",
|
"DE.Controllers.Main.txtCurrentDocument": "Documento actual",
|
||||||
"DE.Controllers.Main.txtDiagramTitle": "Título de diagrama",
|
"DE.Controllers.Main.txtDiagramTitle": "Título de diagrama",
|
||||||
"DE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...",
|
"DE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...",
|
||||||
|
@ -427,12 +488,15 @@
|
||||||
"DE.Controllers.Main.txtHyperlink": "Hiperenlace",
|
"DE.Controllers.Main.txtHyperlink": "Hiperenlace",
|
||||||
"DE.Controllers.Main.txtIndTooLarge": "El índice es demasiado grande",
|
"DE.Controllers.Main.txtIndTooLarge": "El índice es demasiado grande",
|
||||||
"DE.Controllers.Main.txtLines": "Líneas",
|
"DE.Controllers.Main.txtLines": "Líneas",
|
||||||
|
"DE.Controllers.Main.txtMainDocOnly": "¡Error! Sólo el documento principal.",
|
||||||
"DE.Controllers.Main.txtMath": "Matemáticas",
|
"DE.Controllers.Main.txtMath": "Matemáticas",
|
||||||
"DE.Controllers.Main.txtMissArg": "Falta argumento",
|
"DE.Controllers.Main.txtMissArg": "Falta argumento",
|
||||||
"DE.Controllers.Main.txtMissOperator": "Falta operador",
|
"DE.Controllers.Main.txtMissOperator": "Falta operador",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "Usted tiene actualizaciones",
|
"DE.Controllers.Main.txtNeedSynchronize": "Usted tiene actualizaciones",
|
||||||
"DE.Controllers.Main.txtNoTableOfContents": "No hay entradas en la tabla de contenido",
|
"DE.Controllers.Main.txtNoTableOfContents": "No hay títulos en el documento. Aplique un estilo de título al texto para que aparezca en la tabla de contenido.",
|
||||||
|
"DE.Controllers.Main.txtNoText": "¡Error! No hay texto del estilo especificado en el documento.",
|
||||||
"DE.Controllers.Main.txtNotInTable": "No está en la tabla",
|
"DE.Controllers.Main.txtNotInTable": "No está en la tabla",
|
||||||
|
"DE.Controllers.Main.txtNotValidBookmark": "¡Error! No es una auto-referencia de marcador válida.",
|
||||||
"DE.Controllers.Main.txtOddPage": "Página impar",
|
"DE.Controllers.Main.txtOddPage": "Página impar",
|
||||||
"DE.Controllers.Main.txtOnPage": "en la página",
|
"DE.Controllers.Main.txtOnPage": "en la página",
|
||||||
"DE.Controllers.Main.txtRectangles": "Rectángulos",
|
"DE.Controllers.Main.txtRectangles": "Rectángulos",
|
||||||
|
@ -611,6 +675,7 @@
|
||||||
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Llamada rectangular",
|
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Llamada rectangular",
|
||||||
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Llamada rectangular redondeada",
|
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Llamada rectangular redondeada",
|
||||||
"DE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas",
|
"DE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas",
|
||||||
|
"DE.Controllers.Main.txtStyle_Caption": "Leyenda",
|
||||||
"DE.Controllers.Main.txtStyle_footnote_text": "Texto a pie de página",
|
"DE.Controllers.Main.txtStyle_footnote_text": "Texto a pie de página",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_1": "Título 1",
|
"DE.Controllers.Main.txtStyle_Heading_1": "Título 1",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_2": "Título 2",
|
"DE.Controllers.Main.txtStyle_Heading_2": "Título 2",
|
||||||
|
@ -638,6 +703,9 @@
|
||||||
"DE.Controllers.Main.txtZeroDivide": "División por cero",
|
"DE.Controllers.Main.txtZeroDivide": "División por cero",
|
||||||
"DE.Controllers.Main.unknownErrorText": "Error desconocido.",
|
"DE.Controllers.Main.unknownErrorText": "Error desconocido.",
|
||||||
"DE.Controllers.Main.unsupportedBrowserErrorText": "Su navegador no está soportado.",
|
"DE.Controllers.Main.unsupportedBrowserErrorText": "Su navegador no está soportado.",
|
||||||
|
"DE.Controllers.Main.uploadDocExtMessage": "Formato de documento desconocido",
|
||||||
|
"DE.Controllers.Main.uploadDocFileCountMessage": "No hay documentos subidos",
|
||||||
|
"DE.Controllers.Main.uploadDocSizeMessage": "Límite de tamaño máximo del documento excedido.",
|
||||||
"DE.Controllers.Main.uploadImageExtMessage": "Formato de imagen desconocido.",
|
"DE.Controllers.Main.uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||||
"DE.Controllers.Main.uploadImageFileCountMessage": "Ningunas imágenes cargadas.",
|
"DE.Controllers.Main.uploadImageFileCountMessage": "Ningunas imágenes cargadas.",
|
||||||
"DE.Controllers.Main.uploadImageSizeMessage": "Tamaño máximo de imagen está superado.",
|
"DE.Controllers.Main.uploadImageSizeMessage": "Tamaño máximo de imagen está superado.",
|
||||||
|
@ -666,6 +734,7 @@
|
||||||
"DE.Controllers.Toolbar.textFontSizeErr": "El valor introducido es incorrecto.<br>Por favor, introduzca un valor numérico entre 1 y 100",
|
"DE.Controllers.Toolbar.textFontSizeErr": "El valor introducido es incorrecto.<br>Por favor, introduzca un valor numérico entre 1 y 100",
|
||||||
"DE.Controllers.Toolbar.textFraction": "Fracciones",
|
"DE.Controllers.Toolbar.textFraction": "Fracciones",
|
||||||
"DE.Controllers.Toolbar.textFunction": "Funciones",
|
"DE.Controllers.Toolbar.textFunction": "Funciones",
|
||||||
|
"DE.Controllers.Toolbar.textInsert": "Insertar",
|
||||||
"DE.Controllers.Toolbar.textIntegral": "Integrales",
|
"DE.Controllers.Toolbar.textIntegral": "Integrales",
|
||||||
"DE.Controllers.Toolbar.textLargeOperator": "Operadores grandes",
|
"DE.Controllers.Toolbar.textLargeOperator": "Operadores grandes",
|
||||||
"DE.Controllers.Toolbar.textLimitAndLog": "Límites y logaritmos ",
|
"DE.Controllers.Toolbar.textLimitAndLog": "Límites y logaritmos ",
|
||||||
|
@ -995,6 +1064,8 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Dseda",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Dseda",
|
||||||
"DE.Controllers.Viewport.textFitPage": "Ajustar a la página",
|
"DE.Controllers.Viewport.textFitPage": "Ajustar a la página",
|
||||||
"DE.Controllers.Viewport.textFitWidth": "Ajustar al ancho",
|
"DE.Controllers.Viewport.textFitWidth": "Ajustar al ancho",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Etiqueta:",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "La etiqueta no debe estar vacía.",
|
||||||
"DE.Views.BookmarksDialog.textAdd": "Añadir",
|
"DE.Views.BookmarksDialog.textAdd": "Añadir",
|
||||||
"DE.Views.BookmarksDialog.textBookmarkName": "Nombre de marcador",
|
"DE.Views.BookmarksDialog.textBookmarkName": "Nombre de marcador",
|
||||||
"DE.Views.BookmarksDialog.textClose": "Cerrar",
|
"DE.Views.BookmarksDialog.textClose": "Cerrar",
|
||||||
|
@ -1008,11 +1079,44 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Ordenar por",
|
"DE.Views.BookmarksDialog.textSort": "Ordenar por",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Marcadores",
|
"DE.Views.BookmarksDialog.textTitle": "Marcadores",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Nombre de marcador sólo puede contener letras, dígitos y barras bajas y debe comenzar con la letra",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Nombre de marcador sólo puede contener letras, dígitos y barras bajas y debe comenzar con la letra",
|
||||||
|
"DE.Views.CaptionDialog.textAdd": "Añadir",
|
||||||
|
"DE.Views.CaptionDialog.textAfter": "Después",
|
||||||
|
"DE.Views.CaptionDialog.textBefore": "Antes",
|
||||||
|
"DE.Views.CaptionDialog.textCaption": "Leyenda",
|
||||||
|
"DE.Views.CaptionDialog.textChapter": "El capítulo comienza con el estilo",
|
||||||
|
"DE.Views.CaptionDialog.textChapterInc": "Incluya el número de capítulo",
|
||||||
|
"DE.Views.CaptionDialog.textColon": "Colón",
|
||||||
|
"DE.Views.CaptionDialog.textDash": "guión",
|
||||||
|
"DE.Views.CaptionDialog.textDelete": "Borrar",
|
||||||
|
"DE.Views.CaptionDialog.textEquation": "Ecuación",
|
||||||
|
"DE.Views.CaptionDialog.textExamples": "Ejemplos: Tabla 2-A, Imagen 1.IV",
|
||||||
|
"DE.Views.CaptionDialog.textExclude": "Excluir la etiqueta de la leyenda",
|
||||||
|
"DE.Views.CaptionDialog.textFigure": "Figura",
|
||||||
|
"DE.Views.CaptionDialog.textHyphen": "guión",
|
||||||
|
"DE.Views.CaptionDialog.textInsert": "Insertar",
|
||||||
|
"DE.Views.CaptionDialog.textLabel": "Marca",
|
||||||
|
"DE.Views.CaptionDialog.textLongDash": "guión largo",
|
||||||
|
"DE.Views.CaptionDialog.textNumbering": "Numeración",
|
||||||
|
"DE.Views.CaptionDialog.textPeriod": "periodo",
|
||||||
|
"DE.Views.CaptionDialog.textSeparator": "Utilizar separador",
|
||||||
|
"DE.Views.CaptionDialog.textTable": "Tabla",
|
||||||
|
"DE.Views.CaptionDialog.textTitle": "Insertar leyenda",
|
||||||
|
"DE.Views.CellsAddDialog.textCol": "Columnas",
|
||||||
|
"DE.Views.CellsAddDialog.textDown": "Debajo del cursor",
|
||||||
|
"DE.Views.CellsAddDialog.textLeft": "A la izquierda",
|
||||||
|
"DE.Views.CellsAddDialog.textRight": "A la derecha",
|
||||||
|
"DE.Views.CellsAddDialog.textRow": "Filas",
|
||||||
|
"DE.Views.CellsAddDialog.textTitle": "Insertar Varios",
|
||||||
|
"DE.Views.CellsAddDialog.textUp": "Por encima del cursor",
|
||||||
|
"DE.Views.CellsRemoveDialog.textCol": "Eliminar toda la columna",
|
||||||
|
"DE.Views.CellsRemoveDialog.textLeft": "Desplazar celdas a la izquierda",
|
||||||
|
"DE.Views.CellsRemoveDialog.textRow": "Borrar toda la fila",
|
||||||
|
"DE.Views.CellsRemoveDialog.textTitle": "Borrar celdas",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
"DE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
||||||
"DE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
|
"DE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
|
||||||
"DE.Views.ChartSettings.textEditData": "Editar datos",
|
"DE.Views.ChartSettings.textEditData": "Editar datos",
|
||||||
"DE.Views.ChartSettings.textHeight": "Altura",
|
"DE.Views.ChartSettings.textHeight": "Altura",
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Tamaño Predeterminado",
|
"DE.Views.ChartSettings.textOriginalSize": "Tamaño actual",
|
||||||
"DE.Views.ChartSettings.textSize": "Tamaño",
|
"DE.Views.ChartSettings.textSize": "Tamaño",
|
||||||
"DE.Views.ChartSettings.textStyle": "Estilo",
|
"DE.Views.ChartSettings.textStyle": "Estilo",
|
||||||
"DE.Views.ChartSettings.textUndock": "Desacoplar de panel",
|
"DE.Views.ChartSettings.textUndock": "Desacoplar de panel",
|
||||||
|
@ -1026,10 +1130,27 @@
|
||||||
"DE.Views.ChartSettings.txtTight": "Estrecho",
|
"DE.Views.ChartSettings.txtTight": "Estrecho",
|
||||||
"DE.Views.ChartSettings.txtTitle": "Gráfico",
|
"DE.Views.ChartSettings.txtTitle": "Gráfico",
|
||||||
"DE.Views.ChartSettings.txtTopAndBottom": "Superior e inferior",
|
"DE.Views.ChartSettings.txtTopAndBottom": "Superior e inferior",
|
||||||
|
"DE.Views.CompareSettingsDialog.textChar": "Nivel del carácter",
|
||||||
|
"DE.Views.CompareSettingsDialog.textShow": "Mostrar cambios en",
|
||||||
|
"DE.Views.CompareSettingsDialog.textTitle": "Ajustes de comparación",
|
||||||
|
"DE.Views.CompareSettingsDialog.textWord": "Nivel de palabra",
|
||||||
|
"DE.Views.ControlSettingsDialog.strGeneral": "General",
|
||||||
|
"DE.Views.ControlSettingsDialog.textAdd": "Añadir",
|
||||||
"DE.Views.ControlSettingsDialog.textAppearance": "Aspecto",
|
"DE.Views.ControlSettingsDialog.textAppearance": "Aspecto",
|
||||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Aplicar a todo",
|
"DE.Views.ControlSettingsDialog.textApplyAll": "Aplicar a todo",
|
||||||
"DE.Views.ControlSettingsDialog.textBox": "Cuadro delimitador",
|
"DE.Views.ControlSettingsDialog.textBox": "Cuadro delimitador",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChange": "Editar",
|
||||||
|
"DE.Views.ControlSettingsDialog.textCheckbox": "Casilla a marquar",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChecked": "Símbolo marcado",
|
||||||
"DE.Views.ControlSettingsDialog.textColor": "Color",
|
"DE.Views.ControlSettingsDialog.textColor": "Color",
|
||||||
|
"DE.Views.ControlSettingsDialog.textCombobox": "Cuadro de lista desplegable",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDate": "Formato de la fecha",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDelete": "Borrar",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDisplayName": "Nombre de pantalla",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDown": "Abajo",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDropDown": "Lista desplegable",
|
||||||
|
"DE.Views.ControlSettingsDialog.textFormat": "Mostrar la fecha de esta manera",
|
||||||
|
"DE.Views.ControlSettingsDialog.textLang": "Idioma",
|
||||||
"DE.Views.ControlSettingsDialog.textLock": "Cerrando",
|
"DE.Views.ControlSettingsDialog.textLock": "Cerrando",
|
||||||
"DE.Views.ControlSettingsDialog.textName": "Título",
|
"DE.Views.ControlSettingsDialog.textName": "Título",
|
||||||
"DE.Views.ControlSettingsDialog.textNewColor": "Color personalizado",
|
"DE.Views.ControlSettingsDialog.textNewColor": "Color personalizado",
|
||||||
|
@ -1038,6 +1159,10 @@
|
||||||
"DE.Views.ControlSettingsDialog.textSystemColor": "Sistema",
|
"DE.Views.ControlSettingsDialog.textSystemColor": "Sistema",
|
||||||
"DE.Views.ControlSettingsDialog.textTag": "Etiqueta",
|
"DE.Views.ControlSettingsDialog.textTag": "Etiqueta",
|
||||||
"DE.Views.ControlSettingsDialog.textTitle": "Ajustes de control de contenido",
|
"DE.Views.ControlSettingsDialog.textTitle": "Ajustes de control de contenido",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUnchecked": "Símbolo desactivado",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUp": "Arriba",
|
||||||
|
"DE.Views.ControlSettingsDialog.textValue": "Valor",
|
||||||
|
"DE.Views.ControlSettingsDialog.tipChange": "Cambiar símbolo",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "El control de contenido no puede",
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "El control de contenido no puede",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Los contenidos no se pueden editar",
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "Los contenidos no se pueden editar",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "Número de columnas",
|
"DE.Views.CustomColumnsDialog.textColumns": "Número de columnas",
|
||||||
|
@ -1090,7 +1215,7 @@
|
||||||
"DE.Views.DocumentHolder.mergeCellsText": "Unir celdas",
|
"DE.Views.DocumentHolder.mergeCellsText": "Unir celdas",
|
||||||
"DE.Views.DocumentHolder.moreText": "Más variantes...",
|
"DE.Views.DocumentHolder.moreText": "Más variantes...",
|
||||||
"DE.Views.DocumentHolder.noSpellVariantsText": "Sin variantes ",
|
"DE.Views.DocumentHolder.noSpellVariantsText": "Sin variantes ",
|
||||||
"DE.Views.DocumentHolder.originalSizeText": "Tamaño Predeterminado",
|
"DE.Views.DocumentHolder.originalSizeText": "Tamaño actual",
|
||||||
"DE.Views.DocumentHolder.paragraphText": "Párrafo",
|
"DE.Views.DocumentHolder.paragraphText": "Párrafo",
|
||||||
"DE.Views.DocumentHolder.removeHyperlinkText": "Eliminar hiperenlace",
|
"DE.Views.DocumentHolder.removeHyperlinkText": "Eliminar hiperenlace",
|
||||||
"DE.Views.DocumentHolder.rightText": "Derecho",
|
"DE.Views.DocumentHolder.rightText": "Derecho",
|
||||||
|
@ -1117,6 +1242,7 @@
|
||||||
"DE.Views.DocumentHolder.textArrangeBackward": "Enviar atrás",
|
"DE.Views.DocumentHolder.textArrangeBackward": "Enviar atrás",
|
||||||
"DE.Views.DocumentHolder.textArrangeForward": "Traer adelante",
|
"DE.Views.DocumentHolder.textArrangeForward": "Traer adelante",
|
||||||
"DE.Views.DocumentHolder.textArrangeFront": "Traer al primer plano",
|
"DE.Views.DocumentHolder.textArrangeFront": "Traer al primer plano",
|
||||||
|
"DE.Views.DocumentHolder.textCells": "Celdas",
|
||||||
"DE.Views.DocumentHolder.textContentControls": "Control de contenido",
|
"DE.Views.DocumentHolder.textContentControls": "Control de contenido",
|
||||||
"DE.Views.DocumentHolder.textContinueNumbering": "Continuar numeración",
|
"DE.Views.DocumentHolder.textContinueNumbering": "Continuar numeración",
|
||||||
"DE.Views.DocumentHolder.textCopy": "Copiar",
|
"DE.Views.DocumentHolder.textCopy": "Copiar",
|
||||||
|
@ -1148,6 +1274,7 @@
|
||||||
"DE.Views.DocumentHolder.textRotate90": "Girar 90° a la derecha",
|
"DE.Views.DocumentHolder.textRotate90": "Girar 90° a la derecha",
|
||||||
"DE.Views.DocumentHolder.textSeparateList": "Separar lista",
|
"DE.Views.DocumentHolder.textSeparateList": "Separar lista",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Ajustes",
|
"DE.Views.DocumentHolder.textSettings": "Ajustes",
|
||||||
|
"DE.Views.DocumentHolder.textSeveral": "Varias filas/columnas",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Alinear en la parte inferior",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Alinear en la parte inferior",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Alinear al centro",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Alinear al centro",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignLeft": "Alinear a la izquierda",
|
"DE.Views.DocumentHolder.textShapeAlignLeft": "Alinear a la izquierda",
|
||||||
|
@ -1164,6 +1291,7 @@
|
||||||
"DE.Views.DocumentHolder.textUpdateTOC": "Actualize la tabla de contenidos",
|
"DE.Views.DocumentHolder.textUpdateTOC": "Actualize la tabla de contenidos",
|
||||||
"DE.Views.DocumentHolder.textWrap": "Ajuste de texto",
|
"DE.Views.DocumentHolder.textWrap": "Ajuste de texto",
|
||||||
"DE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.",
|
"DE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.",
|
||||||
|
"DE.Views.DocumentHolder.toDictionaryText": "Añadir a Diccionario",
|
||||||
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
|
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
|
||||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Añadir barra de fracción",
|
"DE.Views.DocumentHolder.txtAddFractionBar": "Añadir barra de fracción",
|
||||||
"DE.Views.DocumentHolder.txtAddHor": "Añadir línea horizontal",
|
"DE.Views.DocumentHolder.txtAddHor": "Añadir línea horizontal",
|
||||||
|
@ -1188,6 +1316,7 @@
|
||||||
"DE.Views.DocumentHolder.txtDeleteRadical": "Eliminar radical",
|
"DE.Views.DocumentHolder.txtDeleteRadical": "Eliminar radical",
|
||||||
"DE.Views.DocumentHolder.txtDistribHor": "Distribuir horizontalmente",
|
"DE.Views.DocumentHolder.txtDistribHor": "Distribuir horizontalmente",
|
||||||
"DE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalmente",
|
"DE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalmente",
|
||||||
|
"DE.Views.DocumentHolder.txtEmpty": "(Vacío)",
|
||||||
"DE.Views.DocumentHolder.txtFractionLinear": "Cambiar a la fracción lineal",
|
"DE.Views.DocumentHolder.txtFractionLinear": "Cambiar a la fracción lineal",
|
||||||
"DE.Views.DocumentHolder.txtFractionSkewed": "Cambiar a la fracción sesgada",
|
"DE.Views.DocumentHolder.txtFractionSkewed": "Cambiar a la fracción sesgada",
|
||||||
"DE.Views.DocumentHolder.txtFractionStacked": "Cambiar a la fracción apilada",
|
"DE.Views.DocumentHolder.txtFractionStacked": "Cambiar a la fracción apilada",
|
||||||
|
@ -1214,6 +1343,7 @@
|
||||||
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insertar argumento después",
|
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insertar argumento después",
|
||||||
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insertar argumento antes",
|
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insertar argumento antes",
|
||||||
"DE.Views.DocumentHolder.txtInsertBreak": "Insertar grieta manual",
|
"DE.Views.DocumentHolder.txtInsertBreak": "Insertar grieta manual",
|
||||||
|
"DE.Views.DocumentHolder.txtInsertCaption": "Insertar leyenda",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insertar la ecuación después de",
|
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insertar la ecuación después de",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insertar la ecuación antes de",
|
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insertar la ecuación antes de",
|
||||||
"DE.Views.DocumentHolder.txtKeepTextOnly": "Mantener solo texto",
|
"DE.Views.DocumentHolder.txtKeepTextOnly": "Mantener solo texto",
|
||||||
|
@ -1226,6 +1356,7 @@
|
||||||
"DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescribir las celdas",
|
"DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescribir las celdas",
|
||||||
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantener el formato original",
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantener el formato original",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "Pulse CTRL y haga clic en el enlace",
|
"DE.Views.DocumentHolder.txtPressLink": "Pulse CTRL y haga clic en el enlace",
|
||||||
|
"DE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "Quitar la barra de fracción",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "Quitar la barra de fracción",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "Eliminar límite",
|
"DE.Views.DocumentHolder.txtRemLimit": "Eliminar límite",
|
||||||
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Quitar carácter de acento",
|
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Quitar carácter de acento",
|
||||||
|
@ -1293,6 +1424,10 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.textWidth": "Ancho",
|
"DE.Views.DropcapSettingsAdvanced.textWidth": "Ancho",
|
||||||
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipo de letra",
|
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipo de letra",
|
||||||
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sin bordes",
|
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sin bordes",
|
||||||
|
"DE.Views.EditListItemDialog.textDisplayName": "Nombre de pantalla",
|
||||||
|
"DE.Views.EditListItemDialog.textNameError": "El nombre de la pantalla no debe estar vacío.",
|
||||||
|
"DE.Views.EditListItemDialog.textValue": "Valor",
|
||||||
|
"DE.Views.EditListItemDialog.textValueError": "Ya existe un elemento con el mismo valor.",
|
||||||
"DE.Views.FileMenu.btnBackCaption": "Abrir ubicación del archivo",
|
"DE.Views.FileMenu.btnBackCaption": "Abrir ubicación del archivo",
|
||||||
"DE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú",
|
"DE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú",
|
||||||
"DE.Views.FileMenu.btnCreateNewCaption": "Crear nuevo",
|
"DE.Views.FileMenu.btnCreateNewCaption": "Crear nuevo",
|
||||||
|
@ -1317,6 +1452,7 @@
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Cree un nuevo documento de texto en blanco para trabajar con el estilo y el formato y editarlo según sus necesidades. O seleccione una de las plantillas para iniciar documento de cierto tipo o propósito donde algunos estilos se han aplicado ya.",
|
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Cree un nuevo documento de texto en blanco para trabajar con el estilo y el formato y editarlo según sus necesidades. O seleccione una de las plantillas para iniciar documento de cierto tipo o propósito donde algunos estilos se han aplicado ya.",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nuevo documento de texto",
|
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nuevo documento de texto",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "No hay ningunas plantillas",
|
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "No hay ningunas plantillas",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Añadir autor",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Añadir autor",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Añadir texto",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Añadir texto",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicación",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicación",
|
||||||
|
@ -1377,10 +1513,13 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Guías de alineación",
|
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Guías de alineación",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autorrecuperación",
|
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autorrecuperación",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Guardar automáticamente",
|
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Guardar automáticamente",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textCompatible": "Compatibilidad",
|
||||||
"DE.Views.FileMenuPanels.Settings.textDisabled": "Desactivado",
|
"DE.Views.FileMenuPanels.Settings.textDisabled": "Desactivado",
|
||||||
"DE.Views.FileMenuPanels.Settings.textForceSave": "Guardar al Servidor",
|
"DE.Views.FileMenuPanels.Settings.textForceSave": "Guardar al Servidor",
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Cada minuto",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Cada minuto",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Hacer que los archivos sean compatibles con versiones anteriores de MS Word cuando se guarden como DOCX",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "Ver todo",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "Ver todo",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Modo de caché predeterminado",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar a la página",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar a la página",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar al ancho",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar al ancho",
|
||||||
|
@ -1442,7 +1581,7 @@
|
||||||
"DE.Views.ImageSettings.textHintFlipH": "Volteo Horizontal",
|
"DE.Views.ImageSettings.textHintFlipH": "Volteo Horizontal",
|
||||||
"DE.Views.ImageSettings.textHintFlipV": "Volteo Vertical",
|
"DE.Views.ImageSettings.textHintFlipV": "Volteo Vertical",
|
||||||
"DE.Views.ImageSettings.textInsert": "Reemplazar imagen",
|
"DE.Views.ImageSettings.textInsert": "Reemplazar imagen",
|
||||||
"DE.Views.ImageSettings.textOriginalSize": "Tamaño Predeterminado",
|
"DE.Views.ImageSettings.textOriginalSize": "Tamaño actual",
|
||||||
"DE.Views.ImageSettings.textRotate90": "Girar 90°",
|
"DE.Views.ImageSettings.textRotate90": "Girar 90°",
|
||||||
"DE.Views.ImageSettings.textRotation": "Rotación",
|
"DE.Views.ImageSettings.textRotation": "Rotación",
|
||||||
"DE.Views.ImageSettings.textSize": "Tamaño",
|
"DE.Views.ImageSettings.textSize": "Tamaño",
|
||||||
|
@ -1494,7 +1633,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textMiter": "Ángulo",
|
"DE.Views.ImageSettingsAdvanced.textMiter": "Ángulo",
|
||||||
"DE.Views.ImageSettingsAdvanced.textMove": "Desplazar objeto con texto",
|
"DE.Views.ImageSettingsAdvanced.textMove": "Desplazar objeto con texto",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOptions": "Opciones",
|
"DE.Views.ImageSettingsAdvanced.textOptions": "Opciones",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamaño Predeterminado",
|
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamaño actual",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOverlap": "Superposición",
|
"DE.Views.ImageSettingsAdvanced.textOverlap": "Superposición",
|
||||||
"DE.Views.ImageSettingsAdvanced.textPage": "Página",
|
"DE.Views.ImageSettingsAdvanced.textPage": "Página",
|
||||||
"DE.Views.ImageSettingsAdvanced.textParagraph": "Párrafo",
|
"DE.Views.ImageSettingsAdvanced.textParagraph": "Párrafo",
|
||||||
|
@ -1538,6 +1677,7 @@
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO",
|
"DE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO",
|
||||||
"DE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA",
|
"DE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Marcador",
|
"DE.Views.Links.capBtnBookmarks": "Marcador",
|
||||||
|
"DE.Views.Links.capBtnCaption": "Leyenda",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Actualizar",
|
"DE.Views.Links.capBtnContentsUpdate": "Actualizar",
|
||||||
"DE.Views.Links.capBtnInsContents": "Tabla de contenidos",
|
"DE.Views.Links.capBtnInsContents": "Tabla de contenidos",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Nota a pie de página",
|
"DE.Views.Links.capBtnInsFootnote": "Nota a pie de página",
|
||||||
|
@ -1552,10 +1692,29 @@
|
||||||
"DE.Views.Links.textUpdateAll": "Actualize toda la tabla",
|
"DE.Views.Links.textUpdateAll": "Actualize toda la tabla",
|
||||||
"DE.Views.Links.textUpdatePages": "Actualize solo los números de página",
|
"DE.Views.Links.textUpdatePages": "Actualize solo los números de página",
|
||||||
"DE.Views.Links.tipBookmarks": "Crear marcador",
|
"DE.Views.Links.tipBookmarks": "Crear marcador",
|
||||||
|
"DE.Views.Links.tipCaption": "Insertar leyenda",
|
||||||
"DE.Views.Links.tipContents": "Introducir tabla de contenidos",
|
"DE.Views.Links.tipContents": "Introducir tabla de contenidos",
|
||||||
"DE.Views.Links.tipContentsUpdate": "Actualize la tabla de contenidos",
|
"DE.Views.Links.tipContentsUpdate": "Actualize la tabla de contenidos",
|
||||||
"DE.Views.Links.tipInsertHyperlink": "Añadir hiperenlace",
|
"DE.Views.Links.tipInsertHyperlink": "Añadir hiperenlace",
|
||||||
"DE.Views.Links.tipNotes": "Introducir o editar notas a pie de página",
|
"DE.Views.Links.tipNotes": "Introducir o editar notas a pie de página",
|
||||||
|
"DE.Views.ListSettingsDialog.textAuto": "Automático",
|
||||||
|
"DE.Views.ListSettingsDialog.textCenter": "Al centro",
|
||||||
|
"DE.Views.ListSettingsDialog.textLeft": "Izquierda",
|
||||||
|
"DE.Views.ListSettingsDialog.textLevel": "Nivel",
|
||||||
|
"DE.Views.ListSettingsDialog.textNewColor": "Añadir Nuevo Color Personalizado",
|
||||||
|
"DE.Views.ListSettingsDialog.textPreview": "Vista previa",
|
||||||
|
"DE.Views.ListSettingsDialog.textRight": "A la derecha",
|
||||||
|
"DE.Views.ListSettingsDialog.txtAlign": "Alineación",
|
||||||
|
"DE.Views.ListSettingsDialog.txtBullet": "Viñeta",
|
||||||
|
"DE.Views.ListSettingsDialog.txtColor": "Color",
|
||||||
|
"DE.Views.ListSettingsDialog.txtFont": "Fuente y Símbolo",
|
||||||
|
"DE.Views.ListSettingsDialog.txtLikeText": "Como un texto",
|
||||||
|
"DE.Views.ListSettingsDialog.txtNewBullet": "Nueva viñeta",
|
||||||
|
"DE.Views.ListSettingsDialog.txtNone": "Ninguno",
|
||||||
|
"DE.Views.ListSettingsDialog.txtSize": "Tamaño",
|
||||||
|
"DE.Views.ListSettingsDialog.txtSymbol": "Símbolo",
|
||||||
|
"DE.Views.ListSettingsDialog.txtTitle": "Opciones de lista",
|
||||||
|
"DE.Views.ListSettingsDialog.txtType": "Tipo",
|
||||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Enviar",
|
"DE.Views.MailMergeEmailDlg.okButtonText": "Enviar",
|
||||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema",
|
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema",
|
||||||
|
@ -1605,7 +1764,7 @@
|
||||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Imposible empezar fusión",
|
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Imposible empezar fusión",
|
||||||
"DE.Views.Navigation.txtCollapse": "Desplegar todo",
|
"DE.Views.Navigation.txtCollapse": "Desplegar todo",
|
||||||
"DE.Views.Navigation.txtDemote": "Degradar",
|
"DE.Views.Navigation.txtDemote": "Degradar",
|
||||||
"DE.Views.Navigation.txtEmpty": "Este documento no",
|
"DE.Views.Navigation.txtEmpty": "No hay títulos en el documento.<br>Aplique un estilo de título al texto para que aparezca en la tabla de contenido.",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Encabezado vacío",
|
"DE.Views.Navigation.txtEmptyItem": "Encabezado vacío",
|
||||||
"DE.Views.Navigation.txtExpand": "Expandir todo",
|
"DE.Views.Navigation.txtExpand": "Expandir todo",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel",
|
"DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel",
|
||||||
|
@ -1634,7 +1793,18 @@
|
||||||
"DE.Views.NoteSettingsDialog.textTitle": "Ajustes de las notas a pie de página",
|
"DE.Views.NoteSettingsDialog.textTitle": "Ajustes de las notas a pie de página",
|
||||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Aviso",
|
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Aviso",
|
||||||
"DE.Views.PageMarginsDialog.textBottom": "Inferior",
|
"DE.Views.PageMarginsDialog.textBottom": "Inferior",
|
||||||
|
"DE.Views.PageMarginsDialog.textGutter": "Reliure",
|
||||||
|
"DE.Views.PageMarginsDialog.textGutterPosition": "Posición de fijación",
|
||||||
|
"DE.Views.PageMarginsDialog.textInside": "Dentro de",
|
||||||
|
"DE.Views.PageMarginsDialog.textLandscape": "Horizontal",
|
||||||
"DE.Views.PageMarginsDialog.textLeft": "Izquierdo",
|
"DE.Views.PageMarginsDialog.textLeft": "Izquierdo",
|
||||||
|
"DE.Views.PageMarginsDialog.textMirrorMargins": " Márgenes simétricos ",
|
||||||
|
"DE.Views.PageMarginsDialog.textMultiplePages": "Múltiples páginas",
|
||||||
|
"DE.Views.PageMarginsDialog.textNormal": "Normal",
|
||||||
|
"DE.Views.PageMarginsDialog.textOrientation": "Orientación ",
|
||||||
|
"DE.Views.PageMarginsDialog.textOutside": "Exterior",
|
||||||
|
"DE.Views.PageMarginsDialog.textPortrait": "Vertical",
|
||||||
|
"DE.Views.PageMarginsDialog.textPreview": "Vista previa",
|
||||||
"DE.Views.PageMarginsDialog.textRight": "Derecho",
|
"DE.Views.PageMarginsDialog.textRight": "Derecho",
|
||||||
"DE.Views.PageMarginsDialog.textTitle": "Márgenes",
|
"DE.Views.PageMarginsDialog.textTitle": "Márgenes",
|
||||||
"DE.Views.PageMarginsDialog.textTop": "Top",
|
"DE.Views.PageMarginsDialog.textTop": "Top",
|
||||||
|
@ -1663,33 +1833,52 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordes y relleno",
|
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordes y relleno",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Salto de página antes",
|
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Salto de página antes",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble tachado",
|
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble tachado",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Retiradas",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Izquierdo",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Izquierdo",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Espaciado de línea",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Nivel de esquema ",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Derecho",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Derecho",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Después",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Antes",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Mantener líneas juntas",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Mantener líneas juntas",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Conservar con el siguiente",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Conservar con el siguiente",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Espaciados internos",
|
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Espaciados internos",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de líneas huérfanas",
|
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Control de líneas huérfanas",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Letra ",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Letra ",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sangrías y disposición",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sangría y espaciado",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Saltos de línea y Saltos de página",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Ubicación",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Ubicación",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Mayúsculas pequeñas",
|
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Mayúsculas pequeñas",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "No añada intervalos entre párrafos del mismo estilo",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaciado",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Tachado",
|
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Tachado",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subíndice",
|
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subíndice",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Sobreíndice",
|
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Sobreíndice",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Pestaña",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Pestaña",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Alineación",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Alineación",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Por lo menos",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiple",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de fondo",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de fondo",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texto Básico",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color de borde",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color de borde",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Haga clic en diagrama o use botones para seleccionar bordes y aplicar el estilo seleccionado",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Haga clic en diagrama o use botones para seleccionar bordes y aplicar el estilo seleccionado",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Tamaño de borde",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Tamaño de borde",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Inferior",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Inferior",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrado",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaciado entre caracteres",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaciado entre caracteres",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulador Predeterminado",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulador Predeterminado",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efectos",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Efectos",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactamente",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primera linea",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Suspendido",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Justificado",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Director",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Director",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Izquierdo",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Izquierdo",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Nivel",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Color personalizado",
|
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Color personalizado",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ninguno",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "Ninguno",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ninguno)",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posición",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Posición",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Eliminar",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Eliminar",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Eliminar todo",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Eliminar todo",
|
||||||
|
@ -1710,6 +1899,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Fijar sólo borde exterior",
|
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Fijar sólo borde exterior",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Fijar sólo borde derecho",
|
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Fijar sólo borde derecho",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior",
|
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sin bordes",
|
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sin bordes",
|
||||||
"DE.Views.RightMenu.txtChartSettings": "Ajustes de gráfico",
|
"DE.Views.RightMenu.txtChartSettings": "Ajustes de gráfico",
|
||||||
"DE.Views.RightMenu.txtHeaderFooterSettings": "Ajustes de encabezado y pie de página",
|
"DE.Views.RightMenu.txtHeaderFooterSettings": "Ajustes de encabezado y pie de página",
|
||||||
|
@ -1726,6 +1916,7 @@
|
||||||
"DE.Views.ShapeSettings.strFill": "Relleno",
|
"DE.Views.ShapeSettings.strFill": "Relleno",
|
||||||
"DE.Views.ShapeSettings.strForeground": "Color de primer plano",
|
"DE.Views.ShapeSettings.strForeground": "Color de primer plano",
|
||||||
"DE.Views.ShapeSettings.strPattern": "Patrón",
|
"DE.Views.ShapeSettings.strPattern": "Patrón",
|
||||||
|
"DE.Views.ShapeSettings.strShadow": "Mostrar sombra",
|
||||||
"DE.Views.ShapeSettings.strSize": "Tamaño",
|
"DE.Views.ShapeSettings.strSize": "Tamaño",
|
||||||
"DE.Views.ShapeSettings.strStroke": "Trazo",
|
"DE.Views.ShapeSettings.strStroke": "Trazo",
|
||||||
"DE.Views.ShapeSettings.strTransparency": "Opacidad ",
|
"DE.Views.ShapeSettings.strTransparency": "Opacidad ",
|
||||||
|
@ -1806,6 +1997,7 @@
|
||||||
"DE.Views.StyleTitleDialog.textTitle": "Title",
|
"DE.Views.StyleTitleDialog.textTitle": "Title",
|
||||||
"DE.Views.StyleTitleDialog.txtEmpty": "Este campo es obligatorio",
|
"DE.Views.StyleTitleDialog.txtEmpty": "Este campo es obligatorio",
|
||||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "El campo no puede estar vacío",
|
"DE.Views.StyleTitleDialog.txtNotEmpty": "El campo no puede estar vacío",
|
||||||
|
"DE.Views.StyleTitleDialog.txtSameAs": "Igual que el nuevo estilo creado",
|
||||||
"DE.Views.TableFormulaDialog.textBookmark": "Pegar marcador",
|
"DE.Views.TableFormulaDialog.textBookmark": "Pegar marcador",
|
||||||
"DE.Views.TableFormulaDialog.textFormat": "Formato de número",
|
"DE.Views.TableFormulaDialog.textFormat": "Formato de número",
|
||||||
"DE.Views.TableFormulaDialog.textFormula": "Fórmula",
|
"DE.Views.TableFormulaDialog.textFormula": "Fórmula",
|
||||||
|
@ -1827,6 +2019,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.txtClassic": "Clásico",
|
"DE.Views.TableOfContentsSettings.txtClassic": "Clásico",
|
||||||
"DE.Views.TableOfContentsSettings.txtCurrent": "Actual",
|
"DE.Views.TableOfContentsSettings.txtCurrent": "Actual",
|
||||||
"DE.Views.TableOfContentsSettings.txtModern": "Moderna",
|
"DE.Views.TableOfContentsSettings.txtModern": "Moderna",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtOnline": "En línea",
|
||||||
"DE.Views.TableOfContentsSettings.txtSimple": "Simple",
|
"DE.Views.TableOfContentsSettings.txtSimple": "Simple",
|
||||||
"DE.Views.TableOfContentsSettings.txtStandard": "Estándar",
|
"DE.Views.TableOfContentsSettings.txtStandard": "Estándar",
|
||||||
"DE.Views.TableSettings.deleteColumnText": "Borrar columna",
|
"DE.Views.TableSettings.deleteColumnText": "Borrar columna",
|
||||||
|
@ -1850,7 +2043,7 @@
|
||||||
"DE.Views.TableSettings.textBanded": "Con bandas",
|
"DE.Views.TableSettings.textBanded": "Con bandas",
|
||||||
"DE.Views.TableSettings.textBorderColor": "Color",
|
"DE.Views.TableSettings.textBorderColor": "Color",
|
||||||
"DE.Views.TableSettings.textBorders": "Estilo de bordes",
|
"DE.Views.TableSettings.textBorders": "Estilo de bordes",
|
||||||
"DE.Views.TableSettings.textCellSize": "Tamaño de la celda",
|
"DE.Views.TableSettings.textCellSize": "Tamaño de filas y columnas",
|
||||||
"DE.Views.TableSettings.textColumns": "Columnas",
|
"DE.Views.TableSettings.textColumns": "Columnas",
|
||||||
"DE.Views.TableSettings.textDistributeCols": "Distribuir columnas",
|
"DE.Views.TableSettings.textDistributeCols": "Distribuir columnas",
|
||||||
"DE.Views.TableSettings.textDistributeRows": "Distribuir filas",
|
"DE.Views.TableSettings.textDistributeRows": "Distribuir filas",
|
||||||
|
@ -1877,6 +2070,14 @@
|
||||||
"DE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho",
|
"DE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho",
|
||||||
"DE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior",
|
"DE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior",
|
||||||
"DE.Views.TableSettings.txtNoBorders": "Sin bordes",
|
"DE.Views.TableSettings.txtNoBorders": "Sin bordes",
|
||||||
|
"DE.Views.TableSettings.txtTable_Accent": "Acentuación",
|
||||||
|
"DE.Views.TableSettings.txtTable_Colorful": "Colorido",
|
||||||
|
"DE.Views.TableSettings.txtTable_Dark": "Oscuro",
|
||||||
|
"DE.Views.TableSettings.txtTable_GridTable": "Tabla de rejilla",
|
||||||
|
"DE.Views.TableSettings.txtTable_Light": "Claro",
|
||||||
|
"DE.Views.TableSettings.txtTable_ListTable": "Tabla de lista",
|
||||||
|
"DE.Views.TableSettings.txtTable_PlainTable": "Tabla normal",
|
||||||
|
"DE.Views.TableSettings.txtTable_TableGrid": "Cuadrícula de tabla",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlign": "Alineación",
|
"DE.Views.TableSettingsAdvanced.textAlign": "Alineación",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Alineación",
|
"DE.Views.TableSettingsAdvanced.textAlignment": "Alineación",
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espacio entre celdas",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espacio entre celdas",
|
||||||
|
@ -1970,6 +2171,7 @@
|
||||||
"DE.Views.TextArtSettings.textTemplate": "Plantilla",
|
"DE.Views.TextArtSettings.textTemplate": "Plantilla",
|
||||||
"DE.Views.TextArtSettings.textTransform": "Transformar",
|
"DE.Views.TextArtSettings.textTransform": "Transformar",
|
||||||
"DE.Views.TextArtSettings.txtNoBorders": "Sin línea",
|
"DE.Views.TextArtSettings.txtNoBorders": "Sin línea",
|
||||||
|
"DE.Views.Toolbar.capBtnAddComment": "Añadir comentario",
|
||||||
"DE.Views.Toolbar.capBtnBlankPage": "Página en blanco",
|
"DE.Views.Toolbar.capBtnBlankPage": "Página en blanco",
|
||||||
"DE.Views.Toolbar.capBtnColumns": "Columnas",
|
"DE.Views.Toolbar.capBtnColumns": "Columnas",
|
||||||
"DE.Views.Toolbar.capBtnComment": "Comentario",
|
"DE.Views.Toolbar.capBtnComment": "Comentario",
|
||||||
|
@ -1981,6 +2183,7 @@
|
||||||
"DE.Views.Toolbar.capBtnInsImage": "Imagen",
|
"DE.Views.Toolbar.capBtnInsImage": "Imagen",
|
||||||
"DE.Views.Toolbar.capBtnInsPagebreak": "Cambios de línea",
|
"DE.Views.Toolbar.capBtnInsPagebreak": "Cambios de línea",
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "Forma",
|
"DE.Views.Toolbar.capBtnInsShape": "Forma",
|
||||||
|
"DE.Views.Toolbar.capBtnInsSymbol": "Símbolo",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "Tabla",
|
"DE.Views.Toolbar.capBtnInsTable": "Tabla",
|
||||||
"DE.Views.Toolbar.capBtnInsTextart": "Texto Arte",
|
"DE.Views.Toolbar.capBtnInsTextart": "Texto Arte",
|
||||||
"DE.Views.Toolbar.capBtnInsTextbox": "Cuadro de Texto",
|
"DE.Views.Toolbar.capBtnInsTextbox": "Cuadro de Texto",
|
||||||
|
@ -1994,10 +2197,12 @@
|
||||||
"DE.Views.Toolbar.capImgGroup": "Agrupar",
|
"DE.Views.Toolbar.capImgGroup": "Agrupar",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "Ajustando",
|
"DE.Views.Toolbar.capImgWrapping": "Ajustando",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "Insertar tabla personalizada",
|
"DE.Views.Toolbar.mniCustomTable": "Insertar tabla personalizada",
|
||||||
|
"DE.Views.Toolbar.mniDrawTable": "Dibuja la tabla",
|
||||||
"DE.Views.Toolbar.mniEditControls": "Ajustes de control",
|
"DE.Views.Toolbar.mniEditControls": "Ajustes de control",
|
||||||
"DE.Views.Toolbar.mniEditDropCap": "Ajustes de letra capital",
|
"DE.Views.Toolbar.mniEditDropCap": "Ajustes de letra capital",
|
||||||
"DE.Views.Toolbar.mniEditFooter": "Editar pie de página",
|
"DE.Views.Toolbar.mniEditFooter": "Editar pie de página",
|
||||||
"DE.Views.Toolbar.mniEditHeader": "Editar encabezado",
|
"DE.Views.Toolbar.mniEditHeader": "Editar encabezado",
|
||||||
|
"DE.Views.Toolbar.mniEraseTable": "Eliminar la tabla",
|
||||||
"DE.Views.Toolbar.mniHiddenBorders": "Bordes de tabla escogidos",
|
"DE.Views.Toolbar.mniHiddenBorders": "Bordes de tabla escogidos",
|
||||||
"DE.Views.Toolbar.mniHiddenChars": "Caracteres no imprimibles",
|
"DE.Views.Toolbar.mniHiddenChars": "Caracteres no imprimibles",
|
||||||
"DE.Views.Toolbar.mniHighlightControls": "Ajustes de resaltado",
|
"DE.Views.Toolbar.mniHighlightControls": "Ajustes de resaltado",
|
||||||
|
@ -2008,13 +2213,17 @@
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automático",
|
"DE.Views.Toolbar.textAutoColor": "Automático",
|
||||||
"DE.Views.Toolbar.textBold": "Negrita",
|
"DE.Views.Toolbar.textBold": "Negrita",
|
||||||
"DE.Views.Toolbar.textBottom": "Inferior: ",
|
"DE.Views.Toolbar.textBottom": "Inferior: ",
|
||||||
|
"DE.Views.Toolbar.textCheckboxControl": "Casilla a marquar",
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Columnas personalizadas",
|
"DE.Views.Toolbar.textColumnsCustom": "Columnas personalizadas",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Izquierdo",
|
"DE.Views.Toolbar.textColumnsLeft": "Izquierdo",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Uno",
|
"DE.Views.Toolbar.textColumnsOne": "Uno",
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Derecho",
|
"DE.Views.Toolbar.textColumnsRight": "Derecho",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Tres",
|
"DE.Views.Toolbar.textColumnsThree": "Tres",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Dos",
|
"DE.Views.Toolbar.textColumnsTwo": "Dos",
|
||||||
|
"DE.Views.Toolbar.textComboboxControl": "Cuadro de lista desplegable",
|
||||||
"DE.Views.Toolbar.textContPage": "Página continua",
|
"DE.Views.Toolbar.textContPage": "Página continua",
|
||||||
|
"DE.Views.Toolbar.textDateControl": "Fecha",
|
||||||
|
"DE.Views.Toolbar.textDropdownControl": "Lista desplegable",
|
||||||
"DE.Views.Toolbar.textEditWatermark": "Marca de agua personalizada",
|
"DE.Views.Toolbar.textEditWatermark": "Marca de agua personalizada",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Página par",
|
"DE.Views.Toolbar.textEvenPage": "Página par",
|
||||||
"DE.Views.Toolbar.textInMargin": "En margen",
|
"DE.Views.Toolbar.textInMargin": "En margen",
|
||||||
|
@ -2027,6 +2236,7 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Cursiva",
|
"DE.Views.Toolbar.textItalic": "Cursiva",
|
||||||
"DE.Views.Toolbar.textLandscape": "Horizontal",
|
"DE.Views.Toolbar.textLandscape": "Horizontal",
|
||||||
"DE.Views.Toolbar.textLeft": "Izquierdo: ",
|
"DE.Views.Toolbar.textLeft": "Izquierdo: ",
|
||||||
|
"DE.Views.Toolbar.textListSettings": "Opciones de lista",
|
||||||
"DE.Views.Toolbar.textMarginsLast": "último personalizado",
|
"DE.Views.Toolbar.textMarginsLast": "último personalizado",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderar",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderar",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Estrecho",
|
"DE.Views.Toolbar.textMarginsNarrow": "Estrecho",
|
||||||
|
@ -2040,11 +2250,12 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Página impar",
|
"DE.Views.Toolbar.textOddPage": "Página impar",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Márgenes personalizados",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Márgenes personalizados",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Tamaño de página personalizado",
|
"DE.Views.Toolbar.textPageSizeCustom": "Tamaño de página personalizado",
|
||||||
"DE.Views.Toolbar.textPlainControl": "Introducir contenido de texto simple",
|
"DE.Views.Toolbar.textPictureControl": "Imagen",
|
||||||
|
"DE.Views.Toolbar.textPlainControl": "Texto sin formato",
|
||||||
"DE.Views.Toolbar.textPortrait": "Vertical",
|
"DE.Views.Toolbar.textPortrait": "Vertical",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Elimine el control de contenido",
|
"DE.Views.Toolbar.textRemoveControl": "Elimine el control de contenido",
|
||||||
"DE.Views.Toolbar.textRemWatermark": "Quitar marca de agua",
|
"DE.Views.Toolbar.textRemWatermark": "Quitar marca de agua",
|
||||||
"DE.Views.Toolbar.textRichControl": "Introducir contenido de texto rico",
|
"DE.Views.Toolbar.textRichControl": "Texto enriquecido",
|
||||||
"DE.Views.Toolbar.textRight": "Derecho: ",
|
"DE.Views.Toolbar.textRight": "Derecho: ",
|
||||||
"DE.Views.Toolbar.textStrikeout": "Tachado",
|
"DE.Views.Toolbar.textStrikeout": "Tachado",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Eliminar estilo",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Eliminar estilo",
|
||||||
|
@ -2098,6 +2309,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertImage": "Insertar imagen",
|
"DE.Views.Toolbar.tipInsertImage": "Insertar imagen",
|
||||||
"DE.Views.Toolbar.tipInsertNum": "Insertar número de página",
|
"DE.Views.Toolbar.tipInsertNum": "Insertar número de página",
|
||||||
"DE.Views.Toolbar.tipInsertShape": "Insertar autoforma",
|
"DE.Views.Toolbar.tipInsertShape": "Insertar autoforma",
|
||||||
|
"DE.Views.Toolbar.tipInsertSymbol": "Insertar Symboló",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "Insertar tabla",
|
"DE.Views.Toolbar.tipInsertTable": "Insertar tabla",
|
||||||
"DE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
|
"DE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "Insertar Texto Arte",
|
"DE.Views.Toolbar.tipInsertTextArt": "Insertar Texto Arte",
|
||||||
|
|
1738
apps/documenteditor/main/locale/fi.json
Normal file
|
@ -1079,7 +1079,7 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Trier par",
|
"DE.Views.BookmarksDialog.textSort": "Trier par",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Signets",
|
"DE.Views.BookmarksDialog.textTitle": "Signets",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Nom du signet ne peut pas contenir que des lettres, des chiffres et des barres de soulignement et doit commencer avec une lettre",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Nom du signet ne peut pas contenir que des lettres, des chiffres et des barres de soulignement et doit commencer avec une lettre",
|
||||||
"DE.Views.CaptionDialog.textAdd": "Ajouter une étiquette",
|
"DE.Views.CaptionDialog.textAdd": "Ajouter",
|
||||||
"DE.Views.CaptionDialog.textAfter": "Après",
|
"DE.Views.CaptionDialog.textAfter": "Après",
|
||||||
"DE.Views.CaptionDialog.textBefore": "Avant",
|
"DE.Views.CaptionDialog.textBefore": "Avant",
|
||||||
"DE.Views.CaptionDialog.textCaption": "Légende",
|
"DE.Views.CaptionDialog.textCaption": "Légende",
|
||||||
|
@ -1087,7 +1087,7 @@
|
||||||
"DE.Views.CaptionDialog.textChapterInc": "Inclure le numéro de chapitre",
|
"DE.Views.CaptionDialog.textChapterInc": "Inclure le numéro de chapitre",
|
||||||
"DE.Views.CaptionDialog.textColon": "Deux-points",
|
"DE.Views.CaptionDialog.textColon": "Deux-points",
|
||||||
"DE.Views.CaptionDialog.textDash": "tiret",
|
"DE.Views.CaptionDialog.textDash": "tiret",
|
||||||
"DE.Views.CaptionDialog.textDelete": "Supprimer une étiquette",
|
"DE.Views.CaptionDialog.textDelete": "Supprimer",
|
||||||
"DE.Views.CaptionDialog.textEquation": "Équation",
|
"DE.Views.CaptionDialog.textEquation": "Équation",
|
||||||
"DE.Views.CaptionDialog.textExamples": "Exemples: Table 2-A, Image 1.IV",
|
"DE.Views.CaptionDialog.textExamples": "Exemples: Table 2-A, Image 1.IV",
|
||||||
"DE.Views.CaptionDialog.textExclude": "Exclure le texte de la légende",
|
"DE.Views.CaptionDialog.textExclude": "Exclure le texte de la légende",
|
||||||
|
@ -1519,6 +1519,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Chaque minute",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Chaque minute",
|
||||||
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Rendre les fichiers compatibles avec les anciennes versions de MS Word lorsqu'ils sont enregistrés au format DOCX",
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Rendre les fichiers compatibles avec les anciennes versions de MS Word lorsqu'ils sont enregistrés au format DOCX",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "Surligner toutes les modifications",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "Surligner toutes les modifications",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Mise en cache par défaut",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimètre",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimètre",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajuster à la page",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajuster à la page",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajuster à la largeur",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajuster à la largeur",
|
||||||
|
@ -2018,6 +2019,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.txtClassic": "Classique",
|
"DE.Views.TableOfContentsSettings.txtClassic": "Classique",
|
||||||
"DE.Views.TableOfContentsSettings.txtCurrent": "Actuel",
|
"DE.Views.TableOfContentsSettings.txtCurrent": "Actuel",
|
||||||
"DE.Views.TableOfContentsSettings.txtModern": "Moderne",
|
"DE.Views.TableOfContentsSettings.txtModern": "Moderne",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtOnline": "En ligne",
|
||||||
"DE.Views.TableOfContentsSettings.txtSimple": "Simple",
|
"DE.Views.TableOfContentsSettings.txtSimple": "Simple",
|
||||||
"DE.Views.TableOfContentsSettings.txtStandard": "Standard",
|
"DE.Views.TableOfContentsSettings.txtStandard": "Standard",
|
||||||
"DE.Views.TableSettings.deleteColumnText": "Supprimer la colonne",
|
"DE.Views.TableSettings.deleteColumnText": "Supprimer la colonne",
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.warningText": "Az objektum le van tiltva, mert azt egy másik felhasználó szerkeszti.",
|
"Common.Controllers.ExternalMergeEditor.warningText": "Az objektum le van tiltva, mert azt egy másik felhasználó szerkeszti.",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "Figyelmeztetés",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "Figyelmeztetés",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "Figyelmeztetés",
|
"Common.Controllers.History.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "A dokumentumok összehasonlítása érdekében az összes nyomon követett változást elfogadottnak kell tekinteni. Akarod folytatni?",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "legalább",
|
"Common.Controllers.ReviewChanges.textAtLeast": "legalább",
|
||||||
"Common.Controllers.ReviewChanges.textAuto": "Auto",
|
"Common.Controllers.ReviewChanges.textAuto": "Auto",
|
||||||
"Common.Controllers.ReviewChanges.textBaseline": "Alapvonal",
|
"Common.Controllers.ReviewChanges.textBaseline": "Alapvonal",
|
||||||
|
@ -49,6 +50,9 @@
|
||||||
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Bekezdés törölve</b>",
|
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Bekezdés törölve</b>",
|
||||||
"Common.Controllers.ReviewChanges.textParaFormatted": "Formázott bekezdés",
|
"Common.Controllers.ReviewChanges.textParaFormatted": "Formázott bekezdés",
|
||||||
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Bekezdés beillesztve</b>",
|
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Bekezdés beillesztve</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Lemozgatva:</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Felmozgatva:</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textParaMoveTo": "<b>Mozgatva:</b>",
|
||||||
"Common.Controllers.ReviewChanges.textPosition": "Pozíció",
|
"Common.Controllers.ReviewChanges.textPosition": "Pozíció",
|
||||||
"Common.Controllers.ReviewChanges.textRight": "Jobbra rendez",
|
"Common.Controllers.ReviewChanges.textRight": "Jobbra rendez",
|
||||||
"Common.Controllers.ReviewChanges.textShape": "Alakzat",
|
"Common.Controllers.ReviewChanges.textShape": "Alakzat",
|
||||||
|
@ -60,17 +64,55 @@
|
||||||
"Common.Controllers.ReviewChanges.textStrikeout": "Áthúzás",
|
"Common.Controllers.ReviewChanges.textStrikeout": "Áthúzás",
|
||||||
"Common.Controllers.ReviewChanges.textSubScript": "Alsó index",
|
"Common.Controllers.ReviewChanges.textSubScript": "Alsó index",
|
||||||
"Common.Controllers.ReviewChanges.textSuperScript": "Felső index",
|
"Common.Controllers.ReviewChanges.textSuperScript": "Felső index",
|
||||||
|
"Common.Controllers.ReviewChanges.textTableChanged": "<b>Táblázat beállítások megváltoztatva</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textTableRowsAdd": "<b>Táblázat sorok hozzáadva</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Táblázat sorok törölve</b>",
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Lapok módosítása",
|
"Common.Controllers.ReviewChanges.textTabs": "Lapok módosítása",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Aláhúzott",
|
"Common.Controllers.ReviewChanges.textUnderline": "Aláhúzott",
|
||||||
|
"Common.Controllers.ReviewChanges.textUrl": "Dokumentum hivatkozásának beillesztése",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Özvegy sor",
|
"Common.Controllers.ReviewChanges.textWidow": "Özvegy sor",
|
||||||
"Common.define.chartData.textArea": "Terület",
|
"Common.define.chartData.textArea": "Terület",
|
||||||
"Common.define.chartData.textBar": "Sáv",
|
"Common.define.chartData.textBar": "Sáv",
|
||||||
|
"Common.define.chartData.textCharts": "Diagramok",
|
||||||
"Common.define.chartData.textColumn": "Oszlop",
|
"Common.define.chartData.textColumn": "Oszlop",
|
||||||
"Common.define.chartData.textLine": "Vonal",
|
"Common.define.chartData.textLine": "Vonal",
|
||||||
"Common.define.chartData.textPie": "Kör",
|
"Common.define.chartData.textPie": "Kör",
|
||||||
"Common.define.chartData.textPoint": "Pont",
|
"Common.define.chartData.textPoint": "Pont",
|
||||||
"Common.define.chartData.textStock": "Részvény",
|
"Common.define.chartData.textStock": "Részvény",
|
||||||
"Common.define.chartData.textSurface": "Felület",
|
"Common.define.chartData.textSurface": "Felület",
|
||||||
|
"Common.UI.Calendar.textApril": "Április",
|
||||||
|
"Common.UI.Calendar.textAugust": "Augusztus",
|
||||||
|
"Common.UI.Calendar.textDecember": "December",
|
||||||
|
"Common.UI.Calendar.textFebruary": "Február",
|
||||||
|
"Common.UI.Calendar.textJanuary": "Január ",
|
||||||
|
"Common.UI.Calendar.textJuly": "Július ",
|
||||||
|
"Common.UI.Calendar.textJune": "Június",
|
||||||
|
"Common.UI.Calendar.textMarch": "Március",
|
||||||
|
"Common.UI.Calendar.textMay": "Máj",
|
||||||
|
"Common.UI.Calendar.textMonths": "Hónapok",
|
||||||
|
"Common.UI.Calendar.textNovember": "November",
|
||||||
|
"Common.UI.Calendar.textOctober": "Október",
|
||||||
|
"Common.UI.Calendar.textSeptember": "Szeptember",
|
||||||
|
"Common.UI.Calendar.textShortApril": "Ápr",
|
||||||
|
"Common.UI.Calendar.textShortAugust": "Aug",
|
||||||
|
"Common.UI.Calendar.textShortDecember": "Dec",
|
||||||
|
"Common.UI.Calendar.textShortFebruary": "Feb",
|
||||||
|
"Common.UI.Calendar.textShortFriday": "Fr",
|
||||||
|
"Common.UI.Calendar.textShortJanuary": "Jan",
|
||||||
|
"Common.UI.Calendar.textShortJuly": "Júl",
|
||||||
|
"Common.UI.Calendar.textShortJune": "Jún",
|
||||||
|
"Common.UI.Calendar.textShortMarch": "Márc",
|
||||||
|
"Common.UI.Calendar.textShortMay": "Május",
|
||||||
|
"Common.UI.Calendar.textShortMonday": "Hó",
|
||||||
|
"Common.UI.Calendar.textShortNovember": "Nov",
|
||||||
|
"Common.UI.Calendar.textShortOctober": "Okt",
|
||||||
|
"Common.UI.Calendar.textShortSaturday": "Szo",
|
||||||
|
"Common.UI.Calendar.textShortSeptember": "Szept",
|
||||||
|
"Common.UI.Calendar.textShortSunday": "Vas",
|
||||||
|
"Common.UI.Calendar.textShortThursday": "Csüt",
|
||||||
|
"Common.UI.Calendar.textShortTuesday": "Ke",
|
||||||
|
"Common.UI.Calendar.textShortWednesday": "Sze",
|
||||||
|
"Common.UI.Calendar.textYears": "Évek",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
||||||
|
@ -143,9 +185,9 @@
|
||||||
"Common.Views.ExternalMergeEditor.textClose": "Bezár",
|
"Common.Views.ExternalMergeEditor.textClose": "Bezár",
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Mentés és kilépés",
|
"Common.Views.ExternalMergeEditor.textSave": "Mentés és kilépés",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "E-mail címzettek összevonása",
|
"Common.Views.ExternalMergeEditor.textTitle": "E-mail címzettek összevonása",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "A dokumentumot jelenleg több felhasználó szerkeszti.",
|
"Common.Views.Header.labelCoUsersDescr": "A fájlt szerkesztő felhasználók:",
|
||||||
"Common.Views.Header.textAdvSettings": "Haladó beállítások",
|
"Common.Views.Header.textAdvSettings": "Haladó beállítások",
|
||||||
"Common.Views.Header.textBack": "Vissza a dokumentumokhoz",
|
"Common.Views.Header.textBack": "Fájl helyének megnyitása",
|
||||||
"Common.Views.Header.textCompactView": "Eszköztár elrejtése",
|
"Common.Views.Header.textCompactView": "Eszköztár elrejtése",
|
||||||
"Common.Views.Header.textHideLines": "Vonalzók elrejtése",
|
"Common.Views.Header.textHideLines": "Vonalzók elrejtése",
|
||||||
"Common.Views.Header.textHideStatusBar": "Állapotsor elrejtése",
|
"Common.Views.Header.textHideStatusBar": "Állapotsor elrejtése",
|
||||||
|
@ -161,6 +203,7 @@
|
||||||
"Common.Views.Header.tipRedo": "Újra",
|
"Common.Views.Header.tipRedo": "Újra",
|
||||||
"Common.Views.Header.tipSave": "Ment",
|
"Common.Views.Header.tipSave": "Ment",
|
||||||
"Common.Views.Header.tipUndo": "Vissza",
|
"Common.Views.Header.tipUndo": "Vissza",
|
||||||
|
"Common.Views.Header.tipUndock": "Leválasztás külön ablakba",
|
||||||
"Common.Views.Header.tipViewSettings": "Beállítások mutatása",
|
"Common.Views.Header.tipViewSettings": "Beállítások mutatása",
|
||||||
"Common.Views.Header.tipViewUsers": "A felhasználók megtekintése és a dokumentumokhoz való hozzáférési jogok kezelése",
|
"Common.Views.Header.tipViewUsers": "A felhasználók megtekintése és a dokumentumokhoz való hozzáférési jogok kezelése",
|
||||||
"Common.Views.Header.txtAccessRights": "Hozzáférési jogok módosítása",
|
"Common.Views.Header.txtAccessRights": "Hozzáférési jogok módosítása",
|
||||||
|
@ -216,12 +259,19 @@
|
||||||
"Common.Views.RenameDialog.txtInvalidName": "A fájlnév nem tartalmazhatja a következő karaktereket:",
|
"Common.Views.RenameDialog.txtInvalidName": "A fájlnév nem tartalmazhatja a következő karaktereket:",
|
||||||
"Common.Views.ReviewChanges.hintNext": "A következő változáshoz",
|
"Common.Views.ReviewChanges.hintNext": "A következő változáshoz",
|
||||||
"Common.Views.ReviewChanges.hintPrev": "A korábbi változáshoz",
|
"Common.Views.ReviewChanges.hintPrev": "A korábbi változáshoz",
|
||||||
|
"Common.Views.ReviewChanges.mniFromFile": "Dokumentum fájlból",
|
||||||
|
"Common.Views.ReviewChanges.mniFromStorage": "Dokumentum tárhelyről",
|
||||||
|
"Common.Views.ReviewChanges.mniFromUrl": "Dokumentum hivatkozásból",
|
||||||
|
"Common.Views.ReviewChanges.mniSettings": "Összehasonlítási beállítások",
|
||||||
"Common.Views.ReviewChanges.strFast": "Gyors",
|
"Common.Views.ReviewChanges.strFast": "Gyors",
|
||||||
"Common.Views.ReviewChanges.strFastDesc": "Valós idejű együttes szerkesztés. Minden módosítás automatikusan mentésre kerül.",
|
"Common.Views.ReviewChanges.strFastDesc": "Valós idejű együttes szerkesztés. Minden módosítás automatikusan mentésre kerül.",
|
||||||
"Common.Views.ReviewChanges.strStrict": "Biztonságos",
|
"Common.Views.ReviewChanges.strStrict": "Biztonságos",
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "A „Mentés” gomb segítségével szinkronizálhatja az Ön és mások által végrehajtott módosításokat.",
|
"Common.Views.ReviewChanges.strStrictDesc": "A „Mentés” gomb segítségével szinkronizálhatja az Ön és mások által végrehajtott módosításokat.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Utolsó változás elfogadása",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Utolsó változás elfogadása",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Együttes szerkesztés beállítása",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Együttes szerkesztés beállítása",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Hozzászólások eltávolítása",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Jelenlegi hosszászólások eltávolítása",
|
||||||
|
"Common.Views.ReviewChanges.tipCompare": "A jelenlegi dokumentum összehasonlítása egy másikkal",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Verziótörténet mutatása",
|
"Common.Views.ReviewChanges.tipHistory": "Verziótörténet mutatása",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Az aktuális változás elutasítása",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Az aktuális változás elutasítása",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Módosítások követése",
|
"Common.Views.ReviewChanges.tipReview": "Módosítások követése",
|
||||||
|
@ -236,6 +286,12 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Chat",
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Bezár",
|
"Common.Views.ReviewChanges.txtClose": "Bezár",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Együttes szerkesztési mód",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Együttes szerkesztési mód",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Minden hozzászólás eltávolítása",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Jelenlegi hosszászólások eltávolítása",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Hozzászólásaim eltávolítása",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Jelenlegi hozzászólásaim eltávolítása",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Eltávolítás",
|
||||||
|
"Common.Views.ReviewChanges.txtCompare": "Összehasonlítás",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Nyelv",
|
"Common.Views.ReviewChanges.txtDocLang": "Nyelv",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Minden módosítás elfogadva (Előnézet)",
|
"Common.Views.ReviewChanges.txtFinal": "Minden módosítás elfogadva (Előnézet)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Végső",
|
"Common.Views.ReviewChanges.txtFinalCap": "Végső",
|
||||||
|
@ -268,6 +324,9 @@
|
||||||
"Common.Views.ReviewPopover.textCancel": "Mégsem",
|
"Common.Views.ReviewPopover.textCancel": "Mégsem",
|
||||||
"Common.Views.ReviewPopover.textClose": "Bezár",
|
"Common.Views.ReviewPopover.textClose": "Bezár",
|
||||||
"Common.Views.ReviewPopover.textEdit": "OK",
|
"Common.Views.ReviewPopover.textEdit": "OK",
|
||||||
|
"Common.Views.ReviewPopover.textFollowMove": "Mozgás követése",
|
||||||
|
"Common.Views.ReviewPopover.textMention": "+megemlítés hozzáférést ad a dokumentumhoz, és emailt küld",
|
||||||
|
"Common.Views.ReviewPopover.textMentionNotify": "+megemlítés értesíti a felhasználót emailben",
|
||||||
"Common.Views.ReviewPopover.textOpenAgain": "Ismét megnyit",
|
"Common.Views.ReviewPopover.textOpenAgain": "Ismét megnyit",
|
||||||
"Common.Views.ReviewPopover.textReply": "Ismétel",
|
"Common.Views.ReviewPopover.textReply": "Ismétel",
|
||||||
"Common.Views.ReviewPopover.textResolve": "Resolve",
|
"Common.Views.ReviewPopover.textResolve": "Resolve",
|
||||||
|
@ -298,14 +357,20 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Aláírási sorban az aláírás dátumának mutatása",
|
"Common.Views.SignSettingsDialog.textShowDate": "Aláírási sorban az aláírás dátumának mutatása",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Aláírás beállítása",
|
"Common.Views.SignSettingsDialog.textTitle": "Aláírás beállítása",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "Ez egy szükséges mező",
|
"Common.Views.SignSettingsDialog.txtEmpty": "Ez egy szükséges mező",
|
||||||
|
"Common.Views.SymbolTableDialog.textCode": "Hexadecimális unikód érték",
|
||||||
|
"Common.Views.SymbolTableDialog.textFont": "Betűtípus",
|
||||||
|
"Common.Views.SymbolTableDialog.textRange": "Tartomány",
|
||||||
|
"Common.Views.SymbolTableDialog.textRecent": "Legutóbb használt szimbólumok",
|
||||||
|
"Common.Views.SymbolTableDialog.textTitle": "Szimbólum",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "Az összes el nem mentett módosítás el fog veszni.<br>Kattintson a \"Mégse\" majd a \"Mentés\" gombra a mentéshez. Az \"OK\" gombbal elveti a nem mentett módosításokat.",
|
"DE.Controllers.LeftMenu.leavePageText": "Az összes el nem mentett módosítás el fog veszni.<br>Kattintson a \"Mégse\" majd a \"Mentés\" gombra a mentéshez. Az \"OK\" gombbal elveti a nem mentett módosításokat.",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Névtelen dokumentum",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Névtelen dokumentum",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Figyelmeztetés",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
"DE.Controllers.LeftMenu.requestEditRightsText": "Szerkesztési jogok kérése...",
|
"DE.Controllers.LeftMenu.requestEditRightsText": "Szerkesztési jogok kérése...",
|
||||||
"DE.Controllers.LeftMenu.textLoadHistory": "Verzió napló betöltése...",
|
"DE.Controllers.LeftMenu.textLoadHistory": "Verzióelőzmények betöltése...",
|
||||||
"DE.Controllers.LeftMenu.textNoTextFound": "A keresett adatok nem találhatók. Kérjük, állítson a keresési beállításokon.",
|
"DE.Controllers.LeftMenu.textNoTextFound": "A keresett adatok nem találhatók. Kérjük, állítson a keresési beállításokon.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.",
|
"DE.Controllers.LeftMenu.textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSuccess": "A keresés megtörtént. Helyettesített események: {0}",
|
"DE.Controllers.LeftMenu.textReplaceSuccess": "A keresés megtörtént. Helyettesített események: {0}",
|
||||||
|
"DE.Controllers.LeftMenu.txtCompatible": "A dokumentumot az új formátumba menti. Ez lehetővé teszi az összes szerkesztő funkció használatát, de befolyásolhatja a dokumentum elrendezését.<br>Ha a fájlokat kompatibilissá szeretné tenni a régebbi MS Word verziókkal, akkor használja a speciális beállítások 'Kompatibilitás' opcióját.",
|
||||||
"DE.Controllers.LeftMenu.txtUntitled": "Névtelen",
|
"DE.Controllers.LeftMenu.txtUntitled": "Névtelen",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.<br>Biztos benne, hogy folytatni akarja?",
|
"DE.Controllers.LeftMenu.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.<br>Biztos benne, hogy folytatni akarja?",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Ha ebbe a formátumba ment, a bizonyos formázási elemek elveszhetnek.<br>Biztos benne, hogy folytatni akarja?",
|
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Ha ebbe a formátumba ment, a bizonyos formázási elemek elveszhetnek.<br>Biztos benne, hogy folytatni akarja?",
|
||||||
|
@ -327,13 +392,16 @@
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.",
|
"DE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Hibás adattartomány.",
|
"DE.Controllers.Main.errorDataRange": "Hibás adattartomány.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Hibakód: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Hibakód: %1",
|
||||||
|
"DE.Controllers.Main.errorDirectUrl": "Kérjük, ellenőrizze a dokumentumra mutató hivatkozást.<br>Ennek a hivatkozásnak a letöltéshez közvetlen hivatkozásnak kell lennie.",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.<br>Használja a 'Letöltés mint...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.<br>Használja a 'Letöltés mint...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.",
|
||||||
"DE.Controllers.Main.errorEditingSaveas": "Hiba történt a dokumentummal végzett munka során.<br>Használja a 'Mentés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.",
|
"DE.Controllers.Main.errorEditingSaveas": "Hiba történt a dokumentummal végzett munka során.<br>Használja a 'Mentés másként...' opciót, hogy mentse a fájl biztonsági másolatát a számítógép merevlemezére.",
|
||||||
|
"DE.Controllers.Main.errorEmailClient": "Nem található email kliens.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.",
|
"DE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.<br>Kérjük, forduljon a Document Server rendszergazdájához a részletekért.",
|
||||||
"DE.Controllers.Main.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés mint' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.",
|
"DE.Controllers.Main.errorForceSave": "Hiba történt a fájl mentése közben. Kérjük, használja a 'Letöltés mint' opciót, hogy a fájlt a számítógépére mentse, vagy próbálkozzon később.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró",
|
"DE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró",
|
"DE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "A betöltés sikertelen",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "A dokumentum megnyitása sikertelen. Kérjük, válasszon egy másik fájlt.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.",
|
"DE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.",
|
||||||
"DE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.",
|
"DE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.",
|
||||||
|
@ -344,9 +412,10 @@
|
||||||
"DE.Controllers.Main.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.<br>Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.",
|
"DE.Controllers.Main.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.<br>Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.<br>Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.",
|
"DE.Controllers.Main.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.<br>Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.",
|
"DE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.<br>Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető",
|
"DE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát",
|
"DE.Controllers.Main.errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt.<br>Továbbra is megtekintheti a dokumentumot, de nem tudja letölteni vagy nyomtatni, amíg a kapcsolat helyre nem áll.",
|
"DE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,<br>de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.",
|
||||||
"DE.Controllers.Main.leavePageText": "El nem mentett változtatások vannak a dokumentumban. Kattintson a \"Maradás az oldalon\"-ra majd a \"Mentés\"-re hogy elmentse azokat. Kattintson a \"Az oldal elhagyása\"-ra a változások elvetéséhez.",
|
"DE.Controllers.Main.leavePageText": "El nem mentett változtatások vannak a dokumentumban. Kattintson a \"Maradás az oldalon\"-ra majd a \"Mentés\"-re hogy elmentse azokat. Kattintson a \"Az oldal elhagyása\"-ra a változások elvetéséhez.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Adatok betöltése...",
|
"DE.Controllers.Main.loadFontsTextText": "Adatok betöltése...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Adatok betöltése",
|
"DE.Controllers.Main.loadFontsTitleText": "Adatok betöltése",
|
||||||
|
@ -361,7 +430,7 @@
|
||||||
"DE.Controllers.Main.mailMergeLoadFileText": "Adatforrás betöltése...",
|
"DE.Controllers.Main.mailMergeLoadFileText": "Adatforrás betöltése...",
|
||||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Adatforrás betöltése",
|
"DE.Controllers.Main.mailMergeLoadFileTitle": "Adatforrás betöltése",
|
||||||
"DE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés",
|
"DE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
"DE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitásakor",
|
"DE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitása során",
|
||||||
"DE.Controllers.Main.openTextText": "Dokumentum megnyitása...",
|
"DE.Controllers.Main.openTextText": "Dokumentum megnyitása...",
|
||||||
"DE.Controllers.Main.openTitleText": "Dokumentum megnyitása",
|
"DE.Controllers.Main.openTitleText": "Dokumentum megnyitása",
|
||||||
"DE.Controllers.Main.printTextText": "Dokumentum nyomtatása...",
|
"DE.Controllers.Main.printTextText": "Dokumentum nyomtatása...",
|
||||||
|
@ -369,7 +438,7 @@
|
||||||
"DE.Controllers.Main.reloadButtonText": "Oldal újratöltése",
|
"DE.Controllers.Main.reloadButtonText": "Oldal újratöltése",
|
||||||
"DE.Controllers.Main.requestEditFailedMessageText": "Jelenleg valaki más szerkeszti ezt a dokumentumot. Próbálja újra később.",
|
"DE.Controllers.Main.requestEditFailedMessageText": "Jelenleg valaki más szerkeszti ezt a dokumentumot. Próbálja újra később.",
|
||||||
"DE.Controllers.Main.requestEditFailedTitleText": "Hozzáférés megtagadva",
|
"DE.Controllers.Main.requestEditFailedTitleText": "Hozzáférés megtagadva",
|
||||||
"DE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során",
|
"DE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során.",
|
||||||
"DE.Controllers.Main.savePreparingText": "Felkészülés mentésre",
|
"DE.Controllers.Main.savePreparingText": "Felkészülés mentésre",
|
||||||
"DE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...",
|
"DE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...",
|
||||||
"DE.Controllers.Main.saveTextText": "Dokumentum mentése...",
|
"DE.Controllers.Main.saveTextText": "Dokumentum mentése...",
|
||||||
|
@ -388,7 +457,7 @@
|
||||||
"DE.Controllers.Main.textContactUs": "Értékesítés elérhetősége",
|
"DE.Controllers.Main.textContactUs": "Értékesítés elérhetősége",
|
||||||
"DE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.<br>Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.",
|
"DE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.<br>Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Dokumentum betöltése",
|
"DE.Controllers.Main.textLoadingDocument": "Dokumentum betöltése",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE kapcsolódási limitáció",
|
"DE.Controllers.Main.textNoLicenseTitle": "%1 kapcsoat limit",
|
||||||
"DE.Controllers.Main.textPaidFeature": "Fizetett funkció",
|
"DE.Controllers.Main.textPaidFeature": "Fizetett funkció",
|
||||||
"DE.Controllers.Main.textShape": "Alakzat",
|
"DE.Controllers.Main.textShape": "Alakzat",
|
||||||
"DE.Controllers.Main.textStrict": "Biztonságos mód",
|
"DE.Controllers.Main.textStrict": "Biztonságos mód",
|
||||||
|
@ -404,26 +473,42 @@
|
||||||
"DE.Controllers.Main.txtButtons": "Gombok",
|
"DE.Controllers.Main.txtButtons": "Gombok",
|
||||||
"DE.Controllers.Main.txtCallouts": "Feliratok",
|
"DE.Controllers.Main.txtCallouts": "Feliratok",
|
||||||
"DE.Controllers.Main.txtCharts": "Bonyolult alakzatok",
|
"DE.Controllers.Main.txtCharts": "Bonyolult alakzatok",
|
||||||
|
"DE.Controllers.Main.txtChoose": "Válassz egy elemet.",
|
||||||
"DE.Controllers.Main.txtCurrentDocument": "Aktuális dokumentum",
|
"DE.Controllers.Main.txtCurrentDocument": "Aktuális dokumentum",
|
||||||
"DE.Controllers.Main.txtDiagramTitle": "Diagram címe",
|
"DE.Controllers.Main.txtDiagramTitle": "Diagram címe",
|
||||||
"DE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...",
|
"DE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...",
|
||||||
|
"DE.Controllers.Main.txtEndOfFormula": "Váratlan képlet vég",
|
||||||
"DE.Controllers.Main.txtErrorLoadHistory": "Napló betöltése sikertelen",
|
"DE.Controllers.Main.txtErrorLoadHistory": "Napló betöltése sikertelen",
|
||||||
"DE.Controllers.Main.txtEvenPage": "Páros oldal",
|
"DE.Controllers.Main.txtEvenPage": "Páros oldal",
|
||||||
"DE.Controllers.Main.txtFiguredArrows": "Nyíl formák",
|
"DE.Controllers.Main.txtFiguredArrows": "Nyíl formák",
|
||||||
"DE.Controllers.Main.txtFirstPage": "Első oldal",
|
"DE.Controllers.Main.txtFirstPage": "Első oldal",
|
||||||
"DE.Controllers.Main.txtFooter": "Lábléc",
|
"DE.Controllers.Main.txtFooter": "Lábléc",
|
||||||
|
"DE.Controllers.Main.txtFormulaNotInTable": "A képlet nincs a táblázatban",
|
||||||
"DE.Controllers.Main.txtHeader": "Fejléc",
|
"DE.Controllers.Main.txtHeader": "Fejléc",
|
||||||
"DE.Controllers.Main.txtHyperlink": "Hivatkozás",
|
"DE.Controllers.Main.txtHyperlink": "Hivatkozás",
|
||||||
|
"DE.Controllers.Main.txtIndTooLarge": "Az index túl nagy",
|
||||||
"DE.Controllers.Main.txtLines": "Vonalak",
|
"DE.Controllers.Main.txtLines": "Vonalak",
|
||||||
|
"DE.Controllers.Main.txtMainDocOnly": "Hiba! Csak a fő dokumentum.",
|
||||||
"DE.Controllers.Main.txtMath": "Matematika",
|
"DE.Controllers.Main.txtMath": "Matematika",
|
||||||
|
"DE.Controllers.Main.txtMissArg": "Hiányzó paraméter",
|
||||||
|
"DE.Controllers.Main.txtMissOperator": "Hiányzó operátor",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "Frissítés elérhető",
|
"DE.Controllers.Main.txtNeedSynchronize": "Frissítés elérhető",
|
||||||
"DE.Controllers.Main.txtNoTableOfContents": "Nem található tartalomjegyzék bejegyzés.",
|
"DE.Controllers.Main.txtNoTableOfContents": "Nincsenek címsorok a dokumentumban. Vigyen fel egy fejlécstílust a szövegre, hogy az megjelenjen a tartalomjegyzékben.",
|
||||||
|
"DE.Controllers.Main.txtNoText": "Hiba! Nincs a megadott stílusnak megfelelő szöveg a dokumentumban.",
|
||||||
|
"DE.Controllers.Main.txtNotInTable": "nincs benne a táblázatban",
|
||||||
|
"DE.Controllers.Main.txtNotValidBookmark": "Hiba! Nem valós könyvjező referencia.",
|
||||||
"DE.Controllers.Main.txtOddPage": "Páratlan oldal",
|
"DE.Controllers.Main.txtOddPage": "Páratlan oldal",
|
||||||
"DE.Controllers.Main.txtOnPage": "az oldalon",
|
"DE.Controllers.Main.txtOnPage": "az oldalon",
|
||||||
"DE.Controllers.Main.txtRectangles": "Négyszögek",
|
"DE.Controllers.Main.txtRectangles": "Négyszögek",
|
||||||
"DE.Controllers.Main.txtSameAsPrev": "Az előzővel azonos",
|
"DE.Controllers.Main.txtSameAsPrev": "Az előzővel azonos",
|
||||||
"DE.Controllers.Main.txtSection": "-Szakasz",
|
"DE.Controllers.Main.txtSection": "-Szakasz",
|
||||||
"DE.Controllers.Main.txtSeries": "Sorozatok",
|
"DE.Controllers.Main.txtSeries": "Sorozatok",
|
||||||
|
"DE.Controllers.Main.txtShape_accentBorderCallout1": "1. szövegbuborék (kerettel és vonallal)",
|
||||||
|
"DE.Controllers.Main.txtShape_accentBorderCallout2": "2. szövegbuborék (kerettel és vonallal)",
|
||||||
|
"DE.Controllers.Main.txtShape_accentBorderCallout3": "3. szövegbuborék (kerettel és vonallal)",
|
||||||
|
"DE.Controllers.Main.txtShape_accentCallout1": "1. szövegbuborék (vonallal)",
|
||||||
|
"DE.Controllers.Main.txtShape_accentCallout2": "2. szövegbuborék (vonallal)",
|
||||||
|
"DE.Controllers.Main.txtShape_accentCallout3": "3. szövegbuborék (vonallal)",
|
||||||
"DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Vissza vagy előző gomb",
|
"DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Vissza vagy előző gomb",
|
||||||
"DE.Controllers.Main.txtShape_actionButtonBeginning": "Kezdő gomb",
|
"DE.Controllers.Main.txtShape_actionButtonBeginning": "Kezdő gomb",
|
||||||
"DE.Controllers.Main.txtShape_actionButtonBlank": "Inaktív gomb",
|
"DE.Controllers.Main.txtShape_actionButtonBlank": "Inaktív gomb",
|
||||||
|
@ -431,6 +516,11 @@
|
||||||
"DE.Controllers.Main.txtShape_actionButtonEnd": "Vége gomb",
|
"DE.Controllers.Main.txtShape_actionButtonEnd": "Vége gomb",
|
||||||
"DE.Controllers.Main.txtShape_actionButtonForwardNext": "Előre, vagy következő gomb",
|
"DE.Controllers.Main.txtShape_actionButtonForwardNext": "Előre, vagy következő gomb",
|
||||||
"DE.Controllers.Main.txtShape_actionButtonHelp": "Súgó gomb",
|
"DE.Controllers.Main.txtShape_actionButtonHelp": "Súgó gomb",
|
||||||
|
"DE.Controllers.Main.txtShape_actionButtonHome": "Kezdőlap gomb",
|
||||||
|
"DE.Controllers.Main.txtShape_actionButtonInformation": "Információ gomb",
|
||||||
|
"DE.Controllers.Main.txtShape_actionButtonMovie": "Filmklip gomb",
|
||||||
|
"DE.Controllers.Main.txtShape_actionButtonReturn": "Visszatérés gomb",
|
||||||
|
"DE.Controllers.Main.txtShape_actionButtonSound": "Hang gomb",
|
||||||
"DE.Controllers.Main.txtShape_arc": "Körív",
|
"DE.Controllers.Main.txtShape_arc": "Körív",
|
||||||
"DE.Controllers.Main.txtShape_bentArrow": "Hajlított nyíl",
|
"DE.Controllers.Main.txtShape_bentArrow": "Hajlított nyíl",
|
||||||
"DE.Controllers.Main.txtShape_bentConnector5": "Könyökcsatlakozó",
|
"DE.Controllers.Main.txtShape_bentConnector5": "Könyökcsatlakozó",
|
||||||
|
@ -439,7 +529,13 @@
|
||||||
"DE.Controllers.Main.txtShape_bentUpArrow": "Felhajlított nyíl",
|
"DE.Controllers.Main.txtShape_bentUpArrow": "Felhajlított nyíl",
|
||||||
"DE.Controllers.Main.txtShape_bevel": "Tompaszög",
|
"DE.Controllers.Main.txtShape_bevel": "Tompaszög",
|
||||||
"DE.Controllers.Main.txtShape_blockArc": "Körív blokk",
|
"DE.Controllers.Main.txtShape_blockArc": "Körív blokk",
|
||||||
|
"DE.Controllers.Main.txtShape_borderCallout1": "1. vonalfelirat",
|
||||||
|
"DE.Controllers.Main.txtShape_borderCallout2": "2. szövegbuborék",
|
||||||
|
"DE.Controllers.Main.txtShape_borderCallout3": "3. szövegbuborék",
|
||||||
"DE.Controllers.Main.txtShape_bracePair": "Dupla zárójel",
|
"DE.Controllers.Main.txtShape_bracePair": "Dupla zárójel",
|
||||||
|
"DE.Controllers.Main.txtShape_callout1": "1. szövegbuborék (keret nélkül)",
|
||||||
|
"DE.Controllers.Main.txtShape_callout2": "2. szövegbuborék (keret nélkül)",
|
||||||
|
"DE.Controllers.Main.txtShape_callout3": "3. szövegbuborék (keret nélkül)",
|
||||||
"DE.Controllers.Main.txtShape_can": "Henger",
|
"DE.Controllers.Main.txtShape_can": "Henger",
|
||||||
"DE.Controllers.Main.txtShape_chevron": "Szarufa",
|
"DE.Controllers.Main.txtShape_chevron": "Szarufa",
|
||||||
"DE.Controllers.Main.txtShape_chord": "Akkord",
|
"DE.Controllers.Main.txtShape_chord": "Akkord",
|
||||||
|
@ -500,28 +596,58 @@
|
||||||
"DE.Controllers.Main.txtShape_heart": "Szív",
|
"DE.Controllers.Main.txtShape_heart": "Szív",
|
||||||
"DE.Controllers.Main.txtShape_heptagon": "Hétszög",
|
"DE.Controllers.Main.txtShape_heptagon": "Hétszög",
|
||||||
"DE.Controllers.Main.txtShape_hexagon": "Hatszög",
|
"DE.Controllers.Main.txtShape_hexagon": "Hatszög",
|
||||||
|
"DE.Controllers.Main.txtShape_homePlate": "Ötszög",
|
||||||
"DE.Controllers.Main.txtShape_horizontalScroll": "Vízszintes görgetés",
|
"DE.Controllers.Main.txtShape_horizontalScroll": "Vízszintes görgetés",
|
||||||
"DE.Controllers.Main.txtShape_irregularSeal1": "Kitörés 1",
|
"DE.Controllers.Main.txtShape_irregularSeal1": "Kitörés 1",
|
||||||
"DE.Controllers.Main.txtShape_irregularSeal2": "Kitörés 2",
|
"DE.Controllers.Main.txtShape_irregularSeal2": "Kitörés 2",
|
||||||
"DE.Controllers.Main.txtShape_leftArrow": "Balra nyíl",
|
"DE.Controllers.Main.txtShape_leftArrow": "Balra nyíl",
|
||||||
"DE.Controllers.Main.txtShape_leftArrowCallout": "Jelmagyarázat balra",
|
"DE.Controllers.Main.txtShape_leftArrowCallout": "Jelmagyarázat balra",
|
||||||
|
"DE.Controllers.Main.txtShape_leftBrace": "Bal zárójel",
|
||||||
|
"DE.Controllers.Main.txtShape_leftBracket": "Bal zárójel",
|
||||||
"DE.Controllers.Main.txtShape_leftRightArrow": "Jobbra-balra nyíl",
|
"DE.Controllers.Main.txtShape_leftRightArrow": "Jobbra-balra nyíl",
|
||||||
"DE.Controllers.Main.txtShape_leftRightArrowCallout": "Jelmagyarázat jobbra-balra",
|
"DE.Controllers.Main.txtShape_leftRightArrowCallout": "Jelmagyarázat jobbra-balra",
|
||||||
"DE.Controllers.Main.txtShape_leftRightUpArrow": "Jobbra-balra-felfele nyíl",
|
"DE.Controllers.Main.txtShape_leftRightUpArrow": "Jobbra-balra-felfele nyíl",
|
||||||
"DE.Controllers.Main.txtShape_leftUpArrow": "Balra felfele nyíl",
|
"DE.Controllers.Main.txtShape_leftUpArrow": "Balra felfele nyíl",
|
||||||
|
"DE.Controllers.Main.txtShape_lightningBolt": "Villámlás",
|
||||||
"DE.Controllers.Main.txtShape_line": "Vonal",
|
"DE.Controllers.Main.txtShape_line": "Vonal",
|
||||||
"DE.Controllers.Main.txtShape_lineWithArrow": "Nyíl",
|
"DE.Controllers.Main.txtShape_lineWithArrow": "Nyíl",
|
||||||
"DE.Controllers.Main.txtShape_lineWithTwoArrows": "Dupla nyíl",
|
"DE.Controllers.Main.txtShape_lineWithTwoArrows": "Dupla nyíl",
|
||||||
"DE.Controllers.Main.txtShape_mathDivide": "Osztás",
|
"DE.Controllers.Main.txtShape_mathDivide": "Osztás",
|
||||||
"DE.Controllers.Main.txtShape_mathEqual": "Egyenlő",
|
"DE.Controllers.Main.txtShape_mathEqual": "Egyenlő",
|
||||||
"DE.Controllers.Main.txtShape_mathMinus": "Mínusz",
|
"DE.Controllers.Main.txtShape_mathMinus": "Mínusz",
|
||||||
|
"DE.Controllers.Main.txtShape_mathMultiply": "Többszörözés",
|
||||||
|
"DE.Controllers.Main.txtShape_mathNotEqual": "Nem egyenlő",
|
||||||
"DE.Controllers.Main.txtShape_mathPlus": "Plusz",
|
"DE.Controllers.Main.txtShape_mathPlus": "Plusz",
|
||||||
|
"DE.Controllers.Main.txtShape_moon": "Hold",
|
||||||
"DE.Controllers.Main.txtShape_noSmoking": "\"Nem\" szimbólum",
|
"DE.Controllers.Main.txtShape_noSmoking": "\"Nem\" szimbólum",
|
||||||
|
"DE.Controllers.Main.txtShape_notchedRightArrow": "Notched Right Arrow",
|
||||||
|
"DE.Controllers.Main.txtShape_octagon": "Nyolcszög",
|
||||||
|
"DE.Controllers.Main.txtShape_parallelogram": "Paralelogram",
|
||||||
|
"DE.Controllers.Main.txtShape_pentagon": "Ötszög",
|
||||||
|
"DE.Controllers.Main.txtShape_pie": "Kör",
|
||||||
"DE.Controllers.Main.txtShape_plaque": "Aláír",
|
"DE.Controllers.Main.txtShape_plaque": "Aláír",
|
||||||
"DE.Controllers.Main.txtShape_plus": "Plusz",
|
"DE.Controllers.Main.txtShape_plus": "Plusz",
|
||||||
|
"DE.Controllers.Main.txtShape_polyline1": "Firkálás",
|
||||||
"DE.Controllers.Main.txtShape_polyline2": "Szabad forma",
|
"DE.Controllers.Main.txtShape_polyline2": "Szabad forma",
|
||||||
|
"DE.Controllers.Main.txtShape_quadArrow": "Négy nyíl",
|
||||||
|
"DE.Controllers.Main.txtShape_quadArrowCallout": "Négy nyilas szövegbuborék",
|
||||||
|
"DE.Controllers.Main.txtShape_rect": "Négyzet",
|
||||||
"DE.Controllers.Main.txtShape_ribbon": "Dupla szalag",
|
"DE.Controllers.Main.txtShape_ribbon": "Dupla szalag",
|
||||||
|
"DE.Controllers.Main.txtShape_ribbon2": "Felső szalag",
|
||||||
"DE.Controllers.Main.txtShape_rightArrow": "Jobbra nyíl",
|
"DE.Controllers.Main.txtShape_rightArrow": "Jobbra nyíl",
|
||||||
|
"DE.Controllers.Main.txtShape_rightArrowCallout": "Jobb nyíl szövegbuborék",
|
||||||
|
"DE.Controllers.Main.txtShape_rightBrace": "Jobb zárójel",
|
||||||
|
"DE.Controllers.Main.txtShape_rightBracket": "Jobb zárójel",
|
||||||
|
"DE.Controllers.Main.txtShape_round1Rect": "Egy sarokban lekerekített téglalap",
|
||||||
|
"DE.Controllers.Main.txtShape_round2DiagRect": "Átlósan lekerekített sarkú téglalap",
|
||||||
|
"DE.Controllers.Main.txtShape_round2SameRect": "Egy oldalon lekerekített sarkú téglalap",
|
||||||
|
"DE.Controllers.Main.txtShape_roundRect": "Lekerekített sarkú téglalap",
|
||||||
|
"DE.Controllers.Main.txtShape_rtTriangle": "Jobb háromszög",
|
||||||
|
"DE.Controllers.Main.txtShape_smileyFace": "Mosolyka",
|
||||||
|
"DE.Controllers.Main.txtShape_snip1Rect": "Egy sarokban lemetszett téglalap",
|
||||||
|
"DE.Controllers.Main.txtShape_snip2DiagRect": "Átlósan lemetszett sarkú téglalap",
|
||||||
|
"DE.Controllers.Main.txtShape_snip2SameRect": "Egy oldalon lemetszett sarkú téglalap",
|
||||||
|
"DE.Controllers.Main.txtShape_snipRoundRect": "Lemetszett és egy oldalon lekerekített téglalap",
|
||||||
"DE.Controllers.Main.txtShape_spline": "Görbe",
|
"DE.Controllers.Main.txtShape_spline": "Görbe",
|
||||||
"DE.Controllers.Main.txtShape_star10": "10 pontos csillag",
|
"DE.Controllers.Main.txtShape_star10": "10 pontos csillag",
|
||||||
"DE.Controllers.Main.txtShape_star12": "12 pontos csillag",
|
"DE.Controllers.Main.txtShape_star12": "12 pontos csillag",
|
||||||
|
@ -533,13 +659,23 @@
|
||||||
"DE.Controllers.Main.txtShape_star6": "6 pontos csillag",
|
"DE.Controllers.Main.txtShape_star6": "6 pontos csillag",
|
||||||
"DE.Controllers.Main.txtShape_star7": "7 pontos csillag",
|
"DE.Controllers.Main.txtShape_star7": "7 pontos csillag",
|
||||||
"DE.Controllers.Main.txtShape_star8": "8 pontos csillag",
|
"DE.Controllers.Main.txtShape_star8": "8 pontos csillag",
|
||||||
|
"DE.Controllers.Main.txtShape_stripedRightArrow": "Csíkos jobb nyíl",
|
||||||
|
"DE.Controllers.Main.txtShape_sun": "Vas",
|
||||||
|
"DE.Controllers.Main.txtShape_teardrop": "Könnycsepp",
|
||||||
"DE.Controllers.Main.txtShape_textRect": "Szövegdoboz",
|
"DE.Controllers.Main.txtShape_textRect": "Szövegdoboz",
|
||||||
|
"DE.Controllers.Main.txtShape_trapezoid": "Trapéz",
|
||||||
|
"DE.Controllers.Main.txtShape_triangle": "Háromszög",
|
||||||
"DE.Controllers.Main.txtShape_upArrow": "Felfele nyíl",
|
"DE.Controllers.Main.txtShape_upArrow": "Felfele nyíl",
|
||||||
"DE.Controllers.Main.txtShape_upArrowCallout": "Jelmagyarázat felfele",
|
"DE.Controllers.Main.txtShape_upArrowCallout": "Jelmagyarázat felfele",
|
||||||
"DE.Controllers.Main.txtShape_upDownArrow": "Fel-le nyíl",
|
"DE.Controllers.Main.txtShape_upDownArrow": "Fel-le nyíl",
|
||||||
"DE.Controllers.Main.txtShape_uturnArrow": "Visszaforduló nyíl",
|
"DE.Controllers.Main.txtShape_uturnArrow": "Visszaforduló nyíl",
|
||||||
|
"DE.Controllers.Main.txtShape_verticalScroll": "Függőleges görgetés",
|
||||||
"DE.Controllers.Main.txtShape_wave": "Hullám",
|
"DE.Controllers.Main.txtShape_wave": "Hullám",
|
||||||
|
"DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Ovális szövegbuborék",
|
||||||
|
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Négyzetes szövegbuborék",
|
||||||
|
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Lekerekített téglalap alakú szövegbuborék",
|
||||||
"DE.Controllers.Main.txtStarsRibbons": "Csillagok és szalagok",
|
"DE.Controllers.Main.txtStarsRibbons": "Csillagok és szalagok",
|
||||||
|
"DE.Controllers.Main.txtStyle_Caption": "Felirat",
|
||||||
"DE.Controllers.Main.txtStyle_footnote_text": "Lábjegyzet szövege",
|
"DE.Controllers.Main.txtStyle_footnote_text": "Lábjegyzet szövege",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_1": "Címsor 1",
|
"DE.Controllers.Main.txtStyle_Heading_1": "Címsor 1",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_2": "Címsor 2",
|
"DE.Controllers.Main.txtStyle_Heading_2": "Címsor 2",
|
||||||
|
@ -557,16 +693,25 @@
|
||||||
"DE.Controllers.Main.txtStyle_Quote": "Idézet",
|
"DE.Controllers.Main.txtStyle_Quote": "Idézet",
|
||||||
"DE.Controllers.Main.txtStyle_Subtitle": "Alcím",
|
"DE.Controllers.Main.txtStyle_Subtitle": "Alcím",
|
||||||
"DE.Controllers.Main.txtStyle_Title": "Cím",
|
"DE.Controllers.Main.txtStyle_Title": "Cím",
|
||||||
|
"DE.Controllers.Main.txtSyntaxError": "Szintakszis hiba",
|
||||||
|
"DE.Controllers.Main.txtTableInd": "Táblázat index nem lehet nulla",
|
||||||
"DE.Controllers.Main.txtTableOfContents": "Tartalomjegyzék",
|
"DE.Controllers.Main.txtTableOfContents": "Tartalomjegyzék",
|
||||||
|
"DE.Controllers.Main.txtTooLarge": "Túl nagy szám a formázáshoz",
|
||||||
|
"DE.Controllers.Main.txtUndefBookmark": "Ismeretlen könyvjelző",
|
||||||
"DE.Controllers.Main.txtXAxis": "X tengely",
|
"DE.Controllers.Main.txtXAxis": "X tengely",
|
||||||
"DE.Controllers.Main.txtYAxis": "Y tengely",
|
"DE.Controllers.Main.txtYAxis": "Y tengely",
|
||||||
|
"DE.Controllers.Main.txtZeroDivide": "Nullával osztás",
|
||||||
"DE.Controllers.Main.unknownErrorText": "Ismeretlen hiba.",
|
"DE.Controllers.Main.unknownErrorText": "Ismeretlen hiba.",
|
||||||
"DE.Controllers.Main.unsupportedBrowserErrorText": "A böngészője nem támogatott.",
|
"DE.Controllers.Main.unsupportedBrowserErrorText": "A böngészője nem támogatott.",
|
||||||
|
"DE.Controllers.Main.uploadDocExtMessage": "Ismeretlen dokumentum formátum.",
|
||||||
|
"DE.Controllers.Main.uploadDocFileCountMessage": "Nincs feltöltött dokumentum.",
|
||||||
|
"DE.Controllers.Main.uploadDocSizeMessage": "A maximális dokumentum méret elérve.",
|
||||||
"DE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.",
|
"DE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.",
|
||||||
"DE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.",
|
"DE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.",
|
||||||
"DE.Controllers.Main.uploadImageSizeMessage": "A maximális képmérethatár túllépve.",
|
"DE.Controllers.Main.uploadImageSizeMessage": "A maximális képmérethatár túllépve.",
|
||||||
"DE.Controllers.Main.uploadImageTextText": "Kép feltöltése...",
|
"DE.Controllers.Main.uploadImageTextText": "Kép feltöltése...",
|
||||||
"DE.Controllers.Main.uploadImageTitleText": "Kép feltöltése",
|
"DE.Controllers.Main.uploadImageTitleText": "Kép feltöltése",
|
||||||
|
"DE.Controllers.Main.waitText": "Kérjük, várjon...",
|
||||||
"DE.Controllers.Main.warnBrowserIE9": "Az alkalmazás alacsony képességekkel rendelkezik az IE9-en. Használjon IE10 vagy újabb verziót",
|
"DE.Controllers.Main.warnBrowserIE9": "Az alkalmazás alacsony képességekkel rendelkezik az IE9-en. Használjon IE10 vagy újabb verziót",
|
||||||
"DE.Controllers.Main.warnBrowserZoom": "A böngészője jelenlegi nagyítása nem teljesen támogatott. Kérem állítsa vissza alapértelmezett értékre a Ctrl+0 megnyomásával.",
|
"DE.Controllers.Main.warnBrowserZoom": "A böngészője jelenlegi nagyítása nem teljesen támogatott. Kérem állítsa vissza alapértelmezett értékre a Ctrl+0 megnyomásával.",
|
||||||
"DE.Controllers.Main.warnLicenseExceeded": "A párhuzamos kapcsolódások száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.<br>Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
|
"DE.Controllers.Main.warnLicenseExceeded": "A párhuzamos kapcsolódások száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.<br>Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
|
||||||
|
@ -589,6 +734,7 @@
|
||||||
"DE.Controllers.Toolbar.textFontSizeErr": "A megadott érték helytelen.<br>Kérjük, adjon meg egy számértéket 1 és 100 között",
|
"DE.Controllers.Toolbar.textFontSizeErr": "A megadott érték helytelen.<br>Kérjük, adjon meg egy számértéket 1 és 100 között",
|
||||||
"DE.Controllers.Toolbar.textFraction": "Törtek",
|
"DE.Controllers.Toolbar.textFraction": "Törtek",
|
||||||
"DE.Controllers.Toolbar.textFunction": "Függévenyek",
|
"DE.Controllers.Toolbar.textFunction": "Függévenyek",
|
||||||
|
"DE.Controllers.Toolbar.textInsert": "Beszúrás",
|
||||||
"DE.Controllers.Toolbar.textIntegral": "Integrálok",
|
"DE.Controllers.Toolbar.textIntegral": "Integrálok",
|
||||||
"DE.Controllers.Toolbar.textLargeOperator": "Nagy operátorok",
|
"DE.Controllers.Toolbar.textLargeOperator": "Nagy operátorok",
|
||||||
"DE.Controllers.Toolbar.textLimitAndLog": "Határérték és logaritmus",
|
"DE.Controllers.Toolbar.textLimitAndLog": "Határérték és logaritmus",
|
||||||
|
@ -918,11 +1064,14 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Dzéta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Dzéta",
|
||||||
"DE.Controllers.Viewport.textFitPage": "Oldalhoz igazít",
|
"DE.Controllers.Viewport.textFitPage": "Oldalhoz igazít",
|
||||||
"DE.Controllers.Viewport.textFitWidth": "Szélességhez igazít",
|
"DE.Controllers.Viewport.textFitWidth": "Szélességhez igazít",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Címke:",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "A címke nem lehet üres.",
|
||||||
"DE.Views.BookmarksDialog.textAdd": "Hozzáad",
|
"DE.Views.BookmarksDialog.textAdd": "Hozzáad",
|
||||||
"DE.Views.BookmarksDialog.textBookmarkName": "Könyvjelző neve",
|
"DE.Views.BookmarksDialog.textBookmarkName": "Könyvjelző neve",
|
||||||
"DE.Views.BookmarksDialog.textClose": "Bezár",
|
"DE.Views.BookmarksDialog.textClose": "Bezár",
|
||||||
"DE.Views.BookmarksDialog.textCopy": "Másol",
|
"DE.Views.BookmarksDialog.textCopy": "Másol",
|
||||||
"DE.Views.BookmarksDialog.textDelete": "Töröl",
|
"DE.Views.BookmarksDialog.textDelete": "Töröl",
|
||||||
|
"DE.Views.BookmarksDialog.textGetLink": "Hivatkozás kérése",
|
||||||
"DE.Views.BookmarksDialog.textGoto": "Ugorj",
|
"DE.Views.BookmarksDialog.textGoto": "Ugorj",
|
||||||
"DE.Views.BookmarksDialog.textHidden": "Rejtett könyvjelzők",
|
"DE.Views.BookmarksDialog.textHidden": "Rejtett könyvjelzők",
|
||||||
"DE.Views.BookmarksDialog.textLocation": "Hely",
|
"DE.Views.BookmarksDialog.textLocation": "Hely",
|
||||||
|
@ -930,11 +1079,44 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Rendezés",
|
"DE.Views.BookmarksDialog.textSort": "Rendezés",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Könyvjelzők",
|
"DE.Views.BookmarksDialog.textTitle": "Könyvjelzők",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "A könyvjelző neve kizárólag betűket, számokat és alulvonást tartalmazhat, és betűvel kezdődhet.",
|
"DE.Views.BookmarksDialog.txtInvalidName": "A könyvjelző neve kizárólag betűket, számokat és alulvonást tartalmazhat, és betűvel kezdődhet.",
|
||||||
|
"DE.Views.CaptionDialog.textAdd": "Címke hozzáadása",
|
||||||
|
"DE.Views.CaptionDialog.textAfter": "Utána",
|
||||||
|
"DE.Views.CaptionDialog.textBefore": "Elötte",
|
||||||
|
"DE.Views.CaptionDialog.textCaption": "Felirat",
|
||||||
|
"DE.Views.CaptionDialog.textChapter": "A fejezet stílussal kezdődik",
|
||||||
|
"DE.Views.CaptionDialog.textChapterInc": "Tartalmazza a fejezet számát",
|
||||||
|
"DE.Views.CaptionDialog.textColon": "Kettőspont",
|
||||||
|
"DE.Views.CaptionDialog.textDash": "Kötőjel",
|
||||||
|
"DE.Views.CaptionDialog.textDelete": "Címke törlése",
|
||||||
|
"DE.Views.CaptionDialog.textEquation": "Egyenlet",
|
||||||
|
"DE.Views.CaptionDialog.textExamples": "Minták: Táblázat 2-A, Kép 1.IV",
|
||||||
|
"DE.Views.CaptionDialog.textExclude": "A címke kihagyása a feliratból",
|
||||||
|
"DE.Views.CaptionDialog.textFigure": "Ábra",
|
||||||
|
"DE.Views.CaptionDialog.textHyphen": "Kötőjel",
|
||||||
|
"DE.Views.CaptionDialog.textInsert": "Beszúrás",
|
||||||
|
"DE.Views.CaptionDialog.textLabel": "Címke",
|
||||||
|
"DE.Views.CaptionDialog.textLongDash": "Hosszú kötőjel",
|
||||||
|
"DE.Views.CaptionDialog.textNumbering": "Számozás",
|
||||||
|
"DE.Views.CaptionDialog.textPeriod": "Időszak",
|
||||||
|
"DE.Views.CaptionDialog.textSeparator": "Elválasztó használata",
|
||||||
|
"DE.Views.CaptionDialog.textTable": "Táblázat",
|
||||||
|
"DE.Views.CaptionDialog.textTitle": "Felirat beszúrása",
|
||||||
|
"DE.Views.CellsAddDialog.textCol": "Oszlopok",
|
||||||
|
"DE.Views.CellsAddDialog.textDown": "A kurzor alatt",
|
||||||
|
"DE.Views.CellsAddDialog.textLeft": "Balra",
|
||||||
|
"DE.Views.CellsAddDialog.textRight": "Jobbra",
|
||||||
|
"DE.Views.CellsAddDialog.textRow": "Sorok",
|
||||||
|
"DE.Views.CellsAddDialog.textTitle": "Több beszúrása",
|
||||||
|
"DE.Views.CellsAddDialog.textUp": "A kurzor felett",
|
||||||
|
"DE.Views.CellsRemoveDialog.textCol": "Teljes oszlop törlése",
|
||||||
|
"DE.Views.CellsRemoveDialog.textLeft": "Cellák balra tolása",
|
||||||
|
"DE.Views.CellsRemoveDialog.textRow": "Teljes sor törlése",
|
||||||
|
"DE.Views.CellsRemoveDialog.textTitle": "Cellák törlése",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése",
|
"DE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése",
|
||||||
"DE.Views.ChartSettings.textChartType": "Diagramtípus módosítása",
|
"DE.Views.ChartSettings.textChartType": "Diagramtípus módosítása",
|
||||||
"DE.Views.ChartSettings.textEditData": "Adat szerkesztése",
|
"DE.Views.ChartSettings.textEditData": "Adat szerkesztése",
|
||||||
"DE.Views.ChartSettings.textHeight": "Magasság",
|
"DE.Views.ChartSettings.textHeight": "Magasság",
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Alapértelmezett méret",
|
"DE.Views.ChartSettings.textOriginalSize": "Valódi méret",
|
||||||
"DE.Views.ChartSettings.textSize": "Méret",
|
"DE.Views.ChartSettings.textSize": "Méret",
|
||||||
"DE.Views.ChartSettings.textStyle": "Stílus",
|
"DE.Views.ChartSettings.textStyle": "Stílus",
|
||||||
"DE.Views.ChartSettings.textUndock": "Eltávolít a panelről",
|
"DE.Views.ChartSettings.textUndock": "Eltávolít a panelről",
|
||||||
|
@ -948,17 +1130,39 @@
|
||||||
"DE.Views.ChartSettings.txtTight": "Szűken",
|
"DE.Views.ChartSettings.txtTight": "Szűken",
|
||||||
"DE.Views.ChartSettings.txtTitle": "Diagram",
|
"DE.Views.ChartSettings.txtTitle": "Diagram",
|
||||||
"DE.Views.ChartSettings.txtTopAndBottom": "Felül - alul",
|
"DE.Views.ChartSettings.txtTopAndBottom": "Felül - alul",
|
||||||
|
"DE.Views.CompareSettingsDialog.textChar": "Karakter szint",
|
||||||
|
"DE.Views.CompareSettingsDialog.textShow": "Mutasd a változásokat",
|
||||||
|
"DE.Views.CompareSettingsDialog.textTitle": "Összehasonlítási beállítások",
|
||||||
|
"DE.Views.CompareSettingsDialog.textWord": "Szó szint",
|
||||||
|
"DE.Views.ControlSettingsDialog.strGeneral": "Általános",
|
||||||
|
"DE.Views.ControlSettingsDialog.textAdd": "Hozzáadás",
|
||||||
"DE.Views.ControlSettingsDialog.textAppearance": "Megjelenítés",
|
"DE.Views.ControlSettingsDialog.textAppearance": "Megjelenítés",
|
||||||
"DE.Views.ControlSettingsDialog.textApplyAll": "Mindenre alkalmaz",
|
"DE.Views.ControlSettingsDialog.textApplyAll": "Mindenre alkalmaz",
|
||||||
"DE.Views.ControlSettingsDialog.textBox": "Kötő keret",
|
"DE.Views.ControlSettingsDialog.textBox": "Kötő keret",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChange": "Szerkesztés",
|
||||||
|
"DE.Views.ControlSettingsDialog.textCheckbox": "Jelölőnégyzet",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChecked": "Bejelölt szimbólum",
|
||||||
"DE.Views.ControlSettingsDialog.textColor": "Szín",
|
"DE.Views.ControlSettingsDialog.textColor": "Szín",
|
||||||
|
"DE.Views.ControlSettingsDialog.textCombobox": "Legördülő lista",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDate": "Dátumformátum",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDelete": "Törlés",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDisplayName": "Megjelenítési név",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDown": "Le",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDropDown": "Legördülő lista",
|
||||||
|
"DE.Views.ControlSettingsDialog.textFormat": "Mutasd a dátumot így",
|
||||||
|
"DE.Views.ControlSettingsDialog.textLang": "Nyelv",
|
||||||
"DE.Views.ControlSettingsDialog.textLock": "Rögzítés",
|
"DE.Views.ControlSettingsDialog.textLock": "Rögzítés",
|
||||||
"DE.Views.ControlSettingsDialog.textName": "Cím",
|
"DE.Views.ControlSettingsDialog.textName": "Cím",
|
||||||
"DE.Views.ControlSettingsDialog.textNewColor": "Új egyedi szín hozzáadása",
|
"DE.Views.ControlSettingsDialog.textNewColor": "Új egyedi szín hozzáadása",
|
||||||
"DE.Views.ControlSettingsDialog.textNone": "nincs",
|
"DE.Views.ControlSettingsDialog.textNone": "nincs",
|
||||||
"DE.Views.ControlSettingsDialog.textShowAs": "Megjelenít mint",
|
"DE.Views.ControlSettingsDialog.textShowAs": "Megjelenít mint",
|
||||||
|
"DE.Views.ControlSettingsDialog.textSystemColor": "Rendszer",
|
||||||
"DE.Views.ControlSettingsDialog.textTag": "Címke",
|
"DE.Views.ControlSettingsDialog.textTag": "Címke",
|
||||||
"DE.Views.ControlSettingsDialog.textTitle": "Tartalomkezelő beállításai",
|
"DE.Views.ControlSettingsDialog.textTitle": "Tartalomkezelő beállításai",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUnchecked": "Bejelöletlen szimbólum",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUp": "Fel",
|
||||||
|
"DE.Views.ControlSettingsDialog.textValue": "Érték",
|
||||||
|
"DE.Views.ControlSettingsDialog.tipChange": "Szimbólum cseréje",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "A tartalomkezelő nem törölhető",
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "A tartalomkezelő nem törölhető",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "A tartalom nem szerkeszthető",
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "A tartalom nem szerkeszthető",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "Hasábok száma",
|
"DE.Views.CustomColumnsDialog.textColumns": "Hasábok száma",
|
||||||
|
@ -1011,7 +1215,7 @@
|
||||||
"DE.Views.DocumentHolder.mergeCellsText": "Cellák összevonása",
|
"DE.Views.DocumentHolder.mergeCellsText": "Cellák összevonása",
|
||||||
"DE.Views.DocumentHolder.moreText": "Több változat...",
|
"DE.Views.DocumentHolder.moreText": "Több változat...",
|
||||||
"DE.Views.DocumentHolder.noSpellVariantsText": "Nincsenek változatok",
|
"DE.Views.DocumentHolder.noSpellVariantsText": "Nincsenek változatok",
|
||||||
"DE.Views.DocumentHolder.originalSizeText": "Alapértelmezett méret",
|
"DE.Views.DocumentHolder.originalSizeText": "Valódi méret",
|
||||||
"DE.Views.DocumentHolder.paragraphText": "Bekezdés",
|
"DE.Views.DocumentHolder.paragraphText": "Bekezdés",
|
||||||
"DE.Views.DocumentHolder.removeHyperlinkText": "Hivatkozás eltávolítása",
|
"DE.Views.DocumentHolder.removeHyperlinkText": "Hivatkozás eltávolítása",
|
||||||
"DE.Views.DocumentHolder.rightText": "Jobb",
|
"DE.Views.DocumentHolder.rightText": "Jobb",
|
||||||
|
@ -1038,6 +1242,7 @@
|
||||||
"DE.Views.DocumentHolder.textArrangeBackward": "Visszafelé küld",
|
"DE.Views.DocumentHolder.textArrangeBackward": "Visszafelé küld",
|
||||||
"DE.Views.DocumentHolder.textArrangeForward": "Előre hoz",
|
"DE.Views.DocumentHolder.textArrangeForward": "Előre hoz",
|
||||||
"DE.Views.DocumentHolder.textArrangeFront": "Előre hoz",
|
"DE.Views.DocumentHolder.textArrangeFront": "Előre hoz",
|
||||||
|
"DE.Views.DocumentHolder.textCells": "Cellák",
|
||||||
"DE.Views.DocumentHolder.textContentControls": "Tartalomkezelő",
|
"DE.Views.DocumentHolder.textContentControls": "Tartalomkezelő",
|
||||||
"DE.Views.DocumentHolder.textContinueNumbering": "Számozás folytatása",
|
"DE.Views.DocumentHolder.textContinueNumbering": "Számozás folytatása",
|
||||||
"DE.Views.DocumentHolder.textCopy": "Másol",
|
"DE.Views.DocumentHolder.textCopy": "Másol",
|
||||||
|
@ -1051,6 +1256,7 @@
|
||||||
"DE.Views.DocumentHolder.textEditWrapBoundary": "Tördelés határ szerkesztése",
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Tördelés határ szerkesztése",
|
||||||
"DE.Views.DocumentHolder.textFlipH": "Vízszintesen tükröz",
|
"DE.Views.DocumentHolder.textFlipH": "Vízszintesen tükröz",
|
||||||
"DE.Views.DocumentHolder.textFlipV": "Függőlegesen tükröz",
|
"DE.Views.DocumentHolder.textFlipV": "Függőlegesen tükröz",
|
||||||
|
"DE.Views.DocumentHolder.textFollow": "Mozgás követése",
|
||||||
"DE.Views.DocumentHolder.textFromFile": "Fájlból",
|
"DE.Views.DocumentHolder.textFromFile": "Fájlból",
|
||||||
"DE.Views.DocumentHolder.textFromUrl": "URL-ből",
|
"DE.Views.DocumentHolder.textFromUrl": "URL-ből",
|
||||||
"DE.Views.DocumentHolder.textJoinList": "Számozás, felsorolás folytatása",
|
"DE.Views.DocumentHolder.textJoinList": "Számozás, felsorolás folytatása",
|
||||||
|
@ -1063,10 +1269,12 @@
|
||||||
"DE.Views.DocumentHolder.textRemove": "Eltávolít",
|
"DE.Views.DocumentHolder.textRemove": "Eltávolít",
|
||||||
"DE.Views.DocumentHolder.textRemoveControl": "Tartalomkezelő eltávolítása",
|
"DE.Views.DocumentHolder.textRemoveControl": "Tartalomkezelő eltávolítása",
|
||||||
"DE.Views.DocumentHolder.textReplace": "Képet cserél",
|
"DE.Views.DocumentHolder.textReplace": "Képet cserél",
|
||||||
|
"DE.Views.DocumentHolder.textRotate": "Forgatás",
|
||||||
"DE.Views.DocumentHolder.textRotate270": "Elforgat balra 90 fokkal",
|
"DE.Views.DocumentHolder.textRotate270": "Elforgat balra 90 fokkal",
|
||||||
"DE.Views.DocumentHolder.textRotate90": "Elforgat jobbra 90 fokkal",
|
"DE.Views.DocumentHolder.textRotate90": "Elforgat jobbra 90 fokkal",
|
||||||
"DE.Views.DocumentHolder.textSeparateList": "Szeparált lista",
|
"DE.Views.DocumentHolder.textSeparateList": "Szeparált lista",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Beállítások",
|
"DE.Views.DocumentHolder.textSettings": "Beállítások",
|
||||||
|
"DE.Views.DocumentHolder.textSeveral": "Több sor/oszlop",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Alulra rendez",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Alulra rendez",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Középre rendez",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Középre rendez",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignLeft": "Balra rendez",
|
"DE.Views.DocumentHolder.textShapeAlignLeft": "Balra rendez",
|
||||||
|
@ -1083,6 +1291,7 @@
|
||||||
"DE.Views.DocumentHolder.textUpdateTOC": "Tartalomjegyzék frissítése",
|
"DE.Views.DocumentHolder.textUpdateTOC": "Tartalomjegyzék frissítése",
|
||||||
"DE.Views.DocumentHolder.textWrap": "Tördelés stílus",
|
"DE.Views.DocumentHolder.textWrap": "Tördelés stílus",
|
||||||
"DE.Views.DocumentHolder.tipIsLocked": "Ezt az elemet jelenleg egy másik felhasználó szerkeszti.",
|
"DE.Views.DocumentHolder.tipIsLocked": "Ezt az elemet jelenleg egy másik felhasználó szerkeszti.",
|
||||||
|
"DE.Views.DocumentHolder.toDictionaryText": "Hozzáadás a szótárhoz",
|
||||||
"DE.Views.DocumentHolder.txtAddBottom": "Alsó szegély hozzáadása",
|
"DE.Views.DocumentHolder.txtAddBottom": "Alsó szegély hozzáadása",
|
||||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Törtjel hozzáadása",
|
"DE.Views.DocumentHolder.txtAddFractionBar": "Törtjel hozzáadása",
|
||||||
"DE.Views.DocumentHolder.txtAddHor": "Vízszintes vonal hozzáadása",
|
"DE.Views.DocumentHolder.txtAddHor": "Vízszintes vonal hozzáadása",
|
||||||
|
@ -1107,6 +1316,7 @@
|
||||||
"DE.Views.DocumentHolder.txtDeleteRadical": "Gyök törlése",
|
"DE.Views.DocumentHolder.txtDeleteRadical": "Gyök törlése",
|
||||||
"DE.Views.DocumentHolder.txtDistribHor": "Vízszintes igazítás",
|
"DE.Views.DocumentHolder.txtDistribHor": "Vízszintes igazítás",
|
||||||
"DE.Views.DocumentHolder.txtDistribVert": "Függőleges igazítás",
|
"DE.Views.DocumentHolder.txtDistribVert": "Függőleges igazítás",
|
||||||
|
"DE.Views.DocumentHolder.txtEmpty": "(Üres)",
|
||||||
"DE.Views.DocumentHolder.txtFractionLinear": "Változtatás lineáris törtté",
|
"DE.Views.DocumentHolder.txtFractionLinear": "Változtatás lineáris törtté",
|
||||||
"DE.Views.DocumentHolder.txtFractionSkewed": "Változtatás ferde törtté",
|
"DE.Views.DocumentHolder.txtFractionSkewed": "Változtatás ferde törtté",
|
||||||
"DE.Views.DocumentHolder.txtFractionStacked": "Változtatás törtté",
|
"DE.Views.DocumentHolder.txtFractionStacked": "Változtatás törtté",
|
||||||
|
@ -1133,6 +1343,7 @@
|
||||||
"DE.Views.DocumentHolder.txtInsertArgAfter": "Adjon meg az argumentumot utána",
|
"DE.Views.DocumentHolder.txtInsertArgAfter": "Adjon meg az argumentumot utána",
|
||||||
"DE.Views.DocumentHolder.txtInsertArgBefore": "Adjon meg az argumentumot előtte",
|
"DE.Views.DocumentHolder.txtInsertArgBefore": "Adjon meg az argumentumot előtte",
|
||||||
"DE.Views.DocumentHolder.txtInsertBreak": "Törés beszúrása",
|
"DE.Views.DocumentHolder.txtInsertBreak": "Törés beszúrása",
|
||||||
|
"DE.Views.DocumentHolder.txtInsertCaption": "Felirat beszúrása",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqAfter": "Egyenlet beszúrása utánna",
|
"DE.Views.DocumentHolder.txtInsertEqAfter": "Egyenlet beszúrása utánna",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqBefore": "Egyenlet beszúrása elötte",
|
"DE.Views.DocumentHolder.txtInsertEqBefore": "Egyenlet beszúrása elötte",
|
||||||
"DE.Views.DocumentHolder.txtKeepTextOnly": "Csak szöveg megtartása",
|
"DE.Views.DocumentHolder.txtKeepTextOnly": "Csak szöveg megtartása",
|
||||||
|
@ -1144,7 +1355,8 @@
|
||||||
"DE.Views.DocumentHolder.txtOverbar": "Sáv a szöveg fölött",
|
"DE.Views.DocumentHolder.txtOverbar": "Sáv a szöveg fölött",
|
||||||
"DE.Views.DocumentHolder.txtOverwriteCells": "Cellák felülírása",
|
"DE.Views.DocumentHolder.txtOverwriteCells": "Cellák felülírása",
|
||||||
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Forrás formátumának megtartása",
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Forrás formátumának megtartása",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a linkre",
|
"DE.Views.DocumentHolder.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra",
|
||||||
|
"DE.Views.DocumentHolder.txtPrintSelection": "Nyomtató kiválasztás",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "Törtjel eltávolítása",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "Törtjel eltávolítása",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "Limit eltávolítása",
|
"DE.Views.DocumentHolder.txtRemLimit": "Limit eltávolítása",
|
||||||
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Ékezet eltávolítása",
|
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Ékezet eltávolítása",
|
||||||
|
@ -1212,7 +1424,11 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.textWidth": "Szélesség",
|
"DE.Views.DropcapSettingsAdvanced.textWidth": "Szélesség",
|
||||||
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Betűtípus",
|
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Betűtípus",
|
||||||
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek",
|
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"DE.Views.FileMenu.btnBackCaption": "Vissza a dokumentumokhoz",
|
"DE.Views.EditListItemDialog.textDisplayName": "Megjelenítési név",
|
||||||
|
"DE.Views.EditListItemDialog.textNameError": "A megjelenítési név nem lehet üres.",
|
||||||
|
"DE.Views.EditListItemDialog.textValue": "Érték",
|
||||||
|
"DE.Views.EditListItemDialog.textValueError": "Az azonos értékű elem már létezik.",
|
||||||
|
"DE.Views.FileMenu.btnBackCaption": "Fájl helyének megnyitása",
|
||||||
"DE.Views.FileMenu.btnCloseMenuCaption": "Menü bezárása",
|
"DE.Views.FileMenu.btnCloseMenuCaption": "Menü bezárása",
|
||||||
"DE.Views.FileMenu.btnCreateNewCaption": "Új létrehozása",
|
"DE.Views.FileMenu.btnCreateNewCaption": "Új létrehozása",
|
||||||
"DE.Views.FileMenu.btnDownloadCaption": "Letöltés mint...",
|
"DE.Views.FileMenu.btnDownloadCaption": "Letöltés mint...",
|
||||||
|
@ -1236,18 +1452,28 @@
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Hozzon létre egy új üres szöveges dokumentumot, amelynek stílusát és formátumát a későbbi a szerkesztés során adhatja meg. Választhat továbbá bizonyos típusú vagy célú dokumentumsablonok közül, ahol bizonyos stílusokat már előzetesen létrehoztak.",
|
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Hozzon létre egy új üres szöveges dokumentumot, amelynek stílusát és formátumát a későbbi a szerkesztés során adhatja meg. Választhat továbbá bizonyos típusú vagy célú dokumentumsablonok közül, ahol bizonyos stílusokat már előzetesen létrehoztak.",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Új szöveges dokumentum",
|
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Új szöveges dokumentum",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nincsenek sablonok",
|
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nincsenek sablonok",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Alkalmaz",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Szerző hozzáadása",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Szöveg hozzáadása",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikáció",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikáció",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Szerző",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Szerző",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Hozzáférési jogok módosítása",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Hozzáférési jogok módosítása",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Hozzászólás",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Létrehozva",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Betöltés...",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Betöltés...",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Utoljára módosította",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Utoljára módosított",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Tulajdonos",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Oldalak",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Oldalak",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Bekezdések",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Bekezdések",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Hely",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Hely",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Jogosult személyek",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Jogosult személyek",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Szimbólumlomok szóközökkel",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Szimbólumlomok szóközökkel",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statisztika",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statisztika",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Tárgy",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Szimbólumok",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Szimbólumok",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Dokumentum címe",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Cím",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Feltöltve",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Szavak",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Szavak",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Hozzáférési jogok módosítása",
|
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Hozzáférési jogok módosítása",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Jogosult személyek",
|
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Jogosult személyek",
|
||||||
|
@ -1287,10 +1513,13 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Elrendezési segédek",
|
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Elrendezési segédek",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatikus visszaállítás",
|
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatikus visszaállítás",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatikus mentés",
|
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatikus mentés",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilitás",
|
||||||
"DE.Views.FileMenuPanels.Settings.textDisabled": "Letiltott",
|
"DE.Views.FileMenuPanels.Settings.textDisabled": "Letiltott",
|
||||||
"DE.Views.FileMenuPanels.Settings.textForceSave": "Mentés a szerverre",
|
"DE.Views.FileMenuPanels.Settings.textForceSave": "Mentés a szerverre",
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Minden perc",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Minden perc",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "A fájlok legyenek kompatibilisek a régebbi MS Word verziókkal, amikor DOCX fájlként menti őket",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "Mindent mutat",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "Mindent mutat",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Alapértelmezett cache mód",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Centiméter",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Centiméter",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Oldalhoz igazít",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Oldalhoz igazít",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Szélességhez igazít",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Szélességhez igazít",
|
||||||
|
@ -1352,7 +1581,7 @@
|
||||||
"DE.Views.ImageSettings.textHintFlipH": "Vízszintesen tükröz",
|
"DE.Views.ImageSettings.textHintFlipH": "Vízszintesen tükröz",
|
||||||
"DE.Views.ImageSettings.textHintFlipV": "Függőlegesen tükröz",
|
"DE.Views.ImageSettings.textHintFlipV": "Függőlegesen tükröz",
|
||||||
"DE.Views.ImageSettings.textInsert": "Képet cserél",
|
"DE.Views.ImageSettings.textInsert": "Képet cserél",
|
||||||
"DE.Views.ImageSettings.textOriginalSize": "Alapértelmezett méret",
|
"DE.Views.ImageSettings.textOriginalSize": "Valódi méret",
|
||||||
"DE.Views.ImageSettings.textRotate90": "Elforgat 90 fokkal",
|
"DE.Views.ImageSettings.textRotate90": "Elforgat 90 fokkal",
|
||||||
"DE.Views.ImageSettings.textRotation": "Forgatás",
|
"DE.Views.ImageSettings.textRotation": "Forgatás",
|
||||||
"DE.Views.ImageSettings.textSize": "Méret",
|
"DE.Views.ImageSettings.textSize": "Méret",
|
||||||
|
@ -1404,7 +1633,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textMiter": "Szög",
|
"DE.Views.ImageSettingsAdvanced.textMiter": "Szög",
|
||||||
"DE.Views.ImageSettingsAdvanced.textMove": "Objektum és szöveggel áthelyezése",
|
"DE.Views.ImageSettingsAdvanced.textMove": "Objektum és szöveggel áthelyezése",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOptions": "Beállítások",
|
"DE.Views.ImageSettingsAdvanced.textOptions": "Beállítások",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Alapértelmezett",
|
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Valódi méret",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOverlap": "Átfedés engedélyezése",
|
"DE.Views.ImageSettingsAdvanced.textOverlap": "Átfedés engedélyezése",
|
||||||
"DE.Views.ImageSettingsAdvanced.textPage": "Oldal",
|
"DE.Views.ImageSettingsAdvanced.textPage": "Oldal",
|
||||||
"DE.Views.ImageSettingsAdvanced.textParagraph": "Bekezdés",
|
"DE.Views.ImageSettingsAdvanced.textParagraph": "Bekezdés",
|
||||||
|
@ -1448,6 +1677,7 @@
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "FEJLESZTŐI MÓD",
|
"DE.Views.LeftMenu.txtDeveloper": "FEJLESZTŐI MÓD",
|
||||||
"DE.Views.LeftMenu.txtTrial": "PRÓBA MÓD",
|
"DE.Views.LeftMenu.txtTrial": "PRÓBA MÓD",
|
||||||
"DE.Views.Links.capBtnBookmarks": "Könyvjelző",
|
"DE.Views.Links.capBtnBookmarks": "Könyvjelző",
|
||||||
|
"DE.Views.Links.capBtnCaption": "Felirat",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "Frissít",
|
"DE.Views.Links.capBtnContentsUpdate": "Frissít",
|
||||||
"DE.Views.Links.capBtnInsContents": "Tartalomjegyzék",
|
"DE.Views.Links.capBtnInsContents": "Tartalomjegyzék",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "Lábjegyzet",
|
"DE.Views.Links.capBtnInsFootnote": "Lábjegyzet",
|
||||||
|
@ -1462,10 +1692,29 @@
|
||||||
"DE.Views.Links.textUpdateAll": "Egész tábla frissítése",
|
"DE.Views.Links.textUpdateAll": "Egész tábla frissítése",
|
||||||
"DE.Views.Links.textUpdatePages": "Csak oldalszámok frissítése",
|
"DE.Views.Links.textUpdatePages": "Csak oldalszámok frissítése",
|
||||||
"DE.Views.Links.tipBookmarks": "Könyvjelző létrehozása",
|
"DE.Views.Links.tipBookmarks": "Könyvjelző létrehozása",
|
||||||
|
"DE.Views.Links.tipCaption": "Felirat beszúrása",
|
||||||
"DE.Views.Links.tipContents": "Tartalomjegyzék beszúrása",
|
"DE.Views.Links.tipContents": "Tartalomjegyzék beszúrása",
|
||||||
"DE.Views.Links.tipContentsUpdate": "Tartalomjegyzék frissítése",
|
"DE.Views.Links.tipContentsUpdate": "Tartalomjegyzék frissítése",
|
||||||
"DE.Views.Links.tipInsertHyperlink": "Hivatkozás hozzáadása",
|
"DE.Views.Links.tipInsertHyperlink": "Hivatkozás hozzáadása",
|
||||||
"DE.Views.Links.tipNotes": "Lábjegyzet beszúrása vagy szerkesztése",
|
"DE.Views.Links.tipNotes": "Lábjegyzet beszúrása vagy szerkesztése",
|
||||||
|
"DE.Views.ListSettingsDialog.textAuto": "Automatikus",
|
||||||
|
"DE.Views.ListSettingsDialog.textCenter": "Közép",
|
||||||
|
"DE.Views.ListSettingsDialog.textLeft": "Bal",
|
||||||
|
"DE.Views.ListSettingsDialog.textLevel": "Szint",
|
||||||
|
"DE.Views.ListSettingsDialog.textNewColor": "Új egyéni szín hozzáadása",
|
||||||
|
"DE.Views.ListSettingsDialog.textPreview": "Előnézet",
|
||||||
|
"DE.Views.ListSettingsDialog.textRight": "Jobb",
|
||||||
|
"DE.Views.ListSettingsDialog.txtAlign": "Elrendezés",
|
||||||
|
"DE.Views.ListSettingsDialog.txtBullet": "Golyó",
|
||||||
|
"DE.Views.ListSettingsDialog.txtColor": "Szín",
|
||||||
|
"DE.Views.ListSettingsDialog.txtFont": "Betűtípus és szimbólum",
|
||||||
|
"DE.Views.ListSettingsDialog.txtLikeText": "Szövegként",
|
||||||
|
"DE.Views.ListSettingsDialog.txtNewBullet": "Új golyó",
|
||||||
|
"DE.Views.ListSettingsDialog.txtNone": "Nincs",
|
||||||
|
"DE.Views.ListSettingsDialog.txtSize": "Méret",
|
||||||
|
"DE.Views.ListSettingsDialog.txtSymbol": "Szimbólum",
|
||||||
|
"DE.Views.ListSettingsDialog.txtTitle": "Lista beállítások",
|
||||||
|
"DE.Views.ListSettingsDialog.txtType": "Típus",
|
||||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||||
"DE.Views.MailMergeEmailDlg.okButtonText": "Küldés",
|
"DE.Views.MailMergeEmailDlg.okButtonText": "Küldés",
|
||||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma",
|
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma",
|
||||||
|
@ -1515,7 +1764,7 @@
|
||||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Összevonás sikertelen",
|
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Összevonás sikertelen",
|
||||||
"DE.Views.Navigation.txtCollapse": "Minimalizál mindent",
|
"DE.Views.Navigation.txtCollapse": "Minimalizál mindent",
|
||||||
"DE.Views.Navigation.txtDemote": "Lefokoz",
|
"DE.Views.Navigation.txtDemote": "Lefokoz",
|
||||||
"DE.Views.Navigation.txtEmpty": "Ez a dokumentum nem tartalmaz címsorokat",
|
"DE.Views.Navigation.txtEmpty": "Nincsenek címsorok a dokumentumban.<br>Vigyen fel egy fejlécstílust a szövegre, hogy az megjelenjen a tartalomjegyzékben.",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Üres fejléc",
|
"DE.Views.Navigation.txtEmptyItem": "Üres fejléc",
|
||||||
"DE.Views.Navigation.txtExpand": "Összes kibontása",
|
"DE.Views.Navigation.txtExpand": "Összes kibontása",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Szintig kibont",
|
"DE.Views.Navigation.txtExpandToLevel": "Szintig kibont",
|
||||||
|
@ -1544,7 +1793,18 @@
|
||||||
"DE.Views.NoteSettingsDialog.textTitle": "Jegyzet beállítások",
|
"DE.Views.NoteSettingsDialog.textTitle": "Jegyzet beállítások",
|
||||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Figyelmeztetés",
|
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
"DE.Views.PageMarginsDialog.textBottom": "Alsó",
|
"DE.Views.PageMarginsDialog.textBottom": "Alsó",
|
||||||
|
"DE.Views.PageMarginsDialog.textGutter": "Kifutó",
|
||||||
|
"DE.Views.PageMarginsDialog.textGutterPosition": "Kifutó helye",
|
||||||
|
"DE.Views.PageMarginsDialog.textInside": "Belül",
|
||||||
|
"DE.Views.PageMarginsDialog.textLandscape": "Fekvő",
|
||||||
"DE.Views.PageMarginsDialog.textLeft": "Bal",
|
"DE.Views.PageMarginsDialog.textLeft": "Bal",
|
||||||
|
"DE.Views.PageMarginsDialog.textMirrorMargins": "Tükörmargó",
|
||||||
|
"DE.Views.PageMarginsDialog.textMultiplePages": "Több oldal",
|
||||||
|
"DE.Views.PageMarginsDialog.textNormal": "Normál",
|
||||||
|
"DE.Views.PageMarginsDialog.textOrientation": "Tájolás",
|
||||||
|
"DE.Views.PageMarginsDialog.textOutside": "Kívül",
|
||||||
|
"DE.Views.PageMarginsDialog.textPortrait": "Álló",
|
||||||
|
"DE.Views.PageMarginsDialog.textPreview": "Előnézet",
|
||||||
"DE.Views.PageMarginsDialog.textRight": "Jobb",
|
"DE.Views.PageMarginsDialog.textRight": "Jobb",
|
||||||
"DE.Views.PageMarginsDialog.textTitle": "Margók",
|
"DE.Views.PageMarginsDialog.textTitle": "Margók",
|
||||||
"DE.Views.PageMarginsDialog.textTop": "Felső",
|
"DE.Views.PageMarginsDialog.textTop": "Felső",
|
||||||
|
@ -1573,33 +1833,52 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Szegélyek és kitöltés",
|
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Szegélyek és kitöltés",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Oldaltörés elötte",
|
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Oldaltörés elötte",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Duplán áthúzott",
|
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Duplán áthúzott",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Behúzások",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Bal",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Bal",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Sortávolság",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Vázlat szintje",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Jobb",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Jobb",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Utána",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Elötte",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speciális",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Sorok egyben tartása",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Sorok egyben tartása",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Következővel együtt tartás",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Következővel együtt tartás",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Belső margók",
|
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Belső margók",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Árva sor",
|
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Árva sor",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Betűtípus",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Betűtípus",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Francia bekezdés",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Behúzások és térközök",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Sor- és oldaltörés",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Elhelyezés",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Elhelyezés",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kisbetűk",
|
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Kisbetűk",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Ne adjon távolságot azonos stílusú bekezdések közé",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSpacing": "Térköz",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Áthúzott",
|
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Áthúzott",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Alsó index",
|
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Alsó index",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Felső index",
|
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Felső index",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Lapok",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Lapok",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Elrendezés",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Elrendezés",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Legalább",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Többszörös",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Háttérszín",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Háttérszín",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Egyszerű szöveg",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Szegély színe",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Szegély színe",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Kattintson az ábrára vagy használjon gombokat a szegély kiválasztásához és a kiválasztott stílus alkalmazásához",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Kattintson az ábrára vagy használjon gombokat a szegély kiválasztásához és a kiválasztott stílus alkalmazásához",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Szegély mérete",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Szegély mérete",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Alsó",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Alsó",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Középre igazított",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Karakter távolság",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Karakter távolság",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Alapértelmezett lap",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Alapértelmezett lap",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effektek",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effektek",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "Pontosan",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Első sor",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Függő",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Sorkizárt",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Vezető",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Vezető",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Bal",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Bal",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Szint",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Új egyedi szín hozzáadása",
|
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Új egyedi szín hozzáadása",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "nincs",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "nincs",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nincs)",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozíció",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozíció",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Eltávolít",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Eltávolít",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Mindent eltávolít",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Mindent eltávolít",
|
||||||
|
@ -1620,6 +1899,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Csak külső szegély beállítása",
|
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Csak külső szegély beállítása",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Csak jobb szegély beállítása",
|
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Csak jobb szegély beállítása",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Csak felső szegély beállítása",
|
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Csak felső szegély beállítása",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek",
|
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"DE.Views.RightMenu.txtChartSettings": "Diagram beállítások",
|
"DE.Views.RightMenu.txtChartSettings": "Diagram beállítások",
|
||||||
"DE.Views.RightMenu.txtHeaderFooterSettings": "Fejléc és lábléc beállítások",
|
"DE.Views.RightMenu.txtHeaderFooterSettings": "Fejléc és lábléc beállítások",
|
||||||
|
@ -1636,6 +1916,7 @@
|
||||||
"DE.Views.ShapeSettings.strFill": "Kitöltés",
|
"DE.Views.ShapeSettings.strFill": "Kitöltés",
|
||||||
"DE.Views.ShapeSettings.strForeground": "Előtér színe",
|
"DE.Views.ShapeSettings.strForeground": "Előtér színe",
|
||||||
"DE.Views.ShapeSettings.strPattern": "Minta",
|
"DE.Views.ShapeSettings.strPattern": "Minta",
|
||||||
|
"DE.Views.ShapeSettings.strShadow": "Árnyék mutatása",
|
||||||
"DE.Views.ShapeSettings.strSize": "Méret",
|
"DE.Views.ShapeSettings.strSize": "Méret",
|
||||||
"DE.Views.ShapeSettings.strStroke": "Körvonal",
|
"DE.Views.ShapeSettings.strStroke": "Körvonal",
|
||||||
"DE.Views.ShapeSettings.strTransparency": "Átlátszóság",
|
"DE.Views.ShapeSettings.strTransparency": "Átlátszóság",
|
||||||
|
@ -1716,8 +1997,11 @@
|
||||||
"DE.Views.StyleTitleDialog.textTitle": "Cím",
|
"DE.Views.StyleTitleDialog.textTitle": "Cím",
|
||||||
"DE.Views.StyleTitleDialog.txtEmpty": "Ez egy szükséges mező",
|
"DE.Views.StyleTitleDialog.txtEmpty": "Ez egy szükséges mező",
|
||||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "A mező nem lehet üres",
|
"DE.Views.StyleTitleDialog.txtNotEmpty": "A mező nem lehet üres",
|
||||||
|
"DE.Views.StyleTitleDialog.txtSameAs": "Ugyanaz, mint az új stílus",
|
||||||
|
"DE.Views.TableFormulaDialog.textBookmark": "Könyvjelző beillesztése",
|
||||||
"DE.Views.TableFormulaDialog.textFormat": "Számformátum",
|
"DE.Views.TableFormulaDialog.textFormat": "Számformátum",
|
||||||
"DE.Views.TableFormulaDialog.textFormula": "Függvény",
|
"DE.Views.TableFormulaDialog.textFormula": "Függvény",
|
||||||
|
"DE.Views.TableFormulaDialog.textInsertFunction": "Függvény beillesztése",
|
||||||
"DE.Views.TableFormulaDialog.textTitle": "Függvény beállítások",
|
"DE.Views.TableFormulaDialog.textTitle": "Függvény beállítások",
|
||||||
"DE.Views.TableOfContentsSettings.strAlign": "Jobbra rendezett oldalszámok",
|
"DE.Views.TableOfContentsSettings.strAlign": "Jobbra rendezett oldalszámok",
|
||||||
"DE.Views.TableOfContentsSettings.strLinks": "Tartalomjegyzék formázása hivatkozásként",
|
"DE.Views.TableOfContentsSettings.strLinks": "Tartalomjegyzék formázása hivatkozásként",
|
||||||
|
@ -1735,6 +2019,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.txtClassic": "Klasszikus",
|
"DE.Views.TableOfContentsSettings.txtClassic": "Klasszikus",
|
||||||
"DE.Views.TableOfContentsSettings.txtCurrent": "Aktuális",
|
"DE.Views.TableOfContentsSettings.txtCurrent": "Aktuális",
|
||||||
"DE.Views.TableOfContentsSettings.txtModern": "Modern",
|
"DE.Views.TableOfContentsSettings.txtModern": "Modern",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtOnline": "Online",
|
||||||
"DE.Views.TableOfContentsSettings.txtSimple": "Egyszerű",
|
"DE.Views.TableOfContentsSettings.txtSimple": "Egyszerű",
|
||||||
"DE.Views.TableOfContentsSettings.txtStandard": "Szabvány",
|
"DE.Views.TableOfContentsSettings.txtStandard": "Szabvány",
|
||||||
"DE.Views.TableSettings.deleteColumnText": "Oszlop törlése",
|
"DE.Views.TableSettings.deleteColumnText": "Oszlop törlése",
|
||||||
|
@ -1758,7 +2043,7 @@
|
||||||
"DE.Views.TableSettings.textBanded": "Csíkos",
|
"DE.Views.TableSettings.textBanded": "Csíkos",
|
||||||
"DE.Views.TableSettings.textBorderColor": "Szín",
|
"DE.Views.TableSettings.textBorderColor": "Szín",
|
||||||
"DE.Views.TableSettings.textBorders": "Szegély stílus",
|
"DE.Views.TableSettings.textBorders": "Szegély stílus",
|
||||||
"DE.Views.TableSettings.textCellSize": "Cella méret",
|
"DE.Views.TableSettings.textCellSize": "Sorok és cellák mérete",
|
||||||
"DE.Views.TableSettings.textColumns": "Oszlopok",
|
"DE.Views.TableSettings.textColumns": "Oszlopok",
|
||||||
"DE.Views.TableSettings.textDistributeCols": "Oszlopok elosztása",
|
"DE.Views.TableSettings.textDistributeCols": "Oszlopok elosztása",
|
||||||
"DE.Views.TableSettings.textDistributeRows": "Sorok elosztása",
|
"DE.Views.TableSettings.textDistributeRows": "Sorok elosztása",
|
||||||
|
@ -1785,6 +2070,14 @@
|
||||||
"DE.Views.TableSettings.tipRight": "Csak külső, jobb szegély beállítása",
|
"DE.Views.TableSettings.tipRight": "Csak külső, jobb szegély beállítása",
|
||||||
"DE.Views.TableSettings.tipTop": "Csak külső, felső szegély beállítása",
|
"DE.Views.TableSettings.tipTop": "Csak külső, felső szegély beállítása",
|
||||||
"DE.Views.TableSettings.txtNoBorders": "Nincsenek szegélyek",
|
"DE.Views.TableSettings.txtNoBorders": "Nincsenek szegélyek",
|
||||||
|
"DE.Views.TableSettings.txtTable_Accent": "Ékezet",
|
||||||
|
"DE.Views.TableSettings.txtTable_Colorful": "Színes",
|
||||||
|
"DE.Views.TableSettings.txtTable_Dark": "Sötét",
|
||||||
|
"DE.Views.TableSettings.txtTable_GridTable": "Rács táblázat",
|
||||||
|
"DE.Views.TableSettings.txtTable_Light": "Világos",
|
||||||
|
"DE.Views.TableSettings.txtTable_ListTable": "Lista táblázat",
|
||||||
|
"DE.Views.TableSettings.txtTable_PlainTable": "Egyszerű táblázat",
|
||||||
|
"DE.Views.TableSettings.txtTable_TableGrid": "Táblázat rács",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlign": "Elrendezés",
|
"DE.Views.TableSettingsAdvanced.textAlign": "Elrendezés",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Elrendezés",
|
"DE.Views.TableSettingsAdvanced.textAlignment": "Elrendezés",
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Cellák közti tér",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Cellák közti tér",
|
||||||
|
@ -1878,6 +2171,7 @@
|
||||||
"DE.Views.TextArtSettings.textTemplate": "Sablon",
|
"DE.Views.TextArtSettings.textTemplate": "Sablon",
|
||||||
"DE.Views.TextArtSettings.textTransform": "Átalakít",
|
"DE.Views.TextArtSettings.textTransform": "Átalakít",
|
||||||
"DE.Views.TextArtSettings.txtNoBorders": "Nincs vonal",
|
"DE.Views.TextArtSettings.txtNoBorders": "Nincs vonal",
|
||||||
|
"DE.Views.Toolbar.capBtnAddComment": "Hozzászólás írása",
|
||||||
"DE.Views.Toolbar.capBtnBlankPage": "Üres oldal",
|
"DE.Views.Toolbar.capBtnBlankPage": "Üres oldal",
|
||||||
"DE.Views.Toolbar.capBtnColumns": "Hasábok",
|
"DE.Views.Toolbar.capBtnColumns": "Hasábok",
|
||||||
"DE.Views.Toolbar.capBtnComment": "Hozzászólás",
|
"DE.Views.Toolbar.capBtnComment": "Hozzászólás",
|
||||||
|
@ -1889,22 +2183,26 @@
|
||||||
"DE.Views.Toolbar.capBtnInsImage": "Kép",
|
"DE.Views.Toolbar.capBtnInsImage": "Kép",
|
||||||
"DE.Views.Toolbar.capBtnInsPagebreak": "Szünetek",
|
"DE.Views.Toolbar.capBtnInsPagebreak": "Szünetek",
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "Alakzat",
|
"DE.Views.Toolbar.capBtnInsShape": "Alakzat",
|
||||||
|
"DE.Views.Toolbar.capBtnInsSymbol": "Szimbólum",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "Táblázat",
|
"DE.Views.Toolbar.capBtnInsTable": "Táblázat",
|
||||||
"DE.Views.Toolbar.capBtnInsTextart": "TextArt",
|
"DE.Views.Toolbar.capBtnInsTextart": "TextArt",
|
||||||
"DE.Views.Toolbar.capBtnInsTextbox": "Szövegdoboz",
|
"DE.Views.Toolbar.capBtnInsTextbox": "Szövegdoboz",
|
||||||
"DE.Views.Toolbar.capBtnMargins": "Margók",
|
"DE.Views.Toolbar.capBtnMargins": "Margók",
|
||||||
"DE.Views.Toolbar.capBtnPageOrient": "Irány",
|
"DE.Views.Toolbar.capBtnPageOrient": "Irány",
|
||||||
"DE.Views.Toolbar.capBtnPageSize": "Méret",
|
"DE.Views.Toolbar.capBtnPageSize": "Méret",
|
||||||
|
"DE.Views.Toolbar.capBtnWatermark": "Vízjel",
|
||||||
"DE.Views.Toolbar.capImgAlign": "Rendez",
|
"DE.Views.Toolbar.capImgAlign": "Rendez",
|
||||||
"DE.Views.Toolbar.capImgBackward": "Visszafelé küld",
|
"DE.Views.Toolbar.capImgBackward": "Visszafelé küld",
|
||||||
"DE.Views.Toolbar.capImgForward": "Előre hoz",
|
"DE.Views.Toolbar.capImgForward": "Előre hoz",
|
||||||
"DE.Views.Toolbar.capImgGroup": "Csoport",
|
"DE.Views.Toolbar.capImgGroup": "Csoport",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "Tördelés",
|
"DE.Views.Toolbar.capImgWrapping": "Tördelés",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "Egyéni táblázat beszúrása",
|
"DE.Views.Toolbar.mniCustomTable": "Egyéni táblázat beszúrása",
|
||||||
|
"DE.Views.Toolbar.mniDrawTable": "Táblázat rajzolása",
|
||||||
"DE.Views.Toolbar.mniEditControls": "Vezérlő beállítások",
|
"DE.Views.Toolbar.mniEditControls": "Vezérlő beállítások",
|
||||||
"DE.Views.Toolbar.mniEditDropCap": "Iniciálé beállításai",
|
"DE.Views.Toolbar.mniEditDropCap": "Iniciálé beállításai",
|
||||||
"DE.Views.Toolbar.mniEditFooter": "Lábléc szerkesztése",
|
"DE.Views.Toolbar.mniEditFooter": "Lábléc szerkesztése",
|
||||||
"DE.Views.Toolbar.mniEditHeader": "Fejléc szerkesztése",
|
"DE.Views.Toolbar.mniEditHeader": "Fejléc szerkesztése",
|
||||||
|
"DE.Views.Toolbar.mniEraseTable": "Táblázat törlése",
|
||||||
"DE.Views.Toolbar.mniHiddenBorders": "Rejtett táblázat szegélyek",
|
"DE.Views.Toolbar.mniHiddenBorders": "Rejtett táblázat szegélyek",
|
||||||
"DE.Views.Toolbar.mniHiddenChars": "Tabulátorok",
|
"DE.Views.Toolbar.mniHiddenChars": "Tabulátorok",
|
||||||
"DE.Views.Toolbar.mniHighlightControls": "Kiemelés beállításai",
|
"DE.Views.Toolbar.mniHighlightControls": "Kiemelés beállításai",
|
||||||
|
@ -1915,13 +2213,18 @@
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatikus",
|
"DE.Views.Toolbar.textAutoColor": "Automatikus",
|
||||||
"DE.Views.Toolbar.textBold": "Félkövér",
|
"DE.Views.Toolbar.textBold": "Félkövér",
|
||||||
"DE.Views.Toolbar.textBottom": "Alsó:",
|
"DE.Views.Toolbar.textBottom": "Alsó:",
|
||||||
|
"DE.Views.Toolbar.textCheckboxControl": "Jelölőnégyzet",
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Egyéni hasábok",
|
"DE.Views.Toolbar.textColumnsCustom": "Egyéni hasábok",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Bal",
|
"DE.Views.Toolbar.textColumnsLeft": "Bal",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Egy",
|
"DE.Views.Toolbar.textColumnsOne": "Egy",
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Jobb",
|
"DE.Views.Toolbar.textColumnsRight": "Jobb",
|
||||||
"DE.Views.Toolbar.textColumnsThree": "Három",
|
"DE.Views.Toolbar.textColumnsThree": "Három",
|
||||||
"DE.Views.Toolbar.textColumnsTwo": "Kettő",
|
"DE.Views.Toolbar.textColumnsTwo": "Kettő",
|
||||||
|
"DE.Views.Toolbar.textComboboxControl": "Legördülő lista",
|
||||||
"DE.Views.Toolbar.textContPage": "Folyamatos oldal",
|
"DE.Views.Toolbar.textContPage": "Folyamatos oldal",
|
||||||
|
"DE.Views.Toolbar.textDateControl": "Dátum",
|
||||||
|
"DE.Views.Toolbar.textDropdownControl": "Legördülő lista",
|
||||||
|
"DE.Views.Toolbar.textEditWatermark": "Egyéni vízjel",
|
||||||
"DE.Views.Toolbar.textEvenPage": "Páros oldal",
|
"DE.Views.Toolbar.textEvenPage": "Páros oldal",
|
||||||
"DE.Views.Toolbar.textInMargin": "Margón belül",
|
"DE.Views.Toolbar.textInMargin": "Margón belül",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "Hasábtörés beszúrása",
|
"DE.Views.Toolbar.textInsColumnBreak": "Hasábtörés beszúrása",
|
||||||
|
@ -1933,6 +2236,7 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Dőlt",
|
"DE.Views.Toolbar.textItalic": "Dőlt",
|
||||||
"DE.Views.Toolbar.textLandscape": "Tájkép",
|
"DE.Views.Toolbar.textLandscape": "Tájkép",
|
||||||
"DE.Views.Toolbar.textLeft": "Bal:",
|
"DE.Views.Toolbar.textLeft": "Bal:",
|
||||||
|
"DE.Views.Toolbar.textListSettings": "Lista beállítások",
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások",
|
"DE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Mérsékelt",
|
"DE.Views.Toolbar.textMarginsModerate": "Mérsékelt",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Keskeny",
|
"DE.Views.Toolbar.textMarginsNarrow": "Keskeny",
|
||||||
|
@ -1946,10 +2250,12 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Páratlan oldal",
|
"DE.Views.Toolbar.textOddPage": "Páratlan oldal",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Egyéni margók",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Egyéni margók",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Egyéni lapméret",
|
"DE.Views.Toolbar.textPageSizeCustom": "Egyéni lapméret",
|
||||||
"DE.Views.Toolbar.textPlainControl": "Egyszerű szöveg tartalomkezelő beillesztése",
|
"DE.Views.Toolbar.textPictureControl": "Kép",
|
||||||
|
"DE.Views.Toolbar.textPlainControl": "Egyszerű szöveg",
|
||||||
"DE.Views.Toolbar.textPortrait": "Portré",
|
"DE.Views.Toolbar.textPortrait": "Portré",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Tartalomkezelő eltávolítása",
|
"DE.Views.Toolbar.textRemoveControl": "Tartalomkezelő eltávolítása",
|
||||||
"DE.Views.Toolbar.textRichControl": "Rich text tartalomkezelő beillesztése",
|
"DE.Views.Toolbar.textRemWatermark": "Vízjel eltávolítása",
|
||||||
|
"DE.Views.Toolbar.textRichControl": "Formázott szöveg",
|
||||||
"DE.Views.Toolbar.textRight": "Jobb:",
|
"DE.Views.Toolbar.textRight": "Jobb:",
|
||||||
"DE.Views.Toolbar.textStrikeout": "Áthúzott",
|
"DE.Views.Toolbar.textStrikeout": "Áthúzott",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Stílus törlése",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Stílus törlése",
|
||||||
|
@ -2003,6 +2309,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertImage": "Kép beszúrása",
|
"DE.Views.Toolbar.tipInsertImage": "Kép beszúrása",
|
||||||
"DE.Views.Toolbar.tipInsertNum": "Oldalszám beillesztése",
|
"DE.Views.Toolbar.tipInsertNum": "Oldalszám beillesztése",
|
||||||
"DE.Views.Toolbar.tipInsertShape": "Alakzat beszúrása",
|
"DE.Views.Toolbar.tipInsertShape": "Alakzat beszúrása",
|
||||||
|
"DE.Views.Toolbar.tipInsertSymbol": "Szimbólum beszúrása",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "Táblázat beszúrása",
|
"DE.Views.Toolbar.tipInsertTable": "Táblázat beszúrása",
|
||||||
"DE.Views.Toolbar.tipInsertText": "Szövegdoboz beszúrása",
|
"DE.Views.Toolbar.tipInsertText": "Szövegdoboz beszúrása",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "TextArt beszúrása",
|
"DE.Views.Toolbar.tipInsertTextArt": "TextArt beszúrása",
|
||||||
|
@ -2027,6 +2334,7 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Tabulátorok",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Tabulátorok",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "A dokumentumot egy másik felhasználó módosította. Kattintson a gombra a módosítások mentéséhez és a frissítések újratöltéséhez.",
|
"DE.Views.Toolbar.tipSynchronize": "A dokumentumot egy másik felhasználó módosította. Kattintson a gombra a módosítások mentéséhez és a frissítések újratöltéséhez.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Vissza",
|
"DE.Views.Toolbar.tipUndo": "Vissza",
|
||||||
|
"DE.Views.Toolbar.tipWatermark": "Vízjel szerkesztése",
|
||||||
"DE.Views.Toolbar.txtDistribHor": "Vízszintes igazítás",
|
"DE.Views.Toolbar.txtDistribHor": "Vízszintes igazítás",
|
||||||
"DE.Views.Toolbar.txtDistribVert": "Függőleges igazítás",
|
"DE.Views.Toolbar.txtDistribVert": "Függőleges igazítás",
|
||||||
"DE.Views.Toolbar.txtMarginAlign": "Margóhoz igazít",
|
"DE.Views.Toolbar.txtMarginAlign": "Margóhoz igazít",
|
||||||
|
@ -2052,5 +2360,28 @@
|
||||||
"DE.Views.Toolbar.txtScheme6": "Együttműködés",
|
"DE.Views.Toolbar.txtScheme6": "Együttműködés",
|
||||||
"DE.Views.Toolbar.txtScheme7": "Érték",
|
"DE.Views.Toolbar.txtScheme7": "Érték",
|
||||||
"DE.Views.Toolbar.txtScheme8": "Flow",
|
"DE.Views.Toolbar.txtScheme8": "Flow",
|
||||||
"DE.Views.Toolbar.txtScheme9": "Öntöde"
|
"DE.Views.Toolbar.txtScheme9": "Öntöde",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textBold": "Félkövér",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textColor": "Szöveg színe",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Átlós",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFont": "Betűtípus",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFromFile": "Fájlból",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFromUrl": "Hivatkozásból",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textHor": "Vízszintes",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textImageW": "Kép vízjel",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textItalic": "Dőlt",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textLanguage": "Nyelv",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textLayout": "Elrendezés",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textNewColor": "Új egyéni szín hozzáadása",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textNone": "Nincs",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textScale": "Mérték",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Áthúzás",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textText": "Szöveg",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTextW": "Szöveges vízjel",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTitle": "Vízjel beállítások",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTransparency": "Féligáttetsző",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textUnderline": "Aláhúzott",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.tipFontName": "Betűtípus neve",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Betűméret"
|
||||||
}
|
}
|
1410
apps/documenteditor/main/locale/id.json
Normal file
|
@ -185,7 +185,7 @@
|
||||||
"Common.Views.ExternalMergeEditor.textClose": "Chiudi",
|
"Common.Views.ExternalMergeEditor.textClose": "Chiudi",
|
||||||
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
"Common.Views.ExternalMergeEditor.textSave": "Save & Exit",
|
||||||
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients",
|
||||||
"Common.Views.Header.labelCoUsersDescr": "È in corso la modifica del documento da parte di più utenti.",
|
"Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:",
|
||||||
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
|
"Common.Views.Header.textAdvSettings": "Impostazioni avanzate",
|
||||||
"Common.Views.Header.textBack": "Apri percorso file",
|
"Common.Views.Header.textBack": "Apri percorso file",
|
||||||
"Common.Views.Header.textCompactView": "Mostra barra degli strumenti compatta",
|
"Common.Views.Header.textCompactView": "Mostra barra degli strumenti compatta",
|
||||||
|
@ -401,7 +401,7 @@
|
||||||
"DE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.",
|
"DE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
|
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento del documento non riuscito. Seleziona un altro file.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito",
|
"DE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito",
|
||||||
"DE.Controllers.Main.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.",
|
"DE.Controllers.Main.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.",
|
||||||
|
@ -493,7 +493,7 @@
|
||||||
"DE.Controllers.Main.txtMissArg": "Argomento mancante",
|
"DE.Controllers.Main.txtMissArg": "Argomento mancante",
|
||||||
"DE.Controllers.Main.txtMissOperator": "Operatore mancante",
|
"DE.Controllers.Main.txtMissOperator": "Operatore mancante",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "Ci sono aggiornamenti disponibili",
|
"DE.Controllers.Main.txtNeedSynchronize": "Ci sono aggiornamenti disponibili",
|
||||||
"DE.Controllers.Main.txtNoTableOfContents": "Sommario non trovato",
|
"DE.Controllers.Main.txtNoTableOfContents": "Non ci sono titoli nel documento. Applicare uno stile di titolo al testo in modo che appaia nel sommario.",
|
||||||
"DE.Controllers.Main.txtNoText": "Errore! Nessuno stile specificato per il testo nel documento.",
|
"DE.Controllers.Main.txtNoText": "Errore! Nessuno stile specificato per il testo nel documento.",
|
||||||
"DE.Controllers.Main.txtNotInTable": "Non è in Tabella",
|
"DE.Controllers.Main.txtNotInTable": "Non è in Tabella",
|
||||||
"DE.Controllers.Main.txtNotValidBookmark": "Errore! Non è un riferimento personale valido per i segnalibri.",
|
"DE.Controllers.Main.txtNotValidBookmark": "Errore! Non è un riferimento personale valido per i segnalibri.",
|
||||||
|
@ -1519,6 +1519,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Ogni minuto",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Ogni minuto",
|
||||||
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Rendi i file compatibili con le versioni precedenti di MS Word quando vengono salvati come DOCX",
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Rendi i file compatibili con le versioni precedenti di MS Word quando vengono salvati come DOCX",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "Tutte",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "Tutte",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Modalità cache predefinita",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimetro",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimetro",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Adatta alla pagina",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Adatta alla pagina",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Adatta alla larghezza",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Adatta alla larghezza",
|
||||||
|
@ -1762,7 +1763,7 @@
|
||||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
|
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
|
||||||
"DE.Views.Navigation.txtCollapse": "Comprimi tutto",
|
"DE.Views.Navigation.txtCollapse": "Comprimi tutto",
|
||||||
"DE.Views.Navigation.txtDemote": "Retrocedere",
|
"DE.Views.Navigation.txtDemote": "Retrocedere",
|
||||||
"DE.Views.Navigation.txtEmpty": "Questo documento non contiene intestazioni",
|
"DE.Views.Navigation.txtEmpty": "Non ci sono titoli nel documento.<br>Applica uno stile di titolo al testo in modo che appaia nel sommario.",
|
||||||
"DE.Views.Navigation.txtEmptyItem": "Intestazione vuota",
|
"DE.Views.Navigation.txtEmptyItem": "Intestazione vuota",
|
||||||
"DE.Views.Navigation.txtExpand": "Espandi tutto",
|
"DE.Views.Navigation.txtExpand": "Espandi tutto",
|
||||||
"DE.Views.Navigation.txtExpandToLevel": "Espandi al livello",
|
"DE.Views.Navigation.txtExpandToLevel": "Espandi al livello",
|
||||||
|
@ -2015,6 +2016,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.txtClassic": "Classico",
|
"DE.Views.TableOfContentsSettings.txtClassic": "Classico",
|
||||||
"DE.Views.TableOfContentsSettings.txtCurrent": "Attuale",
|
"DE.Views.TableOfContentsSettings.txtCurrent": "Attuale",
|
||||||
"DE.Views.TableOfContentsSettings.txtModern": "Moderno",
|
"DE.Views.TableOfContentsSettings.txtModern": "Moderno",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtOnline": "Online",
|
||||||
"DE.Views.TableOfContentsSettings.txtSimple": "Semplice",
|
"DE.Views.TableOfContentsSettings.txtSimple": "Semplice",
|
||||||
"DE.Views.TableOfContentsSettings.txtStandard": "Standard",
|
"DE.Views.TableOfContentsSettings.txtStandard": "Standard",
|
||||||
"DE.Views.TableSettings.deleteColumnText": "Elimina colonna",
|
"DE.Views.TableSettings.deleteColumnText": "Elimina colonna",
|
||||||
|
|
515
apps/documenteditor/main/locale/nb.json
Normal file
|
@ -0,0 +1,515 @@
|
||||||
|
{
|
||||||
|
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonym",
|
||||||
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Lukk",
|
||||||
|
"Common.Controllers.ExternalMergeEditor.textAnonymous": "Anonym",
|
||||||
|
"Common.Controllers.ExternalMergeEditor.textClose": "Lukk",
|
||||||
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "Advarsel",
|
||||||
|
"Common.Controllers.ReviewChanges.textAtLeast": "minst",
|
||||||
|
"Common.Controllers.ReviewChanges.textAuto": "auto",
|
||||||
|
"Common.Controllers.ReviewChanges.textBaseline": "Basislinje",
|
||||||
|
"Common.Controllers.ReviewChanges.textBold": "Fet",
|
||||||
|
"Common.Controllers.ReviewChanges.textCaps": "Store bokstaver",
|
||||||
|
"Common.Controllers.ReviewChanges.textCenter": "Still opp senter",
|
||||||
|
"Common.Controllers.ReviewChanges.textChart": "Diagram",
|
||||||
|
"Common.Controllers.ReviewChanges.textDeleted": "<b>Slettet:</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textExact": "nøyaktig",
|
||||||
|
"Common.Controllers.ReviewChanges.textImage": "Bilde",
|
||||||
|
"Common.Controllers.ReviewChanges.textInserted": "<b>Satt inn:</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textJustify": "Still opp jevnt",
|
||||||
|
"Common.Controllers.ReviewChanges.textLeft": "Still opp venstre",
|
||||||
|
"Common.Controllers.ReviewChanges.textNoContextual": "Legg til mellomrom mellom",
|
||||||
|
"Common.Controllers.ReviewChanges.textNum": "Endre nummerering",
|
||||||
|
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Avsnitt slettet</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Avsnitt satt inn</b>",
|
||||||
|
"Common.Controllers.ReviewChanges.textRight": "Still opp høyre",
|
||||||
|
"Common.Controllers.ReviewChanges.textShd": "Bakgrunnsfarge",
|
||||||
|
"Common.Controllers.ReviewChanges.textTabs": "Bytt faner",
|
||||||
|
"Common.UI.ExtendedColorDialog.addButtonText": "Legg til",
|
||||||
|
"Common.UI.ExtendedColorDialog.textCurrent": "Nåværende",
|
||||||
|
"Common.UI.SearchDialog.textMatchCase": "Følsom for store og små bokstaver",
|
||||||
|
"Common.UI.Window.cancelButtonText": "Avbryt",
|
||||||
|
"Common.UI.Window.closeButtonText": "Lukk",
|
||||||
|
"Common.UI.Window.textError": "Feil",
|
||||||
|
"Common.UI.Window.textWarning": "Advarsel",
|
||||||
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
|
"Common.Views.About.txtAddress": "adresse:",
|
||||||
|
"Common.Views.Comments.textAdd": "Legg til",
|
||||||
|
"Common.Views.Comments.textAddComment": "Tilføy",
|
||||||
|
"Common.Views.Comments.textAddCommentToDoc": "Tilføy kommentar til",
|
||||||
|
"Common.Views.Comments.textAddReply": "Legg til svar",
|
||||||
|
"Common.Views.Comments.textCancel": "Avbryt",
|
||||||
|
"Common.Views.Comments.textClose": "Lukk",
|
||||||
|
"Common.Views.Comments.textComments": "Kommentarer",
|
||||||
|
"Common.Views.Comments.textHintAddComment": "Legg til kommentar",
|
||||||
|
"Common.Views.ExternalDiagramEditor.textClose": "Lukk",
|
||||||
|
"Common.Views.ExternalDiagramEditor.textTitle": "Diagramredigering",
|
||||||
|
"Common.Views.ExternalMergeEditor.textClose": "Lukk",
|
||||||
|
"Common.Views.Header.textAdvSettings": "Avanserte innstillinger",
|
||||||
|
"Common.Views.Header.textSaveEnd": "Alle endringer er lagret",
|
||||||
|
"Common.Views.Header.textSaveExpander": "Alle endringer er lagret",
|
||||||
|
"Common.Views.Header.tipGoEdit": "Rediger gjeldende fil",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Visningsinnstillinger",
|
||||||
|
"Common.Views.Header.tipViewUsers": "Vis brukere og administrer tilgangsrettigheter",
|
||||||
|
"Common.Views.Header.txtAccessRights": "Endre tilgangsrettigheter",
|
||||||
|
"Common.Views.History.textCloseHistory": "Lukk loggen",
|
||||||
|
"Common.Views.OpenDialog.closeButtonText": "Lukk filen",
|
||||||
|
"Common.Views.OpenDialog.txtTitle": "Velg %1 alternativer",
|
||||||
|
"Common.Views.Protection.hintPwd": "Endre eller slett passord",
|
||||||
|
"Common.Views.Protection.hintSignature": "Legg til digital signatur eller signaturlinje",
|
||||||
|
"Common.Views.Protection.txtAddPwd": "Angi passord",
|
||||||
|
"Common.Views.Protection.txtChangePwd": "Endre passord",
|
||||||
|
"Common.Views.Protection.txtDeletePwd": "Slett passord",
|
||||||
|
"Common.Views.Protection.txtInvisibleSignature": "Legg til digital signatur",
|
||||||
|
"Common.Views.Protection.txtSignatureLine": "Legg til signaturlinje",
|
||||||
|
"Common.Views.RenameDialog.textName": "Filnavn",
|
||||||
|
"Common.Views.ReviewChanges.strFast": "Hurtig",
|
||||||
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Godta endringen",
|
||||||
|
"Common.Views.ReviewChanges.txtAccept": "Godta",
|
||||||
|
"Common.Views.ReviewChanges.txtAcceptAll": "Godta alle endringer",
|
||||||
|
"Common.Views.ReviewChanges.txtAcceptChanges": "Godta endringer",
|
||||||
|
"Common.Views.ReviewChanges.txtAcceptCurrent": "Godta endringen",
|
||||||
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
|
"Common.Views.ReviewChanges.txtClose": "Lukk",
|
||||||
|
"Common.Views.ReviewChanges.txtFinal": "Alle endringer er godtatt",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkup": "Alle endringer (Redigering)",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginal": "Alle endringer er avvist (Forhåndsvisning)",
|
||||||
|
"Common.Views.ReviewChanges.txtView": "Visningsmodus",
|
||||||
|
"Common.Views.ReviewChangesDialog.txtAccept": "Godta",
|
||||||
|
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Godta alle endringer",
|
||||||
|
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Godta endringen",
|
||||||
|
"Common.Views.ReviewPopover.textAdd": "Legg til",
|
||||||
|
"Common.Views.ReviewPopover.textAddReply": "Legg til svar",
|
||||||
|
"Common.Views.ReviewPopover.textCancel": "Avbryt",
|
||||||
|
"Common.Views.ReviewPopover.textClose": "Lukk",
|
||||||
|
"Common.Views.SignDialog.textBold": "Fet",
|
||||||
|
"Common.Views.SignDialog.textCertificate": "Sertifikat",
|
||||||
|
"Common.Views.SignDialog.textChange": "Endre",
|
||||||
|
"Common.Views.SignSettingsDialog.textAllowComment": "Tillat at den som signerer legger til en kommentar i signaturdialogen",
|
||||||
|
"DE.Controllers.LeftMenu.leavePageText": "Alle ulagrede endringer i dokumentet vil ikke bli lagret.<br>Klikk \"Avbryt\" og så \"Lagre\" for å lagre endringene. Klikk \"OK\" for å forkaste alle ulagrede endringer.",
|
||||||
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Advarsel",
|
||||||
|
"DE.Controllers.Main.criticalErrorTitle": "Feil",
|
||||||
|
"DE.Controllers.Main.errorDefaultMessage": "Feilkode: %1",
|
||||||
|
"DE.Controllers.Main.errorEditingDownloadas": "Det oppstod en feil ved arbeid med dokumentet. <br>Bruk 'Last ned som...' opsjonen til å lagre en kopi av dokumentet til din lokale datamaskin.",
|
||||||
|
"DE.Controllers.Main.errorEditingSaveas": "Det oppstod en feil ved arbeid med dokumentet.<br>Bruk opsjonen 'Lagre som...' til å lagre en kopi av dokumentet til din lokale datamaskin.",
|
||||||
|
"DE.Controllers.Main.errorForceSave": "Det skjedde en feil ved lagring av filen. Bruk opsjonen 'Lagre som...' til å lagre filen til din lokale datamaskin eller prøv igjen senere.",
|
||||||
|
"DE.Controllers.Main.notcriticalErrorTitle": "Advarsel",
|
||||||
|
"DE.Controllers.Main.openErrorText": "Det har skjedd en feil ved åpning av filen",
|
||||||
|
"DE.Controllers.Main.requestEditFailedTitleText": "Tilgang nektet",
|
||||||
|
"DE.Controllers.Main.saveErrorText": "Det har skjedd en feil ved lagring av filen",
|
||||||
|
"DE.Controllers.Main.textAnonymous": "Anonym",
|
||||||
|
"DE.Controllers.Main.textBuyNow": "Besøk webside",
|
||||||
|
"DE.Controllers.Main.textChangesSaved": "Alle endringer er lagret",
|
||||||
|
"DE.Controllers.Main.textClose": "Lukk",
|
||||||
|
"DE.Controllers.Main.textCloseTip": "Klikk for å lukke tipset",
|
||||||
|
"DE.Controllers.Main.txtAbove": "over",
|
||||||
|
"DE.Controllers.Main.txtBasicShapes": "Basisformer",
|
||||||
|
"DE.Controllers.Main.txtBelow": "under",
|
||||||
|
"DE.Controllers.Main.txtBookmarkError": "Feil! Bokmerke er ikke definert",
|
||||||
|
"DE.Controllers.Main.txtButtons": "Knapper",
|
||||||
|
"DE.Controllers.Main.txtCallouts": "Henvisninger",
|
||||||
|
"DE.Controllers.Main.txtCharts": "Diagram",
|
||||||
|
"DE.Controllers.Main.txtCurrentDocument": "Gjeldende dokument",
|
||||||
|
"DE.Controllers.Main.txtDiagramTitle": "Diagramtittel",
|
||||||
|
"DE.Controllers.Main.txtEvenPage": "Partallside",
|
||||||
|
"DE.Controllers.Main.txtFiguredArrows": "Pilfigurer",
|
||||||
|
"DE.Controllers.Main.txtSection": "-Seksjon",
|
||||||
|
"DE.Controllers.Main.txtTableOfContents": "Innholdsfortegnelse",
|
||||||
|
"DE.Controllers.Navigation.txtBeginning": "Starten av dokumentet",
|
||||||
|
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Advarsel",
|
||||||
|
"DE.Controllers.Toolbar.textAccent": "Aksenter",
|
||||||
|
"DE.Controllers.Toolbar.textBracket": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.textSymbols": "Symboler",
|
||||||
|
"DE.Controllers.Toolbar.textWarning": "Advarsel",
|
||||||
|
"DE.Controllers.Toolbar.txtAccent_Accent": "Akutt",
|
||||||
|
"DE.Controllers.Toolbar.txtAccent_Bar": "Linje",
|
||||||
|
"DE.Controllers.Toolbar.txtAccent_BorderBox": "Innrammet formel (med eksempel)",
|
||||||
|
"DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Innrammet formel(Eksempel)",
|
||||||
|
"DE.Controllers.Toolbar.txtAccent_Check": "Avkryssingsboks",
|
||||||
|
"DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC med overstrekning",
|
||||||
|
"DE.Controllers.Toolbar.txtAccent_Smile": "Kort",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Angle": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Klammeparenteser med skillelinjer ",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Klammeparenteser med skillelinjer ",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Curve": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Klammeparenteser med skillelinjer ",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Tilfeller (To betingelser)",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Custom_2": "Tilfeller (Tre betingelser)",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Case-eksempler",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomialkoeffisienten",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomialkoeffisienten",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Line": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_LowLim": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Round": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Klammeparenteser med skillelinjer ",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Square": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtBracket_UppLim": "Klammeparantes",
|
||||||
|
"DE.Controllers.Toolbar.txtFunction_Cos": "cosinus funksjon",
|
||||||
|
"DE.Controllers.Toolbar.txtFunction_Cot": "Cotangens funksjon",
|
||||||
|
"DE.Controllers.Toolbar.txtIntegralDouble": "Dobbeltintegral",
|
||||||
|
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Dobbeltintegral",
|
||||||
|
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Dobbeltintegral",
|
||||||
|
"DE.Controllers.Toolbar.txtLimitLog_Ln": "Naturlig logaritme",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 tom matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 tom matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 tom matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 tom matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 tom matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 tom matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 tom matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 tom matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Grunnlinjepunkt",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonale prikker",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identitets matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identitetsmatrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identitets-matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identitets-matrise",
|
||||||
|
"DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta er lik",
|
||||||
|
"DE.Controllers.Toolbar.txtRadicalRoot_3": "Kubikkrot",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_about": "Omtrent",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_aleph": "Alef",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_alpha": "Alfa",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_approx": "Nesten lik",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_ast": "Stjerne operatoren",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_beta": "Beta",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_beth": "Bud",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_bullet": "Punktoperatør",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_cbrt": "Kubikkrot",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_celsius": "grader celsius",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_chi": "Chi",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_cong": "Tilnærmet lik",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_degree": "grader",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_delta": "Delta",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_eta": "Eta",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Grader fahrenheit",
|
||||||
|
"DE.Controllers.Toolbar.txtSymbol_times": "Multiplikasjons-tegn",
|
||||||
|
"DE.Views.BookmarksDialog.textAdd": "Legg til",
|
||||||
|
"DE.Views.BookmarksDialog.textBookmarkName": "Bokmerk navnet",
|
||||||
|
"DE.Views.BookmarksDialog.textClose": "Lukk",
|
||||||
|
"DE.Views.BookmarksDialog.textDelete": "Slett",
|
||||||
|
"DE.Views.BookmarksDialog.textTitle": "Bokmerker",
|
||||||
|
"DE.Views.BookmarksDialog.txtInvalidName": "Bokmerkets navn kan bare inneholde bokstaver, tall og streker, og skal begynne med bokstaven",
|
||||||
|
"DE.Views.ChartSettings.textChartType": "Endre diagramtype",
|
||||||
|
"DE.Views.ChartSettings.textEditData": "Rediger data",
|
||||||
|
"DE.Views.ChartSettings.textOriginalSize": "Standard størrelse",
|
||||||
|
"DE.Views.ChartSettings.txtBehind": "Bak",
|
||||||
|
"DE.Views.ChartSettings.txtInFront": "Foran",
|
||||||
|
"DE.Views.ChartSettings.txtTitle": "Diagram",
|
||||||
|
"DE.Views.ControlSettingsDialog.textAppearance": "Utseende",
|
||||||
|
"DE.Views.ControlSettingsDialog.textApplyAll": "Bruk på alle",
|
||||||
|
"DE.Views.ControlSettingsDialog.textBox": "Avgrensningsboks",
|
||||||
|
"DE.Views.ControlSettingsDialog.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.DocumentHolder.aboveText": "Over",
|
||||||
|
"DE.Views.DocumentHolder.addCommentText": "Tilføy kommentar",
|
||||||
|
"DE.Views.DocumentHolder.advancedTableText": "Avanserte tabell-innstillinger",
|
||||||
|
"DE.Views.DocumentHolder.advancedText": "Avanserte innstillinger",
|
||||||
|
"DE.Views.DocumentHolder.alignmentText": "Oppstilling",
|
||||||
|
"DE.Views.DocumentHolder.belowText": "Under",
|
||||||
|
"DE.Views.DocumentHolder.bulletsText": "Punkter og nummerering",
|
||||||
|
"DE.Views.DocumentHolder.cellAlignText": "Loddrett justering",
|
||||||
|
"DE.Views.DocumentHolder.cellText": "Celle",
|
||||||
|
"DE.Views.DocumentHolder.centerText": "Senter",
|
||||||
|
"DE.Views.DocumentHolder.chartText": "Diagram avanserte innstillinger",
|
||||||
|
"DE.Views.DocumentHolder.columnText": "Kolonne",
|
||||||
|
"DE.Views.DocumentHolder.deleteColumnText": "Slett kolonne",
|
||||||
|
"DE.Views.DocumentHolder.deleteRowText": "Slett rad",
|
||||||
|
"DE.Views.DocumentHolder.deleteTableText": "Slett tabell",
|
||||||
|
"DE.Views.DocumentHolder.deleteText": "Slett",
|
||||||
|
"DE.Views.DocumentHolder.editChartText": "Rediger data",
|
||||||
|
"DE.Views.DocumentHolder.editFooterText": "Rediger bunntekst",
|
||||||
|
"DE.Views.DocumentHolder.editHeaderText": "Rediger topptekst",
|
||||||
|
"DE.Views.DocumentHolder.editHyperlinkText": "Rediger lenke",
|
||||||
|
"DE.Views.DocumentHolder.leftText": "Venstre",
|
||||||
|
"DE.Views.DocumentHolder.originalSizeText": "Standard størrelse",
|
||||||
|
"DE.Views.DocumentHolder.saveStyleText": "Opprett ny stil",
|
||||||
|
"DE.Views.DocumentHolder.tableText": "Tabell",
|
||||||
|
"DE.Views.DocumentHolder.textAlign": "Still opp",
|
||||||
|
"DE.Views.DocumentHolder.textArrange": "Ordne",
|
||||||
|
"DE.Views.DocumentHolder.textArrangeForward": "Flytt fremover",
|
||||||
|
"DE.Views.DocumentHolder.textArrangeFront": "Plasser fremst",
|
||||||
|
"DE.Views.DocumentHolder.textContinueNumbering": "Fortsett nummerering",
|
||||||
|
"DE.Views.DocumentHolder.textCopy": "Kopier",
|
||||||
|
"DE.Views.DocumentHolder.textCut": "Klipp ut",
|
||||||
|
"DE.Views.DocumentHolder.textDistributeRows": "Fordel rader",
|
||||||
|
"DE.Views.DocumentHolder.textEditWrapBoundary": "Rediger ombrytningsgrense",
|
||||||
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Still opp bunn",
|
||||||
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Still opp senter",
|
||||||
|
"DE.Views.DocumentHolder.textShapeAlignLeft": "Still opp venstre",
|
||||||
|
"DE.Views.DocumentHolder.textShapeAlignMiddle": "Still opp midt",
|
||||||
|
"DE.Views.DocumentHolder.textShapeAlignRight": "Still opp høyre",
|
||||||
|
"DE.Views.DocumentHolder.textShapeAlignTop": "Still opp topp",
|
||||||
|
"DE.Views.DocumentHolder.textTOC": "Innholdsfortegnelse",
|
||||||
|
"DE.Views.DocumentHolder.textTOCSettings": "Innstillinger for innholdsfortegnelsen",
|
||||||
|
"DE.Views.DocumentHolder.txtAddBottom": "Legg til bunnramme",
|
||||||
|
"DE.Views.DocumentHolder.txtAddFractionBar": "Legg til brøkstrek",
|
||||||
|
"DE.Views.DocumentHolder.txtAddHor": "Legg til horisontal linje",
|
||||||
|
"DE.Views.DocumentHolder.txtAddLB": "Legg til bunnlinje",
|
||||||
|
"DE.Views.DocumentHolder.txtAddLeft": "Legg til venstre ramme",
|
||||||
|
"DE.Views.DocumentHolder.txtAddLT": "Legg til venstre topplinje",
|
||||||
|
"DE.Views.DocumentHolder.txtAddRight": "Legg til høyre ramme",
|
||||||
|
"DE.Views.DocumentHolder.txtAddTop": "Legg til toppramme",
|
||||||
|
"DE.Views.DocumentHolder.txtAddVer": "Legg til vertikal linje",
|
||||||
|
"DE.Views.DocumentHolder.txtAlignToChar": "Juster til tegn",
|
||||||
|
"DE.Views.DocumentHolder.txtBehind": "Bak",
|
||||||
|
"DE.Views.DocumentHolder.txtBorderProps": "Rammeegenskaper",
|
||||||
|
"DE.Views.DocumentHolder.txtBottom": "Bunn",
|
||||||
|
"DE.Views.DocumentHolder.txtDecreaseArg": "Reduser argumentets størrelse",
|
||||||
|
"DE.Views.DocumentHolder.txtDeleteArg": "Slett argument",
|
||||||
|
"DE.Views.DocumentHolder.txtDeleteBreak": "Slett manuelt linjeskift",
|
||||||
|
"DE.Views.DocumentHolder.txtDeleteChars": "Slett de omsluttende tegnene",
|
||||||
|
"DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Slett de omsluttende tegnene og seperatorer",
|
||||||
|
"DE.Views.DocumentHolder.txtDeleteEq": "Slett ligning",
|
||||||
|
"DE.Views.DocumentHolder.txtDeleteGroupChar": "Slett bokstav",
|
||||||
|
"DE.Views.DocumentHolder.txtFractionLinear": "Endre til lineær brøk",
|
||||||
|
"DE.Views.DocumentHolder.txtFractionSkewed": "Endre til skjev brøk",
|
||||||
|
"DE.Views.DocumentHolder.txtFractionStacked": "Endre til stablet brøk",
|
||||||
|
"DE.Views.DocumentHolder.txtGroupCharOver": "Karakter over tekst",
|
||||||
|
"DE.Views.DocumentHolder.txtGroupCharUnder": "Karakter under tekst",
|
||||||
|
"DE.Views.DocumentHolder.txtInFront": "Foran",
|
||||||
|
"DE.Views.DocumentHolder.txtLimitChange": "Endre avgrensningsplassering",
|
||||||
|
"DE.Views.DocumentHolder.txtOverbar": "Linje over teksten",
|
||||||
|
"DE.Views.DocumentHolder.txtUnderbar": "Linje under teksten",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.strBorders": "Linjer & Fyll",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textAlign": "Oppstilling",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Minst",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textAuto": "Auto",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Bakgrunnsfarge",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Linjefarge",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Klikk på diagrammet eller bruk knappene til å velge rammer",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Linjestørrelse",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textBottom": "Bunn",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textCenter": "Senter",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textColumn": "Kolonne",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textExact": "Nøyaktig",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textLeft": "Venstre",
|
||||||
|
"DE.Views.DropcapSettingsAdvanced.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.FileMenu.btnCloseMenuCaption": "Lukk menyen",
|
||||||
|
"DE.Views.FileMenu.btnCreateNewCaption": "Opprett ny",
|
||||||
|
"DE.Views.FileMenu.btnReturnCaption": "Tilbake til dokument",
|
||||||
|
"DE.Views.FileMenu.btnRightsCaption": "Tilgangsrettigheter...",
|
||||||
|
"DE.Views.FileMenu.btnSettingsCaption": "Avanserte innstillinger...",
|
||||||
|
"DE.Views.FileMenu.btnToEditCaption": "Rediger dokument",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applikasjon",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Forfatter",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Endre tilgangsrettigheter",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboler",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Endre tilgangsrettigheter",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Med signatur",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Rediger dokument",
|
||||||
|
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "Vis signaturer",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.okButtonText": "Bruk",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strFast": "Hurtig",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strForcesave": "Lagre alltid til tjeneren (eller lagre til tjeneren når dokumentet lukkes)",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.strZoom": "Standard zoom-verdi",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Hvert 10. minutt",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.text30Minutes": "Hvert 30. minutt",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.text5Minutes": "Hvert 5. minutt",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.text60Minutes": "Hver time",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Hjelpelinjer",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatisk gjenoppretting",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Autolagre",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textDisabled": "Deaktivert",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Hvert minutt",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtAll": "Vis alt",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtInch": "Tomme",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtInput": "Alternativ inndata",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtMac": "som OS X",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtWin": "som Windows",
|
||||||
|
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bunn senter",
|
||||||
|
"DE.Views.HeaderFooterSettings.textBottomLeft": "Margin bunn",
|
||||||
|
"DE.Views.HeaderFooterSettings.textBottomPage": "Nederst på siden",
|
||||||
|
"DE.Views.HeaderFooterSettings.textBottomRight": "Bunn høyre",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Vis",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Starten av dokumentet",
|
||||||
|
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Bokmerker",
|
||||||
|
"DE.Views.ImageSettings.textEdit": "Rediger",
|
||||||
|
"DE.Views.ImageSettings.textEditObject": "Rediger objekt",
|
||||||
|
"DE.Views.ImageSettings.textOriginalSize": "Standard størrelse",
|
||||||
|
"DE.Views.ImageSettings.txtBehind": "Bak",
|
||||||
|
"DE.Views.ImageSettings.txtInFront": "Foran",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolutt",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textAlignment": "Oppstilling",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternativ tekst",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Beskrivelse",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textAngle": "Vinkel",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textArrows": "Piler",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Startstørrelse",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Startstil",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textBelow": "under",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textBevel": "Skråkant",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textBottom": "Bunn",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textBottomMargin": "Margin bunn",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textCapType": "Cap Type",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textCenter": "Senter",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textCharacter": "Tegn",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textColumn": "Kolonne",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textLeft": "Venstre",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Standard størrelse",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textOverlap": "Tillat overlapping",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Diagram - Avanserte innstillinger",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textVertically": "Vertikalt",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Bak",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Foran",
|
||||||
|
"DE.Views.LeftMenu.tipAbout": "Om",
|
||||||
|
"DE.Views.LeftMenu.tipChat": "Chat",
|
||||||
|
"DE.Views.LeftMenu.tipComments": "Kommentarer",
|
||||||
|
"DE.Views.LeftMenu.tipNavigation": "Navigasjon",
|
||||||
|
"DE.Views.LeftMenu.tipSupport": "Tilbakemelding og støtte",
|
||||||
|
"DE.Views.LeftMenu.txtDeveloper": "UTVIKLERMODUS",
|
||||||
|
"DE.Views.Links.capBtnBookmarks": "Lag bokmerke",
|
||||||
|
"DE.Views.Links.capBtnInsContents": "Innholdsfortegnelse",
|
||||||
|
"DE.Views.Links.mniDelFootnote": "Slett alle fotnoter",
|
||||||
|
"DE.Views.Links.tipBookmarks": "Opprett et bokmerke",
|
||||||
|
"DE.Views.Links.tipInsertHyperlink": "Tilføy lenke",
|
||||||
|
"DE.Views.MailMergeEmailDlg.textAttachDocx": "Legg ved som DOCX",
|
||||||
|
"DE.Views.MailMergeEmailDlg.textAttachPdf": "Legg ved som PDF",
|
||||||
|
"DE.Views.MailMergeEmailDlg.textFileName": "Filnavn",
|
||||||
|
"DE.Views.MailMergeSettings.textAddRecipients": "Legg til mottakere til listen først",
|
||||||
|
"DE.Views.MailMergeSettings.textAll": "Alle oppføringer",
|
||||||
|
"DE.Views.MailMergeSettings.textCurrent": "Gjeldende registrering",
|
||||||
|
"DE.Views.MailMergeSettings.textDataSource": "Datakilde",
|
||||||
|
"DE.Views.MailMergeSettings.textDocx": "Docx",
|
||||||
|
"DE.Views.MailMergeSettings.textEditData": "Rediger mottagerliste",
|
||||||
|
"DE.Views.MailMergeSettings.textSendMsg": "Alle meldinger er klargjort og vil bli sendt innen kort tid.<br>Dette vil avhenge av hastigheten på din epost-tjener.<br>Du kan fortsette å jobbe med dokumentet eller lukke det. Når oppgaven er fullført vil du få en melding om dette på din registrerte epost-adresse.",
|
||||||
|
"DE.Views.MailMergeSettings.txtFromToError": "\"Fra\"-verdien må være mindre enn \"Til\"-verdien",
|
||||||
|
"DE.Views.Navigation.txtDemote": "Degrader",
|
||||||
|
"DE.Views.NoteSettingsDialog.textApply": "Bruk",
|
||||||
|
"DE.Views.NoteSettingsDialog.textApplyTo": "Bruk endringer på",
|
||||||
|
"DE.Views.NoteSettingsDialog.textContinue": "Kontinuerlig",
|
||||||
|
"DE.Views.NoteSettingsDialog.textCustom": "Egendefinert markering",
|
||||||
|
"DE.Views.NoteSettingsDialog.textPageBottom": "Nederst på siden",
|
||||||
|
"DE.Views.NoteSettingsDialog.textSection": "Gjeldende seksjon",
|
||||||
|
"DE.Views.NoteSettingsDialog.textTextBottom": "Under teksten",
|
||||||
|
"DE.Views.PageMarginsDialog.textBottom": "Bunn",
|
||||||
|
"DE.Views.PageMarginsDialog.textLeft": "Venstre",
|
||||||
|
"DE.Views.PageSizeDialog.txtCustom": "Egendefinert",
|
||||||
|
"DE.Views.ParagraphSettings.strSpacingAfter": "Etter",
|
||||||
|
"DE.Views.ParagraphSettings.strSpacingBefore": "Før",
|
||||||
|
"DE.Views.ParagraphSettings.textAt": "Ved",
|
||||||
|
"DE.Views.ParagraphSettings.textAtLeast": "Minst",
|
||||||
|
"DE.Views.ParagraphSettings.textAuto": "Flere",
|
||||||
|
"DE.Views.ParagraphSettings.textBackColor": "Bakgrunnsfarge",
|
||||||
|
"DE.Views.ParagraphSettings.textExact": "Nøyaktig",
|
||||||
|
"DE.Views.ParagraphSettings.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Store bokstaver",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Linjer & Fyll",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Venstre",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Oppstilling",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Bakgrunnsfarge",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Linjefarge",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Linjestørrelse",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Bunn",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Tegnavstand",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Standard fane",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Venstre",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Senter",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Venstre",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tabulator posisjon",
|
||||||
|
"DE.Views.RightMenu.txtChartSettings": "Diagram innstillinger",
|
||||||
|
"DE.Views.ShapeSettings.strBackground": "Bakgrunnsfarge",
|
||||||
|
"DE.Views.ShapeSettings.strChange": "Endre autofigur",
|
||||||
|
"DE.Views.ShapeSettings.strColor": "Farge",
|
||||||
|
"DE.Views.ShapeSettings.textDirection": "Retning",
|
||||||
|
"DE.Views.ShapeSettings.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.ShapeSettings.txtBehind": "Bak",
|
||||||
|
"DE.Views.ShapeSettings.txtBrownPaper": "Gråpapir",
|
||||||
|
"DE.Views.ShapeSettings.txtCanvas": "Lerret",
|
||||||
|
"DE.Views.ShapeSettings.txtCarton": "Kartong",
|
||||||
|
"DE.Views.ShapeSettings.txtDarkFabric": "Mørkt stoff",
|
||||||
|
"DE.Views.ShapeSettings.txtInFront": "Foran",
|
||||||
|
"DE.Views.SignatureSettings.txtContinueEditing": "Rediger allikevel",
|
||||||
|
"DE.Views.StyleTitleDialog.textHeader": "Opprett ny stil",
|
||||||
|
"DE.Views.StyleTitleDialog.txtNotEmpty": "Feltet må ikke være tomt",
|
||||||
|
"DE.Views.TableOfContentsSettings.textBuildTable": "Bygg innholdsfortegnelsen fra",
|
||||||
|
"DE.Views.TableOfContentsSettings.textTitle": "Innholdsfortegnelse",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtClassic": "Klassisk",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtCurrent": "Nåværende",
|
||||||
|
"DE.Views.TableSettings.deleteColumnText": "Slett kolonne",
|
||||||
|
"DE.Views.TableSettings.deleteRowText": "Slett rad",
|
||||||
|
"DE.Views.TableSettings.deleteTableText": "Slett tabell",
|
||||||
|
"DE.Views.TableSettings.textBackColor": "Bakgrunnsfarge",
|
||||||
|
"DE.Views.TableSettings.textBanded": "Bundet",
|
||||||
|
"DE.Views.TableSettings.textBorderColor": "Farge",
|
||||||
|
"DE.Views.TableSettings.textBorders": "Linjestil",
|
||||||
|
"DE.Views.TableSettings.textCellSize": "Cellestørrelse",
|
||||||
|
"DE.Views.TableSettings.textDistributeRows": "Fordel rader",
|
||||||
|
"DE.Views.TableSettings.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textAlign": "Oppstilling",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textAlignment": "Oppstilling",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Tillat avstand mellom cellene",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textAlt": "Alternativ tekst",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textAltDescription": "Beskrivelse",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textAutofit": "Tilpass størrelse til å automatisk passe innholdet",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textBackColor": "Bakgrunnsfarge",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textBelow": "under",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textBorderColor": "Linjefarge",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Linjer & Bakgrunn",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Linjestørrelse",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textBottom": "Bunn",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textCellOptions": "Celle opsjoner",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textCellProps": "Celleegenskaper",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textCellSize": "Cellestørrelse",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textCenter": "Senter",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Senter",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textDefaultMargins": "Standard cellemarginer",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textLeft": "Venstre",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Venstre",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textMargins": "Cellemarginer",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textOverlap": "Tillat overlapping",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textTable": "Tabell",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textTableBackColor": "Tabell-bakgrunn",
|
||||||
|
"DE.Views.TableSettingsAdvanced.textWidthSpaces": "Bredde og mellomrom",
|
||||||
|
"DE.Views.TableSettingsAdvanced.txtCm": "Centimeter",
|
||||||
|
"DE.Views.TableSettingsAdvanced.txtInch": "Tomme",
|
||||||
|
"DE.Views.TextArtSettings.strColor": "Farge",
|
||||||
|
"DE.Views.TextArtSettings.textDirection": "Retning",
|
||||||
|
"DE.Views.TextArtSettings.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.Toolbar.capBtnBlankPage": "Tom side",
|
||||||
|
"DE.Views.Toolbar.capBtnInsChart": "Diagram",
|
||||||
|
"DE.Views.Toolbar.capBtnInsImage": "Bilde",
|
||||||
|
"DE.Views.Toolbar.capBtnInsPagebreak": "Brudd",
|
||||||
|
"DE.Views.Toolbar.capBtnInsTable": "Tabell",
|
||||||
|
"DE.Views.Toolbar.capImgAlign": "Still opp",
|
||||||
|
"DE.Views.Toolbar.capImgForward": "Flytt fremover",
|
||||||
|
"DE.Views.Toolbar.mniEditFooter": "Rediger bunntekst",
|
||||||
|
"DE.Views.Toolbar.mniEditHeader": "Rediger topptekst",
|
||||||
|
"DE.Views.Toolbar.textAutoColor": "Automatisk",
|
||||||
|
"DE.Views.Toolbar.textBold": "Fet",
|
||||||
|
"DE.Views.Toolbar.textBottom": "Bunn:",
|
||||||
|
"DE.Views.Toolbar.textColumnsCustom": "Egendefinerte kolonner",
|
||||||
|
"DE.Views.Toolbar.textColumnsLeft": "Venstre",
|
||||||
|
"DE.Views.Toolbar.textEvenPage": "Partallside",
|
||||||
|
"DE.Views.Toolbar.textMarginsNarrow": "Smal",
|
||||||
|
"DE.Views.Toolbar.textNewColor": "Legg til ny egendefinert farge",
|
||||||
|
"DE.Views.Toolbar.textPageMarginsCustom": "Egendefinerte marginer",
|
||||||
|
"DE.Views.Toolbar.textPageSizeCustom": "Egendefinert sidestørrelse",
|
||||||
|
"DE.Views.Toolbar.textStyleMenuDelete": "Slett stil",
|
||||||
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Slett alle brukerdefinerte formateringer",
|
||||||
|
"DE.Views.Toolbar.textTabFile": "Fil",
|
||||||
|
"DE.Views.Toolbar.textTitleError": "Feil",
|
||||||
|
"DE.Views.Toolbar.tipAlignCenter": "Still opp senter",
|
||||||
|
"DE.Views.Toolbar.tipAlignLeft": "Still opp venstre",
|
||||||
|
"DE.Views.Toolbar.tipAlignRight": "Still opp høyre",
|
||||||
|
"DE.Views.Toolbar.tipBack": "Tilbake",
|
||||||
|
"DE.Views.Toolbar.tipChangeChart": "Endre diagramtype",
|
||||||
|
"DE.Views.Toolbar.tipClearStyle": "Fjern formatering",
|
||||||
|
"DE.Views.Toolbar.tipColorSchemas": "Endre fargeoppsett",
|
||||||
|
"DE.Views.Toolbar.tipCopy": "Kopier",
|
||||||
|
"DE.Views.Toolbar.tipDecFont": "Reduser skriftstørrelsen",
|
||||||
|
"DE.Views.Toolbar.tipDecPrLeft": "Reduser innrykk",
|
||||||
|
"DE.Views.Toolbar.tipEditHeader": "Rediger topptekst eller bunntekst",
|
||||||
|
"DE.Views.Toolbar.tipImgAlign": "Still opp objekter",
|
||||||
|
"DE.Views.Toolbar.tipMarkers": "Kulepunkt",
|
||||||
|
"DE.Views.Toolbar.tipSendForward": "Flytt fremover",
|
||||||
|
"DE.Views.Toolbar.txtScheme3": "Spiss",
|
||||||
|
"DE.Views.Toolbar.txtScheme4": "Aspekt",
|
||||||
|
"DE.Views.Toolbar.txtScheme5": "Borgerlig"
|
||||||
|
}
|
|
@ -1003,7 +1003,7 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Co najmniej",
|
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Co najmniej",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textAuto": "Automatyczny",
|
"DE.Views.DropcapSettingsAdvanced.textAuto": "Automatyczny",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Kolor tła",
|
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Kolor tła",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Kolor obramowania",
|
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Kolor",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać obramowania",
|
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać obramowania",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Rozmiar obramowania",
|
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Rozmiar obramowania",
|
||||||
"DE.Views.DropcapSettingsAdvanced.textBottom": "Dół",
|
"DE.Views.DropcapSettingsAdvanced.textBottom": "Dół",
|
||||||
|
@ -1388,7 +1388,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Wyrównanie",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Wyrównanie",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Co najmniej",
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Co najmniej",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Kolor tła",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Kolor tła",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Kolor obramowania",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Kolor",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać granice i zastosuj do nich wybrany styl",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać granice i zastosuj do nich wybrany styl",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Rozmiar obramowania",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Rozmiar obramowania",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Dół",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Dół",
|
||||||
|
@ -1565,7 +1565,7 @@
|
||||||
"DE.Views.TableSettingsAdvanced.textAutofit": "Automatycznie zmień rozmiar, aby pasował do zawartości",
|
"DE.Views.TableSettingsAdvanced.textAutofit": "Automatycznie zmień rozmiar, aby pasował do zawartości",
|
||||||
"DE.Views.TableSettingsAdvanced.textBackColor": "Tło komórki",
|
"DE.Views.TableSettingsAdvanced.textBackColor": "Tło komórki",
|
||||||
"DE.Views.TableSettingsAdvanced.textBelow": "Poniżej",
|
"DE.Views.TableSettingsAdvanced.textBelow": "Poniżej",
|
||||||
"DE.Views.TableSettingsAdvanced.textBorderColor": "Kolor obramowania",
|
"DE.Views.TableSettingsAdvanced.textBorderColor": "Kolor",
|
||||||
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać granice i zastosuj do nich wybrany styl",
|
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać granice i zastosuj do nich wybrany styl",
|
||||||
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Obramowania i tła",
|
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Obramowania i tła",
|
||||||
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Rozmiar obramowania",
|
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Rozmiar obramowania",
|
||||||
|
|
|
@ -1357,7 +1357,7 @@
|
||||||
"DE.Views.DocumentHolder.txtOverbar": "Черта над текстом",
|
"DE.Views.DocumentHolder.txtOverbar": "Черта над текстом",
|
||||||
"DE.Views.DocumentHolder.txtOverwriteCells": "Заменить содержимое ячеек",
|
"DE.Views.DocumentHolder.txtOverwriteCells": "Заменить содержимое ячеек",
|
||||||
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Сохранить исходное форматирование",
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Сохранить исходное форматирование",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "Нажмите CTRL и щелкните по ссылке",
|
"DE.Views.DocumentHolder.txtPressLink": "Нажмите Ctrl и щелкните по ссылке",
|
||||||
"DE.Views.DocumentHolder.txtPrintSelection": "Напечатать выделенное",
|
"DE.Views.DocumentHolder.txtPrintSelection": "Напечатать выделенное",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "Удалить дробную черту",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "Удалить дробную черту",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "Удалить предел",
|
"DE.Views.DocumentHolder.txtRemLimit": "Удалить предел",
|
||||||
|
@ -1521,6 +1521,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Каждую минуту",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Каждую минуту",
|
||||||
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Сделать файлы совместимыми с более старыми версиями MS Word при сохранении как DOCX",
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Сделать файлы совместимыми с более старыми версиями MS Word при сохранении как DOCX",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "Все",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "Все",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Режим кэширования по умолчанию",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Сантиметр",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "Сантиметр",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "По размеру страницы",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "По размеру страницы",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "По ширине",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "По ширине",
|
||||||
|
@ -1534,7 +1535,6 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.txtPt": "Пункт",
|
"DE.Views.FileMenuPanels.Settings.txtPt": "Пункт",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка орфографии",
|
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Проверка орфографии",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtWin": "как Windows",
|
"DE.Views.FileMenuPanels.Settings.txtWin": "как Windows",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Режим кэширования по умолчанию",
|
|
||||||
"DE.Views.HeaderFooterSettings.textBottomCenter": "Снизу по центру",
|
"DE.Views.HeaderFooterSettings.textBottomCenter": "Снизу по центру",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomLeft": "Снизу слева",
|
"DE.Views.HeaderFooterSettings.textBottomLeft": "Снизу слева",
|
||||||
"DE.Views.HeaderFooterSettings.textBottomPage": "Внизу страницы",
|
"DE.Views.HeaderFooterSettings.textBottomPage": "Внизу страницы",
|
||||||
|
|
2250
apps/documenteditor/main/locale/sv.json
Normal file
|
@ -1316,7 +1316,7 @@
|
||||||
"DE.Views.RightMenu.txtTableSettings": "Tablo Ayarları",
|
"DE.Views.RightMenu.txtTableSettings": "Tablo Ayarları",
|
||||||
"DE.Views.RightMenu.txtTextArtSettings": "Text Art Settings",
|
"DE.Views.RightMenu.txtTextArtSettings": "Text Art Settings",
|
||||||
"DE.Views.ShapeSettings.strBackground": "Arka plan rengi",
|
"DE.Views.ShapeSettings.strBackground": "Arka plan rengi",
|
||||||
"DE.Views.ShapeSettings.strChange": "Otomatik Biçim Vermeyi Değiştir",
|
"DE.Views.ShapeSettings.strChange": "Otomatik Şeklini Değiştir",
|
||||||
"DE.Views.ShapeSettings.strColor": "Renk",
|
"DE.Views.ShapeSettings.strColor": "Renk",
|
||||||
"DE.Views.ShapeSettings.strFill": "Doldur",
|
"DE.Views.ShapeSettings.strFill": "Doldur",
|
||||||
"DE.Views.ShapeSettings.strForeground": "Önplan rengi",
|
"DE.Views.ShapeSettings.strForeground": "Önplan rengi",
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
"Common.Controllers.ExternalMergeEditor.warningText": "该对象被禁用,因为它被另一个用户编辑。",
|
"Common.Controllers.ExternalMergeEditor.warningText": "该对象被禁用,因为它被另一个用户编辑。",
|
||||||
"Common.Controllers.ExternalMergeEditor.warningTitle": "警告",
|
"Common.Controllers.ExternalMergeEditor.warningTitle": "警告",
|
||||||
"Common.Controllers.History.notcriticalErrorTitle": "警告",
|
"Common.Controllers.History.notcriticalErrorTitle": "警告",
|
||||||
|
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "为了比较文件,文件中所有跟踪的更改都将被视为已被接受。你想继续吗?",
|
||||||
"Common.Controllers.ReviewChanges.textAtLeast": "至少",
|
"Common.Controllers.ReviewChanges.textAtLeast": "至少",
|
||||||
"Common.Controllers.ReviewChanges.textAuto": "自动",
|
"Common.Controllers.ReviewChanges.textAuto": "自动",
|
||||||
"Common.Controllers.ReviewChanges.textBaseline": "基线",
|
"Common.Controllers.ReviewChanges.textBaseline": "基线",
|
||||||
|
@ -68,15 +69,50 @@
|
||||||
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>表格行已删除</b>",
|
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>表格行已删除</b>",
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "更改选项卡",
|
"Common.Controllers.ReviewChanges.textTabs": "更改选项卡",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "下划线",
|
"Common.Controllers.ReviewChanges.textUnderline": "下划线",
|
||||||
|
"Common.Controllers.ReviewChanges.textUrl": "粘贴文档URL",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "视窗控制",
|
"Common.Controllers.ReviewChanges.textWidow": "视窗控制",
|
||||||
"Common.define.chartData.textArea": "区域",
|
"Common.define.chartData.textArea": "区域",
|
||||||
"Common.define.chartData.textBar": "条",
|
"Common.define.chartData.textBar": "条",
|
||||||
|
"Common.define.chartData.textCharts": "图表",
|
||||||
"Common.define.chartData.textColumn": "列",
|
"Common.define.chartData.textColumn": "列",
|
||||||
"Common.define.chartData.textLine": "线",
|
"Common.define.chartData.textLine": "线",
|
||||||
"Common.define.chartData.textPie": "派",
|
"Common.define.chartData.textPie": "派",
|
||||||
"Common.define.chartData.textPoint": "XY(散射)",
|
"Common.define.chartData.textPoint": "XY(散射)",
|
||||||
"Common.define.chartData.textStock": "股票",
|
"Common.define.chartData.textStock": "股票",
|
||||||
"Common.define.chartData.textSurface": "平面",
|
"Common.define.chartData.textSurface": "平面",
|
||||||
|
"Common.UI.Calendar.textApril": "四月",
|
||||||
|
"Common.UI.Calendar.textAugust": "八月",
|
||||||
|
"Common.UI.Calendar.textDecember": "十二月",
|
||||||
|
"Common.UI.Calendar.textFebruary": "二月",
|
||||||
|
"Common.UI.Calendar.textJanuary": "一月",
|
||||||
|
"Common.UI.Calendar.textJuly": "七月",
|
||||||
|
"Common.UI.Calendar.textJune": "六月",
|
||||||
|
"Common.UI.Calendar.textMarch": "三月",
|
||||||
|
"Common.UI.Calendar.textMay": "五月",
|
||||||
|
"Common.UI.Calendar.textMonths": "月",
|
||||||
|
"Common.UI.Calendar.textNovember": "十一月",
|
||||||
|
"Common.UI.Calendar.textOctober": "十月",
|
||||||
|
"Common.UI.Calendar.textSeptember": "九月",
|
||||||
|
"Common.UI.Calendar.textShortApril": "四月",
|
||||||
|
"Common.UI.Calendar.textShortAugust": "八月",
|
||||||
|
"Common.UI.Calendar.textShortDecember": "十二月",
|
||||||
|
"Common.UI.Calendar.textShortFebruary": "二月",
|
||||||
|
"Common.UI.Calendar.textShortFriday": "星期五",
|
||||||
|
"Common.UI.Calendar.textShortJanuary": "一月",
|
||||||
|
"Common.UI.Calendar.textShortJuly": "七月",
|
||||||
|
"Common.UI.Calendar.textShortJune": "六月",
|
||||||
|
"Common.UI.Calendar.textShortMarch": "三月",
|
||||||
|
"Common.UI.Calendar.textShortMay": "五月",
|
||||||
|
"Common.UI.Calendar.textShortMonday": "星期一",
|
||||||
|
"Common.UI.Calendar.textShortNovember": "十一月",
|
||||||
|
"Common.UI.Calendar.textShortOctober": "十月",
|
||||||
|
"Common.UI.Calendar.textShortSaturday": "星期六",
|
||||||
|
"Common.UI.Calendar.textShortSeptember": "九月",
|
||||||
|
"Common.UI.Calendar.textShortSunday": "星期日",
|
||||||
|
"Common.UI.Calendar.textShortThursday": "星期四",
|
||||||
|
"Common.UI.Calendar.textShortTuesday": "星期二",
|
||||||
|
"Common.UI.Calendar.textShortWednesday": "我们",
|
||||||
|
"Common.UI.Calendar.textYears": "年",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
|
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
||||||
|
@ -167,6 +203,7 @@
|
||||||
"Common.Views.Header.tipRedo": "重做",
|
"Common.Views.Header.tipRedo": "重做",
|
||||||
"Common.Views.Header.tipSave": "保存",
|
"Common.Views.Header.tipSave": "保存",
|
||||||
"Common.Views.Header.tipUndo": "复原",
|
"Common.Views.Header.tipUndo": "复原",
|
||||||
|
"Common.Views.Header.tipUndock": "打开单独的窗口",
|
||||||
"Common.Views.Header.tipViewSettings": "视图设置",
|
"Common.Views.Header.tipViewSettings": "视图设置",
|
||||||
"Common.Views.Header.tipViewUsers": "查看用户和管理文档访问权限",
|
"Common.Views.Header.tipViewUsers": "查看用户和管理文档访问权限",
|
||||||
"Common.Views.Header.txtAccessRights": "更改访问权限",
|
"Common.Views.Header.txtAccessRights": "更改访问权限",
|
||||||
|
@ -222,12 +259,19 @@
|
||||||
"Common.Views.RenameDialog.txtInvalidName": "文件名不能包含以下任何字符:",
|
"Common.Views.RenameDialog.txtInvalidName": "文件名不能包含以下任何字符:",
|
||||||
"Common.Views.ReviewChanges.hintNext": "下一个变化",
|
"Common.Views.ReviewChanges.hintNext": "下一个变化",
|
||||||
"Common.Views.ReviewChanges.hintPrev": "以前的变化",
|
"Common.Views.ReviewChanges.hintPrev": "以前的变化",
|
||||||
|
"Common.Views.ReviewChanges.mniFromFile": "文件中的文档",
|
||||||
|
"Common.Views.ReviewChanges.mniFromStorage": " 存储中的文档",
|
||||||
|
"Common.Views.ReviewChanges.mniFromUrl": "url中的文档",
|
||||||
|
"Common.Views.ReviewChanges.mniSettings": "比较设置",
|
||||||
"Common.Views.ReviewChanges.strFast": "快速",
|
"Common.Views.ReviewChanges.strFast": "快速",
|
||||||
"Common.Views.ReviewChanges.strFastDesc": "实时共同编辑。所有更改将会自动保存。",
|
"Common.Views.ReviewChanges.strFastDesc": "实时共同编辑。所有更改将会自动保存。",
|
||||||
"Common.Views.ReviewChanges.strStrict": "严格",
|
"Common.Views.ReviewChanges.strStrict": "严格",
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按钮同步您和其他人所做的更改。",
|
"Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按钮同步您和其他人所做的更改。",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "接受当前的变化",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "接受当前的变化",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "设置共同编辑模式",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "设置共同编辑模式",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "删除评论",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "删除现在的评论",
|
||||||
|
"Common.Views.ReviewChanges.tipCompare": "将当前文档与另一个文档进行比较",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "显示历史版本",
|
"Common.Views.ReviewChanges.tipHistory": "显示历史版本",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "拒绝当前的变化",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "拒绝当前的变化",
|
||||||
"Common.Views.ReviewChanges.tipReview": "跟踪变化",
|
"Common.Views.ReviewChanges.tipReview": "跟踪变化",
|
||||||
|
@ -242,6 +286,12 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "聊天",
|
"Common.Views.ReviewChanges.txtChat": "聊天",
|
||||||
"Common.Views.ReviewChanges.txtClose": "关闭",
|
"Common.Views.ReviewChanges.txtClose": "关闭",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "共同编辑模式",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "共同编辑模式",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "删除全评论",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "删除现在的评论",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "删除我评论",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "删除我现在评论",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "删除",
|
||||||
|
"Common.Views.ReviewChanges.txtCompare": "比较",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "语言",
|
"Common.Views.ReviewChanges.txtDocLang": "语言",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "已接受所有更改(预览)",
|
"Common.Views.ReviewChanges.txtFinal": "已接受所有更改(预览)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "最终版",
|
"Common.Views.ReviewChanges.txtFinalCap": "最终版",
|
||||||
|
@ -275,6 +325,8 @@
|
||||||
"Common.Views.ReviewPopover.textClose": "关闭",
|
"Common.Views.ReviewPopover.textClose": "关闭",
|
||||||
"Common.Views.ReviewPopover.textEdit": "确定",
|
"Common.Views.ReviewPopover.textEdit": "确定",
|
||||||
"Common.Views.ReviewPopover.textFollowMove": "跟随移动",
|
"Common.Views.ReviewPopover.textFollowMove": "跟随移动",
|
||||||
|
"Common.Views.ReviewPopover.textMention": "+提供访问文档和发送电子邮件的权限",
|
||||||
|
"Common.Views.ReviewPopover.textMentionNotify": "+通知将通过电子邮件通知用户",
|
||||||
"Common.Views.ReviewPopover.textOpenAgain": "再次打开",
|
"Common.Views.ReviewPopover.textOpenAgain": "再次打开",
|
||||||
"Common.Views.ReviewPopover.textReply": "回复",
|
"Common.Views.ReviewPopover.textReply": "回复",
|
||||||
"Common.Views.ReviewPopover.textResolve": "解决",
|
"Common.Views.ReviewPopover.textResolve": "解决",
|
||||||
|
@ -305,6 +357,11 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "在签名行中显示签名日期",
|
"Common.Views.SignSettingsDialog.textShowDate": "在签名行中显示签名日期",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "签名设置",
|
"Common.Views.SignSettingsDialog.textTitle": "签名设置",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "这是必填栏",
|
"Common.Views.SignSettingsDialog.txtEmpty": "这是必填栏",
|
||||||
|
"Common.Views.SymbolTableDialog.textCode": "Unicode十六进制值",
|
||||||
|
"Common.Views.SymbolTableDialog.textFont": "字体 ",
|
||||||
|
"Common.Views.SymbolTableDialog.textRange": "范围",
|
||||||
|
"Common.Views.SymbolTableDialog.textRecent": "最近使用的符号",
|
||||||
|
"Common.Views.SymbolTableDialog.textTitle": "符号",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "本文档中的所有未保存的更改都将丢失。<br>单击“取消”,然后单击“保存”保存。单击“确定”以放弃所有未保存的更改。",
|
"DE.Controllers.LeftMenu.leavePageText": "本文档中的所有未保存的更改都将丢失。<br>单击“取消”,然后单击“保存”保存。单击“确定”以放弃所有未保存的更改。",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "未命名的文档",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "未命名的文档",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告",
|
||||||
|
@ -313,6 +370,7 @@
|
||||||
"DE.Controllers.LeftMenu.textNoTextFound": "您搜索的数据无法找到。请调整您的搜索选项。",
|
"DE.Controllers.LeftMenu.textNoTextFound": "您搜索的数据无法找到。请调整您的搜索选项。",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSkipped": "已经更换了。{0}次跳过。",
|
"DE.Controllers.LeftMenu.textReplaceSkipped": "已经更换了。{0}次跳过。",
|
||||||
"DE.Controllers.LeftMenu.textReplaceSuccess": "他的搜索已经完成。发生次数:{0}",
|
"DE.Controllers.LeftMenu.textReplaceSuccess": "他的搜索已经完成。发生次数:{0}",
|
||||||
|
"DE.Controllers.LeftMenu.txtCompatible": "文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局。<br>如果要使文件与较旧的MS Word版本兼容,请使用高级设置的“兼容性”选项。",
|
||||||
"DE.Controllers.LeftMenu.txtUntitled": "无标题",
|
"DE.Controllers.LeftMenu.txtUntitled": "无标题",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。<br>您确定要继续吗?",
|
"DE.Controllers.LeftMenu.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。<br>您确定要继续吗?",
|
||||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果您继续以此格式保存,一些格式可能会丢失。<br>您确定要继续吗?",
|
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果您继续以此格式保存,一些格式可能会丢失。<br>您确定要继续吗?",
|
||||||
|
@ -334,10 +392,12 @@
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "加密更改已收到,无法对其解密。",
|
"DE.Controllers.Main.errorDataEncrypted": "加密更改已收到,无法对其解密。",
|
||||||
"DE.Controllers.Main.errorDataRange": "数据范围不正确",
|
"DE.Controllers.Main.errorDataRange": "数据范围不正确",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "错误代码:%1",
|
"DE.Controllers.Main.errorDefaultMessage": "错误代码:%1",
|
||||||
|
"DE.Controllers.Main.errorDirectUrl": "请验证指向文档的链接。<br>此链接必须是指向要下载的文件的直接链接。",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "在处理文档期间发生错误。<br>使用“下载为…”选项将文件备份复制到您的计算机硬盘中。",
|
"DE.Controllers.Main.errorEditingDownloadas": "在处理文档期间发生错误。<br>使用“下载为…”选项将文件备份复制到您的计算机硬盘中。",
|
||||||
"DE.Controllers.Main.errorEditingSaveas": "在处理文档期间发生错误。<br>使用“另存为…”选项将文件备份复制到计算机硬盘中。",
|
"DE.Controllers.Main.errorEditingSaveas": "在处理文档期间发生错误。<br>使用“另存为…”选项将文件备份复制到计算机硬盘中。",
|
||||||
"DE.Controllers.Main.errorEmailClient": "未找到电子邮件客户端。",
|
"DE.Controllers.Main.errorEmailClient": "未找到电子邮件客户端。",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "该文档受密码保护,无法被打开。",
|
"DE.Controllers.Main.errorFilePassProtect": "该文档受密码保护,无法被打开。",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.<br>有关详细信息,请与文档服务器管理员联系。",
|
||||||
"DE.Controllers.Main.errorForceSave": "保存文件时发生错误请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。",
|
"DE.Controllers.Main.errorForceSave": "保存文件时发生错误请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "未知密钥描述",
|
"DE.Controllers.Main.errorKeyEncrypt": "未知密钥描述",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "密钥过期",
|
"DE.Controllers.Main.errorKeyExpire": "密钥过期",
|
||||||
|
@ -352,6 +412,7 @@
|
||||||
"DE.Controllers.Main.errorToken": "文档安全令牌未正确形成。<br>请与您的文件服务器管理员联系。",
|
"DE.Controllers.Main.errorToken": "文档安全令牌未正确形成。<br>请与您的文件服务器管理员联系。",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "文档安全令牌已过期。<br>请与您的文档服务器管理员联系。",
|
"DE.Controllers.Main.errorTokenExpire": "文档安全令牌已过期。<br>请与您的文档服务器管理员联系。",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "该文件版本已经改变了。该页面将被重新加载。",
|
"DE.Controllers.Main.errorUpdateVersion": "该文件版本已经改变了。该页面将被重新加载。",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "网连接已还原文件版本已更改。.<br>在继续工作之前,需要下载文件或复制其内容以确保没有丢失任何内容,然后重新加载此页。",
|
||||||
"DE.Controllers.Main.errorUserDrop": "该文件现在无法访问。",
|
"DE.Controllers.Main.errorUserDrop": "该文件现在无法访问。",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "超过了定价计划允许的用户数",
|
"DE.Controllers.Main.errorUsersExceed": "超过了定价计划允许的用户数",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档<br>,但在连接恢复之前无法下载或打印。",
|
"DE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档<br>,但在连接恢复之前无法下载或打印。",
|
||||||
|
@ -412,6 +473,7 @@
|
||||||
"DE.Controllers.Main.txtButtons": "按钮",
|
"DE.Controllers.Main.txtButtons": "按钮",
|
||||||
"DE.Controllers.Main.txtCallouts": "标注",
|
"DE.Controllers.Main.txtCallouts": "标注",
|
||||||
"DE.Controllers.Main.txtCharts": "图表",
|
"DE.Controllers.Main.txtCharts": "图表",
|
||||||
|
"DE.Controllers.Main.txtChoose": "选择一个项目",
|
||||||
"DE.Controllers.Main.txtCurrentDocument": "当前文件",
|
"DE.Controllers.Main.txtCurrentDocument": "当前文件",
|
||||||
"DE.Controllers.Main.txtDiagramTitle": "图表标题",
|
"DE.Controllers.Main.txtDiagramTitle": "图表标题",
|
||||||
"DE.Controllers.Main.txtEditingMode": "设置编辑模式..",
|
"DE.Controllers.Main.txtEditingMode": "设置编辑模式..",
|
||||||
|
@ -426,12 +488,15 @@
|
||||||
"DE.Controllers.Main.txtHyperlink": "超链接",
|
"DE.Controllers.Main.txtHyperlink": "超链接",
|
||||||
"DE.Controllers.Main.txtIndTooLarge": "指数过大",
|
"DE.Controllers.Main.txtIndTooLarge": "指数过大",
|
||||||
"DE.Controllers.Main.txtLines": "行",
|
"DE.Controllers.Main.txtLines": "行",
|
||||||
|
"DE.Controllers.Main.txtMainDocOnly": "错误!仅限主文档。",
|
||||||
"DE.Controllers.Main.txtMath": "数学",
|
"DE.Controllers.Main.txtMath": "数学",
|
||||||
"DE.Controllers.Main.txtMissArg": "缺少参数",
|
"DE.Controllers.Main.txtMissArg": "缺少参数",
|
||||||
"DE.Controllers.Main.txtMissOperator": "缺少运算符",
|
"DE.Controllers.Main.txtMissOperator": "缺少运算符",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "你有更新",
|
"DE.Controllers.Main.txtNeedSynchronize": "你有更新",
|
||||||
"DE.Controllers.Main.txtNoTableOfContents": "未找到目录条目。",
|
"DE.Controllers.Main.txtNoTableOfContents": "未找到目录条目。",
|
||||||
|
"DE.Controllers.Main.txtNoText": "错误!文档中没有指定样式的文本。",
|
||||||
"DE.Controllers.Main.txtNotInTable": "不在表格中",
|
"DE.Controllers.Main.txtNotInTable": "不在表格中",
|
||||||
|
"DE.Controllers.Main.txtNotValidBookmark": "错误!不是有效的书签自引用。",
|
||||||
"DE.Controllers.Main.txtOddPage": "奇数页",
|
"DE.Controllers.Main.txtOddPage": "奇数页",
|
||||||
"DE.Controllers.Main.txtOnPage": "在页面上",
|
"DE.Controllers.Main.txtOnPage": "在页面上",
|
||||||
"DE.Controllers.Main.txtRectangles": "矩形",
|
"DE.Controllers.Main.txtRectangles": "矩形",
|
||||||
|
@ -610,6 +675,7 @@
|
||||||
"DE.Controllers.Main.txtShape_wedgeRectCallout": "矩形标注",
|
"DE.Controllers.Main.txtShape_wedgeRectCallout": "矩形标注",
|
||||||
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "圆角矩形标注",
|
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "圆角矩形标注",
|
||||||
"DE.Controllers.Main.txtStarsRibbons": "星星和丝带",
|
"DE.Controllers.Main.txtStarsRibbons": "星星和丝带",
|
||||||
|
"DE.Controllers.Main.txtStyle_Caption": "标题",
|
||||||
"DE.Controllers.Main.txtStyle_footnote_text": "脚注文本",
|
"DE.Controllers.Main.txtStyle_footnote_text": "脚注文本",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_1": "标题1",
|
"DE.Controllers.Main.txtStyle_Heading_1": "标题1",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_2": "标题2",
|
"DE.Controllers.Main.txtStyle_Heading_2": "标题2",
|
||||||
|
@ -637,6 +703,9 @@
|
||||||
"DE.Controllers.Main.txtZeroDivide": "除数为零",
|
"DE.Controllers.Main.txtZeroDivide": "除数为零",
|
||||||
"DE.Controllers.Main.unknownErrorText": "示知错误",
|
"DE.Controllers.Main.unknownErrorText": "示知错误",
|
||||||
"DE.Controllers.Main.unsupportedBrowserErrorText": "你的浏览器不支持",
|
"DE.Controllers.Main.unsupportedBrowserErrorText": "你的浏览器不支持",
|
||||||
|
"DE.Controllers.Main.uploadDocExtMessage": "未知的文档格式",
|
||||||
|
"DE.Controllers.Main.uploadDocFileCountMessage": "没有文档上载了",
|
||||||
|
"DE.Controllers.Main.uploadDocSizeMessage": "超过最大文档大小限制。",
|
||||||
"DE.Controllers.Main.uploadImageExtMessage": "未知图像格式",
|
"DE.Controllers.Main.uploadImageExtMessage": "未知图像格式",
|
||||||
"DE.Controllers.Main.uploadImageFileCountMessage": "没有图片上传",
|
"DE.Controllers.Main.uploadImageFileCountMessage": "没有图片上传",
|
||||||
"DE.Controllers.Main.uploadImageSizeMessage": "超过最大图像尺寸限制。",
|
"DE.Controllers.Main.uploadImageSizeMessage": "超过最大图像尺寸限制。",
|
||||||
|
@ -665,6 +734,7 @@
|
||||||
"DE.Controllers.Toolbar.textFontSizeErr": "输入的值不正确。<br>请输入1到100之间的数值",
|
"DE.Controllers.Toolbar.textFontSizeErr": "输入的值不正确。<br>请输入1到100之间的数值",
|
||||||
"DE.Controllers.Toolbar.textFraction": "分数",
|
"DE.Controllers.Toolbar.textFraction": "分数",
|
||||||
"DE.Controllers.Toolbar.textFunction": "功能",
|
"DE.Controllers.Toolbar.textFunction": "功能",
|
||||||
|
"DE.Controllers.Toolbar.textInsert": "插入",
|
||||||
"DE.Controllers.Toolbar.textIntegral": "集成",
|
"DE.Controllers.Toolbar.textIntegral": "集成",
|
||||||
"DE.Controllers.Toolbar.textLargeOperator": "大型运营商",
|
"DE.Controllers.Toolbar.textLargeOperator": "大型运营商",
|
||||||
"DE.Controllers.Toolbar.textLimitAndLog": "极限和对数",
|
"DE.Controllers.Toolbar.textLimitAndLog": "极限和对数",
|
||||||
|
@ -994,6 +1064,8 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"DE.Controllers.Viewport.textFitPage": "适合页面",
|
"DE.Controllers.Viewport.textFitPage": "适合页面",
|
||||||
"DE.Controllers.Viewport.textFitWidth": "适合宽度",
|
"DE.Controllers.Viewport.textFitWidth": "适合宽度",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabel": "标签:",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "标签不能空",
|
||||||
"DE.Views.BookmarksDialog.textAdd": "添加",
|
"DE.Views.BookmarksDialog.textAdd": "添加",
|
||||||
"DE.Views.BookmarksDialog.textBookmarkName": "书签名称",
|
"DE.Views.BookmarksDialog.textBookmarkName": "书签名称",
|
||||||
"DE.Views.BookmarksDialog.textClose": "关闭",
|
"DE.Views.BookmarksDialog.textClose": "关闭",
|
||||||
|
@ -1007,6 +1079,39 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "排序方式",
|
"DE.Views.BookmarksDialog.textSort": "排序方式",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "书签",
|
"DE.Views.BookmarksDialog.textTitle": "书签",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "书签名称只能包含字母、数字和下划线,并且应以字母开头",
|
"DE.Views.BookmarksDialog.txtInvalidName": "书签名称只能包含字母、数字和下划线,并且应以字母开头",
|
||||||
|
"DE.Views.CaptionDialog.textAdd": "添加标签",
|
||||||
|
"DE.Views.CaptionDialog.textAfter": "后",
|
||||||
|
"DE.Views.CaptionDialog.textBefore": "前",
|
||||||
|
"DE.Views.CaptionDialog.textCaption": "标题",
|
||||||
|
"DE.Views.CaptionDialog.textChapter": "章节以风格开始",
|
||||||
|
"DE.Views.CaptionDialog.textChapterInc": "包括章节号",
|
||||||
|
"DE.Views.CaptionDialog.textColon": "冒号",
|
||||||
|
"DE.Views.CaptionDialog.textDash": "破折号",
|
||||||
|
"DE.Views.CaptionDialog.textDelete": "删除标签",
|
||||||
|
"DE.Views.CaptionDialog.textEquation": "方程",
|
||||||
|
"DE.Views.CaptionDialog.textExamples": "列入:表 2-A,图片 1。IV",
|
||||||
|
"DE.Views.CaptionDialog.textExclude": "从标题中排除标签",
|
||||||
|
"DE.Views.CaptionDialog.textFigure": "图",
|
||||||
|
"DE.Views.CaptionDialog.textHyphen": "连字符",
|
||||||
|
"DE.Views.CaptionDialog.textInsert": "插入",
|
||||||
|
"DE.Views.CaptionDialog.textLabel": "标签",
|
||||||
|
"DE.Views.CaptionDialog.textLongDash": "长破折号",
|
||||||
|
"DE.Views.CaptionDialog.textNumbering": "编号",
|
||||||
|
"DE.Views.CaptionDialog.textPeriod": "时间段",
|
||||||
|
"DE.Views.CaptionDialog.textSeparator": "使用分隔符",
|
||||||
|
"DE.Views.CaptionDialog.textTable": "表格",
|
||||||
|
"DE.Views.CaptionDialog.textTitle": "插入标题",
|
||||||
|
"DE.Views.CellsAddDialog.textCol": "列",
|
||||||
|
"DE.Views.CellsAddDialog.textDown": "光标下方",
|
||||||
|
"DE.Views.CellsAddDialog.textLeft": "向左",
|
||||||
|
"DE.Views.CellsAddDialog.textRight": "向右",
|
||||||
|
"DE.Views.CellsAddDialog.textRow": "行",
|
||||||
|
"DE.Views.CellsAddDialog.textTitle": "插入几个",
|
||||||
|
"DE.Views.CellsAddDialog.textUp": "光标上方",
|
||||||
|
"DE.Views.CellsRemoveDialog.textCol": "删除整列",
|
||||||
|
"DE.Views.CellsRemoveDialog.textLeft": "移动单元格",
|
||||||
|
"DE.Views.CellsRemoveDialog.textRow": "删除整行",
|
||||||
|
"DE.Views.CellsRemoveDialog.textTitle": "删除单元格",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "显示高级设置",
|
"DE.Views.ChartSettings.textAdvanced": "显示高级设置",
|
||||||
"DE.Views.ChartSettings.textChartType": "更改图表类型",
|
"DE.Views.ChartSettings.textChartType": "更改图表类型",
|
||||||
"DE.Views.ChartSettings.textEditData": "编辑数据",
|
"DE.Views.ChartSettings.textEditData": "编辑数据",
|
||||||
|
@ -1025,10 +1130,27 @@
|
||||||
"DE.Views.ChartSettings.txtTight": "紧",
|
"DE.Views.ChartSettings.txtTight": "紧",
|
||||||
"DE.Views.ChartSettings.txtTitle": "图表",
|
"DE.Views.ChartSettings.txtTitle": "图表",
|
||||||
"DE.Views.ChartSettings.txtTopAndBottom": "上下",
|
"DE.Views.ChartSettings.txtTopAndBottom": "上下",
|
||||||
|
"DE.Views.CompareSettingsDialog.textChar": "字符级别",
|
||||||
|
"DE.Views.CompareSettingsDialog.textShow": "显示更改在",
|
||||||
|
"DE.Views.CompareSettingsDialog.textTitle": "比较设置",
|
||||||
|
"DE.Views.CompareSettingsDialog.textWord": "字级",
|
||||||
|
"DE.Views.ControlSettingsDialog.strGeneral": "常规",
|
||||||
|
"DE.Views.ControlSettingsDialog.textAdd": "添加",
|
||||||
"DE.Views.ControlSettingsDialog.textAppearance": "外观",
|
"DE.Views.ControlSettingsDialog.textAppearance": "外观",
|
||||||
"DE.Views.ControlSettingsDialog.textApplyAll": "全部应用",
|
"DE.Views.ControlSettingsDialog.textApplyAll": "全部应用",
|
||||||
"DE.Views.ControlSettingsDialog.textBox": "边界框",
|
"DE.Views.ControlSettingsDialog.textBox": "边界框",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChange": "编辑",
|
||||||
|
"DE.Views.ControlSettingsDialog.textCheckbox": "复选框",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChecked": "勾选符号",
|
||||||
"DE.Views.ControlSettingsDialog.textColor": "颜色",
|
"DE.Views.ControlSettingsDialog.textColor": "颜色",
|
||||||
|
"DE.Views.ControlSettingsDialog.textCombobox": "\n组合框",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDate": "日期格式",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDelete": "删除",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDisplayName": "显示名称",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDown": "下",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDropDown": "下拉列表",
|
||||||
|
"DE.Views.ControlSettingsDialog.textFormat": "这样显示日期",
|
||||||
|
"DE.Views.ControlSettingsDialog.textLang": "语言",
|
||||||
"DE.Views.ControlSettingsDialog.textLock": "锁定",
|
"DE.Views.ControlSettingsDialog.textLock": "锁定",
|
||||||
"DE.Views.ControlSettingsDialog.textName": "标题",
|
"DE.Views.ControlSettingsDialog.textName": "标题",
|
||||||
"DE.Views.ControlSettingsDialog.textNewColor": "添加新的自定义颜色",
|
"DE.Views.ControlSettingsDialog.textNewColor": "添加新的自定义颜色",
|
||||||
|
@ -1037,6 +1159,10 @@
|
||||||
"DE.Views.ControlSettingsDialog.textSystemColor": "系统",
|
"DE.Views.ControlSettingsDialog.textSystemColor": "系统",
|
||||||
"DE.Views.ControlSettingsDialog.textTag": "标签",
|
"DE.Views.ControlSettingsDialog.textTag": "标签",
|
||||||
"DE.Views.ControlSettingsDialog.textTitle": "内容控制设置",
|
"DE.Views.ControlSettingsDialog.textTitle": "内容控制设置",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUnchecked": "未选中的符号",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUp": "上",
|
||||||
|
"DE.Views.ControlSettingsDialog.textValue": "值",
|
||||||
|
"DE.Views.ControlSettingsDialog.tipChange": "更改符号",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "无法删除内容控制",
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "无法删除内容控制",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "无法编辑内容",
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "无法编辑内容",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "列数",
|
"DE.Views.CustomColumnsDialog.textColumns": "列数",
|
||||||
|
@ -1116,6 +1242,7 @@
|
||||||
"DE.Views.DocumentHolder.textArrangeBackward": "向后移动",
|
"DE.Views.DocumentHolder.textArrangeBackward": "向后移动",
|
||||||
"DE.Views.DocumentHolder.textArrangeForward": "向前移动",
|
"DE.Views.DocumentHolder.textArrangeForward": "向前移动",
|
||||||
"DE.Views.DocumentHolder.textArrangeFront": "放到最上面",
|
"DE.Views.DocumentHolder.textArrangeFront": "放到最上面",
|
||||||
|
"DE.Views.DocumentHolder.textCells": "元件",
|
||||||
"DE.Views.DocumentHolder.textContentControls": "内容控制",
|
"DE.Views.DocumentHolder.textContentControls": "内容控制",
|
||||||
"DE.Views.DocumentHolder.textContinueNumbering": "继续编号",
|
"DE.Views.DocumentHolder.textContinueNumbering": "继续编号",
|
||||||
"DE.Views.DocumentHolder.textCopy": "复制",
|
"DE.Views.DocumentHolder.textCopy": "复制",
|
||||||
|
@ -1147,6 +1274,7 @@
|
||||||
"DE.Views.DocumentHolder.textRotate90": "顺时针旋转90°",
|
"DE.Views.DocumentHolder.textRotate90": "顺时针旋转90°",
|
||||||
"DE.Views.DocumentHolder.textSeparateList": "分隔列表",
|
"DE.Views.DocumentHolder.textSeparateList": "分隔列表",
|
||||||
"DE.Views.DocumentHolder.textSettings": "设置",
|
"DE.Views.DocumentHolder.textSettings": "设置",
|
||||||
|
"DE.Views.DocumentHolder.textSeveral": "几行/几列",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "底部对齐",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "底部对齐",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "居中对齐",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "居中对齐",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignLeft": "左对齐",
|
"DE.Views.DocumentHolder.textShapeAlignLeft": "左对齐",
|
||||||
|
@ -1163,6 +1291,7 @@
|
||||||
"DE.Views.DocumentHolder.textUpdateTOC": "刷新目录",
|
"DE.Views.DocumentHolder.textUpdateTOC": "刷新目录",
|
||||||
"DE.Views.DocumentHolder.textWrap": "包裹风格",
|
"DE.Views.DocumentHolder.textWrap": "包裹风格",
|
||||||
"DE.Views.DocumentHolder.tipIsLocked": "此元素正在由其他用户编辑。",
|
"DE.Views.DocumentHolder.tipIsLocked": "此元素正在由其他用户编辑。",
|
||||||
|
"DE.Views.DocumentHolder.toDictionaryText": "添加到词典",
|
||||||
"DE.Views.DocumentHolder.txtAddBottom": "添加底部边框",
|
"DE.Views.DocumentHolder.txtAddBottom": "添加底部边框",
|
||||||
"DE.Views.DocumentHolder.txtAddFractionBar": "添加分数栏",
|
"DE.Views.DocumentHolder.txtAddFractionBar": "添加分数栏",
|
||||||
"DE.Views.DocumentHolder.txtAddHor": "在相同样式的段落之间添加间隔",
|
"DE.Views.DocumentHolder.txtAddHor": "在相同样式的段落之间添加间隔",
|
||||||
|
@ -1187,10 +1316,11 @@
|
||||||
"DE.Views.DocumentHolder.txtDeleteRadical": "彻底删除",
|
"DE.Views.DocumentHolder.txtDeleteRadical": "彻底删除",
|
||||||
"DE.Views.DocumentHolder.txtDistribHor": "水平分布",
|
"DE.Views.DocumentHolder.txtDistribHor": "水平分布",
|
||||||
"DE.Views.DocumentHolder.txtDistribVert": "垂直分布",
|
"DE.Views.DocumentHolder.txtDistribVert": "垂直分布",
|
||||||
|
"DE.Views.DocumentHolder.txtEmpty": "(空)",
|
||||||
"DE.Views.DocumentHolder.txtFractionLinear": "改为线性分数",
|
"DE.Views.DocumentHolder.txtFractionLinear": "改为线性分数",
|
||||||
"DE.Views.DocumentHolder.txtFractionSkewed": "改为倾斜分数",
|
"DE.Views.DocumentHolder.txtFractionSkewed": "改为倾斜分数",
|
||||||
"DE.Views.DocumentHolder.txtFractionStacked": "改为堆积分数",
|
"DE.Views.DocumentHolder.txtFractionStacked": "改为堆积分数",
|
||||||
"DE.Views.DocumentHolder.txtGroup": "团队",
|
"DE.Views.DocumentHolder.txtGroup": "分组",
|
||||||
"DE.Views.DocumentHolder.txtGroupCharOver": "字符在文字上",
|
"DE.Views.DocumentHolder.txtGroupCharOver": "字符在文字上",
|
||||||
"DE.Views.DocumentHolder.txtGroupCharUnder": "文字下的Char",
|
"DE.Views.DocumentHolder.txtGroupCharUnder": "文字下的Char",
|
||||||
"DE.Views.DocumentHolder.txtHideBottom": "隐藏底部边框",
|
"DE.Views.DocumentHolder.txtHideBottom": "隐藏底部边框",
|
||||||
|
@ -1213,6 +1343,7 @@
|
||||||
"DE.Views.DocumentHolder.txtInsertArgAfter": "插入参数",
|
"DE.Views.DocumentHolder.txtInsertArgAfter": "插入参数",
|
||||||
"DE.Views.DocumentHolder.txtInsertArgBefore": "之前插入参数",
|
"DE.Views.DocumentHolder.txtInsertArgBefore": "之前插入参数",
|
||||||
"DE.Views.DocumentHolder.txtInsertBreak": "插入手动中断",
|
"DE.Views.DocumentHolder.txtInsertBreak": "插入手动中断",
|
||||||
|
"DE.Views.DocumentHolder.txtInsertCaption": "插入标题",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqAfter": "插入方程后",
|
"DE.Views.DocumentHolder.txtInsertEqAfter": "插入方程后",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqBefore": "之前插入方程式",
|
"DE.Views.DocumentHolder.txtInsertEqBefore": "之前插入方程式",
|
||||||
"DE.Views.DocumentHolder.txtKeepTextOnly": "仅保留文字",
|
"DE.Views.DocumentHolder.txtKeepTextOnly": "仅保留文字",
|
||||||
|
@ -1225,6 +1356,7 @@
|
||||||
"DE.Views.DocumentHolder.txtOverwriteCells": "覆盖单元格",
|
"DE.Views.DocumentHolder.txtOverwriteCells": "覆盖单元格",
|
||||||
"DE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式",
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "按CTRL并单击链接",
|
"DE.Views.DocumentHolder.txtPressLink": "按CTRL并单击链接",
|
||||||
|
"DE.Views.DocumentHolder.txtPrintSelection": "打印选择",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "去除分数吧",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "去除分数吧",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "删除限制",
|
"DE.Views.DocumentHolder.txtRemLimit": "删除限制",
|
||||||
"DE.Views.DocumentHolder.txtRemoveAccentChar": "删除重音字符",
|
"DE.Views.DocumentHolder.txtRemoveAccentChar": "删除重音字符",
|
||||||
|
@ -1292,6 +1424,10 @@
|
||||||
"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.EditListItemDialog.textDisplayName": "显示名称",
|
||||||
|
"DE.Views.EditListItemDialog.textNameError": "显示名称不能空",
|
||||||
|
"DE.Views.EditListItemDialog.textValue": "值",
|
||||||
|
"DE.Views.EditListItemDialog.textValueError": "已存在具有相同值的项",
|
||||||
"DE.Views.FileMenu.btnBackCaption": "打开文件所在位置",
|
"DE.Views.FileMenu.btnBackCaption": "打开文件所在位置",
|
||||||
"DE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单",
|
"DE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单",
|
||||||
"DE.Views.FileMenu.btnCreateNewCaption": "新建",
|
"DE.Views.FileMenu.btnCreateNewCaption": "新建",
|
||||||
|
@ -1316,18 +1452,28 @@
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "创建一个新的空白文本文档,您可以在编辑过程中创建样式和格式。或者选择其中一个模板来启动某些类型或目的的文档,其中某些样式已经被预先应用。",
|
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "创建一个新的空白文本文档,您可以在编辑过程中创建样式和格式。或者选择其中一个模板来启动某些类型或目的的文档,其中某些样式已经被预先应用。",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "新文本文件",
|
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "新文本文件",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "没有模板",
|
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "没有模板",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "应用",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "添加作者",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "添加文本",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "应用",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "应用",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改访问权限",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改访问权限",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "评论",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已创建",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "载入中……",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "载入中……",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "上次修改时间",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "上次修改时间",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "创建者",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "页面",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "页面",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "地址",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "地址",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "符号和空格",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "符号和空格",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符号",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符号",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "文件名",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "文件名",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "单词",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "单词",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改访问权限",
|
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改访问权限",
|
||||||
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "有权利的人",
|
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "有权利的人",
|
||||||
|
@ -1367,10 +1513,13 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "对齐指南",
|
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "对齐指南",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "自动恢复",
|
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "自动恢复",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoSave": "自动保存",
|
"DE.Views.FileMenuPanels.Settings.textAutoSave": "自动保存",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textCompatible": "兼容性",
|
||||||
"DE.Views.FileMenuPanels.Settings.textDisabled": "已禁用",
|
"DE.Views.FileMenuPanels.Settings.textDisabled": "已禁用",
|
||||||
"DE.Views.FileMenuPanels.Settings.textForceSave": "保存到服务器",
|
"DE.Views.FileMenuPanels.Settings.textForceSave": "保存到服务器",
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "每一分钟",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "每一分钟",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textOldVersions": "将文件保存为DOCX时,使其与较旧的MS-Word版本兼容",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtAll": "查看全部",
|
"DE.Views.FileMenuPanels.Settings.txtAll": "查看全部",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "默认缓存模式",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtCm": "厘米",
|
"DE.Views.FileMenuPanels.Settings.txtCm": "厘米",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "适合页面",
|
"DE.Views.FileMenuPanels.Settings.txtFitPage": "适合页面",
|
||||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "适合宽度",
|
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "适合宽度",
|
||||||
|
@ -1528,6 +1677,7 @@
|
||||||
"DE.Views.LeftMenu.txtDeveloper": "开发者模式",
|
"DE.Views.LeftMenu.txtDeveloper": "开发者模式",
|
||||||
"DE.Views.LeftMenu.txtTrial": "试用模式",
|
"DE.Views.LeftMenu.txtTrial": "试用模式",
|
||||||
"DE.Views.Links.capBtnBookmarks": "书签",
|
"DE.Views.Links.capBtnBookmarks": "书签",
|
||||||
|
"DE.Views.Links.capBtnCaption": "标题",
|
||||||
"DE.Views.Links.capBtnContentsUpdate": "刷新",
|
"DE.Views.Links.capBtnContentsUpdate": "刷新",
|
||||||
"DE.Views.Links.capBtnInsContents": "目录",
|
"DE.Views.Links.capBtnInsContents": "目录",
|
||||||
"DE.Views.Links.capBtnInsFootnote": "脚注",
|
"DE.Views.Links.capBtnInsFootnote": "脚注",
|
||||||
|
@ -1542,10 +1692,27 @@
|
||||||
"DE.Views.Links.textUpdateAll": "刷新整个表格",
|
"DE.Views.Links.textUpdateAll": "刷新整个表格",
|
||||||
"DE.Views.Links.textUpdatePages": "仅刷新页码",
|
"DE.Views.Links.textUpdatePages": "仅刷新页码",
|
||||||
"DE.Views.Links.tipBookmarks": "创建书签",
|
"DE.Views.Links.tipBookmarks": "创建书签",
|
||||||
|
"DE.Views.Links.tipCaption": "插入标题",
|
||||||
"DE.Views.Links.tipContents": "插入目录",
|
"DE.Views.Links.tipContents": "插入目录",
|
||||||
"DE.Views.Links.tipContentsUpdate": "刷新目录",
|
"DE.Views.Links.tipContentsUpdate": "刷新目录",
|
||||||
"DE.Views.Links.tipInsertHyperlink": "添加超链接",
|
"DE.Views.Links.tipInsertHyperlink": "添加超链接",
|
||||||
"DE.Views.Links.tipNotes": "插入或编辑脚注",
|
"DE.Views.Links.tipNotes": "插入或编辑脚注",
|
||||||
|
"DE.Views.ListSettingsDialog.textAuto": "自动",
|
||||||
|
"DE.Views.ListSettingsDialog.textCenter": "中心",
|
||||||
|
"DE.Views.ListSettingsDialog.textLeft": "左",
|
||||||
|
"DE.Views.ListSettingsDialog.textLevel": "级别",
|
||||||
|
"DE.Views.ListSettingsDialog.textNewColor": "添加新的自定义颜色",
|
||||||
|
"DE.Views.ListSettingsDialog.textPreview": "预览",
|
||||||
|
"DE.Views.ListSettingsDialog.textRight": "右",
|
||||||
|
"DE.Views.ListSettingsDialog.txtAlign": "校准",
|
||||||
|
"DE.Views.ListSettingsDialog.txtColor": "颜色",
|
||||||
|
"DE.Views.ListSettingsDialog.txtFont": "字体和符号",
|
||||||
|
"DE.Views.ListSettingsDialog.txtLikeText": "像文字一样",
|
||||||
|
"DE.Views.ListSettingsDialog.txtNone": "无",
|
||||||
|
"DE.Views.ListSettingsDialog.txtSize": "大小",
|
||||||
|
"DE.Views.ListSettingsDialog.txtSymbol": "符号",
|
||||||
|
"DE.Views.ListSettingsDialog.txtTitle": "列表设置",
|
||||||
|
"DE.Views.ListSettingsDialog.txtType": "类型",
|
||||||
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
|
||||||
"DE.Views.MailMergeEmailDlg.okButtonText": "发送",
|
"DE.Views.MailMergeEmailDlg.okButtonText": "发送",
|
||||||
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "主题",
|
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "主题",
|
||||||
|
@ -1624,7 +1791,18 @@
|
||||||
"DE.Views.NoteSettingsDialog.textTitle": "笔记设置",
|
"DE.Views.NoteSettingsDialog.textTitle": "笔记设置",
|
||||||
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "警告",
|
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "警告",
|
||||||
"DE.Views.PageMarginsDialog.textBottom": "底部",
|
"DE.Views.PageMarginsDialog.textBottom": "底部",
|
||||||
|
"DE.Views.PageMarginsDialog.textGutter": " 装订线",
|
||||||
|
"DE.Views.PageMarginsDialog.textGutterPosition": " 装订线的位置",
|
||||||
|
"DE.Views.PageMarginsDialog.textInside": "里面",
|
||||||
|
"DE.Views.PageMarginsDialog.textLandscape": "横向",
|
||||||
"DE.Views.PageMarginsDialog.textLeft": "左",
|
"DE.Views.PageMarginsDialog.textLeft": "左",
|
||||||
|
"DE.Views.PageMarginsDialog.textMirrorMargins": "镜像边距",
|
||||||
|
"DE.Views.PageMarginsDialog.textMultiplePages": "多页",
|
||||||
|
"DE.Views.PageMarginsDialog.textNormal": "正常",
|
||||||
|
"DE.Views.PageMarginsDialog.textOrientation": "方向",
|
||||||
|
"DE.Views.PageMarginsDialog.textOutside": "外面",
|
||||||
|
"DE.Views.PageMarginsDialog.textPortrait": "肖像",
|
||||||
|
"DE.Views.PageMarginsDialog.textPreview": "预览",
|
||||||
"DE.Views.PageMarginsDialog.textRight": "右",
|
"DE.Views.PageMarginsDialog.textRight": "右",
|
||||||
"DE.Views.PageMarginsDialog.textTitle": "边距",
|
"DE.Views.PageMarginsDialog.textTitle": "边距",
|
||||||
"DE.Views.PageMarginsDialog.textTop": "顶部",
|
"DE.Views.PageMarginsDialog.textTop": "顶部",
|
||||||
|
@ -1653,33 +1831,51 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "边框和填充",
|
"DE.Views.ParagraphSettingsAdvanced.strBorders": "边框和填充",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "分页前",
|
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "分页前",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "双删除线",
|
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "双删除线",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndent": "缩进",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "行间距",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "大纲级别",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "后",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "前",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "特别",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "保持同一行",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "保持同一行",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "与下一个保持一致",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "与下一个保持一致",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strMargins": "填充",
|
"DE.Views.ParagraphSettingsAdvanced.strMargins": "填充",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "单独控制",
|
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "单独控制",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字体",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字体",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "缩进和放置",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "缩进和放置",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "换行符和分页符",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "放置",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "放置",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小写",
|
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小写",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "不要在相同样式的段落之间添加间隔",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSpacing": "间距",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strStrike": "删除线",
|
"DE.Views.ParagraphSettingsAdvanced.strStrike": "删除线",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "下标",
|
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "下标",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "上标",
|
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "上标",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "标签",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "标签",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "校准",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "校准",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "至少",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "倍数",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "背景颜色",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "背景颜色",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "基本文本",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "边框颜色",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "边框颜色",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "点击图表或使用按钮选择边框并将选择的样式应用于它们",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "点击图表或使用按钮选择边框并将选择的样式应用于它们",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "边框大小",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "边框大小",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "底部",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "底部",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textCentered": "居中的",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "字符间距",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "字符间距",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "默认选项",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "默认选项",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "效果",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "效果",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "精确",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "第一行",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "正当",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "前导符",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "前导符",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "左",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "左",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "级别",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "添加新的自定义颜色",
|
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "添加新的自定义颜色",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "没有",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "没有",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(无)",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "位置",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "位置",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "删除",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "删除",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "删除所有",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "删除所有",
|
||||||
|
@ -1700,6 +1896,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "仅限外部边框",
|
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "仅限外部边框",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipRight": "设置右边框",
|
"DE.Views.ParagraphSettingsAdvanced.tipRight": "设置右边框",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipTop": "仅限顶部边框",
|
"DE.Views.ParagraphSettingsAdvanced.tipTop": "仅限顶部边框",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自动",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "没有边框",
|
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "没有边框",
|
||||||
"DE.Views.RightMenu.txtChartSettings": "图表设置",
|
"DE.Views.RightMenu.txtChartSettings": "图表设置",
|
||||||
"DE.Views.RightMenu.txtHeaderFooterSettings": "页眉和页脚设置",
|
"DE.Views.RightMenu.txtHeaderFooterSettings": "页眉和页脚设置",
|
||||||
|
@ -1716,6 +1913,7 @@
|
||||||
"DE.Views.ShapeSettings.strFill": "填满",
|
"DE.Views.ShapeSettings.strFill": "填满",
|
||||||
"DE.Views.ShapeSettings.strForeground": "前景色",
|
"DE.Views.ShapeSettings.strForeground": "前景色",
|
||||||
"DE.Views.ShapeSettings.strPattern": "模式",
|
"DE.Views.ShapeSettings.strPattern": "模式",
|
||||||
|
"DE.Views.ShapeSettings.strShadow": "显示阴影",
|
||||||
"DE.Views.ShapeSettings.strSize": "大小",
|
"DE.Views.ShapeSettings.strSize": "大小",
|
||||||
"DE.Views.ShapeSettings.strStroke": "撞击",
|
"DE.Views.ShapeSettings.strStroke": "撞击",
|
||||||
"DE.Views.ShapeSettings.strTransparency": "不透明度",
|
"DE.Views.ShapeSettings.strTransparency": "不透明度",
|
||||||
|
@ -1796,6 +1994,7 @@
|
||||||
"DE.Views.StyleTitleDialog.textTitle": "标题",
|
"DE.Views.StyleTitleDialog.textTitle": "标题",
|
||||||
"DE.Views.StyleTitleDialog.txtEmpty": "这是必填栏",
|
"DE.Views.StyleTitleDialog.txtEmpty": "这是必填栏",
|
||||||
"DE.Views.StyleTitleDialog.txtNotEmpty": "区域不能为空",
|
"DE.Views.StyleTitleDialog.txtNotEmpty": "区域不能为空",
|
||||||
|
"DE.Views.StyleTitleDialog.txtSameAs": "与创建的新样式相同",
|
||||||
"DE.Views.TableFormulaDialog.textBookmark": "粘贴书签",
|
"DE.Views.TableFormulaDialog.textBookmark": "粘贴书签",
|
||||||
"DE.Views.TableFormulaDialog.textFormat": "数字格式",
|
"DE.Views.TableFormulaDialog.textFormat": "数字格式",
|
||||||
"DE.Views.TableFormulaDialog.textFormula": "公式",
|
"DE.Views.TableFormulaDialog.textFormula": "公式",
|
||||||
|
@ -1817,6 +2016,7 @@
|
||||||
"DE.Views.TableOfContentsSettings.txtClassic": "古典",
|
"DE.Views.TableOfContentsSettings.txtClassic": "古典",
|
||||||
"DE.Views.TableOfContentsSettings.txtCurrent": "当前",
|
"DE.Views.TableOfContentsSettings.txtCurrent": "当前",
|
||||||
"DE.Views.TableOfContentsSettings.txtModern": "现代",
|
"DE.Views.TableOfContentsSettings.txtModern": "现代",
|
||||||
|
"DE.Views.TableOfContentsSettings.txtOnline": "在线",
|
||||||
"DE.Views.TableOfContentsSettings.txtSimple": "简单",
|
"DE.Views.TableOfContentsSettings.txtSimple": "简单",
|
||||||
"DE.Views.TableOfContentsSettings.txtStandard": "标准",
|
"DE.Views.TableOfContentsSettings.txtStandard": "标准",
|
||||||
"DE.Views.TableSettings.deleteColumnText": "删除列",
|
"DE.Views.TableSettings.deleteColumnText": "删除列",
|
||||||
|
@ -1867,6 +2067,14 @@
|
||||||
"DE.Views.TableSettings.tipRight": "仅设置外边界",
|
"DE.Views.TableSettings.tipRight": "仅设置外边界",
|
||||||
"DE.Views.TableSettings.tipTop": "仅限外部边框",
|
"DE.Views.TableSettings.tipTop": "仅限外部边框",
|
||||||
"DE.Views.TableSettings.txtNoBorders": "没有边框",
|
"DE.Views.TableSettings.txtNoBorders": "没有边框",
|
||||||
|
"DE.Views.TableSettings.txtTable_Accent": "强调",
|
||||||
|
"DE.Views.TableSettings.txtTable_Colorful": "多彩",
|
||||||
|
"DE.Views.TableSettings.txtTable_Dark": "黑暗的",
|
||||||
|
"DE.Views.TableSettings.txtTable_GridTable": "表格网格",
|
||||||
|
"DE.Views.TableSettings.txtTable_Light": "光",
|
||||||
|
"DE.Views.TableSettings.txtTable_ListTable": "列表表",
|
||||||
|
"DE.Views.TableSettings.txtTable_PlainTable": "简单的表",
|
||||||
|
"DE.Views.TableSettings.txtTable_TableGrid": "表格的网格",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlign": "校准",
|
"DE.Views.TableSettingsAdvanced.textAlign": "校准",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlignment": "校准",
|
"DE.Views.TableSettingsAdvanced.textAlignment": "校准",
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "细胞之间的距离",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "细胞之间的距离",
|
||||||
|
@ -1960,6 +2168,7 @@
|
||||||
"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.capBtnAddComment": "添加评论",
|
||||||
"DE.Views.Toolbar.capBtnBlankPage": "空白页",
|
"DE.Views.Toolbar.capBtnBlankPage": "空白页",
|
||||||
"DE.Views.Toolbar.capBtnColumns": "列",
|
"DE.Views.Toolbar.capBtnColumns": "列",
|
||||||
"DE.Views.Toolbar.capBtnComment": "批注",
|
"DE.Views.Toolbar.capBtnComment": "批注",
|
||||||
|
@ -1971,22 +2180,26 @@
|
||||||
"DE.Views.Toolbar.capBtnInsImage": "图片",
|
"DE.Views.Toolbar.capBtnInsImage": "图片",
|
||||||
"DE.Views.Toolbar.capBtnInsPagebreak": "分隔符",
|
"DE.Views.Toolbar.capBtnInsPagebreak": "分隔符",
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "形状",
|
"DE.Views.Toolbar.capBtnInsShape": "形状",
|
||||||
|
"DE.Views.Toolbar.capBtnInsSymbol": "符号",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "表格",
|
"DE.Views.Toolbar.capBtnInsTable": "表格",
|
||||||
"DE.Views.Toolbar.capBtnInsTextart": "文字艺术",
|
"DE.Views.Toolbar.capBtnInsTextart": "文字艺术",
|
||||||
"DE.Views.Toolbar.capBtnInsTextbox": "文本框",
|
"DE.Views.Toolbar.capBtnInsTextbox": "文本框",
|
||||||
"DE.Views.Toolbar.capBtnMargins": "边距",
|
"DE.Views.Toolbar.capBtnMargins": "边距",
|
||||||
"DE.Views.Toolbar.capBtnPageOrient": "选项",
|
"DE.Views.Toolbar.capBtnPageOrient": "选项",
|
||||||
"DE.Views.Toolbar.capBtnPageSize": "大小",
|
"DE.Views.Toolbar.capBtnPageSize": "大小",
|
||||||
|
"DE.Views.Toolbar.capBtnWatermark": "水印",
|
||||||
"DE.Views.Toolbar.capImgAlign": "对齐",
|
"DE.Views.Toolbar.capImgAlign": "对齐",
|
||||||
"DE.Views.Toolbar.capImgBackward": "向后移动",
|
"DE.Views.Toolbar.capImgBackward": "向后移动",
|
||||||
"DE.Views.Toolbar.capImgForward": "向前移动",
|
"DE.Views.Toolbar.capImgForward": "向前移动",
|
||||||
"DE.Views.Toolbar.capImgGroup": "组",
|
"DE.Views.Toolbar.capImgGroup": "分组",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "环绕",
|
"DE.Views.Toolbar.capImgWrapping": "环绕",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "插入自定义表",
|
"DE.Views.Toolbar.mniCustomTable": "插入自定义表",
|
||||||
|
"DE.Views.Toolbar.mniDrawTable": "绘制表",
|
||||||
"DE.Views.Toolbar.mniEditControls": "控制设置",
|
"DE.Views.Toolbar.mniEditControls": "控制设置",
|
||||||
"DE.Views.Toolbar.mniEditDropCap": "下沉设置",
|
"DE.Views.Toolbar.mniEditDropCap": "下沉设置",
|
||||||
"DE.Views.Toolbar.mniEditFooter": "编辑页脚",
|
"DE.Views.Toolbar.mniEditFooter": "编辑页脚",
|
||||||
"DE.Views.Toolbar.mniEditHeader": "编辑页眉",
|
"DE.Views.Toolbar.mniEditHeader": "编辑页眉",
|
||||||
|
"DE.Views.Toolbar.mniEraseTable": "删除表",
|
||||||
"DE.Views.Toolbar.mniHiddenBorders": "隐藏表边框",
|
"DE.Views.Toolbar.mniHiddenBorders": "隐藏表边框",
|
||||||
"DE.Views.Toolbar.mniHiddenChars": "不打印字符",
|
"DE.Views.Toolbar.mniHiddenChars": "不打印字符",
|
||||||
"DE.Views.Toolbar.mniHighlightControls": "高亮设置",
|
"DE.Views.Toolbar.mniHighlightControls": "高亮设置",
|
||||||
|
@ -1997,13 +2210,18 @@
|
||||||
"DE.Views.Toolbar.textAutoColor": "自动化的",
|
"DE.Views.Toolbar.textAutoColor": "自动化的",
|
||||||
"DE.Views.Toolbar.textBold": "加粗",
|
"DE.Views.Toolbar.textBold": "加粗",
|
||||||
"DE.Views.Toolbar.textBottom": "底部: ",
|
"DE.Views.Toolbar.textBottom": "底部: ",
|
||||||
|
"DE.Views.Toolbar.textCheckboxControl": "复选框",
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "自定义列",
|
"DE.Views.Toolbar.textColumnsCustom": "自定义列",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "左",
|
"DE.Views.Toolbar.textColumnsLeft": "左",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "一",
|
"DE.Views.Toolbar.textColumnsOne": "一",
|
||||||
"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.textComboboxControl": "\n组合框",
|
||||||
"DE.Views.Toolbar.textContPage": "连续页",
|
"DE.Views.Toolbar.textContPage": "连续页",
|
||||||
|
"DE.Views.Toolbar.textDateControl": "日期",
|
||||||
|
"DE.Views.Toolbar.textDropdownControl": "下拉列表",
|
||||||
|
"DE.Views.Toolbar.textEditWatermark": "自定义水印",
|
||||||
"DE.Views.Toolbar.textEvenPage": "偶数页",
|
"DE.Views.Toolbar.textEvenPage": "偶数页",
|
||||||
"DE.Views.Toolbar.textInMargin": "在边际",
|
"DE.Views.Toolbar.textInMargin": "在边际",
|
||||||
"DE.Views.Toolbar.textInsColumnBreak": "插入列中断",
|
"DE.Views.Toolbar.textInsColumnBreak": "插入列中断",
|
||||||
|
@ -2015,6 +2233,7 @@
|
||||||
"DE.Views.Toolbar.textItalic": "斜体",
|
"DE.Views.Toolbar.textItalic": "斜体",
|
||||||
"DE.Views.Toolbar.textLandscape": "横向",
|
"DE.Views.Toolbar.textLandscape": "横向",
|
||||||
"DE.Views.Toolbar.textLeft": "左: ",
|
"DE.Views.Toolbar.textLeft": "左: ",
|
||||||
|
"DE.Views.Toolbar.textListSettings": "列表设置",
|
||||||
"DE.Views.Toolbar.textMarginsLast": "最后自定义",
|
"DE.Views.Toolbar.textMarginsLast": "最后自定义",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "中等",
|
"DE.Views.Toolbar.textMarginsModerate": "中等",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "缩小",
|
"DE.Views.Toolbar.textMarginsNarrow": "缩小",
|
||||||
|
@ -2028,9 +2247,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "奇数页",
|
"DE.Views.Toolbar.textOddPage": "奇数页",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "自定义边距",
|
"DE.Views.Toolbar.textPageMarginsCustom": "自定义边距",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "自定义页面大小",
|
"DE.Views.Toolbar.textPageSizeCustom": "自定义页面大小",
|
||||||
|
"DE.Views.Toolbar.textPictureControl": "图片",
|
||||||
"DE.Views.Toolbar.textPlainControl": "插入纯文本内容控件",
|
"DE.Views.Toolbar.textPlainControl": "插入纯文本内容控件",
|
||||||
"DE.Views.Toolbar.textPortrait": "肖像",
|
"DE.Views.Toolbar.textPortrait": "肖像",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "删除内容控件",
|
"DE.Views.Toolbar.textRemoveControl": "删除内容控件",
|
||||||
|
"DE.Views.Toolbar.textRemWatermark": "删除水印",
|
||||||
"DE.Views.Toolbar.textRichControl": "插入多信息文本内容控件",
|
"DE.Views.Toolbar.textRichControl": "插入多信息文本内容控件",
|
||||||
"DE.Views.Toolbar.textRight": "右: ",
|
"DE.Views.Toolbar.textRight": "右: ",
|
||||||
"DE.Views.Toolbar.textStrikeout": "加删除线",
|
"DE.Views.Toolbar.textStrikeout": "加删除线",
|
||||||
|
@ -2085,6 +2306,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertImage": "插入图片",
|
"DE.Views.Toolbar.tipInsertImage": "插入图片",
|
||||||
"DE.Views.Toolbar.tipInsertNum": "插入页码",
|
"DE.Views.Toolbar.tipInsertNum": "插入页码",
|
||||||
"DE.Views.Toolbar.tipInsertShape": "自动插入形状",
|
"DE.Views.Toolbar.tipInsertShape": "自动插入形状",
|
||||||
|
"DE.Views.Toolbar.tipInsertSymbol": "插入符号",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "插入表",
|
"DE.Views.Toolbar.tipInsertTable": "插入表",
|
||||||
"DE.Views.Toolbar.tipInsertText": "插入文字",
|
"DE.Views.Toolbar.tipInsertText": "插入文字",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "插入文字艺术",
|
"DE.Views.Toolbar.tipInsertTextArt": "插入文字艺术",
|
||||||
|
@ -2109,6 +2331,7 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "不打印字符",
|
"DE.Views.Toolbar.tipShowHiddenChars": "不打印字符",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "该文档已被其他用户更改。请点击保存更改和重新加载更新。",
|
"DE.Views.Toolbar.tipSynchronize": "该文档已被其他用户更改。请点击保存更改和重新加载更新。",
|
||||||
"DE.Views.Toolbar.tipUndo": "复原",
|
"DE.Views.Toolbar.tipUndo": "复原",
|
||||||
|
"DE.Views.Toolbar.tipWatermark": "编辑水印",
|
||||||
"DE.Views.Toolbar.txtDistribHor": "水平分布",
|
"DE.Views.Toolbar.txtDistribHor": "水平分布",
|
||||||
"DE.Views.Toolbar.txtDistribVert": "垂直分布",
|
"DE.Views.Toolbar.txtDistribVert": "垂直分布",
|
||||||
"DE.Views.Toolbar.txtMarginAlign": "对齐边距",
|
"DE.Views.Toolbar.txtMarginAlign": "对齐边距",
|
||||||
|
@ -2134,5 +2357,28 @@
|
||||||
"DE.Views.Toolbar.txtScheme6": "中央大厅",
|
"DE.Views.Toolbar.txtScheme6": "中央大厅",
|
||||||
"DE.Views.Toolbar.txtScheme7": "公平",
|
"DE.Views.Toolbar.txtScheme7": "公平",
|
||||||
"DE.Views.Toolbar.txtScheme8": "流动",
|
"DE.Views.Toolbar.txtScheme8": "流动",
|
||||||
"DE.Views.Toolbar.txtScheme9": "发现"
|
"DE.Views.Toolbar.txtScheme9": "发现",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textAuto": "自动",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textBold": "加粗",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textColor": "文字颜色",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textDiagonal": " 斜线的",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFont": "字体 ",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFromFile": "从文件导入",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFromUrl": "从URL导入",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textHor": "水平的",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textImageW": "图像水印",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textItalic": "斜体",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textLanguage": "语言",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textLayout": "布局",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textNewColor": "添加新的自定义颜色",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textNone": "无",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textScale": "规模",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textStrikeout": "删除线",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textText": "文本",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTextW": "文本水印",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTitle": "水印设置",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textTransparency": "半透明的",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textUnderline": "下划线",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.tipFontName": "字体名称",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.tipFontSize": "字体大小"
|
||||||
}
|
}
|
|
@ -23,12 +23,11 @@
|
||||||
<li>
|
<li>
|
||||||
click the <img alt="Rich text content control" src="../images/caption_icon.png" /> <b>Caption</b> icon at the top toolbar or right lick o nthe object and select the <b>Insert Caption</b> option to open the <b>Insert Caption</b> dialogue box
|
click the <img alt="Rich text content control" src="../images/caption_icon.png" /> <b>Caption</b> icon at the top toolbar or right lick o nthe object and select the <b>Insert Caption</b> option to open the <b>Insert Caption</b> dialogue box
|
||||||
<ul>
|
<ul>
|
||||||
<li>choose the label to use for your caption by clicking the label drop-down and choosing the object;
|
<li>choose the label to use for your caption by clicking the label drop-down and choosing the object. or</li>
|
||||||
<p>or</p></li>
|
|
||||||
<li>create a new label by clicking the <b>Add label</b> button to open the <b>Add label</b> dialogue box. Enter a name for the label into the label text box. Then click the <b>OK</b> button to add a new label into the label list;</li>
|
<li>create a new label by clicking the <b>Add label</b> button to open the <b>Add label</b> dialogue box. Enter a name for the label into the label text box. Then click the <b>OK</b> button to add a new label into the label list;</li>
|
||||||
</ul>
|
</ul>
|
||||||
<li>check the <b>Include chapter number</b> checkbox to change the numbering for your caption;</li>
|
<li>check the <b>Include chapter number</b> checkbox to change the numbering for your caption;</li>
|
||||||
<li>in <b>insert</b> drop-down menu choose <b>Before</b> to place the label above the object or <b>After</b> to place it below the object;</li>
|
<li>in <b>Insert</b> drop-down menu choose <b>Before</b> to place the label above the object or <b>After</b> to place it below the object;</li>
|
||||||
<li>check the <b>Exclude label from caption</b> checkbox to leave only a number for this particular caption in accordance with a sequence number;</li>
|
<li>check the <b>Exclude label from caption</b> checkbox to leave only a number for this particular caption in accordance with a sequence number;</li>
|
||||||
<li>you can then choose how to number your caption by assigning a specific style to the caption and adding a separator;</li>
|
<li>you can then choose how to number your caption by assigning a specific style to the caption and adding a separator;</li>
|
||||||
<li>to apply the caption click the <b>OK</b> button.</li>
|
<li>to apply the caption click the <b>OK</b> button.</li>
|
||||||
|
|
|
@ -8,7 +8,7 @@ var indexes =
|
||||||
{
|
{
|
||||||
"id": "HelpfulHints/AdvancedSettings.htm",
|
"id": "HelpfulHints/AdvancedSettings.htm",
|
||||||
"title": "Advanced Settings of Document Editor",
|
"title": "Advanced Settings of Document Editor",
|
||||||
"body": "Document Editor lets you change its advanced settings. To access them, open the File tab at the top toolbar and select the Advanced Settings... option. You can also click the View settings icon on the right side of the editor header and select the Advanced settings option. The advanced settings are: Commenting Display is used to turn on/off the live commenting option: Turn on display of the comments - if you disable this feature, the commented passages will be highlighted only if you click the Comments icon at the left sidebar. Turn on display of the resolved comments - this feature is disabled by default so that the resolved comments were hidden in the document text. You can view such comments only if you click the Comments icon at the left sidebar. Enable this option if you want to display resolved comments in the document text. Spell Checking is used to turn on/off the spell checking option. Alternate Input is used to turn on/off hieroglyphs. Alignment Guides is used to turn on/off alignment guides that appear when you move objects and allow you to position them on the page precisely. Compatibility is used to make the files compatible with older MS Word versions when saved as DOCX. Autosave is used in the online version to turn on/off automatic saving of changes you make while editing. Autorecover - is used in the desktop version to turn on/off the option that allows to automatically recover documents in case of the unexpected program closing. Co-editing Mode is used to select the display of the changes made during the co-editing: By default the Fast mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users. If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the Strict mode and all the changes will be shown only after you click the Save icon notifying you that there are changes from other users. Real-time Collaboration Changes is used to specify what changes you want to be highlighted during co-editing: Selecting the View None option, changes made during the current session will not be highlighted. Selecting the View All option, all the changes made during the current session will be highlighted. Selecting the View Last option, only the changes made since you last time clicked the Save icon will be highlighted. This option is only available when the Strict co-editing mode is selected. Default Zoom Value is used to set the default zoom value selecting it in the list of available options from 50% to 200%. You can also choose the Fit to Page or Fit to Width option. Font Hinting is used to select the type a font is displayed in Document Editor: Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native if you want your text to be displayed with the hinting embedded into font files. Unit of Measurement is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option. To save the changes you made, click the Apply button."
|
"body": "Document Editor lets you change its advanced settings. To access them, open the File tab at the top toolbar and select the Advanced Settings... option. You can also click the View settings icon on the right side of the editor header and select the Advanced settings option. The advanced settings are: Commenting Display is used to turn on/off the live commenting option: Turn on display of the comments - if you disable this feature, the commented passages will be highlighted only if you click the Comments icon at the left sidebar. Turn on display of the resolved comments - this feature is disabled by default so that the resolved comments were hidden in the document text. You can view such comments only if you click the Comments icon at the left sidebar. Enable this option if you want to display resolved comments in the document text. Spell Checking is used to turn on/off the spell checking option. Alternate Input is used to turn on/off hieroglyphs. Alignment Guides is used to turn on/off alignment guides that appear when you move objects and allow you to position them on the page precisely. Compatibility is used to make the files compatible with older MS Word versions when saved as DOCX. Autosave is used in the online version to turn on/off automatic saving of changes you make while editing. Autorecover - is used in the desktop version to turn on/off the option that allows to automatically recover documents in case of the unexpected program closing. Co-editing Mode is used to select the display of the changes made during the co-editing: By default the Fast mode is selected, the users who take part in the document co-editing will see the changes in real time once they are made by other users. If you prefer not to see other user changes (so that they do not disturb you, or for some other reason), select the Strict mode and all the changes will be shown only after you click the Save icon notifying you that there are changes from other users. Real-time Collaboration Changes is used to specify what changes you want to be highlighted during co-editing: Selecting the View None option, changes made during the current session will not be highlighted. Selecting the View All option, all the changes made during the current session will be highlighted. Selecting the View Last option, only the changes made since you last time clicked the Save icon will be highlighted. This option is only available when the Strict co-editing mode is selected. Default Zoom Value is used to set the default zoom value selecting it in the list of available options from 50% to 200%. You can also choose the Fit to Page or Fit to Width option. Font Hinting is used to select the type a font is displayed in Document Editor: Choose As Windows if you like the way fonts are usually displayed on Windows, i.e. using Windows font hinting. Choose As OS X if you like the way fonts are usually displayed on a Mac, i.e. without any font hinting at all. Choose Native if you want your text to be displayed with the hinting embedded into font files. Default cache mode - used to select the cache mode for the font characters. It’s not recommended to switch it without any reason. It can be helpful in some cases only, for example, when an issue in the Google Chrome browser with the enabled hardware acceleration occurs. Document Editor has two cache modes: In the first cache mode, each letter is cached as a separate picture. In the second cache mode, a picture of a certain size is selected where letters are placed dynamically and a mechanism of allocating/removing memory in this picture is also implemented. If there is not enough memory, a second picture is created, etc. The Default cache mode setting applies two above mentioned cache modes separately for different browsers: When the Default cache mode setting is enabled, Internet Explorer (v. 9, 10, 11) uses the second cache mode, other browsers use the first cache mode. When the Default cache mode setting is disabled, Internet Explorer (v. 9, 10, 11) uses the first cache mode, other browsers use the second cache mode. Unit of Measurement is used to specify what units are used on the rulers and in properties windows for measuring elements parameters such as width, height, spacing, margins etc. You can select the Centimeter, Point, or Inch option. To save the changes you made, click the Apply button."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "HelpfulHints/CollaborativeEditing.htm",
|
"id": "HelpfulHints/CollaborativeEditing.htm",
|
||||||
|
@ -98,7 +98,7 @@ var indexes =
|
||||||
{
|
{
|
||||||
"id": "UsageInstructions/AddCaption.htm",
|
"id": "UsageInstructions/AddCaption.htm",
|
||||||
"title": "Add caption",
|
"title": "Add caption",
|
||||||
"body": "The Caption is a numbered label that you can apply to objects, such as equations, tables, figures and images within your documents. This makes it easy to reference within your text as there is an easily recognizable label on your object. To add the caption to an object: select the object which one to apply a caption; switch to the References tab of the top toolbar; click the Caption icon at the top toolbar or right lick o nthe object and select the Insert Caption option to open the Insert Caption dialogue box choose the label to use for your caption by clicking the label drop-down and choosing the object; or create a new label by clicking the Add label button to open the Add label dialogue box. Enter a name for the label into the label text box. Then click the OK button to add a new label into the label list; check the Include chapter number checkbox to change the numbering for your caption; in insert drop-down menu choose Before to place the label above the object or After to place it below the object; check the Exclude label from caption checkbox to leave only a number for this particular caption in accordance with a sequence number; you can then choose how to number your caption by assigning a specific style to the caption and adding a separator; to apply the caption click the OK button. Deleting a label To delete a label you have created, choose the label from the label list within the caption dialogue box then click the Delete label button. The label you created will be immediately deleted. Note:You may delete labels you have created but you cannot delete the default labels. Formatting captions As soon as you add a caption, a new style for captions is automatically added to the styles section. In order to change the style for all captions throughout the document, you should follow these steps: select the text a new Caption style will be copied from; search for the Caption style (highlighted in blue by default) in the styles gallery which you may find on Home tab of the top toolbar; right click on it and choose the Update from selection option. Grouping captions up If you want to be able to move the object and the caption as one unit, you need to group the object and the caption together select the object; select one of the Wrapping styles using the right sidebar; add the caption as it is mentioned above; hold down Shift and select the items you want to group up; right click on either item and choose Arrange > Group. Now both items will move simultaneously if you drag them somewhere else in the document. To unbind the objects click on Arrange > Ungroup respectively."
|
"body": "The Caption is a numbered label that you can apply to objects, such as equations, tables, figures and images within your documents. This makes it easy to reference within your text as there is an easily recognizable label on your object. To add the caption to an object: select the object which one to apply a caption; switch to the References tab of the top toolbar; click the Caption icon at the top toolbar or right lick o nthe object and select the Insert Caption option to open the Insert Caption dialogue box choose the label to use for your caption by clicking the label drop-down and choosing the object. or create a new label by clicking the Add label button to open the Add label dialogue box. Enter a name for the label into the label text box. Then click the OK button to add a new label into the label list; check the Include chapter number checkbox to change the numbering for your caption; in Insert drop-down menu choose Before to place the label above the object or After to place it below the object; check the Exclude label from caption checkbox to leave only a number for this particular caption in accordance with a sequence number; you can then choose how to number your caption by assigning a specific style to the caption and adding a separator; to apply the caption click the OK button. Deleting a label To delete a label you have created, choose the label from the label list within the caption dialogue box then click the Delete label button. The label you created will be immediately deleted. Note:You may delete labels you have created but you cannot delete the default labels. Formatting captions As soon as you add a caption, a new style for captions is automatically added to the styles section. In order to change the style for all captions throughout the document, you should follow these steps: select the text a new Caption style will be copied from; search for the Caption style (highlighted in blue by default) in the styles gallery which you may find on Home tab of the top toolbar; right click on it and choose the Update from selection option. Grouping captions up If you want to be able to move the object and the caption as one unit, you need to group the object and the caption together select the object; select one of the Wrapping styles using the right sidebar; add the caption as it is mentioned above; hold down Shift and select the items you want to group up; right click on either item and choose Arrange > Group. Now both items will move simultaneously if you drag them somewhere else in the document. To unbind the objects click on Arrange > Ungroup respectively."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "UsageInstructions/AddFormulasInTables.htm",
|
"id": "UsageInstructions/AddFormulasInTables.htm",
|
||||||
|
|
|
@ -23,8 +23,7 @@
|
||||||
<li>
|
<li>
|
||||||
щелкните на иконку <img alt="Rich text content control" src="../images/caption_icon.png" /> <b>Название</b> на верхней панели инструментов или щелкнув правой кнопкой по объекту, выберите функцию <b>Вставить название</b>. Откроется диалоговое окно <b>Вставить название</b>
|
щелкните на иконку <img alt="Rich text content control" src="../images/caption_icon.png" /> <b>Название</b> на верхней панели инструментов или щелкнув правой кнопкой по объекту, выберите функцию <b>Вставить название</b>. Откроется диалоговое окно <b>Вставить название</b>
|
||||||
<ul>
|
<ul>
|
||||||
<li>выберите подпись для названия, щелкнув раскрывающийся список и выбрав один из предложенных вариантов;
|
<li>выберите подпись для названия, щелкнув на раскрывающийся список и выбрав один из предложенных вариантов, или</li>
|
||||||
<p>или</p></li>
|
|
||||||
<li>создайте новую подпись, нажав кнопку <b>Добавить</b>. В диалоговом окне введите новую подпись в текстовое поле. Затем нажмите кнопку <b>ОК</b>, чтобы добавить новую <b>Подпись</b> в список подписей;</li>
|
<li>создайте новую подпись, нажав кнопку <b>Добавить</b>. В диалоговом окне введите новую подпись в текстовое поле. Затем нажмите кнопку <b>ОК</b>, чтобы добавить новую <b>Подпись</b> в список подписей;</li>
|
||||||
</ul>
|
</ul>
|
||||||
<li>в выпадающем списке <b>Вставить</b> выберите <b>Перед</b>, чтобы разместить название над объектом, или <b>После</b>, чтобы разместить его под объектом;</li>
|
<li>в выпадающем списке <b>Вставить</b> выберите <b>Перед</b>, чтобы разместить название над объектом, или <b>После</b>, чтобы разместить его под объектом;</li>
|
||||||
|
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 4 KiB |
Before Width: | Height: | Size: 557 B |
Before Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 800 B |
|
@ -121,31 +121,73 @@ define([
|
||||||
var res = me.api.Cut();
|
var res = me.api.Cut();
|
||||||
if (!res) {
|
if (!res) {
|
||||||
_view.hideMenu();
|
_view.hideMenu();
|
||||||
uiApp.modal({
|
if (!Common.localStorage.getBool("de-hide-copy-cut-paste-warning")) {
|
||||||
title: me.textCopyCutPasteActions,
|
uiApp.modal({
|
||||||
text : me.errorCopyCutPaste,
|
title: me.textCopyCutPasteActions,
|
||||||
buttons: [{text: 'OK'}]
|
text: me.errorCopyCutPaste,
|
||||||
});
|
afterText: '<label class="label-checkbox item-content no-ripple">' +
|
||||||
|
'<input type="checkbox" name="checkbox-show-cut">' +
|
||||||
|
'<div class="item-media" style="margin-top: 10px; display: flex; align-items: center;">' +
|
||||||
|
'<i class="icon icon-form-checkbox"></i><span style="margin-left: 10px;">' + me.textDoNotShowAgain + '</span>' +
|
||||||
|
'</div>' +
|
||||||
|
'</label>',
|
||||||
|
buttons: [{
|
||||||
|
text: 'OK',
|
||||||
|
onClick: function () {
|
||||||
|
var dontshow = $('input[name="checkbox-show-cut"]').prop('checked');
|
||||||
|
if (dontshow) Common.localStorage.setItem("de-hide-copy-cut-paste-warning", 1);
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if ('copy' == eventName) {
|
} else if ('copy' == eventName) {
|
||||||
var res = me.api.Copy();
|
var res = me.api.Copy();
|
||||||
if (!res) {
|
if (!res) {
|
||||||
_view.hideMenu();
|
_view.hideMenu();
|
||||||
uiApp.modal({
|
if (!Common.localStorage.getBool("de-hide-copy-cut-paste-warning")) {
|
||||||
title: me.textCopyCutPasteActions,
|
uiApp.modal({
|
||||||
text : me.errorCopyCutPaste,
|
title: me.textCopyCutPasteActions,
|
||||||
buttons: [{text: 'OK'}]
|
text: me.errorCopyCutPaste,
|
||||||
});
|
afterText: '<label class="label-checkbox item-content no-ripple">' +
|
||||||
|
'<input type="checkbox" name="checkbox-show-copy">' +
|
||||||
|
'<div class="item-media" style="margin-top: 10px; display: flex; align-items: center;">' +
|
||||||
|
'<i class="icon icon-form-checkbox"></i><span style="margin-left: 10px;">' + me.textDoNotShowAgain + '</span>' +
|
||||||
|
'</div>' +
|
||||||
|
'</label>',
|
||||||
|
buttons: [{
|
||||||
|
text: 'OK',
|
||||||
|
onClick: function () {
|
||||||
|
var dontshow = $('input[name="checkbox-show-copy"]').prop('checked');
|
||||||
|
if (dontshow) Common.localStorage.setItem("de-hide-copy-cut-paste-warning", 1);
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if ('paste' == eventName) {
|
} else if ('paste' == eventName) {
|
||||||
var res = me.api.Paste();
|
var res = me.api.Paste();
|
||||||
if (!res) {
|
if (!res) {
|
||||||
_view.hideMenu();
|
_view.hideMenu();
|
||||||
uiApp.modal({
|
if (!Common.localStorage.getBool("de-hide-copy-cut-paste-warning")) {
|
||||||
title: me.textCopyCutPasteActions,
|
uiApp.modal({
|
||||||
text: me.errorCopyCutPaste,
|
title: me.textCopyCutPasteActions,
|
||||||
buttons: [{text: 'OK'}]
|
text: me.errorCopyCutPaste,
|
||||||
});
|
afterText: '<label class="label-checkbox item-content no-ripple">' +
|
||||||
|
'<input type="checkbox" name="checkbox-show-paste">' +
|
||||||
|
'<div class="item-media" style="margin-top: 10px; display: flex; align-items: center;">' +
|
||||||
|
'<i class="icon icon-form-checkbox"></i><span style="margin-left: 10px;">' + me.textDoNotShowAgain + '</span>' +
|
||||||
|
'</div>' +
|
||||||
|
'</label>',
|
||||||
|
buttons: [{
|
||||||
|
text: 'OK',
|
||||||
|
onClick: function () {
|
||||||
|
var dontshow = $('input[name="checkbox-show-paste"]').prop('checked');
|
||||||
|
if (dontshow) Common.localStorage.setItem("de-hide-copy-cut-paste-warning", 1);
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if ('merge' == eventName) {
|
} else if ('merge' == eventName) {
|
||||||
me.api.MergeCells();
|
me.api.MergeCells();
|
||||||
|
@ -585,7 +627,8 @@ define([
|
||||||
menuDeleteTable: 'Delete Table',
|
menuDeleteTable: 'Delete Table',
|
||||||
menuReviewChange: 'Review Change',
|
menuReviewChange: 'Review Change',
|
||||||
textCopyCutPasteActions: 'Copy, Cut and Paste Actions',
|
textCopyCutPasteActions: 'Copy, Cut and Paste Actions',
|
||||||
errorCopyCutPaste: 'Copy, cut and paste actions using the context menu will be performed within the current file only. You cannot copy or paste to or from other applications.'
|
errorCopyCutPaste: 'Copy, cut and paste actions using the context menu will be performed within the current file only.',
|
||||||
|
textDoNotShowAgain: 'Don\'t show again'
|
||||||
}
|
}
|
||||||
})(), DE.Controllers.DocumentHolder || {}))
|
})(), DE.Controllers.DocumentHolder || {}))
|
||||||
});
|
});
|
|
@ -50,7 +50,8 @@ define([
|
||||||
DE.Controllers.EditContainer = Backbone.Controller.extend(_.extend((function() {
|
DE.Controllers.EditContainer = Backbone.Controller.extend(_.extend((function() {
|
||||||
// Private
|
// Private
|
||||||
var _settings = [],
|
var _settings = [],
|
||||||
_headerType = 1;
|
_headerType = 1,
|
||||||
|
_activeTab;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
models: [],
|
models: [],
|
||||||
|
@ -334,12 +335,17 @@ define([
|
||||||
});
|
});
|
||||||
|
|
||||||
Common.NotificationCenter.trigger('editcontainer:show');
|
Common.NotificationCenter.trigger('editcontainer:show');
|
||||||
|
|
||||||
|
if (_activeTab === 'edit-link') {
|
||||||
|
uiApp.showTab('#' + _activeTab, false);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// API handlers
|
// API handlers
|
||||||
|
|
||||||
onApiFocusObject: function (objects) {
|
onApiFocusObject: function (objects) {
|
||||||
_settings = [];
|
_settings = [];
|
||||||
|
_activeTab = undefined;
|
||||||
|
|
||||||
// Paragraph : 0,
|
// Paragraph : 0,
|
||||||
// Table : 1,
|
// Table : 1,
|
||||||
|
@ -368,6 +374,9 @@ define([
|
||||||
}
|
}
|
||||||
} else if (Asc.c_oAscTypeSelectElement.Hyperlink == type) {
|
} else if (Asc.c_oAscTypeSelectElement.Hyperlink == type) {
|
||||||
_settings.push('hyperlink');
|
_settings.push('hyperlink');
|
||||||
|
if (_.isUndefined(_activeTab)) {
|
||||||
|
_activeTab = 'edit-link';
|
||||||
|
}
|
||||||
} else if (Asc.c_oAscTypeSelectElement.Header == type) {
|
} else if (Asc.c_oAscTypeSelectElement.Header == type) {
|
||||||
_settings.push('header');
|
_settings.push('header');
|
||||||
_headerType = object.get_ObjectValue().get_Type();
|
_headerType = object.get_ObjectValue().get_Type();
|
||||||
|
|
|
@ -77,7 +77,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
showMenu: function (items, posX, posY) {
|
showMenu: function (items, posX, posY) {
|
||||||
if (items.length < 1) {
|
if (items.itemsIcon.length < 1 && items.items.length < 1) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -90,6 +90,7 @@
|
||||||
"DE.Controllers.AddTable.textColumns": "Sloupce",
|
"DE.Controllers.AddTable.textColumns": "Sloupce",
|
||||||
"DE.Controllers.AddTable.textRows": "Řádky",
|
"DE.Controllers.AddTable.textRows": "Řádky",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Velikost tabulky",
|
"DE.Controllers.AddTable.textTableSize": "Velikost tabulky",
|
||||||
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Akce kopírovat, vyjmout a vložit použitím kontextové nabídky budou prováděny pouze v rámci právě otevřeného souboru.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Kopírovat",
|
"DE.Controllers.DocumentHolder.menuCopy": "Kopírovat",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Vyjmout",
|
"DE.Controllers.DocumentHolder.menuCut": "Vyjmout",
|
||||||
|
@ -106,6 +107,7 @@
|
||||||
"DE.Controllers.DocumentHolder.sheetCancel": "Zrušit",
|
"DE.Controllers.DocumentHolder.sheetCancel": "Zrušit",
|
||||||
"DE.Controllers.DocumentHolder.textCancel": "Storno",
|
"DE.Controllers.DocumentHolder.textCancel": "Storno",
|
||||||
"DE.Controllers.DocumentHolder.textColumns": "Sloupce",
|
"DE.Controllers.DocumentHolder.textColumns": "Sloupce",
|
||||||
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Akce kopírovat, vyjmout a vložit",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "Návštěvník",
|
"DE.Controllers.DocumentHolder.textGuest": "Návštěvník",
|
||||||
"DE.Controllers.DocumentHolder.textRows": "Řádky",
|
"DE.Controllers.DocumentHolder.textRows": "Řádky",
|
||||||
"DE.Controllers.EditContainer.textChart": "Graf",
|
"DE.Controllers.EditContainer.textChart": "Graf",
|
||||||
|
@ -151,7 +153,7 @@
|
||||||
"DE.Controllers.Main.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.<br>Ohledně podrobností se obraťte na správce dokumentového serveru.",
|
"DE.Controllers.Main.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.<br>Ohledně podrobností se obraťte na správce dokumentového serveru.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru",
|
"DE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel",
|
"DE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Načítání selhalo",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Načítání dokumentu se nezdařilo. Vyberte jiný soubor.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Spojování selhalo.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Spojování selhalo.",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo.",
|
"DE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo.",
|
||||||
"DE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.",
|
"DE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.",
|
||||||
|
@ -161,7 +163,7 @@
|
||||||
"DE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.",
|
"DE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "Počet uživatelů byl překročen",
|
"DE.Controllers.Main.errorUsersExceed": "Počet uživatelů byl překročen",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Spojení je přerušeno. Stále můžete zobrazit dokument,<br>ale nebudete moci stahovat, dokud neobnovíte připojení a nenačtete stránku znovu.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Spojení je přerušeno. Stále můžete zobrazit dokument,<br>ale nebudete moci stahovat, dokud neobnovíte připojení a nenačtete stránku znovu.",
|
||||||
"DE.Controllers.Main.leavePageText": "V tomto dokumentu máte neuložené změny. Klikněte na tlačítko \"Zůstat na této stránce\" a počkejte na automatické ukládání dokumentu.Klikněte na tlačítko \"Opustit tuto stránku\", abyste zrušili všechny neuložené změny.",
|
"DE.Controllers.Main.leavePageText": "V tomto dokumentu máte neuložené změny. Pokud o ně nechcete přijít, klikněte na „Zůstat na této stránce“, poté vyčkejte na automatické uložení dokumentu. V opačném případě klikněte na „Opustit tuto stránku“ a všechny neuložené změny budou zahozeny.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Načítání dat...",
|
"DE.Controllers.Main.loadFontsTextText": "Načítání dat...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Načítání dat",
|
"DE.Controllers.Main.loadFontsTitleText": "Načítání dat",
|
||||||
"DE.Controllers.Main.loadFontTextText": "Načítání dat...",
|
"DE.Controllers.Main.loadFontTextText": "Načítání dat...",
|
||||||
|
@ -257,7 +259,7 @@
|
||||||
"DE.Controllers.Settings.unknownText": "Neznámý",
|
"DE.Controllers.Settings.unknownText": "Neznámý",
|
||||||
"DE.Controllers.Settings.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.<br>Opravdu chcete pokračovat?",
|
"DE.Controllers.Settings.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.<br>Opravdu chcete pokračovat?",
|
||||||
"DE.Controllers.Settings.warnDownloadAsRTF": "Uložením v tomto formátu může být ztracena část formátování dokumentu.<br>Opravdu chcete pokračovat?",
|
"DE.Controllers.Settings.warnDownloadAsRTF": "Uložením v tomto formátu může být ztracena část formátování dokumentu.<br>Opravdu chcete pokračovat?",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na tlačítko \"Zůstat na této stránce\" a počkejte na automatické ukládání dokumentu.Klikněte na tlačítko \"Opustit tuto stránku\", abyste zrušili všechny neuložené změny.",
|
"DE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Pokud o ně nechcete přijít, klikněte na „Zůstat na této stránce“, poté vyčkejte na automatické uložení dokumentu. V opačném případě klikněte na „Opustit tuto stránku“ a všechny neuložené změny budou zahozeny.",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Opouštíte aplikaci",
|
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Opouštíte aplikaci",
|
||||||
"DE.Controllers.Toolbar.leaveButtonText": "Opustit tuto stránku",
|
"DE.Controllers.Toolbar.leaveButtonText": "Opustit tuto stránku",
|
||||||
"DE.Controllers.Toolbar.stayButtonText": "Zůstat na této stránce",
|
"DE.Controllers.Toolbar.stayButtonText": "Zůstat na této stránce",
|
||||||
|
@ -478,7 +480,7 @@
|
||||||
"DE.Views.Settings.textCollaboration": "Spolupráce",
|
"DE.Views.Settings.textCollaboration": "Spolupráce",
|
||||||
"DE.Views.Settings.textColorSchemes": "Schémata barev",
|
"DE.Views.Settings.textColorSchemes": "Schémata barev",
|
||||||
"DE.Views.Settings.textComment": "Komentář",
|
"DE.Views.Settings.textComment": "Komentář",
|
||||||
"DE.Views.Settings.textCommentingDisplay": "Zobrazení komentářů",
|
"DE.Views.Settings.textCommentingDisplay": "Zobrazování komentářů",
|
||||||
"DE.Views.Settings.textCreated": "Vytvořeno",
|
"DE.Views.Settings.textCreated": "Vytvořeno",
|
||||||
"DE.Views.Settings.textCreateDate": "Datum vytvoření",
|
"DE.Views.Settings.textCreateDate": "Datum vytvoření",
|
||||||
"DE.Views.Settings.textCustom": "Vlastní",
|
"DE.Views.Settings.textCustom": "Vlastní",
|
||||||
|
@ -528,7 +530,7 @@
|
||||||
"DE.Views.Settings.textTel": "Sdělit",
|
"DE.Views.Settings.textTel": "Sdělit",
|
||||||
"DE.Views.Settings.textTitle": "Nadpis",
|
"DE.Views.Settings.textTitle": "Nadpis",
|
||||||
"DE.Views.Settings.textTop": "Nahoře",
|
"DE.Views.Settings.textTop": "Nahoře",
|
||||||
"DE.Views.Settings.textUnitOfMeasurement": "Zobrazovat hodnoty v jednotkách",
|
"DE.Views.Settings.textUnitOfMeasurement": "Měřit v jednotkách",
|
||||||
"DE.Views.Settings.textUploaded": "Nahráno",
|
"DE.Views.Settings.textUploaded": "Nahráno",
|
||||||
"DE.Views.Settings.textVersion": "Verze",
|
"DE.Views.Settings.textVersion": "Verze",
|
||||||
"DE.Views.Settings.textWords": "Slova",
|
"DE.Views.Settings.textWords": "Slova",
|
||||||
|
|
|
@ -83,14 +83,14 @@
|
||||||
"DE.Controllers.AddContainer.textTable": "Tabelle",
|
"DE.Controllers.AddContainer.textTable": "Tabelle",
|
||||||
"DE.Controllers.AddImage.textEmptyImgUrl": "Sie müssen eine Bild-URL angeben.",
|
"DE.Controllers.AddImage.textEmptyImgUrl": "Sie müssen eine Bild-URL angeben.",
|
||||||
"DE.Controllers.AddImage.txtNotUrl": "Dieses Feld muss URL im Format \"http://www.example.com\" sein",
|
"DE.Controllers.AddImage.txtNotUrl": "Dieses Feld muss URL im Format \"http://www.example.com\" sein",
|
||||||
"DE.Controllers.AddOther.textBelowText": "Unter Text",
|
"DE.Controllers.AddOther.textBelowText": "Unterhalb des Textes",
|
||||||
"DE.Controllers.AddOther.textBottomOfPage": "Seitenende",
|
"DE.Controllers.AddOther.textBottomOfPage": "Seitenende",
|
||||||
"DE.Controllers.AddOther.txtNotUrl": "Dieses Feld muss URL im Format \"http://www.example.com\" sein",
|
"DE.Controllers.AddOther.txtNotUrl": "Dieses Feld muss URL im Format \"http://www.example.com\" sein",
|
||||||
"DE.Controllers.AddTable.textCancel": "Abbrechen",
|
"DE.Controllers.AddTable.textCancel": "Abbrechen",
|
||||||
"DE.Controllers.AddTable.textColumns": "Spalten",
|
"DE.Controllers.AddTable.textColumns": "Spalten",
|
||||||
"DE.Controllers.AddTable.textRows": "Zeilen",
|
"DE.Controllers.AddTable.textRows": "Zeilen",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Tabellengröße",
|
"DE.Controllers.AddTable.textTableSize": "Tabellengröße",
|
||||||
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Funktionen 'Kopieren', 'Ausschneiden' und 'Einfügen' über das Kontextmenü werden nur in der aktuellen Datei ausgeführt. Sie können nicht in oder aus anderen Anwendungen kopieren oder einfügen.",
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Funktionen 'Kopieren', 'Ausschneiden' und 'Einfügen' über das Kontextmenü werden nur in der aktuellen Datei ausgeführt.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Link hinzufügen",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Link hinzufügen",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Kopieren",
|
"DE.Controllers.DocumentHolder.menuCopy": "Kopieren",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Ausschneiden",
|
"DE.Controllers.DocumentHolder.menuCut": "Ausschneiden",
|
||||||
|
@ -132,7 +132,7 @@
|
||||||
"DE.Controllers.Main.applyChangesTextText": "Daten werden geladen...",
|
"DE.Controllers.Main.applyChangesTextText": "Daten werden geladen...",
|
||||||
"DE.Controllers.Main.applyChangesTitleText": "Daten werden geladen",
|
"DE.Controllers.Main.applyChangesTitleText": "Daten werden geladen",
|
||||||
"DE.Controllers.Main.closeButtonText": "Datei schließen",
|
"DE.Controllers.Main.closeButtonText": "Datei schließen",
|
||||||
"DE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
|
"DE.Controllers.Main.convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
|
||||||
"DE.Controllers.Main.criticalErrorExtText": "Drücken Sie \"OK\", um zur Dokumentenliste zurückzukehren.",
|
"DE.Controllers.Main.criticalErrorExtText": "Drücken Sie \"OK\", um zur Dokumentenliste zurückzukehren.",
|
||||||
"DE.Controllers.Main.criticalErrorTitle": "Fehler",
|
"DE.Controllers.Main.criticalErrorTitle": "Fehler",
|
||||||
"DE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
|
"DE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
|
||||||
|
@ -140,7 +140,7 @@
|
||||||
"DE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen",
|
"DE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen",
|
||||||
"DE.Controllers.Main.downloadTextText": "Dokument wird heruntergeladen...",
|
"DE.Controllers.Main.downloadTextText": "Dokument wird heruntergeladen...",
|
||||||
"DE.Controllers.Main.downloadTitleText": "Herunterladen des Dokuments",
|
"DE.Controllers.Main.downloadTitleText": "Herunterladen des Dokuments",
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Sie versuchen die Änderungen vorzunehemen, für die Sie keine Berechtigungen haben.<br>Wenden Sie sich an Ihren Document Server Serveradministrator.",
|
"DE.Controllers.Main.errorAccessDeny": "Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.<br>Bitte wenden Sie sich an Ihren Document Serveradministrator.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
"DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Sie können nicht mehr editieren.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Sie können nicht mehr editieren.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.",
|
"DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.",
|
||||||
|
@ -148,7 +148,7 @@
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
"DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
"DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten. <br> Verwenden Sie die Option \"Herunterladen\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Bei der Verarbeitung des Dokuments ist ein Fehler aufgetreten.<br>Verwenden Sie die Option \"Herunterladen\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
|
"DE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
|
||||||
"DE.Controllers.Main.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
|
"DE.Controllers.Main.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
|
"DE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor",
|
||||||
|
@ -162,7 +162,7 @@
|
||||||
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.<br>Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.",
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.<br>Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
|
"DE.Controllers.Main.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "Die Anzahl der Benutzer ist überschritten ",
|
"DE.Controllers.Main.errorUsersExceed": "Die Anzahl der Benutzer ist überschritten ",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Die Verbindung ist unterbrochen. Man kann das Dokument anschauen,<br>aber nicht herunterladen, bis die Verbindung wiederhergestellt und die Seite neu geladen wird.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Die Verbindung ist unterbrochen. Sie können das Dokument anschauen,<br>aber nicht herunterladen bis die Verbindung wiederhergestellt und die Seite neu geladen wird.",
|
||||||
"DE.Controllers.Main.leavePageText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\", um auf automatisches Speichern des Dokumentes zu warten. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.",
|
"DE.Controllers.Main.leavePageText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\", um auf automatisches Speichern des Dokumentes zu warten. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Daten werden geladen...",
|
"DE.Controllers.Main.loadFontsTextText": "Daten werden geladen...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Daten werden geladen",
|
"DE.Controllers.Main.loadFontsTitleText": "Daten werden geladen",
|
||||||
|
@ -301,7 +301,7 @@
|
||||||
"DE.Views.EditChart.textAlign": "Ausrichtung",
|
"DE.Views.EditChart.textAlign": "Ausrichtung",
|
||||||
"DE.Views.EditChart.textBack": "Zurück",
|
"DE.Views.EditChart.textBack": "Zurück",
|
||||||
"DE.Views.EditChart.textBackward": "Rückwärts navigieren",
|
"DE.Views.EditChart.textBackward": "Rückwärts navigieren",
|
||||||
"DE.Views.EditChart.textBehind": "Hinten",
|
"DE.Views.EditChart.textBehind": "Dahinter",
|
||||||
"DE.Views.EditChart.textBorder": "Rahmen",
|
"DE.Views.EditChart.textBorder": "Rahmen",
|
||||||
"DE.Views.EditChart.textColor": "Farbe",
|
"DE.Views.EditChart.textColor": "Farbe",
|
||||||
"DE.Views.EditChart.textCustomColor": "Benutzerdefinierte Farbe",
|
"DE.Views.EditChart.textCustomColor": "Benutzerdefinierte Farbe",
|
||||||
|
@ -328,7 +328,7 @@
|
||||||
"DE.Views.EditHeader.textDiffOdd": "Untersch. gerade/ungerade Seiten",
|
"DE.Views.EditHeader.textDiffOdd": "Untersch. gerade/ungerade Seiten",
|
||||||
"DE.Views.EditHeader.textFrom": "Starten mit",
|
"DE.Views.EditHeader.textFrom": "Starten mit",
|
||||||
"DE.Views.EditHeader.textPageNumbering": "Seitennummerierung",
|
"DE.Views.EditHeader.textPageNumbering": "Seitennummerierung",
|
||||||
"DE.Views.EditHeader.textPrev": "Vom vorherigen Abschnitt fortsetzen",
|
"DE.Views.EditHeader.textPrev": "Beim vorherigen Abschnitt fortsetzen",
|
||||||
"DE.Views.EditHeader.textSameAs": "Mit vorheriger verknüpfen",
|
"DE.Views.EditHeader.textSameAs": "Mit vorheriger verknüpfen",
|
||||||
"DE.Views.EditHyperlink.textDisplay": "Anzeigen",
|
"DE.Views.EditHyperlink.textDisplay": "Anzeigen",
|
||||||
"DE.Views.EditHyperlink.textEdit": "Link bearbeiten",
|
"DE.Views.EditHyperlink.textEdit": "Link bearbeiten",
|
||||||
|
@ -339,7 +339,7 @@
|
||||||
"DE.Views.EditImage.textAlign": "Ausrichtung",
|
"DE.Views.EditImage.textAlign": "Ausrichtung",
|
||||||
"DE.Views.EditImage.textBack": "Zurück",
|
"DE.Views.EditImage.textBack": "Zurück",
|
||||||
"DE.Views.EditImage.textBackward": "Rückwärts navigieren",
|
"DE.Views.EditImage.textBackward": "Rückwärts navigieren",
|
||||||
"DE.Views.EditImage.textBehind": "Hinten",
|
"DE.Views.EditImage.textBehind": "Dahinter",
|
||||||
"DE.Views.EditImage.textDefault": "Tatsächliche Größe",
|
"DE.Views.EditImage.textDefault": "Tatsächliche Größe",
|
||||||
"DE.Views.EditImage.textDistanceText": "Abstand vom Text",
|
"DE.Views.EditImage.textDistanceText": "Abstand vom Text",
|
||||||
"DE.Views.EditImage.textForward": "Vorwärts navigieren",
|
"DE.Views.EditImage.textForward": "Vorwärts navigieren",
|
||||||
|
@ -383,7 +383,7 @@
|
||||||
"DE.Views.EditShape.textAlign": "Ausrichtung",
|
"DE.Views.EditShape.textAlign": "Ausrichtung",
|
||||||
"DE.Views.EditShape.textBack": "Zurück",
|
"DE.Views.EditShape.textBack": "Zurück",
|
||||||
"DE.Views.EditShape.textBackward": "Rückwärts navigieren",
|
"DE.Views.EditShape.textBackward": "Rückwärts navigieren",
|
||||||
"DE.Views.EditShape.textBehind": "Hinten",
|
"DE.Views.EditShape.textBehind": "Dahinter",
|
||||||
"DE.Views.EditShape.textBorder": "Rahmen",
|
"DE.Views.EditShape.textBorder": "Rahmen",
|
||||||
"DE.Views.EditShape.textColor": "Farbe",
|
"DE.Views.EditShape.textColor": "Farbe",
|
||||||
"DE.Views.EditShape.textCustomColor": "Benutzerdefinierte Farbe",
|
"DE.Views.EditShape.textCustomColor": "Benutzerdefinierte Farbe",
|
||||||
|
@ -478,7 +478,7 @@
|
||||||
"DE.Views.Settings.textBottom": "Unten",
|
"DE.Views.Settings.textBottom": "Unten",
|
||||||
"DE.Views.Settings.textCentimeter": "Zentimeter",
|
"DE.Views.Settings.textCentimeter": "Zentimeter",
|
||||||
"DE.Views.Settings.textCollaboration": "Zusammenarbeit",
|
"DE.Views.Settings.textCollaboration": "Zusammenarbeit",
|
||||||
"DE.Views.Settings.textColorSchemes": "Farbschemas",
|
"DE.Views.Settings.textColorSchemes": "Farbschemata",
|
||||||
"DE.Views.Settings.textComment": "Kommentar",
|
"DE.Views.Settings.textComment": "Kommentar",
|
||||||
"DE.Views.Settings.textCommentingDisplay": "Kommentare anzeigen",
|
"DE.Views.Settings.textCommentingDisplay": "Kommentare anzeigen",
|
||||||
"DE.Views.Settings.textCreated": "Erstellt",
|
"DE.Views.Settings.textCreated": "Erstellt",
|
||||||
|
|
|
@ -90,6 +90,7 @@
|
||||||
"DE.Controllers.AddTable.textColumns": "Columns",
|
"DE.Controllers.AddTable.textColumns": "Columns",
|
||||||
"DE.Controllers.AddTable.textRows": "Rows",
|
"DE.Controllers.AddTable.textRows": "Rows",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Table Size",
|
"DE.Controllers.AddTable.textTableSize": "Table Size",
|
||||||
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Add Link",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Add Link",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Copy",
|
"DE.Controllers.DocumentHolder.menuCopy": "Copy",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Cut",
|
"DE.Controllers.DocumentHolder.menuCut": "Cut",
|
||||||
|
@ -106,10 +107,10 @@
|
||||||
"DE.Controllers.DocumentHolder.sheetCancel": "Cancel",
|
"DE.Controllers.DocumentHolder.sheetCancel": "Cancel",
|
||||||
"DE.Controllers.DocumentHolder.textCancel": "Cancel",
|
"DE.Controllers.DocumentHolder.textCancel": "Cancel",
|
||||||
"DE.Controllers.DocumentHolder.textColumns": "Columns",
|
"DE.Controllers.DocumentHolder.textColumns": "Columns",
|
||||||
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Copy, Cut and Paste Actions",
|
||||||
|
"DE.Controllers.DocumentHolder.textDoNotShowAgain": "Do not show again",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "Guest",
|
"DE.Controllers.DocumentHolder.textGuest": "Guest",
|
||||||
"DE.Controllers.DocumentHolder.textRows": "Rows",
|
"DE.Controllers.DocumentHolder.textRows": "Rows",
|
||||||
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Copy, Cut and Paste Actions",
|
|
||||||
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only. You cannot copy or paste to or from other applications.",
|
|
||||||
"DE.Controllers.EditContainer.textChart": "Chart",
|
"DE.Controllers.EditContainer.textChart": "Chart",
|
||||||
"DE.Controllers.EditContainer.textFooter": "Footer",
|
"DE.Controllers.EditContainer.textFooter": "Footer",
|
||||||
"DE.Controllers.EditContainer.textHeader": "Header",
|
"DE.Controllers.EditContainer.textHeader": "Header",
|
||||||
|
|
|
@ -58,6 +58,7 @@
|
||||||
"Common.Controllers.Collaboration.textTabs": "Cambiar tabuladores",
|
"Common.Controllers.Collaboration.textTabs": "Cambiar tabuladores",
|
||||||
"Common.Controllers.Collaboration.textUnderline": "Subrayado",
|
"Common.Controllers.Collaboration.textUnderline": "Subrayado",
|
||||||
"Common.Controllers.Collaboration.textWidow": "Widow control",
|
"Common.Controllers.Collaboration.textWidow": "Widow control",
|
||||||
|
"Common.UI.ThemeColorPalette.textCustomColors": "Colores personalizados",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
|
@ -70,6 +71,7 @@
|
||||||
"Common.Views.Collaboration.textEditUsers": "Usuarios",
|
"Common.Views.Collaboration.textEditUsers": "Usuarios",
|
||||||
"Common.Views.Collaboration.textFinal": "Final",
|
"Common.Views.Collaboration.textFinal": "Final",
|
||||||
"Common.Views.Collaboration.textMarkup": "Cambios",
|
"Common.Views.Collaboration.textMarkup": "Cambios",
|
||||||
|
"Common.Views.Collaboration.textNoComments": "Este documento no contiene comentarios.",
|
||||||
"Common.Views.Collaboration.textOriginal": "Original",
|
"Common.Views.Collaboration.textOriginal": "Original",
|
||||||
"Common.Views.Collaboration.textRejectAllChanges": "Rechazar todos los cambios",
|
"Common.Views.Collaboration.textRejectAllChanges": "Rechazar todos los cambios",
|
||||||
"Common.Views.Collaboration.textReview": "Seguimiento de cambios",
|
"Common.Views.Collaboration.textReview": "Seguimiento de cambios",
|
||||||
|
@ -88,6 +90,7 @@
|
||||||
"DE.Controllers.AddTable.textColumns": "Columnas",
|
"DE.Controllers.AddTable.textColumns": "Columnas",
|
||||||
"DE.Controllers.AddTable.textRows": "Filas",
|
"DE.Controllers.AddTable.textRows": "Filas",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Tamaño de tabla",
|
"DE.Controllers.AddTable.textTableSize": "Tamaño de tabla",
|
||||||
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Copiar ",
|
"DE.Controllers.DocumentHolder.menuCopy": "Copiar ",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Cortar",
|
"DE.Controllers.DocumentHolder.menuCut": "Cortar",
|
||||||
|
@ -104,6 +107,8 @@
|
||||||
"DE.Controllers.DocumentHolder.sheetCancel": "Cancelar",
|
"DE.Controllers.DocumentHolder.sheetCancel": "Cancelar",
|
||||||
"DE.Controllers.DocumentHolder.textCancel": "Cancelar",
|
"DE.Controllers.DocumentHolder.textCancel": "Cancelar",
|
||||||
"DE.Controllers.DocumentHolder.textColumns": "Columnas",
|
"DE.Controllers.DocumentHolder.textColumns": "Columnas",
|
||||||
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Acciones de Copiar, Cortar y Pegar",
|
||||||
|
"DE.Controllers.DocumentHolder.textDoNotShowAgain": "No mostrar otra vez",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "Visitante",
|
"DE.Controllers.DocumentHolder.textGuest": "Visitante",
|
||||||
"DE.Controllers.DocumentHolder.textRows": "Filas",
|
"DE.Controllers.DocumentHolder.textRows": "Filas",
|
||||||
"DE.Controllers.EditContainer.textChart": "Gráfico",
|
"DE.Controllers.EditContainer.textChart": "Gráfico",
|
||||||
|
@ -146,17 +151,19 @@
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Código de error: %1",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.<br>Use la opción 'Descargar' para guardar la copia de seguridad de archivo en el disco duro de su computadora.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.<br>Use la opción 'Descargar' para guardar la copia de seguridad de archivo en el disco duro de su computadora.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
|
"DE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo supera la configuración del servidor.<br>Póngase en contacto con el administrador del servidor para obtener más detalles. ",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
|
"DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Error de carga",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Error al cargar el archivo. Por favor seleccione uno distinto.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "Fallo en guardar",
|
"DE.Controllers.Main.errorProcessSaveResult": "Fallo en guardar",
|
||||||
"DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
|
"DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.",
|
||||||
"DE.Controllers.Main.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja en el orden siguiente:<br> precio de apertura, precio máximo, precio mínimo, precio de cierre.",
|
"DE.Controllers.Main.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja en el orden siguiente:<br> precio de apertura, precio máximo, precio mínimo, precio de cierre.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.",
|
"DE.Controllers.Main.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La conexión a Internet se ha restaurado y la versión del archivo ha cambiado a <br>. Antes de continuar trabajando, necesita descargar el archivo o copiar su contenido para asegurarse de que no ha perdido nada, por ultimo recargue esta pagina.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.",
|
"DE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "El número de usuarios fue superado",
|
"DE.Controllers.Main.errorUsersExceed": "El número de usuarios fue superado",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Se pierde la conexión. Usted todavía puede visualizar el documento,<br> pero no puede descargarlo antes de que conexión sea restaurada.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Se ha perdido la conexión. Usted todavía puede visualizar el documento,<br> pero no podrá descargarlo antes de que conexión sea restaurada y se actualice la página.",
|
||||||
"DE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
"DE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Cargando datos...",
|
"DE.Controllers.Main.loadFontsTextText": "Cargando datos...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Cargando datos",
|
"DE.Controllers.Main.loadFontsTitleText": "Cargando datos",
|
||||||
|
@ -252,6 +259,7 @@
|
||||||
"DE.Controllers.Settings.txtLoading": "Cargando...",
|
"DE.Controllers.Settings.txtLoading": "Cargando...",
|
||||||
"DE.Controllers.Settings.unknownText": "Desconocido",
|
"DE.Controllers.Settings.unknownText": "Desconocido",
|
||||||
"DE.Controllers.Settings.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.<br> ¿Está seguro de que quiere continuar?",
|
"DE.Controllers.Settings.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.<br> ¿Está seguro de que quiere continuar?",
|
||||||
|
"DE.Controllers.Settings.warnDownloadAsRTF": "Si continúa guardando en este formato, parte del documento puede perderse.<br>¿Está seguro que desea continuar?",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Usted abandona la aplicación",
|
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Usted abandona la aplicación",
|
||||||
"DE.Controllers.Toolbar.leaveButtonText": "Salir de esta página",
|
"DE.Controllers.Toolbar.leaveButtonText": "Salir de esta página",
|
||||||
|
@ -290,12 +298,14 @@
|
||||||
"DE.Views.AddOther.textSectionBreak": "Salto de sección",
|
"DE.Views.AddOther.textSectionBreak": "Salto de sección",
|
||||||
"DE.Views.AddOther.textStartFrom": "Empezar con",
|
"DE.Views.AddOther.textStartFrom": "Empezar con",
|
||||||
"DE.Views.AddOther.textTip": "Consejos de pantalla",
|
"DE.Views.AddOther.textTip": "Consejos de pantalla",
|
||||||
|
"DE.Views.EditChart.textAddCustomColor": "Añadir Color Personalizado",
|
||||||
"DE.Views.EditChart.textAlign": "Alineación",
|
"DE.Views.EditChart.textAlign": "Alineación",
|
||||||
"DE.Views.EditChart.textBack": "Atrás",
|
"DE.Views.EditChart.textBack": "Atrás",
|
||||||
"DE.Views.EditChart.textBackward": "Mover atrás",
|
"DE.Views.EditChart.textBackward": "Mover atrás",
|
||||||
"DE.Views.EditChart.textBehind": "Detrás",
|
"DE.Views.EditChart.textBehind": "Detrás",
|
||||||
"DE.Views.EditChart.textBorder": "Borde",
|
"DE.Views.EditChart.textBorder": "Borde",
|
||||||
"DE.Views.EditChart.textColor": "Color",
|
"DE.Views.EditChart.textColor": "Color",
|
||||||
|
"DE.Views.EditChart.textCustomColor": "Color personalizado",
|
||||||
"DE.Views.EditChart.textDistanceText": "Distancia del texto",
|
"DE.Views.EditChart.textDistanceText": "Distancia del texto",
|
||||||
"DE.Views.EditChart.textFill": "Relleno",
|
"DE.Views.EditChart.textFill": "Relleno",
|
||||||
"DE.Views.EditChart.textForward": "Mover adelante",
|
"DE.Views.EditChart.textForward": "Mover adelante",
|
||||||
|
@ -331,7 +341,7 @@
|
||||||
"DE.Views.EditImage.textBack": "Atrás",
|
"DE.Views.EditImage.textBack": "Atrás",
|
||||||
"DE.Views.EditImage.textBackward": "Mover atrás",
|
"DE.Views.EditImage.textBackward": "Mover atrás",
|
||||||
"DE.Views.EditImage.textBehind": "Detrás",
|
"DE.Views.EditImage.textBehind": "Detrás",
|
||||||
"DE.Views.EditImage.textDefault": "Tamaño Predeterminado",
|
"DE.Views.EditImage.textDefault": "Tamaño actual",
|
||||||
"DE.Views.EditImage.textDistanceText": "Distancia del texto",
|
"DE.Views.EditImage.textDistanceText": "Distancia del texto",
|
||||||
"DE.Views.EditImage.textForward": "Mover adelante",
|
"DE.Views.EditImage.textForward": "Mover adelante",
|
||||||
"DE.Views.EditImage.textFromLibrary": "Imagen de biblioteca",
|
"DE.Views.EditImage.textFromLibrary": "Imagen de biblioteca",
|
||||||
|
@ -353,6 +363,7 @@
|
||||||
"DE.Views.EditImage.textToForeground": "Traer al frente",
|
"DE.Views.EditImage.textToForeground": "Traer al frente",
|
||||||
"DE.Views.EditImage.textTopBottom": "Superior e inferior",
|
"DE.Views.EditImage.textTopBottom": "Superior e inferior",
|
||||||
"DE.Views.EditImage.textWrap": "Envoltura",
|
"DE.Views.EditImage.textWrap": "Envoltura",
|
||||||
|
"DE.Views.EditParagraph.textAddCustomColor": "Añadir un Color Personalizado",
|
||||||
"DE.Views.EditParagraph.textAdvanced": "Avanzado",
|
"DE.Views.EditParagraph.textAdvanced": "Avanzado",
|
||||||
"DE.Views.EditParagraph.textAdvSettings": "Ajustes avanzados",
|
"DE.Views.EditParagraph.textAdvSettings": "Ajustes avanzados",
|
||||||
"DE.Views.EditParagraph.textAfter": "Después",
|
"DE.Views.EditParagraph.textAfter": "Después",
|
||||||
|
@ -360,6 +371,7 @@
|
||||||
"DE.Views.EditParagraph.textBack": "Atrás",
|
"DE.Views.EditParagraph.textBack": "Atrás",
|
||||||
"DE.Views.EditParagraph.textBackground": "Fondo",
|
"DE.Views.EditParagraph.textBackground": "Fondo",
|
||||||
"DE.Views.EditParagraph.textBefore": "Antes",
|
"DE.Views.EditParagraph.textBefore": "Antes",
|
||||||
|
"DE.Views.EditParagraph.textCustomColor": "Color personalizado",
|
||||||
"DE.Views.EditParagraph.textFirstLine": "Primera línea",
|
"DE.Views.EditParagraph.textFirstLine": "Primera línea",
|
||||||
"DE.Views.EditParagraph.textFromText": "Distancia del texto",
|
"DE.Views.EditParagraph.textFromText": "Distancia del texto",
|
||||||
"DE.Views.EditParagraph.textKeepLines": "Mantener líneas juntas",
|
"DE.Views.EditParagraph.textKeepLines": "Mantener líneas juntas",
|
||||||
|
@ -368,12 +380,14 @@
|
||||||
"DE.Views.EditParagraph.textPageBreak": "Salto de página antes",
|
"DE.Views.EditParagraph.textPageBreak": "Salto de página antes",
|
||||||
"DE.Views.EditParagraph.textPrgStyles": "Estilos de párrafo",
|
"DE.Views.EditParagraph.textPrgStyles": "Estilos de párrafo",
|
||||||
"DE.Views.EditParagraph.textSpaceBetween": "Espacio entre párrafos",
|
"DE.Views.EditParagraph.textSpaceBetween": "Espacio entre párrafos",
|
||||||
|
"DE.Views.EditShape.textAddCustomColor": "Añadir Color Personalizado",
|
||||||
"DE.Views.EditShape.textAlign": "Alineación",
|
"DE.Views.EditShape.textAlign": "Alineación",
|
||||||
"DE.Views.EditShape.textBack": "Atrás",
|
"DE.Views.EditShape.textBack": "Atrás",
|
||||||
"DE.Views.EditShape.textBackward": "Mover atrás",
|
"DE.Views.EditShape.textBackward": "Mover atrás",
|
||||||
"DE.Views.EditShape.textBehind": "Detrás",
|
"DE.Views.EditShape.textBehind": "Detrás",
|
||||||
"DE.Views.EditShape.textBorder": "Borde",
|
"DE.Views.EditShape.textBorder": "Borde",
|
||||||
"DE.Views.EditShape.textColor": "Color",
|
"DE.Views.EditShape.textColor": "Color",
|
||||||
|
"DE.Views.EditShape.textCustomColor": "Color personalizado",
|
||||||
"DE.Views.EditShape.textEffects": "Efectos",
|
"DE.Views.EditShape.textEffects": "Efectos",
|
||||||
"DE.Views.EditShape.textFill": "Relleno",
|
"DE.Views.EditShape.textFill": "Relleno",
|
||||||
"DE.Views.EditShape.textForward": "Mover adelante",
|
"DE.Views.EditShape.textForward": "Mover adelante",
|
||||||
|
@ -395,6 +409,7 @@
|
||||||
"DE.Views.EditShape.textTopAndBottom": "Superior e inferior",
|
"DE.Views.EditShape.textTopAndBottom": "Superior e inferior",
|
||||||
"DE.Views.EditShape.textWithText": "Desplazar con texto",
|
"DE.Views.EditShape.textWithText": "Desplazar con texto",
|
||||||
"DE.Views.EditShape.textWrap": "Envoltura",
|
"DE.Views.EditShape.textWrap": "Envoltura",
|
||||||
|
"DE.Views.EditTable.textAddCustomColor": "Añadir Color Personalizado",
|
||||||
"DE.Views.EditTable.textAlign": "Alineación",
|
"DE.Views.EditTable.textAlign": "Alineación",
|
||||||
"DE.Views.EditTable.textBack": "Atrás",
|
"DE.Views.EditTable.textBack": "Atrás",
|
||||||
"DE.Views.EditTable.textBandedColumn": "Columna de bandas",
|
"DE.Views.EditTable.textBandedColumn": "Columna de bandas",
|
||||||
|
@ -402,6 +417,7 @@
|
||||||
"DE.Views.EditTable.textBorder": "Borde",
|
"DE.Views.EditTable.textBorder": "Borde",
|
||||||
"DE.Views.EditTable.textCellMargins": "Márgenes de celda",
|
"DE.Views.EditTable.textCellMargins": "Márgenes de celda",
|
||||||
"DE.Views.EditTable.textColor": "Color",
|
"DE.Views.EditTable.textColor": "Color",
|
||||||
|
"DE.Views.EditTable.textCustomColor": "Color personalizado",
|
||||||
"DE.Views.EditTable.textFill": "Relleno",
|
"DE.Views.EditTable.textFill": "Relleno",
|
||||||
"DE.Views.EditTable.textFirstColumn": "Primera columna",
|
"DE.Views.EditTable.textFirstColumn": "Primera columna",
|
||||||
"DE.Views.EditTable.textFlow": "Flujo",
|
"DE.Views.EditTable.textFlow": "Flujo",
|
||||||
|
@ -420,6 +436,7 @@
|
||||||
"DE.Views.EditTable.textTotalRow": "Fila de total",
|
"DE.Views.EditTable.textTotalRow": "Fila de total",
|
||||||
"DE.Views.EditTable.textWithText": "Desplazar con texto",
|
"DE.Views.EditTable.textWithText": "Desplazar con texto",
|
||||||
"DE.Views.EditTable.textWrap": "Envoltura",
|
"DE.Views.EditTable.textWrap": "Envoltura",
|
||||||
|
"DE.Views.EditText.textAddCustomColor": "Añadir Color Personalizado",
|
||||||
"DE.Views.EditText.textAdditional": "Adicional",
|
"DE.Views.EditText.textAdditional": "Adicional",
|
||||||
"DE.Views.EditText.textAdditionalFormat": "Formateo adicional",
|
"DE.Views.EditText.textAdditionalFormat": "Formateo adicional",
|
||||||
"DE.Views.EditText.textAllCaps": "Mayúsculas",
|
"DE.Views.EditText.textAllCaps": "Mayúsculas",
|
||||||
|
@ -430,6 +447,7 @@
|
||||||
"DE.Views.EditText.textCharacterItalic": "I",
|
"DE.Views.EditText.textCharacterItalic": "I",
|
||||||
"DE.Views.EditText.textCharacterStrikethrough": "S",
|
"DE.Views.EditText.textCharacterStrikethrough": "S",
|
||||||
"DE.Views.EditText.textCharacterUnderline": "U",
|
"DE.Views.EditText.textCharacterUnderline": "U",
|
||||||
|
"DE.Views.EditText.textCustomColor": "Color personalizado",
|
||||||
"DE.Views.EditText.textDblStrikethrough": "Doble tachado",
|
"DE.Views.EditText.textDblStrikethrough": "Doble tachado",
|
||||||
"DE.Views.EditText.textDblSuperscript": "Sobreíndice",
|
"DE.Views.EditText.textDblSuperscript": "Sobreíndice",
|
||||||
"DE.Views.EditText.textFontColor": "Color de fuente",
|
"DE.Views.EditText.textFontColor": "Color de fuente",
|
||||||
|
@ -455,14 +473,21 @@
|
||||||
"DE.Views.Settings.textAbout": "Acerca",
|
"DE.Views.Settings.textAbout": "Acerca",
|
||||||
"DE.Views.Settings.textAddress": "dirección",
|
"DE.Views.Settings.textAddress": "dirección",
|
||||||
"DE.Views.Settings.textAdvancedSettings": "Ajustes de aplicación",
|
"DE.Views.Settings.textAdvancedSettings": "Ajustes de aplicación",
|
||||||
|
"DE.Views.Settings.textApplication": "Aplicación",
|
||||||
"DE.Views.Settings.textAuthor": "Autor",
|
"DE.Views.Settings.textAuthor": "Autor",
|
||||||
"DE.Views.Settings.textBack": "Atrás",
|
"DE.Views.Settings.textBack": "Atrás",
|
||||||
"DE.Views.Settings.textBottom": "Abajo ",
|
"DE.Views.Settings.textBottom": "Abajo ",
|
||||||
"DE.Views.Settings.textCentimeter": "Centímetro",
|
"DE.Views.Settings.textCentimeter": "Centímetro",
|
||||||
|
"DE.Views.Settings.textCollaboration": "Colaboración",
|
||||||
"DE.Views.Settings.textColorSchemes": "Esquemas de color",
|
"DE.Views.Settings.textColorSchemes": "Esquemas de color",
|
||||||
|
"DE.Views.Settings.textComment": "Comentario",
|
||||||
|
"DE.Views.Settings.textCommentingDisplay": "Mostrar Comentarios",
|
||||||
|
"DE.Views.Settings.textCreated": "Creado; Creada",
|
||||||
"DE.Views.Settings.textCreateDate": "Fecha de creación",
|
"DE.Views.Settings.textCreateDate": "Fecha de creación",
|
||||||
"DE.Views.Settings.textCustom": "Personalizado",
|
"DE.Views.Settings.textCustom": "Personalizado",
|
||||||
"DE.Views.Settings.textCustomSize": "Tamaño personalizado",
|
"DE.Views.Settings.textCustomSize": "Tamaño personalizado",
|
||||||
|
"DE.Views.Settings.textDisplayComments": "Comentarios",
|
||||||
|
"DE.Views.Settings.textDisplayResolvedComments": "Comentarios resueltos.",
|
||||||
"DE.Views.Settings.textDocInfo": "Información de documento",
|
"DE.Views.Settings.textDocInfo": "Información de documento",
|
||||||
"DE.Views.Settings.textDocTitle": "Título de documento",
|
"DE.Views.Settings.textDocTitle": "Título de documento",
|
||||||
"DE.Views.Settings.textDocumentFormats": "Formatos de documento",
|
"DE.Views.Settings.textDocumentFormats": "Formatos de documento",
|
||||||
|
@ -479,11 +504,15 @@
|
||||||
"DE.Views.Settings.textHiddenTableBorders": "Bordes de tabla escondidos",
|
"DE.Views.Settings.textHiddenTableBorders": "Bordes de tabla escondidos",
|
||||||
"DE.Views.Settings.textInch": "Pulgada",
|
"DE.Views.Settings.textInch": "Pulgada",
|
||||||
"DE.Views.Settings.textLandscape": "Horizontal",
|
"DE.Views.Settings.textLandscape": "Horizontal",
|
||||||
|
"DE.Views.Settings.textLastModified": "Ultima modificación.",
|
||||||
|
"DE.Views.Settings.textLastModifiedBy": "Ultima modificación por...",
|
||||||
"DE.Views.Settings.textLeft": "A la izquierda",
|
"DE.Views.Settings.textLeft": "A la izquierda",
|
||||||
"DE.Views.Settings.textLoading": "Cargando...",
|
"DE.Views.Settings.textLoading": "Cargando...",
|
||||||
|
"DE.Views.Settings.textLocation": "Lugar",
|
||||||
"DE.Views.Settings.textMargins": "Márgenes",
|
"DE.Views.Settings.textMargins": "Márgenes",
|
||||||
"DE.Views.Settings.textNoCharacters": "Caracteres no imprimibles",
|
"DE.Views.Settings.textNoCharacters": "Caracteres no imprimibles",
|
||||||
"DE.Views.Settings.textOrientation": "Orientación ",
|
"DE.Views.Settings.textOrientation": "Orientación ",
|
||||||
|
"DE.Views.Settings.textOwner": "Dueño",
|
||||||
"DE.Views.Settings.textPages": "Páginas",
|
"DE.Views.Settings.textPages": "Páginas",
|
||||||
"DE.Views.Settings.textParagraphs": "Párrafos",
|
"DE.Views.Settings.textParagraphs": "Párrafos",
|
||||||
"DE.Views.Settings.textPoint": "Punto",
|
"DE.Views.Settings.textPoint": "Punto",
|
||||||
|
@ -497,10 +526,13 @@
|
||||||
"DE.Views.Settings.textSpaces": "Espacios",
|
"DE.Views.Settings.textSpaces": "Espacios",
|
||||||
"DE.Views.Settings.textSpellcheck": "Сorrección ortográfica",
|
"DE.Views.Settings.textSpellcheck": "Сorrección ortográfica",
|
||||||
"DE.Views.Settings.textStatistic": "Estadística",
|
"DE.Views.Settings.textStatistic": "Estadística",
|
||||||
|
"DE.Views.Settings.textSubject": "Asunto",
|
||||||
"DE.Views.Settings.textSymbols": "Símbolos",
|
"DE.Views.Settings.textSymbols": "Símbolos",
|
||||||
"DE.Views.Settings.textTel": "Tel.",
|
"DE.Views.Settings.textTel": "Tel.",
|
||||||
|
"DE.Views.Settings.textTitle": "Título",
|
||||||
"DE.Views.Settings.textTop": "Superior",
|
"DE.Views.Settings.textTop": "Superior",
|
||||||
"DE.Views.Settings.textUnitOfMeasurement": "Unidad de medida",
|
"DE.Views.Settings.textUnitOfMeasurement": "Unidad de medida",
|
||||||
|
"DE.Views.Settings.textUploaded": "Cargado",
|
||||||
"DE.Views.Settings.textVersion": "Versión ",
|
"DE.Views.Settings.textVersion": "Versión ",
|
||||||
"DE.Views.Settings.textWords": "Palabras",
|
"DE.Views.Settings.textWords": "Palabras",
|
||||||
"DE.Views.Settings.unknownText": "Desconocido",
|
"DE.Views.Settings.unknownText": "Desconocido",
|
||||||
|
|
308
apps/documenteditor/mobile/locale/fi.json
Normal file
|
@ -0,0 +1,308 @@
|
||||||
|
{
|
||||||
|
"Common.UI.ThemeColorPalette.textStandartColors": "Vakiovärit",
|
||||||
|
"Common.UI.ThemeColorPalette.textThemeColors": "Teeman värit",
|
||||||
|
"DE.Controllers.AddContainer.textImage": "Kuva",
|
||||||
|
"DE.Controllers.AddContainer.textOther": "Muu",
|
||||||
|
"DE.Controllers.AddContainer.textShape": "Muoto",
|
||||||
|
"DE.Controllers.AddContainer.textTable": "Taulukko",
|
||||||
|
"DE.Controllers.AddImage.textEmptyImgUrl": "Sinun tulee määritellä kuvan verkko-osoite",
|
||||||
|
"DE.Controllers.AddImage.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'",
|
||||||
|
"DE.Controllers.AddOther.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'",
|
||||||
|
"DE.Controllers.AddTable.textCancel": "Peruuta",
|
||||||
|
"DE.Controllers.AddTable.textColumns": "Sarakkeet",
|
||||||
|
"DE.Controllers.AddTable.textRows": "Rivit",
|
||||||
|
"DE.Controllers.AddTable.textTableSize": "Taulukon koko",
|
||||||
|
"DE.Controllers.DocumentHolder.menuAddLink": "Lisää linkki",
|
||||||
|
"DE.Controllers.DocumentHolder.menuCopy": "Kopio",
|
||||||
|
"DE.Controllers.DocumentHolder.menuCut": "Leikkaa",
|
||||||
|
"DE.Controllers.DocumentHolder.menuDelete": "Poista",
|
||||||
|
"DE.Controllers.DocumentHolder.menuEdit": "Muokkaa",
|
||||||
|
"DE.Controllers.DocumentHolder.menuOpenLink": "Avoin linkki",
|
||||||
|
"DE.Controllers.DocumentHolder.menuPaste": "Liitä",
|
||||||
|
"DE.Controllers.EditContainer.textChart": "Kaavio",
|
||||||
|
"DE.Controllers.EditContainer.textHyperlink": "Linkki",
|
||||||
|
"DE.Controllers.EditContainer.textImage": "Kuva",
|
||||||
|
"DE.Controllers.EditContainer.textParagraph": "Kappale",
|
||||||
|
"DE.Controllers.EditContainer.textSettings": "Asetukset",
|
||||||
|
"DE.Controllers.EditContainer.textShape": "Muoto",
|
||||||
|
"DE.Controllers.EditContainer.textTable": "Taulukko",
|
||||||
|
"DE.Controllers.EditContainer.textText": "Teksti",
|
||||||
|
"DE.Controllers.EditImage.textEmptyImgUrl": "Sinun tulee määritellä kuvan verkko-osoite",
|
||||||
|
"DE.Controllers.EditImage.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'",
|
||||||
|
"DE.Controllers.EditText.textAuto": "Automaattinen",
|
||||||
|
"DE.Controllers.EditText.textFonts": "Fontit",
|
||||||
|
"DE.Controllers.EditText.textPt": "pt",
|
||||||
|
"DE.Controllers.Main.advDRMEnterPassword": "Syötä salasanasi",
|
||||||
|
"DE.Controllers.Main.advDRMOptions": "Suojattu tiedosto",
|
||||||
|
"DE.Controllers.Main.advDRMPassword": "Salasana",
|
||||||
|
"DE.Controllers.Main.advTxtOptions": "Valitse TXT vaihtoehdot",
|
||||||
|
"DE.Controllers.Main.applyChangesTextText": "Ladataan tietoa...",
|
||||||
|
"DE.Controllers.Main.applyChangesTitleText": "Ladataan tietoja",
|
||||||
|
"DE.Controllers.Main.convertationTimeoutText": "Muunnoksen aikaraja saavutettiin.",
|
||||||
|
"DE.Controllers.Main.criticalErrorExtText": "Klikkaa 'OK' siirtyäksesi takaisin asiakirjojen luetteloon.",
|
||||||
|
"DE.Controllers.Main.criticalErrorTitle": "Virhe",
|
||||||
|
"DE.Controllers.Main.downloadErrorText": "Lataus epäonnistui.",
|
||||||
|
"DE.Controllers.Main.downloadMergeText": "Ladataan...",
|
||||||
|
"DE.Controllers.Main.downloadMergeTitle": "Ladataan",
|
||||||
|
"DE.Controllers.Main.downloadTextText": "Ladataan asiakirjaa...",
|
||||||
|
"DE.Controllers.Main.downloadTitleText": "Ladataan asiakirjaa",
|
||||||
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Palvelimen yhteys menetetty. Et voi enää muokata.",
|
||||||
|
"DE.Controllers.Main.errorConnectToServer": "Asiakirjaa ei voitu tallentaa. Ole hyvä ja tarkista yhteysasetukset tai ota yhteyttä pääkäyttäjään.<br>Kun klikkaat 'OK' painiketta, sinua pyydetään lataamaan asiakirja.",
|
||||||
|
"DE.Controllers.Main.errorDatabaseConnection": "Ulkoinen virhe.<br>Tietokannan yhteysvirhe. Ole hyvä ja ota yhteyttä asiakaspalveluun.",
|
||||||
|
"DE.Controllers.Main.errorDataRange": "Virheellinen tietoalue",
|
||||||
|
"DE.Controllers.Main.errorDefaultMessage": "Virhekoodi: %1",
|
||||||
|
"DE.Controllers.Main.errorFilePassProtect": "Asiakirja on salasanalla suojattu.",
|
||||||
|
"DE.Controllers.Main.errorKeyEncrypt": "Tuntematon avainsana",
|
||||||
|
"DE.Controllers.Main.errorKeyExpire": "Avainsana erääntynyt",
|
||||||
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Lataaminen epäonnistui",
|
||||||
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Yhdistäminen epäonnistui.",
|
||||||
|
"DE.Controllers.Main.errorProcessSaveResult": "Tallennus epäonnistui.",
|
||||||
|
"DE.Controllers.Main.errorStockChart": "Virheellinen rivin järjestys. Jotta voit luoda pörssikaavion, niin aseta tiedot seuraavassa järjestyksessä: <br> avaushinta, korkein hinta, halvin hinta, sulkuhinta.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersion": "Tiedoston versio on muuttunut. Sivu ladataan uudelleen.",
|
||||||
|
"DE.Controllers.Main.errorUserDrop": "Tiedostoon ei ole pääsyä tällä hetkellä.",
|
||||||
|
"DE.Controllers.Main.errorUsersExceed": "Käyttäjien määrä ylitettiin",
|
||||||
|
"DE.Controllers.Main.errorViewerDisconnect": "Yhteys on menetetty. Voit vielä selailla asiakirjaa,<br>mutta et pysty lataamaan sitä ennenkuin yhteys on palautettu.",
|
||||||
|
"DE.Controllers.Main.leavePageText": "Sinulla on tallentamattomia muutoksia tässä asiakirjassa. Klikkaa 'Jää tälle sivulle' ja voit odottaa asiakirjan automaattista tallennusta. Klikkaa 'Jätä tämä sivu' niin voit jättää huomioimatta tallentamattomat muutokset. ",
|
||||||
|
"DE.Controllers.Main.loadFontsTextText": "Ladataan tietoa...",
|
||||||
|
"DE.Controllers.Main.loadFontsTitleText": "Ladataan tietoja",
|
||||||
|
"DE.Controllers.Main.loadFontTextText": "Ladataan tietoa...",
|
||||||
|
"DE.Controllers.Main.loadFontTitleText": "Ladataan tietoja",
|
||||||
|
"DE.Controllers.Main.loadImagesTextText": "Ladataan kuvia...",
|
||||||
|
"DE.Controllers.Main.loadImagesTitleText": "Ladataan kuvia",
|
||||||
|
"DE.Controllers.Main.loadImageTextText": "Ladataan kuvaa...",
|
||||||
|
"DE.Controllers.Main.loadImageTitleText": "Ladataan kuvaa",
|
||||||
|
"DE.Controllers.Main.loadingDocumentTextText": "Ladataan asiakirjaa...",
|
||||||
|
"DE.Controllers.Main.loadingDocumentTitleText": "Ladataan asiakirjaa",
|
||||||
|
"DE.Controllers.Main.mailMergeLoadFileText": "Ladataan tietolähdettä...",
|
||||||
|
"DE.Controllers.Main.mailMergeLoadFileTitle": "Ladataan tietolähdettä",
|
||||||
|
"DE.Controllers.Main.notcriticalErrorTitle": "Varoitus",
|
||||||
|
"DE.Controllers.Main.openErrorText": "Virhe tapahtui avattaessa tiedostoa",
|
||||||
|
"DE.Controllers.Main.openTextText": "Avataan asiakirjaa...",
|
||||||
|
"DE.Controllers.Main.openTitleText": "Avataan asiakirjaa",
|
||||||
|
"DE.Controllers.Main.printTextText": "Tulostetaan asiakirjaa...",
|
||||||
|
"DE.Controllers.Main.printTitleText": "Tulostetaan Asiakirjaa",
|
||||||
|
"DE.Controllers.Main.saveErrorText": "Virhe tapahtui tallennettaessa tiedostoa",
|
||||||
|
"DE.Controllers.Main.savePreparingText": "Valmistetaan tallennusta",
|
||||||
|
"DE.Controllers.Main.savePreparingTitle": "Valmistellaan talletusta. Ole hyvä ja odota...",
|
||||||
|
"DE.Controllers.Main.saveTextText": "Tallennetaan asiakirjaa...",
|
||||||
|
"DE.Controllers.Main.saveTitleText": "Tallennetaan asiakirjaa",
|
||||||
|
"DE.Controllers.Main.sendMergeText": "Lähetetään yhdistettynä...",
|
||||||
|
"DE.Controllers.Main.sendMergeTitle": "Lähetä yhdistettynä",
|
||||||
|
"DE.Controllers.Main.splitDividerErrorText": "Rivien määrä tulee olla arvon %1 jakaja ",
|
||||||
|
"DE.Controllers.Main.splitMaxColsErrorText": "Sarakkeiden määrä tulee olla vähemmän kuin %1",
|
||||||
|
"DE.Controllers.Main.splitMaxRowsErrorText": "Rivien määrä tulee olla vähemmän kuin %1",
|
||||||
|
"DE.Controllers.Main.textAnonymous": "Anonyymi",
|
||||||
|
"DE.Controllers.Main.textBuyNow": "Vieraile sivustossa",
|
||||||
|
"DE.Controllers.Main.textContactUs": "Myyntiosasto",
|
||||||
|
"DE.Controllers.Main.textLoadingDocument": "Ladataan asiakirjaa",
|
||||||
|
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE avoimen lähdekoodin versio",
|
||||||
|
"DE.Controllers.Main.textTryUndoRedo": "Peruutus/tee uudestaan toiminnot eivät ole käytössä yhteisessä pikamuokkaus tilassa.",
|
||||||
|
"DE.Controllers.Main.titleLicenseExp": "Lisenssi erääntynyt",
|
||||||
|
"DE.Controllers.Main.titleUpdateVersion": "Versio muutettu",
|
||||||
|
"DE.Controllers.Main.txtArt": "Tekstisi tähän",
|
||||||
|
"DE.Controllers.Main.txtDiagramTitle": "Kaavion otsikko",
|
||||||
|
"DE.Controllers.Main.txtEditingMode": "Aseta muokkauksen tila...",
|
||||||
|
"DE.Controllers.Main.txtSeries": "Sarja",
|
||||||
|
"DE.Controllers.Main.txtXAxis": "X akseli",
|
||||||
|
"DE.Controllers.Main.txtYAxis": "Y akseli",
|
||||||
|
"DE.Controllers.Main.unknownErrorText": "Tuntematon virhe.",
|
||||||
|
"DE.Controllers.Main.unsupportedBrowserErrorText": "Selaintasi ei ole tuettu",
|
||||||
|
"DE.Controllers.Main.uploadImageExtMessage": "Tuntematon kuvan muoto.",
|
||||||
|
"DE.Controllers.Main.uploadImageFileCountMessage": "Ei ladattuja kuvia.",
|
||||||
|
"DE.Controllers.Main.uploadImageSizeMessage": "Maksimi kuvan koon rajoitus ylitettiin.",
|
||||||
|
"DE.Controllers.Main.uploadImageTextText": "Ladataan kuvaa...",
|
||||||
|
"DE.Controllers.Main.uploadImageTitleText": "Ladataan kuvaa",
|
||||||
|
"DE.Controllers.Main.warnLicenseExp": "Lisenssisi on erääntynyt.<br>Ole hyvä ja päivitä lisenssisi ja virkistä sivu.",
|
||||||
|
"DE.Controllers.Main.warnNoLicense": "Olet käyttämässä %1 avoimen lähdekoodin versiota. Versiolla on rajoituksia yhtäaikaisten yhteyksien määrän suhteen asiakirjan palvelimelle (20 yhteyttä samaan aikaan).<br>Jos haluat lisää, niin voit harkita kaupallista lisenssiä.",
|
||||||
|
"DE.Controllers.Main.warnProcessRightsChange": "Sinulla ei ole riittävästi oikeuksia muokata tiedostoa.",
|
||||||
|
"DE.Controllers.Search.textNoTextFound": "Tekstiä ei löytynyt",
|
||||||
|
"DE.Controllers.Search.textReplaceAll": "Korvaa Kaikki",
|
||||||
|
"DE.Controllers.Settings.notcriticalErrorTitle": "Varoitus",
|
||||||
|
"DE.Controllers.Settings.txtLoading": "Ladataan...",
|
||||||
|
"DE.Controllers.Settings.warnDownloadAs": "Jos jatkat tässä muodossa talletusta, niin kaikki ominaisuudet, paitsi teksti, menetetään.<br>Oletko varma että haluat jatkaa?",
|
||||||
|
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Sinulla on tallentamattomia muutoksia tässä asiakirjassa. Klikkaa 'Jää tälle sivulle' ja voit odottaa asiakirjan automaattista tallennusta. Klikkaa 'Jätä tämä sivu' niin voit jättää huomioimatta tallentamattomat muutokset. ",
|
||||||
|
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Jätät sovelluksen",
|
||||||
|
"DE.Controllers.Toolbar.leaveButtonText": "Jätä tämä sivu",
|
||||||
|
"DE.Controllers.Toolbar.stayButtonText": "Jää tälle sivulle",
|
||||||
|
"DE.Views.AddImage.textAddress": "Osoite",
|
||||||
|
"DE.Views.AddImage.textBack": "Takaisin",
|
||||||
|
"DE.Views.AddImage.textFromLibrary": "Kuva kirjastosta",
|
||||||
|
"DE.Views.AddImage.textFromURL": "Kuva verkko-osoitteesta",
|
||||||
|
"DE.Views.AddImage.textImageURL": "Kuvan verkko-osoite",
|
||||||
|
"DE.Views.AddImage.textInsertImage": "Lisää kuva",
|
||||||
|
"DE.Views.AddImage.textLinkSettings": "Linkin asetukset",
|
||||||
|
"DE.Views.AddOther.textAddLink": "Lisää linkki",
|
||||||
|
"DE.Views.AddOther.textBack": "Takaisin",
|
||||||
|
"DE.Views.AddOther.textCenterBottom": "Keskellä alhaalla",
|
||||||
|
"DE.Views.AddOther.textCenterTop": "Keskellä ylhäällä",
|
||||||
|
"DE.Views.AddOther.textContPage": "Jatkuva sivu",
|
||||||
|
"DE.Views.AddOther.textCurrentPos": "Nykyinen asema",
|
||||||
|
"DE.Views.AddOther.textDisplay": "Näyttö",
|
||||||
|
"DE.Views.AddOther.textEvenPage": "Parillinen sivu",
|
||||||
|
"DE.Views.AddOther.textInsert": "Lisää",
|
||||||
|
"DE.Views.AddOther.textLeftBottom": "Vasen alhaalla",
|
||||||
|
"DE.Views.AddOther.textLeftTop": "Vasen ylhäällä",
|
||||||
|
"DE.Views.AddOther.textLink": "Linkki",
|
||||||
|
"DE.Views.AddOther.textNextPage": "Seuraava sivu",
|
||||||
|
"DE.Views.AddOther.textOddPage": "Pariton sivu",
|
||||||
|
"DE.Views.AddOther.textPageBreak": "Sivukatkaisu",
|
||||||
|
"DE.Views.AddOther.textPageNumber": "Sivunumero",
|
||||||
|
"DE.Views.AddOther.textPosition": "Asema",
|
||||||
|
"DE.Views.AddOther.textRightBottom": "Oikea alhaalla",
|
||||||
|
"DE.Views.AddOther.textRightTop": "Oikea ylhäällä",
|
||||||
|
"DE.Views.AddOther.textSectionBreak": "Osion katkaisu",
|
||||||
|
"DE.Views.AddOther.textTip": "Näyttövinkki",
|
||||||
|
"DE.Views.EditChart.textAlign": "Tasaa",
|
||||||
|
"DE.Views.EditChart.textBack": "Takaisin",
|
||||||
|
"DE.Views.EditChart.textBackward": "Siirry takaisin",
|
||||||
|
"DE.Views.EditChart.textBehind": "Takana",
|
||||||
|
"DE.Views.EditChart.textBorder": "Reunus",
|
||||||
|
"DE.Views.EditChart.textColor": "Väri",
|
||||||
|
"DE.Views.EditChart.textDistanceText": "Etäisyys tekstistä",
|
||||||
|
"DE.Views.EditChart.textFill": "Täytä",
|
||||||
|
"DE.Views.EditChart.textForward": "Siirry eteenpäin",
|
||||||
|
"DE.Views.EditChart.textInFront": "Edessä",
|
||||||
|
"DE.Views.EditChart.textInline": "Linjassa",
|
||||||
|
"DE.Views.EditChart.textMoveText": "Siirrä tekstillä",
|
||||||
|
"DE.Views.EditChart.textOverlap": "Salli päällekkäisyys",
|
||||||
|
"DE.Views.EditChart.textRemoveChart": "Poista kuvio",
|
||||||
|
"DE.Views.EditChart.textReorder": "Järjestä uudelleen",
|
||||||
|
"DE.Views.EditChart.textSize": "Koko",
|
||||||
|
"DE.Views.EditChart.textSquare": "Neliö",
|
||||||
|
"DE.Views.EditChart.textStyle": "Tyyli",
|
||||||
|
"DE.Views.EditChart.textThrough": "Kautta",
|
||||||
|
"DE.Views.EditChart.textTight": "Tiukka",
|
||||||
|
"DE.Views.EditChart.textToBackground": "Lähetä taustalle",
|
||||||
|
"DE.Views.EditChart.textToForeground": "Tuo etupuolelle",
|
||||||
|
"DE.Views.EditChart.textTopBottom": "Ylös ja alas",
|
||||||
|
"DE.Views.EditChart.textType": "Tyyppi",
|
||||||
|
"DE.Views.EditChart.textWrap": "Rivittäminen",
|
||||||
|
"DE.Views.EditHyperlink.textDisplay": "Näyttö",
|
||||||
|
"DE.Views.EditHyperlink.textEdit": "Muokkaa linkkiä",
|
||||||
|
"DE.Views.EditHyperlink.textLink": "Linkki",
|
||||||
|
"DE.Views.EditHyperlink.textRemove": "Poista linkki",
|
||||||
|
"DE.Views.EditHyperlink.textTip": "Näyttövinkki",
|
||||||
|
"DE.Views.EditImage.textAddress": "Osoite",
|
||||||
|
"DE.Views.EditImage.textAlign": "Tasaa",
|
||||||
|
"DE.Views.EditImage.textBack": "Takaisin",
|
||||||
|
"DE.Views.EditImage.textBackward": "Siirry takaisin",
|
||||||
|
"DE.Views.EditImage.textBehind": "Takana",
|
||||||
|
"DE.Views.EditImage.textDefault": "Oletuskoko",
|
||||||
|
"DE.Views.EditImage.textDistanceText": "Etäisyys tekstistä",
|
||||||
|
"DE.Views.EditImage.textForward": "Siirry eteenpäin",
|
||||||
|
"DE.Views.EditImage.textFromLibrary": "Kuva kirjastosta",
|
||||||
|
"DE.Views.EditImage.textFromURL": "Kuva verkko-osoitteesta",
|
||||||
|
"DE.Views.EditImage.textImageURL": "Kuvan verkko-osoite",
|
||||||
|
"DE.Views.EditImage.textInFront": "Edessä",
|
||||||
|
"DE.Views.EditImage.textInline": "Linjassa",
|
||||||
|
"DE.Views.EditImage.textLinkSettings": "Linkin asetukset",
|
||||||
|
"DE.Views.EditImage.textMoveText": "Siirrä tekstillä",
|
||||||
|
"DE.Views.EditImage.textOverlap": "Salli päällekkäisyys",
|
||||||
|
"DE.Views.EditImage.textRemove": "Poista kuva",
|
||||||
|
"DE.Views.EditImage.textReorder": "Järjestä uudelleen",
|
||||||
|
"DE.Views.EditImage.textReplace": "Korvaa",
|
||||||
|
"DE.Views.EditImage.textReplaceImg": "Korvaa kuva",
|
||||||
|
"DE.Views.EditImage.textSquare": "Neliö",
|
||||||
|
"DE.Views.EditImage.textThrough": "Kautta",
|
||||||
|
"DE.Views.EditImage.textTight": "Tiukka",
|
||||||
|
"DE.Views.EditImage.textToBackground": "Lähetä taustalle",
|
||||||
|
"DE.Views.EditImage.textToForeground": "Tuo etupuolelle",
|
||||||
|
"DE.Views.EditImage.textTopBottom": "Ylös ja alas",
|
||||||
|
"DE.Views.EditImage.textWrap": "Rivittäminen",
|
||||||
|
"DE.Views.EditParagraph.textAdvanced": "Laajennetut asetukset",
|
||||||
|
"DE.Views.EditParagraph.textAdvSettings": "Laajennetut asetukset",
|
||||||
|
"DE.Views.EditParagraph.textAfter": "Jälkeen",
|
||||||
|
"DE.Views.EditParagraph.textAuto": "Automaattinen",
|
||||||
|
"DE.Views.EditParagraph.textBack": "Takaisin",
|
||||||
|
"DE.Views.EditParagraph.textBackground": "Tausta",
|
||||||
|
"DE.Views.EditParagraph.textBefore": "Ennen",
|
||||||
|
"DE.Views.EditParagraph.textFromText": "Etäisyys tekstistä",
|
||||||
|
"DE.Views.EditParagraph.textKeepLines": "Pidä viivat yhdessä",
|
||||||
|
"DE.Views.EditParagraph.textKeepNext": "Pidä seuraavalla",
|
||||||
|
"DE.Views.EditParagraph.textOrphan": "Orporivien hallinta",
|
||||||
|
"DE.Views.EditParagraph.textPageBreak": "Sivun katko ennen",
|
||||||
|
"DE.Views.EditParagraph.textPrgStyles": "Kappaleen tyyli",
|
||||||
|
"DE.Views.EditParagraph.textSpaceBetween": "Kappaleväli",
|
||||||
|
"DE.Views.EditShape.textAlign": "Tasaa",
|
||||||
|
"DE.Views.EditShape.textBack": "Takaisin",
|
||||||
|
"DE.Views.EditShape.textBackward": "Siirry takaisin",
|
||||||
|
"DE.Views.EditShape.textBehind": "Takana",
|
||||||
|
"DE.Views.EditShape.textBorder": "Reunus",
|
||||||
|
"DE.Views.EditShape.textColor": "Väri",
|
||||||
|
"DE.Views.EditShape.textEffects": "Efektit",
|
||||||
|
"DE.Views.EditShape.textFill": "Täytä",
|
||||||
|
"DE.Views.EditShape.textForward": "Siirry eteenpäin",
|
||||||
|
"DE.Views.EditShape.textFromText": "Etäisyys tekstistä",
|
||||||
|
"DE.Views.EditShape.textInFront": "Edessä",
|
||||||
|
"DE.Views.EditShape.textInline": "Linjassa",
|
||||||
|
"DE.Views.EditShape.textOpacity": "Läpikuultamattomuus",
|
||||||
|
"DE.Views.EditShape.textOverlap": "Salli päällekkäisyys",
|
||||||
|
"DE.Views.EditShape.textRemoveShape": "Poista muoto",
|
||||||
|
"DE.Views.EditShape.textReorder": "Järjestä uudelleen",
|
||||||
|
"DE.Views.EditShape.textReplace": "Korvaa",
|
||||||
|
"DE.Views.EditShape.textSize": "Koko",
|
||||||
|
"DE.Views.EditShape.textSquare": "Neliö",
|
||||||
|
"DE.Views.EditShape.textStyle": "Tyyli",
|
||||||
|
"DE.Views.EditShape.textThrough": "Kautta",
|
||||||
|
"DE.Views.EditShape.textTight": "Tiukka",
|
||||||
|
"DE.Views.EditShape.textToBackground": "Lähetä taustalle",
|
||||||
|
"DE.Views.EditShape.textToForeground": "Tuo etupuolelle",
|
||||||
|
"DE.Views.EditShape.textTopAndBottom": "Ylös ja alas",
|
||||||
|
"DE.Views.EditShape.textWithText": "Siirrä tekstillä",
|
||||||
|
"DE.Views.EditShape.textWrap": "Rivittäminen",
|
||||||
|
"DE.Views.EditText.textAdditional": "Lisä",
|
||||||
|
"DE.Views.EditText.textAdditionalFormat": "Lisämuotoilu",
|
||||||
|
"DE.Views.EditText.textAllCaps": "Kaikki isoilla kirjaimilla",
|
||||||
|
"DE.Views.EditText.textAutomatic": "Automaattinen",
|
||||||
|
"DE.Views.EditText.textBack": "Takaisin",
|
||||||
|
"DE.Views.EditText.textBullets": "Pallukat",
|
||||||
|
"DE.Views.EditText.textDblStrikethrough": "Kaksois yliviivaus",
|
||||||
|
"DE.Views.EditText.textDblSuperscript": "Yläindeksi",
|
||||||
|
"DE.Views.EditText.textFontColor": "Fontin väri",
|
||||||
|
"DE.Views.EditText.textFontColors": "Fontin värit",
|
||||||
|
"DE.Views.EditText.textFonts": "Fontit",
|
||||||
|
"DE.Views.EditText.textHighlightColor": "Korosta väriä",
|
||||||
|
"DE.Views.EditText.textHighlightColors": "Korosta värejä",
|
||||||
|
"DE.Views.EditText.textLetterSpacing": "Kirjainväli",
|
||||||
|
"DE.Views.EditText.textLineSpacing": "Viivan väli",
|
||||||
|
"DE.Views.EditText.textNone": "Ei mitään",
|
||||||
|
"DE.Views.EditText.textNumbers": "Numerot",
|
||||||
|
"DE.Views.EditText.textSize": "Koko",
|
||||||
|
"DE.Views.EditText.textSmallCaps": "Kapiteelit",
|
||||||
|
"DE.Views.EditText.textStrikethrough": "Yliviivaus",
|
||||||
|
"DE.Views.EditText.textSubscript": "Alaindeksi",
|
||||||
|
"DE.Views.Search.textCase": "Isojen/pienten kirjainten mukaan",
|
||||||
|
"DE.Views.Search.textDone": "Valmis",
|
||||||
|
"DE.Views.Search.textFind": "Etsi",
|
||||||
|
"DE.Views.Search.textFindAndReplace": "Etsi ja Korvaa",
|
||||||
|
"DE.Views.Search.textHighlight": "Korosta tuloksia",
|
||||||
|
"DE.Views.Search.textReplace": "Korvaa",
|
||||||
|
"DE.Views.Settings.textAbout": "Tietoa",
|
||||||
|
"DE.Views.Settings.textAddress": "osoite",
|
||||||
|
"DE.Views.Settings.textAuthor": "Kirjoittaja",
|
||||||
|
"DE.Views.Settings.textBack": "Takaisin",
|
||||||
|
"DE.Views.Settings.textCreateDate": "Luontipäivä",
|
||||||
|
"DE.Views.Settings.textDocInfo": "Asiakirjan tiedot",
|
||||||
|
"DE.Views.Settings.textDocTitle": "Asiakirjan otsikko",
|
||||||
|
"DE.Views.Settings.textDone": "Valmis",
|
||||||
|
"DE.Views.Settings.textDownload": "Lataa",
|
||||||
|
"DE.Views.Settings.textDownloadAs": "Lataa kuten...",
|
||||||
|
"DE.Views.Settings.textEditDoc": "Muokkaa asiakirjaa",
|
||||||
|
"DE.Views.Settings.textEmail": "sähköposti",
|
||||||
|
"DE.Views.Settings.textFind": "Etsi",
|
||||||
|
"DE.Views.Settings.textFindAndReplace": "Etsi ja Korvaa",
|
||||||
|
"DE.Views.Settings.textHelp": "Apua",
|
||||||
|
"DE.Views.Settings.textLoading": "Ladataan...",
|
||||||
|
"DE.Views.Settings.textPages": "Sivua",
|
||||||
|
"DE.Views.Settings.textParagraphs": "Kappaleet",
|
||||||
|
"DE.Views.Settings.textReader": "Lukutila",
|
||||||
|
"DE.Views.Settings.textSettings": "Asetukset",
|
||||||
|
"DE.Views.Settings.textSpaces": "Välit",
|
||||||
|
"DE.Views.Settings.textStatistic": "Tilasto",
|
||||||
|
"DE.Views.Settings.textSymbols": "Symbolit",
|
||||||
|
"DE.Views.Settings.textTel": "Puh.",
|
||||||
|
"DE.Views.Settings.textVersion": "Versio",
|
||||||
|
"DE.Views.Settings.textWords": "Sanoja",
|
||||||
|
"DE.Views.Settings.unknownText": "Tuntematon",
|
||||||
|
"DE.Views.Toolbar.textBack": "Takaisin"
|
||||||
|
}
|
|
@ -90,6 +90,7 @@
|
||||||
"DE.Controllers.AddTable.textColumns": "Colonnes",
|
"DE.Controllers.AddTable.textColumns": "Colonnes",
|
||||||
"DE.Controllers.AddTable.textRows": "Lignes",
|
"DE.Controllers.AddTable.textRows": "Lignes",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Taille du tableau",
|
"DE.Controllers.AddTable.textTableSize": "Taille du tableau",
|
||||||
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Les actions de Copier, Couper et Coller du menu contextuel seront appliquées seulement au fichier actuel.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Ajouter le lien",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Ajouter le lien",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Copier",
|
"DE.Controllers.DocumentHolder.menuCopy": "Copier",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Couper",
|
"DE.Controllers.DocumentHolder.menuCut": "Couper",
|
||||||
|
@ -106,6 +107,7 @@
|
||||||
"DE.Controllers.DocumentHolder.sheetCancel": "Annuler",
|
"DE.Controllers.DocumentHolder.sheetCancel": "Annuler",
|
||||||
"DE.Controllers.DocumentHolder.textCancel": "Annuler",
|
"DE.Controllers.DocumentHolder.textCancel": "Annuler",
|
||||||
"DE.Controllers.DocumentHolder.textColumns": "Colonnes",
|
"DE.Controllers.DocumentHolder.textColumns": "Colonnes",
|
||||||
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "Invité",
|
"DE.Controllers.DocumentHolder.textGuest": "Invité",
|
||||||
"DE.Controllers.DocumentHolder.textRows": "Lignes",
|
"DE.Controllers.DocumentHolder.textRows": "Lignes",
|
||||||
"DE.Controllers.EditContainer.textChart": "Graphique",
|
"DE.Controllers.EditContainer.textChart": "Graphique",
|
||||||
|
|
|
@ -1,30 +1,116 @@
|
||||||
{
|
{
|
||||||
|
"Common.Controllers.Collaboration.textAtLeast": "legalább",
|
||||||
|
"Common.Controllers.Collaboration.textAuto": "Auto",
|
||||||
|
"Common.Controllers.Collaboration.textBaseline": "Alapvonal",
|
||||||
|
"Common.Controllers.Collaboration.textBold": "Félkövér",
|
||||||
|
"Common.Controllers.Collaboration.textBreakBefore": "Oldaltörés elötte",
|
||||||
|
"Common.Controllers.Collaboration.textCaps": "Csupa nagybetűs",
|
||||||
|
"Common.Controllers.Collaboration.textCenter": "Középre igazít",
|
||||||
|
"Common.Controllers.Collaboration.textChart": "Diagram",
|
||||||
|
"Common.Controllers.Collaboration.textColor": "Betűszín",
|
||||||
|
"Common.Controllers.Collaboration.textContextual": "Ne adjon távolságot azonos stílusú bekezdések közé",
|
||||||
|
"Common.Controllers.Collaboration.textDeleted": "<b>Törölve:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textDStrikeout": "Dupla áthúzás",
|
||||||
|
"Common.Controllers.Collaboration.textEditUser": "A fájlt szerkesztő felhasználók:",
|
||||||
|
"Common.Controllers.Collaboration.textEquation": "Egyenlet",
|
||||||
|
"Common.Controllers.Collaboration.textExact": "Pontosan",
|
||||||
|
"Common.Controllers.Collaboration.textFirstLine": "Első sor",
|
||||||
|
"Common.Controllers.Collaboration.textFormatted": "Formázott",
|
||||||
|
"Common.Controllers.Collaboration.textHighlight": "Kiemelő szín",
|
||||||
|
"Common.Controllers.Collaboration.textImage": "Kép",
|
||||||
|
"Common.Controllers.Collaboration.textIndentLeft": "Bal behúzás",
|
||||||
|
"Common.Controllers.Collaboration.textIndentRight": "Jobb behúzás",
|
||||||
|
"Common.Controllers.Collaboration.textInserted": "<b>Beillesztve:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textItalic": "Dőlt",
|
||||||
|
"Common.Controllers.Collaboration.textJustify": "Sorkizárt",
|
||||||
|
"Common.Controllers.Collaboration.textKeepLines": "Ne törje el a bekezdést",
|
||||||
|
"Common.Controllers.Collaboration.textKeepNext": "Következővel együtt tartás",
|
||||||
|
"Common.Controllers.Collaboration.textLeft": "Balra igazít",
|
||||||
|
"Common.Controllers.Collaboration.textLineSpacing": "Sortávolság:",
|
||||||
|
"Common.Controllers.Collaboration.textMultiple": "Többszörös",
|
||||||
|
"Common.Controllers.Collaboration.textNoBreakBefore": "Nincs oldaltörés előtte",
|
||||||
|
"Common.Controllers.Collaboration.textNoContextual": "Térköz hozzáadása azonos stílusú bekezdések közé",
|
||||||
|
"Common.Controllers.Collaboration.textNoKeepLines": "Ne tartsa egyben a sorokat",
|
||||||
|
"Common.Controllers.Collaboration.textNoKeepNext": "Ne tartsa meg a következőnél",
|
||||||
|
"Common.Controllers.Collaboration.textNot": "Nem",
|
||||||
|
"Common.Controllers.Collaboration.textNoWidow": "Nincs özvegy sor ellenőrzés",
|
||||||
|
"Common.Controllers.Collaboration.textNum": "Számozás módosítása",
|
||||||
|
"Common.Controllers.Collaboration.textParaDeleted": "<b>Bekezdés törölve</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaFormatted": "<b>Bekezdés formázva</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaInserted": "<b>Bekezdés beillesztve</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Felmozgatva:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Lemozgatva:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Mozgatva:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textPosition": "Pozíció",
|
||||||
|
"Common.Controllers.Collaboration.textRight": "Jobbra igazít",
|
||||||
|
"Common.Controllers.Collaboration.textShape": "Alakzat",
|
||||||
|
"Common.Controllers.Collaboration.textShd": "Háttérszín",
|
||||||
|
"Common.Controllers.Collaboration.textSmallCaps": "Kisbetűk",
|
||||||
|
"Common.Controllers.Collaboration.textSpacing": "Térköz",
|
||||||
|
"Common.Controllers.Collaboration.textSpacingAfter": "Térköz utána",
|
||||||
|
"Common.Controllers.Collaboration.textSpacingBefore": "Térköz előtte",
|
||||||
|
"Common.Controllers.Collaboration.textStrikeout": "Áthúzás",
|
||||||
|
"Common.Controllers.Collaboration.textSubScript": "Alsó index",
|
||||||
|
"Common.Controllers.Collaboration.textSuperScript": "Felső index",
|
||||||
|
"Common.Controllers.Collaboration.textTableChanged": "<b>Táblázat beállítások megváltoztatva</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Táblázat sorok hozzáadva</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Táblázat sorok törölve</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTabs": "Tabok módosítása",
|
||||||
|
"Common.Controllers.Collaboration.textUnderline": "Aláhúzott",
|
||||||
|
"Common.Controllers.Collaboration.textWidow": "Özvegy sor",
|
||||||
|
"Common.UI.ThemeColorPalette.textCustomColors": "Egyéni színek",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Téma színek",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Téma színek",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
|
"Common.Views.Collaboration.textAcceptAllChanges": "Minden módosítás elfogadása",
|
||||||
|
"Common.Views.Collaboration.textBack": "Vissza",
|
||||||
|
"Common.Views.Collaboration.textChange": "Felülvizsgálat változás",
|
||||||
|
"Common.Views.Collaboration.textCollaboration": "Együttműködés",
|
||||||
|
"Common.Views.Collaboration.textDisplayMode": "Megjelenítési mód",
|
||||||
|
"Common.Views.Collaboration.textEditUsers": "Felhasználók",
|
||||||
|
"Common.Views.Collaboration.textFinal": "Végső",
|
||||||
|
"Common.Views.Collaboration.textMarkup": "Struktúra",
|
||||||
|
"Common.Views.Collaboration.textNoComments": "Ebben a dokumentumban nincsenek hozzászólások",
|
||||||
|
"Common.Views.Collaboration.textOriginal": "Eredeti",
|
||||||
|
"Common.Views.Collaboration.textRejectAllChanges": "Elutasít minden módosítást",
|
||||||
|
"Common.Views.Collaboration.textReview": "Módosítások követése",
|
||||||
|
"Common.Views.Collaboration.textReviewing": "Felülvizsgálat",
|
||||||
|
"Common.Views.Collaboration.textСomments": "Hozzászólások",
|
||||||
"DE.Controllers.AddContainer.textImage": "Kép",
|
"DE.Controllers.AddContainer.textImage": "Kép",
|
||||||
"DE.Controllers.AddContainer.textOther": "Egyéb",
|
"DE.Controllers.AddContainer.textOther": "Egyéb",
|
||||||
"DE.Controllers.AddContainer.textShape": "Alakzat",
|
"DE.Controllers.AddContainer.textShape": "Alakzat",
|
||||||
"DE.Controllers.AddContainer.textTable": "Táblázat",
|
"DE.Controllers.AddContainer.textTable": "Táblázat",
|
||||||
"DE.Controllers.AddImage.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.",
|
"DE.Controllers.AddImage.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.",
|
||||||
"DE.Controllers.AddImage.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie",
|
"DE.Controllers.AddImage.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie",
|
||||||
|
"DE.Controllers.AddOther.textBelowText": "Szöveg alatt",
|
||||||
|
"DE.Controllers.AddOther.textBottomOfPage": "Az oldal alja",
|
||||||
"DE.Controllers.AddOther.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie",
|
"DE.Controllers.AddOther.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie",
|
||||||
"DE.Controllers.AddTable.textCancel": "Mégse",
|
"DE.Controllers.AddTable.textCancel": "Mégse",
|
||||||
"DE.Controllers.AddTable.textColumns": "Oszlopok",
|
"DE.Controllers.AddTable.textColumns": "Oszlopok",
|
||||||
"DE.Controllers.AddTable.textRows": "Sorok",
|
"DE.Controllers.AddTable.textRows": "Sorok",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Táblázat méret",
|
"DE.Controllers.AddTable.textTableSize": "Táblázat méret",
|
||||||
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "A másolás, kivágás és beillesztés a helyi menü segítségével csak az aktuális fájlon belül történik.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Másol",
|
"DE.Controllers.DocumentHolder.menuCopy": "Másol",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Kivág",
|
"DE.Controllers.DocumentHolder.menuCut": "Kivág",
|
||||||
"DE.Controllers.DocumentHolder.menuDelete": "Töröl",
|
"DE.Controllers.DocumentHolder.menuDelete": "Töröl",
|
||||||
|
"DE.Controllers.DocumentHolder.menuDeleteTable": "Táblázat törlése",
|
||||||
"DE.Controllers.DocumentHolder.menuEdit": "Szerkeszt",
|
"DE.Controllers.DocumentHolder.menuEdit": "Szerkeszt",
|
||||||
|
"DE.Controllers.DocumentHolder.menuMerge": "Cellák összevonása",
|
||||||
"DE.Controllers.DocumentHolder.menuMore": "Még",
|
"DE.Controllers.DocumentHolder.menuMore": "Még",
|
||||||
"DE.Controllers.DocumentHolder.menuOpenLink": "Link megnyitása",
|
"DE.Controllers.DocumentHolder.menuOpenLink": "Link megnyitása",
|
||||||
"DE.Controllers.DocumentHolder.menuPaste": "Beilleszt",
|
"DE.Controllers.DocumentHolder.menuPaste": "Beilleszt",
|
||||||
"DE.Controllers.DocumentHolder.menuReview": "Összefoglaló",
|
"DE.Controllers.DocumentHolder.menuReview": "Összefoglaló",
|
||||||
|
"DE.Controllers.DocumentHolder.menuReviewChange": "Felülvizsgálat változás",
|
||||||
|
"DE.Controllers.DocumentHolder.menuSplit": "Cella felosztása",
|
||||||
"DE.Controllers.DocumentHolder.sheetCancel": "Mégse",
|
"DE.Controllers.DocumentHolder.sheetCancel": "Mégse",
|
||||||
|
"DE.Controllers.DocumentHolder.textCancel": "Mégse",
|
||||||
|
"DE.Controllers.DocumentHolder.textColumns": "Oszlopok",
|
||||||
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Másolás, kivágás és beillesztés",
|
||||||
|
"DE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne mutassa újra",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "Vendég",
|
"DE.Controllers.DocumentHolder.textGuest": "Vendég",
|
||||||
|
"DE.Controllers.DocumentHolder.textRows": "Sorok",
|
||||||
"DE.Controllers.EditContainer.textChart": "Diagram",
|
"DE.Controllers.EditContainer.textChart": "Diagram",
|
||||||
"DE.Controllers.EditContainer.textFooter": "Lábléc",
|
"DE.Controllers.EditContainer.textFooter": "Lábléc",
|
||||||
"DE.Controllers.EditContainer.textHeader": "Fejléc",
|
"DE.Controllers.EditContainer.textHeader": "Fejléc",
|
||||||
|
@ -65,17 +151,19 @@
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Hibakód: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Hibakód: %1",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.<br>Használja a 'Letölt' opciót, hogy elmentse a fájl biztonsági másolatát a számítógép merevlemezére.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.<br>Használja a 'Letölt' opciót, hogy elmentse a fájl biztonsági másolatát a számítógép merevlemezére.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.",
|
"DE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.<br>Kérjük, forduljon a Document Server rendszergazdájához a részletekért.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró",
|
"DE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró",
|
"DE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "A betöltés sikertelen",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "A dokumentum megnyitása sikertelen. Kérjük, válasszon egy másik fájlt.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.",
|
"DE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.",
|
||||||
"DE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.",
|
"DE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.",
|
||||||
"DE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:<br>nyitó ár, maximum ár, minimum ár, záró ár.",
|
"DE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:<br>nyitó ár, maximum ár, minimum ár, záró ár.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.",
|
"DE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.<br>Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető",
|
"DE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "A felhasználók száma túllépve",
|
"DE.Controllers.Main.errorUsersExceed": "A felhasználók száma túllépve",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is látható a dokumentum,<br> de a kapcsolat helyreállításáig nem lehet letölteni.",
|
"DE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,<br>de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.",
|
||||||
"DE.Controllers.Main.leavePageText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ",
|
"DE.Controllers.Main.leavePageText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Adatok betöltése...",
|
"DE.Controllers.Main.loadFontsTextText": "Adatok betöltése...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Adatok betöltése",
|
"DE.Controllers.Main.loadFontsTitleText": "Adatok betöltése",
|
||||||
|
@ -90,12 +178,12 @@
|
||||||
"DE.Controllers.Main.mailMergeLoadFileText": "Adat forrás betöltése...",
|
"DE.Controllers.Main.mailMergeLoadFileText": "Adat forrás betöltése...",
|
||||||
"DE.Controllers.Main.mailMergeLoadFileTitle": "Adat forrás betöltése",
|
"DE.Controllers.Main.mailMergeLoadFileTitle": "Adat forrás betöltése",
|
||||||
"DE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés",
|
"DE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
"DE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitása során",
|
"DE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitásakor",
|
||||||
"DE.Controllers.Main.openTextText": "Dokumentum megnyitása...",
|
"DE.Controllers.Main.openTextText": "Dokumentum megnyitása...",
|
||||||
"DE.Controllers.Main.openTitleText": "Dokumentum megnyitása",
|
"DE.Controllers.Main.openTitleText": "Dokumentum megnyitása",
|
||||||
"DE.Controllers.Main.printTextText": "Dokumentum nyomtatása...",
|
"DE.Controllers.Main.printTextText": "Dokumentum nyomtatása...",
|
||||||
"DE.Controllers.Main.printTitleText": "Dokumentum nyomtatása",
|
"DE.Controllers.Main.printTitleText": "Dokumentum nyomtatása",
|
||||||
"DE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során",
|
"DE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során.",
|
||||||
"DE.Controllers.Main.savePreparingText": "Felkészülés mentésre",
|
"DE.Controllers.Main.savePreparingText": "Felkészülés mentésre",
|
||||||
"DE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...",
|
"DE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...",
|
||||||
"DE.Controllers.Main.saveTextText": "Dokumentum mentése...",
|
"DE.Controllers.Main.saveTextText": "Dokumentum mentése...",
|
||||||
|
@ -115,7 +203,7 @@
|
||||||
"DE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.<br>Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.",
|
"DE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.<br>Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.",
|
||||||
"DE.Controllers.Main.textDone": "Kész",
|
"DE.Controllers.Main.textDone": "Kész",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Dokumentum betöltése",
|
"DE.Controllers.Main.textLoadingDocument": "Dokumentum betöltése",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE kapcsolódási limitáció",
|
"DE.Controllers.Main.textNoLicenseTitle": "%1 kapcsoat limit",
|
||||||
"DE.Controllers.Main.textOK": "OK",
|
"DE.Controllers.Main.textOK": "OK",
|
||||||
"DE.Controllers.Main.textPaidFeature": "Fizetett funkció",
|
"DE.Controllers.Main.textPaidFeature": "Fizetett funkció",
|
||||||
"DE.Controllers.Main.textPassword": "Jelszó",
|
"DE.Controllers.Main.textPassword": "Jelszó",
|
||||||
|
@ -158,6 +246,7 @@
|
||||||
"DE.Controllers.Main.uploadImageSizeMessage": "Elérte a maximum kép méret limitet.",
|
"DE.Controllers.Main.uploadImageSizeMessage": "Elérte a maximum kép méret limitet.",
|
||||||
"DE.Controllers.Main.uploadImageTextText": "Kép feltöltése...",
|
"DE.Controllers.Main.uploadImageTextText": "Kép feltöltése...",
|
||||||
"DE.Controllers.Main.uploadImageTitleText": "Kép feltöltése",
|
"DE.Controllers.Main.uploadImageTitleText": "Kép feltöltése",
|
||||||
|
"DE.Controllers.Main.waitText": "Kérjük, várjon...",
|
||||||
"DE.Controllers.Main.warnLicenseExceeded": "A párhuzamos kapcsolódások száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.<br>Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
|
"DE.Controllers.Main.warnLicenseExceeded": "A párhuzamos kapcsolódások száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.<br>Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
|
||||||
"DE.Controllers.Main.warnLicenseExp": "A licence lejárt.<br>Kérem frissítse a licencét, majd az oldalt.",
|
"DE.Controllers.Main.warnLicenseExp": "A licence lejárt.<br>Kérem frissítse a licencét, majd az oldalt.",
|
||||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "A párhuzamos felhasználók száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.<br>Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
|
"DE.Controllers.Main.warnLicenseUsersExceeded": "A párhuzamos felhasználók száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.<br>Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.",
|
||||||
|
@ -170,6 +259,7 @@
|
||||||
"DE.Controllers.Settings.txtLoading": "Betöltés...",
|
"DE.Controllers.Settings.txtLoading": "Betöltés...",
|
||||||
"DE.Controllers.Settings.unknownText": "Ismeretlen",
|
"DE.Controllers.Settings.unknownText": "Ismeretlen",
|
||||||
"DE.Controllers.Settings.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.<br>Biztos benne, hogy folytatni akarja?",
|
"DE.Controllers.Settings.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.<br>Biztos benne, hogy folytatni akarja?",
|
||||||
|
"DE.Controllers.Settings.warnDownloadAsRTF": "Ha ebbe a formátumba ment, bizonyos formázási elemek elveszhetnek.<br>Biztos benne, hogy folytatni akarja?",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ",
|
"DE.Controllers.Toolbar.dlgLeaveMsgText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Bezárja az alkalmazást",
|
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Bezárja az alkalmazást",
|
||||||
"DE.Controllers.Toolbar.leaveButtonText": "Oldal elhagyása",
|
"DE.Controllers.Toolbar.leaveButtonText": "Oldal elhagyása",
|
||||||
|
@ -190,10 +280,14 @@
|
||||||
"DE.Views.AddOther.textCurrentPos": "Jelenlegi pozíció",
|
"DE.Views.AddOther.textCurrentPos": "Jelenlegi pozíció",
|
||||||
"DE.Views.AddOther.textDisplay": "Megmutat",
|
"DE.Views.AddOther.textDisplay": "Megmutat",
|
||||||
"DE.Views.AddOther.textEvenPage": "Páros oldal",
|
"DE.Views.AddOther.textEvenPage": "Páros oldal",
|
||||||
|
"DE.Views.AddOther.textFootnote": "Lábjegyzet",
|
||||||
|
"DE.Views.AddOther.textFormat": "Formátum",
|
||||||
"DE.Views.AddOther.textInsert": "Beszúr",
|
"DE.Views.AddOther.textInsert": "Beszúr",
|
||||||
|
"DE.Views.AddOther.textInsertFootnote": "Lábjegyzet beszúrása",
|
||||||
"DE.Views.AddOther.textLeftBottom": "Bal alsó",
|
"DE.Views.AddOther.textLeftBottom": "Bal alsó",
|
||||||
"DE.Views.AddOther.textLeftTop": "Bal felső",
|
"DE.Views.AddOther.textLeftTop": "Bal felső",
|
||||||
"DE.Views.AddOther.textLink": "Link",
|
"DE.Views.AddOther.textLink": "Link",
|
||||||
|
"DE.Views.AddOther.textLocation": "Hely",
|
||||||
"DE.Views.AddOther.textNextPage": "Következő oldal",
|
"DE.Views.AddOther.textNextPage": "Következő oldal",
|
||||||
"DE.Views.AddOther.textOddPage": "Páratlan oldal",
|
"DE.Views.AddOther.textOddPage": "Páratlan oldal",
|
||||||
"DE.Views.AddOther.textPageBreak": "Lap törés",
|
"DE.Views.AddOther.textPageBreak": "Lap törés",
|
||||||
|
@ -202,13 +296,16 @@
|
||||||
"DE.Views.AddOther.textRightBottom": "Jobb alsó",
|
"DE.Views.AddOther.textRightBottom": "Jobb alsó",
|
||||||
"DE.Views.AddOther.textRightTop": "Jobb felső",
|
"DE.Views.AddOther.textRightTop": "Jobb felső",
|
||||||
"DE.Views.AddOther.textSectionBreak": "Szekció törés",
|
"DE.Views.AddOther.textSectionBreak": "Szekció törés",
|
||||||
|
"DE.Views.AddOther.textStartFrom": "Kezdet",
|
||||||
"DE.Views.AddOther.textTip": "Gyorstipp",
|
"DE.Views.AddOther.textTip": "Gyorstipp",
|
||||||
|
"DE.Views.EditChart.textAddCustomColor": "Egyéni szín hozzáadása",
|
||||||
"DE.Views.EditChart.textAlign": "Rendez",
|
"DE.Views.EditChart.textAlign": "Rendez",
|
||||||
"DE.Views.EditChart.textBack": "Vissza",
|
"DE.Views.EditChart.textBack": "Vissza",
|
||||||
"DE.Views.EditChart.textBackward": "Hátra mozgat",
|
"DE.Views.EditChart.textBackward": "Hátra mozgat",
|
||||||
"DE.Views.EditChart.textBehind": "Mögött",
|
"DE.Views.EditChart.textBehind": "Mögött",
|
||||||
"DE.Views.EditChart.textBorder": "Szegély",
|
"DE.Views.EditChart.textBorder": "Szegély",
|
||||||
"DE.Views.EditChart.textColor": "Szín",
|
"DE.Views.EditChart.textColor": "Szín",
|
||||||
|
"DE.Views.EditChart.textCustomColor": "Egyéni szín",
|
||||||
"DE.Views.EditChart.textDistanceText": "Távolság a szövegtől",
|
"DE.Views.EditChart.textDistanceText": "Távolság a szövegtől",
|
||||||
"DE.Views.EditChart.textFill": "Kitölt",
|
"DE.Views.EditChart.textFill": "Kitölt",
|
||||||
"DE.Views.EditChart.textForward": "Előre mozgat",
|
"DE.Views.EditChart.textForward": "Előre mozgat",
|
||||||
|
@ -244,7 +341,7 @@
|
||||||
"DE.Views.EditImage.textBack": "Vissza",
|
"DE.Views.EditImage.textBack": "Vissza",
|
||||||
"DE.Views.EditImage.textBackward": "Hátra mozgat",
|
"DE.Views.EditImage.textBackward": "Hátra mozgat",
|
||||||
"DE.Views.EditImage.textBehind": "Mögött",
|
"DE.Views.EditImage.textBehind": "Mögött",
|
||||||
"DE.Views.EditImage.textDefault": "Alapértelmezett méret",
|
"DE.Views.EditImage.textDefault": "Valódi méret",
|
||||||
"DE.Views.EditImage.textDistanceText": "Távolság a szövegtől",
|
"DE.Views.EditImage.textDistanceText": "Távolság a szövegtől",
|
||||||
"DE.Views.EditImage.textForward": "Előre mozgat",
|
"DE.Views.EditImage.textForward": "Előre mozgat",
|
||||||
"DE.Views.EditImage.textFromLibrary": "Kép a galériából",
|
"DE.Views.EditImage.textFromLibrary": "Kép a galériából",
|
||||||
|
@ -266,6 +363,7 @@
|
||||||
"DE.Views.EditImage.textToForeground": "Elölre hoz",
|
"DE.Views.EditImage.textToForeground": "Elölre hoz",
|
||||||
"DE.Views.EditImage.textTopBottom": "Felül - alul",
|
"DE.Views.EditImage.textTopBottom": "Felül - alul",
|
||||||
"DE.Views.EditImage.textWrap": "Tördel",
|
"DE.Views.EditImage.textWrap": "Tördel",
|
||||||
|
"DE.Views.EditParagraph.textAddCustomColor": "Egyéni szín hozzáadása",
|
||||||
"DE.Views.EditParagraph.textAdvanced": "Haladó",
|
"DE.Views.EditParagraph.textAdvanced": "Haladó",
|
||||||
"DE.Views.EditParagraph.textAdvSettings": "Haladó beállítások",
|
"DE.Views.EditParagraph.textAdvSettings": "Haladó beállítások",
|
||||||
"DE.Views.EditParagraph.textAfter": "Utána",
|
"DE.Views.EditParagraph.textAfter": "Utána",
|
||||||
|
@ -273,6 +371,7 @@
|
||||||
"DE.Views.EditParagraph.textBack": "Vissza",
|
"DE.Views.EditParagraph.textBack": "Vissza",
|
||||||
"DE.Views.EditParagraph.textBackground": "Háttér",
|
"DE.Views.EditParagraph.textBackground": "Háttér",
|
||||||
"DE.Views.EditParagraph.textBefore": "Elötte",
|
"DE.Views.EditParagraph.textBefore": "Elötte",
|
||||||
|
"DE.Views.EditParagraph.textCustomColor": "Egyéni szín",
|
||||||
"DE.Views.EditParagraph.textFirstLine": "Első sor",
|
"DE.Views.EditParagraph.textFirstLine": "Első sor",
|
||||||
"DE.Views.EditParagraph.textFromText": "Távolság a szövegtől",
|
"DE.Views.EditParagraph.textFromText": "Távolság a szövegtől",
|
||||||
"DE.Views.EditParagraph.textKeepLines": "Sorok egyben tartása",
|
"DE.Views.EditParagraph.textKeepLines": "Sorok egyben tartása",
|
||||||
|
@ -281,12 +380,14 @@
|
||||||
"DE.Views.EditParagraph.textPageBreak": "Oldaltörés",
|
"DE.Views.EditParagraph.textPageBreak": "Oldaltörés",
|
||||||
"DE.Views.EditParagraph.textPrgStyles": "Bekezdés stílusok",
|
"DE.Views.EditParagraph.textPrgStyles": "Bekezdés stílusok",
|
||||||
"DE.Views.EditParagraph.textSpaceBetween": "Bekezdések térköze",
|
"DE.Views.EditParagraph.textSpaceBetween": "Bekezdések térköze",
|
||||||
|
"DE.Views.EditShape.textAddCustomColor": "Egyéni szín hozzáadása",
|
||||||
"DE.Views.EditShape.textAlign": "Rendez",
|
"DE.Views.EditShape.textAlign": "Rendez",
|
||||||
"DE.Views.EditShape.textBack": "Vissza",
|
"DE.Views.EditShape.textBack": "Vissza",
|
||||||
"DE.Views.EditShape.textBackward": "Hátra mozgat",
|
"DE.Views.EditShape.textBackward": "Hátra mozgat",
|
||||||
"DE.Views.EditShape.textBehind": "Mögött",
|
"DE.Views.EditShape.textBehind": "Mögött",
|
||||||
"DE.Views.EditShape.textBorder": "Szegély",
|
"DE.Views.EditShape.textBorder": "Szegély",
|
||||||
"DE.Views.EditShape.textColor": "Szín",
|
"DE.Views.EditShape.textColor": "Szín",
|
||||||
|
"DE.Views.EditShape.textCustomColor": "Egyéni szín",
|
||||||
"DE.Views.EditShape.textEffects": "Effektek",
|
"DE.Views.EditShape.textEffects": "Effektek",
|
||||||
"DE.Views.EditShape.textFill": "Kitölt",
|
"DE.Views.EditShape.textFill": "Kitölt",
|
||||||
"DE.Views.EditShape.textForward": "Előre mozgat",
|
"DE.Views.EditShape.textForward": "Előre mozgat",
|
||||||
|
@ -308,6 +409,7 @@
|
||||||
"DE.Views.EditShape.textTopAndBottom": "Felül - alul",
|
"DE.Views.EditShape.textTopAndBottom": "Felül - alul",
|
||||||
"DE.Views.EditShape.textWithText": "Szöveggel mozgat",
|
"DE.Views.EditShape.textWithText": "Szöveggel mozgat",
|
||||||
"DE.Views.EditShape.textWrap": "Tördel",
|
"DE.Views.EditShape.textWrap": "Tördel",
|
||||||
|
"DE.Views.EditTable.textAddCustomColor": "Egyéni szín hozzáadása",
|
||||||
"DE.Views.EditTable.textAlign": "Rendez",
|
"DE.Views.EditTable.textAlign": "Rendez",
|
||||||
"DE.Views.EditTable.textBack": "Vissza",
|
"DE.Views.EditTable.textBack": "Vissza",
|
||||||
"DE.Views.EditTable.textBandedColumn": "Oszlopok csíkozása",
|
"DE.Views.EditTable.textBandedColumn": "Oszlopok csíkozása",
|
||||||
|
@ -315,6 +417,7 @@
|
||||||
"DE.Views.EditTable.textBorder": "Szegély",
|
"DE.Views.EditTable.textBorder": "Szegély",
|
||||||
"DE.Views.EditTable.textCellMargins": "Cella margók",
|
"DE.Views.EditTable.textCellMargins": "Cella margók",
|
||||||
"DE.Views.EditTable.textColor": "Szín",
|
"DE.Views.EditTable.textColor": "Szín",
|
||||||
|
"DE.Views.EditTable.textCustomColor": "Egyéni szín",
|
||||||
"DE.Views.EditTable.textFill": "Kitölt",
|
"DE.Views.EditTable.textFill": "Kitölt",
|
||||||
"DE.Views.EditTable.textFirstColumn": "Első oszlop",
|
"DE.Views.EditTable.textFirstColumn": "Első oszlop",
|
||||||
"DE.Views.EditTable.textFlow": "Flow",
|
"DE.Views.EditTable.textFlow": "Flow",
|
||||||
|
@ -333,6 +436,7 @@
|
||||||
"DE.Views.EditTable.textTotalRow": "Összes sor",
|
"DE.Views.EditTable.textTotalRow": "Összes sor",
|
||||||
"DE.Views.EditTable.textWithText": "Szöveggel mozgat",
|
"DE.Views.EditTable.textWithText": "Szöveggel mozgat",
|
||||||
"DE.Views.EditTable.textWrap": "Tördel",
|
"DE.Views.EditTable.textWrap": "Tördel",
|
||||||
|
"DE.Views.EditText.textAddCustomColor": "Egyéni szín hozzáadása",
|
||||||
"DE.Views.EditText.textAdditional": "További",
|
"DE.Views.EditText.textAdditional": "További",
|
||||||
"DE.Views.EditText.textAdditionalFormat": "További formázás",
|
"DE.Views.EditText.textAdditionalFormat": "További formázás",
|
||||||
"DE.Views.EditText.textAllCaps": "Minden nagybetű",
|
"DE.Views.EditText.textAllCaps": "Minden nagybetű",
|
||||||
|
@ -343,6 +447,7 @@
|
||||||
"DE.Views.EditText.textCharacterItalic": "I",
|
"DE.Views.EditText.textCharacterItalic": "I",
|
||||||
"DE.Views.EditText.textCharacterStrikethrough": "s",
|
"DE.Views.EditText.textCharacterStrikethrough": "s",
|
||||||
"DE.Views.EditText.textCharacterUnderline": "U",
|
"DE.Views.EditText.textCharacterUnderline": "U",
|
||||||
|
"DE.Views.EditText.textCustomColor": "Egyéni szín",
|
||||||
"DE.Views.EditText.textDblStrikethrough": "Dupla áthúzás",
|
"DE.Views.EditText.textDblStrikethrough": "Dupla áthúzás",
|
||||||
"DE.Views.EditText.textDblSuperscript": "Felső index",
|
"DE.Views.EditText.textDblSuperscript": "Felső index",
|
||||||
"DE.Views.EditText.textFontColor": "Betűszín",
|
"DE.Views.EditText.textFontColor": "Betűszín",
|
||||||
|
@ -367,12 +472,22 @@
|
||||||
"DE.Views.Search.textSearch": "Keresés",
|
"DE.Views.Search.textSearch": "Keresés",
|
||||||
"DE.Views.Settings.textAbout": "Névjegy",
|
"DE.Views.Settings.textAbout": "Névjegy",
|
||||||
"DE.Views.Settings.textAddress": "Cím",
|
"DE.Views.Settings.textAddress": "Cím",
|
||||||
|
"DE.Views.Settings.textAdvancedSettings": "Alkalmazás beállítások",
|
||||||
|
"DE.Views.Settings.textApplication": "Alkalmazás",
|
||||||
"DE.Views.Settings.textAuthor": "Szerző",
|
"DE.Views.Settings.textAuthor": "Szerző",
|
||||||
"DE.Views.Settings.textBack": "Vissza",
|
"DE.Views.Settings.textBack": "Vissza",
|
||||||
"DE.Views.Settings.textBottom": "Alsó",
|
"DE.Views.Settings.textBottom": "Alsó",
|
||||||
|
"DE.Views.Settings.textCentimeter": "Centiméter",
|
||||||
|
"DE.Views.Settings.textCollaboration": "Együttműködés",
|
||||||
|
"DE.Views.Settings.textColorSchemes": "Színpaletták",
|
||||||
|
"DE.Views.Settings.textComment": "Hozzászólás",
|
||||||
|
"DE.Views.Settings.textCommentingDisplay": "Hozzászólások megjelenítése",
|
||||||
|
"DE.Views.Settings.textCreated": "Létrehozva",
|
||||||
"DE.Views.Settings.textCreateDate": "Létrehozás dátuma",
|
"DE.Views.Settings.textCreateDate": "Létrehozás dátuma",
|
||||||
"DE.Views.Settings.textCustom": "Egyéni",
|
"DE.Views.Settings.textCustom": "Egyéni",
|
||||||
"DE.Views.Settings.textCustomSize": "Egyéni méret",
|
"DE.Views.Settings.textCustomSize": "Egyéni méret",
|
||||||
|
"DE.Views.Settings.textDisplayComments": "Hozzászólások",
|
||||||
|
"DE.Views.Settings.textDisplayResolvedComments": "Lezárt hozzászólások",
|
||||||
"DE.Views.Settings.textDocInfo": "Dokumentum info",
|
"DE.Views.Settings.textDocInfo": "Dokumentum info",
|
||||||
"DE.Views.Settings.textDocTitle": "Dokumentum címe",
|
"DE.Views.Settings.textDocTitle": "Dokumentum címe",
|
||||||
"DE.Views.Settings.textDocumentFormats": "Dokumentum formátum",
|
"DE.Views.Settings.textDocumentFormats": "Dokumentum formátum",
|
||||||
|
@ -386,13 +501,21 @@
|
||||||
"DE.Views.Settings.textFindAndReplace": "Keres és cserél",
|
"DE.Views.Settings.textFindAndReplace": "Keres és cserél",
|
||||||
"DE.Views.Settings.textFormat": "Formátum",
|
"DE.Views.Settings.textFormat": "Formátum",
|
||||||
"DE.Views.Settings.textHelp": "Súgó",
|
"DE.Views.Settings.textHelp": "Súgó",
|
||||||
|
"DE.Views.Settings.textHiddenTableBorders": "Rejtett táblázat szegélyek",
|
||||||
|
"DE.Views.Settings.textInch": "Hüvelyk",
|
||||||
"DE.Views.Settings.textLandscape": "Tájkép",
|
"DE.Views.Settings.textLandscape": "Tájkép",
|
||||||
|
"DE.Views.Settings.textLastModified": "Utoljára módosított",
|
||||||
|
"DE.Views.Settings.textLastModifiedBy": "Utoljára módosította",
|
||||||
"DE.Views.Settings.textLeft": "Bal",
|
"DE.Views.Settings.textLeft": "Bal",
|
||||||
"DE.Views.Settings.textLoading": "Betöltés...",
|
"DE.Views.Settings.textLoading": "Betöltés...",
|
||||||
|
"DE.Views.Settings.textLocation": "Hely",
|
||||||
"DE.Views.Settings.textMargins": "Margók",
|
"DE.Views.Settings.textMargins": "Margók",
|
||||||
|
"DE.Views.Settings.textNoCharacters": "Nem nyomtatható karakterek",
|
||||||
"DE.Views.Settings.textOrientation": "Tájolás",
|
"DE.Views.Settings.textOrientation": "Tájolás",
|
||||||
|
"DE.Views.Settings.textOwner": "Tulajdonos",
|
||||||
"DE.Views.Settings.textPages": "Oldalak",
|
"DE.Views.Settings.textPages": "Oldalak",
|
||||||
"DE.Views.Settings.textParagraphs": "Bekezdések",
|
"DE.Views.Settings.textParagraphs": "Bekezdések",
|
||||||
|
"DE.Views.Settings.textPoint": "Pont",
|
||||||
"DE.Views.Settings.textPortrait": "Portré",
|
"DE.Views.Settings.textPortrait": "Portré",
|
||||||
"DE.Views.Settings.textPoweredBy": "Powered by",
|
"DE.Views.Settings.textPoweredBy": "Powered by",
|
||||||
"DE.Views.Settings.textPrint": "Nyomtat",
|
"DE.Views.Settings.textPrint": "Nyomtat",
|
||||||
|
@ -403,9 +526,13 @@
|
||||||
"DE.Views.Settings.textSpaces": "Térközök",
|
"DE.Views.Settings.textSpaces": "Térközök",
|
||||||
"DE.Views.Settings.textSpellcheck": "Helyesírás-ellenőrzés",
|
"DE.Views.Settings.textSpellcheck": "Helyesírás-ellenőrzés",
|
||||||
"DE.Views.Settings.textStatistic": "Statisztika",
|
"DE.Views.Settings.textStatistic": "Statisztika",
|
||||||
|
"DE.Views.Settings.textSubject": "Tárgy",
|
||||||
"DE.Views.Settings.textSymbols": "Szimbólumok",
|
"DE.Views.Settings.textSymbols": "Szimbólumok",
|
||||||
"DE.Views.Settings.textTel": "Tel.",
|
"DE.Views.Settings.textTel": "Tel.",
|
||||||
|
"DE.Views.Settings.textTitle": "Cím",
|
||||||
"DE.Views.Settings.textTop": "Felső",
|
"DE.Views.Settings.textTop": "Felső",
|
||||||
|
"DE.Views.Settings.textUnitOfMeasurement": "Mértékegység",
|
||||||
|
"DE.Views.Settings.textUploaded": "Feltöltve",
|
||||||
"DE.Views.Settings.textVersion": "Verzió",
|
"DE.Views.Settings.textVersion": "Verzió",
|
||||||
"DE.Views.Settings.textWords": "Szavak",
|
"DE.Views.Settings.textWords": "Szavak",
|
||||||
"DE.Views.Settings.unknownText": "Ismeretlen",
|
"DE.Views.Settings.unknownText": "Ismeretlen",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"Common.Controllers.Collaboration.textContextual": "Non aggiungere intervallo tra paragrafi dello stesso stile",
|
"Common.Controllers.Collaboration.textContextual": "Non aggiungere intervallo tra paragrafi dello stesso stile",
|
||||||
"Common.Controllers.Collaboration.textDeleted": "<b>Eliminato:</b>",
|
"Common.Controllers.Collaboration.textDeleted": "<b>Eliminato:</b>",
|
||||||
"Common.Controllers.Collaboration.textDStrikeout": "Doppio barrato",
|
"Common.Controllers.Collaboration.textDStrikeout": "Doppio barrato",
|
||||||
"Common.Controllers.Collaboration.textEditUser": "È in corso la modifica del documento da parte di più utenti.",
|
"Common.Controllers.Collaboration.textEditUser": "Utenti che stanno modificando il file:",
|
||||||
"Common.Controllers.Collaboration.textEquation": "Equazione",
|
"Common.Controllers.Collaboration.textEquation": "Equazione",
|
||||||
"Common.Controllers.Collaboration.textExact": "Esatto",
|
"Common.Controllers.Collaboration.textExact": "Esatto",
|
||||||
"Common.Controllers.Collaboration.textFirstLine": "Prima riga",
|
"Common.Controllers.Collaboration.textFirstLine": "Prima riga",
|
||||||
|
@ -90,6 +90,7 @@
|
||||||
"DE.Controllers.AddTable.textColumns": "Colonne",
|
"DE.Controllers.AddTable.textColumns": "Colonne",
|
||||||
"DE.Controllers.AddTable.textRows": "Righe",
|
"DE.Controllers.AddTable.textRows": "Righe",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Dimensioni tabella",
|
"DE.Controllers.AddTable.textTableSize": "Dimensioni tabella",
|
||||||
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Le azioni di copia, taglia e incolla utilizzando il menu di scelta rapida verranno eseguite solo all'interno del file corrente.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Copia",
|
"DE.Controllers.DocumentHolder.menuCopy": "Copia",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Taglia",
|
"DE.Controllers.DocumentHolder.menuCut": "Taglia",
|
||||||
|
@ -106,6 +107,7 @@
|
||||||
"DE.Controllers.DocumentHolder.sheetCancel": "Annulla",
|
"DE.Controllers.DocumentHolder.sheetCancel": "Annulla",
|
||||||
"DE.Controllers.DocumentHolder.textCancel": "Annulla",
|
"DE.Controllers.DocumentHolder.textCancel": "Annulla",
|
||||||
"DE.Controllers.DocumentHolder.textColumns": "Colonne",
|
"DE.Controllers.DocumentHolder.textColumns": "Colonne",
|
||||||
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Funzioni copia/taglia/incolla",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "Ospite",
|
"DE.Controllers.DocumentHolder.textGuest": "Ospite",
|
||||||
"DE.Controllers.DocumentHolder.textRows": "Righe",
|
"DE.Controllers.DocumentHolder.textRows": "Righe",
|
||||||
"DE.Controllers.EditContainer.textChart": "Grafico",
|
"DE.Controllers.EditContainer.textChart": "Grafico",
|
||||||
|
@ -151,7 +153,7 @@
|
||||||
"DE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
"DE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
|
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento non riuscito",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento del documento non riuscito. Seleziona un altro file.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Unione non riuscita",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Unione non riuscita",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito",
|
"DE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito",
|
||||||
"DE.Controllers.Main.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.",
|
"DE.Controllers.Main.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.",
|
||||||
|
|
101
apps/documenteditor/mobile/locale/ja.json
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
{
|
||||||
|
"Common.Controllers.Collaboration.textAtLeast": "最小",
|
||||||
|
"Common.Controllers.Collaboration.textAuto": "自動",
|
||||||
|
"Common.Controllers.Collaboration.textBaseline": "ベースライン",
|
||||||
|
"Common.Controllers.Collaboration.textBold": "太字",
|
||||||
|
"Common.Controllers.Collaboration.textCaps": "全ての大字",
|
||||||
|
"Common.Controllers.Collaboration.textCenter": "中央揃え",
|
||||||
|
"Common.Controllers.Collaboration.textChart": "グラフ",
|
||||||
|
"Common.Controllers.Collaboration.textDeleted": "<b>削除済み:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textInserted": "<b>挿入済み:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textJustify": "両端揃え",
|
||||||
|
"Common.Controllers.Collaboration.textLeft": "左揃え",
|
||||||
|
"Common.Controllers.Collaboration.textNoContextual": "同じなスタイルの段落の間に間隔を追加する",
|
||||||
|
"Common.Controllers.Collaboration.textNum": "番号設定の変更",
|
||||||
|
"Common.Controllers.Collaboration.textParaDeleted": "<b>段落が削除された</b> ",
|
||||||
|
"Common.Controllers.Collaboration.textParaFormatted": "<b>段落の書式設定された:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaInserted": "<b>段落が挿入された</b> ",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>下に移動された:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>上に移動された:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveTo": "<b>移動された:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textRight": "右揃え",
|
||||||
|
"Common.Controllers.Collaboration.textShd": "背景色",
|
||||||
|
"Common.Controllers.Collaboration.textTableChanged": "<b>テーブル設定が変更された</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>テーブル行が追加された</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsDel": "<b>テーブル行が削除された</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTabs": "タブの変更",
|
||||||
|
"Common.Views.Collaboration.textAcceptAllChanges": "すべての変更を反映する",
|
||||||
|
"Common.Views.Collaboration.textBack": "戻る",
|
||||||
|
"Common.Views.Collaboration.textDisplayMode": "表示モード",
|
||||||
|
"Common.Views.Collaboration.textСomments": "コメント",
|
||||||
|
"DE.Controllers.AddTable.textCancel": "キャンセル",
|
||||||
|
"DE.Controllers.DocumentHolder.menuAddLink": "リンクを追加する",
|
||||||
|
"DE.Controllers.DocumentHolder.menuDelete": "削除",
|
||||||
|
"DE.Controllers.DocumentHolder.menuEdit": "編集する",
|
||||||
|
"DE.Controllers.DocumentHolder.sheetCancel": "キャンセル",
|
||||||
|
"DE.Controllers.DocumentHolder.textCancel": "キャンセル",
|
||||||
|
"DE.Controllers.EditContainer.textChart": "グラフ",
|
||||||
|
"DE.Controllers.EditText.textAuto": "自動",
|
||||||
|
"DE.Controllers.Main.openErrorText": "ファイルを読み込み中にエラーが発生しました",
|
||||||
|
"DE.Controllers.Main.saveErrorText": "ファイルを保存中にエラーが発生しました",
|
||||||
|
"DE.Controllers.Main.textAnonymous": "匿名の",
|
||||||
|
"DE.Controllers.Main.textBack": "戻る",
|
||||||
|
"DE.Controllers.Main.textCancel": "キャンセル",
|
||||||
|
"DE.Controllers.Main.txtDiagramTitle": "グラフのタイトル",
|
||||||
|
"DE.Views.AddImage.textAddress": "アドレス",
|
||||||
|
"DE.Views.AddImage.textBack": "戻る",
|
||||||
|
"DE.Views.AddOther.textAddLink": "リンクを追加する",
|
||||||
|
"DE.Views.AddOther.textBack": "戻る",
|
||||||
|
"DE.Views.AddOther.textCenterBottom": "下部中央",
|
||||||
|
"DE.Views.AddOther.textCenterTop": "上部中央",
|
||||||
|
"DE.Views.AddOther.textDisplay": "表示する",
|
||||||
|
"DE.Views.EditChart.textAddCustomColor": "カストム色を追加する",
|
||||||
|
"DE.Views.EditChart.textAlign": "配置",
|
||||||
|
"DE.Views.EditChart.textBack": "戻る",
|
||||||
|
"DE.Views.EditChart.textBorder": "罫線",
|
||||||
|
"DE.Views.EditChart.textOverlap": "オーバーラップさせる",
|
||||||
|
"DE.Views.EditHyperlink.textDisplay": "表示する",
|
||||||
|
"DE.Views.EditHyperlink.textEdit": "リンクを編集する",
|
||||||
|
"DE.Views.EditImage.textAddress": "アドレス",
|
||||||
|
"DE.Views.EditImage.textAlign": "配置",
|
||||||
|
"DE.Views.EditImage.textBack": "戻る",
|
||||||
|
"DE.Views.EditImage.textDefault": "実際のサイズ",
|
||||||
|
"DE.Views.EditImage.textOverlap": "オーバーラップさせる",
|
||||||
|
"DE.Views.EditParagraph.textAddCustomColor": "カストム色を追加する",
|
||||||
|
"DE.Views.EditParagraph.textAdvanced": "高度な",
|
||||||
|
"DE.Views.EditParagraph.textAdvSettings": "高度な設定",
|
||||||
|
"DE.Views.EditParagraph.textAfter": "後に",
|
||||||
|
"DE.Views.EditParagraph.textAuto": "自動",
|
||||||
|
"DE.Views.EditParagraph.textBack": "戻る",
|
||||||
|
"DE.Views.EditParagraph.textBackground": "背景",
|
||||||
|
"DE.Views.EditShape.textAddCustomColor": "カストム色を追加する",
|
||||||
|
"DE.Views.EditShape.textAlign": "配置",
|
||||||
|
"DE.Views.EditShape.textBack": "戻る",
|
||||||
|
"DE.Views.EditShape.textBorder": "罫線",
|
||||||
|
"DE.Views.EditShape.textOverlap": "オーバーラップさせる",
|
||||||
|
"DE.Views.EditTable.textAddCustomColor": "カストム色を追加する",
|
||||||
|
"DE.Views.EditTable.textAlign": "配置",
|
||||||
|
"DE.Views.EditTable.textBack": "戻る",
|
||||||
|
"DE.Views.EditTable.textBorder": "罫線",
|
||||||
|
"DE.Views.EditTable.textCellMargins": "セルの余白",
|
||||||
|
"DE.Views.EditText.textAddCustomColor": "カストム色を追加する",
|
||||||
|
"DE.Views.EditText.textAdditional": "追加の",
|
||||||
|
"DE.Views.EditText.textAdditionalFormat": "追加の書式設定",
|
||||||
|
"DE.Views.EditText.textAllCaps": "全ての大字",
|
||||||
|
"DE.Views.EditText.textAutomatic": "自動的",
|
||||||
|
"DE.Views.EditText.textBack": "戻る",
|
||||||
|
"DE.Views.EditText.textBullets": "箇条書き",
|
||||||
|
"DE.Views.EditText.textCharacterBold": "B",
|
||||||
|
"DE.Views.Settings.textAbout": "詳細情報",
|
||||||
|
"DE.Views.Settings.textAddress": "アドレス",
|
||||||
|
"DE.Views.Settings.textAdvancedSettings": "アプリ設定",
|
||||||
|
"DE.Views.Settings.textApplication": "アプリ",
|
||||||
|
"DE.Views.Settings.textAuthor": "作成者",
|
||||||
|
"DE.Views.Settings.textBack": "戻る",
|
||||||
|
"DE.Views.Settings.textCentimeter": "センチ",
|
||||||
|
"DE.Views.Settings.textDocTitle": "文書名",
|
||||||
|
"DE.Views.Settings.textDocumentSettings": "文書設定",
|
||||||
|
"DE.Views.Settings.textDownload": "ダウンロード",
|
||||||
|
"DE.Views.Settings.textEditDoc": "文書を編集する",
|
||||||
|
"DE.Views.Toolbar.textBack": "戻る"
|
||||||
|
}
|
74
apps/documenteditor/mobile/locale/nb.json
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
{
|
||||||
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
|
"DE.Controllers.AddTable.textCancel": "Avbryt",
|
||||||
|
"DE.Controllers.AddTable.textColumns": "Kolonner",
|
||||||
|
"DE.Controllers.DocumentHolder.menuAddLink": "Legg til lenke",
|
||||||
|
"DE.Controllers.DocumentHolder.menuDelete": "Slett",
|
||||||
|
"DE.Controllers.DocumentHolder.sheetCancel": "Avbryt",
|
||||||
|
"DE.Controllers.EditContainer.textChart": "Diagram",
|
||||||
|
"DE.Controllers.EditText.textAuto": "Auto",
|
||||||
|
"DE.Controllers.Main.advTxtOptions": "Velg TXT opsjoner",
|
||||||
|
"DE.Controllers.Main.closeButtonText": "Lukk filen",
|
||||||
|
"DE.Controllers.Main.errorEditingDownloadas": "En feil skjedde ved arbeid med dokumentet.<br>Bruk valget 'Last ned' til å lagre en backup av filen til din enhet.",
|
||||||
|
"DE.Controllers.Main.openErrorText": "Det har skjedd en feil når",
|
||||||
|
"DE.Controllers.Main.saveErrorText": "Det har skjedd en feil når",
|
||||||
|
"DE.Controllers.Main.textAnonymous": "Anonym",
|
||||||
|
"DE.Controllers.Main.textBack": "Tilbake",
|
||||||
|
"DE.Controllers.Main.textCancel": "Avbryt",
|
||||||
|
"DE.Controllers.Main.textClose": "Lukk",
|
||||||
|
"DE.Controllers.Main.txtDiagramTitle": "Diagramtittel",
|
||||||
|
"DE.Views.AddImage.textAddress": "Adresse",
|
||||||
|
"DE.Views.AddImage.textBack": "Tilbake",
|
||||||
|
"DE.Views.AddOther.textAddLink": "Legg til lenke",
|
||||||
|
"DE.Views.AddOther.textBack": "Tilbake",
|
||||||
|
"DE.Views.AddOther.textCenterBottom": "Midt bunn",
|
||||||
|
"DE.Views.AddOther.textCenterTop": "Midt topp",
|
||||||
|
"DE.Views.AddOther.textColumnBreak": "Kolonneskift",
|
||||||
|
"DE.Views.EditChart.textAlign": "Still opp",
|
||||||
|
"DE.Views.EditChart.textBack": "Tilbake",
|
||||||
|
"DE.Views.EditChart.textBehind": "Bak",
|
||||||
|
"DE.Views.EditChart.textBorder": "Ramme",
|
||||||
|
"DE.Views.EditChart.textColor": "Farge",
|
||||||
|
"DE.Views.EditChart.textOverlap": "Tillat overlapping",
|
||||||
|
"DE.Views.EditChart.textToForeground": "Plasser fremst",
|
||||||
|
"DE.Views.EditImage.textAddress": "Adresse",
|
||||||
|
"DE.Views.EditImage.textAlign": "Still opp",
|
||||||
|
"DE.Views.EditImage.textBack": "Tilbake",
|
||||||
|
"DE.Views.EditImage.textBehind": "Bak",
|
||||||
|
"DE.Views.EditImage.textOverlap": "Tillat overlapping",
|
||||||
|
"DE.Views.EditImage.textToForeground": "Plasser fremst",
|
||||||
|
"DE.Views.EditParagraph.textAdvanced": "Avansert",
|
||||||
|
"DE.Views.EditParagraph.textAdvSettings": "Avanserte innstillinger",
|
||||||
|
"DE.Views.EditParagraph.textAfter": "Etter",
|
||||||
|
"DE.Views.EditParagraph.textAuto": "Auto",
|
||||||
|
"DE.Views.EditParagraph.textBack": "Tilbake",
|
||||||
|
"DE.Views.EditParagraph.textBackground": "Bakgrunn",
|
||||||
|
"DE.Views.EditParagraph.textBefore": "Før",
|
||||||
|
"DE.Views.EditShape.textAlign": "Still opp",
|
||||||
|
"DE.Views.EditShape.textBack": "Tilbake",
|
||||||
|
"DE.Views.EditShape.textBehind": "Bak",
|
||||||
|
"DE.Views.EditShape.textBorder": "Ramme",
|
||||||
|
"DE.Views.EditShape.textColor": "Farge",
|
||||||
|
"DE.Views.EditShape.textOverlap": "Tillat overlapping",
|
||||||
|
"DE.Views.EditShape.textToForeground": "Plasser fremst",
|
||||||
|
"DE.Views.EditTable.textAlign": "Still opp",
|
||||||
|
"DE.Views.EditTable.textBack": "Tilbake",
|
||||||
|
"DE.Views.EditTable.textBandedColumn": "Kolonne med bånd",
|
||||||
|
"DE.Views.EditTable.textBandedRow": "Rad med bånd",
|
||||||
|
"DE.Views.EditTable.textBorder": "Ramme",
|
||||||
|
"DE.Views.EditTable.textCellMargins": "Cellemarginer",
|
||||||
|
"DE.Views.EditTable.textColor": "Farge",
|
||||||
|
"DE.Views.EditText.textAdditional": "I tillegg",
|
||||||
|
"DE.Views.EditText.textAdditionalFormat": "Tilleggsformatering",
|
||||||
|
"DE.Views.EditText.textAllCaps": "Store bokstaver",
|
||||||
|
"DE.Views.EditText.textAutomatic": "Automatisk",
|
||||||
|
"DE.Views.EditText.textBack": "Tilbake",
|
||||||
|
"DE.Views.EditText.textBullets": "Kulepunkt",
|
||||||
|
"DE.Views.Search.textCase": "Følsom for store og små bokstaver",
|
||||||
|
"DE.Views.Settings.textAbout": "Om",
|
||||||
|
"DE.Views.Settings.textAddress": "Adresse",
|
||||||
|
"DE.Views.Settings.textAuthor": "Forfatter",
|
||||||
|
"DE.Views.Settings.textBack": "Tilbake",
|
||||||
|
"DE.Views.Settings.textBottom": "Bunn",
|
||||||
|
"DE.Views.Toolbar.textBack": "Tilbake"
|
||||||
|
}
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"Common.Controllers.Collaboration.textParaDeleted": "Akapit usunięty ",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
|
|
|
@ -1,30 +1,119 @@
|
||||||
{
|
{
|
||||||
|
"Common.Controllers.Collaboration.textAtLeast": "pelo menos",
|
||||||
|
"Common.Controllers.Collaboration.textAuto": "Automático",
|
||||||
|
"Common.Controllers.Collaboration.textBaseline": "Linha de base",
|
||||||
|
"Common.Controllers.Collaboration.textBold": "Negrito",
|
||||||
|
"Common.Controllers.Collaboration.textBreakBefore": "Quebra de página antes",
|
||||||
|
"Common.Controllers.Collaboration.textCaps": "Todas maiúsculas",
|
||||||
|
"Common.Controllers.Collaboration.textCenter": "Centralizar Texto",
|
||||||
|
"Common.Controllers.Collaboration.textChart": "Gráfico",
|
||||||
|
"Common.Controllers.Collaboration.textColor": "Cor da fonte",
|
||||||
|
"Common.Controllers.Collaboration.textContextual": "Não adicionar intervalo entre parágrafos do mesmo estilo",
|
||||||
|
"Common.Controllers.Collaboration.textDeleted": "<b>Excluído:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textDStrikeout": "Tachado duplo",
|
||||||
|
"Common.Controllers.Collaboration.textEditUser": "Usuários que estão editando o arquivo:",
|
||||||
|
"Common.Controllers.Collaboration.textEquation": "Equação",
|
||||||
|
"Common.Controllers.Collaboration.textExact": "exatamente",
|
||||||
|
"Common.Controllers.Collaboration.textFirstLine": "Primeira linha",
|
||||||
|
"Common.Controllers.Collaboration.textFormatted": "Formatado",
|
||||||
|
"Common.Controllers.Collaboration.textHighlight": "Cor de Destaque",
|
||||||
|
"Common.Controllers.Collaboration.textImage": "Imagem",
|
||||||
|
"Common.Controllers.Collaboration.textIndentLeft": "Recuo à esquerda",
|
||||||
|
"Common.Controllers.Collaboration.textIndentRight": "Recuo à direita",
|
||||||
|
"Common.Controllers.Collaboration.textInserted": "<b>Incluído:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textItalic": "Itálico",
|
||||||
|
"Common.Controllers.Collaboration.textJustify": "Justificar Texto",
|
||||||
|
"Common.Controllers.Collaboration.textKeepLines": "Manter linhas juntas",
|
||||||
|
"Common.Controllers.Collaboration.textKeepNext": "Manter com o próximo",
|
||||||
|
"Common.Controllers.Collaboration.textLeft": "Alinhar à esquerda",
|
||||||
|
"Common.Controllers.Collaboration.textLineSpacing": "Espaçamento de linha:",
|
||||||
|
"Common.Controllers.Collaboration.textMultiple": "múltiplo",
|
||||||
|
"Common.Controllers.Collaboration.textNoBreakBefore": "Sem quebra de página antes",
|
||||||
|
"Common.Controllers.Collaboration.textNoContextual": "Adicionar intervalo entre parágrafos do mesmo estilo",
|
||||||
|
"Common.Controllers.Collaboration.textNoKeepLines": "Não mantenha linhas juntas",
|
||||||
|
"Common.Controllers.Collaboration.textNoKeepNext": "Não mantenha com o próximo",
|
||||||
|
"Common.Controllers.Collaboration.textNot": "Não",
|
||||||
|
"Common.Controllers.Collaboration.textNoWidow": "Sem controle de linhas órfãs/viúvas",
|
||||||
|
"Common.Controllers.Collaboration.textNum": "Alterar numeração",
|
||||||
|
"Common.Controllers.Collaboration.textParaDeleted": "<b>Parágrafo Excluído</b> ",
|
||||||
|
"Common.Controllers.Collaboration.textParaFormatted": "<b>Parágrafo Formatado</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaInserted": "<b>Parágrafo Incluído</b> ",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Movido Para Baixo:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Movido Para Cima:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Movido:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textPosition": "Posição",
|
||||||
|
"Common.Controllers.Collaboration.textRight": "Alinhar à direita",
|
||||||
|
"Common.Controllers.Collaboration.textShape": "Forma",
|
||||||
|
"Common.Controllers.Collaboration.textShd": "Cor do plano de fundo",
|
||||||
|
"Common.Controllers.Collaboration.textSmallCaps": "Versalete",
|
||||||
|
"Common.Controllers.Collaboration.textSpacing": "Espaçamento",
|
||||||
|
"Common.Controllers.Collaboration.textSpacingAfter": "Espaçamento depois",
|
||||||
|
"Common.Controllers.Collaboration.textSpacingBefore": "Espaçamento antes",
|
||||||
|
"Common.Controllers.Collaboration.textStrikeout": "Tachado",
|
||||||
|
"Common.Controllers.Collaboration.textSubScript": "Subscrito",
|
||||||
|
"Common.Controllers.Collaboration.textSuperScript": "Sobrescrito",
|
||||||
|
"Common.Controllers.Collaboration.textTableChanged": "<b>Configurações de Tabela Alteradas</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Linhas de Tabela Incluídas<b/>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Linhas de Tabela Excluídas<b/>",
|
||||||
|
"Common.Controllers.Collaboration.textTabs": "Trocar tabs",
|
||||||
|
"Common.Controllers.Collaboration.textUnderline": "Sublinhado",
|
||||||
|
"Common.Controllers.Collaboration.textWidow": "Controle de linhas órfãs/viúvas.",
|
||||||
|
"Common.UI.ThemeColorPalette.textCustomColors": "Cores personalizadas",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Cores padronizadas",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Cores padronizadas",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
|
"Common.Views.Collaboration.textAcceptAllChanges": "Aceitar todas as alterações",
|
||||||
|
"Common.Views.Collaboration.textBack": "Voltar",
|
||||||
|
"Common.Views.Collaboration.textChange": "Rever Alterações",
|
||||||
|
"Common.Views.Collaboration.textCollaboration": "Colaboração",
|
||||||
|
"Common.Views.Collaboration.textDisplayMode": "Modo de exibição",
|
||||||
|
"Common.Views.Collaboration.textEditUsers": "Usuários",
|
||||||
|
"Common.Views.Collaboration.textFinal": "Final",
|
||||||
|
"Common.Views.Collaboration.textMarkup": "Marcação",
|
||||||
|
"Common.Views.Collaboration.textNoComments": "O documento não contém comentários",
|
||||||
|
"Common.Views.Collaboration.textOriginal": "Original",
|
||||||
|
"Common.Views.Collaboration.textRejectAllChanges": "Rejeitar todas as alterações",
|
||||||
|
"Common.Views.Collaboration.textReview": "Controlar alterações",
|
||||||
|
"Common.Views.Collaboration.textReviewing": "Revisão",
|
||||||
|
"Common.Views.Collaboration.textСomments": "Comentários",
|
||||||
"DE.Controllers.AddContainer.textImage": "Imagem",
|
"DE.Controllers.AddContainer.textImage": "Imagem",
|
||||||
"DE.Controllers.AddContainer.textOther": "Outro",
|
"DE.Controllers.AddContainer.textOther": "Outro",
|
||||||
"DE.Controllers.AddContainer.textShape": "Forma",
|
"DE.Controllers.AddContainer.textShape": "Forma",
|
||||||
"DE.Controllers.AddContainer.textTable": "Tabela",
|
"DE.Controllers.AddContainer.textTable": "Tabela",
|
||||||
"DE.Controllers.AddImage.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.",
|
"DE.Controllers.AddImage.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.",
|
||||||
"DE.Controllers.AddImage.txtNotUrl": "Este campo deveria ser uma URL no formato \"http://www.exemplo.com\"",
|
"DE.Controllers.AddImage.txtNotUrl": "Este campo deveria ser uma URL no formato \"http://www.exemplo.com\"",
|
||||||
|
"DE.Controllers.AddOther.textBelowText": "Abaixo do texto",
|
||||||
|
"DE.Controllers.AddOther.textBottomOfPage": "Inferior da página",
|
||||||
"DE.Controllers.AddOther.txtNotUrl": "Este campo deveria ser uma URL no formato \"http://www.exemplo.com\"",
|
"DE.Controllers.AddOther.txtNotUrl": "Este campo deveria ser uma URL no formato \"http://www.exemplo.com\"",
|
||||||
"DE.Controllers.AddTable.textCancel": "Cancelar",
|
"DE.Controllers.AddTable.textCancel": "Cancelar",
|
||||||
"DE.Controllers.AddTable.textColumns": "Colunas",
|
"DE.Controllers.AddTable.textColumns": "Colunas",
|
||||||
"DE.Controllers.AddTable.textRows": "Linhas",
|
"DE.Controllers.AddTable.textRows": "Linhas",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Tamanho da tabela",
|
"DE.Controllers.AddTable.textTableSize": "Tamanho da tabela",
|
||||||
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Adicionar Link",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Adicionar Link",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Copiar",
|
"DE.Controllers.DocumentHolder.menuCopy": "Copiar",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Cortar",
|
"DE.Controllers.DocumentHolder.menuCut": "Cortar",
|
||||||
"DE.Controllers.DocumentHolder.menuDelete": "Excluir",
|
"DE.Controllers.DocumentHolder.menuDelete": "Excluir",
|
||||||
|
"DE.Controllers.DocumentHolder.menuDeleteTable": "Excluir tabela",
|
||||||
"DE.Controllers.DocumentHolder.menuEdit": "Editar",
|
"DE.Controllers.DocumentHolder.menuEdit": "Editar",
|
||||||
|
"DE.Controllers.DocumentHolder.menuMerge": "Mesclar células",
|
||||||
"DE.Controllers.DocumentHolder.menuMore": "Mais",
|
"DE.Controllers.DocumentHolder.menuMore": "Mais",
|
||||||
"DE.Controllers.DocumentHolder.menuOpenLink": "Abrir link",
|
"DE.Controllers.DocumentHolder.menuOpenLink": "Abrir link",
|
||||||
"DE.Controllers.DocumentHolder.menuPaste": "Colar",
|
"DE.Controllers.DocumentHolder.menuPaste": "Colar",
|
||||||
|
"DE.Controllers.DocumentHolder.menuReview": "Revisão",
|
||||||
|
"DE.Controllers.DocumentHolder.menuReviewChange": "Rever Alterações",
|
||||||
|
"DE.Controllers.DocumentHolder.menuSplit": "Dividir célula",
|
||||||
"DE.Controllers.DocumentHolder.sheetCancel": "Cancelar",
|
"DE.Controllers.DocumentHolder.sheetCancel": "Cancelar",
|
||||||
|
"DE.Controllers.DocumentHolder.textCancel": "Cancelar",
|
||||||
|
"DE.Controllers.DocumentHolder.textColumns": "Colunas",
|
||||||
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Copiar, Cortar e Colar",
|
||||||
|
"DE.Controllers.DocumentHolder.textDoNotShowAgain": "Não exibir novamente",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "Convidado",
|
"DE.Controllers.DocumentHolder.textGuest": "Convidado",
|
||||||
|
"DE.Controllers.DocumentHolder.textRows": "Linhas",
|
||||||
"DE.Controllers.EditContainer.textChart": "Gráfico",
|
"DE.Controllers.EditContainer.textChart": "Gráfico",
|
||||||
|
"DE.Controllers.EditContainer.textFooter": "Rodapé",
|
||||||
|
"DE.Controllers.EditContainer.textHeader": "Cabeçalho",
|
||||||
"DE.Controllers.EditContainer.textHyperlink": "Hiperlink",
|
"DE.Controllers.EditContainer.textHyperlink": "Hiperlink",
|
||||||
"DE.Controllers.EditContainer.textImage": "Imagem",
|
"DE.Controllers.EditContainer.textImage": "Imagem",
|
||||||
"DE.Controllers.EditContainer.textParagraph": "Parágrafo",
|
"DE.Controllers.EditContainer.textParagraph": "Parágrafo",
|
||||||
|
@ -43,33 +132,39 @@
|
||||||
"DE.Controllers.Main.advTxtOptions": "Escolha Opções de TXT",
|
"DE.Controllers.Main.advTxtOptions": "Escolha Opções de TXT",
|
||||||
"DE.Controllers.Main.applyChangesTextText": "Carregando dados...",
|
"DE.Controllers.Main.applyChangesTextText": "Carregando dados...",
|
||||||
"DE.Controllers.Main.applyChangesTitleText": "Carregando dados",
|
"DE.Controllers.Main.applyChangesTitleText": "Carregando dados",
|
||||||
|
"DE.Controllers.Main.closeButtonText": "Fechar Arquivo",
|
||||||
"DE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
|
"DE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.",
|
||||||
"DE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documento.",
|
"DE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documento.",
|
||||||
"DE.Controllers.Main.criticalErrorTitle": "Erro",
|
"DE.Controllers.Main.criticalErrorTitle": "Erro",
|
||||||
"DE.Controllers.Main.downloadErrorText": "Falha ao Baixar",
|
"DE.Controllers.Main.downloadErrorText": "Transferência falhou.",
|
||||||
"DE.Controllers.Main.downloadMergeText": "Baixando...",
|
"DE.Controllers.Main.downloadMergeText": "Transferindo...",
|
||||||
"DE.Controllers.Main.downloadMergeTitle": "Baixando",
|
"DE.Controllers.Main.downloadMergeTitle": "Transferindo",
|
||||||
"DE.Controllers.Main.downloadTextText": "Baixando Documento...",
|
"DE.Controllers.Main.downloadTextText": "Transferindo documento...",
|
||||||
"DE.Controllers.Main.downloadTitleText": "Baixando Documento",
|
"DE.Controllers.Main.downloadTitleText": "Transferindo documento",
|
||||||
|
"DE.Controllers.Main.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.<br>Entre em contato com o administrador de Servidor de Documentos.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL de imagem está incorreta",
|
"DE.Controllers.Main.errorBadImageUrl": "URL de imagem está incorreta",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão ao servidor perdida. Você não pode mais editar.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão ao servidor perdida. Você não pode mais editar.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "O documento não pôde ser salvo. Verifique as configurações de conexão ou entre em contato com o administrador.<br>Quando você clicar no botão 'OK', você será solicitado à fazer o download do documento.",
|
"DE.Controllers.Main.errorConnectToServer": "O documento não pode ser gravado. Verifique as configurações de conexão ou entre em contato com o administrador.<br>Quando você clicar no botão 'OK', você será solicitado a transferir o documento.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Erro externo. <br> Erro de conexão do banco de dados. Entre em contato com o suporte.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Erro externo. <br> Erro de conexão do banco de dados. Entre em contato com o suporte.",
|
||||||
|
"DE.Controllers.Main.errorDataEncrypted": "Alteração criptografadas foram recebidas, e não podem ser decifradas.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Intervalo de dados incorreto.",
|
"DE.Controllers.Main.errorDataRange": "Intervalo de dados incorreto.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Código do Erro: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Código do Erro: %1",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "O documento é protegido por senha.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro. <br> Use a opção 'Transferir' para gravar a cópia de backup do arquivo em seu computador.",
|
||||||
|
"DE.Controllers.Main.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. <br> Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado",
|
"DE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Carregamento falhou",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Carregamento falhou. Por favor, selecione um arquivo diferente.",
|
||||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Mesclagem falhou.",
|
"DE.Controllers.Main.errorMailMergeSaveFile": "Mesclagem falhou.",
|
||||||
"DE.Controllers.Main.errorProcessSaveResult": "O salvamento falhou.",
|
"DE.Controllers.Main.errorProcessSaveResult": "O salvamento falhou.",
|
||||||
"DE.Controllers.Main.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
|
"DE.Controllers.Main.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
|
||||||
"DE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:<br>preço de abertura, preço máx., preço mín., preço de fechamento.",
|
"DE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:<br>preço de abertura, preço máx., preço mín., preço de fechamento.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
|
"DE.Controllers.Main.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada. <br> Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "O arquivo não pode ser acessado agora.",
|
"DE.Controllers.Main.errorUserDrop": "O arquivo não pode ser acessado agora.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "O número de usuários foi excedido",
|
"DE.Controllers.Main.errorUsersExceed": "O número de usuários foi excedido",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Perda de conexão Você ainda pode exibir o documento, mas não será capaz de fazer o download até que a conexão seja restaurada.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Conexão perdida. Você ainda pode exibir o documento, <br> mas não poderá transferir o arquivo até que a conexão seja restaurada e a página recarregada.",
|
||||||
"DE.Controllers.Main.leavePageText": "Você tem alterações não salvas neste documento. Clique em \"Ficar nesta Página\" para aguardar o salvamento automático do documento. Clique em \"Sair desta página\" para descartar as alterações não salvas.",
|
"DE.Controllers.Main.leavePageText": "Há alterações não gravadas neste documento. Clique em 'Ficar nesta Página' para aguardar o salvamento automático do documento. Clique em 'Sair desta página' para descartar as alterações não gravadas.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Carregando dados...",
|
"DE.Controllers.Main.loadFontsTextText": "Carregando dados...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Carregando dados",
|
"DE.Controllers.Main.loadFontsTitleText": "Carregando dados",
|
||||||
"DE.Controllers.Main.loadFontTextText": "Carregando dados...",
|
"DE.Controllers.Main.loadFontTextText": "Carregando dados...",
|
||||||
|
@ -88,11 +183,12 @@
|
||||||
"DE.Controllers.Main.openTitleText": "Abrindo documento",
|
"DE.Controllers.Main.openTitleText": "Abrindo documento",
|
||||||
"DE.Controllers.Main.printTextText": "Imprimindo documento...",
|
"DE.Controllers.Main.printTextText": "Imprimindo documento...",
|
||||||
"DE.Controllers.Main.printTitleText": "Imprimindo documento",
|
"DE.Controllers.Main.printTitleText": "Imprimindo documento",
|
||||||
"DE.Controllers.Main.saveErrorText": " Ocorreu um erro ao gravar o arquivo",
|
"DE.Controllers.Main.saveErrorText": "Ocorreu um erro ao salvar o arquivo",
|
||||||
"DE.Controllers.Main.savePreparingText": "Preparando para salvar",
|
"DE.Controllers.Main.savePreparingText": "Preparando para gravar",
|
||||||
"DE.Controllers.Main.savePreparingTitle": "Preparando para salvar. Aguarde...",
|
"DE.Controllers.Main.savePreparingTitle": "Preparando para gravar. Aguarde...",
|
||||||
"DE.Controllers.Main.saveTextText": "Salvando documento...",
|
"DE.Controllers.Main.saveTextText": "Salvando documento...",
|
||||||
"DE.Controllers.Main.saveTitleText": "Salvando documento",
|
"DE.Controllers.Main.saveTitleText": "Salvando documento",
|
||||||
|
"DE.Controllers.Main.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.",
|
||||||
"DE.Controllers.Main.sendMergeText": "Enviando mesclar...",
|
"DE.Controllers.Main.sendMergeText": "Enviando mesclar...",
|
||||||
"DE.Controllers.Main.sendMergeTitle": "Enviando Mesclar",
|
"DE.Controllers.Main.sendMergeTitle": "Enviando Mesclar",
|
||||||
"DE.Controllers.Main.splitDividerErrorText": "O número de linhas deve ser um divisor de %1",
|
"DE.Controllers.Main.splitDividerErrorText": "O número de linhas deve ser um divisor de %1",
|
||||||
|
@ -104,10 +200,12 @@
|
||||||
"DE.Controllers.Main.textCancel": "Cancelar",
|
"DE.Controllers.Main.textCancel": "Cancelar",
|
||||||
"DE.Controllers.Main.textClose": "Encerrar",
|
"DE.Controllers.Main.textClose": "Encerrar",
|
||||||
"DE.Controllers.Main.textContactUs": "Contate as vendas",
|
"DE.Controllers.Main.textContactUs": "Contate as vendas",
|
||||||
|
"DE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador. <br> Por favor, contate o Departamento de Vendas para fazer cotação.",
|
||||||
"DE.Controllers.Main.textDone": "Concluído",
|
"DE.Controllers.Main.textDone": "Concluído",
|
||||||
"DE.Controllers.Main.textLoadingDocument": "Carregando documento",
|
"DE.Controllers.Main.textLoadingDocument": "Carregando documento",
|
||||||
"DE.Controllers.Main.textNoLicenseTitle": "Versão open source do ONLYOFFICE",
|
"DE.Controllers.Main.textNoLicenseTitle": "%1 Limitação de conexão",
|
||||||
"DE.Controllers.Main.textOK": "OK",
|
"DE.Controllers.Main.textOK": "OK",
|
||||||
|
"DE.Controllers.Main.textPaidFeature": "Recurso pago",
|
||||||
"DE.Controllers.Main.textPassword": "Senha",
|
"DE.Controllers.Main.textPassword": "Senha",
|
||||||
"DE.Controllers.Main.textPreloader": "Carregando...",
|
"DE.Controllers.Main.textPreloader": "Carregando...",
|
||||||
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido",
|
"DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido",
|
||||||
|
@ -118,7 +216,11 @@
|
||||||
"DE.Controllers.Main.txtArt": "Seu texto aqui",
|
"DE.Controllers.Main.txtArt": "Seu texto aqui",
|
||||||
"DE.Controllers.Main.txtDiagramTitle": "Título do Gráfico",
|
"DE.Controllers.Main.txtDiagramTitle": "Título do Gráfico",
|
||||||
"DE.Controllers.Main.txtEditingMode": "Definir modo de edição...",
|
"DE.Controllers.Main.txtEditingMode": "Definir modo de edição...",
|
||||||
|
"DE.Controllers.Main.txtFooter": "Rodapé",
|
||||||
|
"DE.Controllers.Main.txtHeader": "Cabeçalho",
|
||||||
|
"DE.Controllers.Main.txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.",
|
||||||
"DE.Controllers.Main.txtSeries": "Série",
|
"DE.Controllers.Main.txtSeries": "Série",
|
||||||
|
"DE.Controllers.Main.txtStyle_footnote_text": "Texto de nota de rodapé",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_1": "Cabeçalho 1",
|
"DE.Controllers.Main.txtStyle_Heading_1": "Cabeçalho 1",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_2": "Cabeçalho 2",
|
"DE.Controllers.Main.txtStyle_Heading_2": "Cabeçalho 2",
|
||||||
"DE.Controllers.Main.txtStyle_Heading_3": "Cabeçalho 3",
|
"DE.Controllers.Main.txtStyle_Heading_3": "Cabeçalho 3",
|
||||||
|
@ -145,8 +247,11 @@
|
||||||
"DE.Controllers.Main.uploadImageTextText": "Carregando imagem...",
|
"DE.Controllers.Main.uploadImageTextText": "Carregando imagem...",
|
||||||
"DE.Controllers.Main.uploadImageTitleText": "Carregando imagem",
|
"DE.Controllers.Main.uploadImageTitleText": "Carregando imagem",
|
||||||
"DE.Controllers.Main.waitText": "Aguarde...",
|
"DE.Controllers.Main.waitText": "Aguarde...",
|
||||||
|
"DE.Controllers.Main.warnLicenseExceeded": "O número de conexões concomitantes ao Servidor de Documentos foi excedido e o documento será aberto apenas para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||||
"DE.Controllers.Main.warnLicenseExp": "Sua licença expirou.<br>Atualize sua licença e atualize a página.",
|
"DE.Controllers.Main.warnLicenseExp": "Sua licença expirou.<br>Atualize sua licença e atualize a página.",
|
||||||
|
"DE.Controllers.Main.warnLicenseUsersExceeded": "O número de usuários concomitantes foi excedido e o documento será aberto somente para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||||
"DE.Controllers.Main.warnNoLicense": "Você está usando uma versão de código aberto do %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez).<br>Se você precisar de mais, considere a compra de uma licença comercial.",
|
"DE.Controllers.Main.warnNoLicense": "Você está usando uma versão de código aberto do %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez).<br>Se você precisar de mais, considere a compra de uma licença comercial.",
|
||||||
|
"DE.Controllers.Main.warnNoLicenseUsers": "Esta versão de %1 editores tem limitações para usuários concomitantes. <br> Se você precisar de mais, por favor, considere comprar uma licença comercial.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
"DE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
||||||
"DE.Controllers.Search.textNoTextFound": "Texto não encontrado",
|
"DE.Controllers.Search.textNoTextFound": "Texto não encontrado",
|
||||||
"DE.Controllers.Search.textReplaceAll": "Substituir tudo",
|
"DE.Controllers.Search.textReplaceAll": "Substituir tudo",
|
||||||
|
@ -154,7 +259,8 @@
|
||||||
"DE.Controllers.Settings.txtLoading": "Carregando...",
|
"DE.Controllers.Settings.txtLoading": "Carregando...",
|
||||||
"DE.Controllers.Settings.unknownText": "Desconhecido",
|
"DE.Controllers.Settings.unknownText": "Desconhecido",
|
||||||
"DE.Controllers.Settings.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos, exceto o texto serão perdidos. <br> Tem certeza que deseja continuar?",
|
"DE.Controllers.Settings.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos, exceto o texto serão perdidos. <br> Tem certeza que deseja continuar?",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Você tem alterações não salvas neste documento. Clique em \"Ficar nesta Página\" para aguardar o salvamento automático do documento. Clique em \"Sair desta página\" para descartar as alterações não salvas.",
|
"DE.Controllers.Settings.warnDownloadAsRTF": "Se você gravar neste formato, algumas formatações podem ser perdidas.<br>Você tem certeza que deseja continuar?",
|
||||||
|
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Há alterações não gravadas neste documento. Clique em 'Ficar nesta Página' para aguardar o salvamento automático do documento. Clique em 'Sair desta página' para descartar as alterações não gravadas.",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Você saiu do aplicativo",
|
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Você saiu do aplicativo",
|
||||||
"DE.Controllers.Toolbar.leaveButtonText": "Sair desta página",
|
"DE.Controllers.Toolbar.leaveButtonText": "Sair desta página",
|
||||||
"DE.Controllers.Toolbar.stayButtonText": "Ficar nesta página",
|
"DE.Controllers.Toolbar.stayButtonText": "Ficar nesta página",
|
||||||
|
@ -174,10 +280,14 @@
|
||||||
"DE.Views.AddOther.textCurrentPos": "Posição Atual",
|
"DE.Views.AddOther.textCurrentPos": "Posição Atual",
|
||||||
"DE.Views.AddOther.textDisplay": "Exibir",
|
"DE.Views.AddOther.textDisplay": "Exibir",
|
||||||
"DE.Views.AddOther.textEvenPage": "Página par",
|
"DE.Views.AddOther.textEvenPage": "Página par",
|
||||||
|
"DE.Views.AddOther.textFootnote": "Nota de rodapé",
|
||||||
|
"DE.Views.AddOther.textFormat": "Formatar",
|
||||||
"DE.Views.AddOther.textInsert": "Inserir",
|
"DE.Views.AddOther.textInsert": "Inserir",
|
||||||
|
"DE.Views.AddOther.textInsertFootnote": "Inserir nota de rodapé",
|
||||||
"DE.Views.AddOther.textLeftBottom": "Parte inferior esquerda",
|
"DE.Views.AddOther.textLeftBottom": "Parte inferior esquerda",
|
||||||
"DE.Views.AddOther.textLeftTop": "Parte superior esquerda",
|
"DE.Views.AddOther.textLeftTop": "Parte superior esquerda",
|
||||||
"DE.Views.AddOther.textLink": "Link",
|
"DE.Views.AddOther.textLink": "Link",
|
||||||
|
"DE.Views.AddOther.textLocation": "Localização",
|
||||||
"DE.Views.AddOther.textNextPage": "Próxima página",
|
"DE.Views.AddOther.textNextPage": "Próxima página",
|
||||||
"DE.Views.AddOther.textOddPage": "Página ímpar",
|
"DE.Views.AddOther.textOddPage": "Página ímpar",
|
||||||
"DE.Views.AddOther.textPageBreak": "Quebra de página",
|
"DE.Views.AddOther.textPageBreak": "Quebra de página",
|
||||||
|
@ -186,13 +296,16 @@
|
||||||
"DE.Views.AddOther.textRightBottom": "Parte inferior direita",
|
"DE.Views.AddOther.textRightBottom": "Parte inferior direita",
|
||||||
"DE.Views.AddOther.textRightTop": "Parte superior direita",
|
"DE.Views.AddOther.textRightTop": "Parte superior direita",
|
||||||
"DE.Views.AddOther.textSectionBreak": "Quebra de seção",
|
"DE.Views.AddOther.textSectionBreak": "Quebra de seção",
|
||||||
|
"DE.Views.AddOther.textStartFrom": "Começar em",
|
||||||
"DE.Views.AddOther.textTip": "Dica de tela",
|
"DE.Views.AddOther.textTip": "Dica de tela",
|
||||||
|
"DE.Views.EditChart.textAddCustomColor": "Adicionar Cor Personalizada",
|
||||||
"DE.Views.EditChart.textAlign": "Alinhar",
|
"DE.Views.EditChart.textAlign": "Alinhar",
|
||||||
"DE.Views.EditChart.textBack": "Voltar",
|
"DE.Views.EditChart.textBack": "Voltar",
|
||||||
"DE.Views.EditChart.textBackward": "Mover para trás",
|
"DE.Views.EditChart.textBackward": "Mover para trás",
|
||||||
"DE.Views.EditChart.textBehind": "Atrás",
|
"DE.Views.EditChart.textBehind": "Atrás",
|
||||||
"DE.Views.EditChart.textBorder": "Atrás",
|
"DE.Views.EditChart.textBorder": "Atrás",
|
||||||
"DE.Views.EditChart.textColor": "Cor",
|
"DE.Views.EditChart.textColor": "Cor",
|
||||||
|
"DE.Views.EditChart.textCustomColor": "Cor personalizada",
|
||||||
"DE.Views.EditChart.textDistanceText": "Distância do Texto",
|
"DE.Views.EditChart.textDistanceText": "Distância do Texto",
|
||||||
"DE.Views.EditChart.textFill": "Preencher",
|
"DE.Views.EditChart.textFill": "Preencher",
|
||||||
"DE.Views.EditChart.textForward": "Mover para frente",
|
"DE.Views.EditChart.textForward": "Mover para frente",
|
||||||
|
@ -212,6 +325,12 @@
|
||||||
"DE.Views.EditChart.textTopBottom": "Parte superior e inferior",
|
"DE.Views.EditChart.textTopBottom": "Parte superior e inferior",
|
||||||
"DE.Views.EditChart.textType": "Tipo",
|
"DE.Views.EditChart.textType": "Tipo",
|
||||||
"DE.Views.EditChart.textWrap": "Encapsulamento",
|
"DE.Views.EditChart.textWrap": "Encapsulamento",
|
||||||
|
"DE.Views.EditHeader.textDiffFirst": "Diferente na primeira página",
|
||||||
|
"DE.Views.EditHeader.textDiffOdd": "Páginas pares e ímpares diferentes",
|
||||||
|
"DE.Views.EditHeader.textFrom": "Começar em",
|
||||||
|
"DE.Views.EditHeader.textPageNumbering": "Numeração da página",
|
||||||
|
"DE.Views.EditHeader.textPrev": "Continuar da seção anterior",
|
||||||
|
"DE.Views.EditHeader.textSameAs": "Vincular a Anterior",
|
||||||
"DE.Views.EditHyperlink.textDisplay": "Exibir",
|
"DE.Views.EditHyperlink.textDisplay": "Exibir",
|
||||||
"DE.Views.EditHyperlink.textEdit": "Editar Link",
|
"DE.Views.EditHyperlink.textEdit": "Editar Link",
|
||||||
"DE.Views.EditHyperlink.textLink": "Link",
|
"DE.Views.EditHyperlink.textLink": "Link",
|
||||||
|
@ -222,7 +341,7 @@
|
||||||
"DE.Views.EditImage.textBack": "Voltar",
|
"DE.Views.EditImage.textBack": "Voltar",
|
||||||
"DE.Views.EditImage.textBackward": "Mover para trás",
|
"DE.Views.EditImage.textBackward": "Mover para trás",
|
||||||
"DE.Views.EditImage.textBehind": "Atrás",
|
"DE.Views.EditImage.textBehind": "Atrás",
|
||||||
"DE.Views.EditImage.textDefault": "Tamanho Padrão",
|
"DE.Views.EditImage.textDefault": "Tamanho Real",
|
||||||
"DE.Views.EditImage.textDistanceText": "Distância do Texto",
|
"DE.Views.EditImage.textDistanceText": "Distância do Texto",
|
||||||
"DE.Views.EditImage.textForward": "Mover para frente",
|
"DE.Views.EditImage.textForward": "Mover para frente",
|
||||||
"DE.Views.EditImage.textFromLibrary": "Imagem da biblioteca",
|
"DE.Views.EditImage.textFromLibrary": "Imagem da biblioteca",
|
||||||
|
@ -244,6 +363,7 @@
|
||||||
"DE.Views.EditImage.textToForeground": "Trazer para Primeiro Plano",
|
"DE.Views.EditImage.textToForeground": "Trazer para Primeiro Plano",
|
||||||
"DE.Views.EditImage.textTopBottom": "Parte superior e inferior",
|
"DE.Views.EditImage.textTopBottom": "Parte superior e inferior",
|
||||||
"DE.Views.EditImage.textWrap": "Encapsulamento",
|
"DE.Views.EditImage.textWrap": "Encapsulamento",
|
||||||
|
"DE.Views.EditParagraph.textAddCustomColor": "Adicionar Cor Personalizada",
|
||||||
"DE.Views.EditParagraph.textAdvanced": "Avançado",
|
"DE.Views.EditParagraph.textAdvanced": "Avançado",
|
||||||
"DE.Views.EditParagraph.textAdvSettings": "Configurações avançadas",
|
"DE.Views.EditParagraph.textAdvSettings": "Configurações avançadas",
|
||||||
"DE.Views.EditParagraph.textAfter": "Depois",
|
"DE.Views.EditParagraph.textAfter": "Depois",
|
||||||
|
@ -251,6 +371,8 @@
|
||||||
"DE.Views.EditParagraph.textBack": "Voltar",
|
"DE.Views.EditParagraph.textBack": "Voltar",
|
||||||
"DE.Views.EditParagraph.textBackground": "Plano de fundo",
|
"DE.Views.EditParagraph.textBackground": "Plano de fundo",
|
||||||
"DE.Views.EditParagraph.textBefore": "Antes",
|
"DE.Views.EditParagraph.textBefore": "Antes",
|
||||||
|
"DE.Views.EditParagraph.textCustomColor": "Cor personalizada",
|
||||||
|
"DE.Views.EditParagraph.textFirstLine": "Primeira linha",
|
||||||
"DE.Views.EditParagraph.textFromText": "Distância do Texto",
|
"DE.Views.EditParagraph.textFromText": "Distância do Texto",
|
||||||
"DE.Views.EditParagraph.textKeepLines": "Manter as linhas juntas",
|
"DE.Views.EditParagraph.textKeepLines": "Manter as linhas juntas",
|
||||||
"DE.Views.EditParagraph.textKeepNext": "Manter com o próximo",
|
"DE.Views.EditParagraph.textKeepNext": "Manter com o próximo",
|
||||||
|
@ -258,12 +380,14 @@
|
||||||
"DE.Views.EditParagraph.textPageBreak": "Quebra de página antes",
|
"DE.Views.EditParagraph.textPageBreak": "Quebra de página antes",
|
||||||
"DE.Views.EditParagraph.textPrgStyles": "Estilos do parágrafo",
|
"DE.Views.EditParagraph.textPrgStyles": "Estilos do parágrafo",
|
||||||
"DE.Views.EditParagraph.textSpaceBetween": "Espaço entre parágrafos",
|
"DE.Views.EditParagraph.textSpaceBetween": "Espaço entre parágrafos",
|
||||||
|
"DE.Views.EditShape.textAddCustomColor": "Adicionar Cor Personalizada",
|
||||||
"DE.Views.EditShape.textAlign": "Alinhar",
|
"DE.Views.EditShape.textAlign": "Alinhar",
|
||||||
"DE.Views.EditShape.textBack": "Voltar",
|
"DE.Views.EditShape.textBack": "Voltar",
|
||||||
"DE.Views.EditShape.textBackward": "Mover para trás",
|
"DE.Views.EditShape.textBackward": "Mover para trás",
|
||||||
"DE.Views.EditShape.textBehind": "Atrás",
|
"DE.Views.EditShape.textBehind": "Atrás",
|
||||||
"DE.Views.EditShape.textBorder": "Limite",
|
"DE.Views.EditShape.textBorder": "Limite",
|
||||||
"DE.Views.EditShape.textColor": "Cor",
|
"DE.Views.EditShape.textColor": "Cor",
|
||||||
|
"DE.Views.EditShape.textCustomColor": "Cor personalizada",
|
||||||
"DE.Views.EditShape.textEffects": "Efeitos",
|
"DE.Views.EditShape.textEffects": "Efeitos",
|
||||||
"DE.Views.EditShape.textFill": "Preencher",
|
"DE.Views.EditShape.textFill": "Preencher",
|
||||||
"DE.Views.EditShape.textForward": "Mover para frente",
|
"DE.Views.EditShape.textForward": "Mover para frente",
|
||||||
|
@ -285,6 +409,7 @@
|
||||||
"DE.Views.EditShape.textTopAndBottom": "Parte superior e inferior",
|
"DE.Views.EditShape.textTopAndBottom": "Parte superior e inferior",
|
||||||
"DE.Views.EditShape.textWithText": "Mover com texto",
|
"DE.Views.EditShape.textWithText": "Mover com texto",
|
||||||
"DE.Views.EditShape.textWrap": "Encapsulamento",
|
"DE.Views.EditShape.textWrap": "Encapsulamento",
|
||||||
|
"DE.Views.EditTable.textAddCustomColor": "Adicionar Cor Personalizada",
|
||||||
"DE.Views.EditTable.textAlign": "Alinhar",
|
"DE.Views.EditTable.textAlign": "Alinhar",
|
||||||
"DE.Views.EditTable.textBack": "Voltar",
|
"DE.Views.EditTable.textBack": "Voltar",
|
||||||
"DE.Views.EditTable.textBandedColumn": "Unir Colunas",
|
"DE.Views.EditTable.textBandedColumn": "Unir Colunas",
|
||||||
|
@ -292,6 +417,7 @@
|
||||||
"DE.Views.EditTable.textBorder": "Limite",
|
"DE.Views.EditTable.textBorder": "Limite",
|
||||||
"DE.Views.EditTable.textCellMargins": "Margens das células",
|
"DE.Views.EditTable.textCellMargins": "Margens das células",
|
||||||
"DE.Views.EditTable.textColor": "Cor",
|
"DE.Views.EditTable.textColor": "Cor",
|
||||||
|
"DE.Views.EditTable.textCustomColor": "Cor personalizada",
|
||||||
"DE.Views.EditTable.textFill": "Preencher",
|
"DE.Views.EditTable.textFill": "Preencher",
|
||||||
"DE.Views.EditTable.textFirstColumn": "Primeira Coluna",
|
"DE.Views.EditTable.textFirstColumn": "Primeira Coluna",
|
||||||
"DE.Views.EditTable.textFlow": "Fluxo",
|
"DE.Views.EditTable.textFlow": "Fluxo",
|
||||||
|
@ -310,12 +436,18 @@
|
||||||
"DE.Views.EditTable.textTotalRow": "Total de linhas",
|
"DE.Views.EditTable.textTotalRow": "Total de linhas",
|
||||||
"DE.Views.EditTable.textWithText": "Mover com texto",
|
"DE.Views.EditTable.textWithText": "Mover com texto",
|
||||||
"DE.Views.EditTable.textWrap": "Encapsulamento",
|
"DE.Views.EditTable.textWrap": "Encapsulamento",
|
||||||
|
"DE.Views.EditText.textAddCustomColor": "Adicionar Cor Personalizada",
|
||||||
"DE.Views.EditText.textAdditional": "Adicional",
|
"DE.Views.EditText.textAdditional": "Adicional",
|
||||||
"DE.Views.EditText.textAdditionalFormat": "Formatação adicional",
|
"DE.Views.EditText.textAdditionalFormat": "Formatação adicional",
|
||||||
"DE.Views.EditText.textAllCaps": "Todos os Caps",
|
"DE.Views.EditText.textAllCaps": "Todos os Caps",
|
||||||
"DE.Views.EditText.textAutomatic": "Automático",
|
"DE.Views.EditText.textAutomatic": "Automático",
|
||||||
"DE.Views.EditText.textBack": "Voltar",
|
"DE.Views.EditText.textBack": "Voltar",
|
||||||
"DE.Views.EditText.textBullets": "Marcadores",
|
"DE.Views.EditText.textBullets": "Marcadores",
|
||||||
|
"DE.Views.EditText.textCharacterBold": "B",
|
||||||
|
"DE.Views.EditText.textCharacterItalic": "I",
|
||||||
|
"DE.Views.EditText.textCharacterStrikethrough": "S",
|
||||||
|
"DE.Views.EditText.textCharacterUnderline": "U",
|
||||||
|
"DE.Views.EditText.textCustomColor": "Cor personalizada",
|
||||||
"DE.Views.EditText.textDblStrikethrough": "Duplo Tachado",
|
"DE.Views.EditText.textDblStrikethrough": "Duplo Tachado",
|
||||||
"DE.Views.EditText.textDblSuperscript": "Sobrescrito",
|
"DE.Views.EditText.textDblSuperscript": "Sobrescrito",
|
||||||
"DE.Views.EditText.textFontColor": "Cor da fonte",
|
"DE.Views.EditText.textFontColor": "Cor da fonte",
|
||||||
|
@ -340,37 +472,67 @@
|
||||||
"DE.Views.Search.textSearch": "Pesquisar",
|
"DE.Views.Search.textSearch": "Pesquisar",
|
||||||
"DE.Views.Settings.textAbout": "Sobre",
|
"DE.Views.Settings.textAbout": "Sobre",
|
||||||
"DE.Views.Settings.textAddress": "endereço",
|
"DE.Views.Settings.textAddress": "endereço",
|
||||||
|
"DE.Views.Settings.textAdvancedSettings": "Configurações de Aplicação",
|
||||||
|
"DE.Views.Settings.textApplication": "Aplicação",
|
||||||
"DE.Views.Settings.textAuthor": "Autor",
|
"DE.Views.Settings.textAuthor": "Autor",
|
||||||
"DE.Views.Settings.textBack": "Voltar",
|
"DE.Views.Settings.textBack": "Voltar",
|
||||||
|
"DE.Views.Settings.textBottom": "Inferior",
|
||||||
|
"DE.Views.Settings.textCentimeter": "Centímetro",
|
||||||
|
"DE.Views.Settings.textCollaboration": "Colaboração",
|
||||||
|
"DE.Views.Settings.textColorSchemes": "Esquemas de cor",
|
||||||
|
"DE.Views.Settings.textComment": "Comentário",
|
||||||
|
"DE.Views.Settings.textCommentingDisplay": "Tela de comentários",
|
||||||
|
"DE.Views.Settings.textCreated": "Criado",
|
||||||
"DE.Views.Settings.textCreateDate": "Data de criação",
|
"DE.Views.Settings.textCreateDate": "Data de criação",
|
||||||
"DE.Views.Settings.textCustom": "Personalizar",
|
"DE.Views.Settings.textCustom": "Personalizar",
|
||||||
"DE.Views.Settings.textCustomSize": "Tamanho personalizado",
|
"DE.Views.Settings.textCustomSize": "Tamanho personalizado",
|
||||||
|
"DE.Views.Settings.textDisplayComments": "Comentários",
|
||||||
|
"DE.Views.Settings.textDisplayResolvedComments": "Comentários Solucionados",
|
||||||
"DE.Views.Settings.textDocInfo": "Informações do Documento",
|
"DE.Views.Settings.textDocInfo": "Informações do Documento",
|
||||||
"DE.Views.Settings.textDocTitle": "Título do Documento",
|
"DE.Views.Settings.textDocTitle": "Título do Documento",
|
||||||
"DE.Views.Settings.textDocumentFormats": "Formatos do Documento",
|
"DE.Views.Settings.textDocumentFormats": "Formatos do Documento",
|
||||||
"DE.Views.Settings.textDocumentSettings": "Definições do Documento",
|
"DE.Views.Settings.textDocumentSettings": "Definições do Documento",
|
||||||
"DE.Views.Settings.textDone": "Concluído",
|
"DE.Views.Settings.textDone": "Concluído",
|
||||||
"DE.Views.Settings.textDownload": "Baixar",
|
"DE.Views.Settings.textDownload": "Transferir",
|
||||||
"DE.Views.Settings.textDownloadAs": "Baixar Como...",
|
"DE.Views.Settings.textDownloadAs": "Transferir como...",
|
||||||
"DE.Views.Settings.textEditDoc": "Editar Documento",
|
"DE.Views.Settings.textEditDoc": "Editar Documento",
|
||||||
"DE.Views.Settings.textEmail": "e-mail",
|
"DE.Views.Settings.textEmail": "e-mail",
|
||||||
"DE.Views.Settings.textFind": "Localizar",
|
"DE.Views.Settings.textFind": "Localizar",
|
||||||
"DE.Views.Settings.textFindAndReplace": "Localizar e substituir",
|
"DE.Views.Settings.textFindAndReplace": "Localizar e substituir",
|
||||||
"DE.Views.Settings.textFormat": "Formato",
|
"DE.Views.Settings.textFormat": "Formato",
|
||||||
"DE.Views.Settings.textHelp": "Ajuda",
|
"DE.Views.Settings.textHelp": "Ajuda",
|
||||||
|
"DE.Views.Settings.textHiddenTableBorders": "Ocultar bordas da tabela",
|
||||||
|
"DE.Views.Settings.textInch": "Polegada",
|
||||||
"DE.Views.Settings.textLandscape": "Paisagem",
|
"DE.Views.Settings.textLandscape": "Paisagem",
|
||||||
|
"DE.Views.Settings.textLastModified": "Última modificação",
|
||||||
|
"DE.Views.Settings.textLastModifiedBy": "Última Modificação Por",
|
||||||
|
"DE.Views.Settings.textLeft": "Esquerda",
|
||||||
"DE.Views.Settings.textLoading": "Carregando...",
|
"DE.Views.Settings.textLoading": "Carregando...",
|
||||||
|
"DE.Views.Settings.textLocation": "Localização",
|
||||||
|
"DE.Views.Settings.textMargins": "Margens",
|
||||||
|
"DE.Views.Settings.textNoCharacters": "Caracteres não imprimíveis",
|
||||||
"DE.Views.Settings.textOrientation": "Orientação",
|
"DE.Views.Settings.textOrientation": "Orientação",
|
||||||
|
"DE.Views.Settings.textOwner": "Proprietário",
|
||||||
"DE.Views.Settings.textPages": "Páginas",
|
"DE.Views.Settings.textPages": "Páginas",
|
||||||
"DE.Views.Settings.textParagraphs": "Parágrafos",
|
"DE.Views.Settings.textParagraphs": "Parágrafos",
|
||||||
|
"DE.Views.Settings.textPoint": "Ponto",
|
||||||
"DE.Views.Settings.textPortrait": "Retrato",
|
"DE.Views.Settings.textPortrait": "Retrato",
|
||||||
"DE.Views.Settings.textPoweredBy": "Desenvolvido por",
|
"DE.Views.Settings.textPoweredBy": "Desenvolvido por",
|
||||||
|
"DE.Views.Settings.textPrint": "Imprimir",
|
||||||
"DE.Views.Settings.textReader": "Modo de leitura",
|
"DE.Views.Settings.textReader": "Modo de leitura",
|
||||||
|
"DE.Views.Settings.textReview": "Controlar alterações",
|
||||||
|
"DE.Views.Settings.textRight": "Direita",
|
||||||
"DE.Views.Settings.textSettings": "Configurações",
|
"DE.Views.Settings.textSettings": "Configurações",
|
||||||
"DE.Views.Settings.textSpaces": "Espaços",
|
"DE.Views.Settings.textSpaces": "Espaços",
|
||||||
|
"DE.Views.Settings.textSpellcheck": "Verificação ortográfica",
|
||||||
"DE.Views.Settings.textStatistic": "Estatística",
|
"DE.Views.Settings.textStatistic": "Estatística",
|
||||||
|
"DE.Views.Settings.textSubject": "Assunto",
|
||||||
"DE.Views.Settings.textSymbols": "Símbolos",
|
"DE.Views.Settings.textSymbols": "Símbolos",
|
||||||
"DE.Views.Settings.textTel": "Tel.",
|
"DE.Views.Settings.textTel": "Tel.",
|
||||||
|
"DE.Views.Settings.textTitle": "Titulo",
|
||||||
|
"DE.Views.Settings.textTop": "Parte superior",
|
||||||
|
"DE.Views.Settings.textUnitOfMeasurement": "Unidade de medida",
|
||||||
|
"DE.Views.Settings.textUploaded": "Carregado",
|
||||||
"DE.Views.Settings.textVersion": "Versão",
|
"DE.Views.Settings.textVersion": "Versão",
|
||||||
"DE.Views.Settings.textWords": "Palavras",
|
"DE.Views.Settings.textWords": "Palavras",
|
||||||
"DE.Views.Settings.unknownText": "Desconhecido",
|
"DE.Views.Settings.unknownText": "Desconhecido",
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
"DE.Controllers.AddTable.textColumns": "Столбцы",
|
"DE.Controllers.AddTable.textColumns": "Столбцы",
|
||||||
"DE.Controllers.AddTable.textRows": "Строки",
|
"DE.Controllers.AddTable.textRows": "Строки",
|
||||||
"DE.Controllers.AddTable.textTableSize": "Размер таблицы",
|
"DE.Controllers.AddTable.textTableSize": "Размер таблицы",
|
||||||
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Операции копирования, вырезания и вставки с помощью контекстного меню будут выполняться только в текущем файле. Нельзя копировать данные в другие приложения или вставлять данные из них.",
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "Операции копирования, вырезания и вставки с помощью контекстного меню будут выполняться только в текущем файле.",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "Добавить ссылку",
|
"DE.Controllers.DocumentHolder.menuAddLink": "Добавить ссылку",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "Копировать",
|
"DE.Controllers.DocumentHolder.menuCopy": "Копировать",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "Вырезать",
|
"DE.Controllers.DocumentHolder.menuCut": "Вырезать",
|
||||||
|
@ -108,6 +108,7 @@
|
||||||
"DE.Controllers.DocumentHolder.textCancel": "Отмена",
|
"DE.Controllers.DocumentHolder.textCancel": "Отмена",
|
||||||
"DE.Controllers.DocumentHolder.textColumns": "Колонки",
|
"DE.Controllers.DocumentHolder.textColumns": "Колонки",
|
||||||
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Операции копирования, вырезания и вставки",
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Операции копирования, вырезания и вставки",
|
||||||
|
"DE.Controllers.DocumentHolder.textDoNotShowAgain": "Больше не показывать",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "Гость",
|
"DE.Controllers.DocumentHolder.textGuest": "Гость",
|
||||||
"DE.Controllers.DocumentHolder.textRows": "Строки",
|
"DE.Controllers.DocumentHolder.textRows": "Строки",
|
||||||
"DE.Controllers.EditContainer.textChart": "Диаграмма",
|
"DE.Controllers.EditContainer.textChart": "Диаграмма",
|
||||||
|
|
340
apps/documenteditor/mobile/locale/sv.json
Normal file
|
@ -0,0 +1,340 @@
|
||||||
|
{
|
||||||
|
"Common.Controllers.Collaboration.textAuto": "auto",
|
||||||
|
"Common.Controllers.Collaboration.textBaseline": "Baslinje",
|
||||||
|
"Common.Controllers.Collaboration.textBold": "Fet",
|
||||||
|
"Common.Controllers.Collaboration.textCaps": "Alla versaler",
|
||||||
|
"Common.Controllers.Collaboration.textCenter": "Centrera",
|
||||||
|
"Common.Controllers.Collaboration.textChart": "Diagram",
|
||||||
|
"Common.Controllers.Collaboration.textColor": "Teckensnittsfärg",
|
||||||
|
"Common.Controllers.Collaboration.textContextual": "Lägg inte till mellanrum mellan stycken med samma formatmall",
|
||||||
|
"Common.Controllers.Collaboration.textDeleted": "<b>Raderad:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textDStrikeout": "Dubbel överstrykning",
|
||||||
|
"Common.Controllers.Collaboration.textEditUser": "Dokumentet redigeras för närvarande av flera användare.",
|
||||||
|
"Common.Controllers.Collaboration.textEquation": "Ekvation",
|
||||||
|
"Common.Controllers.Collaboration.textExact": "exakt",
|
||||||
|
"Common.Controllers.Collaboration.textFirstLine": "Första raden",
|
||||||
|
"Common.Controllers.Collaboration.textFormatted": "Formaterad",
|
||||||
|
"Common.Controllers.Collaboration.textHighlight": "Markera färg",
|
||||||
|
"Common.Controllers.Collaboration.textImage": "Bild",
|
||||||
|
"Common.Controllers.Collaboration.textIndentLeft": "Indrag vänster",
|
||||||
|
"Common.Controllers.Collaboration.textIndentRight": "Indrag höger",
|
||||||
|
"Common.Controllers.Collaboration.textInserted": "<b>Infogad:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textItalic": "Kursiv",
|
||||||
|
"Common.Controllers.Collaboration.textJustify": "Justera",
|
||||||
|
"Common.Controllers.Collaboration.textKeepLines": "Håll ihop rader",
|
||||||
|
"Common.Controllers.Collaboration.textKeepNext": "Behåll med nästa",
|
||||||
|
"Common.Controllers.Collaboration.textLeft": "Vänsterjustera",
|
||||||
|
"Common.Controllers.Collaboration.textLineSpacing": "Radavstånd:",
|
||||||
|
"Common.Controllers.Collaboration.textNoContextual": "Lägg till intervall mellan punkterna i samma stil",
|
||||||
|
"Common.Controllers.Collaboration.textNoKeepLines": "Håll inte ihop raderna",
|
||||||
|
"Common.Controllers.Collaboration.textNoKeepNext": "Behåll inte med nästa",
|
||||||
|
"Common.Controllers.Collaboration.textNot": "Inte",
|
||||||
|
"Common.Controllers.Collaboration.textNum": "Ändra numrering",
|
||||||
|
"Common.Controllers.Collaboration.textParaDeleted": "<b>Stycke raderat</b> ",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Nedflyttade:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Uppflyttade:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Flyttade:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textRight": "Högerjustera",
|
||||||
|
"Common.Controllers.Collaboration.textShape": "Form",
|
||||||
|
"Common.Controllers.Collaboration.textShd": "Bakgrundsfärg",
|
||||||
|
"Common.Controllers.Collaboration.textSmallCaps": "Gemener",
|
||||||
|
"Common.Controllers.Collaboration.textSpacing": "Avstånd",
|
||||||
|
"Common.Controllers.Collaboration.textSpacingAfter": "Avstånd efter",
|
||||||
|
"Common.Controllers.Collaboration.textSpacingBefore": "Avstånd före",
|
||||||
|
"Common.Controllers.Collaboration.textTableChanged": "<b>Tabellinställningar ändrade</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Tabellrader raderade<b/>",
|
||||||
|
"Common.Controllers.Collaboration.textTabs": "Ändra tabbar",
|
||||||
|
"Common.UI.ThemeColorPalette.textCustomColors": "Anpassade färger",
|
||||||
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
|
"Common.Views.Collaboration.textAcceptAllChanges": "Acceptera alla ändringar",
|
||||||
|
"Common.Views.Collaboration.textBack": "Tillbaka",
|
||||||
|
"Common.Views.Collaboration.textCollaboration": "Samarbete",
|
||||||
|
"Common.Views.Collaboration.textDisplayMode": "Visningsläge",
|
||||||
|
"Common.Views.Collaboration.textFinal": "Slutlig",
|
||||||
|
"Common.Views.Collaboration.textMarkup": "Markering",
|
||||||
|
"Common.Views.Collaboration.textOriginal": "Original",
|
||||||
|
"Common.Views.Collaboration.textReviewing": "Granska",
|
||||||
|
"DE.Controllers.AddContainer.textImage": "Bild",
|
||||||
|
"DE.Controllers.AddContainer.textShape": "Form",
|
||||||
|
"DE.Controllers.AddOther.textBelowText": "Under texten",
|
||||||
|
"DE.Controllers.AddOther.textBottomOfPage": "Nederst på sidan",
|
||||||
|
"DE.Controllers.AddTable.textCancel": "Avbryt",
|
||||||
|
"DE.Controllers.AddTable.textColumns": "Kolumner",
|
||||||
|
"DE.Controllers.AddTable.textRows": "Rader",
|
||||||
|
"DE.Controllers.DocumentHolder.menuAddLink": "Lägg till länk",
|
||||||
|
"DE.Controllers.DocumentHolder.menuCopy": "Kopiera",
|
||||||
|
"DE.Controllers.DocumentHolder.menuCut": "Klipp ut",
|
||||||
|
"DE.Controllers.DocumentHolder.menuDelete": "Radera",
|
||||||
|
"DE.Controllers.DocumentHolder.menuDeleteTable": "Radera tabell",
|
||||||
|
"DE.Controllers.DocumentHolder.menuEdit": "Redigera",
|
||||||
|
"DE.Controllers.DocumentHolder.menuMerge": "Slå ihop celler",
|
||||||
|
"DE.Controllers.DocumentHolder.menuPaste": "Klistra in",
|
||||||
|
"DE.Controllers.DocumentHolder.menuReview": "Granska",
|
||||||
|
"DE.Controllers.DocumentHolder.sheetCancel": "Avbryt",
|
||||||
|
"DE.Controllers.DocumentHolder.textCancel": "Avbryt",
|
||||||
|
"DE.Controllers.DocumentHolder.textColumns": "Kolumner",
|
||||||
|
"DE.Controllers.DocumentHolder.textGuest": "Gäst",
|
||||||
|
"DE.Controllers.DocumentHolder.textRows": "Rader",
|
||||||
|
"DE.Controllers.EditContainer.textChart": "Diagram",
|
||||||
|
"DE.Controllers.EditContainer.textFooter": "Sidfot",
|
||||||
|
"DE.Controllers.EditContainer.textHeader": "Huvud",
|
||||||
|
"DE.Controllers.EditContainer.textHyperlink": "Hyperlänk",
|
||||||
|
"DE.Controllers.EditContainer.textImage": "Bild",
|
||||||
|
"DE.Controllers.EditContainer.textShape": "Form",
|
||||||
|
"DE.Controllers.EditText.textAuto": "Auto",
|
||||||
|
"DE.Controllers.EditText.textFonts": "Teckensnitt",
|
||||||
|
"DE.Controllers.Main.advDRMEnterPassword": "Ange ditt lösenord:",
|
||||||
|
"DE.Controllers.Main.advDRMPassword": "Lösenord",
|
||||||
|
"DE.Controllers.Main.advTxtOptions": "Välj TXT-alternativ",
|
||||||
|
"DE.Controllers.Main.applyChangesTextText": "Laddar data...",
|
||||||
|
"DE.Controllers.Main.applyChangesTitleText": "Laddar data",
|
||||||
|
"DE.Controllers.Main.closeButtonText": "Stäng fil",
|
||||||
|
"DE.Controllers.Main.convertationTimeoutText": "Omvandlingstiden har överskridits.",
|
||||||
|
"DE.Controllers.Main.criticalErrorTitle": "Fel",
|
||||||
|
"DE.Controllers.Main.downloadErrorText": "Nedladdningen misslyckades",
|
||||||
|
"DE.Controllers.Main.downloadMergeText": "Laddar ner...",
|
||||||
|
"DE.Controllers.Main.downloadMergeTitle": "Laddar ner",
|
||||||
|
"DE.Controllers.Main.downloadTextText": "Laddar ner dokumentet...",
|
||||||
|
"DE.Controllers.Main.downloadTitleText": "Laddar ner dokument",
|
||||||
|
"DE.Controllers.Main.errorBadImageUrl": "Bildens URL är felaktig",
|
||||||
|
"DE.Controllers.Main.errorDatabaseConnection": "Externt fel.<br>Databasanslutningsfel. Var snäll och kontakta support.",
|
||||||
|
"DE.Controllers.Main.errorDataEncrypted": "Krypterade ändringar har tagits emot, de kan inte avkodas.",
|
||||||
|
"DE.Controllers.Main.errorDataRange": "Felaktigt dataområde",
|
||||||
|
"DE.Controllers.Main.errorDefaultMessage": "Felkod: %1",
|
||||||
|
"DE.Controllers.Main.errorKeyExpire": "Nyckelns beskrivning har utgått",
|
||||||
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Misslyckades att ladda",
|
||||||
|
"DE.Controllers.Main.errorStockChart": "Felaktig ordningsföljd. För att bygga ett aktiediagram placerar du uppgifterna på kalkylarket i följande ordning:<br> öppningspris, maxpris, minipris, slutkurs.",
|
||||||
|
"DE.Controllers.Main.errorViewerDisconnect": "Anslutningen är förlorad. Du kan fortfarande visa dokumentet,<br>men kommer inte kunna ladda ner det till dess anslutningen återställts och sidan laddats om.",
|
||||||
|
"DE.Controllers.Main.loadFontsTextText": "Laddar data...",
|
||||||
|
"DE.Controllers.Main.loadFontsTitleText": "Laddar data",
|
||||||
|
"DE.Controllers.Main.loadFontTextText": "Laddar data...",
|
||||||
|
"DE.Controllers.Main.loadFontTitleText": "Laddar data",
|
||||||
|
"DE.Controllers.Main.loadImagesTextText": "Laddar bilder...",
|
||||||
|
"DE.Controllers.Main.loadImagesTitleText": "Laddar bilder",
|
||||||
|
"DE.Controllers.Main.loadImageTextText": "Laddar bild...",
|
||||||
|
"DE.Controllers.Main.loadImageTitleText": "Laddar bild",
|
||||||
|
"DE.Controllers.Main.loadingDocumentTextText": "Laddar dokument...",
|
||||||
|
"DE.Controllers.Main.loadingDocumentTitleText": "Laddar dokument",
|
||||||
|
"DE.Controllers.Main.mailMergeLoadFileText": "Laddar från datakälla...",
|
||||||
|
"DE.Controllers.Main.mailMergeLoadFileTitle": "Laddar från datakälla",
|
||||||
|
"DE.Controllers.Main.openErrorText": "Ett fel uppstod när filen skulle öppnas",
|
||||||
|
"DE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas",
|
||||||
|
"DE.Controllers.Main.saveTextText": "Sparar dokument...",
|
||||||
|
"DE.Controllers.Main.saveTitleText": "Sparar dokument",
|
||||||
|
"DE.Controllers.Main.textAnonymous": "Anonym",
|
||||||
|
"DE.Controllers.Main.textBack": "Tillbaka",
|
||||||
|
"DE.Controllers.Main.textCancel": "Avbryt",
|
||||||
|
"DE.Controllers.Main.textClose": "Stäng",
|
||||||
|
"DE.Controllers.Main.textContactUs": "Kontakta säljare",
|
||||||
|
"DE.Controllers.Main.textDone": "Klart",
|
||||||
|
"DE.Controllers.Main.textLoadingDocument": "Laddar dokument",
|
||||||
|
"DE.Controllers.Main.textNoLicenseTitle": "%1 anslutningsbegränsning",
|
||||||
|
"DE.Controllers.Main.textOK": "OK",
|
||||||
|
"DE.Controllers.Main.textPaidFeature": "Betald funktion",
|
||||||
|
"DE.Controllers.Main.textPassword": "Lösenord",
|
||||||
|
"DE.Controllers.Main.textPreloader": "Laddar...",
|
||||||
|
"DE.Controllers.Main.titleLicenseExp": "Licensen har gått ut",
|
||||||
|
"DE.Controllers.Main.titleServerVersion": "Editorn är uppdaterad",
|
||||||
|
"DE.Controllers.Main.txtDiagramTitle": "Diagramtitel",
|
||||||
|
"DE.Controllers.Main.txtFooter": "Sidfot",
|
||||||
|
"DE.Controllers.Main.txtHeader": "Huvud",
|
||||||
|
"DE.Controllers.Main.txtStyle_footnote_text": "Fotnotstext",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_1": "Rubrik 1",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_2": "Rubrik 2",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_3": "Rubrik 3",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_4": "Rubrik 4",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_5": "Rubrik 5",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_6": "Rubrik 6",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_7": "Rubrik 7",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_8": "Rubrik 8",
|
||||||
|
"DE.Controllers.Main.txtStyle_Heading_9": "Rubrik 9",
|
||||||
|
"DE.Controllers.Main.txtStyle_List_Paragraph": "Lista avsnitt",
|
||||||
|
"DE.Controllers.Main.txtStyle_No_Spacing": "Inget avstånd",
|
||||||
|
"DE.Controllers.Main.txtStyle_Normal": "Normal",
|
||||||
|
"DE.Controllers.Main.uploadImageSizeMessage": "Maximal bildstorlek har överskridits.",
|
||||||
|
"DE.Controllers.Search.textReplaceAll": "Ersätt alla",
|
||||||
|
"DE.Controllers.Settings.txtLoading": "Laddar...",
|
||||||
|
"DE.Controllers.Settings.warnDownloadAs": "Om du fortsätter att spara i det här formatet kommer alla funktioner utom texten att gå förlorade.<br>Är du säker på att du vill fortsätta?",
|
||||||
|
"DE.Controllers.Settings.warnDownloadAsRTF": "Om du fortsätter att spara i det här formatet kan en del av formateringen gå förlorad.<br>Är du säker på att du vill fortsätta?",
|
||||||
|
"DE.Controllers.Toolbar.leaveButtonText": "Lämna denna sidan",
|
||||||
|
"DE.Views.AddImage.textAddress": "Adress",
|
||||||
|
"DE.Views.AddImage.textBack": "Tillbaka",
|
||||||
|
"DE.Views.AddImage.textImageURL": "Bild URL",
|
||||||
|
"DE.Views.AddImage.textInsertImage": "Infoga bild",
|
||||||
|
"DE.Views.AddImage.textLinkSettings": "Länkinställningar",
|
||||||
|
"DE.Views.AddOther.textAddLink": "Lägg till länk",
|
||||||
|
"DE.Views.AddOther.textBack": "Tillbaka",
|
||||||
|
"DE.Views.AddOther.textCenterBottom": "Centrerad nederkant",
|
||||||
|
"DE.Views.AddOther.textCenterTop": "Centrerad överkant",
|
||||||
|
"DE.Views.AddOther.textColumnBreak": "Kolumnbryt",
|
||||||
|
"DE.Views.AddOther.textContPage": "Kontinuerliga sida",
|
||||||
|
"DE.Views.AddOther.textCurrentPos": "Nuvarande position",
|
||||||
|
"DE.Views.AddOther.textDisplay": "Visa",
|
||||||
|
"DE.Views.AddOther.textEvenPage": "Jämn sida",
|
||||||
|
"DE.Views.AddOther.textFootnote": "Fotnot",
|
||||||
|
"DE.Views.AddOther.textFormat": "Format",
|
||||||
|
"DE.Views.AddOther.textInsert": "Infoga",
|
||||||
|
"DE.Views.AddOther.textInsertFootnote": "Infoga fotnot",
|
||||||
|
"DE.Views.AddOther.textLeftBottom": "Vänster nederkant",
|
||||||
|
"DE.Views.AddOther.textLeftTop": "Vänster överkant",
|
||||||
|
"DE.Views.AddOther.textLink": "Länk",
|
||||||
|
"DE.Views.AddOther.textLocation": "Plats",
|
||||||
|
"DE.Views.AddOther.textOddPage": "Udda sida",
|
||||||
|
"DE.Views.EditChart.textAddCustomColor": "Lägg till anpassad färg",
|
||||||
|
"DE.Views.EditChart.textAlign": "Justera",
|
||||||
|
"DE.Views.EditChart.textBack": "Tillbaka",
|
||||||
|
"DE.Views.EditChart.textBackward": "Flytta bakåt",
|
||||||
|
"DE.Views.EditChart.textBehind": "Bakom",
|
||||||
|
"DE.Views.EditChart.textBorder": "Gräns",
|
||||||
|
"DE.Views.EditChart.textColor": "Färg",
|
||||||
|
"DE.Views.EditChart.textCustomColor": "Anpassad färg",
|
||||||
|
"DE.Views.EditChart.textDistanceText": "Avstånd från text",
|
||||||
|
"DE.Views.EditChart.textFill": "Fyll",
|
||||||
|
"DE.Views.EditChart.textForward": "Flytta framåt",
|
||||||
|
"DE.Views.EditChart.textInFront": "Längst fram",
|
||||||
|
"DE.Views.EditChart.textMoveText": "Flytta med text",
|
||||||
|
"DE.Views.EditChart.textOverlap": "Tillåt överlappning",
|
||||||
|
"DE.Views.EditChart.textSize": "Storlek",
|
||||||
|
"DE.Views.EditChart.textToForeground": "Flytta till förgrund",
|
||||||
|
"DE.Views.EditHeader.textDiffFirst": "Annan förstasida",
|
||||||
|
"DE.Views.EditHeader.textDiffOdd": "Olika udda och jämna sidor",
|
||||||
|
"DE.Views.EditHeader.textPrev": "Fortsätt från föregående",
|
||||||
|
"DE.Views.EditHeader.textSameAs": "Länk till förgående",
|
||||||
|
"DE.Views.EditHyperlink.textDisplay": "Visa",
|
||||||
|
"DE.Views.EditHyperlink.textEdit": "Redigera länk",
|
||||||
|
"DE.Views.EditHyperlink.textLink": "Länk",
|
||||||
|
"DE.Views.EditImage.textAddress": "Adress",
|
||||||
|
"DE.Views.EditImage.textAlign": "Justera",
|
||||||
|
"DE.Views.EditImage.textBack": "Tillbaka",
|
||||||
|
"DE.Views.EditImage.textBackward": "Flytta bakåt",
|
||||||
|
"DE.Views.EditImage.textBehind": "Bakom",
|
||||||
|
"DE.Views.EditImage.textDefault": "Egentlig Storlek",
|
||||||
|
"DE.Views.EditImage.textDistanceText": "Avstånd från text",
|
||||||
|
"DE.Views.EditImage.textForward": "Flytta framåt",
|
||||||
|
"DE.Views.EditImage.textImageURL": "Bild URL",
|
||||||
|
"DE.Views.EditImage.textInFront": "Längst fram",
|
||||||
|
"DE.Views.EditImage.textLinkSettings": "Länkinställningar",
|
||||||
|
"DE.Views.EditImage.textMoveText": "Flytta med text",
|
||||||
|
"DE.Views.EditImage.textOverlap": "Tillåt överlappning",
|
||||||
|
"DE.Views.EditImage.textReplace": "Ersätt",
|
||||||
|
"DE.Views.EditImage.textReplaceImg": "Ersätt bild",
|
||||||
|
"DE.Views.EditImage.textToForeground": "Flytta till förgrund",
|
||||||
|
"DE.Views.EditParagraph.textAddCustomColor": "Lägg till anpassad färg",
|
||||||
|
"DE.Views.EditParagraph.textAdvanced": "Avancerad",
|
||||||
|
"DE.Views.EditParagraph.textAdvSettings": "Avancerade inställningar",
|
||||||
|
"DE.Views.EditParagraph.textAfter": "Efter",
|
||||||
|
"DE.Views.EditParagraph.textAuto": "auto",
|
||||||
|
"DE.Views.EditParagraph.textBack": "Tillbaka",
|
||||||
|
"DE.Views.EditParagraph.textBackground": "Bakgrund",
|
||||||
|
"DE.Views.EditParagraph.textBefore": "Före",
|
||||||
|
"DE.Views.EditParagraph.textCustomColor": "Anpassad färg",
|
||||||
|
"DE.Views.EditParagraph.textFirstLine": "Första raden",
|
||||||
|
"DE.Views.EditParagraph.textFromText": "Avstånd från text",
|
||||||
|
"DE.Views.EditParagraph.textKeepLines": "Håll ihop rader",
|
||||||
|
"DE.Views.EditParagraph.textKeepNext": "Behåll med nästa",
|
||||||
|
"DE.Views.EditParagraph.textSpaceBetween": "Avstånd mellan",
|
||||||
|
"DE.Views.EditShape.textAddCustomColor": "Lägg till anpassad färg",
|
||||||
|
"DE.Views.EditShape.textAlign": "Justera",
|
||||||
|
"DE.Views.EditShape.textBack": "Tillbaka",
|
||||||
|
"DE.Views.EditShape.textBackward": "Flytta bakåt",
|
||||||
|
"DE.Views.EditShape.textBehind": "Bakom",
|
||||||
|
"DE.Views.EditShape.textBorder": "Gräns",
|
||||||
|
"DE.Views.EditShape.textColor": "Färg",
|
||||||
|
"DE.Views.EditShape.textCustomColor": "Anpassad färg",
|
||||||
|
"DE.Views.EditShape.textEffects": "Effekter",
|
||||||
|
"DE.Views.EditShape.textFill": "Fyll",
|
||||||
|
"DE.Views.EditShape.textForward": "Flytta framåt",
|
||||||
|
"DE.Views.EditShape.textFromText": "Avstånd från text",
|
||||||
|
"DE.Views.EditShape.textInFront": "Längst fram",
|
||||||
|
"DE.Views.EditShape.textOpacity": "Opacitet",
|
||||||
|
"DE.Views.EditShape.textOverlap": "Tillåt överlappning",
|
||||||
|
"DE.Views.EditShape.textReplace": "Ersätt",
|
||||||
|
"DE.Views.EditShape.textSize": "Storlek",
|
||||||
|
"DE.Views.EditShape.textToForeground": "Flytta till förgrund",
|
||||||
|
"DE.Views.EditShape.textWithText": "Flytta med text",
|
||||||
|
"DE.Views.EditTable.textAddCustomColor": "Lägg till anpassad färg",
|
||||||
|
"DE.Views.EditTable.textAlign": "Justera",
|
||||||
|
"DE.Views.EditTable.textBack": "Tillbaka",
|
||||||
|
"DE.Views.EditTable.textBorder": "Gräns",
|
||||||
|
"DE.Views.EditTable.textCellMargins": "Cell-marginal",
|
||||||
|
"DE.Views.EditTable.textColor": "Färg",
|
||||||
|
"DE.Views.EditTable.textCustomColor": "Anpassad färg",
|
||||||
|
"DE.Views.EditTable.textFill": "Fyll",
|
||||||
|
"DE.Views.EditTable.textFirstColumn": "Första kolumnen",
|
||||||
|
"DE.Views.EditTable.textFlow": "Flöde",
|
||||||
|
"DE.Views.EditTable.textFromText": "Avstånd från text",
|
||||||
|
"DE.Views.EditTable.textHeaderRow": "Huvudrad",
|
||||||
|
"DE.Views.EditTable.textLastColumn": "Sista kolumnen",
|
||||||
|
"DE.Views.EditTable.textSize": "Storlek",
|
||||||
|
"DE.Views.EditTable.textWithText": "Flytta med text",
|
||||||
|
"DE.Views.EditText.textAddCustomColor": "Lägg till anpassad färg",
|
||||||
|
"DE.Views.EditText.textAdditional": "Extra",
|
||||||
|
"DE.Views.EditText.textAllCaps": "Alla versaler",
|
||||||
|
"DE.Views.EditText.textAutomatic": "Automatisk",
|
||||||
|
"DE.Views.EditText.textBack": "Tillbaka",
|
||||||
|
"DE.Views.EditText.textBullets": "Punktlista",
|
||||||
|
"DE.Views.EditText.textCharacterBold": "B",
|
||||||
|
"DE.Views.EditText.textCharacterItalic": "Jag",
|
||||||
|
"DE.Views.EditText.textCustomColor": "Anpassad färg",
|
||||||
|
"DE.Views.EditText.textDblStrikethrough": "Dubbel genomstrykning",
|
||||||
|
"DE.Views.EditText.textFontColor": "Teckensnittsfärg",
|
||||||
|
"DE.Views.EditText.textFontColors": "Teckensnittsfärger",
|
||||||
|
"DE.Views.EditText.textFonts": "Teckensnitt",
|
||||||
|
"DE.Views.EditText.textHighlightColor": "Markera färg",
|
||||||
|
"DE.Views.EditText.textHighlightColors": "Markera färger",
|
||||||
|
"DE.Views.EditText.textLetterSpacing": "Teckenavstånd",
|
||||||
|
"DE.Views.EditText.textLineSpacing": "Radavstånd",
|
||||||
|
"DE.Views.EditText.textNone": "ingen",
|
||||||
|
"DE.Views.EditText.textNumbers": "Nummer",
|
||||||
|
"DE.Views.EditText.textSize": "Storlek",
|
||||||
|
"DE.Views.EditText.textSmallCaps": "Gemener",
|
||||||
|
"DE.Views.Search.textCase": "Skiftlägeskänslig",
|
||||||
|
"DE.Views.Search.textDone": "Klart",
|
||||||
|
"DE.Views.Search.textFind": "Sök",
|
||||||
|
"DE.Views.Search.textFindAndReplace": "Sök och ersätt",
|
||||||
|
"DE.Views.Search.textHighlight": "Markera resultat",
|
||||||
|
"DE.Views.Search.textReplace": "Ersätt",
|
||||||
|
"DE.Views.Settings.textAbout": "Om",
|
||||||
|
"DE.Views.Settings.textAddress": "adress",
|
||||||
|
"DE.Views.Settings.textApplication": "Program",
|
||||||
|
"DE.Views.Settings.textAuthor": "Författare",
|
||||||
|
"DE.Views.Settings.textBack": "Tillbaka",
|
||||||
|
"DE.Views.Settings.textBottom": "Botten",
|
||||||
|
"DE.Views.Settings.textCentimeter": "Centimeter",
|
||||||
|
"DE.Views.Settings.textCollaboration": "Samarbete",
|
||||||
|
"DE.Views.Settings.textColorSchemes": "Färgschema",
|
||||||
|
"DE.Views.Settings.textComment": "Kommentar",
|
||||||
|
"DE.Views.Settings.textCommentingDisplay": "Visa kommentarer",
|
||||||
|
"DE.Views.Settings.textCreated": "Skapad ",
|
||||||
|
"DE.Views.Settings.textCreateDate": "Skapandedatum",
|
||||||
|
"DE.Views.Settings.textCustom": "Anpassad",
|
||||||
|
"DE.Views.Settings.textCustomSize": "Anpassad storlek",
|
||||||
|
"DE.Views.Settings.textDisplayComments": "Kommentarer",
|
||||||
|
"DE.Views.Settings.textDocInfo": "Dokumentinformation",
|
||||||
|
"DE.Views.Settings.textDocTitle": "Dokumenttitel",
|
||||||
|
"DE.Views.Settings.textDocumentFormats": "Dokumentformat",
|
||||||
|
"DE.Views.Settings.textDocumentSettings": "Dokumentinställningar",
|
||||||
|
"DE.Views.Settings.textDone": "Klart",
|
||||||
|
"DE.Views.Settings.textDownload": "Ladda ner",
|
||||||
|
"DE.Views.Settings.textDownloadAs": "Ladda ner som...",
|
||||||
|
"DE.Views.Settings.textEditDoc": "Redigera dokument",
|
||||||
|
"DE.Views.Settings.textEmail": "E-post",
|
||||||
|
"DE.Views.Settings.textFind": "Sök",
|
||||||
|
"DE.Views.Settings.textFindAndReplace": "Sök och ersätt",
|
||||||
|
"DE.Views.Settings.textFormat": "Format",
|
||||||
|
"DE.Views.Settings.textHelp": "Hjälp",
|
||||||
|
"DE.Views.Settings.textHiddenTableBorders": "Gömda tabellramar",
|
||||||
|
"DE.Views.Settings.textInch": "Tum",
|
||||||
|
"DE.Views.Settings.textLandscape": "Landskap",
|
||||||
|
"DE.Views.Settings.textLastModified": "Senast ändrad",
|
||||||
|
"DE.Views.Settings.textLastModifiedBy": "Senast ändrad av",
|
||||||
|
"DE.Views.Settings.textLeft": "Vänster",
|
||||||
|
"DE.Views.Settings.textLoading": "Laddar...",
|
||||||
|
"DE.Views.Settings.textLocation": "Plats",
|
||||||
|
"DE.Views.Settings.textMargins": "Marginaler",
|
||||||
|
"DE.Views.Settings.textOwner": "Ägare",
|
||||||
|
"DE.Views.Settings.textPages": "Sidor",
|
||||||
|
"DE.Views.Settings.textRight": "Höger",
|
||||||
|
"DE.Views.Settings.textSpaces": "Mellanslag",
|
||||||
|
"DE.Views.Toolbar.textBack": "Tillbaka"
|
||||||
|
}
|
|
@ -1,4 +1,9 @@
|
||||||
{
|
{
|
||||||
|
"Common.Controllers.Collaboration.textDeleted": "<b>Silinen:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textInserted": "<b>Eklenen:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Aşağı Taşınan:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Yukarı Taşınan:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Taşınan:</b>",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
|
|
|
@ -1,30 +1,115 @@
|
||||||
{
|
{
|
||||||
|
"Common.Controllers.Collaboration.textAtLeast": "至少",
|
||||||
|
"Common.Controllers.Collaboration.textAuto": "自动",
|
||||||
|
"Common.Controllers.Collaboration.textBaseline": "基线",
|
||||||
|
"Common.Controllers.Collaboration.textBold": "加粗",
|
||||||
|
"Common.Controllers.Collaboration.textBreakBefore": "分页前",
|
||||||
|
"Common.Controllers.Collaboration.textCaps": "全部大写",
|
||||||
|
"Common.Controllers.Collaboration.textCenter": "居中对齐",
|
||||||
|
"Common.Controllers.Collaboration.textChart": "图表",
|
||||||
|
"Common.Controllers.Collaboration.textColor": "字体颜色",
|
||||||
|
"Common.Controllers.Collaboration.textContextual": "不要在相同样式的段落之间添加间隔",
|
||||||
|
"Common.Controllers.Collaboration.textDeleted": "<b>已删除:</b>",
|
||||||
|
"Common.Controllers.Collaboration.textDStrikeout": "双删除线",
|
||||||
|
"Common.Controllers.Collaboration.textEditUser": "文件正在被多个用户编辑。",
|
||||||
|
"Common.Controllers.Collaboration.textEquation": "方程",
|
||||||
|
"Common.Controllers.Collaboration.textExact": "精确",
|
||||||
|
"Common.Controllers.Collaboration.textFirstLine": "第一行",
|
||||||
|
"Common.Controllers.Collaboration.textFormatted": "格式化",
|
||||||
|
"Common.Controllers.Collaboration.textHighlight": "颜色高亮",
|
||||||
|
"Common.Controllers.Collaboration.textImage": "图片",
|
||||||
|
"Common.Controllers.Collaboration.textIndentLeft": "左缩进",
|
||||||
|
"Common.Controllers.Collaboration.textIndentRight": "右缩进",
|
||||||
|
"Common.Controllers.Collaboration.textInserted": "<b>插入:</ b>",
|
||||||
|
"Common.Controllers.Collaboration.textItalic": "斜体",
|
||||||
|
"Common.Controllers.Collaboration.textJustify": "仅对齐",
|
||||||
|
"Common.Controllers.Collaboration.textKeepLines": "保持同一行",
|
||||||
|
"Common.Controllers.Collaboration.textKeepNext": "与下一个保持一致",
|
||||||
|
"Common.Controllers.Collaboration.textLeft": "左对齐",
|
||||||
|
"Common.Controllers.Collaboration.textLineSpacing": "行间距:",
|
||||||
|
"Common.Controllers.Collaboration.textMultiple": "倍数",
|
||||||
|
"Common.Controllers.Collaboration.textNoBreakBefore": "之前没有分页",
|
||||||
|
"Common.Controllers.Collaboration.textNoContextual": "在相同样式的段落之间添加间隔",
|
||||||
|
"Common.Controllers.Collaboration.textNoKeepLines": "不要保持一行",
|
||||||
|
"Common.Controllers.Collaboration.textNoKeepNext": "不要跟着下一个",
|
||||||
|
"Common.Controllers.Collaboration.textNot": "不",
|
||||||
|
"Common.Controllers.Collaboration.textNoWidow": "没有窗口控制",
|
||||||
|
"Common.Controllers.Collaboration.textNum": "更改编号",
|
||||||
|
"Common.Controllers.Collaboration.textParaDeleted": "<b>段落已删除</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaFormatted": "<b>段落格式</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaInserted": "<b>段落插入</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>已下移</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>已上移</b>",
|
||||||
|
"Common.Controllers.Collaboration.textParaMoveTo": "<b>已移动</b>",
|
||||||
|
"Common.Controllers.Collaboration.textPosition": "职位",
|
||||||
|
"Common.Controllers.Collaboration.textRight": "右对齐",
|
||||||
|
"Common.Controllers.Collaboration.textShape": "形状",
|
||||||
|
"Common.Controllers.Collaboration.textShd": "背景颜色",
|
||||||
|
"Common.Controllers.Collaboration.textSmallCaps": "小写",
|
||||||
|
"Common.Controllers.Collaboration.textSpacing": "间距",
|
||||||
|
"Common.Controllers.Collaboration.textSpacingAfter": "间隔",
|
||||||
|
"Common.Controllers.Collaboration.textSpacingBefore": "之前的距离",
|
||||||
|
"Common.Controllers.Collaboration.textStrikeout": "删除线",
|
||||||
|
"Common.Controllers.Collaboration.textSubScript": "下标",
|
||||||
|
"Common.Controllers.Collaboration.textSuperScript": "上标",
|
||||||
|
"Common.Controllers.Collaboration.textTableChanged": "<b>表格设置已更改</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>表格行已添加</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTableRowsDel": "<b>表格行已删除</b>",
|
||||||
|
"Common.Controllers.Collaboration.textTabs": "更改选项卡",
|
||||||
|
"Common.Controllers.Collaboration.textUnderline": "下划线",
|
||||||
|
"Common.Controllers.Collaboration.textWidow": "窗口控制",
|
||||||
|
"Common.UI.ThemeColorPalette.textCustomColors": "自定义颜色",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "标准颜色",
|
"Common.UI.ThemeColorPalette.textStandartColors": "标准颜色",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "主题颜色",
|
"Common.UI.ThemeColorPalette.textThemeColors": "主题颜色",
|
||||||
"Common.Utils.Metric.txtCm": "厘米",
|
"Common.Utils.Metric.txtCm": "厘米",
|
||||||
"Common.Utils.Metric.txtPt": "像素",
|
"Common.Utils.Metric.txtPt": "像素",
|
||||||
|
"Common.Views.Collaboration.textAcceptAllChanges": "接受所有更改",
|
||||||
|
"Common.Views.Collaboration.textBack": "返回",
|
||||||
|
"Common.Views.Collaboration.textChange": "审查变更",
|
||||||
|
"Common.Views.Collaboration.textCollaboration": "协作",
|
||||||
|
"Common.Views.Collaboration.textDisplayMode": "显示模式",
|
||||||
|
"Common.Views.Collaboration.textEditUsers": "用户",
|
||||||
|
"Common.Views.Collaboration.textFinal": "最终版",
|
||||||
|
"Common.Views.Collaboration.textMarkup": "标记",
|
||||||
|
"Common.Views.Collaboration.textNoComments": "这个文档没包括评论",
|
||||||
|
"Common.Views.Collaboration.textOriginal": "原始版",
|
||||||
|
"Common.Views.Collaboration.textRejectAllChanges": "拒绝所有更改",
|
||||||
|
"Common.Views.Collaboration.textReview": "跟踪变化",
|
||||||
|
"Common.Views.Collaboration.textReviewing": "审阅",
|
||||||
|
"Common.Views.Collaboration.textСomments": "评论",
|
||||||
"DE.Controllers.AddContainer.textImage": "图片",
|
"DE.Controllers.AddContainer.textImage": "图片",
|
||||||
"DE.Controllers.AddContainer.textOther": "其他",
|
"DE.Controllers.AddContainer.textOther": "其他",
|
||||||
"DE.Controllers.AddContainer.textShape": "形状",
|
"DE.Controllers.AddContainer.textShape": "形状",
|
||||||
"DE.Controllers.AddContainer.textTable": "表格",
|
"DE.Controllers.AddContainer.textTable": "表格",
|
||||||
"DE.Controllers.AddImage.textEmptyImgUrl": "您需要指定图像URL。",
|
"DE.Controllers.AddImage.textEmptyImgUrl": "您需要指定图像URL。",
|
||||||
"DE.Controllers.AddImage.txtNotUrl": "该字段应为“http://www.example.com”格式的URL",
|
"DE.Controllers.AddImage.txtNotUrl": "该字段应为“http://www.example.com”格式的URL",
|
||||||
|
"DE.Controllers.AddOther.textBelowText": "文字下方",
|
||||||
|
"DE.Controllers.AddOther.textBottomOfPage": "页面底部",
|
||||||
"DE.Controllers.AddOther.txtNotUrl": "该字段应为“http://www.example.com”格式的URL",
|
"DE.Controllers.AddOther.txtNotUrl": "该字段应为“http://www.example.com”格式的URL",
|
||||||
"DE.Controllers.AddTable.textCancel": "取消",
|
"DE.Controllers.AddTable.textCancel": "取消",
|
||||||
"DE.Controllers.AddTable.textColumns": "列",
|
"DE.Controllers.AddTable.textColumns": "列",
|
||||||
"DE.Controllers.AddTable.textRows": "行",
|
"DE.Controllers.AddTable.textRows": "行",
|
||||||
"DE.Controllers.AddTable.textTableSize": "表格大小",
|
"DE.Controllers.AddTable.textTableSize": "表格大小",
|
||||||
|
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "使用上下文菜单的复制、剪切和粘贴操作将仅在当前文件中执行。",
|
||||||
"DE.Controllers.DocumentHolder.menuAddLink": "增加链接",
|
"DE.Controllers.DocumentHolder.menuAddLink": "增加链接",
|
||||||
"DE.Controllers.DocumentHolder.menuCopy": "复制",
|
"DE.Controllers.DocumentHolder.menuCopy": "复制",
|
||||||
"DE.Controllers.DocumentHolder.menuCut": "剪切",
|
"DE.Controllers.DocumentHolder.menuCut": "剪切",
|
||||||
"DE.Controllers.DocumentHolder.menuDelete": "删除",
|
"DE.Controllers.DocumentHolder.menuDelete": "删除",
|
||||||
|
"DE.Controllers.DocumentHolder.menuDeleteTable": "删除表",
|
||||||
"DE.Controllers.DocumentHolder.menuEdit": "编辑",
|
"DE.Controllers.DocumentHolder.menuEdit": "编辑",
|
||||||
|
"DE.Controllers.DocumentHolder.menuMerge": "合并单元格",
|
||||||
"DE.Controllers.DocumentHolder.menuMore": "更多",
|
"DE.Controllers.DocumentHolder.menuMore": "更多",
|
||||||
"DE.Controllers.DocumentHolder.menuOpenLink": "打开链接",
|
"DE.Controllers.DocumentHolder.menuOpenLink": "打开链接",
|
||||||
"DE.Controllers.DocumentHolder.menuPaste": "粘贴",
|
"DE.Controllers.DocumentHolder.menuPaste": "粘贴",
|
||||||
"DE.Controllers.DocumentHolder.menuReview": "检查",
|
"DE.Controllers.DocumentHolder.menuReview": "检查",
|
||||||
|
"DE.Controllers.DocumentHolder.menuReviewChange": "审查变更",
|
||||||
|
"DE.Controllers.DocumentHolder.menuSplit": "拆分单元格",
|
||||||
"DE.Controllers.DocumentHolder.sheetCancel": "取消",
|
"DE.Controllers.DocumentHolder.sheetCancel": "取消",
|
||||||
|
"DE.Controllers.DocumentHolder.textCancel": "取消",
|
||||||
|
"DE.Controllers.DocumentHolder.textColumns": "列",
|
||||||
|
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "复制,剪切和粘贴操作",
|
||||||
"DE.Controllers.DocumentHolder.textGuest": "游客",
|
"DE.Controllers.DocumentHolder.textGuest": "游客",
|
||||||
|
"DE.Controllers.DocumentHolder.textRows": "行",
|
||||||
"DE.Controllers.EditContainer.textChart": "图表",
|
"DE.Controllers.EditContainer.textChart": "图表",
|
||||||
"DE.Controllers.EditContainer.textFooter": "页脚",
|
"DE.Controllers.EditContainer.textFooter": "页脚",
|
||||||
"DE.Controllers.EditContainer.textHeader": "页眉",
|
"DE.Controllers.EditContainer.textHeader": "页眉",
|
||||||
|
@ -49,7 +134,7 @@
|
||||||
"DE.Controllers.Main.closeButtonText": "关闭文件",
|
"DE.Controllers.Main.closeButtonText": "关闭文件",
|
||||||
"DE.Controllers.Main.convertationTimeoutText": "转换超时",
|
"DE.Controllers.Main.convertationTimeoutText": "转换超时",
|
||||||
"DE.Controllers.Main.criticalErrorExtText": "按“确定”返回文件列表",
|
"DE.Controllers.Main.criticalErrorExtText": "按“确定”返回文件列表",
|
||||||
"DE.Controllers.Main.criticalErrorTitle": "错误:",
|
"DE.Controllers.Main.criticalErrorTitle": "错误",
|
||||||
"DE.Controllers.Main.downloadErrorText": "下载失败",
|
"DE.Controllers.Main.downloadErrorText": "下载失败",
|
||||||
"DE.Controllers.Main.downloadMergeText": "下载中…",
|
"DE.Controllers.Main.downloadMergeText": "下载中…",
|
||||||
"DE.Controllers.Main.downloadMergeTitle": "下载中",
|
"DE.Controllers.Main.downloadMergeTitle": "下载中",
|
||||||
|
@ -65,6 +150,7 @@
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "错误代码:%1",
|
"DE.Controllers.Main.errorDefaultMessage": "错误代码:%1",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "在处理文档期间发生错误。<br>使用“下载”选项将文件备份复制到计算机硬盘中。",
|
"DE.Controllers.Main.errorEditingDownloadas": "在处理文档期间发生错误。<br>使用“下载”选项将文件备份复制到计算机硬盘中。",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "该文档受密码保护,无法被打开。",
|
"DE.Controllers.Main.errorFilePassProtect": "该文档受密码保护,无法被打开。",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.<br>有关详细信息,请与文档服务器管理员联系。",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "未知密钥描述",
|
"DE.Controllers.Main.errorKeyEncrypt": "未知密钥描述",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "密钥过期",
|
"DE.Controllers.Main.errorKeyExpire": "密钥过期",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "加载失败",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "加载失败",
|
||||||
|
@ -73,6 +159,7 @@
|
||||||
"DE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。",
|
"DE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。",
|
||||||
"DE.Controllers.Main.errorStockChart": "行顺序不正确。建立股票图表将数据按照以下顺序放置在表格上:<br>开盘价,最高价格,最低价格,收盘价。",
|
"DE.Controllers.Main.errorStockChart": "行顺序不正确。建立股票图表将数据按照以下顺序放置在表格上:<br>开盘价,最高价格,最低价格,收盘价。",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "该文件版本已经改变了。该页面将被重新加载。",
|
"DE.Controllers.Main.errorUpdateVersion": "该文件版本已经改变了。该页面将被重新加载。",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "网连接已还原文件版本已更改。.<br>在继续工作之前,需要下载文件或复制其内容以确保没有丢失任何内容,然后重新加载此页。",
|
||||||
"DE.Controllers.Main.errorUserDrop": "该文件现在无法访问。",
|
"DE.Controllers.Main.errorUserDrop": "该文件现在无法访问。",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "超过了用户数",
|
"DE.Controllers.Main.errorUsersExceed": "超过了用户数",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档<br>,但在连接恢复之前无法下载或打印。",
|
"DE.Controllers.Main.errorViewerDisconnect": "连接丢失。您仍然可以查看文档<br>,但在连接恢复之前无法下载或打印。",
|
||||||
|
@ -171,6 +258,7 @@
|
||||||
"DE.Controllers.Settings.txtLoading": "载入中……",
|
"DE.Controllers.Settings.txtLoading": "载入中……",
|
||||||
"DE.Controllers.Settings.unknownText": "未知",
|
"DE.Controllers.Settings.unknownText": "未知",
|
||||||
"DE.Controllers.Settings.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。<br>您确定要继续吗?",
|
"DE.Controllers.Settings.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。<br>您确定要继续吗?",
|
||||||
|
"DE.Controllers.Settings.warnDownloadAsRTF": "如果您继续以此格式保存,一些格式可能会丢失。<br>您确定要继续吗?",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "您在本文档中有未保存的更改。点击“停留在此页面”,等待文档的自动保存。点击“离开此页面”,放弃所有未保存的更改。",
|
"DE.Controllers.Toolbar.dlgLeaveMsgText": "您在本文档中有未保存的更改。点击“停留在此页面”,等待文档的自动保存。点击“离开此页面”,放弃所有未保存的更改。",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "你退出应用程序",
|
"DE.Controllers.Toolbar.dlgLeaveTitleText": "你退出应用程序",
|
||||||
"DE.Controllers.Toolbar.leaveButtonText": "离开这个页面",
|
"DE.Controllers.Toolbar.leaveButtonText": "离开这个页面",
|
||||||
|
@ -191,10 +279,14 @@
|
||||||
"DE.Views.AddOther.textCurrentPos": "当前位置",
|
"DE.Views.AddOther.textCurrentPos": "当前位置",
|
||||||
"DE.Views.AddOther.textDisplay": "展示",
|
"DE.Views.AddOther.textDisplay": "展示",
|
||||||
"DE.Views.AddOther.textEvenPage": "偶数页",
|
"DE.Views.AddOther.textEvenPage": "偶数页",
|
||||||
|
"DE.Views.AddOther.textFootnote": "脚注",
|
||||||
|
"DE.Views.AddOther.textFormat": "格式",
|
||||||
"DE.Views.AddOther.textInsert": "插入",
|
"DE.Views.AddOther.textInsert": "插入",
|
||||||
|
"DE.Views.AddOther.textInsertFootnote": "插入脚注",
|
||||||
"DE.Views.AddOther.textLeftBottom": "左下",
|
"DE.Views.AddOther.textLeftBottom": "左下",
|
||||||
"DE.Views.AddOther.textLeftTop": "左上",
|
"DE.Views.AddOther.textLeftTop": "左上",
|
||||||
"DE.Views.AddOther.textLink": "链接",
|
"DE.Views.AddOther.textLink": "链接",
|
||||||
|
"DE.Views.AddOther.textLocation": "位置",
|
||||||
"DE.Views.AddOther.textNextPage": "下一页",
|
"DE.Views.AddOther.textNextPage": "下一页",
|
||||||
"DE.Views.AddOther.textOddPage": "奇数页",
|
"DE.Views.AddOther.textOddPage": "奇数页",
|
||||||
"DE.Views.AddOther.textPageBreak": "分页符",
|
"DE.Views.AddOther.textPageBreak": "分页符",
|
||||||
|
@ -203,13 +295,16 @@
|
||||||
"DE.Views.AddOther.textRightBottom": "右下",
|
"DE.Views.AddOther.textRightBottom": "右下",
|
||||||
"DE.Views.AddOther.textRightTop": "右上",
|
"DE.Views.AddOther.textRightTop": "右上",
|
||||||
"DE.Views.AddOther.textSectionBreak": "部分中断",
|
"DE.Views.AddOther.textSectionBreak": "部分中断",
|
||||||
|
"DE.Views.AddOther.textStartFrom": "开始",
|
||||||
"DE.Views.AddOther.textTip": "屏幕提示",
|
"DE.Views.AddOther.textTip": "屏幕提示",
|
||||||
|
"DE.Views.EditChart.textAddCustomColor": "\n添加自定义颜色",
|
||||||
"DE.Views.EditChart.textAlign": "对齐",
|
"DE.Views.EditChart.textAlign": "对齐",
|
||||||
"DE.Views.EditChart.textBack": "返回",
|
"DE.Views.EditChart.textBack": "返回",
|
||||||
"DE.Views.EditChart.textBackward": "向后移动",
|
"DE.Views.EditChart.textBackward": "向后移动",
|
||||||
"DE.Views.EditChart.textBehind": "之后",
|
"DE.Views.EditChart.textBehind": "之后",
|
||||||
"DE.Views.EditChart.textBorder": "边界",
|
"DE.Views.EditChart.textBorder": "边界",
|
||||||
"DE.Views.EditChart.textColor": "颜色",
|
"DE.Views.EditChart.textColor": "颜色",
|
||||||
|
"DE.Views.EditChart.textCustomColor": "自定义颜色",
|
||||||
"DE.Views.EditChart.textDistanceText": "文字距离",
|
"DE.Views.EditChart.textDistanceText": "文字距离",
|
||||||
"DE.Views.EditChart.textFill": "填满",
|
"DE.Views.EditChart.textFill": "填满",
|
||||||
"DE.Views.EditChart.textForward": "向前移动",
|
"DE.Views.EditChart.textForward": "向前移动",
|
||||||
|
@ -267,6 +362,7 @@
|
||||||
"DE.Views.EditImage.textToForeground": "放到最上面",
|
"DE.Views.EditImage.textToForeground": "放到最上面",
|
||||||
"DE.Views.EditImage.textTopBottom": "上下",
|
"DE.Views.EditImage.textTopBottom": "上下",
|
||||||
"DE.Views.EditImage.textWrap": "包裹",
|
"DE.Views.EditImage.textWrap": "包裹",
|
||||||
|
"DE.Views.EditParagraph.textAddCustomColor": "\n添加自定义颜色",
|
||||||
"DE.Views.EditParagraph.textAdvanced": "高级",
|
"DE.Views.EditParagraph.textAdvanced": "高级",
|
||||||
"DE.Views.EditParagraph.textAdvSettings": "高级设置",
|
"DE.Views.EditParagraph.textAdvSettings": "高级设置",
|
||||||
"DE.Views.EditParagraph.textAfter": "后",
|
"DE.Views.EditParagraph.textAfter": "后",
|
||||||
|
@ -274,6 +370,7 @@
|
||||||
"DE.Views.EditParagraph.textBack": "返回",
|
"DE.Views.EditParagraph.textBack": "返回",
|
||||||
"DE.Views.EditParagraph.textBackground": "背景",
|
"DE.Views.EditParagraph.textBackground": "背景",
|
||||||
"DE.Views.EditParagraph.textBefore": "以前",
|
"DE.Views.EditParagraph.textBefore": "以前",
|
||||||
|
"DE.Views.EditParagraph.textCustomColor": "自定义颜色",
|
||||||
"DE.Views.EditParagraph.textFirstLine": "第一行",
|
"DE.Views.EditParagraph.textFirstLine": "第一行",
|
||||||
"DE.Views.EditParagraph.textFromText": "文字距离",
|
"DE.Views.EditParagraph.textFromText": "文字距离",
|
||||||
"DE.Views.EditParagraph.textKeepLines": "保持同一行",
|
"DE.Views.EditParagraph.textKeepLines": "保持同一行",
|
||||||
|
@ -282,12 +379,14 @@
|
||||||
"DE.Views.EditParagraph.textPageBreak": "分页前",
|
"DE.Views.EditParagraph.textPageBreak": "分页前",
|
||||||
"DE.Views.EditParagraph.textPrgStyles": "段落样式",
|
"DE.Views.EditParagraph.textPrgStyles": "段落样式",
|
||||||
"DE.Views.EditParagraph.textSpaceBetween": "段间距",
|
"DE.Views.EditParagraph.textSpaceBetween": "段间距",
|
||||||
|
"DE.Views.EditShape.textAddCustomColor": "\n添加自定义颜色",
|
||||||
"DE.Views.EditShape.textAlign": "排列",
|
"DE.Views.EditShape.textAlign": "排列",
|
||||||
"DE.Views.EditShape.textBack": "返回",
|
"DE.Views.EditShape.textBack": "返回",
|
||||||
"DE.Views.EditShape.textBackward": "向后移动",
|
"DE.Views.EditShape.textBackward": "向后移动",
|
||||||
"DE.Views.EditShape.textBehind": "之后",
|
"DE.Views.EditShape.textBehind": "之后",
|
||||||
"DE.Views.EditShape.textBorder": "边界",
|
"DE.Views.EditShape.textBorder": "边界",
|
||||||
"DE.Views.EditShape.textColor": "颜色",
|
"DE.Views.EditShape.textColor": "颜色",
|
||||||
|
"DE.Views.EditShape.textCustomColor": "自定义颜色",
|
||||||
"DE.Views.EditShape.textEffects": "效果",
|
"DE.Views.EditShape.textEffects": "效果",
|
||||||
"DE.Views.EditShape.textFill": "填满",
|
"DE.Views.EditShape.textFill": "填满",
|
||||||
"DE.Views.EditShape.textForward": "向前移动",
|
"DE.Views.EditShape.textForward": "向前移动",
|
||||||
|
@ -309,6 +408,7 @@
|
||||||
"DE.Views.EditShape.textTopAndBottom": "上下",
|
"DE.Views.EditShape.textTopAndBottom": "上下",
|
||||||
"DE.Views.EditShape.textWithText": "文字移动",
|
"DE.Views.EditShape.textWithText": "文字移动",
|
||||||
"DE.Views.EditShape.textWrap": "包裹",
|
"DE.Views.EditShape.textWrap": "包裹",
|
||||||
|
"DE.Views.EditTable.textAddCustomColor": "\n添加自定义颜色",
|
||||||
"DE.Views.EditTable.textAlign": "排列",
|
"DE.Views.EditTable.textAlign": "排列",
|
||||||
"DE.Views.EditTable.textBack": "返回",
|
"DE.Views.EditTable.textBack": "返回",
|
||||||
"DE.Views.EditTable.textBandedColumn": "带状列",
|
"DE.Views.EditTable.textBandedColumn": "带状列",
|
||||||
|
@ -316,6 +416,7 @@
|
||||||
"DE.Views.EditTable.textBorder": "边界",
|
"DE.Views.EditTable.textBorder": "边界",
|
||||||
"DE.Views.EditTable.textCellMargins": "单元格边距",
|
"DE.Views.EditTable.textCellMargins": "单元格边距",
|
||||||
"DE.Views.EditTable.textColor": "颜色",
|
"DE.Views.EditTable.textColor": "颜色",
|
||||||
|
"DE.Views.EditTable.textCustomColor": "自定义颜色",
|
||||||
"DE.Views.EditTable.textFill": "填满",
|
"DE.Views.EditTable.textFill": "填满",
|
||||||
"DE.Views.EditTable.textFirstColumn": "第一列",
|
"DE.Views.EditTable.textFirstColumn": "第一列",
|
||||||
"DE.Views.EditTable.textFlow": "流动",
|
"DE.Views.EditTable.textFlow": "流动",
|
||||||
|
@ -334,6 +435,7 @@
|
||||||
"DE.Views.EditTable.textTotalRow": "总行",
|
"DE.Views.EditTable.textTotalRow": "总行",
|
||||||
"DE.Views.EditTable.textWithText": "文字移动",
|
"DE.Views.EditTable.textWithText": "文字移动",
|
||||||
"DE.Views.EditTable.textWrap": "包裹",
|
"DE.Views.EditTable.textWrap": "包裹",
|
||||||
|
"DE.Views.EditText.textAddCustomColor": "\n添加自定义颜色",
|
||||||
"DE.Views.EditText.textAdditional": "另外",
|
"DE.Views.EditText.textAdditional": "另外",
|
||||||
"DE.Views.EditText.textAdditionalFormat": "附加格式",
|
"DE.Views.EditText.textAdditionalFormat": "附加格式",
|
||||||
"DE.Views.EditText.textAllCaps": "全部大写",
|
"DE.Views.EditText.textAllCaps": "全部大写",
|
||||||
|
@ -344,6 +446,7 @@
|
||||||
"DE.Views.EditText.textCharacterItalic": "I",
|
"DE.Views.EditText.textCharacterItalic": "I",
|
||||||
"DE.Views.EditText.textCharacterStrikethrough": "S",
|
"DE.Views.EditText.textCharacterStrikethrough": "S",
|
||||||
"DE.Views.EditText.textCharacterUnderline": "U",
|
"DE.Views.EditText.textCharacterUnderline": "U",
|
||||||
|
"DE.Views.EditText.textCustomColor": "自定义颜色",
|
||||||
"DE.Views.EditText.textDblStrikethrough": "双删除线",
|
"DE.Views.EditText.textDblStrikethrough": "双删除线",
|
||||||
"DE.Views.EditText.textDblSuperscript": "上标",
|
"DE.Views.EditText.textDblSuperscript": "上标",
|
||||||
"DE.Views.EditText.textFontColor": "字体颜色",
|
"DE.Views.EditText.textFontColor": "字体颜色",
|
||||||
|
@ -368,12 +471,22 @@
|
||||||
"DE.Views.Search.textSearch": "搜索",
|
"DE.Views.Search.textSearch": "搜索",
|
||||||
"DE.Views.Settings.textAbout": "关于",
|
"DE.Views.Settings.textAbout": "关于",
|
||||||
"DE.Views.Settings.textAddress": "地址",
|
"DE.Views.Settings.textAddress": "地址",
|
||||||
|
"DE.Views.Settings.textAdvancedSettings": "应用程序设置",
|
||||||
|
"DE.Views.Settings.textApplication": "应用",
|
||||||
"DE.Views.Settings.textAuthor": "作者",
|
"DE.Views.Settings.textAuthor": "作者",
|
||||||
"DE.Views.Settings.textBack": "返回",
|
"DE.Views.Settings.textBack": "返回",
|
||||||
"DE.Views.Settings.textBottom": "底部",
|
"DE.Views.Settings.textBottom": "底部",
|
||||||
|
"DE.Views.Settings.textCentimeter": "厘米",
|
||||||
|
"DE.Views.Settings.textCollaboration": "协作",
|
||||||
|
"DE.Views.Settings.textColorSchemes": "颜色方案",
|
||||||
|
"DE.Views.Settings.textComment": "评论",
|
||||||
|
"DE.Views.Settings.textCommentingDisplay": "评论显示",
|
||||||
|
"DE.Views.Settings.textCreated": "已创建",
|
||||||
"DE.Views.Settings.textCreateDate": "创建日期",
|
"DE.Views.Settings.textCreateDate": "创建日期",
|
||||||
"DE.Views.Settings.textCustom": "自定义",
|
"DE.Views.Settings.textCustom": "自定义",
|
||||||
"DE.Views.Settings.textCustomSize": "自定义大小",
|
"DE.Views.Settings.textCustomSize": "自定义大小",
|
||||||
|
"DE.Views.Settings.textDisplayComments": "评论",
|
||||||
|
"DE.Views.Settings.textDisplayResolvedComments": "已解决的评论",
|
||||||
"DE.Views.Settings.textDocInfo": "文件信息",
|
"DE.Views.Settings.textDocInfo": "文件信息",
|
||||||
"DE.Views.Settings.textDocTitle": "文件名",
|
"DE.Views.Settings.textDocTitle": "文件名",
|
||||||
"DE.Views.Settings.textDocumentFormats": "文件格式",
|
"DE.Views.Settings.textDocumentFormats": "文件格式",
|
||||||
|
@ -387,13 +500,21 @@
|
||||||
"DE.Views.Settings.textFindAndReplace": "查找和替换",
|
"DE.Views.Settings.textFindAndReplace": "查找和替换",
|
||||||
"DE.Views.Settings.textFormat": "格式",
|
"DE.Views.Settings.textFormat": "格式",
|
||||||
"DE.Views.Settings.textHelp": "帮助",
|
"DE.Views.Settings.textHelp": "帮助",
|
||||||
|
"DE.Views.Settings.textHiddenTableBorders": "隐藏表边框",
|
||||||
|
"DE.Views.Settings.textInch": "寸",
|
||||||
"DE.Views.Settings.textLandscape": "横向",
|
"DE.Views.Settings.textLandscape": "横向",
|
||||||
|
"DE.Views.Settings.textLastModified": "上次修改时间",
|
||||||
|
"DE.Views.Settings.textLastModifiedBy": "上次修改时间",
|
||||||
"DE.Views.Settings.textLeft": "左",
|
"DE.Views.Settings.textLeft": "左",
|
||||||
"DE.Views.Settings.textLoading": "加载中…",
|
"DE.Views.Settings.textLoading": "加载中…",
|
||||||
|
"DE.Views.Settings.textLocation": "位置",
|
||||||
"DE.Views.Settings.textMargins": "边距",
|
"DE.Views.Settings.textMargins": "边距",
|
||||||
|
"DE.Views.Settings.textNoCharacters": "不打印字符",
|
||||||
"DE.Views.Settings.textOrientation": "选项",
|
"DE.Views.Settings.textOrientation": "选项",
|
||||||
|
"DE.Views.Settings.textOwner": "创建者",
|
||||||
"DE.Views.Settings.textPages": "页面",
|
"DE.Views.Settings.textPages": "页面",
|
||||||
"DE.Views.Settings.textParagraphs": "段落",
|
"DE.Views.Settings.textParagraphs": "段落",
|
||||||
|
"DE.Views.Settings.textPoint": "点",
|
||||||
"DE.Views.Settings.textPortrait": "肖像",
|
"DE.Views.Settings.textPortrait": "肖像",
|
||||||
"DE.Views.Settings.textPoweredBy": "支持方",
|
"DE.Views.Settings.textPoweredBy": "支持方",
|
||||||
"DE.Views.Settings.textPrint": "打印",
|
"DE.Views.Settings.textPrint": "打印",
|
||||||
|
@ -404,9 +525,13 @@
|
||||||
"DE.Views.Settings.textSpaces": "间隔",
|
"DE.Views.Settings.textSpaces": "间隔",
|
||||||
"DE.Views.Settings.textSpellcheck": "拼写检查",
|
"DE.Views.Settings.textSpellcheck": "拼写检查",
|
||||||
"DE.Views.Settings.textStatistic": "统计",
|
"DE.Views.Settings.textStatistic": "统计",
|
||||||
|
"DE.Views.Settings.textSubject": "主题",
|
||||||
"DE.Views.Settings.textSymbols": "符号",
|
"DE.Views.Settings.textSymbols": "符号",
|
||||||
"DE.Views.Settings.textTel": "电话",
|
"DE.Views.Settings.textTel": "电话",
|
||||||
|
"DE.Views.Settings.textTitle": "标题",
|
||||||
"DE.Views.Settings.textTop": "顶部",
|
"DE.Views.Settings.textTop": "顶部",
|
||||||
|
"DE.Views.Settings.textUnitOfMeasurement": "计量单位",
|
||||||
|
"DE.Views.Settings.textUploaded": "上载",
|
||||||
"DE.Views.Settings.textVersion": "版本",
|
"DE.Views.Settings.textVersion": "版本",
|
||||||
"DE.Views.Settings.textWords": "单词",
|
"DE.Views.Settings.textWords": "单词",
|
||||||
"DE.Views.Settings.unknownText": "未知",
|
"DE.Views.Settings.unknownText": "未知",
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
"PE.ApplicationController.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
"PE.ApplicationController.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Код на грешка: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Код на грешка: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.",
|
"PE.ApplicationController.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.",
|
||||||
|
"PE.ApplicationController.errorFileSizeExceed": "Размерът на файла надвишава ограничението, зададено за вашия сървър.<br> Моля, свържете се с вашия администратор на Document Server за подробности.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Интернет връзката е възстановена и версията на файла е променена.<br> Преди да продължите да работите, трябва да изтеглите файла или да копирате съдържанието му, за да сте сигурни, че нищо не е загубено, и след това да презаредите тази страница.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Файлът не може да бъде достъпен в момента.",
|
"PE.ApplicationController.errorUserDrop": "Файлът не може да бъде достъпен в момента.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
"PE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
||||||
"PE.ApplicationController.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.",
|
"PE.ApplicationController.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.",
|
||||||
|
|
|
@ -1,24 +1,28 @@
|
||||||
{
|
{
|
||||||
"common.view.modals.txtCopy": "Zkopírovat do schránky",
|
"common.view.modals.txtCopy": "Zkopírovat do schránky",
|
||||||
"common.view.modals.txtHeight": "Výška",
|
"common.view.modals.txtHeight": "Výška",
|
||||||
|
"common.view.modals.txtShare": "Odkaz pro sdílení",
|
||||||
"common.view.modals.txtWidth": "Šířka",
|
"common.view.modals.txtWidth": "Šířka",
|
||||||
"PE.ApplicationController.convertationErrorText": "Konverze selhala.",
|
"PE.ApplicationController.convertationErrorText": "Převod se nezdařil.",
|
||||||
"PE.ApplicationController.convertationTimeoutText": "Vypršel čas konverze.",
|
"PE.ApplicationController.convertationTimeoutText": "Překročen časový limit pro provedení převodu.",
|
||||||
"PE.ApplicationController.criticalErrorTitle": "Chyba",
|
"PE.ApplicationController.criticalErrorTitle": "Chyba",
|
||||||
"PE.ApplicationController.downloadErrorText": "Stahování selhalo.",
|
"PE.ApplicationController.downloadErrorText": "Stahování se nezdařilo.",
|
||||||
"PE.ApplicationController.downloadTextText": "Stahování prezentace...",
|
"PE.ApplicationController.downloadTextText": "Stahování prezentace…",
|
||||||
"PE.ApplicationController.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
"PE.ApplicationController.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Obraťte se na správce vámi využívaného dokumentového serveru.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Kód chyby: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Kód chyby: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Dokument je chráněn heslem a nelze otevřít.",
|
"PE.ApplicationController.errorFilePassProtect": "Soubor je chráněn heslem a bez něj ho nelze otevřít.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Tento soubor není nyní přístupný.",
|
"PE.ApplicationController.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.<br>Ohledně podrobností se obraťte na správce dokumentového serveru.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.<br>Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.",
|
||||||
|
"PE.ApplicationController.errorUserDrop": "Tento soubor nyní není přístupný.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Varování",
|
"PE.ApplicationController.notcriticalErrorTitle": "Varování",
|
||||||
|
"PE.ApplicationController.scriptLoadError": "Připojení je příliš pomalé, některé součásti se nepodařilo načíst. Načtěte stránku znovu.",
|
||||||
"PE.ApplicationController.textLoadingDocument": "Načítání prezentace",
|
"PE.ApplicationController.textLoadingDocument": "Načítání prezentace",
|
||||||
"PE.ApplicationController.textOf": "z",
|
"PE.ApplicationController.textOf": "z",
|
||||||
"PE.ApplicationController.txtClose": "Zavřít",
|
"PE.ApplicationController.txtClose": "Zavřít",
|
||||||
"PE.ApplicationController.unknownErrorText": "Neznámá chyba.",
|
"PE.ApplicationController.unknownErrorText": "Neznámá chyba.",
|
||||||
"PE.ApplicationController.unsupportedBrowserErrorText": "Váš prohlížeč není podporován.",
|
"PE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.",
|
||||||
"PE.ApplicationController.waitText": "Prosím, čekejte...",
|
"PE.ApplicationController.waitText": "Čekejte prosím…",
|
||||||
"PE.ApplicationView.txtDownload": "Stáhnout",
|
"PE.ApplicationView.txtDownload": "Stáhnout",
|
||||||
"PE.ApplicationView.txtFullScreen": "Celá obrazovka",
|
"PE.ApplicationView.txtFullScreen": "Na celou obrazovku",
|
||||||
"PE.ApplicationView.txtShare": "Sdílet"
|
"PE.ApplicationView.txtShare": "Sdílet"
|
||||||
}
|
}
|
|
@ -5,13 +5,15 @@
|
||||||
"common.view.modals.txtShare": "Link teilen",
|
"common.view.modals.txtShare": "Link teilen",
|
||||||
"common.view.modals.txtWidth": "Breite",
|
"common.view.modals.txtWidth": "Breite",
|
||||||
"PE.ApplicationController.convertationErrorText": "Konvertierung ist fehlgeschlagen.",
|
"PE.ApplicationController.convertationErrorText": "Konvertierung ist fehlgeschlagen.",
|
||||||
"PE.ApplicationController.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.",
|
"PE.ApplicationController.convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.",
|
||||||
"PE.ApplicationController.criticalErrorTitle": "Fehler",
|
"PE.ApplicationController.criticalErrorTitle": "Fehler",
|
||||||
"PE.ApplicationController.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
|
"PE.ApplicationController.downloadErrorText": "Herunterladen ist fehlgeschlagen.",
|
||||||
"PE.ApplicationController.downloadTextText": "Präsentation wird heruntergeladen...",
|
"PE.ApplicationController.downloadTextText": "Präsentation wird heruntergeladen...",
|
||||||
"PE.ApplicationController.errorAccessDeny": "Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
"PE.ApplicationController.errorAccessDeny": "Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.<br>Bitte wenden Sie sich an Ihren Document Serveradministrator.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Fehlercode: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Fehlercode: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
|
"PE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.",
|
||||||
|
"PE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.<br>Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.<br>Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
|
"PE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Warnung",
|
"PE.ApplicationController.notcriticalErrorTitle": "Warnung",
|
||||||
"PE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.",
|
"PE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Error code: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Error code: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
|
"PE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
|
||||||
"PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
"PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||||
"PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
"PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Warning",
|
"PE.ApplicationController.notcriticalErrorTitle": "Warning",
|
||||||
"PE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
|
"PE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
|
||||||
|
@ -22,7 +23,6 @@
|
||||||
"PE.ApplicationController.unknownErrorText": "Unknown error.",
|
"PE.ApplicationController.unknownErrorText": "Unknown error.",
|
||||||
"PE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.",
|
"PE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.",
|
||||||
"PE.ApplicationController.waitText": "Please, wait...",
|
"PE.ApplicationController.waitText": "Please, wait...",
|
||||||
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
|
||||||
"PE.ApplicationView.txtDownload": "Download",
|
"PE.ApplicationView.txtDownload": "Download",
|
||||||
"PE.ApplicationView.txtEmbed": "Embed",
|
"PE.ApplicationView.txtEmbed": "Embed",
|
||||||
"PE.ApplicationView.txtFullScreen": "Full Screen",
|
"PE.ApplicationView.txtFullScreen": "Full Screen",
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
"PE.ApplicationController.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con su Administrador del Servidor de Documentos.",
|
"PE.ApplicationController.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con su Administrador del Servidor de Documentos.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Código de error: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Código de error: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
|
"PE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.",
|
||||||
|
"PE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Póngase en contacto con el administrador del Servidor de documentos para obtener más información.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página. ",
|
||||||
"PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.",
|
"PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
"PE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||||
"PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.",
|
"PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.",
|
||||||
|
|
|
@ -11,11 +11,12 @@
|
||||||
"PE.ApplicationController.downloadTextText": "Téléchargement de la présentation...",
|
"PE.ApplicationController.downloadTextText": "Téléchargement de la présentation...",
|
||||||
"PE.ApplicationController.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
"PE.ApplicationController.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
|
"PE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par un mot de passe et ne peut pas être ouvert.",
|
||||||
"PE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
"PE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.<br>Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés, et rechargez la page.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
"PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
"PE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
||||||
"PE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
"PE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
||||||
"PE.ApplicationController.textLoadingDocument": "Chargement de la présentation",
|
"PE.ApplicationController.textLoadingDocument": "Chargement de la présentation",
|
||||||
"PE.ApplicationController.textOf": "de",
|
"PE.ApplicationController.textOf": "de",
|
||||||
"PE.ApplicationController.txtClose": "Fermer",
|
"PE.ApplicationController.txtClose": "Fermer",
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
"PE.ApplicationController.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
|
"PE.ApplicationController.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Hibakód: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Hibakód: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.",
|
"PE.ApplicationController.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.",
|
||||||
|
"PE.ApplicationController.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.<br>Kérjük, forduljon a Document Server rendszergazdájához a részletekért.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.<br>Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.",
|
||||||
"PE.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető",
|
"PE.ApplicationController.errorUserDrop": "A dokumentum jelenleg nem elérhető",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés",
|
"PE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
"PE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.",
|
"PE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Codice errore: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Codice errore: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
"PE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
||||||
"PE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
"PE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
"PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
"PE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
||||||
"PE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
"PE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
||||||
|
|
|
@ -1,22 +1,30 @@
|
||||||
{
|
{
|
||||||
"common.view.modals.txtCopy": "Copiar para a área de transferência",
|
"common.view.modals.txtCopy": "Copiar para a área de transferência",
|
||||||
|
"common.view.modals.txtEmbed": "Incorporar",
|
||||||
"common.view.modals.txtHeight": "Altura",
|
"common.view.modals.txtHeight": "Altura",
|
||||||
|
"common.view.modals.txtShare": "Compartilhar link",
|
||||||
"common.view.modals.txtWidth": "Largura",
|
"common.view.modals.txtWidth": "Largura",
|
||||||
|
"PE.ApplicationController.convertationErrorText": "Conversão falhou.",
|
||||||
"PE.ApplicationController.convertationTimeoutText": "Tempo limite de conversão excedido.",
|
"PE.ApplicationController.convertationTimeoutText": "Tempo limite de conversão excedido.",
|
||||||
"PE.ApplicationController.criticalErrorTitle": "Erro",
|
"PE.ApplicationController.criticalErrorTitle": "Erro",
|
||||||
"PE.ApplicationController.downloadErrorText": "Falha ao baixar",
|
"PE.ApplicationController.downloadErrorText": "Transferência falhou.",
|
||||||
"PE.ApplicationController.downloadTextText": "Baixando apresentação...",
|
"PE.ApplicationController.downloadTextText": "Transferindo apresentação...",
|
||||||
"PE.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.<br>Entre em contato com o administrador do Document Server.",
|
"PE.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.<br>Entre em contato com o administrador do Document Server.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Código do erro: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Código do erro: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
|
"PE.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
|
||||||
|
"PE.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. <br> Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada. <br> Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.",
|
||||||
"PE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.",
|
"PE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
"PE.ApplicationController.notcriticalErrorTitle": "Aviso",
|
||||||
|
"PE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.",
|
||||||
"PE.ApplicationController.textLoadingDocument": "Carregando apresentação",
|
"PE.ApplicationController.textLoadingDocument": "Carregando apresentação",
|
||||||
"PE.ApplicationController.textOf": "de",
|
"PE.ApplicationController.textOf": "de",
|
||||||
"PE.ApplicationController.txtClose": "Fechar",
|
"PE.ApplicationController.txtClose": "Fechar",
|
||||||
"PE.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
"PE.ApplicationController.unknownErrorText": "Erro desconhecido.",
|
||||||
"PE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.",
|
"PE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.",
|
||||||
"PE.ApplicationController.waitText": "Aguarde...",
|
"PE.ApplicationController.waitText": "Aguarde...",
|
||||||
"PE.ApplicationView.txtDownload": "Baixar",
|
"PE.ApplicationView.txtDownload": "Transferir",
|
||||||
|
"PE.ApplicationView.txtEmbed": "Incorporar",
|
||||||
|
"PE.ApplicationView.txtFullScreen": "Tela cheia",
|
||||||
"PE.ApplicationView.txtShare": "Compartilhar"
|
"PE.ApplicationView.txtShare": "Compartilhar"
|
||||||
}
|
}
|
|
@ -13,6 +13,7 @@
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Код ошибки: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Код ошибки: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
"PE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
||||||
"PE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
"PE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
||||||
|
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.<br>Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
|
||||||
"PE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
"PE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
"PE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
||||||
"PE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
"PE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
||||||
|
|