Merge branch 'release/v6.4.0' into develop

This commit is contained in:
Julia Radzhabova 2021-08-09 13:30:40 +03:00
commit 3ab6e18621
229 changed files with 36015 additions and 24533 deletions

View file

@ -687,6 +687,7 @@
font-weight: bold;
font-size: 11px;
box-shadow: 0 6px 12px rgba(0,0,0,0.175);
max-width: 350px;
padding: 5px 12px;
white-space: pre-wrap;

View file

@ -104,38 +104,37 @@ define([
return this;
},
show: function(){
// if (maskeEl || loaderEl)
// return;
internalShow: function() {
this.ownerEl.append(this.maskeEl);
this.ownerEl.append(this.loaderEl);
this.loaderEl.css('min-width', $('.asc-loadmask-title', this.loaderEl).width() + 105);
if (this.ownerEl && this.ownerEl.closest('.asc-window.modal').length==0)
Common.util.Shortcuts.suspendEvents();
},
show: function(immediately){
// The owner is already masked
var ownerEl = this.ownerEl,
loaderEl = this.loaderEl,
maskeEl = this.maskeEl;
if (!!ownerEl.ismasked)
if (!!this.ownerEl.ismasked)
return this;
ownerEl.ismasked = true;
this.ownerEl.ismasked = true;
var me = this;
if (me.title != me.options.title) {
me.options.title = me.title;
$('.asc-loadmask-title', loaderEl).html(me.title);
$('.asc-loadmask-title', this.loaderEl).html(me.title);
}
// show mask after 500 ms if it wont be hided
me.timerId = setTimeout(function () {
ownerEl.append(maskeEl);
ownerEl.append(loaderEl);
// if (ownerEl.height()<1 || ownerEl.width()<1)
// loaderEl.css({visibility: 'hidden'});
loaderEl.css('min-width', $('.asc-loadmask-title', loaderEl).width() + 105);
if (ownerEl && ownerEl.closest('.asc-window.modal').length==0)
Common.util.Shortcuts.suspendEvents();
},500);
if (immediately) {
me.internalShow();
} else if (!me.timerId) {
// show mask after 500 ms if it wont be hided
me.timerId = setTimeout(function () {
me.internalShow();
},500);
}
return this;
},

View file

@ -87,7 +87,7 @@ define([
'<% if (me.options.dynamiccolors!==undefined) { %>' +
'<div class="palette-color-spacer" style="width:100%;height:8px;float:left;"></div><div style="padding: 12px;">' +
'<% for (var i=0; i<me.options.dynamiccolors; i++) { %>' +
'<a class="color-dynamic-<%=i%> dynamic-empty-color" style="background:#ffffff" color="" idx="<%=idx++%>">' +
'<a class="color-dynamic-<%=i%> dynamic-empty-color" color="" idx="<%=idx++%>">' +
'<em><span unselectable="on">&#160;</span></em></a>' +
'<% } %>' +
'<% } %>' +

View file

@ -136,9 +136,15 @@ define([
this.currentServerVersion = record.get('serverVersion');
if ( _.isEmpty(url) || (urlGetTime - record.get('urlGetTime') > 5 * 60000)) {
_.delay(function() {
Common.Gateway.requestHistoryData(rev); // получаем url-ы для ревизий
}, 10);
var me = this;
if (!me.timerId) {
me.timerId = setTimeout(function () {
me.timerId = 0;
},30000);
_.delay(function() {
Common.Gateway.requestHistoryData(rev); // получаем url-ы для ревизий
}, 10);
}
} else {
var commentsController = this.getApplication().getController('Common.Controllers.Comments');
if (commentsController) {
@ -168,6 +174,11 @@ define([
onSetHistoryData: function(opts) {
if (!this.mode.canUseHistory) return;
if (this.timerId) {
clearTimeout(this.timerId);
this.timerId = 0;
}
if (opts.data.error) {
var config = {
title: this.notcriticalErrorTitle,
@ -217,6 +228,7 @@ define([
hist.asc_setIsRequested(true);
hist.asc_setServerVersion(this.currentServerVersion);
this.api.asc_showRevision(hist);
this.currentRev = data.version;
var reviewController = this.getApplication().getController('Common.Controllers.ReviewChanges');
if (reviewController)

View file

@ -286,7 +286,8 @@ define([
currentThemeId: function () {
var t = Common.localStorage.getItem('ui-theme') || Common.localStorage.getItem('ui-theme-id');
return get_ui_theme_name(t) || id_default_light_theme;
var id = get_ui_theme_name(t);
return !!themes_map[id] ? id : id_default_light_theme;
},
defaultThemeId: function (type) {

View file

@ -99,7 +99,7 @@
'<div class="separator horizontal"></div>',
'<div class="footer right">',
'<button class="btn normal dlg-btn" result="replace">'+this.txtBtnReplace+'</button>',
'<button class="btn normal dlg-btn" result="replaceall" style="margin-left: 6px;width: auto;">'+this.txtBtnReplaceAll+'</button>',
'<button class="btn normal dlg-btn" result="replaceall" style="margin-left: 6px;width: auto;min-width: 100px;">'+this.txtBtnReplaceAll+'</button>',
'<button class="btn normal dlg-btn iconic" result="back"><span class="icon img-commonctrl back"></span></button>',
'<button class="btn normal dlg-btn iconic" result="next" style="margin-left: 6px;"><span class="icon img-commonctrl next"></span></button>',
'</div>'

View file

@ -39,11 +39,16 @@
}
}
.dynamic-empty-color em span {
border:solid @scaled-one-px-value-ie @border-color-shading-ie;
border:solid @scaled-one-px-value @border-color-shading;
.dynamic-empty-color {
background: @background-normal-ie;
background: @background-normal;
em span {
border: solid @scaled-one-px-value-ie @border-color-shading-ie;
border: solid @scaled-one-px-value @border-color-shading;
background: @background-normal-ie;
background: @background-normal;
}
}
.color-transparent {

View file

@ -648,7 +648,8 @@
&, &:hover, &:focus {
background-color: @highlight-button-pressed-ie;
background-color: @highlight-button-pressed;
color: @dropdown-link-active-color;
color: @text-normal-ie;
color: @text-normal;
span.color {
border-color: @icon-normal-ie;
border-color: @icon-normal;

View file

@ -1,24 +1,24 @@
import {action, observable, makeObservable} from 'mobx';
export class storeReview {
constructor() {
makeObservable(this, {
displayMode: observable,
dataChanges: observable,
changeDisplayMode: action,
changeArrReview: action
});
}
displayMode = 'markup';
changeDisplayMode (mode) {
this.displayMode = mode;
}
dataChanges = [];
changeArrReview (data) {
this.dataChanges = data && data.length > 0 ? data : [];
}
import {action, observable, makeObservable} from 'mobx';
export class storeReview {
constructor() {
makeObservable(this, {
displayMode: observable,
dataChanges: observable,
changeDisplayMode: action,
changeArrReview: action
});
}
displayMode = 'markup';
changeDisplayMode (mode) {
this.displayMode = mode;
}
dataChanges = [];
changeArrReview (data) {
this.dataChanges = data && data.length > 0 ? data : [];
}
}

View file

@ -203,26 +203,21 @@ class SearchView extends Component {
onEditorTouchStart(e) {
this.startPoint = this.pointerPosition(e);
// console.log(this.startPoint);
}
onEditorTouchEnd(e) {
const endPoint = this.pointerPosition(e);
// console.log(endPoint);
if (this.searchbar.enabled) {
let distance;
if(this.startPoint) {
distance = (!!this.startPoint.x || !!this.startPoint.y) ? 0 :
distance = (this.startPoint.x === undefined || this.startPoint.y === undefined) ? 0 :
Math.sqrt((endPoint.x -= this.startPoint.x) * endPoint.x + (endPoint.y -= this.startPoint.y) * endPoint.y);
} else {
distance = 0;
}
// const distance = (this.startPoint === undefined || this.startPoint === undefined) ? 0 :
// Math.sqrt((endPoint.x -= this.startPoint.x) * endPoint.x + (endPoint.y -= this.startPoint.y) * endPoint.y);
if (distance < 1) {
this.searchbar.disable();
}
@ -231,15 +226,10 @@ class SearchView extends Component {
pointerPosition(e) {
let out = {x:0, y:0};
if ( e.type == 'touchstart' || e.type == 'touchend' ) {
const touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0];
out.x = touch.pageX;
out.y = touch.pageY;
} else if ( e.type == 'mousedown' || e.type == 'mouseup' ) {
if ( e.type == 'pointerdown' || e.type == 'pointerup' || e.type == 'mousedown' || e.type == 'mouseup') {
out.x = e.pageX;
out.y = e.pageY;
}
return out;
}

View file

@ -628,10 +628,11 @@ const pickLink = (message) => {
}
// View comments
const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onResolveComment, showComment}) => {
const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onResolveComment, showComment, storeReview}) => {
const { t } = useTranslation();
const _t = t('Common.Collaboration', {returnObjects: true});
const isAndroid = Device.android;
const displayMode = storeReview.displayMode;
const viewMode = !storeAppOptions.canComments;
const comments = storeComments.groupCollectionFilter || storeComments.collectionComments;
@ -672,10 +673,13 @@ const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onRes
</div>
{!viewMode &&
<div className='right'>
{comment.editable && <div className='comment-resolve' onClick={() => {onResolveComment(comment);}}><Icon icon={comment.resolved ? 'icon-resolve-comment check' : 'icon-resolve-comment'} /></div> }
<div className='comment-menu'
onClick={() => {setComment(comment); openActionComment(true);}}
><Icon icon='icon-menu-comment'/></div>
{(comment.editable && displayMode === 'markup') && <div className='comment-resolve' onClick={() => {onResolveComment(comment);}}><Icon icon={comment.resolved ? 'icon-resolve-comment check' : 'icon-resolve-comment'} /></div> }
{displayMode === 'markup' &&
<div className='comment-menu'
onClick={() => {setComment(comment); openActionComment(true);}}>
<Icon icon='icon-menu-comment'/>
</div>
}
</div>
}
</div>
@ -734,13 +738,14 @@ const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onRes
)
};
const _ViewComments = inject('storeComments', 'storeAppOptions')(observer(ViewComments));
const _ViewComments = inject('storeComments', 'storeAppOptions', "storeReview")(observer(ViewComments));
const CommentList = inject("storeComments", "storeAppOptions")(observer(({storeComments, storeAppOptions, onCommentMenuClick, onResolveComment}) => {
const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(observer(({storeComments, storeAppOptions, onCommentMenuClick, onResolveComment, storeReview}) => {
const { t } = useTranslation();
const _t = t('Common.Collaboration', {returnObjects: true});
const isAndroid = Device.android;
const displayMode = storeReview.displayMode;
const viewMode = !storeAppOptions.canComments;
const comments = storeComments.showComments;
@ -801,10 +806,13 @@ const CommentList = inject("storeComments", "storeAppOptions")(observer(({storeC
</div>
{!viewMode &&
<div className='right'>
{comment.editable && <div className='comment-resolve' onClick={() => {onResolveComment(comment);}}><Icon icon={comment.resolved ? 'icon-resolve-comment check' : 'icon-resolve-comment'}/></div>}
<div className='comment-menu'
onClick={() => {openActionComment(true);}}
><Icon icon='icon-menu-comment'/></div>
{(comment.editable && displayMode === 'markup') && <div className='comment-resolve' onClick={() => {onResolveComment(comment);}}><Icon icon={comment.resolved ? 'icon-resolve-comment check' : 'icon-resolve-comment'}/></div>}
{displayMode === 'markup' &&
<div className='comment-menu'
onClick={() => {openActionComment(true);}}>
<Icon icon='icon-menu-comment'/>
</div>
}
</div>
}
</div>

View file

@ -189,6 +189,7 @@
}
}
.toolbar {
position: absolute;
border-radius: 0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius);
}
}
@ -226,4 +227,12 @@
.no-comments {
text-align: center;
margin-top: 35px;
}
.actions-modal.modal-in {
z-index: 13700;
}
.actions-backdrop.backdrop-in {
z-index: 13600;
}

View file

@ -836,6 +836,12 @@ input[type="number"]::-webkit-inner-spin-button {
overflow: hidden;
}
// Statusbar
.statusbar .statusbar--box-tabs > ul > .locked a {
box-shadow: inset 0 2px red;
}

View file

@ -50,7 +50,7 @@
.loadmask > .brendpanel .loading-logo > img {
display: inline-block;
max-width: 100px;
max-width: 124px;
max-height: 20px;
margin-top: 2px;
opacity: 0;
@ -221,7 +221,7 @@
</div>
</div>
<div class="hyperlink-tooltip" data-toggle="tooltip" title="Press Ctrl and click the link" style="display:none;"></div>
<div class="hyperlink-tooltip" data-toggle="tooltip" title="" style="display:none;"></div>
<!--vendor-->
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>

View file

@ -48,7 +48,7 @@
.loadmask > .brendpanel .loading-logo > img {
display: inline-block;
max-width: 100px;
max-width: 124px;
max-height: 20px;
margin-top: 2px;
opacity: 0;
@ -213,7 +213,7 @@
</div>
</div>
<div class="hyperlink-tooltip" data-toggle="tooltip" title="Press Ctrl and click the link" style="display:none;"></div>
<div class="hyperlink-tooltip" data-toggle="tooltip" title="" style="display:none;"></div>
<!--vendor-->
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>

View file

@ -322,7 +322,7 @@
</div>
</div>
<div class="hyperlink-tooltip" data-toggle="tooltip" title="Press Ctrl and click the link" style="display:none;"></div>
<div class="hyperlink-tooltip" data-toggle="tooltip" title="" style="display:none;"></div>
<!--vendor-->
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>

View file

@ -314,7 +314,7 @@
</div>
</div>
<div class="hyperlink-tooltip" data-toggle="tooltip" title="Press Ctrl and click the link" style="display:none;"></div>
<div class="hyperlink-tooltip" data-toggle="tooltip" title="" style="display:none;"></div>
<!--vendor-->
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>

View file

@ -43,7 +43,9 @@ DE.ApplicationController = new(function(){
labelDocName,
appOptions = {},
btnSubmit,
_submitFail, $submitedTooltip, $requiredTooltip;
_submitFail, $submitedTooltip, $requiredTooltip,
$listControlMenu, listControlItems = [], listObj,
bodyWidth = 0;
var LoadingDocument = -256;
@ -83,6 +85,7 @@ DE.ApplicationController = new(function(){
} else {
$('#toolbar').addClass('top');
$('#editor_sdk').addClass('top');
ttOffset[1] = 40;
}
config.canBackToFolder = (config.canBackToFolder!==false) && config.customization && config.customization.goback &&
@ -218,33 +221,47 @@ DE.ApplicationController = new(function(){
var $ttEl, $tooltip;
function onDocMouseMove(data) {
if (data) {
if (data.get_Type() == 1) { // hyperlink
var type = data.get_Type();
if (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink || type==Asc.c_oAscMouseMoveDataTypes.Form) { // hyperlink
me.isHideBodyTip = false;
var str = (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? me.txtPressLink : data.get_FormHelpText();
if (str.length>500)
str = str.substr(0, 500) + '...';
str = common.utils.htmlEncode(str);
if ( !$ttEl ) {
$ttEl = $('.hyperlink-tooltip');
$ttEl.tooltip({'container':'body', 'trigger':'manual'});
$ttEl.on('shown.bs.tooltip', function(e) {
$tooltip = $ttEl.data('bs.tooltip').tip();
$tooltip.css({
left: $ttEl.ttpos[0] + ttOffset[0],
top: $ttEl.ttpos[1] + ttOffset[1]
});
$tooltip.find('.tooltip-arrow').css({left: 10});
});
}
$ttEl.ttpos = [data.get_X(), data.get_Y()];
if ( !$tooltip)
$tooltip = $ttEl.data('bs.tooltip').tip();
if ( !$tooltip ) {
$ttEl.ttpos = [data.get_X(), data.get_Y()];
$ttEl.tooltip('show');
} else {
$tooltip.css({
left:data.get_X() + ttOffset[0],
top:data.get_Y() + ttOffset[1]
});
if (!$tooltip.is(':visible')) {
var tip = $ttEl.data('bs.tooltip');
tip.options.title = str;
tip.show([-1000, -1000]);
} else
$tooltip.find('.tooltip-inner')['text'](str);
var ttHeight = $tooltip.height(),
ttWidth = $tooltip.width();
!bodyWidth && (bodyWidth = $('body').width());
$ttEl.ttpos[1] -= (ttHeight - ttOffset[1] + 20);
if ($ttEl.ttpos[0] + ttWidth + 10 >bodyWidth) {
$ttEl.ttpos[0] = bodyWidth - ttWidth - 5;
if ($ttEl.ttpos[1] < 0)
$ttEl.ttpos[1] += ttHeight + ttOffset[1] + 20;
} else if ($ttEl.ttpos[1] < 0) {
$ttEl.ttpos[1] = 0;
$ttEl.ttpos[0] += 20;
}
$tooltip.css({
left: $ttEl.ttpos[0],
top: $ttEl.ttpos[1]
});
}
}
}
@ -273,6 +290,97 @@ DE.ApplicationController = new(function(){
}
}
function onShowContentControlsActions(obj, x, y) {
switch (obj.type) {
case Asc.c_oAscContentControlSpecificType.Picture:
if (obj.pr && obj.pr.get_Lock) {
var lock = obj.pr.get_Lock();
if (lock == Asc.c_oAscSdtLockType.SdtContentLocked || lock==Asc.c_oAscSdtLockType.ContentLocked)
return;
}
api.asc_addImage(obj);
setTimeout(function(){
api.asc_UncheckContentControlButtons();
}, 500);
break;
case Asc.c_oAscContentControlSpecificType.DropDownList:
case Asc.c_oAscContentControlSpecificType.ComboBox:
onShowListActions(obj, x, y);
break;
}
}
function onHideContentControlsActions() {
$listControlMenu && $listControlMenu.hide();
api.asc_UncheckContentControlButtons();
}
function onShowListActions(obj, x, y) {
var type = obj.type,
props = obj.pr,
specProps = (type == Asc.c_oAscContentControlSpecificType.ComboBox) ? props.get_ComboBoxPr() : props.get_DropDownListPr(),
isForm = !!props.get_FormPr();
var menuContainer = DE.ApplicationView.getMenuForm();
if (!$listControlMenu) {
$listControlMenu = menuContainer.find('ul');
$listControlMenu.on('click', 'li', function(e) {
var value = $(e.target).attr('value');
if (value) {
value = parseInt(value);
setTimeout(function(){
(value!==-1) && api.asc_SelectContentControlListItem(listControlItems[value], listObj.get_InternalId());
}, 1);
}
});
$('#editor_sdk').on('click', function(e){
if (e.target.localName == 'canvas') {
if (me._preventClick)
me._preventClick = false;
else {
$listControlMenu && $listControlMenu.hide();
api.asc_UncheckContentControlButtons();
}
}
});
}
$listControlMenu.find('li').remove();
listControlItems = [];
listObj = props;
if (specProps) {
var k = 0;
if (isForm){ // for dropdown and combobox form control always add placeholder item
var text = props.get_PlaceholderText();
$listControlMenu.append('<li><a tabindex="-1" type="menuitem" style="opacity: 0.6" value="0">' +
((text.trim()!=='') ? text : me.txtEmpty) +
'</a></li>');
listControlItems.push('');
}
var count = specProps.get_ItemsCount();
k = listControlItems.length;
for (var i=0; i<count; i++) {
if (specProps.get_ItemValue(i)!=='' || !isForm) {
$listControlMenu.append('<li><a tabindex="-1" type="menuitem" value="' + (i+k) + '">' +
common.utils.htmlEncode(specProps.get_ItemDisplayText(i)) +
'</a></li>');
listControlItems.push(specProps.get_ItemValue(i));
}
}
if (!isForm && listControlItems.length<1) {
$listControlMenu.append('<li><a tabindex="-1" type="menuitem" value="0">' +
me.txtEmpty +
'</a></li>');
listControlItems.push(-1);
}
}
menuContainer.css({left: x, top : y});
me._preventClick = true;
$listControlMenu.show();
}
function hidePreloader() {
$('#loading-mask').fadeOut('slow');
}
@ -350,6 +458,11 @@ DE.ApplicationController = new(function(){
api.asc_registerCallback('asc_onPrint', onPrint);
api.asc_registerCallback('asc_onPrintUrl', onPrintUrl);
api.asc_registerCallback('sync_onAllRequiredFormsFilled', onFillRequiredFields);
if (appOptions.canFillForms) {
api.asc_registerCallback('asc_onShowContentControlsActions', onShowContentControlsActions);
api.asc_registerCallback('asc_onHideContentControlsActions', onHideContentControlsActions);
api.asc_SetHighlightRequiredFields(true);
}
Common.Gateway.on('processmouse', onProcessMouse);
Common.Gateway.on('downloadas', onDownloadAs);
@ -710,6 +823,7 @@ DE.ApplicationController = new(function(){
function onDocumentResize() {
api && api.Resize();
bodyWidth = $('body').width();
}
function createController(){
@ -812,6 +926,8 @@ DE.ApplicationController = new(function(){
textAnonymous: 'Anonymous',
textRequired: 'Fill all required fields to send form.',
textGotIt: 'Got it',
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later."
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
txtEmpty: '(Empty)',
txtPressLink: 'Press Ctrl and click link'
}
})();

View file

@ -36,6 +36,7 @@ if (DE === undefined) {
DE.ApplicationView = new(function(){
var $btnTools;
var $menuForm;
// Initialize view
@ -63,11 +64,23 @@ DE.ApplicationView = new(function(){
return $btnTools.parent().find(name);
}
function getMenuForm() {
if (!$menuForm) {
$menuForm = $('<div id="menu-container-form" style="position: absolute; z-index: 10000;" data-value="prevent-canvas-click">' +
'<div class="dropdown-toggle" data-toggle="dropdown"></div>' +
'<ul class="dropdown-menu" oo_editor_input="true" role="menu" style="right: 0; left: auto;max-height: 200px; overflow-y: auto;"></ul>' +
'</div>');
$('#editor_sdk').append($menuForm);
}
return $menuForm;
}
return {
create: createView
, tools: {
get: getTools
},
getMenuForm: getMenuForm,
txtDownload: 'Download',
txtPrint: 'Print',

View file

@ -14,10 +14,10 @@
"DE.ApplicationController.errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download as...' option to save the file backup copy to your computer hard drive.",
"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.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
"DE.ApplicationController.errorSubmit": "Submit failed.",
"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.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
"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.textAnonymous": "Anonymous",
@ -31,6 +31,8 @@
"DE.ApplicationController.textSubmit": "Submit",
"DE.ApplicationController.textSubmited": "<b>Form submitted successfully</b><br>Click to close the tip",
"DE.ApplicationController.txtClose": "Close",
"DE.ApplicationController.txtEmpty": "(Empty)",
"DE.ApplicationController.txtPressLink": "Press Ctrl and click link",
"DE.ApplicationController.unknownErrorText": "Unknown error.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.",
"DE.ApplicationController.waitText": "Please, wait...",

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
"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.textAnonymous": "Anonimo",
"DE.ApplicationController.textClear": "Cancella tutti i campi",
"DE.ApplicationController.textGotIt": "Capito",
"DE.ApplicationController.textGuest": "Ospite",
"DE.ApplicationController.textLoadingDocument": "Caricamento del documento",
"DE.ApplicationController.textNext": "Campo successivo",
"DE.ApplicationController.textOf": "di",
"DE.ApplicationController.textRequired": "Compila tutti i campi richiesti per inviare il modulo.",
"DE.ApplicationController.textSubmit": "Invia",
"DE.ApplicationController.textSubmited": "<b>Modulo inviato con successo</b><br>Fare click per chiudere la notifica</br>",
"DE.ApplicationController.txtClose": "Chiudi",

View file

@ -11,20 +11,33 @@
"DE.ApplicationController.downloadTextText": "ドキュメントのダウンロード中...",
"DE.ApplicationController.errorAccessDeny": "利用権限がない操作をしようとしました。<br>Documentサーバー管理者に連絡してください。",
"DE.ApplicationController.errorDefaultMessage": "エラー コード: %1",
"DE.ApplicationController.errorEditingDownloadas": "ドキュメントの作業中にエラーが発生しました。<br>「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピュータに保存します。",
"DE.ApplicationController.errorFilePassProtect": "ドキュメントがパスワードで保護されているため開くことができません",
"DE.ApplicationController.errorFileSizeExceed": "ファイルサイズがサーバーで設定された制限を超過しています。<br>Documentサーバー管理者に詳細をお問い合わせください。",
"DE.ApplicationController.errorSubmit": "送信に失敗しました。",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。<br>作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。",
"DE.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。",
"DE.ApplicationController.notcriticalErrorTitle": "警告",
"DE.ApplicationController.scriptLoadError": "接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。",
"DE.ApplicationController.textAnonymous": "匿名",
"DE.ApplicationController.textClear": "すべてのフィールドを削除する",
"DE.ApplicationController.textGotIt": "OK",
"DE.ApplicationController.textGuest": "ゲスト",
"DE.ApplicationController.textLoadingDocument": "ドキュメントを読み込んでいます",
"DE.ApplicationController.textNext": "次のフィールド",
"DE.ApplicationController.textOf": "から",
"DE.ApplicationController.textRequired": "必須事項をすべて入力し、送信してください。",
"DE.ApplicationController.textSubmit": "送信",
"DE.ApplicationController.textSubmited": "<b>フォームが正常に送信されました。</b><br>クリックしてヒントを閉じます。",
"DE.ApplicationController.txtClose": "閉じる",
"DE.ApplicationController.unknownErrorText": "不明なエラー",
"DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。",
"DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザサポートされていません。",
"DE.ApplicationController.waitText": "少々お待ちください...",
"DE.ApplicationView.txtDownload": "ダウンロード",
"DE.ApplicationView.txtDownloadDocx": "docxとして保存",
"DE.ApplicationView.txtDownloadPdf": "PDFとして保存",
"DE.ApplicationView.txtEmbed": "埋め込み",
"DE.ApplicationView.txtFileLocation": "ファイルを開く",
"DE.ApplicationView.txtFullScreen": "全画面表示",
"DE.ApplicationView.txtPrint": "印刷する",
"DE.ApplicationView.txtShare": "シェア"

View file

@ -17,6 +17,7 @@
"DE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.",
"DE.ApplicationController.notcriticalErrorTitle": "경고",
"DE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.",
"DE.ApplicationController.textAnonymous": "익명사용자",
"DE.ApplicationController.textLoadingDocument": "문서 로드 중",
"DE.ApplicationController.textOf": "의",
"DE.ApplicationController.txtClose": "닫기",
@ -24,6 +25,8 @@
"DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.",
"DE.ApplicationController.waitText": "잠시만 기달려주세요...",
"DE.ApplicationView.txtDownload": "다운로드 ",
"DE.ApplicationView.txtDownloadDocx": "docx 형식으로 다운로드",
"DE.ApplicationView.txtDownloadPdf": "PDF형식으로 다운로드",
"DE.ApplicationView.txtEmbed": "개체 삽입",
"DE.ApplicationView.txtFullScreen": "전체 화면",
"DE.ApplicationView.txtShare": "공유"

View file

@ -30,6 +30,7 @@
"DE.ApplicationController.textSubmit": "Отправить",
"DE.ApplicationController.textSubmited": "<b>Форма успешно отправлена</b><br>Нажмите, чтобы закрыть подсказку",
"DE.ApplicationController.txtClose": "Закрыть",
"DE.ApplicationController.txtPressLink": "Нажмите Ctrl и щелкните по ссылке",
"DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.",
"DE.ApplicationController.waitText": "Пожалуйста, подождите...",

View file

@ -11,20 +11,33 @@
"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.errorEditingDownloadas": "Ett fel har inträffat.<br>Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.",
"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.errorSubmit": "Gick ej att verkställa.",
"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.textAnonymous": "Anonym",
"DE.ApplicationController.textClear": "Rensa fält",
"DE.ApplicationController.textGotIt": "Ok!",
"DE.ApplicationController.textGuest": "Gäst",
"DE.ApplicationController.textLoadingDocument": "Laddar dokument",
"DE.ApplicationController.textNext": "Nästa fält",
"DE.ApplicationController.textOf": "av",
"DE.ApplicationController.textRequired": "Fyll i alla fält för att skicka formulär.",
"DE.ApplicationController.textSubmit": "Verkställ",
"DE.ApplicationController.textSubmited": "<b> Formulär skickat </b> <br> Klicka för att stänga tipset",
"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.txtDownloadDocx": "Ladda ner som docx",
"DE.ApplicationView.txtDownloadPdf": "Ladda ner som pdf",
"DE.ApplicationView.txtEmbed": "Inbädda",
"DE.ApplicationView.txtFileLocation": "Gå till filens plats",
"DE.ApplicationView.txtFullScreen": "Fullskärm",
"DE.ApplicationView.txtPrint": "Skriva ut",
"DE.ApplicationView.txtShare": "Dela"

View file

@ -194,6 +194,7 @@ define([
this.disableEditing(state);
this.api.asc_setRestriction(state ? Asc.c_oAscRestrictionType.OnlyForms : Asc.c_oAscRestrictionType.None);
this.api.asc_SetPerformContentControlActionByClick(state);
this.api.asc_SetHighlightRequiredFields(state);
}
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
},

View file

@ -1049,7 +1049,7 @@ define([
this.loadMask.setTitle(title);
if (!this.isShowOpenDialog)
this.loadMask.show();
this.loadMask.show(action.id===Asc.c_oAscAsyncAction['Open']);
} else {
this.getApplication().getController('Statusbar').setStatusCaption(text, force);
}
@ -1477,6 +1477,7 @@ define([
this.api.asc_setViewMode(!this.appOptions.isEdit && !this.appOptions.isRestrictedEdit);
this.appOptions.isRestrictedEdit && this.appOptions.canComments && this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyComments);
this.appOptions.isRestrictedEdit && this.appOptions.canFillForms && this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyForms);
this.appOptions.isRestrictedEdit && this.appOptions.canFillForms && this.api.asc_SetHighlightRequiredFields(true);
this.api.asc_LoadDocument();
},

View file

@ -322,6 +322,7 @@ define([
toolbar.btnShowHidenChars.on('toggle', _.bind(this.onNonPrintingToggle, this));
toolbar.mnuTablePicker.on('select', _.bind(this.onTablePickerSelect, this));
toolbar.mnuInsertTable.on('item:click', _.bind(this.onInsertTableClick, this));
toolbar.mnuInsertTable.on('show:after', _.bind(this.onInsertTableShow, this));
toolbar.mnuInsertImage.on('item:click', _.bind(this.onInsertImageClick, this));
toolbar.btnInsertText.on('click', _.bind(this.onBtnInsertTextClick, this));
toolbar.btnInsertShape.menu.on('hide:after', _.bind(this.onInsertShapeHide, this));
@ -1524,6 +1525,11 @@ define([
Common.component.Analytics.trackEvent('ToolBar', 'Table');
},
onInsertTableShow: function(menu) {
var selected = this.api.asc_GetSelectedText();
menu.items[4].setDisabled(!selected || selected.length<1);
},
onInsertTableClick: function(menu, item, e) {
var me = this;
if (item.value === 'custom') {

View file

@ -204,8 +204,8 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
this.btnDown.on('click', _.bind(this.onMoveItem, this, false));
// date picker
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
{ value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value);

View file

@ -88,8 +88,8 @@ define([
render: function () {
Common.UI.Window.prototype.render.call(this);
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
{ value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value);

View file

@ -719,18 +719,18 @@ define([
if (this.api && !this._noApply) {
var props = this._originalProps || new AscCommon.CContentControlPr();
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
var formPr = this._originalFormProps || new AscCommon.CSdtFormPr();
if (color == 'transparent') {
formTextPr.put_CombBorder();
formPr.put_Border();
} else {
var brd = formTextPr.get_CombBorder();
var brd = formPr.get_Border();
if (!brd)
brd = new Asc.asc_CTextBorder();
brd.put_Value(1);
brd.put_Color(Common.Utils.ThemeColor.getRgbColor(color));
formTextPr.put_CombBorder(brd);
formPr.put_Border(brd);
}
props.put_TextFormPr(formTextPr);
props.put_FormPr(formPr);
this.api.asc_SetContentControlProperties(props, this.internalId);
this.fireEvent('editcomplete', this);
}
@ -742,9 +742,9 @@ define([
if (this.api && !this._noApply) {
var props = this._originalProps || new AscCommon.CContentControlPr();
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
formTextPr.put_CombBorder();
props.put_TextFormPr(formTextPr);
var formPr = this._originalFormProps || new AscCommon.CSdtFormPr();
formPr.put_Border();
props.put_FormPr(formPr);
this.api.asc_SetContentControlProperties(props, this.internalId);
this.fireEvent('editcomplete', this);
}
@ -890,6 +890,33 @@ define([
this._state.Fixed=val;
}
}
var brd = formPr.get_Border();
if (brd) {
var color = brd.get_Color();
if (color) {
if (color.get_type() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) {
this.BorderColor = {color: Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()), effectValue: color.get_value() };
} else {
this.BorderColor = Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b());
}
} else
this.BorderColor = 'transparent';
} else
this.BorderColor = 'transparent';
var type1 = typeof(this.BorderColor),
type2 = typeof(this._state.BorderColor);
if ( (type1 !== type2) || (type1=='object' &&
(this.BorderColor.effectValue!==this._state.BorderColor.effectValue || this._state.BorderColor.color.indexOf(this.BorderColor.color)<0)) ||
(type1!='object' && this._state.BorderColor.indexOf(this.BorderColor)<0 )) {
this.btnColor.setColor(this.BorderColor);
this.mnuColorPicker.clearSelection();
this.mnuNoBorder.setChecked(this.BorderColor == 'transparent', true);
(this.BorderColor != 'transparent') && this.mnuColorPicker.selectByRGB(typeof(this.BorderColor) == 'object' ? this.BorderColor.color : this.BorderColor,true);
this._state.BorderColor = this.BorderColor;
}
}
var pictPr = props.get_PictureFormPr();
@ -933,8 +960,6 @@ define([
}
this.chAutofit.setDisabled(!this._state.Fixed || this._state.Comb);
this.btnColor.setDisabled(!this._state.Comb);
this.spnWidth.setDisabled(!this._state.Comb);
val = formTextPr.get_Width();
if ( (val===undefined || this._state.Width===undefined)&&(this._state.Width!==val) || Math.abs(this._state.Width-val)>0.1) {
@ -955,33 +980,6 @@ define([
this.spnMaxChars.setValue(val && val>=0 ? val : 10, true);
this._state.MaxChars=val;
}
var brd = formTextPr.get_CombBorder();
if (brd) {
var color = brd.get_Color();
if (color) {
if (color.get_type() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) {
this.BorderColor = {color: Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()), effectValue: color.get_value() };
} else {
this.BorderColor = Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b());
}
} else
this.BorderColor = 'transparent';
} else
this.BorderColor = 'transparent';
var type1 = typeof(this.BorderColor),
type2 = typeof(this._state.BorderColor);
if ( (type1 !== type2) || (type1=='object' &&
(this.BorderColor.effectValue!==this._state.BorderColor.effectValue || this._state.BorderColor.color.indexOf(this.BorderColor.color)<0)) ||
(type1!='object' && this._state.BorderColor.indexOf(this.BorderColor)<0 )) {
this.btnColor.setColor(this.BorderColor);
this.mnuColorPicker.clearSelection();
this.mnuNoBorder.setChecked(this.BorderColor == 'transparent', true);
(this.BorderColor != 'transparent') && this.mnuColorPicker.selectByRGB(typeof(this.BorderColor) == 'object' ? this.BorderColor.color : this.BorderColor,true);
this._state.BorderColor = this.BorderColor;
}
}
this._noApply = false;

View file

@ -247,7 +247,7 @@ define([
maxLength: 1,
validateOnChange: true,
validateOnBlur: false,
value: '-'
value: Common.Utils.InternalSettings.get("de-text-to-table-separator") || '-'
}).on ('changing', function(input, newValue) {
if (me.props && newValue) {
me.props.put_SeparatorType(3, true);
@ -315,6 +315,7 @@ define([
if (this.props) {
this.props.put_AutoFitType(this.rbFixed.getValue() ? 1 : (this.rbContents.getValue() ? 2 : 3));
this.rbFixed.getValue() && this.props.put_Fit(Common.Utils.Metric.fnRecalcToMM(this.spnWidth.getNumberValue()));
this.rbOther.getValue() && Common.Utils.InternalSettings.set("de-text-to-table-separator", String.fromCharCode(this.props.get_Separator()));
}
return this.props;

File diff suppressed because it is too large Load diff

View file

@ -1168,7 +1168,7 @@
"DE.Controllers.Toolbar.txtSymbol_mp": "Moins plus",
"DE.Controllers.Toolbar.txtSymbol_mu": "Mu",
"DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla",
"DE.Controllers.Toolbar.txtSymbol_neq": "N'est pas égal à",
"DE.Controllers.Toolbar.txtSymbol_neq": "N'est pas égale à",
"DE.Controllers.Toolbar.txtSymbol_ni": "Contient comme élément",
"DE.Controllers.Toolbar.txtSymbol_not": "Signe négation",
"DE.Controllers.Toolbar.txtSymbol_notexists": "Inexistant",
@ -2716,7 +2716,7 @@
"DE.Views.Toolbar.txtMarginAlign": "Aligner par rapport à la marge",
"DE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés",
"DE.Views.Toolbar.txtPageAlign": "Aligner par rapport à la page",
"DE.Views.Toolbar.txtScheme1": "Bureau",
"DE.Views.Toolbar.txtScheme1": "Office",
"DE.Views.Toolbar.txtScheme10": "Médian",
"DE.Views.Toolbar.txtScheme11": "Métro",
"DE.Views.Toolbar.txtScheme12": "Module",
@ -2733,7 +2733,7 @@
"DE.Views.Toolbar.txtScheme22": "New Office",
"DE.Views.Toolbar.txtScheme3": "Apex",
"DE.Views.Toolbar.txtScheme4": "Proportions",
"DE.Views.Toolbar.txtScheme5": "Civique",
"DE.Views.Toolbar.txtScheme5": "Civil",
"DE.Views.Toolbar.txtScheme6": "Rotonde",
"DE.Views.Toolbar.txtScheme7": "Capitaux",
"DE.Views.Toolbar.txtScheme8": "Flux",

View file

@ -1737,6 +1737,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra notifica",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica",
"DE.Views.FileMenuPanels.Settings.txtWin": "come su Windows",
"DE.Views.FormSettings.textAlways": "Sempre",
"DE.Views.FormSettings.textAspect": "Blocca proporzioni",
"DE.Views.FormSettings.textAutofit": "adattare automaticamente",
"DE.Views.FormSettings.textCheckbox": "Casella di controllo",
"DE.Views.FormSettings.textColor": "Colore bordo",
"DE.Views.FormSettings.textComb": "Combinazione di caratteri",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Chiave",
"DE.Views.FormSettings.textLock": "Blocca",
"DE.Views.FormSettings.textMaxChars": "Limite caratteri",
"DE.Views.FormSettings.textMulti": "Campo con molte righe",
"DE.Views.FormSettings.textNever": "Mai",
"DE.Views.FormSettings.textNoBorder": "Senza bordo",
"DE.Views.FormSettings.textPlaceholder": "Segnaposto",
"DE.Views.FormSettings.textRadiobox": "Pulsante opzione",
"DE.Views.FormSettings.textRequired": "Richiesto",
"DE.Views.FormSettings.textScale": "Quando scalare",
"DE.Views.FormSettings.textSelectImage": "Seleziona Immagine",
"DE.Views.FormSettings.textTip": "Suggerimento",
"DE.Views.FormSettings.textTipAdd": "Aggiungi un nuovo valore",
"DE.Views.FormSettings.textTipDelete": "Elimina valore",
"DE.Views.FormSettings.textTipDown": "Sposta verso il basso",
"DE.Views.FormSettings.textTipUp": "Sposta verso l'alto",
"DE.Views.FormSettings.textTooBig": "L'immagine è troppo grande",
"DE.Views.FormSettings.textTooSmall": "L'immagine è troppo piccola",
"DE.Views.FormSettings.textUnlock": "Sblocca",
"DE.Views.FormSettings.textValue": "Opzioni di valore",
"DE.Views.FormSettings.textWidth": "Larghezza cella",
@ -1783,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Impostazioni evidenziazione",
"DE.Views.FormsTab.textNewColor": "Aggiungi Colore personalizzato",
"DE.Views.FormsTab.textNoHighlight": "Nessuna evidenziazione",
"DE.Views.FormsTab.textRequired": "Compila tutti i campi richiesti per inviare il modulo.",
"DE.Views.FormsTab.textSubmited": "Modulo inviato con successo",
"DE.Views.FormsTab.tipCheckBox": "Inserisci casella di controllo",
"DE.Views.FormsTab.tipComboBox": "Inserisci una cella combinata",
@ -2721,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Scala di grigi",
"DE.Views.Toolbar.txtScheme20": "Tramonto",
"DE.Views.Toolbar.txtScheme21": "Verve",
"DE.Views.Toolbar.txtScheme22": "Nuovo ufficio",
"DE.Views.Toolbar.txtScheme3": "Vertice",
"DE.Views.Toolbar.txtScheme4": "Aspetto",
"DE.Views.Toolbar.txtScheme5": "Civico",

View file

@ -48,6 +48,10 @@
"Common.Controllers.ReviewChanges.textNot": "ありません",
"Common.Controllers.ReviewChanges.textNoWidow": "改ページ時1行残して段落を区切らないを制御しない。",
"Common.Controllers.ReviewChanges.textNum": "番号設定の変更",
"Common.Controllers.ReviewChanges.textOff": "{0} は、変更履歴を使用しなくなりました。",
"Common.Controllers.ReviewChanges.textOffGlobal": "{0} は全員に変更履歴を無効にしました",
"Common.Controllers.ReviewChanges.textOn": "{0} は変更履歴を現在使用しています。",
"Common.Controllers.ReviewChanges.textOnGlobal": "{0} は全員に変更履歴を有効にしました。",
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>段落が削除されました</b>",
"Common.Controllers.ReviewChanges.textParaFormatted": "段落の書式変更",
"Common.Controllers.ReviewChanges.textParaInserted": "<b>段落が挿入されました</b>",
@ -114,8 +118,9 @@
"Common.define.chartData.textScatterSmoothMarker": "マーカーと平滑線付き散布図",
"Common.define.chartData.textStock": "株価チャート",
"Common.define.chartData.textSurface": "表面",
"Common.Translation.warnFileLocked": "文書が別のアプリで使用されています。編集を続けて、コピーとして保存できます。",
"Common.Translation.warnFileLocked": "このファイルは他のアプリで編集されているので、編集できません。",
"Common.Translation.warnFileLockedBtnEdit": "コピーを作成する",
"Common.Translation.warnFileLockedBtnView": "閲覧可能",
"Common.UI.Calendar.textApril": "四月",
"Common.UI.Calendar.textAugust": "八月",
"Common.UI.Calendar.textDecember": "十二月",
@ -173,7 +178,7 @@
"Common.UI.SynchronizeTip.textDontShow": "今後このメッセージを表示しない",
"Common.UI.SynchronizeTip.textSynchronize": "ドキュメントは他のユーザーによって変更されました。<br>変更を保存するためにここでクリックし、アップデートを再ロードしてください。",
"Common.UI.ThemeColorPalette.textStandartColors": "標準の色",
"Common.UI.ThemeColorPalette.textThemeColors": "テーマ",
"Common.UI.ThemeColorPalette.textThemeColors": "テーマカラー",
"Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)",
"Common.UI.Themes.txtThemeDark": "暗い",
"Common.UI.Themes.txtThemeLight": "明るい",
@ -198,17 +203,19 @@
"Common.Views.About.txtVersion": "バージョン",
"Common.Views.AutoCorrectDialog.textAdd": "加える",
"Common.Views.AutoCorrectDialog.textApplyText": "入力時に適用する",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "オートコレクト",
"Common.Views.AutoCorrectDialog.textAutoFormat": "入力時にオートフォーマット",
"Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き",
"Common.Views.AutoCorrectDialog.textBy": "幅",
"Common.Views.AutoCorrectDialog.textDelete": "削除する",
"Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする",
"Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)の代わりにダッシュ(—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "数式オートコレクト",
"Common.Views.AutoCorrectDialog.textNumbered": "自動番号付きリスト",
"Common.Views.AutoCorrectDialog.textQuotes": "左右の区別がない引用符を、区別がある引用符に変更する",
"Common.Views.AutoCorrectDialog.textRecognized": "認識された関数",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下の式は、認識される数式です。 自動的にイタリック体になることはありません。",
"Common.Views.AutoCorrectDialog.textReplace": "置き換え",
"Common.Views.AutoCorrectDialog.textReplace": "置き換え",
"Common.Views.AutoCorrectDialog.textReplaceText": "入力時に置き換える\n\t",
"Common.Views.AutoCorrectDialog.textReplaceType": "入力時にテキストを置き換える",
"Common.Views.AutoCorrectDialog.textReset": "リセット",
@ -229,7 +236,7 @@
"Common.Views.Comments.textCancel": "キャンセル",
"Common.Views.Comments.textClose": "閉じる",
"Common.Views.Comments.textComments": "コメント",
"Common.Views.Comments.textEdit": "編集",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "コメントをここに挿入する",
"Common.Views.Comments.textHintAddComment": "コメントを追加",
"Common.Views.Comments.textOpenAgain": "もう一度開きます",
@ -258,7 +265,7 @@
"Common.Views.Header.textHideLines": "ルーラを隠す",
"Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない",
"Common.Views.Header.textRemoveFavorite": "お気に入りから削除",
"Common.Views.Header.textZoom": "拡大",
"Common.Views.Header.textZoom": "拡大",
"Common.Views.Header.tipAccessRights": "文書のアクセス許可のの管理",
"Common.Views.Header.tipDownload": "ファイルをダウンロード",
"Common.Views.Header.tipGoEdit": "現在のファイルを編集する",
@ -333,10 +340,13 @@
"Common.Views.ReviewChanges.strStrictDesc": "あなたや他の人が行った変更を同期するために、[保存]ボタンを使用する",
"Common.Views.ReviewChanges.textEnable": "有効にする",
"Common.Views.ReviewChanges.textWarnTrackChanges": "変更履歴はフルアクセス権を持つすべてのユーザーに対して有効になります。次に他のユーザーがドキュメントを開いた時にも、変更履歴は有効になっています。",
"Common.Views.ReviewChanges.textWarnTrackChangesTitle": "全員に変更履歴を有効しますか?",
"Common.Views.ReviewChanges.tipAcceptCurrent": "今の変更を反映する",
"Common.Views.ReviewChanges.tipCoAuthMode": "共同編集モードを設定する",
"Common.Views.ReviewChanges.tipCommentRem": "コメントを削除する",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "現在のコメントを削除する",
"Common.Views.ReviewChanges.tipCommentResolve": "コメントを解決する",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "現在のコメントを解決する",
"Common.Views.ReviewChanges.tipCompare": "現在の文書を別の文書と比較する",
"Common.Views.ReviewChanges.tipHistory": "バージョン履歴を表示する",
"Common.Views.ReviewChanges.tipRejectCurrent": "現在の変更を元に戻します。",
@ -357,6 +367,11 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "私のコメントを削除する",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "私の現在のコメントを削除する",
"Common.Views.ReviewChanges.txtCommentRemove": "削除する",
"Common.Views.ReviewChanges.txtCommentResolve": "解決",
"Common.Views.ReviewChanges.txtCommentResolveAll": "すべてのコメントを解決する。",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "現在のコメントを解決する",
"Common.Views.ReviewChanges.txtCommentResolveMy": "自分のコメントを解決する。",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "現在のコメントを解決する",
"Common.Views.ReviewChanges.txtCompare": "比較",
"Common.Views.ReviewChanges.txtDocLang": "言語",
"Common.Views.ReviewChanges.txtFinal": "変更は承認",
@ -495,7 +510,7 @@
"DE.Controllers.Main.errorForceSave": "文書の保存中にエラーが発生しました。PCにファイルを保存するように「としてダウンロード」を使用し、または後で再試行してください。",
"DE.Controllers.Main.errorKeyEncrypt": "不明なキーの記述子",
"DE.Controllers.Main.errorKeyExpire": "署名キーは期限切れました。",
"DE.Controllers.Main.errorMailMergeLoadFile": "読み込みの失敗",
"DE.Controllers.Main.errorMailMergeLoadFile": "ドキュメントの読み込みに失敗しました。 別のファイルを選択してください。",
"DE.Controllers.Main.errorMailMergeSaveFile": "結合に失敗しました。",
"DE.Controllers.Main.errorProcessSaveResult": "保存に失敗しました",
"DE.Controllers.Main.errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。",
@ -504,6 +519,7 @@
"DE.Controllers.Main.errorSessionToken": "サーバーとの接続が中断されました。このページを再度お読み込みください。",
"DE.Controllers.Main.errorSetPassword": "パスワードを設定できませんでした。",
"DE.Controllers.Main.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、<br>始値、高値、安値、終値の順でシートのデータを配置してください。",
"DE.Controllers.Main.errorSubmit": "送信に失敗しました。",
"DE.Controllers.Main.errorToken": "ドキュメント・セキュリティ・トークンが正しく形成されていません。<br>ドキュメントサーバーの管理者にご連絡ください。",
"DE.Controllers.Main.errorTokenExpire": "ドキュメント・セキュリティ・トークンの有効期限が切れています。<br>ドキュメントサーバーの管理者にご連絡ください。",
"DE.Controllers.Main.errorUpdateVersion": "ファイルのバージョンが変更されました。ページが再ロードされます。",
@ -512,6 +528,7 @@
"DE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。",
"DE.Controllers.Main.errorViewerDisconnect": "接続が切断された。文書を表示が可能ですが、<br>接続を復旧し、ページを再読み込む前に、ダウンロード・印刷できません。",
"DE.Controllers.Main.leavePageText": "この文書の保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。",
"DE.Controllers.Main.leavePageTextOnClose": "変更を保存せずにドキュメントを閉じると変更が失われます。<br>保存するには\"キャンセル\"を押して、保存をしてください。保存せずに破棄するには\"OK\"をクリックしてください。",
"DE.Controllers.Main.loadFontsTextText": "データを読み込んでいます",
"DE.Controllers.Main.loadFontsTitleText": "データを読み込んでいます",
"DE.Controllers.Main.loadFontTextText": "データを読み込んでいます",
@ -559,7 +576,7 @@
"DE.Controllers.Main.textLearnMore": "詳細はこちら",
"DE.Controllers.Main.textLoadingDocument": "ドキュメントを読み込んでいます",
"DE.Controllers.Main.textLongName": "128文字未満の名前を入力してください。",
"DE.Controllers.Main.textNoLicenseTitle": "%1 接続の制限",
"DE.Controllers.Main.textNoLicenseTitle": "ライセンス制限に達しました。",
"DE.Controllers.Main.textPaidFeature": "有料機能",
"DE.Controllers.Main.textRemember": "選択内容を保存",
"DE.Controllers.Main.textRenameError": "ユーザー名は空にできません。",
@ -567,6 +584,7 @@
"DE.Controllers.Main.textShape": "図形",
"DE.Controllers.Main.textStrict": "厳格モード",
"DE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。<br>他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。",
"DE.Controllers.Main.textTryUndoRedoWarn": "ファスト共同編集モードでは、元に戻す/やり直し機能が無効になります。",
"DE.Controllers.Main.titleLicenseExp": "ライセンス期限を過ぎました",
"DE.Controllers.Main.titleServerVersion": "エディターが更新された",
"DE.Controllers.Main.titleUpdateVersion": "バージョンを変更しました。",
@ -579,6 +597,7 @@
"DE.Controllers.Main.txtCallouts": "引き出し",
"DE.Controllers.Main.txtCharts": "グラフ",
"DE.Controllers.Main.txtChoose": "アイテムを選択してください",
"DE.Controllers.Main.txtClickToLoad": "クリックして写真を読み込む",
"DE.Controllers.Main.txtCurrentDocument": "現在文書",
"DE.Controllers.Main.txtDiagramTitle": "グラフ名",
"DE.Controllers.Main.txtEditingMode": "編集モードを設定します。",
@ -599,7 +618,9 @@
"DE.Controllers.Main.txtMissArg": "引数がありません",
"DE.Controllers.Main.txtMissOperator": "演算子がありません ",
"DE.Controllers.Main.txtNeedSynchronize": "更新があります。",
"DE.Controllers.Main.txtNone": "なし",
"DE.Controllers.Main.txtNoTableOfContents": "ドキュメントに見出しはありません。 目次に表示されるように、テキストに見出しスタイルをご適用ください。",
"DE.Controllers.Main.txtNoTableOfFigures": "図や表の掲載はありません。",
"DE.Controllers.Main.txtNoText": "エラー!文書に指定されたスタイルのテキストがありません。",
"DE.Controllers.Main.txtNotInTable": "テーブルにありません",
"DE.Controllers.Main.txtNotValidBookmark": "エラー!ブックマークセルフリファレンスが無効です。",
@ -817,7 +838,7 @@
"DE.Controllers.Main.uploadDocSizeMessage": "文書の最大サイズ制限を超えました",
"DE.Controllers.Main.uploadImageExtMessage": "不明な画像形式",
"DE.Controllers.Main.uploadImageFileCountMessage": "アップロードされた画像がない",
"DE.Controllers.Main.uploadImageSizeMessage": "最大イメージサイズの極限を超えました。",
"DE.Controllers.Main.uploadImageSizeMessage": "最大の画像サイズの上限を超えました。",
"DE.Controllers.Main.uploadImageTextText": "画像がアップロード中...",
"DE.Controllers.Main.uploadImageTitleText": "画像がアップロード中",
"DE.Controllers.Main.waitText": "少々お待ちください...",
@ -1660,7 +1681,7 @@
"DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "変更を見れる前に、変更を受け入れる必要があります。",
"DE.Views.FileMenuPanels.Settings.strFast": "ファスト",
"DE.Views.FileMenuPanels.Settings.strFontRender": "フォントのヒント",
"DE.Views.FileMenuPanels.Settings.strForcesave": "常にサーバーに保存する(もしくは、文書をを閉じる後、サーバーに保存)",
"DE.Views.FileMenuPanels.Settings.strForcesave": "保存またはCtrl + Sを押した後、バージョンをサーバーに保存する。",
"DE.Views.FileMenuPanels.Settings.strInputMode": "漢字をターンにします。",
"DE.Views.FileMenuPanels.Settings.strLiveComment": "テキストコメントの表示をターンにします。",
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定",
@ -1682,7 +1703,7 @@
"DE.Views.FileMenuPanels.Settings.textAutoSave": "自動保存",
"DE.Views.FileMenuPanels.Settings.textCompatible": "互換性",
"DE.Views.FileMenuPanels.Settings.textDisabled": "無効",
"DE.Views.FileMenuPanels.Settings.textForceSave": "サーバーに保存する",
"DE.Views.FileMenuPanels.Settings.textForceSave": "中間バージョンの保存",
"DE.Views.FileMenuPanels.Settings.textMinute": "1 分ごと",
"DE.Views.FileMenuPanels.Settings.textOldVersions": " DOCXとして保存する場合は、MS Wordの古いバージョンと互換性のあるファイルにします",
"DE.Views.FileMenuPanels.Settings.txtAll": "全ての表示",
@ -1708,13 +1729,19 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "通知を表示する",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "マクロを無効にして、通知する",
"DE.Views.FileMenuPanels.Settings.txtWin": "Windowsのような",
"DE.Views.FormSettings.textAlways": "いつも",
"DE.Views.FormSettings.textAspect": "縦横比の固定",
"DE.Views.FormSettings.textAutofit": "自動調整",
"DE.Views.FormSettings.textCheckbox": "チェックボックス",
"DE.Views.FormSettings.textColor": "罫線の色",
"DE.Views.FormSettings.textComb": "文字の組み合わせ",
"DE.Views.FormSettings.textCombobox": "コンボ・ボックス",
"DE.Views.FormSettings.textConnected": "接続されたフィールド",
"DE.Views.FormSettings.textDelete": "削除する",
"DE.Views.FormSettings.textDisconnect": "切断する",
"DE.Views.FormSettings.textDropDown": "ドロップダウン",
"DE.Views.FormSettings.textField": "テキストフィールド",
"DE.Views.FormSettings.textFixed": "固定サイズのフィールド",
"DE.Views.FormSettings.textFromFile": "ファイルから",
"DE.Views.FormSettings.textFromStorage": "ストレージから",
"DE.Views.FormSettings.textFromUrl": "URLから",
@ -1723,15 +1750,21 @@
"DE.Views.FormSettings.textKey": "キー",
"DE.Views.FormSettings.textLock": "ロックする",
"DE.Views.FormSettings.textMaxChars": "文字の制限",
"DE.Views.FormSettings.textMulti": "複数行のフィールド",
"DE.Views.FormSettings.textNever": "一度もない",
"DE.Views.FormSettings.textNoBorder": "罫線なし",
"DE.Views.FormSettings.textPlaceholder": "プレースホルダ",
"DE.Views.FormSettings.textRadiobox": "ラジオボタン",
"DE.Views.FormSettings.textRequired": "必須",
"DE.Views.FormSettings.textScale": "スケーリングのタイミング",
"DE.Views.FormSettings.textSelectImage": "画像を選択する",
"DE.Views.FormSettings.textTip": "ヒント",
"DE.Views.FormSettings.textTipAdd": "新しい値を追加する",
"DE.Views.FormSettings.textTipDelete": "値を削除する",
"DE.Views.FormSettings.textTipDown": "下に移動する",
"DE.Views.FormSettings.textTipUp": "上に移動する",
"DE.Views.FormSettings.textTooBig": "画像が大きすぎます",
"DE.Views.FormSettings.textTooSmall": "画像が小さすぎます",
"DE.Views.FormSettings.textUnlock": "ロックを解除する",
"DE.Views.FormSettings.textValue": "値のオプション",
"DE.Views.FormSettings.textWidth": "セル幅",
@ -1739,20 +1772,29 @@
"DE.Views.FormsTab.capBtnComboBox": "コンボ・ボックス",
"DE.Views.FormsTab.capBtnDropDown": "ドロップダウン",
"DE.Views.FormsTab.capBtnImage": "画像",
"DE.Views.FormsTab.capBtnNext": "新しいフィールド",
"DE.Views.FormsTab.capBtnPrev": "前のフィールド",
"DE.Views.FormsTab.capBtnRadioBox": "ラジオボタン",
"DE.Views.FormsTab.capBtnSubmit": "送信",
"DE.Views.FormsTab.capBtnText": "テキストフィールド",
"DE.Views.FormsTab.capBtnView": "フォームを表示する",
"DE.Views.FormsTab.textClear": "フィールドを解除する",
"DE.Views.FormsTab.textClearFields": "すべてのフィールドをクリアする",
"DE.Views.FormsTab.textHighlight": "強調表示設定",
"DE.Views.FormsTab.textNewColor": "ユーザー設定の色の追加",
"DE.Views.FormsTab.textNoHighlight": "強調表示なし",
"DE.Views.FormsTab.textRequired": "必須事項をすべて入力し、送信してください。",
"DE.Views.FormsTab.textSubmited": "フォームの送信成功",
"DE.Views.FormsTab.tipCheckBox": "チェックボックスを挿入する",
"DE.Views.FormsTab.tipComboBox": "コンボ・ボックスを挿入する",
"DE.Views.FormsTab.tipDropDown": "ドロップダウン・リストを挿入する",
"DE.Views.FormsTab.tipImageField": "画像の挿入",
"DE.Views.FormsTab.tipNextForm": "次のフィールドへ",
"DE.Views.FormsTab.tipPrevForm": "前のフィールドへ",
"DE.Views.FormsTab.tipRadioBox": "ラジオボタンの挿入\t",
"DE.Views.FormsTab.tipSubmit": "フォームを送信",
"DE.Views.FormsTab.tipTextField": "テキストフィールドを挿入する",
"DE.Views.FormsTab.tipViewForm": "フォーム入力モード",
"DE.Views.FormsTab.tipViewForm": "フォームを表示する",
"DE.Views.HeaderFooterSettings.textBottomCenter": "左下",
"DE.Views.HeaderFooterSettings.textBottomLeft": "左下",
"DE.Views.HeaderFooterSettings.textBottomPage": "ページの下部",
@ -2077,6 +2119,7 @@
"DE.Views.ParagraphSettings.strIndent": "インデント",
"DE.Views.ParagraphSettings.strIndentsLeftText": "左",
"DE.Views.ParagraphSettings.strIndentsRightText": "右",
"DE.Views.ParagraphSettings.strIndentsSpecial": "スペシャル",
"DE.Views.ParagraphSettings.strLineHeight": "行間",
"DE.Views.ParagraphSettings.strParagraphSpacing": "段落間隔",
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "同じスタイルの場合は、段落間に間隔を追加しません。",
@ -2089,6 +2132,7 @@
"DE.Views.ParagraphSettings.textBackColor": "背景色",
"DE.Views.ParagraphSettings.textExact": "固定値",
"DE.Views.ParagraphSettings.textFirstLine": "最初の行",
"DE.Views.ParagraphSettings.textHanging": "ぶら下げインデント",
"DE.Views.ParagraphSettings.textNoneSpecial": "(なし)",
"DE.Views.ParagraphSettings.txtAutoText": "自動",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "指定されたタブは、このフィールドに表示されます。",
@ -2182,7 +2226,7 @@
"DE.Views.ShapeSettings.strPattern": "パターン",
"DE.Views.ShapeSettings.strShadow": "影を表示する",
"DE.Views.ShapeSettings.strSize": "サイズ",
"DE.Views.ShapeSettings.strStroke": "画数",
"DE.Views.ShapeSettings.strStroke": "",
"DE.Views.ShapeSettings.strTransparency": "不透明度",
"DE.Views.ShapeSettings.strType": "タイプ",
"DE.Views.ShapeSettings.textAdvanced": "詳細設定の表示",
@ -2258,7 +2302,7 @@
"DE.Views.Statusbar.tipFitPage": "ページに合わせる",
"DE.Views.Statusbar.tipFitWidth": "幅を合わせる",
"DE.Views.Statusbar.tipSetLang": "テキストの言語を設定します。",
"DE.Views.Statusbar.tipZoomFactor": "ズーム",
"DE.Views.Statusbar.tipZoomFactor": "拡大率",
"DE.Views.Statusbar.tipZoomIn": "拡大",
"DE.Views.Statusbar.tipZoomOut": "縮小",
"DE.Views.Statusbar.txtPageNumInvalid": "ページ番号が正しくありません。",
@ -2276,6 +2320,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "ページ番号の右揃え",
"DE.Views.TableOfContentsSettings.strFullCaption": "ラベルと番号を含める",
"DE.Views.TableOfContentsSettings.strLinks": "目次をリンクとして書式設定する",
"DE.Views.TableOfContentsSettings.strLinksOF": "図や表をリンクとしてフォーマットする",
"DE.Views.TableOfContentsSettings.strShowPages": "ページ番号の表示",
"DE.Views.TableOfContentsSettings.textBuildTable": "目次の作成要素:",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "次から図表を作成する",
@ -2326,6 +2371,7 @@
"DE.Views.TableSettings.textBorders": "罫線のスタイル",
"DE.Views.TableSettings.textCellSize": "行と列のサイズ",
"DE.Views.TableSettings.textColumns": "列",
"DE.Views.TableSettings.textConvert": "表を文字に変換する",
"DE.Views.TableSettings.textDistributeCols": "列の幅を揃える",
"DE.Views.TableSettings.textDistributeRows": "行の高さを揃える",
"DE.Views.TableSettings.textEdit": "行/列",
@ -2430,10 +2476,18 @@
"DE.Views.TableSettingsAdvanced.txtNoBorders": "罫線なし",
"DE.Views.TableSettingsAdvanced.txtPercent": "パーセント",
"DE.Views.TableSettingsAdvanced.txtPt": "ポイント",
"DE.Views.TableToTextDialog.textEmpty": "カスタムセパレータの文字を入力する必要があります。",
"DE.Views.TableToTextDialog.textNested": "ネストした表の変換",
"DE.Views.TableToTextDialog.textOther": "その他",
"DE.Views.TableToTextDialog.textPara": "段落記号",
"DE.Views.TableToTextDialog.textSemicolon": "セミコロン",
"DE.Views.TableToTextDialog.textSeparator": "で文字を区切る",
"DE.Views.TableToTextDialog.textTab": "タブ",
"DE.Views.TableToTextDialog.textTitle": "表を文字に変換する",
"DE.Views.TextArtSettings.strColor": "色",
"DE.Views.TextArtSettings.strFill": "塗りつぶし",
"DE.Views.TextArtSettings.strSize": "サイズ",
"DE.Views.TextArtSettings.strStroke": "画数",
"DE.Views.TextArtSettings.strStroke": "",
"DE.Views.TextArtSettings.strTransparency": "不透明度",
"DE.Views.TextArtSettings.strType": "タイプ",
"DE.Views.TextArtSettings.textAngle": "角",
@ -2453,6 +2507,21 @@
"DE.Views.TextArtSettings.tipAddGradientPoint": "グラデーションポイントを追加する",
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "グラデーションポイントを削除する",
"DE.Views.TextArtSettings.txtNoBorders": "線なし",
"DE.Views.TextToTableDialog.textAutofit": "オートフィットの動作",
"DE.Views.TextToTableDialog.textColumns": "列",
"DE.Views.TextToTableDialog.textContents": "コンテンツへのオートフィット",
"DE.Views.TextToTableDialog.textEmpty": "カスタムセパレータの文字を入力する必要があります。",
"DE.Views.TextToTableDialog.textFixed": "カラムの幅を固定",
"DE.Views.TextToTableDialog.textOther": "その他",
"DE.Views.TextToTableDialog.textPara": "段落",
"DE.Views.TextToTableDialog.textRows": "行",
"DE.Views.TextToTableDialog.textSemicolon": "セミコロン",
"DE.Views.TextToTableDialog.textSeparator": "でテキストを分離",
"DE.Views.TextToTableDialog.textTab": "タブ",
"DE.Views.TextToTableDialog.textTableSize": "表のサイズ",
"DE.Views.TextToTableDialog.textTitle": "文字を表に変換する",
"DE.Views.TextToTableDialog.textWindow": "ウインドウへのオートフィット",
"DE.Views.TextToTableDialog.txtAutoText": "自動",
"DE.Views.Toolbar.capBtnAddComment": "コメントを追加",
"DE.Views.Toolbar.capBtnBlankPage": "空白ページ",
"DE.Views.Toolbar.capBtnColumns": "列",
@ -2495,12 +2564,15 @@
"DE.Views.Toolbar.mniImageFromStorage": "ストレージから画像を読み込む",
"DE.Views.Toolbar.mniImageFromUrl": "URLからのファイル",
"DE.Views.Toolbar.mniLowerCase": "小文字",
"DE.Views.Toolbar.mniSentenceCase": "センテンスケース",
"DE.Views.Toolbar.mniTextToTable": "文字を表に変換する",
"DE.Views.Toolbar.mniToggleCase": "大文字と小文字を入れ替える",
"DE.Views.Toolbar.mniUpperCase": "大文字",
"DE.Views.Toolbar.strMenuNoFill": "塗りつぶしなし",
"DE.Views.Toolbar.textAutoColor": "自動",
"DE.Views.Toolbar.textBold": "太字",
"DE.Views.Toolbar.textBottom": "下:",
"DE.Views.Toolbar.textChangeLevel": "変更リストラベル",
"DE.Views.Toolbar.textCheckboxControl": "チェックボックス",
"DE.Views.Toolbar.textColumnsCustom": "ユーザー設定の列",
"DE.Views.Toolbar.textColumnsLeft": "左",
@ -2650,6 +2722,7 @@
"DE.Views.Toolbar.txtScheme2": "グレースケール",
"DE.Views.Toolbar.txtScheme20": "アーバン",
"DE.Views.Toolbar.txtScheme21": "ネオン",
"DE.Views.Toolbar.txtScheme22": "新しいオフィス",
"DE.Views.Toolbar.txtScheme3": "ひらめき",
"DE.Views.Toolbar.txtScheme4": "アスペクト",
"DE.Views.Toolbar.txtScheme5": "クール",

View file

@ -275,6 +275,7 @@
"Common.Views.SignSettingsDialog.textShowDate": "서명라인에 서명 날짜를 보여주세요",
"Common.Views.SignSettingsDialog.textTitle": "서명 셋업",
"Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목",
"Common.Views.SymbolTableDialog.textSymbols": "기호",
"DE.Controllers.LeftMenu.leavePageText": "이 문서의 모든 저장되지 않은 변경 사항이 손실됩니다. <br>취소 를 클릭 한 다음저장 \"을 클릭하여 저장하십시오. 저장되지 않은 변경 사항. ",
"DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "경고",
@ -391,6 +392,7 @@
"DE.Controllers.Main.txtSameAsPrev": "이전과 동일",
"DE.Controllers.Main.txtSection": "섹션",
"DE.Controllers.Main.txtSeries": "Series",
"DE.Controllers.Main.txtShape_textRect": "텍스트상자",
"DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
"DE.Controllers.Main.txtStyle_footnote_text": "꼬리말 글",
"DE.Controllers.Main.txtStyle_Heading_1": "제목 1",
@ -409,6 +411,7 @@
"DE.Controllers.Main.txtStyle_Quote": "Quote",
"DE.Controllers.Main.txtStyle_Subtitle": "자막",
"DE.Controllers.Main.txtStyle_Title": "제목",
"DE.Controllers.Main.txtSyntaxError": "구문 오류",
"DE.Controllers.Main.txtTableOfContents": "콘텐츠 테이블",
"DE.Controllers.Main.txtXAxis": "X 축",
"DE.Controllers.Main.txtYAxis": "Y 축",
@ -775,6 +778,7 @@
"DE.Views.BookmarksDialog.textName": "이름",
"DE.Views.BookmarksDialog.textSort": "정렬",
"DE.Views.BookmarksDialog.textTitle": "책갈피",
"DE.Views.CaptionDialog.textTable": "표",
"DE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
"DE.Views.ChartSettings.textChartType": "차트 유형 변경",
"DE.Views.ChartSettings.textEditData": "데이터 편집",
@ -795,10 +799,12 @@
"DE.Views.ChartSettings.txtTopAndBottom": "상단 및 하단",
"DE.Views.ControlSettingsDialog.textLock": "잠그기",
"DE.Views.ControlSettingsDialog.textName": "제목",
"DE.Views.ControlSettingsDialog.textSystemColor": "시스템",
"DE.Views.ControlSettingsDialog.textTag": "꼬리표",
"DE.Views.ControlSettingsDialog.textTitle": "콘텐트 제어 세팅",
"DE.Views.ControlSettingsDialog.txtLockDelete": "콘텐트 제어가 삭제될 수 없슴",
"DE.Views.ControlSettingsDialog.txtLockEdit": "콘텐트가 편집될 수 없슴",
"DE.Views.CrossReferenceDialog.textTable": "표",
"DE.Views.CustomColumnsDialog.textColumns": "열 수",
"DE.Views.CustomColumnsDialog.textSeparator": "열 구분선",
"DE.Views.CustomColumnsDialog.textSpacing": "열 사이의 간격",
@ -1223,6 +1229,7 @@
"DE.Views.ImageSettingsAdvanced.textShape": "도형 설정",
"DE.Views.ImageSettingsAdvanced.textSize": "크기",
"DE.Views.ImageSettingsAdvanced.textSquare": "Square",
"DE.Views.ImageSettingsAdvanced.textTextBox": "텍스트상자",
"DE.Views.ImageSettingsAdvanced.textTitle": "이미지 - 고급 설정",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "차트 - 고급 설정",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "모양 - 고급 설정",
@ -1266,6 +1273,7 @@
"DE.Views.Links.tipContentsUpdate": "콘텐트 테이블 새로고침",
"DE.Views.Links.tipInsertHyperlink": "하이퍼 링크 추가",
"DE.Views.Links.tipNotes": "각주 삽입 또는 편집",
"DE.Views.ListSettingsDialog.txtSymbol": "기호",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "보내기",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "테마",
@ -1365,6 +1373,7 @@
"DE.Views.ParagraphSettings.textAuto": "Multiple",
"DE.Views.ParagraphSettings.textBackColor": "배경색",
"DE.Views.ParagraphSettings.textExact": "정확히",
"DE.Views.ParagraphSettings.textNoneSpecial": "(없음)",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "지정된 탭이이 필드에 나타납니다",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자",
@ -1397,6 +1406,7 @@
"DE.Views.ParagraphSettingsAdvanced.textLeader": "리더",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "왼쪽",
"DE.Views.ParagraphSettingsAdvanced.textNone": "없음",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(없음)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "위치",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "제거",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "모두 제거",
@ -1518,6 +1528,7 @@
"DE.Views.TableOfContentsSettings.textRadioStyles": "선택 스타일",
"DE.Views.TableOfContentsSettings.textStyle": "스타일",
"DE.Views.TableOfContentsSettings.textStyles": "스타일들",
"DE.Views.TableOfContentsSettings.textTable": "표",
"DE.Views.TableOfContentsSettings.textTitle": "콘텍츠 테이블",
"DE.Views.TableOfContentsSettings.txtClassic": "클래식",
"DE.Views.TableOfContentsSettings.txtCurrent": "현재",
@ -1671,6 +1682,7 @@
"DE.Views.Toolbar.capBtnInsImage": "그림",
"DE.Views.Toolbar.capBtnInsPagebreak": "나누기",
"DE.Views.Toolbar.capBtnInsShape": "쉐이프",
"DE.Views.Toolbar.capBtnInsSymbol": "기호",
"DE.Views.Toolbar.capBtnInsTable": "테이블",
"DE.Views.Toolbar.capBtnInsTextart": "텍스트 아트",
"DE.Views.Toolbar.capBtnInsTextbox": "텍스트 박스",
@ -1825,5 +1837,7 @@
"DE.Views.Toolbar.txtScheme6": "Concourse",
"DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "흐름",
"DE.Views.Toolbar.txtScheme9": "주조"
"DE.Views.Toolbar.txtScheme9": "주조",
"DE.Views.WatermarkSettingsDialog.textColor": "글꼴색",
"DE.Views.WatermarkSettingsDialog.textText": "텍스트"
}

File diff suppressed because it is too large Load diff

View file

@ -194,8 +194,8 @@
hr {
margin: 0;
border-bottom: none;
border-color: @border-toolbar-ie;
border-color: @border-toolbar;
border-top: @scaled-one-px-value-ie solid @border-divider-ie;
border-top: @scaled-one-px-value solid @border-divider;
}
.thumb-list {

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -557,6 +557,8 @@
"txtScheme18": "Tècnic",
"txtScheme19": "Excursió",
"txtScheme2": "Escala de grisos",
"txtScheme20": "Urbà",
"txtScheme21": "Empenta",
"txtScheme22": "Nova Oficina",
"txtScheme3": "Vèrtex",
"txtScheme4": "Aspecte",

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -557,6 +557,8 @@
"txtScheme18": "Technik",
"txtScheme19": "Wanderung",
"txtScheme2": "Graustufe",
"txtScheme20": "Rhea",
"txtScheme21": "Telesto",
"txtScheme22": "Neues Office",
"txtScheme3": "Apex",
"txtScheme4": "Bildseitenverhältnis",

File diff suppressed because it is too large Load diff

View file

@ -205,6 +205,7 @@
"textBehind": "Detrás",
"textBorder": "Borde",
"textBringToForeground": "Traer al primer plano",
"textBullets": "Viñetas",
"textBulletsAndNumbers": "Viñetas y números",
"textCellMargins": "Márgenes de celda",
"textChart": "Gráfico",
@ -250,6 +251,7 @@
"textNone": "Ninguno",
"textNoStyles": "No hay estilos para este tipo de gráficos.",
"textNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"",
"textNumbers": "Números",
"textOpacity": "Opacidad ",
"textOptions": "Opciones",
"textOrphanControl": "Control de líneas huérfanas",
@ -379,7 +381,22 @@
"leavePageText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.",
"notcriticalErrorTitle": "Advertencia",
"SDK": {
" -Section ": "-Sección ",
"above": "encima",
"below": "debajo",
"Caption": "Título",
"Choose an item": "Elija un elemento",
"Click to load image": "Haga clic para cargar la imagen",
"Current Document": "Documento actual",
"Diagram Title": "Título del gráfico",
"endnote text": "Texto de nota al final",
"Enter a date": "Introduzca una fecha",
"Error! Bookmark not defined": "¡Error! El marcador no se ha definido",
"Error! Main Document Only": "¡Error! Sólo el documento principal.",
"Error! No text of specified style in document": "¡Error! No hay texto del estilo especificado en el documento.",
"Error! Not a valid bookmark self-reference": "¡Error! No es una auto-referencia de marcador válida.",
"Even Page ": "Página par",
"First Page ": "Primera página",
"Footer": "Pie de página",
"footnote text": "Texto de pie de página",
"Header": "Encabezado",
@ -392,17 +409,38 @@
"Heading 7": "Título 7",
"Heading 8": "Título 8",
"Heading 9": "Título 9",
"Hyperlink": "Hiperenlace",
"Index Too Large": "El índice es demasiado grande",
"Intense Quote": "Cita destacada",
"Is Not In Table": "No está en la tabla",
"List Paragraph": "Párrafo de la lista",
"Missing Argument": "Falta argumento",
"Missing Operator": "Falta operador",
"No Spacing": "Sin espacio",
"No table of contents entries found": "No hay títulos en el documento. Aplique un estilo de título al texto para que aparezca en la tabla de contenido.",
"No table of figures entries found": "No se han encontrado los elementos de tabla de ilustraciones.",
"None": "Ninguno",
"Normal": "Normal",
"Number Too Large To Format": "El número es demasiado grande para darle formato",
"Odd Page ": "Página impar",
"Quote": "Cita",
"Same as Previous": "Igual al anterior",
"Series": "Serie",
"Subtitle": "Subtítulo",
"Syntax Error": "Error de sintaxis",
"Table Index Cannot be Zero": "El índice de la tabla no puede ser cero",
"Table of Contents": "Tabla de contenidos",
"table of figures": "Tabla de ilustraciones",
"The Formula Not In Table": "La fórmula no está en la tabla",
"Title": "Título",
"TOC Heading": "Título TDC",
"Type equation here": "Escriba aquí la ecuación",
"Undefined Bookmark": "Marcador no definido",
"Unexpected End of Formula": "Fin de fórmula inesperado",
"X Axis": "Eje X XAS",
"Y Axis": "Eje Y",
"Your text here": "Su texto aquí"
"Your text here": "Su texto aquí",
"Zero Divide": "División por cero"
},
"textAnonymous": "Anónimo",
"textBuyNow": "Visitar sitio web",
@ -481,7 +519,7 @@
"textMacrosSettings": "Ajustes de macros",
"textMargins": "Márgenes",
"textMarginsH": "Márgenes superior e inferior son demasiado altos para una altura de página determinada ",
"textMarginsW": "Los márgenes izquierdo y derecho son demasiado altos para un ancho de página determinado",
"textMarginsW": "Los márgenes izquierdo y derecho son demasiado amplios para un ancho de página determinado",
"textNoCharacters": "Caracteres no imprimibles",
"textNoTextFound": "Texto no encontrado",
"textOpenFile": "Introduzca la contraseña para abrir el archivo",
@ -506,7 +544,29 @@
"textUnitOfMeasurement": "Unidad de medida",
"textUploaded": "Cargado",
"txtIncorrectPwd": "La contraseña es incorrecta",
"txtProtected": "Una vez que introduzca la contraseña y abra el archivo, se restablecerá la contraseña actual"
"txtProtected": "Una vez que introduzca la contraseña y abra el archivo, se restablecerá la contraseña actual",
"txtScheme1": "Oficina",
"txtScheme10": "Medio",
"txtScheme11": "Metro",
"txtScheme12": "Módulo",
"txtScheme13": "Opulento",
"txtScheme14": "Mirador",
"txtScheme15": "Origen",
"txtScheme16": "Papel",
"txtScheme17": "Solsticio",
"txtScheme18": "Técnico",
"txtScheme19": "Viajes",
"txtScheme2": "Escala de grises",
"txtScheme20": "Urbano",
"txtScheme21": "Brío",
"txtScheme22": "Nueva oficina",
"txtScheme3": "Vértice",
"txtScheme4": "Aspecto",
"txtScheme5": "Civil",
"txtScheme6": "Concurrencia",
"txtScheme7": "Equidad ",
"txtScheme8": "Flujo",
"txtScheme9": "Fundición"
},
"Toolbar": {
"dlgLeaveMsgText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.",

View file

@ -1,360 +1,577 @@
{
"Common.Controllers.Collaboration.textAddReply": "Lisää vastaus",
"Common.Controllers.Collaboration.textAtLeast": "vähintään",
"Common.Controllers.Collaboration.textAuto": "Automaattinen",
"Common.Controllers.Collaboration.textBaseline": "Lähtötaso",
"Common.Controllers.Collaboration.textBold": "Lihavoitu",
"Common.Controllers.Collaboration.textCaps": "Kaikki isoilla kirjaimilla",
"Common.Controllers.Collaboration.textCenter": "Keskitä",
"Common.Controllers.Collaboration.textDeleted": "<b>Poistettu:</b>",
"Common.Controllers.Collaboration.textInserted": "<b>Asetettu:</b>",
"Common.Controllers.Collaboration.textJustify": "Tasaa",
"Common.Controllers.Collaboration.textLeft": "Tasaa vasemmalle",
"Common.Controllers.Collaboration.textNoContextual": "Lisää samantyylinen kappaleväli",
"Common.Controllers.Collaboration.textParaDeleted": "<b>Kappale poistettu</b> ",
"Common.Controllers.Collaboration.textParaFormatted": "<b>Kappale muotoiltu</b>",
"Common.Controllers.Collaboration.textParaInserted": "<b>Kappale sijoitettu</b> ",
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Siirretty alas:</b>",
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Siirretty ylös:</b>",
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Siirretty:</b>",
"Common.Controllers.Collaboration.textRight": "Tasaa oikealle",
"Common.Controllers.Collaboration.textShd": "Taustaväri",
"Common.Controllers.Collaboration.textTableChanged": "<b>Taulukon asetuksia muutettu</b>",
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Taulukkorivit lisätty</b>",
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Taulukkorivit poistettu</b>",
"Common.UI.ThemeColorPalette.textStandartColors": "Vakiovärit",
"Common.UI.ThemeColorPalette.textThemeColors": "Teeman värit",
"Common.Views.Collaboration.textAccept": "Hyväksy",
"Common.Views.Collaboration.textAcceptAllChanges": "Hyväksy kaikki muutokset",
"Common.Views.Collaboration.textAddReply": "Lisää vastaus",
"Common.Views.Collaboration.textAllChangesAcceptedPreview": "Kaikki muutokset hyväksytty (Esikatsele)",
"Common.Views.Collaboration.textAllChangesEditing": "Kaikki muutokset (muokkaukset)",
"Common.Views.Collaboration.textAllChangesRejectedPreview": "Kaikki muutokset hylätty (Esikatsele)",
"Common.Views.Collaboration.textBack": "Takaisin",
"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.textBelowText": "Tekstin alapuolella",
"DE.Controllers.AddOther.textBottomOfPage": "Sivun alaosassa",
"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.menuAddComment": "Lisää kommentti",
"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.errorEditingDownloadas": "Asiakirjan käsittelyssä on tapahtunut virhe. <br> Käytä 'Lataa' -vaihtoehtoa tallentaaksesi tiedoston varmuuskopion tietokoneen kiintolevylle. ",
"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.textBack": "Takaisin",
"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.txtAbove": "Yllä",
"DE.Controllers.Main.txtArt": "Tekstisi tähän",
"DE.Controllers.Main.txtBelow": "alla",
"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.textAddComment": "Kommentoi",
"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.textAddCustomColor": "Lisää mukautettu väri",
"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.textAddCustomColor": "Lisää mukautettu väri",
"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.textAddCustomColor": "Lisää mukautettu väri",
"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.EditTable.textAddCustomColor": "Lisää mukautettu väri",
"DE.Views.EditTable.textAlign": "Tasaa",
"DE.Views.EditTable.textBack": "Takaisin",
"DE.Views.EditTable.textBandedColumn": "Raidallinen sarake",
"DE.Views.EditTable.textBandedRow": "Raidallinen rivi",
"DE.Views.EditTable.textBorder": "Reunus",
"DE.Views.EditText.textAddCustomColor": "Lisää mukautettu väri",
"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.textCharacterBold": "B",
"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.textAdvancedSettings": "Sovellusasetukset",
"DE.Views.Settings.textApplication": "Sovellus",
"DE.Views.Settings.textAuthor": "Kirjoittaja",
"DE.Views.Settings.textBack": "Takaisin",
"DE.Views.Settings.textBottom": "Alhaalla",
"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"
"About": {
"textAbout": "About",
"textAddress": "Address",
"textBack": "Back",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Add": {
"notcriticalErrorTitle": "Warning",
"textAddLink": "Add link",
"textAddress": "Address",
"textBack": "Back",
"textBelowText": "Below text",
"textBottomOfPage": "Bottom of page",
"textBreak": "Break",
"textCancel": "Cancel",
"textCenterBottom": "Center Bottom",
"textCenterTop": "Center Top",
"textColumnBreak": "Column Break",
"textColumns": "Columns",
"textComment": "Comment",
"textContinuousPage": "Continuous Page",
"textCurrentPosition": "Current Position",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify image URL.",
"textEvenPage": "Even Page",
"textFootnote": "Footnote",
"textFormat": "Format",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertFootnote": "Insert Footnote",
"textInsertImage": "Insert Image",
"textLeftBottom": "Left Bottom",
"textLeftTop": "Left Top",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLocation": "Location",
"textNextPage": "Next Page",
"textOddPage": "Odd Page",
"textOther": "Other",
"textPageBreak": "Page Break",
"textPageNumber": "Page Number",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPosition": "Position",
"textRightBottom": "Right Bottom",
"textRightTop": "Right Top",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textSectionBreak": "Section Break",
"textShape": "Shape",
"textStartAt": "Start At",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Warning",
"textAccept": "Accept",
"textAcceptAllChanges": "Accept all changes",
"textAddComment": "Add comment",
"textAddReply": "Add reply",
"textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"textAllChangesEditing": "All changes (Editing)",
"textAllChangesRejectedPreview": "All changes rejected (Preview)",
"textAtLeast": "at least",
"textAuto": "auto",
"textBack": "Back",
"textBaseline": "Baseline",
"textBold": "Bold",
"textBreakBefore": "Page break before",
"textCancel": "Cancel",
"textCaps": "All caps",
"textCenter": "Align center",
"textChart": "Chart",
"textCollaboration": "Collaboration",
"textColor": "Font color",
"textComments": "Comments",
"textContextual": "Don't add intervals between paragraphs of the same style",
"textDelete": "Delete",
"textDeleteComment": "Delete Comment",
"textDeleted": "Deleted:",
"textDeleteReply": "Delete Reply",
"textDisplayMode": "Display Mode",
"textDone": "Done",
"textDStrikeout": "Double strikeout",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textEquation": "Equation",
"textExact": "exactly",
"textFinal": "Final",
"textFirstLine": "First line",
"textFormatted": "Formatted",
"textHighlight": "Highlight color",
"textImage": "Image",
"textIndentLeft": "Indent left",
"textIndentRight": "Indent right",
"textInserted": "Inserted:",
"textItalic": "Italic",
"textJustify": "Align justified ",
"textKeepLines": "Keep lines together",
"textKeepNext": "Keep with next",
"textLeft": "Align left",
"textLineSpacing": "Line Spacing: ",
"textMarkup": "Markup",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textMultiple": "multiple",
"textNoBreakBefore": "No page break before",
"textNoChanges": "There are no changes.",
"textNoComments": "This document doesn't contain comments",
"textNoContextual": "Add interval between paragraphs of the same style",
"textNoKeepLines": "Don't keep lines together",
"textNoKeepNext": "Don't keep with next",
"textNot": "Not ",
"textNoWidow": "No widow control",
"textNum": "Change numbering",
"textOriginal": "Original",
"textParaDeleted": "Paragraph Deleted",
"textParaFormatted": "Paragraph Formatted",
"textParaInserted": "Paragraph Inserted",
"textParaMoveFromDown": "Moved Down:",
"textParaMoveFromUp": "Moved Up:",
"textParaMoveTo": "Moved:",
"textPosition": "Position",
"textReject": "Reject",
"textRejectAllChanges": "Reject All Changes",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textReview": "Review",
"textReviewChange": "Review Change",
"textRight": "Align right",
"textShape": "Shape",
"textShd": "Background color",
"textSmallCaps": "Small caps",
"textSpacing": "Spacing",
"textSpacingAfter": "Spacing after",
"textSpacingBefore": "Spacing before",
"textStrikeout": "Strikeout",
"textSubScript": "Subscript",
"textSuperScript": "Superscript",
"textTableChanged": "Table Settings Changed",
"textTableRowsAdd": "Table Rows Added",
"textTableRowsDel": "Table Rows Deleted",
"textTabs": "Change tabs",
"textTrackChanges": "Track Changes",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUnderline": "Underline",
"textUsers": "Users",
"textWidow": "Widow control"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuAddComment": "Add comment",
"menuAddLink": "Add link",
"menuCancel": "Cancel",
"menuDelete": "Delete",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuReview": "Review",
"menuReviewChange": "Review Change",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Edit": {
"notcriticalErrorTitle": "Warning",
"textActualSize": "Actual size",
"textAddCustomColor": "Add custom color",
"textAdditional": "Additional",
"textAdditionalFormatting": "Additional formatting",
"textAddress": "Address",
"textAdvanced": "Advanced",
"textAdvancedSettings": "Advanced settings",
"textAfter": "After",
"textAlign": "Align",
"textAllCaps": "All caps",
"textAllowOverlap": "Allow overlap",
"textAuto": "Auto",
"textAutomatic": "Automatic",
"textBack": "Back",
"textBackground": "Background",
"textBandedColumn": "Banded column",
"textBandedRow": "Banded row",
"textBefore": "Before",
"textBehind": "Behind",
"textBorder": "Border",
"textBringToForeground": "Bring to foreground",
"textBullets": "Bullets",
"textBulletsAndNumbers": "Bullets & Numbers",
"textCellMargins": "Cell Margins",
"textChart": "Chart",
"textClose": "Close",
"textColor": "Color",
"textContinueFromPreviousSection": "Continue from previous section",
"textCustomColor": "Custom Color",
"textDifferentFirstPage": "Different first page",
"textDifferentOddAndEvenPages": "Different odd and even pages",
"textDisplay": "Display",
"textDistanceFromText": "Distance from text",
"textDoubleStrikethrough": "Double Strikethrough",
"textEditLink": "Edit Link",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify image URL.",
"textFill": "Fill",
"textFirstColumn": "First Column",
"textFirstLine": "FirstLine",
"textFlow": "Flow",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFooter": "Footer",
"textHeader": "Header",
"textHeaderRow": "Header Row",
"textHighlightColor": "Highlight Color",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textInFront": "In Front",
"textInline": "Inline",
"textKeepLinesTogether": "Keep Lines Together",
"textKeepWithNext": "Keep with Next",
"textLastColumn": "Last Column",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkToPrevious": "Link to Previous",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textMoveWithText": "Move with Text",
"textNone": "None",
"textNoStyles": "No styles for this type of charts.",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textOpacity": "Opacity",
"textOptions": "Options",
"textOrphanControl": "Orphan Control",
"textPageBreakBefore": "Page Break Before",
"textPageNumbering": "Page Numbering",
"textParagraph": "Paragraph",
"textParagraphStyles": "Paragraph Styles",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPt": "pt",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",
"textResizeToFitContent": "Resize to Fit Content",
"textScreenTip": "Screen Tip",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textSettings": "Settings",
"textShape": "Shape",
"textSize": "Size",
"textSmallCaps": "Small Caps",
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
"textSquare": "Square",
"textStartAt": "Start at",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textTableOptions": "Table Options",
"textText": "Text",
"textThrough": "Through",
"textTight": "Tight",
"textTopAndBottom": "Top and Bottom",
"textTotalRow": "Total Row",
"textType": "Type",
"textWrap": "Wrap",
"textNumbers": "Numbers"
},
"Error": {
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.<br>When you click OK, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorMailMergeLoadFile": "Loading failed",
"errorMailMergeSaveFile": "Merge failed.",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.",
"errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"openErrorText": "An error has occurred while opening the file",
"saveErrorText": "An error has occurred while saving the file",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadMergeText": "Downloading...",
"downloadMergeTitle": "Downloading",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"mailMergeLoadFileText": "Loading Data Source...",
"mailMergeLoadFileTitle": "Loading Data Source",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"sendMergeText": "Sending Merge...",
"sendMergeTitle": "Sending Merge",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Main": {
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"SDK": {
" -Section ": " -Section ",
"above": "above",
"below": "below",
"Caption": "Caption",
"Choose an item": "Choose an item",
"Click to load image": "Click to load image",
"Current Document": "Current Document",
"Diagram Title": "Chart Title",
"endnote text": "Endnote Text",
"Enter a date": "Enter a date",
"Error! Bookmark not defined": "Error! Bookmark not defined.",
"Error! Main Document Only": "Error! Main Document Only.",
"Error! No text of specified style in document": "Error! No text of specified style in document.",
"Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"Even Page ": "Even Page ",
"First Page ": "First Page ",
"Footer": "Footer",
"footnote text": "Footnote Text",
"Header": "Header",
"Heading 1": "Heading 1",
"Heading 2": "Heading 2",
"Heading 3": "Heading 3",
"Heading 4": "Heading 4",
"Heading 5": "Heading 5",
"Heading 6": "Heading 6",
"Heading 7": "Heading 7",
"Heading 8": "Heading 8",
"Heading 9": "Heading 9",
"Hyperlink": "Hyperlink",
"Index Too Large": "Index Too Large",
"Intense Quote": "Intense Quote",
"Is Not In Table": "Is Not In Table",
"List Paragraph": "List Paragraph",
"Missing Argument": "Missing Argument",
"Missing Operator": "Missing Operator",
"No Spacing": "No Spacing",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"No table of figures entries found": "No table of figures entries found.",
"None": "None",
"Normal": "Normal",
"Number Too Large To Format": "Number Too Large To Format",
"Odd Page ": "Odd Page ",
"Quote": "Quote",
"Same as Previous": "Same as Previous",
"Series": "Series",
"Subtitle": "Subtitle",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"Title": "Title",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here",
"Zero Divide": "Zero Divide"
},
"textAnonymous": "Anonymous",
"textBuyNow": "Visit website",
"textClose": "Close",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit this file."
},
"Settings": {
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"advTxtOptions": "Choose TXT Options",
"closeButtonText": "Close File",
"notcriticalErrorTitle": "Warning",
"textAbout": "About",
"textApplication": "Application",
"textApplicationSettings": "Application settings",
"textAuthor": "Author",
"textBack": "Back",
"textBottom": "Bottom",
"textCancel": "Cancel",
"textCaseSensitive": "Case Sensitive",
"textCentimeter": "Centimeter",
"textCollaboration": "Collaboration",
"textColorSchemes": "Color Schemes",
"textComment": "Comment",
"textComments": "Comments",
"textCommentsDisplay": "Comments Display",
"textCreated": "Created",
"textCustomSize": "Custom Size",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDocumentInfo": "Document Info",
"textDocumentSettings": "Document Settings",
"textDocumentTitle": "Document Title",
"textDone": "Done",
"textDownload": "Download",
"textDownloadAs": "Download As",
"textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?",
"textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textEncoding": "Encoding",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textFormat": "Format",
"textHelp": "Help",
"textHiddenTableBorders": "Hidden Table Borders",
"textHighlightResults": "Highlight Results",
"textInch": "Inch",
"textLandscape": "Landscape",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLeft": "Left",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textMargins": "Margins",
"textMarginsH": "Top and bottom margins are too high for a given page height",
"textMarginsW": "Left and right margins are too wide for a given page width",
"textNoCharacters": "Nonprinting Characters",
"textNoTextFound": "Text not found",
"textOpenFile": "Enter a password to open the file",
"textOrientation": "Orientation",
"textOwner": "Owner",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Print",
"textReaderMode": "Reader Mode",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textResolvedComments": "Resolved Comments",
"textRight": "Right",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
"textTitle": "Title",
"textTop": "Top",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this Page",
"stayButtonText": "Stay on this page"
}
}

View file

@ -533,7 +533,7 @@
"textReplaceAll": "Remplacer tout",
"textResolvedComments": "Commentaires résolus",
"textRight": "À droite",
"textSearch": "Recherche",
"textSearch": "Rechercher",
"textSettings": "Paramètres",
"textShowNotification": "Montrer la notification",
"textSpellcheck": "Vérification de l'orthographe",
@ -557,10 +557,12 @@
"txtScheme18": "Technique",
"txtScheme19": "Promenade",
"txtScheme2": "Nuances de gris",
"txtScheme20": "Urbain",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civique",
"txtScheme5": "Civil",
"txtScheme6": "Rotonde",
"txtScheme7": "Capitaux",
"txtScheme8": "Flux",

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,12 +2,61 @@
"About": {
"textAbout": "情報",
"textAddress": "アドレス",
"textBack": "戻る"
"textBack": "戻る",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Add": {
"textAddLink": "リンクを追加",
"textAddress": "アドレス",
"textBack": "戻る"
"textBack": "戻る",
"textCancel": "キャンセル",
"notcriticalErrorTitle": "Warning",
"textBelowText": "Below text",
"textBottomOfPage": "Bottom of page",
"textBreak": "Break",
"textCenterBottom": "Center Bottom",
"textCenterTop": "Center Top",
"textColumnBreak": "Column Break",
"textColumns": "Columns",
"textComment": "Comment",
"textContinuousPage": "Continuous Page",
"textCurrentPosition": "Current Position",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify image URL.",
"textEvenPage": "Even Page",
"textFootnote": "Footnote",
"textFormat": "Format",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertFootnote": "Insert Footnote",
"textInsertImage": "Insert Image",
"textLeftBottom": "Left Bottom",
"textLeftTop": "Left Top",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLocation": "Location",
"textNextPage": "Next Page",
"textOddPage": "Odd Page",
"textOther": "Other",
"textPageBreak": "Page Break",
"textPageNumber": "Page Number",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPosition": "Position",
"textRightBottom": "Right Bottom",
"textRightTop": "Right Top",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textSectionBreak": "Section Break",
"textShape": "Shape",
"textStartAt": "Start At",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Common": {
"Collaboration": {
@ -20,12 +69,118 @@
"textAllChangesRejectedPreview": "すべての変更が拒否されました(プレビュー)",
"textAuto": "自動",
"textBack": "戻る",
"textShd": "背景色"
"textCancel": "キャンセル",
"textCenter": "中央揃え",
"textDelete": "削除",
"textDone": "完了",
"textLeft": "左揃え",
"textRight": "右揃え",
"textShd": "背景色",
"notcriticalErrorTitle": "Warning",
"textAtLeast": "at least",
"textBaseline": "Baseline",
"textBold": "Bold",
"textBreakBefore": "Page break before",
"textCaps": "All caps",
"textChart": "Chart",
"textCollaboration": "Collaboration",
"textColor": "Font color",
"textComments": "Comments",
"textContextual": "Don't add intervals between paragraphs of the same style",
"textDeleteComment": "Delete Comment",
"textDeleted": "Deleted:",
"textDeleteReply": "Delete Reply",
"textDisplayMode": "Display Mode",
"textDStrikeout": "Double strikeout",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textEquation": "Equation",
"textExact": "exactly",
"textFinal": "Final",
"textFirstLine": "First line",
"textFormatted": "Formatted",
"textHighlight": "Highlight color",
"textImage": "Image",
"textIndentLeft": "Indent left",
"textIndentRight": "Indent right",
"textInserted": "Inserted:",
"textItalic": "Italic",
"textJustify": "Align justified ",
"textKeepLines": "Keep lines together",
"textKeepNext": "Keep with next",
"textLineSpacing": "Line Spacing: ",
"textMarkup": "Markup",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textMultiple": "multiple",
"textNoBreakBefore": "No page break before",
"textNoChanges": "There are no changes.",
"textNoComments": "This document doesn't contain comments",
"textNoContextual": "Add interval between paragraphs of the same style",
"textNoKeepLines": "Don't keep lines together",
"textNoKeepNext": "Don't keep with next",
"textNot": "Not ",
"textNoWidow": "No widow control",
"textNum": "Change numbering",
"textOriginal": "Original",
"textParaDeleted": "Paragraph Deleted",
"textParaFormatted": "Paragraph Formatted",
"textParaInserted": "Paragraph Inserted",
"textParaMoveFromDown": "Moved Down:",
"textParaMoveFromUp": "Moved Up:",
"textParaMoveTo": "Moved:",
"textPosition": "Position",
"textReject": "Reject",
"textRejectAllChanges": "Reject All Changes",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textReview": "Review",
"textReviewChange": "Review Change",
"textShape": "Shape",
"textSmallCaps": "Small caps",
"textSpacing": "Spacing",
"textSpacingAfter": "Spacing after",
"textSpacingBefore": "Spacing before",
"textStrikeout": "Strikeout",
"textSubScript": "Subscript",
"textSuperScript": "Superscript",
"textTableChanged": "Table Settings Changed",
"textTableRowsAdd": "Table Rows Added",
"textTableRowsDel": "Table Rows Deleted",
"textTabs": "Change tabs",
"textTrackChanges": "Track Changes",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUnderline": "Underline",
"textUsers": "Users",
"textWidow": "Widow control"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"menuAddComment": "コメントを追加",
"menuAddLink": "リンクを追加"
"menuAddLink": "リンクを追加",
"menuCancel": "キャンセル",
"menuDelete": "削除",
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuReview": "Review",
"menuReviewChange": "Review Change",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Edit": {
"textActualSize": "実際のサイズ",
@ -37,16 +192,386 @@
"textAuto": "自動",
"textAutomatic": "自動",
"textBack": "戻る",
"textBackground": "背景"
"textBackground": "背景",
"textNone": "なし",
"notcriticalErrorTitle": "Warning",
"textAdditional": "Additional",
"textAfter": "After",
"textAlign": "Align",
"textAllCaps": "All caps",
"textAllowOverlap": "Allow overlap",
"textBandedColumn": "Banded column",
"textBandedRow": "Banded row",
"textBefore": "Before",
"textBehind": "Behind",
"textBorder": "Border",
"textBringToForeground": "Bring to foreground",
"textBullets": "Bullets",
"textBulletsAndNumbers": "Bullets & Numbers",
"textCellMargins": "Cell Margins",
"textChart": "Chart",
"textClose": "Close",
"textColor": "Color",
"textContinueFromPreviousSection": "Continue from previous section",
"textCustomColor": "Custom Color",
"textDifferentFirstPage": "Different first page",
"textDifferentOddAndEvenPages": "Different odd and even pages",
"textDisplay": "Display",
"textDistanceFromText": "Distance from text",
"textDoubleStrikethrough": "Double Strikethrough",
"textEditLink": "Edit Link",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify image URL.",
"textFill": "Fill",
"textFirstColumn": "First Column",
"textFirstLine": "FirstLine",
"textFlow": "Flow",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFooter": "Footer",
"textHeader": "Header",
"textHeaderRow": "Header Row",
"textHighlightColor": "Highlight Color",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textInFront": "In Front",
"textInline": "Inline",
"textKeepLinesTogether": "Keep Lines Together",
"textKeepWithNext": "Keep with Next",
"textLastColumn": "Last Column",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkToPrevious": "Link to Previous",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textMoveWithText": "Move with Text",
"textNoStyles": "No styles for this type of charts.",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textNumbers": "Numbers",
"textOpacity": "Opacity",
"textOptions": "Options",
"textOrphanControl": "Orphan Control",
"textPageBreakBefore": "Page Break Before",
"textPageNumbering": "Page Numbering",
"textParagraph": "Paragraph",
"textParagraphStyles": "Paragraph Styles",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPt": "pt",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",
"textResizeToFitContent": "Resize to Fit Content",
"textScreenTip": "Screen Tip",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textSettings": "Settings",
"textShape": "Shape",
"textSize": "Size",
"textSmallCaps": "Small Caps",
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
"textSquare": "Square",
"textStartAt": "Start at",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textTableOptions": "Table Options",
"textText": "Text",
"textThrough": "Through",
"textTight": "Tight",
"textTopAndBottom": "Top and Bottom",
"textTotalRow": "Total Row",
"textType": "Type",
"textWrap": "Wrap"
},
"LongActions": {
"downloadMergeText": "ダウンロード中...",
"downloadMergeTitle": "ダウンロード中",
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"mailMergeLoadFileText": "Loading Data Source...",
"mailMergeLoadFileTitle": "Loading Data Source",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"sendMergeText": "Sending Merge...",
"sendMergeTitle": "Sending Merge",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Main": {
"textAnonymous": "匿名"
"SDK": {
"Heading 1": "見出し1",
"Heading 2": "見出し2",
"Heading 3": "見出し3",
"Heading 4": "見出し4",
"Heading 5": "見出し5",
"Heading 6": "見出し6",
"Heading 7": "見出し7",
"Heading 8": "見出し8",
"Heading 9": "見出し9",
"None": "なし",
" -Section ": " -Section ",
"above": "above",
"below": "below",
"Caption": "Caption",
"Choose an item": "Choose an item",
"Click to load image": "Click to load image",
"Current Document": "Current Document",
"Diagram Title": "Chart Title",
"endnote text": "Endnote Text",
"Enter a date": "Enter a date",
"Error! Bookmark not defined": "Error! Bookmark not defined.",
"Error! Main Document Only": "Error! Main Document Only.",
"Error! No text of specified style in document": "Error! No text of specified style in document.",
"Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"Even Page ": "Even Page ",
"First Page ": "First Page ",
"Footer": "Footer",
"footnote text": "Footnote Text",
"Header": "Header",
"Hyperlink": "Hyperlink",
"Index Too Large": "Index Too Large",
"Intense Quote": "Intense Quote",
"Is Not In Table": "Is Not In Table",
"List Paragraph": "List Paragraph",
"Missing Argument": "Missing Argument",
"Missing Operator": "Missing Operator",
"No Spacing": "No Spacing",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"No table of figures entries found": "No table of figures entries found.",
"Normal": "Normal",
"Number Too Large To Format": "Number Too Large To Format",
"Odd Page ": "Odd Page ",
"Quote": "Quote",
"Same as Previous": "Same as Previous",
"Series": "Series",
"Subtitle": "Subtitle",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"Title": "Title",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here",
"Zero Divide": "Zero Divide"
},
"textAnonymous": "匿名",
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"textBuyNow": "Visit website",
"textClose": "Close",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit this file."
},
"Settings": {
"textAbout": "情報",
"textApplication": "アプリ",
"textApplicationSettings": "アプリ設定",
"textAuthor": "作成者",
"textBack": "戻る"
"textBack": "戻る",
"textCancel": "キャンセル",
"textDone": "完了",
"textDownload": "ダウンロード",
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"advTxtOptions": "Choose TXT Options",
"closeButtonText": "Close File",
"notcriticalErrorTitle": "Warning",
"textBottom": "Bottom",
"textCaseSensitive": "Case Sensitive",
"textCentimeter": "Centimeter",
"textCollaboration": "Collaboration",
"textColorSchemes": "Color Schemes",
"textComment": "Comment",
"textComments": "Comments",
"textCommentsDisplay": "Comments Display",
"textCreated": "Created",
"textCustomSize": "Custom Size",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDocumentInfo": "Document Info",
"textDocumentSettings": "Document Settings",
"textDocumentTitle": "Document Title",
"textDownloadAs": "Download As",
"textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?",
"textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textEncoding": "Encoding",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textFormat": "Format",
"textHelp": "Help",
"textHiddenTableBorders": "Hidden Table Borders",
"textHighlightResults": "Highlight Results",
"textInch": "Inch",
"textLandscape": "Landscape",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLeft": "Left",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textMargins": "Margins",
"textMarginsH": "Top and bottom margins are too high for a given page height",
"textMarginsW": "Left and right margins are too wide for a given page width",
"textNoCharacters": "Nonprinting Characters",
"textNoTextFound": "Text not found",
"textOpenFile": "Enter a password to open the file",
"textOrientation": "Orientation",
"textOwner": "Owner",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Print",
"textReaderMode": "Reader Mode",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textResolvedComments": "Resolved Comments",
"textRight": "Right",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
"textTitle": "Title",
"textTop": "Top",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
},
"Error": {
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.<br>When you click OK, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorMailMergeLoadFile": "Loading failed",
"errorMailMergeSaveFile": "Merge failed.",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.",
"errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"openErrorText": "An error has occurred while opening the file",
"saveErrorText": "An error has occurred while saving the file",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this Page",
"stayButtonText": "Stay on this page"
}
}

View file

@ -1,403 +1,577 @@
{
"Common.Controllers.Collaboration.textJustify": "양끝 정렬",
"Common.UI.ThemeColorPalette.textStandartColors": "표준 색상",
"Common.UI.ThemeColorPalette.textThemeColors": "테마 색",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"DE.Controllers.AddContainer.textImage": "이미지",
"DE.Controllers.AddContainer.textOther": "기타",
"DE.Controllers.AddContainer.textShape": "Shape",
"DE.Controllers.AddContainer.textTable": "테이블",
"DE.Controllers.AddImage.textEmptyImgUrl": "이미지 URL을 지정해야합니다.",
"DE.Controllers.AddImage.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.",
"DE.Controllers.AddOther.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.",
"DE.Controllers.AddTable.textCancel": "취소",
"DE.Controllers.AddTable.textColumns": "열",
"DE.Controllers.AddTable.textRows": "Rows",
"DE.Controllers.AddTable.textTableSize": "표 크기",
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "복사, 잘라내기 및 붙여 넣기 작업",
"DE.Controllers.DocumentHolder.menuAddLink": "링크 추가",
"DE.Controllers.DocumentHolder.menuCopy": "복사",
"DE.Controllers.DocumentHolder.menuCut": "잘라 내기",
"DE.Controllers.DocumentHolder.menuDelete": "삭제",
"DE.Controllers.DocumentHolder.menuEdit": "편집",
"DE.Controllers.DocumentHolder.menuMore": "More",
"DE.Controllers.DocumentHolder.menuOpenLink": "링크 열기",
"DE.Controllers.DocumentHolder.menuPaste": "붙여 넣기",
"DE.Controllers.DocumentHolder.menuReview": "다시보기",
"DE.Controllers.DocumentHolder.sheetCancel": "취소",
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기",
"DE.Controllers.DocumentHolder.textGuest": "Guest",
"DE.Controllers.EditContainer.textChart": "차트",
"DE.Controllers.EditContainer.textFooter": "꼬리말",
"DE.Controllers.EditContainer.textHeader": "머리글",
"DE.Controllers.EditContainer.textHyperlink": "하이퍼 링크",
"DE.Controllers.EditContainer.textImage": "이미지",
"DE.Controllers.EditContainer.textParagraph": "단락",
"DE.Controllers.EditContainer.textSettings": "설정",
"DE.Controllers.EditContainer.textShape": "Shape",
"DE.Controllers.EditContainer.textTable": "테이블",
"DE.Controllers.EditContainer.textText": "텍스트",
"DE.Controllers.EditImage.textEmptyImgUrl": "이미지 URL을 지정해야합니다.",
"DE.Controllers.EditImage.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.",
"DE.Controllers.EditText.textAuto": "Auto",
"DE.Controllers.EditText.textFonts": "글꼴",
"DE.Controllers.EditText.textPt": "pt",
"DE.Controllers.Main.advDRMEnterPassword": "비밀번호를 입력하십시오 :",
"DE.Controllers.Main.advDRMOptions": "보호 된 파일",
"DE.Controllers.Main.advDRMPassword": "Password",
"DE.Controllers.Main.advTxtOptions": "TXT 옵션 선택",
"DE.Controllers.Main.applyChangesTextText": "데이터로드 중 ...",
"DE.Controllers.Main.applyChangesTitleText": "데이터로드 중",
"DE.Controllers.Main.closeButtonText": "파일 닫기",
"DE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.",
"DE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 '확인'을 누르십시오.",
"DE.Controllers.Main.criticalErrorTitle": "오류",
"DE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.",
"DE.Controllers.Main.downloadMergeText": "다운로드 중 ...",
"DE.Controllers.Main.downloadMergeTitle": "다운로드 중",
"DE.Controllers.Main.downloadTextText": "문서 다운로드 중 ...",
"DE.Controllers.Main.downloadTitleText": "문서 다운로드 중",
"DE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 더 이상 편집 할 수 없습니다.",
"DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.<br>'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.",
"DE.Controllers.Main.errorDatabaseConnection": "외부 오류입니다. <br> 데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.",
"DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
"DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
"DE.Controllers.Main.errorEditingDownloadas": "문서에 작업하는 도중에 에러가 발생했습니다.<br>'다운로드' 옵션을 사용해서 컴퓨터에 백업본을 저장해 주세요.",
"DE.Controllers.Main.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.",
"DE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자",
"DE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다",
"DE.Controllers.Main.errorMailMergeLoadFile": "로드 실패",
"DE.Controllers.Main.errorMailMergeSaveFile": "병합하지 못했습니다.",
"DE.Controllers.Main.errorProcessSaveResult": "저장이 실패했습니다.",
"DE.Controllers.Main.errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.",
"DE.Controllers.Main.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 다음 순서로 시트에 데이터를 배치하십시오 : <br> 개시 가격, 최대 가격, 최소 가격, 마감 가격.",
"DE.Controllers.Main.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.",
"DE.Controllers.Main.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.",
"DE.Controllers.Main.errorUsersExceed": "사용자 수가 초과되었습니다",
"DE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는 <br> <br>하지만 연결이 복원 될 때까지 다운로드 할 수 없습니다.",
"DE.Controllers.Main.leavePageText": "이 문서에서 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 있으면 문서의 자동 저장을 기다릴 수 있습니다. 저장하지 않은 모든 변경 사항을 취소하려면 '이 페이지 남겨두기'를 클릭하십시오.",
"DE.Controllers.Main.loadFontsTextText": "데이터로드 중 ...",
"DE.Controllers.Main.loadFontsTitleText": "데이터로드 중",
"DE.Controllers.Main.loadFontTextText": "데이터로드 중 ...",
"DE.Controllers.Main.loadFontTitleText": "데이터로드 중",
"DE.Controllers.Main.loadImagesTextText": "이미지로드 중 ...",
"DE.Controllers.Main.loadImagesTitleText": "이미지로드 중",
"DE.Controllers.Main.loadImageTextText": "이미지로드 중 ...",
"DE.Controllers.Main.loadImageTitleText": "이미지로드 중",
"DE.Controllers.Main.loadingDocumentTextText": "문서로드 중 ...",
"DE.Controllers.Main.loadingDocumentTitleText": "문서로드 중",
"DE.Controllers.Main.mailMergeLoadFileText": "데이터 소스로드 중 ...",
"DE.Controllers.Main.mailMergeLoadFileTitle": "데이터 소스로드 중",
"DE.Controllers.Main.notcriticalErrorTitle": "경고",
"DE.Controllers.Main.openErrorText": "파일을 여는 동안 오류가 발생했습니다.",
"DE.Controllers.Main.openTextText": "문서 열기 중 ...",
"DE.Controllers.Main.openTitleText": "문서 열기",
"DE.Controllers.Main.printTextText": "문서 인쇄 중 ...",
"DE.Controllers.Main.printTitleText": "문서 인쇄 중",
"DE.Controllers.Main.saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.",
"DE.Controllers.Main.savePreparingText": "저장 준비 중",
"DE.Controllers.Main.savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...",
"DE.Controllers.Main.saveTextText": "문서 저장 중 ...",
"DE.Controllers.Main.saveTitleText": "문서 저장 중",
"DE.Controllers.Main.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.",
"DE.Controllers.Main.sendMergeText": "Sending Merge ...",
"DE.Controllers.Main.sendMergeTitle": "Sending Merge",
"DE.Controllers.Main.splitDividerErrorText": "행 수는 % 1의 제수 여야합니다",
"DE.Controllers.Main.splitMaxColsErrorText": "열 수가 % 1보다 작아야합니다",
"DE.Controllers.Main.splitMaxRowsErrorText": "행 수가 % 1보다 작아야합니다",
"DE.Controllers.Main.textAnonymous": "익명",
"DE.Controllers.Main.textBack": "Back",
"DE.Controllers.Main.textBuyNow": "웹 사이트 방문",
"DE.Controllers.Main.textCancel": "취소",
"DE.Controllers.Main.textClose": "닫기",
"DE.Controllers.Main.textContactUs": "영업 부서",
"DE.Controllers.Main.textDone": "완료",
"DE.Controllers.Main.textLoadingDocument": "문서로드 중",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE 연결 제한",
"DE.Controllers.Main.textOK": "OK",
"DE.Controllers.Main.textPaidFeature": "유료 기능",
"DE.Controllers.Main.textPassword": "Password",
"DE.Controllers.Main.textPreloader": "로드 중 ...",
"DE.Controllers.Main.textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.",
"DE.Controllers.Main.textUsername": "사용자 이름",
"DE.Controllers.Main.titleLicenseExp": "라이센스 만료",
"DE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다.",
"DE.Controllers.Main.titleUpdateVersion": "버전이 변경되었습니다.",
"DE.Controllers.Main.txtArt": "여기에 귀하의 텍스트",
"DE.Controllers.Main.txtDiagramTitle": "차트 제목",
"DE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...",
"DE.Controllers.Main.txtFooter": "Footer",
"DE.Controllers.Main.txtHeader": "머리글",
"DE.Controllers.Main.txtSeries": "Series",
"DE.Controllers.Main.txtStyle_footnote_text": "꼬리말 글",
"DE.Controllers.Main.txtStyle_Heading_1": "제목 1",
"DE.Controllers.Main.txtStyle_Heading_2": "제목 2",
"DE.Controllers.Main.txtStyle_Heading_3": "제목 3",
"DE.Controllers.Main.txtStyle_Heading_4": "제목 4",
"DE.Controllers.Main.txtStyle_Heading_5": "제목 5",
"DE.Controllers.Main.txtStyle_Heading_6": "제목 6",
"DE.Controllers.Main.txtStyle_Heading_7": "제목 7",
"DE.Controllers.Main.txtStyle_Heading_8": "제목 8",
"DE.Controllers.Main.txtStyle_Heading_9": "제목 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "강렬한 견적",
"DE.Controllers.Main.txtStyle_List_Paragraph": "목록 단락",
"DE.Controllers.Main.txtStyle_No_Spacing": "간격 없음",
"DE.Controllers.Main.txtStyle_Normal": "Normal",
"DE.Controllers.Main.txtStyle_Quote": "Quote",
"DE.Controllers.Main.txtStyle_Subtitle": "자막",
"DE.Controllers.Main.txtStyle_Title": "제목",
"DE.Controllers.Main.txtXAxis": "X 축",
"DE.Controllers.Main.txtYAxis": "Y 축",
"DE.Controllers.Main.unknownErrorText": "알 수없는 오류.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.",
"DE.Controllers.Main.uploadImageExtMessage": "알 수없는 이미지 형식입니다.",
"DE.Controllers.Main.uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.",
"DE.Controllers.Main.uploadImageSizeMessage": "Maximium 이미지 크기 제한을 초과했습니다.",
"DE.Controllers.Main.uploadImageTextText": "이미지 업로드 중 ...",
"DE.Controllers.Main.uploadImageTitleText": "이미지 업로드 중",
"DE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다. <br> 라이센스를 업데이트하고 페이지를 새로 고침하십시오.",
"DE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다. <br> 더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.",
"DE.Controllers.Main.warnNoLicenseUsers": "%1 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다. <br> 더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.",
"DE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.",
"DE.Controllers.Search.textNoTextFound": "텍스트를 찾을 수 없습니다",
"DE.Controllers.Search.textReplaceAll": "모두 바꾸기",
"DE.Controllers.Settings.notcriticalErrorTitle": "경고",
"DE.Controllers.Settings.txtLoading": "로드 중 ...",
"DE.Controllers.Settings.unknownText": "알 수 없음",
"DE.Controllers.Settings.warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?",
"DE.Controllers.Toolbar.dlgLeaveMsgText": "이 문서에 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 있으면 문서의 자동 저장을 기다릴 수 있습니다. 저장하지 않은 모든 변경 사항을 취소하려면 '이 페이지를 남겨주세요'를 클릭하십시오.",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "응용 프로그램을 종료합니다",
"DE.Controllers.Toolbar.leaveButtonText": "이 페이지를 남겨주세요",
"DE.Controllers.Toolbar.stayButtonText": "이 페이지에 머물러 라.",
"DE.Views.AddImage.textAddress": "주소",
"DE.Views.AddImage.textBack": "뒤로",
"DE.Views.AddImage.textFromLibrary": "그림 라이브러리에서",
"DE.Views.AddImage.textFromURL": "URL에서 그림",
"DE.Views.AddImage.textImageURL": "이미지 URL",
"DE.Views.AddImage.textInsertImage": "이미지 삽입",
"DE.Views.AddImage.textLinkSettings": "링크 설정",
"DE.Views.AddOther.textAddLink": "링크 추가",
"DE.Views.AddOther.textBack": "뒤로",
"DE.Views.AddOther.textCenterBottom": "Center Bottom",
"DE.Views.AddOther.textCenterTop": "센터 상단",
"DE.Views.AddOther.textColumnBreak": "열 나누기",
"DE.Views.AddOther.textContPage": "연속 페이지",
"DE.Views.AddOther.textCurrentPos": "현재 위치",
"DE.Views.AddOther.textDisplay": "표시",
"DE.Views.AddOther.textEvenPage": "짝수 페이지",
"DE.Views.AddOther.textInsert": "삽입",
"DE.Views.AddOther.textLeftBottom": "왼쪽 아래",
"DE.Views.AddOther.textLeftTop": "왼쪽 상단",
"DE.Views.AddOther.textLink": "링크",
"DE.Views.AddOther.textNextPage": "다음 페이지",
"DE.Views.AddOther.textOddPage": "홀수 페이지",
"DE.Views.AddOther.textPageBreak": "페이지 나누기",
"DE.Views.AddOther.textPageNumber": "페이지 번호",
"DE.Views.AddOther.textPosition": "위치",
"DE.Views.AddOther.textRightBottom": "오른쪽 아래",
"DE.Views.AddOther.textRightTop": "오른쪽 상단",
"DE.Views.AddOther.textSectionBreak": "섹션 나누기",
"DE.Views.AddOther.textTip": "화면 팁",
"DE.Views.EditChart.textAlign": "정렬",
"DE.Views.EditChart.textBack": "뒤로",
"DE.Views.EditChart.textBackward": "뒤로 이동",
"DE.Views.EditChart.textBehind": "Behind",
"DE.Views.EditChart.textBorder": "테두리",
"DE.Views.EditChart.textColor": "Color",
"DE.Views.EditChart.textDistanceText": "텍스트로부터의 거리",
"DE.Views.EditChart.textFill": "채우기",
"DE.Views.EditChart.textForward": "앞으로 이동",
"DE.Views.EditChart.textInFront": "In Front",
"DE.Views.EditChart.textInline": "인라인",
"DE.Views.EditChart.textMoveText": "텍스트와 함께 이동",
"DE.Views.EditChart.textOverlap": "오버랩 허용",
"DE.Views.EditChart.textRemoveChart": "차트 제거",
"DE.Views.EditChart.textReorder": "재정렬",
"DE.Views.EditChart.textSize": "크기",
"DE.Views.EditChart.textSquare": "Square",
"DE.Views.EditChart.textStyle": "스타일",
"DE.Views.EditChart.textThrough": "통해",
"DE.Views.EditChart.textTight": "Tight",
"DE.Views.EditChart.textToBackground": "배경으로 보내기",
"DE.Views.EditChart.textToForeground": "포 그라운드로 가져 오기",
"DE.Views.EditChart.textTopBottom": "상단 및 하단",
"DE.Views.EditChart.textType": "유형",
"DE.Views.EditChart.textWrap": "줄 바꾸기",
"DE.Views.EditHeader.textDiffFirst": "다른 첫 페이지",
"DE.Views.EditHeader.textDiffOdd": "다른 홀수 및 짝수 페이지",
"DE.Views.EditHeader.textSameAs": "이전 링크",
"DE.Views.EditHyperlink.textDisplay": "표시",
"DE.Views.EditHyperlink.textEdit": "링크 편집",
"DE.Views.EditHyperlink.textLink": "링크",
"DE.Views.EditHyperlink.textRemove": "링크 제거",
"DE.Views.EditHyperlink.textTip": "화면 팁",
"DE.Views.EditImage.textAddress": "주소",
"DE.Views.EditImage.textAlign": "정렬",
"DE.Views.EditImage.textBack": "뒤로",
"DE.Views.EditImage.textBackward": "뒤로 이동",
"DE.Views.EditImage.textBehind": "Behind",
"DE.Views.EditImage.textDefault": "기본 크기",
"DE.Views.EditImage.textDistanceText": "텍스트로부터의 거리",
"DE.Views.EditImage.textForward": "앞으로 이동",
"DE.Views.EditImage.textFromLibrary": "그림 라이브러리에서",
"DE.Views.EditImage.textFromURL": "URL에서 그림",
"DE.Views.EditImage.textImageURL": "이미지 URL",
"DE.Views.EditImage.textInFront": "In Front",
"DE.Views.EditImage.textInline": "인라인",
"DE.Views.EditImage.textLinkSettings": "링크 설정",
"DE.Views.EditImage.textMoveText": "텍스트와 함께 이동",
"DE.Views.EditImage.textOverlap": "오버랩 허용",
"DE.Views.EditImage.textRemove": "이미지 제거",
"DE.Views.EditImage.textReorder": "재주문",
"DE.Views.EditImage.textReplace": "바꾸기",
"DE.Views.EditImage.textReplaceImg": "이미지 바꾸기",
"DE.Views.EditImage.textSquare": "Square",
"DE.Views.EditImage.textThrough": "통해",
"DE.Views.EditImage.textTight": "Tight",
"DE.Views.EditImage.textToBackground": "배경에 보내기",
"DE.Views.EditImage.textToForeground": "포 그라운드로 가져 오기",
"DE.Views.EditImage.textTopBottom": "상단 및 하단",
"DE.Views.EditImage.textWrap": "줄 바꾸기",
"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.EditParagraph.textBefore": "이전",
"DE.Views.EditParagraph.textFirstLine": "첫 번째 줄",
"DE.Views.EditParagraph.textFromText": "텍스트로부터의 거리",
"DE.Views.EditParagraph.textKeepLines": "Keep Lines Together",
"DE.Views.EditParagraph.textKeepNext": "다음 보관",
"DE.Views.EditParagraph.textOrphan": "고아 컨트롤",
"DE.Views.EditParagraph.textPageBreak": "페이지 나누기 전",
"DE.Views.EditParagraph.textPrgStyles": "단락 스타일",
"DE.Views.EditParagraph.textSpaceBetween": "단락 사이의 공백",
"DE.Views.EditShape.textAlign": "정렬",
"DE.Views.EditShape.textBack": "뒤로",
"DE.Views.EditShape.textBackward": "뒤로 이동",
"DE.Views.EditShape.textBehind": "Behind",
"DE.Views.EditShape.textBorder": "테두리",
"DE.Views.EditShape.textColor": "Color",
"DE.Views.EditShape.textEffects": "효과",
"DE.Views.EditShape.textFill": "채우기",
"DE.Views.EditShape.textForward": "앞으로 이동",
"DE.Views.EditShape.textFromText": "텍스트로부터의 거리",
"DE.Views.EditShape.textInFront": "앞에 있음",
"DE.Views.EditShape.textInline": "인라인",
"DE.Views.EditShape.textOpacity": "불투명도",
"DE.Views.EditShape.textOverlap": "오버랩 허용",
"DE.Views.EditShape.textRemoveShape": "도형 제거",
"DE.Views.EditShape.textReorder": "재정렬",
"DE.Views.EditShape.textReplace": "바꾸기",
"DE.Views.EditShape.textSize": "크기",
"DE.Views.EditShape.textSquare": "Square",
"DE.Views.EditShape.textStyle": "스타일",
"DE.Views.EditShape.textThrough": "통해",
"DE.Views.EditShape.textTight": "Tight",
"DE.Views.EditShape.textToBackground": "배경으로 보내기",
"DE.Views.EditShape.textToForeground": "포 그라운드로 가져 오기",
"DE.Views.EditShape.textTopAndBottom": "상단 및 하단",
"DE.Views.EditShape.textWithText": "텍스트와 함께 이동",
"DE.Views.EditShape.textWrap": "줄 바꾸기",
"DE.Views.EditTable.textAlign": "정렬",
"DE.Views.EditTable.textBack": "뒤로",
"DE.Views.EditTable.textBandedColumn": "줄무늬 형 열",
"DE.Views.EditTable.textBandedRow": "줄무늬 행",
"DE.Views.EditTable.textBorder": "테두리",
"DE.Views.EditTable.textCellMargins": "셀 여백",
"DE.Views.EditTable.textColor": "Color",
"DE.Views.EditTable.textFill": "채우기",
"DE.Views.EditTable.textFirstColumn": "첫 번째 열",
"DE.Views.EditTable.textFlow": "흐름",
"DE.Views.EditTable.textFromText": "텍스트로부터의 거리",
"DE.Views.EditTable.textHeaderRow": "헤더 행",
"DE.Views.EditTable.textInline": "인라인",
"DE.Views.EditTable.textLastColumn": "마지막 열",
"DE.Views.EditTable.textOptions": "옵션",
"DE.Views.EditTable.textRemoveTable": "테이블 제거",
"DE.Views.EditTable.textRepeatHeader": "헤더 행으로 반복",
"DE.Views.EditTable.textResizeFit": "내용에 맞게 크기 조정",
"DE.Views.EditTable.textSize": "크기",
"DE.Views.EditTable.textStyle": "스타일",
"DE.Views.EditTable.textStyleOptions": "스타일 옵션",
"DE.Views.EditTable.textTableOptions": "테이블 옵션",
"DE.Views.EditTable.textTotalRow": "총 행",
"DE.Views.EditTable.textWithText": "텍스트와 함께 이동",
"DE.Views.EditTable.textWrap": "줄 바꾸기",
"DE.Views.EditText.textAdditional": "추가",
"DE.Views.EditText.textAdditionalFormat": "추가 서식 지정",
"DE.Views.EditText.textAllCaps": "모든 대문자",
"DE.Views.EditText.textAutomatic": "자동",
"DE.Views.EditText.textBack": "뒤로",
"DE.Views.EditText.textBullets": "Bullets",
"DE.Views.EditText.textDblStrikethrough": "Double Strikethrough",
"DE.Views.EditText.textDblSuperscript": "위 첨자",
"DE.Views.EditText.textFontColor": "글꼴 색",
"DE.Views.EditText.textFontColors": "글꼴 색",
"DE.Views.EditText.textFonts": "글꼴",
"DE.Views.EditText.textHighlightColor": "Highlight Color",
"DE.Views.EditText.textHighlightColors": "하이라이트 색상",
"DE.Views.EditText.textLetterSpacing": "문자 간격",
"DE.Views.EditText.textLineSpacing": "줄 간격",
"DE.Views.EditText.textNone": "없음",
"DE.Views.EditText.textNumbers": "숫자",
"DE.Views.EditText.textSize": "크기",
"DE.Views.EditText.textSmallCaps": "작은 대문자",
"DE.Views.EditText.textStrikethrough": "취소 선",
"DE.Views.EditText.textSubscript": "아래 첨자",
"DE.Views.Search.textCase": "대소 문자를 구분합니다",
"DE.Views.Search.textDone": "완료",
"DE.Views.Search.textFind": "찾기",
"DE.Views.Search.textFindAndReplace": "찾기 및 바꾸기",
"DE.Views.Search.textHighlight": "결과 강조 표시",
"DE.Views.Search.textReplace": "바꾸기",
"DE.Views.Search.textSearch": "검색",
"DE.Views.Settings.textAbout": "정보",
"DE.Views.Settings.textAddress": "주소",
"DE.Views.Settings.textAdvancedSettings": "어플리케이션 설정",
"DE.Views.Settings.textAuthor": "저자",
"DE.Views.Settings.textBack": "뒤로",
"DE.Views.Settings.textCreateDate": "생성 날짜",
"DE.Views.Settings.textCustom": "사용자 정의",
"DE.Views.Settings.textCustomSize": "사용자 정의 크기",
"DE.Views.Settings.textDocInfo": "문서 정보",
"DE.Views.Settings.textDocTitle": "문서 제목",
"DE.Views.Settings.textDocumentFormats": "문서 형식",
"DE.Views.Settings.textDocumentSettings": "문서 설정",
"DE.Views.Settings.textDone": "완료",
"DE.Views.Settings.textDownload": "다운로드",
"DE.Views.Settings.textDownloadAs": "다른 이름으로 다운로드 ...",
"DE.Views.Settings.textEditDoc": "문서 편집",
"DE.Views.Settings.textEmail": "이메일",
"DE.Views.Settings.textFind": "찾기",
"DE.Views.Settings.textFindAndReplace": "찾기 및 바꾸기",
"DE.Views.Settings.textFormat": "서식",
"DE.Views.Settings.textHelp": "도움말",
"DE.Views.Settings.textLandscape": "Landscape",
"DE.Views.Settings.textLeft": "왼쪽",
"DE.Views.Settings.textLoading": "로드 중 ...",
"DE.Views.Settings.textMargins": "여백",
"DE.Views.Settings.textOrientation": "오리엔테이션",
"DE.Views.Settings.textPages": "페이지",
"DE.Views.Settings.textParagraphs": "단락",
"DE.Views.Settings.textPortrait": "Portrait",
"DE.Views.Settings.textPoweredBy": "Powered by",
"DE.Views.Settings.textPrint": "인쇄",
"DE.Views.Settings.textReader": "리더 모드",
"DE.Views.Settings.textReview": "변경 내용 추적",
"DE.Views.Settings.textRight": "오른쪽",
"DE.Views.Settings.textSettings": "설정",
"DE.Views.Settings.textSpaces": "공백",
"DE.Views.Settings.textSpellcheck": "맞춤법 검사",
"DE.Views.Settings.textStatistic": "Statistic",
"DE.Views.Settings.textSymbols": "기호",
"DE.Views.Settings.textTel": "tel",
"DE.Views.Settings.textTop": "상위",
"DE.Views.Settings.textVersion": "버전",
"DE.Views.Settings.textWords": "단어",
"DE.Views.Settings.unknownText": "알 수 없음",
"DE.Views.Toolbar.textBack": "뒤로"
"About": {
"textAbout": "About",
"textAddress": "Address",
"textBack": "Back",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Add": {
"notcriticalErrorTitle": "Warning",
"textAddLink": "Add link",
"textAddress": "Address",
"textBack": "Back",
"textBelowText": "Below text",
"textBottomOfPage": "Bottom of page",
"textBreak": "Break",
"textCancel": "Cancel",
"textCenterBottom": "Center Bottom",
"textCenterTop": "Center Top",
"textColumnBreak": "Column Break",
"textColumns": "Columns",
"textComment": "Comment",
"textContinuousPage": "Continuous Page",
"textCurrentPosition": "Current Position",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify image URL.",
"textEvenPage": "Even Page",
"textFootnote": "Footnote",
"textFormat": "Format",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertFootnote": "Insert Footnote",
"textInsertImage": "Insert Image",
"textLeftBottom": "Left Bottom",
"textLeftTop": "Left Top",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLocation": "Location",
"textNextPage": "Next Page",
"textOddPage": "Odd Page",
"textOther": "Other",
"textPageBreak": "Page Break",
"textPageNumber": "Page Number",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPosition": "Position",
"textRightBottom": "Right Bottom",
"textRightTop": "Right Top",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textSectionBreak": "Section Break",
"textShape": "Shape",
"textStartAt": "Start At",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Warning",
"textAccept": "Accept",
"textAcceptAllChanges": "Accept all changes",
"textAddComment": "Add comment",
"textAddReply": "Add reply",
"textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"textAllChangesEditing": "All changes (Editing)",
"textAllChangesRejectedPreview": "All changes rejected (Preview)",
"textAtLeast": "at least",
"textAuto": "auto",
"textBack": "Back",
"textBaseline": "Baseline",
"textBold": "Bold",
"textBreakBefore": "Page break before",
"textCancel": "Cancel",
"textCaps": "All caps",
"textCenter": "Align center",
"textChart": "Chart",
"textCollaboration": "Collaboration",
"textColor": "Font color",
"textComments": "Comments",
"textContextual": "Don't add intervals between paragraphs of the same style",
"textDelete": "Delete",
"textDeleteComment": "Delete Comment",
"textDeleted": "Deleted:",
"textDeleteReply": "Delete Reply",
"textDisplayMode": "Display Mode",
"textDone": "Done",
"textDStrikeout": "Double strikeout",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textEquation": "Equation",
"textExact": "exactly",
"textFinal": "Final",
"textFirstLine": "First line",
"textFormatted": "Formatted",
"textHighlight": "Highlight color",
"textImage": "Image",
"textIndentLeft": "Indent left",
"textIndentRight": "Indent right",
"textInserted": "Inserted:",
"textItalic": "Italic",
"textJustify": "Align justified ",
"textKeepLines": "Keep lines together",
"textKeepNext": "Keep with next",
"textLeft": "Align left",
"textLineSpacing": "Line Spacing: ",
"textMarkup": "Markup",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textMultiple": "multiple",
"textNoBreakBefore": "No page break before",
"textNoChanges": "There are no changes.",
"textNoComments": "This document doesn't contain comments",
"textNoContextual": "Add interval between paragraphs of the same style",
"textNoKeepLines": "Don't keep lines together",
"textNoKeepNext": "Don't keep with next",
"textNot": "Not ",
"textNoWidow": "No widow control",
"textNum": "Change numbering",
"textOriginal": "Original",
"textParaDeleted": "Paragraph Deleted",
"textParaFormatted": "Paragraph Formatted",
"textParaInserted": "Paragraph Inserted",
"textParaMoveFromDown": "Moved Down:",
"textParaMoveFromUp": "Moved Up:",
"textParaMoveTo": "Moved:",
"textPosition": "Position",
"textReject": "Reject",
"textRejectAllChanges": "Reject All Changes",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textReview": "Review",
"textReviewChange": "Review Change",
"textRight": "Align right",
"textShape": "Shape",
"textShd": "Background color",
"textSmallCaps": "Small caps",
"textSpacing": "Spacing",
"textSpacingAfter": "Spacing after",
"textSpacingBefore": "Spacing before",
"textStrikeout": "Strikeout",
"textSubScript": "Subscript",
"textSuperScript": "Superscript",
"textTableChanged": "Table Settings Changed",
"textTableRowsAdd": "Table Rows Added",
"textTableRowsDel": "Table Rows Deleted",
"textTabs": "Change tabs",
"textTrackChanges": "Track Changes",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUnderline": "Underline",
"textUsers": "Users",
"textWidow": "Widow control"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuAddComment": "Add comment",
"menuAddLink": "Add link",
"menuCancel": "Cancel",
"menuDelete": "Delete",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuReview": "Review",
"menuReviewChange": "Review Change",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Edit": {
"notcriticalErrorTitle": "Warning",
"textActualSize": "Actual size",
"textAddCustomColor": "Add custom color",
"textAdditional": "Additional",
"textAdditionalFormatting": "Additional formatting",
"textAddress": "Address",
"textAdvanced": "Advanced",
"textAdvancedSettings": "Advanced settings",
"textAfter": "After",
"textAlign": "Align",
"textAllCaps": "All caps",
"textAllowOverlap": "Allow overlap",
"textAuto": "Auto",
"textAutomatic": "Automatic",
"textBack": "Back",
"textBackground": "Background",
"textBandedColumn": "Banded column",
"textBandedRow": "Banded row",
"textBefore": "Before",
"textBehind": "Behind",
"textBorder": "Border",
"textBringToForeground": "Bring to foreground",
"textBullets": "Bullets",
"textBulletsAndNumbers": "Bullets & Numbers",
"textCellMargins": "Cell Margins",
"textChart": "Chart",
"textClose": "Close",
"textColor": "Color",
"textContinueFromPreviousSection": "Continue from previous section",
"textCustomColor": "Custom Color",
"textDifferentFirstPage": "Different first page",
"textDifferentOddAndEvenPages": "Different odd and even pages",
"textDisplay": "Display",
"textDistanceFromText": "Distance from text",
"textDoubleStrikethrough": "Double Strikethrough",
"textEditLink": "Edit Link",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify image URL.",
"textFill": "Fill",
"textFirstColumn": "First Column",
"textFirstLine": "FirstLine",
"textFlow": "Flow",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFooter": "Footer",
"textHeader": "Header",
"textHeaderRow": "Header Row",
"textHighlightColor": "Highlight Color",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textInFront": "In Front",
"textInline": "Inline",
"textKeepLinesTogether": "Keep Lines Together",
"textKeepWithNext": "Keep with Next",
"textLastColumn": "Last Column",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkToPrevious": "Link to Previous",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textMoveWithText": "Move with Text",
"textNone": "None",
"textNoStyles": "No styles for this type of charts.",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textOpacity": "Opacity",
"textOptions": "Options",
"textOrphanControl": "Orphan Control",
"textPageBreakBefore": "Page Break Before",
"textPageNumbering": "Page Numbering",
"textParagraph": "Paragraph",
"textParagraphStyles": "Paragraph Styles",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPt": "pt",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",
"textResizeToFitContent": "Resize to Fit Content",
"textScreenTip": "Screen Tip",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textSettings": "Settings",
"textShape": "Shape",
"textSize": "Size",
"textSmallCaps": "Small Caps",
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
"textSquare": "Square",
"textStartAt": "Start at",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textTableOptions": "Table Options",
"textText": "Text",
"textThrough": "Through",
"textTight": "Tight",
"textTopAndBottom": "Top and Bottom",
"textTotalRow": "Total Row",
"textType": "Type",
"textWrap": "Wrap",
"textNumbers": "Numbers"
},
"Error": {
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.<br>When you click OK, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorMailMergeLoadFile": "Loading failed",
"errorMailMergeSaveFile": "Merge failed.",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.",
"errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"openErrorText": "An error has occurred while opening the file",
"saveErrorText": "An error has occurred while saving the file",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadMergeText": "Downloading...",
"downloadMergeTitle": "Downloading",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"mailMergeLoadFileText": "Loading Data Source...",
"mailMergeLoadFileTitle": "Loading Data Source",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"sendMergeText": "Sending Merge...",
"sendMergeTitle": "Sending Merge",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Main": {
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"SDK": {
" -Section ": " -Section ",
"above": "above",
"below": "below",
"Caption": "Caption",
"Choose an item": "Choose an item",
"Click to load image": "Click to load image",
"Current Document": "Current Document",
"Diagram Title": "Chart Title",
"endnote text": "Endnote Text",
"Enter a date": "Enter a date",
"Error! Bookmark not defined": "Error! Bookmark not defined.",
"Error! Main Document Only": "Error! Main Document Only.",
"Error! No text of specified style in document": "Error! No text of specified style in document.",
"Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"Even Page ": "Even Page ",
"First Page ": "First Page ",
"Footer": "Footer",
"footnote text": "Footnote Text",
"Header": "Header",
"Heading 1": "Heading 1",
"Heading 2": "Heading 2",
"Heading 3": "Heading 3",
"Heading 4": "Heading 4",
"Heading 5": "Heading 5",
"Heading 6": "Heading 6",
"Heading 7": "Heading 7",
"Heading 8": "Heading 8",
"Heading 9": "Heading 9",
"Hyperlink": "Hyperlink",
"Index Too Large": "Index Too Large",
"Intense Quote": "Intense Quote",
"Is Not In Table": "Is Not In Table",
"List Paragraph": "List Paragraph",
"Missing Argument": "Missing Argument",
"Missing Operator": "Missing Operator",
"No Spacing": "No Spacing",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"No table of figures entries found": "No table of figures entries found.",
"None": "None",
"Normal": "Normal",
"Number Too Large To Format": "Number Too Large To Format",
"Odd Page ": "Odd Page ",
"Quote": "Quote",
"Same as Previous": "Same as Previous",
"Series": "Series",
"Subtitle": "Subtitle",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"Title": "Title",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here",
"Zero Divide": "Zero Divide"
},
"textAnonymous": "Anonymous",
"textBuyNow": "Visit website",
"textClose": "Close",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit this file."
},
"Settings": {
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"advTxtOptions": "Choose TXT Options",
"closeButtonText": "Close File",
"notcriticalErrorTitle": "Warning",
"textAbout": "About",
"textApplication": "Application",
"textApplicationSettings": "Application settings",
"textAuthor": "Author",
"textBack": "Back",
"textBottom": "Bottom",
"textCancel": "Cancel",
"textCaseSensitive": "Case Sensitive",
"textCentimeter": "Centimeter",
"textCollaboration": "Collaboration",
"textColorSchemes": "Color Schemes",
"textComment": "Comment",
"textComments": "Comments",
"textCommentsDisplay": "Comments Display",
"textCreated": "Created",
"textCustomSize": "Custom Size",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDocumentInfo": "Document Info",
"textDocumentSettings": "Document Settings",
"textDocumentTitle": "Document Title",
"textDone": "Done",
"textDownload": "Download",
"textDownloadAs": "Download As",
"textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?",
"textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textEncoding": "Encoding",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textFormat": "Format",
"textHelp": "Help",
"textHiddenTableBorders": "Hidden Table Borders",
"textHighlightResults": "Highlight Results",
"textInch": "Inch",
"textLandscape": "Landscape",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLeft": "Left",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textMargins": "Margins",
"textMarginsH": "Top and bottom margins are too high for a given page height",
"textMarginsW": "Left and right margins are too wide for a given page width",
"textNoCharacters": "Nonprinting Characters",
"textNoTextFound": "Text not found",
"textOpenFile": "Enter a password to open the file",
"textOrientation": "Orientation",
"textOwner": "Owner",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Print",
"textReaderMode": "Reader Mode",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textResolvedComments": "Resolved Comments",
"textRight": "Right",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
"textTitle": "Title",
"textTop": "Top",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this Page",
"stayButtonText": "Stay on this page"
}
}

File diff suppressed because it is too large Load diff

View file

@ -1,381 +1,577 @@
{
"Common.UI.ThemeColorPalette.textStandartColors": "Standarta krāsas",
"Common.UI.ThemeColorPalette.textThemeColors": "Tēmas krāsas",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"DE.Controllers.AddContainer.textImage": "Attēls",
"DE.Controllers.AddContainer.textOther": "Citi",
"DE.Controllers.AddContainer.textShape": "Forma",
"DE.Controllers.AddContainer.textTable": "Tabula",
"DE.Controllers.AddImage.textEmptyImgUrl": "Ir jānorāda attēla URL.",
"DE.Controllers.AddImage.txtNotUrl": "Šī lauka URL adresei ir jābūt formātā 'http://www.example.com'.",
"DE.Controllers.AddOther.txtNotUrl": "Šī lauka URL adresei ir jābūt formātā 'http://www.example.com'.",
"DE.Controllers.AddTable.textCancel": "Atcelt",
"DE.Controllers.AddTable.textColumns": "Kolonnas",
"DE.Controllers.AddTable.textRows": "Rindas",
"DE.Controllers.AddTable.textTableSize": "Tabulas izmērs",
"DE.Controllers.DocumentHolder.menuAddLink": "Pievienot saiti",
"DE.Controllers.DocumentHolder.menuCopy": "Kopēt",
"DE.Controllers.DocumentHolder.menuCut": "Izgriezt",
"DE.Controllers.DocumentHolder.menuDelete": "Dzēst",
"DE.Controllers.DocumentHolder.menuEdit": "Rediģēt",
"DE.Controllers.DocumentHolder.menuMore": "Vairāk",
"DE.Controllers.DocumentHolder.menuOpenLink": "Atvērt saiti",
"DE.Controllers.DocumentHolder.menuPaste": "Ielīmēt",
"DE.Controllers.DocumentHolder.sheetCancel": "Atcelt",
"DE.Controllers.DocumentHolder.textGuest": "Viesis",
"DE.Controllers.EditContainer.textChart": "Diagramma",
"DE.Controllers.EditContainer.textHyperlink": "Hipersaite",
"DE.Controllers.EditContainer.textImage": "Attēls",
"DE.Controllers.EditContainer.textParagraph": "Rindkopa",
"DE.Controllers.EditContainer.textSettings": "Iestatījumi",
"DE.Controllers.EditContainer.textShape": "Forma",
"DE.Controllers.EditContainer.textTable": "Tabula",
"DE.Controllers.EditContainer.textText": "Teksts",
"DE.Controllers.EditImage.textEmptyImgUrl": "Ir jānorāda attēla URL.",
"DE.Controllers.EditImage.txtNotUrl": "Šī lauka URL adresei ir jābūt formātā 'http://www.example.com'.",
"DE.Controllers.EditText.textAuto": "Automātiski",
"DE.Controllers.EditText.textFonts": "Fonti",
"DE.Controllers.EditText.textPt": "pt",
"DE.Controllers.Main.advDRMEnterPassword": "Ievadiet paroli:",
"DE.Controllers.Main.advDRMOptions": "Aizsargāts fails",
"DE.Controllers.Main.advDRMPassword": "Parole",
"DE.Controllers.Main.advTxtOptions": "Izvēlēties TXT iespējas",
"DE.Controllers.Main.applyChangesTextText": "Ielādē datus...",
"DE.Controllers.Main.applyChangesTitleText": "Ielādē datus",
"DE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.",
"DE.Controllers.Main.criticalErrorExtText": "Nospiediet \"OK\", lai atgrieztos dokumentu sarakstā.",
"DE.Controllers.Main.criticalErrorTitle": "Kļūda",
"DE.Controllers.Main.downloadErrorText": "Lejuplāde neizdevās.",
"DE.Controllers.Main.downloadMergeText": "Lejupielādē...",
"DE.Controllers.Main.downloadMergeTitle": "Lejupielāde",
"DE.Controllers.Main.downloadTextText": "Lejuplādē dokumentu...",
"DE.Controllers.Main.downloadTitleText": "Dokumenta lejupielāde",
"DE.Controllers.Main.errorBadImageUrl": "Nav pareizs attēla URL",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Zudis servera savienojums. Jūs vairs nevarat rediģēt.",
"DE.Controllers.Main.errorConnectToServer": "Dokumentu neizdevās noglabāt. Lūdzu, pārbaudiet savienojuma uzstādījumus vai sazinieties ar savu administratoru.<br>Nospiežot \"OK\", jūs varēsit lejupielādēt dokumentu.",
"DE.Controllers.Main.errorDatabaseConnection": "Ārējā kļūda.<br>Datubāzes piekļuves kļūda. Lūdzu, sazinieties ar atbalsta daļu.",
"DE.Controllers.Main.errorDataRange": "Nepareizs datu diapazons",
"DE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1",
"DE.Controllers.Main.errorFilePassProtect": "Fails ir aizsargāts ar paroli un to nevar atvērt.",
"DE.Controllers.Main.errorKeyEncrypt": "Nezināms atslēgas deskriptors",
"DE.Controllers.Main.errorKeyExpire": "Atslēgas deskriptora termiņš beidzies",
"DE.Controllers.Main.errorMailMergeLoadFile": "Ielāde neizdevās",
"DE.Controllers.Main.errorMailMergeSaveFile": "Sapludināšana neizdevās.",
"DE.Controllers.Main.errorProcessSaveResult": "Saglabāšana neizdevās.",
"DE.Controllers.Main.errorServerVersion": "Redaktora versija ir atjaunināta. Lapa tiks pārlādēta, lai piemērotu izmaiņas.",
"DE.Controllers.Main.errorStockChart": "Nederīga rindu kārtība. Lai izveidotu akciju diagrammu novietojiet datus lapā šādā secībā:<br> Sākumcena, maksimālā cena, minimālā cena, slēgšanas cena.",
"DE.Controllers.Main.errorUpdateVersion": "Faila versija ir mainīta. Lapa tiks pārlādēta.",
"DE.Controllers.Main.errorUserDrop": "Failam šobrīd nevar piekļūt.",
"DE.Controllers.Main.errorUsersExceed": "Ir pārsniegts lietotāju skaits",
"DE.Controllers.Main.errorViewerDisconnect": "Zudis savienojums. Jūs joprojām varat aplūkot dokumentu, <br> taču jūs nevarēsit to lejupielādēt, kamēr savienojums nebūs atjaunots.",
"DE.Controllers.Main.leavePageText": "Šim dokumentam ir nesaglabātas izmaiņas. Spiediet \"palikt lapā\", lai sagaidītu dokumenta automātisko noglabāšanu. Spiediet \"pamest lapu\", lai atceltu visas nesaglabātās izmaiņas.",
"DE.Controllers.Main.loadFontsTextText": "Ielādē datus...",
"DE.Controllers.Main.loadFontsTitleText": "Ielādē datus",
"DE.Controllers.Main.loadFontTextText": "Ielādē datus...",
"DE.Controllers.Main.loadFontTitleText": "Ielādē datus",
"DE.Controllers.Main.loadImagesTextText": "Ielādē attēlus...",
"DE.Controllers.Main.loadImagesTitleText": "Ielādē attēlus",
"DE.Controllers.Main.loadImageTextText": "Ielādē attēlu...",
"DE.Controllers.Main.loadImageTitleText": "Ielādē attēlu",
"DE.Controllers.Main.loadingDocumentTextText": "Ielādē dokumentu...",
"DE.Controllers.Main.loadingDocumentTitleText": "Ielādē dokumentu",
"DE.Controllers.Main.mailMergeLoadFileText": "Ielādē datu avotu...",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Ielādē datu avotu",
"DE.Controllers.Main.notcriticalErrorTitle": "Brīdinājums",
"DE.Controllers.Main.openErrorText": "Faila atvēršanas laikā radās kļūda",
"DE.Controllers.Main.openTextText": "Dokumenta atvēršana...",
"DE.Controllers.Main.openTitleText": "Dokumenta atvēršana",
"DE.Controllers.Main.printTextText": "Drukā dokumentu...",
"DE.Controllers.Main.printTitleText": "Drukā dokumentu",
"DE.Controllers.Main.saveErrorText": "Faila noglabāšanas laikā radās kļūda",
"DE.Controllers.Main.savePreparingText": "Gatavojas saglabāt",
"DE.Controllers.Main.savePreparingTitle": "Gatavojas saglabāt. Lūdzu, uzgaidiet...",
"DE.Controllers.Main.saveTextText": "Dokumenta saglabāšana...",
"DE.Controllers.Main.saveTitleText": "Dokumenta saglabāšana",
"DE.Controllers.Main.sendMergeText": "Sapludināšanas rezultāta nosūtīšana...",
"DE.Controllers.Main.sendMergeTitle": "Saplūšanas rezultāta nosūtīšana",
"DE.Controllers.Main.splitDividerErrorText": "Rindu skaitam ir jādalās ar %1",
"DE.Controllers.Main.splitMaxColsErrorText": "Kolonnu skaitam ir jābūt mazākam par %1",
"DE.Controllers.Main.splitMaxRowsErrorText": "Rindu skaitam ir jābūt mazākam nekā %1",
"DE.Controllers.Main.textAnonymous": "Anonīms lietotājs",
"DE.Controllers.Main.textBack": "Atpakaļ",
"DE.Controllers.Main.textBuyNow": "Apmeklēt vietni",
"DE.Controllers.Main.textCancel": "Atcelt",
"DE.Controllers.Main.textClose": "Aizvērt",
"DE.Controllers.Main.textContactUs": "Pārdošanas nodaļa",
"DE.Controllers.Main.textDone": "Gatavs",
"DE.Controllers.Main.textLoadingDocument": "Ielādē dokumentu",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE pieslēguma ierobežojums",
"DE.Controllers.Main.textOK": "OK",
"DE.Controllers.Main.textPassword": "Parole",
"DE.Controllers.Main.textPreloader": "Notiek ielāde...",
"DE.Controllers.Main.textTryUndoRedo": "Atsaukšanas/atkārtošanas funkcijas ātrās koprediģēšanas režīmā ir atspējotas.",
"DE.Controllers.Main.textUsername": "Lietotājvārds",
"DE.Controllers.Main.titleLicenseExp": "Licencei beidzies termiņš",
"DE.Controllers.Main.titleServerVersion": "Atjaunināts redaktors",
"DE.Controllers.Main.titleUpdateVersion": "Versija mainīta",
"DE.Controllers.Main.txtArt": "Ievadiet savu tekstu",
"DE.Controllers.Main.txtDiagramTitle": "Diagrammas nosaukums",
"DE.Controllers.Main.txtEditingMode": "Uzstāda rediģēšanas režīmu...",
"DE.Controllers.Main.txtFooter": "Kājene",
"DE.Controllers.Main.txtHeader": "Galvene",
"DE.Controllers.Main.txtSeries": "Rinda",
"DE.Controllers.Main.txtStyle_footnote_text": "Zemteksta piezīmes teksts",
"DE.Controllers.Main.txtStyle_Heading_1": "Virsraksts 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Virsraksts 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Virsraksts 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Virsraksts 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Virsraksts 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Virsraksts 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Virsraksts 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Virsraksts 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Virsraksts 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Izcelts citāts",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Saraksta rindkopa",
"DE.Controllers.Main.txtStyle_No_Spacing": "Bez atstarpēm",
"DE.Controllers.Main.txtStyle_Normal": "Normāls",
"DE.Controllers.Main.txtStyle_Quote": "Citāts",
"DE.Controllers.Main.txtStyle_Subtitle": "Apakšvirsraksts",
"DE.Controllers.Main.txtStyle_Title": "Nosaukums",
"DE.Controllers.Main.txtXAxis": "X ass",
"DE.Controllers.Main.txtYAxis": "Y ass",
"DE.Controllers.Main.unknownErrorText": "Nezināma kļūda.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Jūsu pārlūkprogramma nav atbalstīta.",
"DE.Controllers.Main.uploadImageExtMessage": "Nezināms attēla formāts.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Nav augšupielādēto attēlu.",
"DE.Controllers.Main.uploadImageSizeMessage": "Maksimālais attēla izmērs ir pārsniegts.",
"DE.Controllers.Main.uploadImageTextText": "Augšupielādē attēlu...",
"DE.Controllers.Main.uploadImageTitleText": "Augšuplādē attēlu",
"DE.Controllers.Main.warnLicenseExp": "Jūsu licencei ir beidzies termiņš.<br>Lūdzu, atjauniniet savu licenci un pārlādējiet lapu.",
"DE.Controllers.Main.warnNoLicense": "Šai %1 editors versijai ir noteikti ierobežojumi saistībā ar vienlaicīgu pieslēgšanos dokumentu serverim.<br>Ja jums ir nepieciešams vairāk, lūdzu, apsveriet Jūsu šībrīža licences līmeņa paaugstināšanu vai komerciālās licences iegādi.",
"DE.Controllers.Main.warnNoLicenseUsers": "Šai %1 editors versijai ir noteikti ierobežojumi saistībā ar vairāku lietotāju vienlaicīgu darbību.<br>Ja jums ir nepieciešams vairāk, lūdzu, apsveriet paaugstināt šībrīža licences līmeni vai komerciālās licences iegādi.",
"DE.Controllers.Main.warnProcessRightsChange": "Jums ir liegtas tiesības šo failu rediģēt.",
"DE.Controllers.Search.textNoTextFound": "Teksts nav atrasts",
"DE.Controllers.Search.textReplaceAll": "Aizvietot visus",
"DE.Controllers.Settings.notcriticalErrorTitle": "Brīdinājums",
"DE.Controllers.Settings.txtLoading": "Notiek ielāde...",
"DE.Controllers.Settings.unknownText": "Nezināms",
"DE.Controllers.Settings.warnDownloadAs": "Ja jūs izvēlēsieties turpināt saglabāt šajā formātā visas diagrammas un attēli tiks zaudēti.<br>Vai tiešām vēlaties turpināt?",
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Šim dokumentam ir nesaglabātas izmaiņas. Spiediet \"palikt lapā\", lai sagaidītu dokumenta automātisko noglabāšanu. Spiediet \"pamest lapu\", lai atceltu visas nesaglabātās izmaiņas.",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Jūs pametat lietotni",
"DE.Controllers.Toolbar.leaveButtonText": "Pamest lapu",
"DE.Controllers.Toolbar.stayButtonText": "Palikt lapā",
"DE.Views.AddImage.textAddress": "adrese",
"DE.Views.AddImage.textBack": "Atpakaļ",
"DE.Views.AddImage.textFromLibrary": "Attēls no bibliotēkas",
"DE.Views.AddImage.textFromURL": "Attēls no URL",
"DE.Views.AddImage.textImageURL": "Attēla URL",
"DE.Views.AddImage.textInsertImage": "Ievadīt attēlu",
"DE.Views.AddImage.textLinkSettings": "Saites uzstādījumi",
"DE.Views.AddOther.textAddLink": "Pievienot saiti",
"DE.Views.AddOther.textBack": "Atpakaļ",
"DE.Views.AddOther.textCenterBottom": "Apakšā centrā",
"DE.Views.AddOther.textCenterTop": "Augšā centrā",
"DE.Views.AddOther.textColumnBreak": "Kolonnas atstarpe",
"DE.Views.AddOther.textContPage": "Tekošajā lapā",
"DE.Views.AddOther.textCurrentPos": "Šībrīža pozīcija",
"DE.Views.AddOther.textDisplay": "Parādīt",
"DE.Views.AddOther.textEvenPage": "Līdzena lapa",
"DE.Views.AddOther.textInsert": "Ievietot",
"DE.Views.AddOther.textLeftBottom": "Kreisā apakšā",
"DE.Views.AddOther.textLeftTop": "Kreisā augšā",
"DE.Views.AddOther.textLink": "Saite",
"DE.Views.AddOther.textNextPage": "Nākamā lapa",
"DE.Views.AddOther.textOddPage": "Nepāra lappuse",
"DE.Views.AddOther.textPageBreak": "Lapas pārtraukums",
"DE.Views.AddOther.textPageNumber": "Lapas numurs",
"DE.Views.AddOther.textPosition": "Pozīcija",
"DE.Views.AddOther.textRightBottom": "Labā apakšā",
"DE.Views.AddOther.textRightTop": "Labā augšā",
"DE.Views.AddOther.textSectionBreak": "Sadaļas pārtraukums",
"DE.Views.AddOther.textTip": "Padoms",
"DE.Views.EditChart.textAlign": "Līdzināt",
"DE.Views.EditChart.textBack": "Atpakaļ",
"DE.Views.EditChart.textBackward": "Pārnest atpakaļ",
"DE.Views.EditChart.textBehind": "Aiz",
"DE.Views.EditChart.textBorder": "Robeža",
"DE.Views.EditChart.textColor": "Krāsa",
"DE.Views.EditChart.textDistanceText": "Attālums no teksta",
"DE.Views.EditChart.textFill": "Aizpildīt",
"DE.Views.EditChart.textForward": "Pārnest uz priekšu",
"DE.Views.EditChart.textInFront": "Priekšā",
"DE.Views.EditChart.textInline": "Tekstā",
"DE.Views.EditChart.textMoveText": "Pārnest ar tekstu",
"DE.Views.EditChart.textOverlap": "Atļaut pārklāšanos",
"DE.Views.EditChart.textRemoveChart": "Noņemt diagrammu",
"DE.Views.EditChart.textReorder": "Pārkārtot",
"DE.Views.EditChart.textSize": "Izmērs",
"DE.Views.EditChart.textSquare": "Kvadrāta",
"DE.Views.EditChart.textStyle": "Stils",
"DE.Views.EditChart.textThrough": "Cauri",
"DE.Views.EditChart.textTight": "Cieši",
"DE.Views.EditChart.textToBackground": "Pārnest uz aizmuguri",
"DE.Views.EditChart.textToForeground": "Nest uz priekšplānu",
"DE.Views.EditChart.textTopBottom": "Augšā un apakša",
"DE.Views.EditChart.textType": "Veids",
"DE.Views.EditChart.textWrap": "Aplauzt",
"DE.Views.EditHyperlink.textDisplay": "Parādīt",
"DE.Views.EditHyperlink.textEdit": "Rediģēt saiti",
"DE.Views.EditHyperlink.textLink": "Saite",
"DE.Views.EditHyperlink.textRemove": "Noņemt saiti",
"DE.Views.EditHyperlink.textTip": "Padoms",
"DE.Views.EditImage.textAddress": "adrese",
"DE.Views.EditImage.textAlign": "Līdzināt",
"DE.Views.EditImage.textBack": "Atpakaļ",
"DE.Views.EditImage.textBackward": "Pārnest atpakaļ",
"DE.Views.EditImage.textBehind": "Aiz",
"DE.Views.EditImage.textDefault": "Noklusējuma izmērs",
"DE.Views.EditImage.textDistanceText": "Attālums no teksta",
"DE.Views.EditImage.textForward": "Pārnest uz priekšu",
"DE.Views.EditImage.textFromLibrary": "Attēls no bibliotēkas",
"DE.Views.EditImage.textFromURL": "Attēls no URL",
"DE.Views.EditImage.textImageURL": "Attēla URL",
"DE.Views.EditImage.textInFront": "Priekšā",
"DE.Views.EditImage.textInline": "Tekstā",
"DE.Views.EditImage.textLinkSettings": "Saites uzstādījumi",
"DE.Views.EditImage.textMoveText": "Pārnest ar tekstu",
"DE.Views.EditImage.textOverlap": "Atļaut pārklāšanos",
"DE.Views.EditImage.textRemove": "Noņemt attēlu",
"DE.Views.EditImage.textReorder": "Pārkārtot",
"DE.Views.EditImage.textReplace": "Aizvietot",
"DE.Views.EditImage.textReplaceImg": "Aizvietot attēlu",
"DE.Views.EditImage.textSquare": "Kvadrāta",
"DE.Views.EditImage.textThrough": "Cauri",
"DE.Views.EditImage.textTight": "Cieši",
"DE.Views.EditImage.textToBackground": "Pārnest uz aizmuguri",
"DE.Views.EditImage.textToForeground": "Nest uz priekšplānu",
"DE.Views.EditImage.textTopBottom": "Augšā un apakša",
"DE.Views.EditImage.textWrap": "Aplauzt",
"DE.Views.EditParagraph.textAdvanced": "Papildus",
"DE.Views.EditParagraph.textAdvSettings": "Papildu iestatījumi",
"DE.Views.EditParagraph.textAfter": "Pēc",
"DE.Views.EditParagraph.textAuto": "Automātiski",
"DE.Views.EditParagraph.textBack": "Atpakaļ",
"DE.Views.EditParagraph.textBackground": "Fons",
"DE.Views.EditParagraph.textBefore": "Pirms",
"DE.Views.EditParagraph.textFromText": "Attālums no teksta",
"DE.Views.EditParagraph.textKeepLines": "Turēt līnijas kopā",
"DE.Views.EditParagraph.textKeepNext": "Nenoraut no nākošā",
"DE.Views.EditParagraph.textOrphan": "Bāreņrindiņu kontrole",
"DE.Views.EditParagraph.textPageBreak": "Lappuses pārtraukums pirms",
"DE.Views.EditParagraph.textPrgStyles": "Rindkopas stili",
"DE.Views.EditParagraph.textSpaceBetween": "Atstarpe starp rindkopām",
"DE.Views.EditShape.textAlign": "Līdzināt",
"DE.Views.EditShape.textBack": "Atpakaļ",
"DE.Views.EditShape.textBackward": "Pārnest atpakaļ",
"DE.Views.EditShape.textBehind": "Aiz",
"DE.Views.EditShape.textBorder": "Robeža",
"DE.Views.EditShape.textColor": "Krāsa",
"DE.Views.EditShape.textEffects": "Efekti",
"DE.Views.EditShape.textFill": "Aizpildīt",
"DE.Views.EditShape.textForward": "Pārnest uz priekšu",
"DE.Views.EditShape.textFromText": "Attālums no teksta",
"DE.Views.EditShape.textInFront": "Priekšā",
"DE.Views.EditShape.textInline": "Tekstā",
"DE.Views.EditShape.textOpacity": "Necaurredzamība",
"DE.Views.EditShape.textOverlap": "Atļaut pārklāšanos",
"DE.Views.EditShape.textRemoveShape": "Noņemt figūru",
"DE.Views.EditShape.textReorder": "Pārkārtot",
"DE.Views.EditShape.textReplace": "Aizvietot",
"DE.Views.EditShape.textSize": "Izmērs",
"DE.Views.EditShape.textSquare": "Kvadrāta",
"DE.Views.EditShape.textStyle": "Stils",
"DE.Views.EditShape.textThrough": "Cauri",
"DE.Views.EditShape.textTight": "Cieši",
"DE.Views.EditShape.textToBackground": "Pārnest uz aizmuguri",
"DE.Views.EditShape.textToForeground": "Nest uz priekšplānu",
"DE.Views.EditShape.textTopAndBottom": "Augšā un apakša",
"DE.Views.EditShape.textWithText": "Pārnest ar tekstu",
"DE.Views.EditShape.textWrap": "Aplauzt",
"DE.Views.EditTable.textAlign": "Līdzināt",
"DE.Views.EditTable.textBack": "Atpakaļ",
"DE.Views.EditTable.textBandedColumn": "Joslu kolonna",
"DE.Views.EditTable.textBandedRow": "Joslu rinda",
"DE.Views.EditTable.textBorder": "Robeža",
"DE.Views.EditTable.textCellMargins": "Šunu piemales",
"DE.Views.EditTable.textColor": "Krāsa",
"DE.Views.EditTable.textFill": "Aizpildīt",
"DE.Views.EditTable.textFirstColumn": "Pirmā kolonna",
"DE.Views.EditTable.textFlow": "Peldošā",
"DE.Views.EditTable.textFromText": "Attālums no teksta",
"DE.Views.EditTable.textHeaderRow": "Galvenes rinda",
"DE.Views.EditTable.textInline": "Tekstā",
"DE.Views.EditTable.textLastColumn": "Pēdējā kolonna",
"DE.Views.EditTable.textOptions": "Iespējas",
"DE.Views.EditTable.textRemoveTable": "Noņemt tabulu",
"DE.Views.EditTable.textRepeatHeader": "Atkārtot kā galveni",
"DE.Views.EditTable.textResizeFit": "Mainīt izmēru atbilstoši saturam",
"DE.Views.EditTable.textSize": "Izmērs",
"DE.Views.EditTable.textStyle": "Stils",
"DE.Views.EditTable.textStyleOptions": "Stila iestatījumi",
"DE.Views.EditTable.textTableOptions": "Tabulas uzstādījumi",
"DE.Views.EditTable.textTotalRow": "Koprinda",
"DE.Views.EditTable.textWithText": "Pārnest ar tekstu",
"DE.Views.EditTable.textWrap": "Aplauzt",
"DE.Views.EditText.textAdditional": "Papildu",
"DE.Views.EditText.textAdditionalFormat": "Papildu formatēšana",
"DE.Views.EditText.textAllCaps": "Visi lielie burti",
"DE.Views.EditText.textAutomatic": "Automatic",
"DE.Views.EditText.textBack": "Atpakaļ",
"DE.Views.EditText.textBullets": "Aizzīmes",
"DE.Views.EditText.textDblStrikethrough": "Dubultā pārsvītrošana",
"DE.Views.EditText.textDblSuperscript": "Augšteksts",
"DE.Views.EditText.textFontColor": "Fonta krāsa",
"DE.Views.EditText.textFontColors": "Fonta krāsas",
"DE.Views.EditText.textFonts": "Fonti",
"DE.Views.EditText.textHighlightColor": "Izcelt ar krāsu",
"DE.Views.EditText.textHighlightColors": "Izcelšanas krāsas",
"DE.Views.EditText.textLetterSpacing": "Atstarpe",
"DE.Views.EditText.textLineSpacing": "Rindstarpas",
"DE.Views.EditText.textNone": "neviens",
"DE.Views.EditText.textNumbers": "Skaitļi",
"DE.Views.EditText.textSize": "Izmērs",
"DE.Views.EditText.textSmallCaps": "Mazie burti",
"DE.Views.EditText.textStrikethrough": "Pārsvītrots",
"DE.Views.EditText.textSubscript": "Apakšteksts",
"DE.Views.Search.textCase": "Ievērojot burtu lielumus",
"DE.Views.Search.textDone": "Gatavs",
"DE.Views.Search.textFind": "Atrast",
"DE.Views.Search.textFindAndReplace": "Atrast un aizvietot",
"DE.Views.Search.textHighlight": "Izcelt rezultātus",
"DE.Views.Search.textReplace": "Aizvietot",
"DE.Views.Search.textSearch": "Meklēt",
"DE.Views.Settings.textAbout": "Par",
"DE.Views.Settings.textAddress": "adrese",
"DE.Views.Settings.textAuthor": "Autors",
"DE.Views.Settings.textBack": "Atpakaļ",
"DE.Views.Settings.textCreateDate": "Izveides datums",
"DE.Views.Settings.textCustom": "Personalizēts",
"DE.Views.Settings.textCustomSize": "Pielāgots izmērs",
"DE.Views.Settings.textDocInfo": "Informācija par dokumentu",
"DE.Views.Settings.textDocTitle": "Dokumenta nosaukums",
"DE.Views.Settings.textDocumentFormats": "Dokumenta formāti",
"DE.Views.Settings.textDocumentSettings": "Dokumenta uzstādījumi",
"DE.Views.Settings.textDone": "Gatavs",
"DE.Views.Settings.textDownload": "Lejupielādēt",
"DE.Views.Settings.textDownloadAs": "Lejupielādēt kā...",
"DE.Views.Settings.textEditDoc": "Rediģēt dokumentu",
"DE.Views.Settings.textEmail": "e-pasts",
"DE.Views.Settings.textFind": "Atrast",
"DE.Views.Settings.textFindAndReplace": "Atrast un aizvietot",
"DE.Views.Settings.textFormat": "Formāts",
"DE.Views.Settings.textHelp": "Palīdzība",
"DE.Views.Settings.textLandscape": "Ainava",
"DE.Views.Settings.textLoading": "Notiek ielāde...",
"DE.Views.Settings.textOrientation": "Orientācija",
"DE.Views.Settings.textPages": "Lapas",
"DE.Views.Settings.textParagraphs": "Rindkopas",
"DE.Views.Settings.textPortrait": "Portrets",
"DE.Views.Settings.textPoweredBy": "Nodrošina",
"DE.Views.Settings.textReader": "Lasīšanas režīms",
"DE.Views.Settings.textSettings": "Iestatījumi",
"DE.Views.Settings.textSpaces": "Atstarpes",
"DE.Views.Settings.textStatistic": "Statistika",
"DE.Views.Settings.textSymbols": "Simboli",
"DE.Views.Settings.textTel": "Tel",
"DE.Views.Settings.textVersion": "Versija",
"DE.Views.Settings.textWords": "Vārdi",
"DE.Views.Settings.unknownText": "Nezināms",
"DE.Views.Toolbar.textBack": "Atpakaļ"
"About": {
"textAbout": "About",
"textAddress": "Address",
"textBack": "Back",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Add": {
"notcriticalErrorTitle": "Warning",
"textAddLink": "Add link",
"textAddress": "Address",
"textBack": "Back",
"textBelowText": "Below text",
"textBottomOfPage": "Bottom of page",
"textBreak": "Break",
"textCancel": "Cancel",
"textCenterBottom": "Center Bottom",
"textCenterTop": "Center Top",
"textColumnBreak": "Column Break",
"textColumns": "Columns",
"textComment": "Comment",
"textContinuousPage": "Continuous Page",
"textCurrentPosition": "Current Position",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify image URL.",
"textEvenPage": "Even Page",
"textFootnote": "Footnote",
"textFormat": "Format",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertFootnote": "Insert Footnote",
"textInsertImage": "Insert Image",
"textLeftBottom": "Left Bottom",
"textLeftTop": "Left Top",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLocation": "Location",
"textNextPage": "Next Page",
"textOddPage": "Odd Page",
"textOther": "Other",
"textPageBreak": "Page Break",
"textPageNumber": "Page Number",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPosition": "Position",
"textRightBottom": "Right Bottom",
"textRightTop": "Right Top",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textSectionBreak": "Section Break",
"textShape": "Shape",
"textStartAt": "Start At",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Warning",
"textAccept": "Accept",
"textAcceptAllChanges": "Accept all changes",
"textAddComment": "Add comment",
"textAddReply": "Add reply",
"textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"textAllChangesEditing": "All changes (Editing)",
"textAllChangesRejectedPreview": "All changes rejected (Preview)",
"textAtLeast": "at least",
"textAuto": "auto",
"textBack": "Back",
"textBaseline": "Baseline",
"textBold": "Bold",
"textBreakBefore": "Page break before",
"textCancel": "Cancel",
"textCaps": "All caps",
"textCenter": "Align center",
"textChart": "Chart",
"textCollaboration": "Collaboration",
"textColor": "Font color",
"textComments": "Comments",
"textContextual": "Don't add intervals between paragraphs of the same style",
"textDelete": "Delete",
"textDeleteComment": "Delete Comment",
"textDeleted": "Deleted:",
"textDeleteReply": "Delete Reply",
"textDisplayMode": "Display Mode",
"textDone": "Done",
"textDStrikeout": "Double strikeout",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textEquation": "Equation",
"textExact": "exactly",
"textFinal": "Final",
"textFirstLine": "First line",
"textFormatted": "Formatted",
"textHighlight": "Highlight color",
"textImage": "Image",
"textIndentLeft": "Indent left",
"textIndentRight": "Indent right",
"textInserted": "Inserted:",
"textItalic": "Italic",
"textJustify": "Align justified ",
"textKeepLines": "Keep lines together",
"textKeepNext": "Keep with next",
"textLeft": "Align left",
"textLineSpacing": "Line Spacing: ",
"textMarkup": "Markup",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textMultiple": "multiple",
"textNoBreakBefore": "No page break before",
"textNoChanges": "There are no changes.",
"textNoComments": "This document doesn't contain comments",
"textNoContextual": "Add interval between paragraphs of the same style",
"textNoKeepLines": "Don't keep lines together",
"textNoKeepNext": "Don't keep with next",
"textNot": "Not ",
"textNoWidow": "No widow control",
"textNum": "Change numbering",
"textOriginal": "Original",
"textParaDeleted": "Paragraph Deleted",
"textParaFormatted": "Paragraph Formatted",
"textParaInserted": "Paragraph Inserted",
"textParaMoveFromDown": "Moved Down:",
"textParaMoveFromUp": "Moved Up:",
"textParaMoveTo": "Moved:",
"textPosition": "Position",
"textReject": "Reject",
"textRejectAllChanges": "Reject All Changes",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textReview": "Review",
"textReviewChange": "Review Change",
"textRight": "Align right",
"textShape": "Shape",
"textShd": "Background color",
"textSmallCaps": "Small caps",
"textSpacing": "Spacing",
"textSpacingAfter": "Spacing after",
"textSpacingBefore": "Spacing before",
"textStrikeout": "Strikeout",
"textSubScript": "Subscript",
"textSuperScript": "Superscript",
"textTableChanged": "Table Settings Changed",
"textTableRowsAdd": "Table Rows Added",
"textTableRowsDel": "Table Rows Deleted",
"textTabs": "Change tabs",
"textTrackChanges": "Track Changes",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUnderline": "Underline",
"textUsers": "Users",
"textWidow": "Widow control"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuAddComment": "Add comment",
"menuAddLink": "Add link",
"menuCancel": "Cancel",
"menuDelete": "Delete",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuReview": "Review",
"menuReviewChange": "Review Change",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Edit": {
"notcriticalErrorTitle": "Warning",
"textActualSize": "Actual size",
"textAddCustomColor": "Add custom color",
"textAdditional": "Additional",
"textAdditionalFormatting": "Additional formatting",
"textAddress": "Address",
"textAdvanced": "Advanced",
"textAdvancedSettings": "Advanced settings",
"textAfter": "After",
"textAlign": "Align",
"textAllCaps": "All caps",
"textAllowOverlap": "Allow overlap",
"textAuto": "Auto",
"textAutomatic": "Automatic",
"textBack": "Back",
"textBackground": "Background",
"textBandedColumn": "Banded column",
"textBandedRow": "Banded row",
"textBefore": "Before",
"textBehind": "Behind",
"textBorder": "Border",
"textBringToForeground": "Bring to foreground",
"textBullets": "Bullets",
"textBulletsAndNumbers": "Bullets & Numbers",
"textCellMargins": "Cell Margins",
"textChart": "Chart",
"textClose": "Close",
"textColor": "Color",
"textContinueFromPreviousSection": "Continue from previous section",
"textCustomColor": "Custom Color",
"textDifferentFirstPage": "Different first page",
"textDifferentOddAndEvenPages": "Different odd and even pages",
"textDisplay": "Display",
"textDistanceFromText": "Distance from text",
"textDoubleStrikethrough": "Double Strikethrough",
"textEditLink": "Edit Link",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify image URL.",
"textFill": "Fill",
"textFirstColumn": "First Column",
"textFirstLine": "FirstLine",
"textFlow": "Flow",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFooter": "Footer",
"textHeader": "Header",
"textHeaderRow": "Header Row",
"textHighlightColor": "Highlight Color",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textInFront": "In Front",
"textInline": "Inline",
"textKeepLinesTogether": "Keep Lines Together",
"textKeepWithNext": "Keep with Next",
"textLastColumn": "Last Column",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkToPrevious": "Link to Previous",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textMoveWithText": "Move with Text",
"textNone": "None",
"textNoStyles": "No styles for this type of charts.",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textOpacity": "Opacity",
"textOptions": "Options",
"textOrphanControl": "Orphan Control",
"textPageBreakBefore": "Page Break Before",
"textPageNumbering": "Page Numbering",
"textParagraph": "Paragraph",
"textParagraphStyles": "Paragraph Styles",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPt": "pt",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",
"textResizeToFitContent": "Resize to Fit Content",
"textScreenTip": "Screen Tip",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textSettings": "Settings",
"textShape": "Shape",
"textSize": "Size",
"textSmallCaps": "Small Caps",
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
"textSquare": "Square",
"textStartAt": "Start at",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textTableOptions": "Table Options",
"textText": "Text",
"textThrough": "Through",
"textTight": "Tight",
"textTopAndBottom": "Top and Bottom",
"textTotalRow": "Total Row",
"textType": "Type",
"textWrap": "Wrap",
"textNumbers": "Numbers"
},
"Error": {
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.<br>When you click OK, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorMailMergeLoadFile": "Loading failed",
"errorMailMergeSaveFile": "Merge failed.",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.",
"errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"openErrorText": "An error has occurred while opening the file",
"saveErrorText": "An error has occurred while saving the file",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadMergeText": "Downloading...",
"downloadMergeTitle": "Downloading",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"mailMergeLoadFileText": "Loading Data Source...",
"mailMergeLoadFileTitle": "Loading Data Source",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"sendMergeText": "Sending Merge...",
"sendMergeTitle": "Sending Merge",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Main": {
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"SDK": {
" -Section ": " -Section ",
"above": "above",
"below": "below",
"Caption": "Caption",
"Choose an item": "Choose an item",
"Click to load image": "Click to load image",
"Current Document": "Current Document",
"Diagram Title": "Chart Title",
"endnote text": "Endnote Text",
"Enter a date": "Enter a date",
"Error! Bookmark not defined": "Error! Bookmark not defined.",
"Error! Main Document Only": "Error! Main Document Only.",
"Error! No text of specified style in document": "Error! No text of specified style in document.",
"Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"Even Page ": "Even Page ",
"First Page ": "First Page ",
"Footer": "Footer",
"footnote text": "Footnote Text",
"Header": "Header",
"Heading 1": "Heading 1",
"Heading 2": "Heading 2",
"Heading 3": "Heading 3",
"Heading 4": "Heading 4",
"Heading 5": "Heading 5",
"Heading 6": "Heading 6",
"Heading 7": "Heading 7",
"Heading 8": "Heading 8",
"Heading 9": "Heading 9",
"Hyperlink": "Hyperlink",
"Index Too Large": "Index Too Large",
"Intense Quote": "Intense Quote",
"Is Not In Table": "Is Not In Table",
"List Paragraph": "List Paragraph",
"Missing Argument": "Missing Argument",
"Missing Operator": "Missing Operator",
"No Spacing": "No Spacing",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"No table of figures entries found": "No table of figures entries found.",
"None": "None",
"Normal": "Normal",
"Number Too Large To Format": "Number Too Large To Format",
"Odd Page ": "Odd Page ",
"Quote": "Quote",
"Same as Previous": "Same as Previous",
"Series": "Series",
"Subtitle": "Subtitle",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"Title": "Title",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here",
"Zero Divide": "Zero Divide"
},
"textAnonymous": "Anonymous",
"textBuyNow": "Visit website",
"textClose": "Close",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit this file."
},
"Settings": {
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"advTxtOptions": "Choose TXT Options",
"closeButtonText": "Close File",
"notcriticalErrorTitle": "Warning",
"textAbout": "About",
"textApplication": "Application",
"textApplicationSettings": "Application settings",
"textAuthor": "Author",
"textBack": "Back",
"textBottom": "Bottom",
"textCancel": "Cancel",
"textCaseSensitive": "Case Sensitive",
"textCentimeter": "Centimeter",
"textCollaboration": "Collaboration",
"textColorSchemes": "Color Schemes",
"textComment": "Comment",
"textComments": "Comments",
"textCommentsDisplay": "Comments Display",
"textCreated": "Created",
"textCustomSize": "Custom Size",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDocumentInfo": "Document Info",
"textDocumentSettings": "Document Settings",
"textDocumentTitle": "Document Title",
"textDone": "Done",
"textDownload": "Download",
"textDownloadAs": "Download As",
"textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?",
"textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textEncoding": "Encoding",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textFormat": "Format",
"textHelp": "Help",
"textHiddenTableBorders": "Hidden Table Borders",
"textHighlightResults": "Highlight Results",
"textInch": "Inch",
"textLandscape": "Landscape",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLeft": "Left",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textMargins": "Margins",
"textMarginsH": "Top and bottom margins are too high for a given page height",
"textMarginsW": "Left and right margins are too wide for a given page width",
"textNoCharacters": "Nonprinting Characters",
"textNoTextFound": "Text not found",
"textOpenFile": "Enter a password to open the file",
"textOrientation": "Orientation",
"textOwner": "Owner",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Print",
"textReaderMode": "Reader Mode",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textResolvedComments": "Resolved Comments",
"textRight": "Right",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
"textTitle": "Title",
"textTop": "Top",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this Page",
"stayButtonText": "Stay on this page"
}
}

File diff suppressed because it is too large Load diff

View file

@ -557,6 +557,8 @@
"txtScheme18": "Technisch",
"txtScheme19": "Tocht",
"txtScheme2": "Grijstinten",
"txtScheme20": "Stedelijk",
"txtScheme21": "Verve",
"txtScheme22": "Nieuw kantoor",
"txtScheme3": "Top",
"txtScheme4": "Aspect",

File diff suppressed because it is too large Load diff

View file

@ -2,9 +2,14 @@
"About": {
"textAbout": "Sobre",
"textAddress": "Endereço",
"textBack": "Voltar"
"textBack": "Voltar",
"textEmail": "Email",
"textPoweredBy": "Desenvolvido por",
"textTel": "Tel",
"textVersion": "Versão"
},
"Add": {
"notcriticalErrorTitle": "Aviso",
"textAddLink": "Adicionar Link",
"textAddress": "Endereço",
"textBack": "Voltar",
@ -12,12 +17,50 @@
"textBottomOfPage": "Fim da página",
"textBreak": "Pausa",
"textCancel": "Cancelar",
"textCenterBottom": "Centro Inferior",
"textCenterTop": "Centro Superior",
"textColumnBreak": "Quebra de Coluna",
"textColumns": "Colunas",
"textComment": "Comente"
"textComment": "Comente",
"textContinuousPage": "Página contínua",
"textCurrentPosition": "Posição Atual",
"textDisplay": "Exibir",
"textEmptyImgUrl": "Você precisa especificar uma URL de imagem.",
"textEvenPage": "Página par",
"textFootnote": "Nota de rodapé",
"textFormat": "Formato",
"textImage": "Imagem",
"textImageURL": "Imagem URL",
"textInsert": "Inserir",
"textInsertFootnote": "Inserir nota de rodapé",
"textInsertImage": "Inserir imagem",
"textLeftBottom": "Parte inferior esquerda",
"textLeftTop": "Parte superior esquerda",
"textLink": "Link",
"textLinkSettings": "Configurações de link",
"textLocation": "Localização",
"textNextPage": "Próxima página",
"textOddPage": "Página ímpar",
"textOther": "Outro",
"textPageBreak": "Quebra de página",
"textPageNumber": "Número da página",
"textPictureFromLibrary": "Imagem da biblioteca",
"textPictureFromURL": "Imagem da URL",
"textPosition": "Posição",
"textRightBottom": "Parte inferior direita",
"textRightTop": "Parte superior direita",
"textRows": "Linhas",
"textScreenTip": "Dica de tela",
"textSectionBreak": "Quebra de seção",
"textShape": "Forma",
"textStartAt": "Começar em",
"textTable": "Tabela",
"textTableSize": "Tamanho da tabela",
"txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\""
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Aviso",
"textAccept": "Aceitar",
"textAcceptAllChanges": "Aceitar todas as alterações",
"textAddComment": "Adicionar comentário",
@ -30,28 +73,117 @@
"textBack": "Voltar",
"textBaseline": "Baseline",
"textBold": "Negrito",
"textBreakBefore": "Quebra de página antes",
"textCancel": "Cancelar",
"textCaps": "Todas maiúsculas",
"textCenter": "Alinhar ao centro",
"textChart": "Gráfico",
"textCollaboration": "Colaboração",
"textColor": "Cor da fonte",
"textComments": "Comentários",
"textContextual": "Não adicionar intervalos entre parágrafos do mesmo estilo",
"textDelete": "Excluir",
"textDeleteComment": "Excluir comentários",
"textDeleted": "Eliminado:",
"textDeleteReply": "Excluir resposta",
"textDisplayMode": "Modo de exibição",
"textDone": "Concluído",
"textDStrikeout": "Tachado duplo",
"textEdit": "Editar",
"textEditComment": "Editar comentário",
"textEditReply": "Editar resposta",
"textEditUser": "Usuários que estão editando o arquivo:",
"textEquation": "Equação",
"textExact": "Exatamente",
"textFinal": "Final",
"textFirstLine": "Primeira linha",
"textFormatted": "Formatado",
"textHighlight": "Cor de realce",
"textImage": "Imagem",
"textIndentLeft": "Recuo à esquerda",
"textIndentRight": "Recuo à direita",
"textInserted": "Inserido:",
"textItalic": "Itálico",
"textJustify": "Alinhamento justificado",
"textKeepLines": "Manter as linhas juntas",
"textKeepNext": "Manter com o próximo",
"textLeft": "Alinhar à esquerda",
"textLineSpacing": "Espaçamento de linha:",
"textMarkup": "Marcação",
"textMessageDeleteComment": "Você quer realmente excluir este comentário?",
"textMessageDeleteReply": "Você realmente quer apagar esta resposta?",
"textMultiple": "Múltiplo",
"textNoBreakBefore": "Sem quebra de página antes",
"textNoChanges": "Não há mudanças.",
"textNoComments": "O documento não contém comentários",
"textNoContextual": "Adicionar intervalo entre parágrafos do mesmo estilo",
"textNoKeepLines": "Não mantenha linhas juntas",
"textNoKeepNext": "Não mantenha com o próximo",
"textNot": "Não",
"textNoWidow": "Sem controle de linhas órfãs/viúvas",
"textNum": "Alterar numeração",
"textOriginal": "Original",
"textParaDeleted": "Parágrafo excluído",
"textParaFormatted": "Parágrafo formatado",
"textParaInserted": "Parágrafo Inserido",
"textParaMoveFromDown": "Movidos para baixo:",
"textParaMoveFromUp": "Movidos para cima:",
"textParaMoveTo": "Movido:",
"textPosition": "Posição",
"textReject": "Rejeitar",
"textRejectAllChanges": "Rejeitar todas as alterações",
"textReopen": "Reabrir",
"textResolve": "Resolver",
"textReview": "Revisão",
"textReviewChange": "Rever Alterações",
"textRight": "Alinhar à direita",
"textShape": "Forma",
"textShd": "Cor do plano de fundo",
"textTabs": "Alterar guias"
"textSmallCaps": "Versalete",
"textSpacing": "Espaçamento",
"textSpacingAfter": "Espaçamento depois",
"textSpacingBefore": "Espaçamento antes",
"textStrikeout": "Tachado",
"textSubScript": "Subscrito",
"textSuperScript": "Sobrescrito",
"textTableChanged": "Configurações da tabela alteradas",
"textTableRowsAdd": "Linhas de tabela adicionadas",
"textTableRowsDel": "Linhas de tabela eliminadas",
"textTabs": "Alterar guias",
"textTrackChanges": "Controlar alterações",
"textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido",
"textUnderline": "Sublinhado",
"textUsers": "Usuários",
"textWidow": "Controle de linhas órfãs/viúvas."
},
"ThemeColorPalette": {
"textCustomColors": "Cores personalizadas",
"textStandartColors": "Cores padrão",
"textThemeColors": "Cores de tema"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.",
"menuAddComment": "Adicionar comentário",
"menuAddLink": "Adicionar Link",
"menuCancel": "Cancelar",
"textColumns": "Colunas"
"menuDelete": "Excluir",
"menuDeleteTable": "Excluir tabela",
"menuEdit": "Editar",
"menuMerge": "Mesclar",
"menuMore": "Mais",
"menuOpenLink": "Abrir link",
"menuReview": "Revisão",
"menuReviewChange": "Rever Alterações",
"menuSplit": "Dividir",
"menuViewComment": "Ver Comentário",
"textColumns": "Colunas",
"textCopyCutPasteActions": "Copiar, Cortar e Colar",
"textDoNotShowAgain": "Não volte a aparecer",
"textRows": "Linhas"
},
"Edit": {
"notcriticalErrorTitle": "Aviso",
"textActualSize": "Tamanho atual",
"textAddCustomColor": "Adicionar Cor Personalizada",
"textAdditional": "Adicional",
@ -78,28 +210,268 @@
"textCellMargins": "Margens da célula",
"textChart": "Gráfico",
"textClose": "Fechar",
"textColor": "Cor"
"textColor": "Cor",
"textContinueFromPreviousSection": "Continuar da seção anterior",
"textCustomColor": "Cor personalizada",
"textDifferentFirstPage": "Primeira página diferente",
"textDifferentOddAndEvenPages": "Páginas pares e ímpares diferentes",
"textDisplay": "Exibir",
"textDistanceFromText": "Distância do texto",
"textDoubleStrikethrough": "Tachado duplo",
"textEditLink": "Editar Link",
"textEffects": "Efeitos",
"textEmptyImgUrl": "Você precisa especificar uma URL de imagem.",
"textFill": "Preencher",
"textFirstColumn": "Primeira Coluna",
"textFirstLine": "Primeira linha",
"textFlow": "Fluxo",
"textFontColor": "Cor da fonte",
"textFontColors": "Cor da Fonte",
"textFonts": "Fontes",
"textFooter": "Rodapé",
"textHeader": "Cabeçalho",
"textHeaderRow": "Linha de Cabeçalho",
"textHighlightColor": "Cor de realce",
"textHyperlink": "Hiperlink",
"textImage": "Imagem",
"textImageURL": "Imagem URL",
"textInFront": "Em frente",
"textInline": "Em linha",
"textKeepLinesTogether": "Manter as linhas juntas",
"textKeepWithNext": "Manter com o próximo",
"textLastColumn": "Última coluna",
"textLetterSpacing": "Espaçamento de letra",
"textLineSpacing": "Espaçamento de linha",
"textLink": "Link",
"textLinkSettings": "Configurações de link",
"textLinkToPrevious": "Vincular a Anterior",
"textMoveBackward": "Mover para trás",
"textMoveForward": "Mover para frente",
"textMoveWithText": "Mover com texto",
"textNone": "Nenhum",
"textNoStyles": "Não há estilos para este tipo de gráfico.",
"textNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"",
"textNumbers": "Números",
"textOpacity": "Opacidade",
"textOptions": "Opções",
"textOrphanControl": "Controle de órfão",
"textPageBreakBefore": "Quebra de página antes",
"textPageNumbering": "Numeração da página",
"textParagraph": "Parágrafo",
"textParagraphStyles": "Estilos do parágrafo",
"textPictureFromLibrary": "Imagem da biblioteca",
"textPictureFromURL": "Imagem da URL",
"textPt": "Pt",
"textRemoveChart": "Remover gráfico",
"textRemoveImage": "Remover imagem",
"textRemoveLink": "Remover link",
"textRemoveShape": "Remover forma",
"textRemoveTable": "Remover tabela",
"textReorder": "Reordenar",
"textRepeatAsHeaderRow": "Repetir como linha de cabeçalho",
"textReplace": "Substituir",
"textReplaceImage": "Substituir imagem",
"textResizeToFitContent": "Redimensionar para ajustar o conteúdo",
"textScreenTip": "Dica de tela",
"textSelectObjectToEdit": "Selecione o objeto para editar",
"textSendToBackground": "Enviar para plano de fundo",
"textSettings": "Configurações",
"textShape": "Forma",
"textSize": "Tamanho",
"textSmallCaps": "Versalete",
"textSpaceBetweenParagraphs": "Espaço entre parágrafos",
"textSquare": "Quadrado",
"textStartAt": "Começar em",
"textStrikethrough": "Tachado",
"textStyle": "Estilo",
"textStyleOptions": "Opções de estilo",
"textSubscript": "Subscrito",
"textSuperscript": "Sobrescrito",
"textTable": "Tabela",
"textTableOptions": "Opções de tabela",
"textText": "Тexto",
"textThrough": "Através",
"textTight": "Justo",
"textTopAndBottom": "Parte superior e inferior",
"textTotalRow": "Total de linhas",
"textType": "Tipo",
"textWrap": "Encapsulamento"
},
"Error": {
"convertationTimeoutText": "Tempo limite de conversão excedido.",
"criticalErrorExtText": "Pressione 'OK' para voltar para a lista de documentos.",
"criticalErrorTitle": "Erro",
"downloadErrorText": "Download falhou.",
"errorAccessDeny": "Você está tentando realizar uma ação para a qual não possui direitos. <br> Por favor, entre em contato com o seu administrador.",
"errorBadImageUrl": "URL de imagem está incorreta",
"errorConnectToServer": "Não é possível salvar este documento. Verifique suas configurações de conexão ou entre em contato com o administrador. <br> Ao clicar em OK, você será solicitado a baixar o documento.",
"errorDatabaseConnection": "Erro externo. <br> Erro de conexão do banco de dados. Entre em contato com o suporte.",
"errorDataEncrypted": "Alteração criptografadas foram recebidas, e não podem ser decifradas.",
"errorDataRange": "Intervalo de dados incorreto.",
"errorDefaultMessage": "Código do erro: %1",
"errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento. <br> Baixe o documento para salvar a cópia de backup do arquivo localmente.",
"errorFilePassProtect": "O arquivo é protegido por senha e não pôde ser aberto.",
"errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor.<br>Por favor, contate seu administrador.",
"errorKeyEncrypt": "Descritor de chave desconhecido",
"errorKeyExpire": "Descritor de chave expirado",
"errorMailMergeLoadFile": "O carregamento falhou",
"errorMailMergeSaveFile": "Mesclagem falhou.",
"errorSessionAbsolute": "A sessão de edição do documento expirou. Por favor recarregue a página.",
"errorSessionIdle": "O documento não é editado há muito tempo. Por favor recarregue a página.",
"errorSessionToken": "A conexão com o servidor foi interrompida. Por favor recarregue a página.",
"errorStockChart": "Ordem incorreta das linhas. Para construir um gráfico de ações, coloque os dados na folha na seguinte ordem: <br> preço de abertura, preço máximo, preço mínimo, preço de fechamento.",
"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.",
"errorUserDrop": "O arquivo não pode ser acessado no momento.",
"errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido",
"errorViewerDisconnect": "A conexão foi perdida. Você ainda pode ver o documento, <br> mas não poderá baixá-lo até que a conexão seja restaurada e a página recarregada.",
"notcriticalErrorTitle": "Aviso",
"openErrorText": "Ocorreu um erro ao abrir o arquivo",
"saveErrorText": "Ocorreu um erro ao salvar o arquivo"
"saveErrorText": "Ocorreu um erro ao salvar o arquivo",
"scriptLoadError": "A conexão está muito lenta, alguns dos componentes não puderam ser carregados. Por favor recarregue a página.",
"splitDividerErrorText": "O número de linhas deve ser um divisor de %1",
"splitMaxColsErrorText": "O número de colunas deve ser inferior a %1",
"splitMaxRowsErrorText": "O número de linhas deve ser inferior a %1",
"unknownErrorText": "Erro desconhecido.",
"uploadImageExtMessage": "Formato de imagem desconhecido.",
"uploadImageFileCountMessage": "Sem imagens carregadas.",
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
},
"LongActions": {
"applyChangesTextText": "Carregando dados...",
"applyChangesTitleText": "Carregando dados",
"downloadMergeText": "Baixando...",
"downloadMergeTitle": "Baixando",
"downloadTextText": "Baixando documento...",
"downloadTitleText": "Baixando documento",
"loadFontsTextText": "Carregando dados...",
"loadFontsTitleText": "Carregando dados",
"loadFontTextText": "Carregando dados...",
"loadFontTitleText": "Carregando dados",
"loadImagesTextText": "Carregando imagens...",
"loadImagesTitleText": "Carregando imagens",
"loadImageTextText": "Carregando imagem...",
"loadImageTitleText": "Carregando imagem",
"loadingDocumentTextText": "Carregando documento...",
"loadingDocumentTitleText": "Carregando documento",
"mailMergeLoadFileText": "Carregando fonte de dados...",
"mailMergeLoadFileTitle": "Carregando fonte de dados",
"openTextText": "Abrindo documento...",
"openTitleText": "Abrindo documento",
"printTextText": "Imprimindo documento...",
"printTitleText": "Imprimindo documento",
"savePreparingText": "Preparando para salvar",
"savePreparingTitle": "Preparando para salvar. Aguarde...",
"saveTextText": "Salvando documento...",
"saveTitleText": "Salvando documento",
"sendMergeText": "Enviando mesclar...",
"sendMergeTitle": "Enviando Mesclar",
"textLoadingDocument": "Carregando documento",
"txtEditingMode": "Definir modo de edição...",
"uploadImageTextText": "Carregando imagem...",
"uploadImageTitleText": "Carregando imagem",
"waitText": "Por favor, aguarde..."
},
"Main": {
"criticalErrorTitle": "Erro",
"errorAccessDeny": "Você está tentando realizar uma ação para a qual não tem direitos.<br>Por favor, entre em contato com seu administrador.",
"errorOpensource": "Usando a versão gratuita da Comunidade, você pode abrir documentos apenas para visualização. Para acessar editores da web móvel, é necessária uma licença comercial.",
"errorProcessSaveResult": "Salvamento falhou.",
"errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
"errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
"leavePageText": "Você tem mudanças não salvas. Clique em 'Ficar nesta página' para esperar pela auto-salvar. Clique em 'Sair desta página' para descartar todas as mudanças não salvas.",
"notcriticalErrorTitle": "Aviso",
"SDK": {
" -Section ": "-Seção",
"above": "Acima",
"below": "Abaixo",
"Caption": "Legenda",
"Choose an item": "Escolha um item",
"Diagram Title": "Título do Gráfico"
"Click to load image": "Clique para carregar imagem",
"Current Document": "Documento atual",
"Diagram Title": "Título do Gráfico",
"endnote text": "Texto de fim de nota",
"Enter a date": "Insira uma data",
"Error! Bookmark not defined": "Erro! Bookmark não definido",
"Error! Main Document Only": "Erro! Documento principal apenas.",
"Error! No text of specified style in document": "Erro! Nenhum texto do estilo especificado no documento.",
"Error! Not a valid bookmark self-reference": "Erro! Não é uma auto-referência de marcador válida.",
"Even Page ": "Página par",
"First Page ": "Primeira Página",
"Footer": "Rodapé",
"footnote text": "Texto de nota de rodapé",
"Header": "Cabeçalho",
"Heading 1": "Cabeçalho 1",
"Heading 2": "Cabeçalho 2",
"Heading 3": "Cabeçalho 3",
"Heading 4": "Cabeçalho 4",
"Heading 5": "Cabeçalho 5",
"Heading 6": "Cabeçalho 6",
"Heading 7": "Cabeçalho 7",
"Heading 8": "Cabeçalho 8",
"Heading 9": "Cabeçalho 9",
"Hyperlink": "Hiperlink",
"Index Too Large": "Índice muito grande",
"Intense Quote": "Citação intensa",
"Is Not In Table": "Não está na Tabela",
"List Paragraph": "Listar parágrafo",
"Missing Argument": "Argumento ausente",
"Missing Operator": "Operador ausente",
"No Spacing": "Sem espaçamento",
"No table of contents entries found": "Não há cabeçalhos no documento. Aplique um estilo de cabeçalho ao texto para que ele apareça no índice.",
"No table of figures entries found": "Nenhuma entrada de tabela de figuras encontrada.",
"None": "Nenhum",
"Normal": "Normal",
"Number Too Large To Format": "Número Muito Extenso para Formatar",
"Odd Page ": "Página ímpar",
"Quote": "Citar",
"Same as Previous": "Mesmo da Anterior",
"Series": "Série",
"Subtitle": "Legenda",
"Syntax Error": "Erro de Sintaxe",
"Table Index Cannot be Zero": "O índice da tabela não pode ser zero",
"Table of Contents": "Tabela de Conteudo",
"table of figures": "Tabela de figuras",
"The Formula Not In Table": "A fórmula não está na tabela",
"Title": "Título",
"TOC Heading": "Rúbrica TOC",
"Type equation here": "Tipo de equação aqui",
"Undefined Bookmark": "Indicador indefinido",
"Unexpected End of Formula": "Fim inesperado da fórmula",
"X Axis": "X Eixo XAS",
"Y Axis": "Eixo Y",
"Your text here": "Seu texto aqui",
"Zero Divide": "Divisão por zero"
},
"textAnonymous": "Anônimo",
"textClose": "Fechar"
"textBuyNow": "Visitar site",
"textClose": "Fechar",
"textContactUs": "Contate as vendas",
"textCustomLoader": "Desculpe, você não tem o direito de trocar o carregador. Entre em contato com nosso departamento de vendas para obter uma cotação.",
"textGuest": "Convidado(a)",
"textHasMacros": "O arquivo contém macros automáticas.<br> Você quer executar macros?",
"textNo": "Não",
"textNoLicenseTitle": "Limite de licença atingido",
"textPaidFeature": "Recurso pago",
"textRemember": "Lembrar minha escolha",
"textYes": "Sim",
"titleLicenseExp": "A licença expirou",
"titleServerVersion": "Editor atualizado",
"titleUpdateVersion": "Versão alterada",
"warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate seu administrador para saber mais.",
"warnLicenseExp": "Sua licença expirou. Por favor, atualize sua licença e atualize a página.",
"warnLicenseLimitedNoAccess": "A licença expirou. Você não tem acesso à funcionalidade de edição de documentos. Por favor, entre em contato com seu administrador.",
"warnLicenseLimitedRenewed": "A licença precisa ser renovada. Você tem acesso limitado à funcionalidade de edição de documentos. <br> Entre em contato com o administrador para obter acesso total",
"warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.",
"warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.",
"warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
"warnProcessRightsChange": "Você não tem permissão para editar este arquivo."
},
"Settings": {
"advDRMOptions": "Arquivo protegido",
"advDRMPassword": "Senha",
"advTxtOptions": "Escolha Opções de TXT",
"closeButtonText": "Fechar Arquivo",
"notcriticalErrorTitle": "Aviso",
"textAbout": "Sobre",
"textApplication": "Aplicativo",
"textApplicationSettings": "Configurações de Aplicativo",
@ -115,8 +487,91 @@
"textComments": "Comentários",
"textCommentsDisplay": "Tela de comentários",
"textCreated": "Criado",
"textCustomSize": "Tamanho personalizado",
"textDisableAll": "Desabilitar tudo",
"textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação",
"textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação",
"textDocumentInfo": "Informações do Documento",
"textDocumentSettings": "Definições do Documento",
"textDocumentTitle": "Título do Documento",
"textDone": "Concluído",
"textDownload": "Baixar",
"textDownloadAs": "Baixar como",
"textDownloadRtf": "Se você continuar a economizar neste formato, algumas das formatações podem ser perdidas. Você tem certeza de que quer continuar?",
"textDownloadTxt": "Se você continuar salvando neste formato todas as características, exceto o texto, serão perdidas. Você tem certeza de que quer continuar?",
"textEnableAll": "Habilitar todos",
"textEnableAllMacrosWithoutNotification": "Habilitar todas as macros sem notificação",
"textEncoding": "Codificação",
"textFind": "Localizar",
"textFindAndReplace": "Localizar e substituir",
"textFindAndReplaceAll": "Encontrar e Substituir Tudo",
"textFormat": "Formato",
"textHelp": "Ajuda",
"textHiddenTableBorders": "Ocultar bordas da tabela",
"textHighlightResults": "Destacar resultados",
"textInch": "Polegada",
"textLandscape": "Paisagem",
"textLastModified": "Última modificação",
"textLastModifiedBy": "Última Modificação Por",
"textLeft": "Esquerda",
"textLoading": "Carregando...",
"textLocation": "Localização",
"textMacrosSettings": "Configurações de macros",
"textMargins": "Margens",
"textMarginsH": "Margens superior e inferior são muito altas para uma determinada altura da página",
"textMarginsW": "Margens são muito grandes para uma determinada largura da página",
"textNoCharacters": "Caracteres não imprimíveis",
"textNoTextFound": "Texto não encontrado",
"textOpenFile": "Inserir a Senha para Abrir o Arquivo",
"textOrientation": "Orientação",
"textOwner": "Proprietário",
"textPoint": "Ponto",
"textPortrait": "Retrato ",
"textPrint": "Imprimir",
"textReaderMode": "Modo de leitura",
"textReplace": "Substituir",
"textReplaceAll": "Substituir tudo",
"textResolvedComments": "Comentários Solucionados",
"textRight": "Direita",
"textSearch": "Pesquisar",
"textSettings": "Configurações",
"textShowNotification": "Mostrar notificação",
"textSpellcheck": "Verificação ortográfica",
"textStatistic": "Estatística",
"textSubject": "Assunto",
"textTitle": "Título",
"textTop": "Parte superior",
"textUnitOfMeasurement": "Unidade de medida",
"textUploaded": "Carregado",
"txtIncorrectPwd": "A senha está incorreta",
"txtProtected": "Depois de inserir a senha e abrir o arquivo, a senha atual será redefinida",
"txtScheme1": "Office",
"txtScheme10": "Mediana",
"txtScheme11": "Metro",
"txtScheme12": "Módulo",
"txtScheme13": "Opulento",
"txtScheme14": "Balcão envidraçado",
"txtScheme15": "Origem",
"txtScheme16": "Papel",
"txtScheme17": "Solstício",
"txtScheme18": "Técnica",
"txtScheme19": "Viagem",
"txtScheme2": "Escala de cinza",
"txtScheme20": "Urbano",
"txtScheme21": "Verve",
"txtScheme22": "Novo Office",
"txtScheme3": "Ápice",
"txtScheme4": "Aspecto",
"txtScheme6": "Concurso"
"txtScheme5": "Cívico",
"txtScheme6": "Concurso",
"txtScheme7": "Patrimônio Líquido",
"txtScheme8": "Fluxo",
"txtScheme9": "Fundição"
},
"Toolbar": {
"dlgLeaveMsgText": "Você tem mudanças não salvas. Clique em 'Ficar nesta página' para esperar pela auto-salvar. Clique em 'Sair desta página' para descartar todas as mudanças não salvas.",
"dlgLeaveTitleText": "Você saiu do aplicativo",
"leaveButtonText": "Sair desta página",
"stayButtonText": "Ficar nesta página"
}
}

View file

@ -557,6 +557,8 @@
"txtScheme18": "Tehnic",
"txtScheme19": "Turist",
"txtScheme2": "Tonuri de gri",
"txtScheme20": "Urban",
"txtScheme21": "Vervă",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",

View file

@ -252,7 +252,7 @@
"textNoStyles": "Для этого типа диаграмм нет стилей.",
"textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
"textNumbers": "Нумерация",
"textOpacity": "Прозрачность",
"textOpacity": "Непрозрачность",
"textOptions": "Параметры",
"textOrphanControl": "Запрет висячих строк",
"textPageBreakBefore": "С новой страницы",
@ -557,6 +557,8 @@
"txtScheme18": "Техническая",
"txtScheme19": "Трек",
"txtScheme2": "Оттенки серого",
"txtScheme20": "Городская",
"txtScheme21": "Яркая",
"txtScheme22": "Новая офисная",
"txtScheme3": "Апекс",
"txtScheme4": "Аспект",

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,407 +1,577 @@
{
"Common.Controllers.Collaboration.textAuto": "auto",
"Common.Controllers.Collaboration.textBaseline": "Baslinje",
"Common.Controllers.Collaboration.textBold": "Fet",
"Common.Controllers.Collaboration.textBreakBefore": "Sidbrytning före",
"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.textNoBreakBefore": "Ingen sidbrytning före",
"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.textParaFormatted": "<b>Stycke formaterat</b>",
"Common.Controllers.Collaboration.textParaInserted": "<b>Stycke infogat</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.textTableRowsAdd": "<b>Tabellrader tillagda</b>",
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Tabellrader raderade</b>",
"Common.Controllers.Collaboration.textTabs": "Ändra tabbar",
"Common.UI.ThemeColorPalette.textCustomColors": "Anpassade färger",
"Common.UI.ThemeColorPalette.textStandartColors": "Standardfärger",
"Common.UI.ThemeColorPalette.textThemeColors": "Temafärger",
"Common.Utils.Metric.txtCm": "cm",
"Common.Views.Collaboration.textAcceptAllChanges": "Acceptera alla ändringar",
"Common.Views.Collaboration.textBack": "Tillbaka",
"Common.Views.Collaboration.textChange": "Granska ändring",
"Common.Views.Collaboration.textCollaboration": "Samarbete",
"Common.Views.Collaboration.textDisplayMode": "Visningsläge",
"Common.Views.Collaboration.textEditUsers": "Användare",
"Common.Views.Collaboration.textFinal": "Slutlig",
"Common.Views.Collaboration.textMarkup": "Markering",
"Common.Views.Collaboration.textNoComments": "Detta dokument innehåller inga kommentarer",
"Common.Views.Collaboration.textOriginal": "Original",
"Common.Views.Collaboration.textRejectAllChanges": "Avvisa alla ändringar",
"Common.Views.Collaboration.textReview": "Spåra ändringar",
"Common.Views.Collaboration.textReviewing": "Granska",
"DE.Controllers.AddContainer.textImage": "Bild",
"DE.Controllers.AddContainer.textOther": "Annat",
"DE.Controllers.AddContainer.textShape": "Form",
"DE.Controllers.AddContainer.textTable": "Tabell",
"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.AddTable.textTableSize": "Tabellstorlek",
"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.menuReviewChange": "Granska ändring",
"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.textParagraph": "Stycke",
"DE.Controllers.EditContainer.textSettings": "Inställningar",
"DE.Controllers.EditContainer.textShape": "Form",
"DE.Controllers.EditContainer.textTable": "Tabell",
"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.splitMaxColsErrorText": "Antalet kolumner måste vara mindre än %1",
"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.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren. <br> Kontakta vår försäljningsavdelning för att få en offert.",
"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_Intense_Quote": "Intensivt citat",
"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.txtStyle_Quote": "Citat",
"DE.Controllers.Main.txtStyle_Subtitle": "Undertitel",
"DE.Controllers.Main.txtStyle_Title": "Titel",
"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.dlgLeaveTitleText": "Du lämnar appen",
"DE.Controllers.Toolbar.leaveButtonText": "Lämna denna sidan",
"DE.Views.AddImage.textAddress": "Adress",
"DE.Views.AddImage.textBack": "Tillbaka",
"DE.Views.AddImage.textFromLibrary": "Bild från biblioteket",
"DE.Views.AddImage.textFromURL": "Bild från URL",
"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": "Kolumnbrytning",
"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.textNextPage": "Nästa sida",
"DE.Views.AddOther.textOddPage": "Udda sida",
"DE.Views.AddOther.textPageBreak": "Sidbrytning",
"DE.Views.AddOther.textRightBottom": "Höger nederkant",
"DE.Views.AddOther.textRightTop": "Höger överkant",
"DE.Views.AddOther.textSectionBreak": "Brytning avsnitt",
"DE.Views.AddOther.textStartFrom": "Börja på",
"DE.Views.AddOther.textTip": "Skärmtips",
"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.EditChart.textTopBottom": "Övre och nedre",
"DE.Views.EditHeader.textDiffFirst": "Annan förstasida",
"DE.Views.EditHeader.textDiffOdd": "Olika udda och jämna sidor",
"DE.Views.EditHeader.textFrom": "Börja på",
"DE.Views.EditHeader.textPageNumbering": "Sidnumrering",
"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.EditHyperlink.textTip": "Skärmtips",
"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.textFromLibrary": "Bild från biblioteket",
"DE.Views.EditImage.textFromURL": "Bild från URL",
"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.EditImage.textTopBottom": "Övre och nedre",
"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.textPageBreak": "Sidbrytning före",
"DE.Views.EditParagraph.textPrgStyles": "Avsnittstilar",
"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.textTopAndBottom": "Övre och nedre",
"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.textRemoveTable": "Radera tabell",
"DE.Views.EditTable.textSize": "Storlek",
"DE.Views.EditTable.textTableOptions": "Tabellegenskaper",
"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.textAdditionalFormat": "Ytterligare formatering",
"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": "I",
"DE.Views.EditText.textCustomColor": "Anpassad färg",
"DE.Views.EditText.textDblStrikethrough": "Dubbel genomstrykning",
"DE.Views.EditText.textDblSuperscript": "Upphöjd",
"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.EditText.textStrikethrough": "Genomstruken",
"DE.Views.EditText.textSubscript": "Nedsänkt",
"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.textAdvancedSettings": "Appinställningar",
"DE.Views.Settings.textApplication": "Program",
"DE.Views.Settings.textAuthor": "Författare",
"DE.Views.Settings.textBack": "Tillbaka",
"DE.Views.Settings.textBottom": "Nederst",
"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.textDisplayResolvedComments": "Lösta 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.textNoCharacters": "Dolda tecken",
"DE.Views.Settings.textOrientation": "Orientering",
"DE.Views.Settings.textOwner": "Ägare",
"DE.Views.Settings.textPages": "Sidor",
"DE.Views.Settings.textParagraphs": "Stycken",
"DE.Views.Settings.textPoint": "Punkt",
"DE.Views.Settings.textPortrait": "Porträtt",
"DE.Views.Settings.textReview": "Spåra ändringar",
"DE.Views.Settings.textRight": "Höger",
"DE.Views.Settings.textSettings": "Inställningar",
"DE.Views.Settings.textSpaces": "Mellanslag",
"DE.Views.Settings.textSpellcheck": "Stavningskontroll",
"DE.Views.Settings.textStatistic": "Statistik",
"DE.Views.Settings.textSymbols": "Symboler",
"DE.Views.Settings.textTitle": "Titel",
"DE.Views.Settings.textTop": "Överst",
"DE.Views.Settings.textUnitOfMeasurement": "Måttenhet",
"DE.Views.Settings.textWords": "Ord",
"DE.Views.Toolbar.textBack": "Tillbaka"
"About": {
"textAbout": "About",
"textAddress": "Address",
"textBack": "Back",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Add": {
"notcriticalErrorTitle": "Warning",
"textAddLink": "Add link",
"textAddress": "Address",
"textBack": "Back",
"textBelowText": "Below text",
"textBottomOfPage": "Bottom of page",
"textBreak": "Break",
"textCancel": "Cancel",
"textCenterBottom": "Center Bottom",
"textCenterTop": "Center Top",
"textColumnBreak": "Column Break",
"textColumns": "Columns",
"textComment": "Comment",
"textContinuousPage": "Continuous Page",
"textCurrentPosition": "Current Position",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify image URL.",
"textEvenPage": "Even Page",
"textFootnote": "Footnote",
"textFormat": "Format",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertFootnote": "Insert Footnote",
"textInsertImage": "Insert Image",
"textLeftBottom": "Left Bottom",
"textLeftTop": "Left Top",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLocation": "Location",
"textNextPage": "Next Page",
"textOddPage": "Odd Page",
"textOther": "Other",
"textPageBreak": "Page Break",
"textPageNumber": "Page Number",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPosition": "Position",
"textRightBottom": "Right Bottom",
"textRightTop": "Right Top",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textSectionBreak": "Section Break",
"textShape": "Shape",
"textStartAt": "Start At",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Warning",
"textAccept": "Accept",
"textAcceptAllChanges": "Accept all changes",
"textAddComment": "Add comment",
"textAddReply": "Add reply",
"textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"textAllChangesEditing": "All changes (Editing)",
"textAllChangesRejectedPreview": "All changes rejected (Preview)",
"textAtLeast": "at least",
"textAuto": "auto",
"textBack": "Back",
"textBaseline": "Baseline",
"textBold": "Bold",
"textBreakBefore": "Page break before",
"textCancel": "Cancel",
"textCaps": "All caps",
"textCenter": "Align center",
"textChart": "Chart",
"textCollaboration": "Collaboration",
"textColor": "Font color",
"textComments": "Comments",
"textContextual": "Don't add intervals between paragraphs of the same style",
"textDelete": "Delete",
"textDeleteComment": "Delete Comment",
"textDeleted": "Deleted:",
"textDeleteReply": "Delete Reply",
"textDisplayMode": "Display Mode",
"textDone": "Done",
"textDStrikeout": "Double strikeout",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textEquation": "Equation",
"textExact": "exactly",
"textFinal": "Final",
"textFirstLine": "First line",
"textFormatted": "Formatted",
"textHighlight": "Highlight color",
"textImage": "Image",
"textIndentLeft": "Indent left",
"textIndentRight": "Indent right",
"textInserted": "Inserted:",
"textItalic": "Italic",
"textJustify": "Align justified ",
"textKeepLines": "Keep lines together",
"textKeepNext": "Keep with next",
"textLeft": "Align left",
"textLineSpacing": "Line Spacing: ",
"textMarkup": "Markup",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textMultiple": "multiple",
"textNoBreakBefore": "No page break before",
"textNoChanges": "There are no changes.",
"textNoComments": "This document doesn't contain comments",
"textNoContextual": "Add interval between paragraphs of the same style",
"textNoKeepLines": "Don't keep lines together",
"textNoKeepNext": "Don't keep with next",
"textNot": "Not ",
"textNoWidow": "No widow control",
"textNum": "Change numbering",
"textOriginal": "Original",
"textParaDeleted": "Paragraph Deleted",
"textParaFormatted": "Paragraph Formatted",
"textParaInserted": "Paragraph Inserted",
"textParaMoveFromDown": "Moved Down:",
"textParaMoveFromUp": "Moved Up:",
"textParaMoveTo": "Moved:",
"textPosition": "Position",
"textReject": "Reject",
"textRejectAllChanges": "Reject All Changes",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textReview": "Review",
"textReviewChange": "Review Change",
"textRight": "Align right",
"textShape": "Shape",
"textShd": "Background color",
"textSmallCaps": "Small caps",
"textSpacing": "Spacing",
"textSpacingAfter": "Spacing after",
"textSpacingBefore": "Spacing before",
"textStrikeout": "Strikeout",
"textSubScript": "Subscript",
"textSuperScript": "Superscript",
"textTableChanged": "Table Settings Changed",
"textTableRowsAdd": "Table Rows Added",
"textTableRowsDel": "Table Rows Deleted",
"textTabs": "Change tabs",
"textTrackChanges": "Track Changes",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUnderline": "Underline",
"textUsers": "Users",
"textWidow": "Widow control"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuAddComment": "Add comment",
"menuAddLink": "Add link",
"menuCancel": "Cancel",
"menuDelete": "Delete",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuReview": "Review",
"menuReviewChange": "Review Change",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Edit": {
"notcriticalErrorTitle": "Warning",
"textActualSize": "Actual size",
"textAddCustomColor": "Add custom color",
"textAdditional": "Additional",
"textAdditionalFormatting": "Additional formatting",
"textAddress": "Address",
"textAdvanced": "Advanced",
"textAdvancedSettings": "Advanced settings",
"textAfter": "After",
"textAlign": "Align",
"textAllCaps": "All caps",
"textAllowOverlap": "Allow overlap",
"textAuto": "Auto",
"textAutomatic": "Automatic",
"textBack": "Back",
"textBackground": "Background",
"textBandedColumn": "Banded column",
"textBandedRow": "Banded row",
"textBefore": "Before",
"textBehind": "Behind",
"textBorder": "Border",
"textBringToForeground": "Bring to foreground",
"textBullets": "Bullets",
"textBulletsAndNumbers": "Bullets & Numbers",
"textCellMargins": "Cell Margins",
"textChart": "Chart",
"textClose": "Close",
"textColor": "Color",
"textContinueFromPreviousSection": "Continue from previous section",
"textCustomColor": "Custom Color",
"textDifferentFirstPage": "Different first page",
"textDifferentOddAndEvenPages": "Different odd and even pages",
"textDisplay": "Display",
"textDistanceFromText": "Distance from text",
"textDoubleStrikethrough": "Double Strikethrough",
"textEditLink": "Edit Link",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify image URL.",
"textFill": "Fill",
"textFirstColumn": "First Column",
"textFirstLine": "FirstLine",
"textFlow": "Flow",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFooter": "Footer",
"textHeader": "Header",
"textHeaderRow": "Header Row",
"textHighlightColor": "Highlight Color",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textInFront": "In Front",
"textInline": "Inline",
"textKeepLinesTogether": "Keep Lines Together",
"textKeepWithNext": "Keep with Next",
"textLastColumn": "Last Column",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkToPrevious": "Link to Previous",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textMoveWithText": "Move with Text",
"textNone": "None",
"textNoStyles": "No styles for this type of charts.",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textOpacity": "Opacity",
"textOptions": "Options",
"textOrphanControl": "Orphan Control",
"textPageBreakBefore": "Page Break Before",
"textPageNumbering": "Page Numbering",
"textParagraph": "Paragraph",
"textParagraphStyles": "Paragraph Styles",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPt": "pt",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",
"textResizeToFitContent": "Resize to Fit Content",
"textScreenTip": "Screen Tip",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textSettings": "Settings",
"textShape": "Shape",
"textSize": "Size",
"textSmallCaps": "Small Caps",
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
"textSquare": "Square",
"textStartAt": "Start at",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textTableOptions": "Table Options",
"textText": "Text",
"textThrough": "Through",
"textTight": "Tight",
"textTopAndBottom": "Top and Bottom",
"textTotalRow": "Total Row",
"textType": "Type",
"textWrap": "Wrap",
"textNumbers": "Numbers"
},
"Error": {
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.<br>When you click OK, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorMailMergeLoadFile": "Loading failed",
"errorMailMergeSaveFile": "Merge failed.",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.",
"errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"openErrorText": "An error has occurred while opening the file",
"saveErrorText": "An error has occurred while saving the file",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadMergeText": "Downloading...",
"downloadMergeTitle": "Downloading",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"mailMergeLoadFileText": "Loading Data Source...",
"mailMergeLoadFileTitle": "Loading Data Source",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"sendMergeText": "Sending Merge...",
"sendMergeTitle": "Sending Merge",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Main": {
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"SDK": {
" -Section ": " -Section ",
"above": "above",
"below": "below",
"Caption": "Caption",
"Choose an item": "Choose an item",
"Click to load image": "Click to load image",
"Current Document": "Current Document",
"Diagram Title": "Chart Title",
"endnote text": "Endnote Text",
"Enter a date": "Enter a date",
"Error! Bookmark not defined": "Error! Bookmark not defined.",
"Error! Main Document Only": "Error! Main Document Only.",
"Error! No text of specified style in document": "Error! No text of specified style in document.",
"Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"Even Page ": "Even Page ",
"First Page ": "First Page ",
"Footer": "Footer",
"footnote text": "Footnote Text",
"Header": "Header",
"Heading 1": "Heading 1",
"Heading 2": "Heading 2",
"Heading 3": "Heading 3",
"Heading 4": "Heading 4",
"Heading 5": "Heading 5",
"Heading 6": "Heading 6",
"Heading 7": "Heading 7",
"Heading 8": "Heading 8",
"Heading 9": "Heading 9",
"Hyperlink": "Hyperlink",
"Index Too Large": "Index Too Large",
"Intense Quote": "Intense Quote",
"Is Not In Table": "Is Not In Table",
"List Paragraph": "List Paragraph",
"Missing Argument": "Missing Argument",
"Missing Operator": "Missing Operator",
"No Spacing": "No Spacing",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"No table of figures entries found": "No table of figures entries found.",
"None": "None",
"Normal": "Normal",
"Number Too Large To Format": "Number Too Large To Format",
"Odd Page ": "Odd Page ",
"Quote": "Quote",
"Same as Previous": "Same as Previous",
"Series": "Series",
"Subtitle": "Subtitle",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"Title": "Title",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here",
"Zero Divide": "Zero Divide"
},
"textAnonymous": "Anonymous",
"textBuyNow": "Visit website",
"textClose": "Close",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit this file."
},
"Settings": {
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"advTxtOptions": "Choose TXT Options",
"closeButtonText": "Close File",
"notcriticalErrorTitle": "Warning",
"textAbout": "About",
"textApplication": "Application",
"textApplicationSettings": "Application settings",
"textAuthor": "Author",
"textBack": "Back",
"textBottom": "Bottom",
"textCancel": "Cancel",
"textCaseSensitive": "Case Sensitive",
"textCentimeter": "Centimeter",
"textCollaboration": "Collaboration",
"textColorSchemes": "Color Schemes",
"textComment": "Comment",
"textComments": "Comments",
"textCommentsDisplay": "Comments Display",
"textCreated": "Created",
"textCustomSize": "Custom Size",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDocumentInfo": "Document Info",
"textDocumentSettings": "Document Settings",
"textDocumentTitle": "Document Title",
"textDone": "Done",
"textDownload": "Download",
"textDownloadAs": "Download As",
"textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?",
"textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textEncoding": "Encoding",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textFormat": "Format",
"textHelp": "Help",
"textHiddenTableBorders": "Hidden Table Borders",
"textHighlightResults": "Highlight Results",
"textInch": "Inch",
"textLandscape": "Landscape",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLeft": "Left",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textMargins": "Margins",
"textMarginsH": "Top and bottom margins are too high for a given page height",
"textMarginsW": "Left and right margins are too wide for a given page width",
"textNoCharacters": "Nonprinting Characters",
"textNoTextFound": "Text not found",
"textOpenFile": "Enter a password to open the file",
"textOrientation": "Orientation",
"textOwner": "Owner",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Print",
"textReaderMode": "Reader Mode",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textResolvedComments": "Resolved Comments",
"textRight": "Right",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
"textTitle": "Title",
"textTop": "Top",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this Page",
"stayButtonText": "Stay on this page"
}
}

View file

@ -2,7 +2,11 @@
"About": {
"textAbout": "Hakkında",
"textAddress": "adres",
"textBack": "Geri"
"textBack": "Geri",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Add": {
"textAddLink": "Bağlantı Ekle",
@ -13,7 +17,46 @@
"textBreak": "Yeni Sayfa",
"textCancel": "İptal Et",
"textCenterBottom": "Orta Alt",
"textColumnBreak": "Sütun Sonu"
"textColumnBreak": "Sütun Sonu",
"notcriticalErrorTitle": "Warning",
"textCenterTop": "Center Top",
"textColumns": "Columns",
"textComment": "Comment",
"textContinuousPage": "Continuous Page",
"textCurrentPosition": "Current Position",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify image URL.",
"textEvenPage": "Even Page",
"textFootnote": "Footnote",
"textFormat": "Format",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertFootnote": "Insert Footnote",
"textInsertImage": "Insert Image",
"textLeftBottom": "Left Bottom",
"textLeftTop": "Left Top",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLocation": "Location",
"textNextPage": "Next Page",
"textOddPage": "Odd Page",
"textOther": "Other",
"textPageBreak": "Page Break",
"textPageNumber": "Page Number",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPosition": "Position",
"textRightBottom": "Right Bottom",
"textRightTop": "Right Top",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textSectionBreak": "Section Break",
"textShape": "Shape",
"textStartAt": "Start At",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Common": {
"Collaboration": {
@ -36,12 +79,108 @@
"textLeft": "Sola Hizala",
"textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle",
"textRight": "Sağa Hizala",
"textShd": "Arka plan rengi"
"textShd": "Arka plan rengi",
"notcriticalErrorTitle": "Warning",
"textAddComment": "Add comment",
"textAllChangesRejectedPreview": "All changes rejected (Preview)",
"textBreakBefore": "Page break before",
"textColor": "Font color",
"textComments": "Comments",
"textContextual": "Don't add intervals between paragraphs of the same style",
"textDelete": "Delete",
"textDeleteComment": "Delete Comment",
"textDeleted": "Deleted:",
"textDeleteReply": "Delete Reply",
"textDisplayMode": "Display Mode",
"textDone": "Done",
"textDStrikeout": "Double strikeout",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textEquation": "Equation",
"textExact": "exactly",
"textFinal": "Final",
"textFirstLine": "First line",
"textFormatted": "Formatted",
"textHighlight": "Highlight color",
"textImage": "Image",
"textIndentLeft": "Indent left",
"textIndentRight": "Indent right",
"textInserted": "Inserted:",
"textItalic": "Italic",
"textKeepLines": "Keep lines together",
"textKeepNext": "Keep with next",
"textLineSpacing": "Line Spacing: ",
"textMarkup": "Markup",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textMultiple": "multiple",
"textNoBreakBefore": "No page break before",
"textNoChanges": "There are no changes.",
"textNoComments": "This document doesn't contain comments",
"textNoKeepLines": "Don't keep lines together",
"textNoKeepNext": "Don't keep with next",
"textNot": "Not ",
"textNoWidow": "No widow control",
"textNum": "Change numbering",
"textOriginal": "Original",
"textParaDeleted": "Paragraph Deleted",
"textParaFormatted": "Paragraph Formatted",
"textParaInserted": "Paragraph Inserted",
"textParaMoveFromDown": "Moved Down:",
"textParaMoveFromUp": "Moved Up:",
"textParaMoveTo": "Moved:",
"textPosition": "Position",
"textReject": "Reject",
"textRejectAllChanges": "Reject All Changes",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textReview": "Review",
"textReviewChange": "Review Change",
"textShape": "Shape",
"textSmallCaps": "Small caps",
"textSpacing": "Spacing",
"textSpacingAfter": "Spacing after",
"textSpacingBefore": "Spacing before",
"textStrikeout": "Strikeout",
"textSubScript": "Subscript",
"textSuperScript": "Superscript",
"textTableChanged": "Table Settings Changed",
"textTableRowsAdd": "Table Rows Added",
"textTableRowsDel": "Table Rows Deleted",
"textTabs": "Change tabs",
"textTrackChanges": "Track Changes",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUnderline": "Underline",
"textUsers": "Users",
"textWidow": "Widow control"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"menuAddLink": "Bağlantı Ekle",
"menuCancel": "İptal Et"
"menuCancel": "İptal Et",
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuAddComment": "Add comment",
"menuDelete": "Delete",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuReview": "Review",
"menuReviewChange": "Review Change",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Edit": {
"textActualSize": "Gerçek Boyut",
@ -68,18 +207,229 @@
"textCellMargins": "Hücre Kenar Boşluğu",
"textChart": "Grafik",
"textClose": "Kapat",
"textColor": "Renk"
"textColor": "Renk",
"notcriticalErrorTitle": "Warning",
"textAllowOverlap": "Allow overlap",
"textBullets": "Bullets",
"textContinueFromPreviousSection": "Continue from previous section",
"textCustomColor": "Custom Color",
"textDifferentFirstPage": "Different first page",
"textDifferentOddAndEvenPages": "Different odd and even pages",
"textDisplay": "Display",
"textDistanceFromText": "Distance from text",
"textDoubleStrikethrough": "Double Strikethrough",
"textEditLink": "Edit Link",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify image URL.",
"textFill": "Fill",
"textFirstColumn": "First Column",
"textFirstLine": "FirstLine",
"textFlow": "Flow",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFooter": "Footer",
"textHeader": "Header",
"textHeaderRow": "Header Row",
"textHighlightColor": "Highlight Color",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textInFront": "In Front",
"textInline": "Inline",
"textKeepLinesTogether": "Keep Lines Together",
"textKeepWithNext": "Keep with Next",
"textLastColumn": "Last Column",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkToPrevious": "Link to Previous",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textMoveWithText": "Move with Text",
"textNone": "None",
"textNoStyles": "No styles for this type of charts.",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textNumbers": "Numbers",
"textOpacity": "Opacity",
"textOptions": "Options",
"textOrphanControl": "Orphan Control",
"textPageBreakBefore": "Page Break Before",
"textPageNumbering": "Page Numbering",
"textParagraph": "Paragraph",
"textParagraphStyles": "Paragraph Styles",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPt": "pt",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",
"textResizeToFitContent": "Resize to Fit Content",
"textScreenTip": "Screen Tip",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textSettings": "Settings",
"textShape": "Shape",
"textSize": "Size",
"textSmallCaps": "Small Caps",
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
"textSquare": "Square",
"textStartAt": "Start at",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textTableOptions": "Table Options",
"textText": "Text",
"textThrough": "Through",
"textTight": "Tight",
"textTopAndBottom": "Top and Bottom",
"textTotalRow": "Total Row",
"textType": "Type",
"textWrap": "Wrap"
},
"Error": {
"openErrorText": "Dosya açılırken bir hata oluştu.",
"saveErrorText": "Dosya kaydedilirken bir hata oluştu"
"saveErrorText": "Dosya kaydedilirken bir hata oluştu",
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.<br>When you click OK, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorMailMergeLoadFile": "Loading failed",
"errorMailMergeSaveFile": "Merge failed.",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.",
"errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"Main": {
"SDK": {
"Diagram Title": "Grafik başlığı"
"Diagram Title": "Grafik başlığı",
" -Section ": " -Section ",
"above": "above",
"below": "below",
"Caption": "Caption",
"Choose an item": "Choose an item",
"Click to load image": "Click to load image",
"Current Document": "Current Document",
"endnote text": "Endnote Text",
"Enter a date": "Enter a date",
"Error! Bookmark not defined": "Error! Bookmark not defined.",
"Error! Main Document Only": "Error! Main Document Only.",
"Error! No text of specified style in document": "Error! No text of specified style in document.",
"Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"Even Page ": "Even Page ",
"First Page ": "First Page ",
"Footer": "Footer",
"footnote text": "Footnote Text",
"Header": "Header",
"Heading 1": "Heading 1",
"Heading 2": "Heading 2",
"Heading 3": "Heading 3",
"Heading 4": "Heading 4",
"Heading 5": "Heading 5",
"Heading 6": "Heading 6",
"Heading 7": "Heading 7",
"Heading 8": "Heading 8",
"Heading 9": "Heading 9",
"Hyperlink": "Hyperlink",
"Index Too Large": "Index Too Large",
"Intense Quote": "Intense Quote",
"Is Not In Table": "Is Not In Table",
"List Paragraph": "List Paragraph",
"Missing Argument": "Missing Argument",
"Missing Operator": "Missing Operator",
"No Spacing": "No Spacing",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"No table of figures entries found": "No table of figures entries found.",
"None": "None",
"Normal": "Normal",
"Number Too Large To Format": "Number Too Large To Format",
"Odd Page ": "Odd Page ",
"Quote": "Quote",
"Same as Previous": "Same as Previous",
"Series": "Series",
"Subtitle": "Subtitle",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"Title": "Title",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here",
"Zero Divide": "Zero Divide"
},
"textAnonymous": "Anonim",
"textClose": "Kapat"
"textClose": "Kapat",
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"textBuyNow": "Visit website",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit this file."
},
"Settings": {
"advTxtOptions": "TXT Seçeneklerini Belirle",
@ -94,6 +444,134 @@
"textCaseSensitive": "Büyük küçük harfe duyarlı",
"textCentimeter": "Santimetre",
"textCollaboration": "Ortak çalışma",
"textColorSchemes": "Renk Şeması"
"textColorSchemes": "Renk Şeması",
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"notcriticalErrorTitle": "Warning",
"textComment": "Comment",
"textComments": "Comments",
"textCommentsDisplay": "Comments Display",
"textCreated": "Created",
"textCustomSize": "Custom Size",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDocumentInfo": "Document Info",
"textDocumentSettings": "Document Settings",
"textDocumentTitle": "Document Title",
"textDone": "Done",
"textDownload": "Download",
"textDownloadAs": "Download As",
"textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?",
"textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textEncoding": "Encoding",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textFormat": "Format",
"textHelp": "Help",
"textHiddenTableBorders": "Hidden Table Borders",
"textHighlightResults": "Highlight Results",
"textInch": "Inch",
"textLandscape": "Landscape",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLeft": "Left",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textMargins": "Margins",
"textMarginsH": "Top and bottom margins are too high for a given page height",
"textMarginsW": "Left and right margins are too wide for a given page width",
"textNoCharacters": "Nonprinting Characters",
"textNoTextFound": "Text not found",
"textOpenFile": "Enter a password to open the file",
"textOrientation": "Orientation",
"textOwner": "Owner",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Print",
"textReaderMode": "Reader Mode",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textResolvedComments": "Resolved Comments",
"textRight": "Right",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
"textTitle": "Title",
"textTop": "Top",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
},
"LongActions": {
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadMergeText": "Downloading...",
"downloadMergeTitle": "Downloading",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"mailMergeLoadFileText": "Loading Data Source...",
"mailMergeLoadFileTitle": "Loading Data Source",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"sendMergeText": "Sending Merge...",
"sendMergeTitle": "Sending Merge",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this Page",
"stayButtonText": "Stay on this page"
}
}

File diff suppressed because it is too large Load diff

View file

@ -1,377 +1,577 @@
{
"Common.UI.ThemeColorPalette.textStandartColors": "Màu chuẩn",
"Common.UI.ThemeColorPalette.textThemeColors": "Màu theme",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"DE.Controllers.AddContainer.textImage": "Hình ảnh",
"DE.Controllers.AddContainer.textOther": "Khác",
"DE.Controllers.AddContainer.textShape": "Hình dạng",
"DE.Controllers.AddContainer.textTable": "Bảng",
"DE.Controllers.AddImage.textEmptyImgUrl": "Bạn cần chỉ định URL hình ảnh.",
"DE.Controllers.AddImage.txtNotUrl": "Trường này phải là một URL có định dạng 'http://www.example.com'",
"DE.Controllers.AddOther.txtNotUrl": "Trường này phải là một URL có định dạng 'http://www.example.com'",
"DE.Controllers.AddTable.textCancel": "Hủy",
"DE.Controllers.AddTable.textColumns": "Cột",
"DE.Controllers.AddTable.textRows": "Hàng",
"DE.Controllers.AddTable.textTableSize": "Kích thước bảng",
"DE.Controllers.DocumentHolder.menuAddLink": "Thêm liên kết",
"DE.Controllers.DocumentHolder.menuCopy": "Sao chép",
"DE.Controllers.DocumentHolder.menuCut": "Cắt",
"DE.Controllers.DocumentHolder.menuDelete": "Xóa",
"DE.Controllers.DocumentHolder.menuEdit": "Chỉnh sửa",
"DE.Controllers.DocumentHolder.menuMore": "Thêm",
"DE.Controllers.DocumentHolder.menuOpenLink": "Mở liên kết",
"DE.Controllers.DocumentHolder.menuPaste": "Dán",
"DE.Controllers.DocumentHolder.sheetCancel": "Hủy",
"DE.Controllers.DocumentHolder.textGuest": "Khách",
"DE.Controllers.EditContainer.textChart": "Biểu đồ",
"DE.Controllers.EditContainer.textHyperlink": "Siêu liên kết",
"DE.Controllers.EditContainer.textImage": "Hình ảnh",
"DE.Controllers.EditContainer.textParagraph": "Đoạn văn bản",
"DE.Controllers.EditContainer.textSettings": "Cài đặt",
"DE.Controllers.EditContainer.textShape": "Hình dạng",
"DE.Controllers.EditContainer.textTable": "Bảng",
"DE.Controllers.EditContainer.textText": "Văn bản",
"DE.Controllers.EditImage.textEmptyImgUrl": "Bạn cần chỉ định URL hình ảnh.",
"DE.Controllers.EditImage.txtNotUrl": "Trường này phải là một URL có định dạng 'http://www.example.com'",
"DE.Controllers.EditText.textAuto": "Tự động",
"DE.Controllers.EditText.textFonts": "Phông chữ",
"DE.Controllers.EditText.textPt": "pt",
"DE.Controllers.Main.advDRMEnterPassword": "Nhập mật khẩu của bạn:",
"DE.Controllers.Main.advDRMOptions": "File được bảo vệ",
"DE.Controllers.Main.advDRMPassword": "Mật khẩu",
"DE.Controllers.Main.advTxtOptions": "Chọn tùy chọn TXT",
"DE.Controllers.Main.applyChangesTextText": "Đang tải dữ liệu...",
"DE.Controllers.Main.applyChangesTitleText": "Đang tải Dữ liệu",
"DE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.",
"DE.Controllers.Main.criticalErrorExtText": "Ấn 'OK' để trở lại danh sách tài liệu.",
"DE.Controllers.Main.criticalErrorTitle": "Lỗi",
"DE.Controllers.Main.downloadErrorText": "Tải về không thành công.",
"DE.Controllers.Main.downloadMergeText": "Đang tải...",
"DE.Controllers.Main.downloadMergeTitle": "Đang tải về",
"DE.Controllers.Main.downloadTextText": "Đang tải tài liệu...",
"DE.Controllers.Main.downloadTitleText": "Đang tải tài liệu...",
"DE.Controllers.Main.errorBadImageUrl": "URL hình ảnh không chính xác",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Kết nối máy chủ bị mất. Bạn không thể chỉnh sửa nữa.",
"DE.Controllers.Main.errorConnectToServer": "Không thể lưu tài liệu. Vui lòng kiểm tra cài đặt kết nối hoặc liên hệ với quản trị viên của bạn.<br>Khi bạn nhấp vào nút 'OK', bạn sẽ được nhắc tải xuống tài liệu.",
"DE.Controllers.Main.errorDatabaseConnection": "Lỗi bên ngoài.<br>Lỗi kết nối cơ sở dữ liệu. Vui lòng liên hệ bộ phận hỗ trợ.",
"DE.Controllers.Main.errorDataRange": "Phạm vi dữ liệu không chính xác.",
"DE.Controllers.Main.errorDefaultMessage": "Mã lỗi: %1",
"DE.Controllers.Main.errorFilePassProtect": "Tài liệu được bảo vệ bằng mật khẩu.",
"DE.Controllers.Main.errorKeyEncrypt": "Key descriptor không xác định",
"DE.Controllers.Main.errorKeyExpire": "Key của descriptor đã hết hạn",
"DE.Controllers.Main.errorMailMergeLoadFile": "Tải không thành công",
"DE.Controllers.Main.errorMailMergeSaveFile": "Trộn không thành công.",
"DE.Controllers.Main.errorProcessSaveResult": "Lưu không thành công.",
"DE.Controllers.Main.errorServerVersion": "Phiên bản trình chỉnh sửa này đã được cập nhật. Trang sẽ được tải lại để áp dụng các thay đổi.",
"DE.Controllers.Main.errorStockChart": "Thứ tự hàng không chính xác. Để xây dựng một biểu đồ chứng khoán đặt dữ liệu trên giấy theo thứ tự sau:<br>giá mở phiên, giá cao nhất, giá thấp nhất, giá đóng phiên.",
"DE.Controllers.Main.errorUpdateVersion": "Phiên bản file này đã được thay đổi. Trang này sẽ được tải lại.",
"DE.Controllers.Main.errorUserDrop": "Không thể truy cập file ngay lúc này.",
"DE.Controllers.Main.errorUsersExceed": "Đã vượt quá số lượng người dùng",
"DE.Controllers.Main.errorViewerDisconnect": "Mất kết nối. Bạn vẫn có thể xem tài liệu,<br>nhưng sẽ không thể tải về cho đến khi kết nối được khôi phục.",
"DE.Controllers.Main.leavePageText": "Bạn có những thay đổi chưa lưu trong tài liệu này. Nhấp vào 'Ở lại Trang này' để chờ tự động lưu tài liệu. Nhấp vào 'Rời Trang này' để bỏ tất cả các thay đổi chưa lưu.",
"DE.Controllers.Main.loadFontsTextText": "Đang tải dữ liệu...",
"DE.Controllers.Main.loadFontsTitleText": "Đang tải Dữ liệu",
"DE.Controllers.Main.loadFontTextText": "Đang tải dữ liệu...",
"DE.Controllers.Main.loadFontTitleText": "Đang tải Dữ liệu",
"DE.Controllers.Main.loadImagesTextText": "Đang tải hình ảnh...",
"DE.Controllers.Main.loadImagesTitleText": "Đang tải hình ảnh",
"DE.Controllers.Main.loadImageTextText": "Đang tải hình ảnh...",
"DE.Controllers.Main.loadImageTitleText": "Đang tải hình ảnh",
"DE.Controllers.Main.loadingDocumentTextText": "Đang tải tài liệu...",
"DE.Controllers.Main.loadingDocumentTitleText": "Đang tải tài liệu",
"DE.Controllers.Main.mailMergeLoadFileText": "Đang tải nguồn dữ liệu...",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Đang tải nguồn dữ liệu",
"DE.Controllers.Main.notcriticalErrorTitle": "Cảnh báo",
"DE.Controllers.Main.openErrorText": "Xảy ra lỗi khi mở file",
"DE.Controllers.Main.openTextText": "Đang mở tài liệu...",
"DE.Controllers.Main.openTitleText": "Đang mở tài liệu...",
"DE.Controllers.Main.printTextText": "Đang in Tài liệu...",
"DE.Controllers.Main.printTitleText": "Đang in Tài liệu",
"DE.Controllers.Main.saveErrorText": "Xảy ra lỗi khi lưu file",
"DE.Controllers.Main.savePreparingText": "Chuẩn bị lưu",
"DE.Controllers.Main.savePreparingTitle": "Chuẩn bị lưu. Vui lòng chờ...",
"DE.Controllers.Main.saveTextText": "Đang lưu tài liệu...",
"DE.Controllers.Main.saveTitleText": "Đang lưu tài liệu...",
"DE.Controllers.Main.sendMergeText": "Đang gửi Trộn...",
"DE.Controllers.Main.sendMergeTitle": "Đang gửi Trộn",
"DE.Controllers.Main.splitDividerErrorText": "Số hàng phải là ước của %1",
"DE.Controllers.Main.splitMaxColsErrorText": "Số cột phải nhỏ hơn %1",
"DE.Controllers.Main.splitMaxRowsErrorText": "Số hàng phải nhỏ hơn %1",
"DE.Controllers.Main.textAnonymous": "Nặc danh",
"DE.Controllers.Main.textBack": "Quay lại",
"DE.Controllers.Main.textBuyNow": "Truy cập trang web",
"DE.Controllers.Main.textCancel": "Hủy",
"DE.Controllers.Main.textClose": "Đóng",
"DE.Controllers.Main.textContactUs": "Phòng kinh doanh",
"DE.Controllers.Main.textDone": "Hoàn tất",
"DE.Controllers.Main.textLoadingDocument": "Đang tải tài liệu",
"DE.Controllers.Main.textNoLicenseTitle": "Phiên bản mã nguồn mở ONLYOFFICE",
"DE.Controllers.Main.textOK": "OK",
"DE.Controllers.Main.textPassword": "Mật khẩu",
"DE.Controllers.Main.textPreloader": "Đang tải...",
"DE.Controllers.Main.textTryUndoRedo": "Chức năng Hoàn tác/Làm lại bị vô hiệu hóa cho chế độ đồng chỉnh sửa Nhanh.",
"DE.Controllers.Main.textUsername": "Tên đăng nhập",
"DE.Controllers.Main.titleLicenseExp": "Giấy phép hết hạn",
"DE.Controllers.Main.titleServerVersion": "Đã cập nhật trình chỉnh sửa",
"DE.Controllers.Main.titleUpdateVersion": "Đã thay đổi phiên bản",
"DE.Controllers.Main.txtArt": "Văn bản của bạn ở đây",
"DE.Controllers.Main.txtDiagramTitle": "Tiêu đề biểu đồ",
"DE.Controllers.Main.txtEditingMode": "Đặt chế độ chỉnh sửa...",
"DE.Controllers.Main.txtSeries": "Chuỗi",
"DE.Controllers.Main.txtStyle_Heading_1": "Tiêu đề 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Tiêu đề 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Tiêu đề 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Tiêu đề 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Tiêu đề 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Tiêu đề 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Tiêu đề 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Tiêu đề 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Tiêu đề 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Trích dẫn mạnh mẽ",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Đoạn danh sách",
"DE.Controllers.Main.txtStyle_No_Spacing": "Không cách",
"DE.Controllers.Main.txtStyle_Normal": "Thường",
"DE.Controllers.Main.txtStyle_Quote": "Trích dẫn",
"DE.Controllers.Main.txtStyle_Subtitle": "Phụ đề",
"DE.Controllers.Main.txtStyle_Title": "Tiêu đề",
"DE.Controllers.Main.txtXAxis": "Trục X",
"DE.Controllers.Main.txtYAxis": "Trục Y",
"DE.Controllers.Main.unknownErrorText": "Lỗi không xác định.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Trình duyệt của bạn không được hỗ trợ.",
"DE.Controllers.Main.uploadImageExtMessage": "Định dạng hình ảnh không xác định.",
"DE.Controllers.Main.uploadImageFileCountMessage": "Không có hình ảnh được tải lên.",
"DE.Controllers.Main.uploadImageSizeMessage": "Đã vượt quá giới hạn kích thước tối đa của hình ảnh.",
"DE.Controllers.Main.uploadImageTextText": "Đang tải lên hình ảnh...",
"DE.Controllers.Main.uploadImageTitleText": "Đang tải lên hình ảnh",
"DE.Controllers.Main.warnLicenseExp": "Giấy phép của bạn đã hết hạn.<br>Vui lòng cập nhật giấy phép và làm mới trang.",
"DE.Controllers.Main.warnNoLicense": "Bạn đang sử dụng phiên bản nguồn mở của %1. Phiên bản có giới hạn các kết nối đồng thời với server tài liệu (20 kết nối cùng một lúc).<br>Nếu bạn cần thêm, hãy cân nhắc mua giấy phép thương mại.",
"DE.Controllers.Main.warnProcessRightsChange": "Bạn đã bị từ chối quyền chỉnh sửa file này.",
"DE.Controllers.Search.textNoTextFound": "Không tìm thấy nội dung",
"DE.Controllers.Search.textReplaceAll": "Thay thế tất cả",
"DE.Controllers.Settings.notcriticalErrorTitle": "Cảnh báo",
"DE.Controllers.Settings.txtLoading": "Đang tải...",
"DE.Controllers.Settings.unknownText": "Không xác định",
"DE.Controllers.Settings.warnDownloadAs": "Nếu bạn tiếp tục lưu ở định dạng này tất cả các tính năng trừ văn bản sẽ bị mất.<br>Bạn có chắc là muốn tiếp tục?",
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Bạn có những thay đổi chưa lưu trong tài liệu này. Nhấp vào 'Ở lại Trang này' để chờ tự động lưu tài liệu. Nhấp vào 'Rời Trang này' để bỏ tất cả các thay đổi chưa lưu.",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Bạn rời khỏi ứng dụng",
"DE.Controllers.Toolbar.leaveButtonText": "Rời trang này",
"DE.Controllers.Toolbar.stayButtonText": "Ở lại trang này",
"DE.Views.AddImage.textAddress": "Địa chỉ",
"DE.Views.AddImage.textBack": "Quay lại",
"DE.Views.AddImage.textFromLibrary": "Hình ảnh từ Thư viện",
"DE.Views.AddImage.textFromURL": "Hình ảnh từ URL",
"DE.Views.AddImage.textImageURL": "URL hình ảnh",
"DE.Views.AddImage.textInsertImage": "Chèn hình ảnh",
"DE.Views.AddImage.textLinkSettings": "Cài đặt Liên kết",
"DE.Views.AddOther.textAddLink": "Thêm liên kết",
"DE.Views.AddOther.textBack": "Quay lại",
"DE.Views.AddOther.textCenterBottom": "Chính giữa bên dưới",
"DE.Views.AddOther.textCenterTop": "Chính giữa bên trên",
"DE.Views.AddOther.textColumnBreak": "Ngắt cột",
"DE.Views.AddOther.textContPage": "Trang liên tục",
"DE.Views.AddOther.textCurrentPos": "Vị trí hiện tại",
"DE.Views.AddOther.textDisplay": "Hiển thị",
"DE.Views.AddOther.textEvenPage": "Trang chẵn",
"DE.Views.AddOther.textInsert": "Chèn",
"DE.Views.AddOther.textLeftBottom": "Dưới dùng bên trái",
"DE.Views.AddOther.textLeftTop": "Trên dùng bên trái",
"DE.Views.AddOther.textLink": "Liên kết",
"DE.Views.AddOther.textNextPage": "Trang tiếp theo",
"DE.Views.AddOther.textOddPage": "Trang lẻ",
"DE.Views.AddOther.textPageBreak": "Ngắt trang",
"DE.Views.AddOther.textPageNumber": "Số trang",
"DE.Views.AddOther.textPosition": "Vị trí",
"DE.Views.AddOther.textRightBottom": "Dưới cùng bên phải",
"DE.Views.AddOther.textRightTop": "Trên cùng bên phải",
"DE.Views.AddOther.textSectionBreak": "Ngắt phần",
"DE.Views.AddOther.textTip": "Screen Tip",
"DE.Views.EditChart.textAlign": "Căn chỉnh",
"DE.Views.EditChart.textBack": "Quay lại",
"DE.Views.EditChart.textBackward": "Di chuyển ngược lại",
"DE.Views.EditChart.textBehind": "Sau",
"DE.Views.EditChart.textBorder": "Đường viền",
"DE.Views.EditChart.textColor": "Màu sắc",
"DE.Views.EditChart.textDistanceText": "Khoảng cách từ văn bản",
"DE.Views.EditChart.textFill": "Đổ màu",
"DE.Views.EditChart.textForward": "Di chuyển tiến lên",
"DE.Views.EditChart.textInFront": "Ở trước",
"DE.Views.EditChart.textInline": "Cùng dòng",
"DE.Views.EditChart.textMoveText": "Di chuyển cùng văn bản",
"DE.Views.EditChart.textOverlap": "Cho phép chồng chéo",
"DE.Views.EditChart.textRemoveChart": "Xóa biểu đồ",
"DE.Views.EditChart.textReorder": "Đặt lại",
"DE.Views.EditChart.textSize": "Kích thước",
"DE.Views.EditChart.textSquare": "Vuông",
"DE.Views.EditChart.textStyle": "Kiểu",
"DE.Views.EditChart.textThrough": "Xuyên qua",
"DE.Views.EditChart.textTight": "Sát",
"DE.Views.EditChart.textToBackground": "Gửi tới Nền",
"DE.Views.EditChart.textToForeground": "Đưa lên Cận cảnh",
"DE.Views.EditChart.textTopBottom": "Trên cùng và dưới cùng",
"DE.Views.EditChart.textType": "Loại",
"DE.Views.EditChart.textWrap": "Ngắt dòng",
"DE.Views.EditHyperlink.textDisplay": "Hiển thị",
"DE.Views.EditHyperlink.textEdit": "Chỉnh sửa Liên kết",
"DE.Views.EditHyperlink.textLink": "Liên kết",
"DE.Views.EditHyperlink.textRemove": "Xóa liên kết",
"DE.Views.EditHyperlink.textTip": "Screen Tip",
"DE.Views.EditImage.textAddress": "Địa chỉ",
"DE.Views.EditImage.textAlign": "Căn chỉnh",
"DE.Views.EditImage.textBack": "Sau",
"DE.Views.EditImage.textBackward": "Di chuyển ngược lại",
"DE.Views.EditImage.textBehind": "Sau",
"DE.Views.EditImage.textDefault": "Kích thước mặc định",
"DE.Views.EditImage.textDistanceText": "Khoảng cách từ văn bản",
"DE.Views.EditImage.textForward": "Di chuyển tiến lên",
"DE.Views.EditImage.textFromLibrary": "Hình ảnh từ Thư viện",
"DE.Views.EditImage.textFromURL": "Hình ảnh từ URL",
"DE.Views.EditImage.textImageURL": "URL hình ảnh",
"DE.Views.EditImage.textInFront": "Ở trước",
"DE.Views.EditImage.textInline": "Cùng dòng",
"DE.Views.EditImage.textLinkSettings": "Cài đặt Liên kết",
"DE.Views.EditImage.textMoveText": "Di chuyển cùng văn bản",
"DE.Views.EditImage.textOverlap": "Cho phép chồng chéo",
"DE.Views.EditImage.textRemove": "Xóa hình ảnh",
"DE.Views.EditImage.textReorder": "Đặt lại",
"DE.Views.EditImage.textReplace": "Thay thế",
"DE.Views.EditImage.textReplaceImg": "Thay thế ảnh",
"DE.Views.EditImage.textSquare": "Vuông",
"DE.Views.EditImage.textThrough": "Xuyên qua",
"DE.Views.EditImage.textTight": "Sát",
"DE.Views.EditImage.textToBackground": "Gửi tới Nền",
"DE.Views.EditImage.textToForeground": "Đưa lên Cận cảnh",
"DE.Views.EditImage.textTopBottom": "Trên cùng và dưới cùng",
"DE.Views.EditImage.textWrap": "Ngắt dòng",
"DE.Views.EditParagraph.textAdvanced": "Nâng cao",
"DE.Views.EditParagraph.textAdvSettings": "Cài đặt nâng cao",
"DE.Views.EditParagraph.textAfter": "Sau",
"DE.Views.EditParagraph.textAuto": "Tự động",
"DE.Views.EditParagraph.textBack": "Quay lại",
"DE.Views.EditParagraph.textBackground": "Nền",
"DE.Views.EditParagraph.textBefore": "Trước",
"DE.Views.EditParagraph.textFromText": "Khoảng cách từ văn bản",
"DE.Views.EditParagraph.textKeepLines": "Giữ các dòng cùng nhau",
"DE.Views.EditParagraph.textKeepNext": "Giữ cho tiếp theo",
"DE.Views.EditParagraph.textOrphan": "Kiểm soát dòng lẻ đầu trang sau",
"DE.Views.EditParagraph.textPageBreak": "Ngắt trang đằng trước",
"DE.Views.EditParagraph.textPrgStyles": "Kiểu đoạn văn bản",
"DE.Views.EditParagraph.textSpaceBetween": "Khoảng cách giữa các đoạn",
"DE.Views.EditShape.textAlign": "Căn chỉnh",
"DE.Views.EditShape.textBack": "Quay lại",
"DE.Views.EditShape.textBackward": "Di chuyển ngược lại",
"DE.Views.EditShape.textBehind": "Sau",
"DE.Views.EditShape.textBorder": "Đường viền",
"DE.Views.EditShape.textColor": "Màu sắc",
"DE.Views.EditShape.textEffects": "Hiệu ứng",
"DE.Views.EditShape.textFill": "Đổ màu",
"DE.Views.EditShape.textForward": "Di chuyển tiến lên",
"DE.Views.EditShape.textFromText": "Khoảng cách từ văn bản",
"DE.Views.EditShape.textInFront": "Ở trước",
"DE.Views.EditShape.textInline": "Cùng dòng",
"DE.Views.EditShape.textOpacity": "Độ mờ",
"DE.Views.EditShape.textOverlap": "Cho phép chồng chéo",
"DE.Views.EditShape.textRemoveShape": "Xóa hình",
"DE.Views.EditShape.textReorder": "Đặt lại",
"DE.Views.EditShape.textReplace": "Thay thế",
"DE.Views.EditShape.textSize": "Kích thước",
"DE.Views.EditShape.textSquare": "Vuông",
"DE.Views.EditShape.textStyle": "Kiểu",
"DE.Views.EditShape.textThrough": "Xuyên qua",
"DE.Views.EditShape.textTight": "Sát",
"DE.Views.EditShape.textToBackground": "Gửi tới Nền",
"DE.Views.EditShape.textToForeground": "Đưa lên Cận cảnh",
"DE.Views.EditShape.textTopAndBottom": "Trên cùng và dưới cùng",
"DE.Views.EditShape.textWithText": "Di chuyển cùng văn bản",
"DE.Views.EditShape.textWrap": "Ngắt dòng",
"DE.Views.EditTable.textAlign": "Căn chỉnh",
"DE.Views.EditTable.textBack": "Quay lại",
"DE.Views.EditTable.textBandedColumn": "Cột gắn dải màu",
"DE.Views.EditTable.textBandedRow": "Hàng gắn dải màu",
"DE.Views.EditTable.textBorder": "Đường viền",
"DE.Views.EditTable.textCellMargins": "Lề của ô",
"DE.Views.EditTable.textColor": "Màu sắc",
"DE.Views.EditTable.textFill": "Đổ màu",
"DE.Views.EditTable.textFirstColumn": "Cột đầu tiên",
"DE.Views.EditTable.textFlow": "Flow",
"DE.Views.EditTable.textFromText": "Khoảng cách từ văn bản",
"DE.Views.EditTable.textHeaderRow": "Dòng Header",
"DE.Views.EditTable.textInline": "Cùng dòng",
"DE.Views.EditTable.textLastColumn": "Cột cuối cùng",
"DE.Views.EditTable.textOptions": "Tùy chọn",
"DE.Views.EditTable.textRemoveTable": "Xóa bảng",
"DE.Views.EditTable.textRepeatHeader": "Lặp lại như hàng Header",
"DE.Views.EditTable.textResizeFit": "Thay đổi kích thước để phù hợp với nội dung",
"DE.Views.EditTable.textSize": "Kích thước",
"DE.Views.EditTable.textStyle": "Kiểu",
"DE.Views.EditTable.textStyleOptions": "Tùy chọn kiểu",
"DE.Views.EditTable.textTableOptions": "Tùy chọn bảng",
"DE.Views.EditTable.textTotalRow": "Tổng số hàng",
"DE.Views.EditTable.textWithText": "Di chuyển cùng văn bản",
"DE.Views.EditTable.textWrap": "Ngắt dòng",
"DE.Views.EditText.textAdditional": "Bổ sung",
"DE.Views.EditText.textAdditionalFormat": "Định dạng bổ sung",
"DE.Views.EditText.textAllCaps": "Tất cả Drop cap",
"DE.Views.EditText.textAutomatic": "Tự động",
"DE.Views.EditText.textBack": "Quay lại",
"DE.Views.EditText.textBullets": "Dấu đầu dòng",
"DE.Views.EditText.textDblStrikethrough": "Gạch đôi giữa chữ",
"DE.Views.EditText.textDblSuperscript": "Chỉ số trên",
"DE.Views.EditText.textFontColor": "Màu chữ",
"DE.Views.EditText.textFontColors": "Màu chữ",
"DE.Views.EditText.textFonts": "Phông chữ",
"DE.Views.EditText.textHighlightColor": "Màu tô sáng",
"DE.Views.EditText.textHighlightColors": "Màu tô sáng",
"DE.Views.EditText.textLetterSpacing": "Khoảng cách chữ cái",
"DE.Views.EditText.textLineSpacing": "Khoảng cách dòng",
"DE.Views.EditText.textNone": "Không",
"DE.Views.EditText.textNumbers": "Số",
"DE.Views.EditText.textSize": "Kích thước",
"DE.Views.EditText.textSmallCaps": "Drop cap nhỏ",
"DE.Views.EditText.textStrikethrough": "Gạch giữa chữ",
"DE.Views.EditText.textSubscript": "Chỉ số dưới",
"DE.Views.Search.textCase": "Phân biệt chữ hoa chữ thường",
"DE.Views.Search.textDone": "Hoàn tất",
"DE.Views.Search.textFind": "Tìm",
"DE.Views.Search.textFindAndReplace": "Tìm và Thay thế",
"DE.Views.Search.textHighlight": "Tô sáng kết quả",
"DE.Views.Search.textReplace": "Thay thế",
"DE.Views.Search.textSearch": "Tìm kiếm",
"DE.Views.Settings.textAbout": "Giới thiệu",
"DE.Views.Settings.textAddress": "địa chỉ",
"DE.Views.Settings.textAuthor": "Tác giả",
"DE.Views.Settings.textBack": "Quay lại",
"DE.Views.Settings.textCreateDate": "Ngày tạo",
"DE.Views.Settings.textCustom": "Tuỳ chỉnh",
"DE.Views.Settings.textCustomSize": "Tùy chỉnh kích thước",
"DE.Views.Settings.textDocInfo": "Thông tin Tài liệu",
"DE.Views.Settings.textDocTitle": "Tiêu đề tài liệu",
"DE.Views.Settings.textDocumentFormats": "Định dạng Tài liệu",
"DE.Views.Settings.textDocumentSettings": "Cài đặt tài liệu",
"DE.Views.Settings.textDone": "Hoàn tất",
"DE.Views.Settings.textDownload": "Tải về",
"DE.Views.Settings.textDownloadAs": "Tải về dưới dạng...",
"DE.Views.Settings.textEditDoc": "Chỉnh sửa Tài liệu",
"DE.Views.Settings.textEmail": "email",
"DE.Views.Settings.textFind": "Tìm",
"DE.Views.Settings.textFindAndReplace": "Tìm và Thay thế",
"DE.Views.Settings.textFormat": "Định dạng",
"DE.Views.Settings.textHelp": "Trợ giúp",
"DE.Views.Settings.textLandscape": "Nằm ngang",
"DE.Views.Settings.textLoading": "Đang tải...",
"DE.Views.Settings.textOrientation": "Hướng",
"DE.Views.Settings.textPages": "Trang",
"DE.Views.Settings.textParagraphs": "Đoạn văn bản",
"DE.Views.Settings.textPortrait": "Thẳng đứng",
"DE.Views.Settings.textPoweredBy": "Được hỗ trợ bởi",
"DE.Views.Settings.textReader": "Chế độ đọc",
"DE.Views.Settings.textSettings": "Cài đặt",
"DE.Views.Settings.textSpaces": "Khoảng cách",
"DE.Views.Settings.textStatistic": "Thống kê",
"DE.Views.Settings.textSymbols": "Biểu tượng",
"DE.Views.Settings.textTel": "ĐT",
"DE.Views.Settings.textVersion": "Phiên bản",
"DE.Views.Settings.textWords": "Từ",
"DE.Views.Settings.unknownText": "Không xác định",
"DE.Views.Toolbar.textBack": "Quay lại"
"About": {
"textAbout": "About",
"textAddress": "Address",
"textBack": "Back",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Add": {
"notcriticalErrorTitle": "Warning",
"textAddLink": "Add link",
"textAddress": "Address",
"textBack": "Back",
"textBelowText": "Below text",
"textBottomOfPage": "Bottom of page",
"textBreak": "Break",
"textCancel": "Cancel",
"textCenterBottom": "Center Bottom",
"textCenterTop": "Center Top",
"textColumnBreak": "Column Break",
"textColumns": "Columns",
"textComment": "Comment",
"textContinuousPage": "Continuous Page",
"textCurrentPosition": "Current Position",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify image URL.",
"textEvenPage": "Even Page",
"textFootnote": "Footnote",
"textFormat": "Format",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertFootnote": "Insert Footnote",
"textInsertImage": "Insert Image",
"textLeftBottom": "Left Bottom",
"textLeftTop": "Left Top",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLocation": "Location",
"textNextPage": "Next Page",
"textOddPage": "Odd Page",
"textOther": "Other",
"textPageBreak": "Page Break",
"textPageNumber": "Page Number",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPosition": "Position",
"textRightBottom": "Right Bottom",
"textRightTop": "Right Top",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textSectionBreak": "Section Break",
"textShape": "Shape",
"textStartAt": "Start At",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Warning",
"textAccept": "Accept",
"textAcceptAllChanges": "Accept all changes",
"textAddComment": "Add comment",
"textAddReply": "Add reply",
"textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"textAllChangesEditing": "All changes (Editing)",
"textAllChangesRejectedPreview": "All changes rejected (Preview)",
"textAtLeast": "at least",
"textAuto": "auto",
"textBack": "Back",
"textBaseline": "Baseline",
"textBold": "Bold",
"textBreakBefore": "Page break before",
"textCancel": "Cancel",
"textCaps": "All caps",
"textCenter": "Align center",
"textChart": "Chart",
"textCollaboration": "Collaboration",
"textColor": "Font color",
"textComments": "Comments",
"textContextual": "Don't add intervals between paragraphs of the same style",
"textDelete": "Delete",
"textDeleteComment": "Delete Comment",
"textDeleted": "Deleted:",
"textDeleteReply": "Delete Reply",
"textDisplayMode": "Display Mode",
"textDone": "Done",
"textDStrikeout": "Double strikeout",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textEquation": "Equation",
"textExact": "exactly",
"textFinal": "Final",
"textFirstLine": "First line",
"textFormatted": "Formatted",
"textHighlight": "Highlight color",
"textImage": "Image",
"textIndentLeft": "Indent left",
"textIndentRight": "Indent right",
"textInserted": "Inserted:",
"textItalic": "Italic",
"textJustify": "Align justified ",
"textKeepLines": "Keep lines together",
"textKeepNext": "Keep with next",
"textLeft": "Align left",
"textLineSpacing": "Line Spacing: ",
"textMarkup": "Markup",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textMultiple": "multiple",
"textNoBreakBefore": "No page break before",
"textNoChanges": "There are no changes.",
"textNoComments": "This document doesn't contain comments",
"textNoContextual": "Add interval between paragraphs of the same style",
"textNoKeepLines": "Don't keep lines together",
"textNoKeepNext": "Don't keep with next",
"textNot": "Not ",
"textNoWidow": "No widow control",
"textNum": "Change numbering",
"textOriginal": "Original",
"textParaDeleted": "Paragraph Deleted",
"textParaFormatted": "Paragraph Formatted",
"textParaInserted": "Paragraph Inserted",
"textParaMoveFromDown": "Moved Down:",
"textParaMoveFromUp": "Moved Up:",
"textParaMoveTo": "Moved:",
"textPosition": "Position",
"textReject": "Reject",
"textRejectAllChanges": "Reject All Changes",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textReview": "Review",
"textReviewChange": "Review Change",
"textRight": "Align right",
"textShape": "Shape",
"textShd": "Background color",
"textSmallCaps": "Small caps",
"textSpacing": "Spacing",
"textSpacingAfter": "Spacing after",
"textSpacingBefore": "Spacing before",
"textStrikeout": "Strikeout",
"textSubScript": "Subscript",
"textSuperScript": "Superscript",
"textTableChanged": "Table Settings Changed",
"textTableRowsAdd": "Table Rows Added",
"textTableRowsDel": "Table Rows Deleted",
"textTabs": "Change tabs",
"textTrackChanges": "Track Changes",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUnderline": "Underline",
"textUsers": "Users",
"textWidow": "Widow control"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuAddComment": "Add comment",
"menuAddLink": "Add link",
"menuCancel": "Cancel",
"menuDelete": "Delete",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuReview": "Review",
"menuReviewChange": "Review Change",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Edit": {
"notcriticalErrorTitle": "Warning",
"textActualSize": "Actual size",
"textAddCustomColor": "Add custom color",
"textAdditional": "Additional",
"textAdditionalFormatting": "Additional formatting",
"textAddress": "Address",
"textAdvanced": "Advanced",
"textAdvancedSettings": "Advanced settings",
"textAfter": "After",
"textAlign": "Align",
"textAllCaps": "All caps",
"textAllowOverlap": "Allow overlap",
"textAuto": "Auto",
"textAutomatic": "Automatic",
"textBack": "Back",
"textBackground": "Background",
"textBandedColumn": "Banded column",
"textBandedRow": "Banded row",
"textBefore": "Before",
"textBehind": "Behind",
"textBorder": "Border",
"textBringToForeground": "Bring to foreground",
"textBullets": "Bullets",
"textBulletsAndNumbers": "Bullets & Numbers",
"textCellMargins": "Cell Margins",
"textChart": "Chart",
"textClose": "Close",
"textColor": "Color",
"textContinueFromPreviousSection": "Continue from previous section",
"textCustomColor": "Custom Color",
"textDifferentFirstPage": "Different first page",
"textDifferentOddAndEvenPages": "Different odd and even pages",
"textDisplay": "Display",
"textDistanceFromText": "Distance from text",
"textDoubleStrikethrough": "Double Strikethrough",
"textEditLink": "Edit Link",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify image URL.",
"textFill": "Fill",
"textFirstColumn": "First Column",
"textFirstLine": "FirstLine",
"textFlow": "Flow",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFooter": "Footer",
"textHeader": "Header",
"textHeaderRow": "Header Row",
"textHighlightColor": "Highlight Color",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textInFront": "In Front",
"textInline": "Inline",
"textKeepLinesTogether": "Keep Lines Together",
"textKeepWithNext": "Keep with Next",
"textLastColumn": "Last Column",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkToPrevious": "Link to Previous",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textMoveWithText": "Move with Text",
"textNone": "None",
"textNoStyles": "No styles for this type of charts.",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textOpacity": "Opacity",
"textOptions": "Options",
"textOrphanControl": "Orphan Control",
"textPageBreakBefore": "Page Break Before",
"textPageNumbering": "Page Numbering",
"textParagraph": "Paragraph",
"textParagraphStyles": "Paragraph Styles",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPt": "pt",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",
"textResizeToFitContent": "Resize to Fit Content",
"textScreenTip": "Screen Tip",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textSettings": "Settings",
"textShape": "Shape",
"textSize": "Size",
"textSmallCaps": "Small Caps",
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
"textSquare": "Square",
"textStartAt": "Start at",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textTableOptions": "Table Options",
"textText": "Text",
"textThrough": "Through",
"textTight": "Tight",
"textTopAndBottom": "Top and Bottom",
"textTotalRow": "Total Row",
"textType": "Type",
"textWrap": "Wrap",
"textNumbers": "Numbers"
},
"Error": {
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.<br>When you click OK, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorMailMergeLoadFile": "Loading failed",
"errorMailMergeSaveFile": "Merge failed.",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"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.",
"errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"openErrorText": "An error has occurred while opening the file",
"saveErrorText": "An error has occurred while saving the file",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadMergeText": "Downloading...",
"downloadMergeTitle": "Downloading",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"mailMergeLoadFileText": "Loading Data Source...",
"mailMergeLoadFileTitle": "Loading Data Source",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"sendMergeText": "Sending Merge...",
"sendMergeTitle": "Sending Merge",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Main": {
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"SDK": {
" -Section ": " -Section ",
"above": "above",
"below": "below",
"Caption": "Caption",
"Choose an item": "Choose an item",
"Click to load image": "Click to load image",
"Current Document": "Current Document",
"Diagram Title": "Chart Title",
"endnote text": "Endnote Text",
"Enter a date": "Enter a date",
"Error! Bookmark not defined": "Error! Bookmark not defined.",
"Error! Main Document Only": "Error! Main Document Only.",
"Error! No text of specified style in document": "Error! No text of specified style in document.",
"Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"Even Page ": "Even Page ",
"First Page ": "First Page ",
"Footer": "Footer",
"footnote text": "Footnote Text",
"Header": "Header",
"Heading 1": "Heading 1",
"Heading 2": "Heading 2",
"Heading 3": "Heading 3",
"Heading 4": "Heading 4",
"Heading 5": "Heading 5",
"Heading 6": "Heading 6",
"Heading 7": "Heading 7",
"Heading 8": "Heading 8",
"Heading 9": "Heading 9",
"Hyperlink": "Hyperlink",
"Index Too Large": "Index Too Large",
"Intense Quote": "Intense Quote",
"Is Not In Table": "Is Not In Table",
"List Paragraph": "List Paragraph",
"Missing Argument": "Missing Argument",
"Missing Operator": "Missing Operator",
"No Spacing": "No Spacing",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"No table of figures entries found": "No table of figures entries found.",
"None": "None",
"Normal": "Normal",
"Number Too Large To Format": "Number Too Large To Format",
"Odd Page ": "Odd Page ",
"Quote": "Quote",
"Same as Previous": "Same as Previous",
"Series": "Series",
"Subtitle": "Subtitle",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"Title": "Title",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here",
"Zero Divide": "Zero Divide"
},
"textAnonymous": "Anonymous",
"textBuyNow": "Visit website",
"textClose": "Close",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit this file."
},
"Settings": {
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"advTxtOptions": "Choose TXT Options",
"closeButtonText": "Close File",
"notcriticalErrorTitle": "Warning",
"textAbout": "About",
"textApplication": "Application",
"textApplicationSettings": "Application settings",
"textAuthor": "Author",
"textBack": "Back",
"textBottom": "Bottom",
"textCancel": "Cancel",
"textCaseSensitive": "Case Sensitive",
"textCentimeter": "Centimeter",
"textCollaboration": "Collaboration",
"textColorSchemes": "Color Schemes",
"textComment": "Comment",
"textComments": "Comments",
"textCommentsDisplay": "Comments Display",
"textCreated": "Created",
"textCustomSize": "Custom Size",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDocumentInfo": "Document Info",
"textDocumentSettings": "Document Settings",
"textDocumentTitle": "Document Title",
"textDone": "Done",
"textDownload": "Download",
"textDownloadAs": "Download As",
"textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?",
"textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textEncoding": "Encoding",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textFormat": "Format",
"textHelp": "Help",
"textHiddenTableBorders": "Hidden Table Borders",
"textHighlightResults": "Highlight Results",
"textInch": "Inch",
"textLandscape": "Landscape",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLeft": "Left",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textMargins": "Margins",
"textMarginsH": "Top and bottom margins are too high for a given page height",
"textMarginsW": "Left and right margins are too wide for a given page width",
"textNoCharacters": "Nonprinting Characters",
"textNoTextFound": "Text not found",
"textOpenFile": "Enter a password to open the file",
"textOrientation": "Orientation",
"textOwner": "Owner",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Print",
"textReaderMode": "Reader Mode",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textResolvedComments": "Resolved Comments",
"textRight": "Right",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
"textTitle": "Title",
"textTop": "Top",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this Page",
"stayButtonText": "Stay on this page"
}
}

View file

@ -293,7 +293,9 @@
"textTopAndBottom": "上下",
"textTotalRow": "总行",
"textType": "类型",
"textWrap": "包裹"
"textWrap": "包裹",
"textBullets": "Bullets",
"textNumbers": "Numbers"
},
"Error": {
"convertationTimeoutText": "转换超时",
@ -402,7 +404,43 @@
"Title": "标题",
"X Axis": "X 轴 XAS",
"Y Axis": "Y 轴",
"Your text here": "你的文本在此"
"Your text here": "你的文本在此",
" -Section ": " -Section ",
"above": "above",
"below": "below",
"Caption": "Caption",
"Choose an item": "Choose an item",
"Click to load image": "Click to load image",
"Current Document": "Current Document",
"endnote text": "Endnote Text",
"Enter a date": "Enter a date",
"Error! Bookmark not defined": "Error! Bookmark not defined.",
"Error! Main Document Only": "Error! Main Document Only.",
"Error! No text of specified style in document": "Error! No text of specified style in document.",
"Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"Even Page ": "Even Page ",
"First Page ": "First Page ",
"Hyperlink": "Hyperlink",
"Index Too Large": "Index Too Large",
"Is Not In Table": "Is Not In Table",
"Missing Argument": "Missing Argument",
"Missing Operator": "Missing Operator",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"No table of figures entries found": "No table of figures entries found.",
"None": "None",
"Number Too Large To Format": "Number Too Large To Format",
"Odd Page ": "Odd Page ",
"Same as Previous": "Same as Previous",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"Zero Divide": "Zero Divide"
},
"textAnonymous": "匿名",
"textBuyNow": "访问网站",
@ -506,7 +544,29 @@
"textUnitOfMeasurement": "计量单位",
"textUploaded": "已上传",
"txtIncorrectPwd": "密码有误",
"txtProtected": "输入密码并打开文件后,当前密码将会被重设。"
"txtProtected": "输入密码并打开文件后,当前密码将会被重设。",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
},
"Toolbar": {
"dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。",

View file

@ -36,7 +36,7 @@ Framework7.use(Framework7React)
ReactDOM.render(
<I18nextProvider i18n={i18n}>
<Provider {...stores}>
<Suspense fallback="loading">
<Suspense fallback="">
<App />
</Suspense>
</Provider>

View file

@ -16,7 +16,8 @@ import EditorUIController from '../lib/patch';
canCoAuthoring: stores.storeAppOptions.canCoAuthoring,
canReview: stores.storeAppOptions.canReview,
users: stores.users,
isDisconnected: stores.users.isDisconnected
isDisconnected: stores.users.isDisconnected,
displayMode: stores.storeReview.displayMode
}))
class ContextMenu extends ContextMenuController {
constructor(props) {

View file

@ -39,8 +39,8 @@ class ApplicationSettingsController extends Component {
this.props.storeAppOptions.changeCanViewComments(value);
if (!value) {
api.asc_hideComments();
this.switchDisplayResolved(value);
api.asc_hideComments();
LocalStorage.setBool("de-settings-resolvedcomment", false);
} else {
const resolved = LocalStorage.getBool("de-settings-resolvedcomment");

View file

@ -13,7 +13,7 @@ import {storeLinkSettings} from './linkSettings';
import {storeApplicationSettings} from './applicationSettings';
import {storeAppOptions} from "./appOptions";
import {storePalette} from "./palette";
import {storeReview} from "./review";
import {storeReview} from '../../../../common/mobile/lib/store/review';
import {storeComments} from "../../../../common/mobile/lib/store/comments";
import {storeToolbarSettings} from "./toolbar";

View file

@ -202,7 +202,7 @@ class AddView extends Component {
const show_popover = this.props.usePopover;
return (
show_popover ?
<Popover id="add-popover" className="popover__titled" onPopoverClosed={() => this.props.onclosed()}>
<Popover id="add-popover" className="popover__titled" closeByOutsideClick={false} onPopoverClosed={() => this.props.onclosed()}>
<AddTabs inPopover={true} onOptionClick={this.onoptionclick} style={{height: '410px'}} showPanels={this.props.showPanels} />
</Popover> :
<Popup className="add-popup" onPopupClosed={() => this.props.onclosed()}>

View file

@ -24,16 +24,20 @@ const PageLink = props => {
type="text"
placeholder={_t.textLink}
value={stateLink}
onChange={(event) => {setLink(event.target.value);
if(stateAutoUpdate) setDisplay(event.target.value); }}
onChange={(event) => {
setLink(event.target.value);
if((!stateDisplay || stateDisplay === stateLink) && stateAutoUpdate) setDisplay(event.target.value);
}}
></ListInput>
<ListInput
label={_t.textDisplay}
type="text"
placeholder={_t.textDisplay}
value={stateDisplay}
onChange={(event) => {setDisplay(event.target.value);
setAutoUpdate(event.target.value == ''); }}
onChange={(event) => {
setDisplay(event.target.value);
setAutoUpdate(event.target.value == '');
}}
></ListInput>
<ListInput
label={_t.textScreenTip}

View file

@ -6,6 +6,7 @@ import { useTranslation } from "react-i18next";
const PageApplicationSettings = props => {
const { t } = useTranslation();
const _t = t("Settings", { returnObjects: true });
const displayMode = props.storeReview.displayMode;
const store = props.storeApplicationSettings;
const unitMeasurement = store.unitMeasurement;
const isSpellChecking = store.isSpellChecking;
@ -49,7 +50,7 @@ const PageApplicationSettings = props => {
</ListItem>
</List>
<List>
<ListItem title={_t.textNoCharacters}>{/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */}
<ListItem title={_t.textNoCharacters} disabled={displayMode !== 'markup'}>{/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */}
<Toggle checked={isNonprintingCharacters}
onChange={() => {
store.changeNoCharacters(!isNonprintingCharacters);
@ -57,7 +58,7 @@ const PageApplicationSettings = props => {
}}
/>
</ListItem>
<ListItem title={_t.textHiddenTableBorders}>{/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */}
<ListItem title={_t.textHiddenTableBorders} disabled={displayMode !== 'markup'}>{/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */}
<Toggle checked={isHiddenTableBorders}
onChange={() => {
store.changeShowTableEmptyLine(!isHiddenTableBorders);
@ -124,7 +125,7 @@ const PageMacrosSettings = props => {
);
};
const ApplicationSettings = inject("storeApplicationSettings", "storeAppOptions")(observer(PageApplicationSettings));
const ApplicationSettings = inject("storeApplicationSettings", "storeAppOptions", "storeReview")(observer(PageApplicationSettings));
const MacrosSettings = inject("storeApplicationSettings")(observer(PageMacrosSettings));
export {ApplicationSettings, MacrosSettings};

View file

@ -57,9 +57,11 @@ const routes = [
];
const SettingsList = inject("storeAppOptions")(observer(props => {
const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => {
const { t } = useTranslation();
const _t = t('Settings', {returnObjects: true});
const storeReview = props.storeReview;
const displayMode = storeReview.displayMode;
const navbar = <Navbar title={_t.textSettings}>
{!props.inPopover && <NavRight><Link popupClose=".settings-popup">{_t.textDone}</Link></NavRight>}
</Navbar>;
@ -139,7 +141,8 @@ const SettingsList = inject("storeAppOptions")(observer(props => {
</ListItem>
}
{_isEdit &&
<ListItem link="#" title={_t.textDocumentSettings} onClick={onoptionclick.bind(this, '/document-settings/')}>
<ListItem link="#" title={_t.textDocumentSettings} disabled={displayMode !== 'markup'}
onClick={onoptionclick.bind(this, '/document-settings/')}>
<Icon slot="media" icon="icon-doc-setup"></Icon>
</ListItem>
}

View file

@ -50,7 +50,7 @@
.loadmask > .brendpanel .loading-logo > img {
display: inline-block;
max-width: 100px;
max-width: 124px;
max-height: 20px;
margin-top: 2px;
opacity: 0;

View file

@ -48,7 +48,7 @@
.loadmask > .brendpanel .loading-logo > img {
display: inline-block;
max-width: 100px;
max-width: 124px;
max-height: 20px;
margin-top: 2px;
opacity: 0;

View file

@ -13,9 +13,9 @@
"PE.ApplicationController.errorDefaultMessage": "Error code: %1",
"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.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
"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.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
"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.textAnonymous": "Anonymous",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
"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.textAnonymous": "Anonimo",
"PE.ApplicationController.textGuest": "Ospite",
"PE.ApplicationController.textLoadingDocument": "Caricamento della presentazione",
"PE.ApplicationController.textOf": "di",
"PE.ApplicationController.txtClose": "Chiudi",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。",
"PE.ApplicationController.notcriticalErrorTitle": "警告",
"PE.ApplicationController.scriptLoadError": "接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。",
"PE.ApplicationController.textAnonymous": "匿名",
"PE.ApplicationController.textGuest": "ゲスト",
"PE.ApplicationController.textLoadingDocument": "プレゼンテーションを読み込み中...",
"PE.ApplicationController.textOf": "から",
"PE.ApplicationController.txtClose": "閉じる",
@ -25,6 +27,7 @@
"PE.ApplicationController.waitText": "少々お待ちください...",
"PE.ApplicationView.txtDownload": "ダウンロード",
"PE.ApplicationView.txtEmbed": "埋め込み",
"PE.ApplicationView.txtFileLocation": "ファイルを開く",
"PE.ApplicationView.txtFullScreen": "全画面表示",
"PE.ApplicationView.txtPrint": "印刷する",
"PE.ApplicationView.txtShare": "シェア"

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ",
"PE.ApplicationController.notcriticalErrorTitle": "Varning",
"PE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.",
"PE.ApplicationController.textAnonymous": "Anonym",
"PE.ApplicationController.textGuest": "Gäst",
"PE.ApplicationController.textLoadingDocument": "Laddar prentationen",
"PE.ApplicationController.textOf": "av",
"PE.ApplicationController.txtClose": "Stäng",
@ -25,6 +27,7 @@
"PE.ApplicationController.waitText": "Var snäll och vänta...",
"PE.ApplicationView.txtDownload": "Ladda ner",
"PE.ApplicationView.txtEmbed": "Inbädda",
"PE.ApplicationView.txtFileLocation": "Gå till filens plats",
"PE.ApplicationView.txtFullScreen": "Fullskärm",
"PE.ApplicationView.txtPrint": "Skriva ut",
"PE.ApplicationView.txtShare": "Dela"

View file

@ -730,7 +730,7 @@ define([
this.loadMask.setTitle(title);
if (!this.isShowOpenDialog)
this.loadMask.show();
this.loadMask.show(action.id===Asc.c_oAscAsyncAction['Open']);
} else {
this.getApplication().getController('Statusbar').setStatusCaption(text, force);
}

View file

@ -88,8 +88,8 @@ define([
render: function () {
Common.UI.Window.prototype.render.call(this);
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
{ value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value);

View file

@ -122,8 +122,8 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template',
style : 'width: 100%;'
});
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
{ value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value);

View file

@ -178,6 +178,13 @@
"Common.Views.Header.tipViewUsers": "Consulteu els usuaris i gestioneu els drets daccés als documents",
"Common.Views.Header.txtAccessRights": "Canviar els drets daccés",
"Common.Views.Header.txtRename": "Renombrar",
"Common.Views.History.textCloseHistory": "Tancar Historial",
"Common.Views.History.textHide": "Plegar",
"Common.Views.History.textHideAll": "Amagar els canvis detallats",
"Common.Views.History.textRestore": "Restaurar",
"Common.Views.History.textShow": "Desplegar",
"Common.Views.History.textShowAll": "Mostrar els canvis detallats",
"Common.Views.History.textVer": "ver.",
"Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL d'imatge:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"",
@ -601,7 +608,7 @@
"PE.Controllers.Main.txtShape_mathNotEqual": "No igual",
"PE.Controllers.Main.txtShape_mathPlus": "Més",
"PE.Controllers.Main.txtShape_moon": "Lluna",
"PE.Controllers.Main.txtShape_noSmoking": "\"No\" Símbol",
"PE.Controllers.Main.txtShape_noSmoking": "Símbol \"No\"",
"PE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la dreta encaixada",
"PE.Controllers.Main.txtShape_octagon": "Octagon",
"PE.Controllers.Main.txtShape_parallelogram": "Paral·lelograma",

View file

@ -176,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
"Common.Views.Header.txtRename": "Umbenennen",
"Common.Views.History.textCloseHistory": "Verlauf schließen",
"Common.Views.History.textHide": "Reduzieren",
"Common.Views.History.textHideAll": "Wesentliche Änderungen verbergen",
"Common.Views.History.textRestore": "Wiederherstellen",
"Common.Views.History.textShow": "Erweitern",
"Common.Views.History.textShowAll": "Wesentliche Änderungen anzeigen",
"Common.Views.History.textVer": "Vers.",
"Common.Views.ImageFromUrlDialog.textUrl": "Bild-URL einfügen:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dieses Feld ist erforderlich",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Dieses Feld muss eine URL im Format \"http://www.example.com\" enthalten",

View file

@ -176,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
"Common.Views.Header.txtRename": "Renombrar",
"Common.Views.History.textCloseHistory": "Cerrar historial",
"Common.Views.History.textHide": "Contraer",
"Common.Views.History.textHideAll": "Ocultar cambios detallados",
"Common.Views.History.textRestore": "Restaurar",
"Common.Views.History.textShow": "Expandir",
"Common.Views.History.textShowAll": "Mostrar cambios detallados",
"Common.Views.History.textVer": "ver.",
"Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL de imagen:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo es obligatorio",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo debe ser URL en el formato \"http://www.example.com\"",

View file

@ -1998,7 +1998,7 @@
"PE.Views.Toolbar.txtScheme22": "New Office",
"PE.Views.Toolbar.txtScheme3": "Apex",
"PE.Views.Toolbar.txtScheme4": "Proportions",
"PE.Views.Toolbar.txtScheme5": "Civique",
"PE.Views.Toolbar.txtScheme5": "Civil",
"PE.Views.Toolbar.txtScheme6": "Rotonde",
"PE.Views.Toolbar.txtScheme7": "Capitaux",
"PE.Views.Toolbar.txtScheme8": "Flux",

View file

@ -176,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
"Common.Views.Header.txtRename": "Rinomina",
"Common.Views.History.textCloseHistory": "Chiudere cronologia",
"Common.Views.History.textHide": "Riduci",
"Common.Views.History.textHideAll": "Nascondi le modifiche dettagliate",
"Common.Views.History.textRestore": "Ripristina",
"Common.Views.History.textShow": "Espandi",
"Common.Views.History.textShowAll": "Mostra modifiche dettagliate",
"Common.Views.History.textVer": "ver.",
"Common.Views.ImageFromUrlDialog.textUrl": "Incolla URL immagine:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Campo obbligatorio",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"",
@ -1988,6 +1995,7 @@
"PE.Views.Toolbar.txtScheme2": "Scala di grigi",
"PE.Views.Toolbar.txtScheme20": "Tramonto",
"PE.Views.Toolbar.txtScheme21": "Verve",
"PE.Views.Toolbar.txtScheme22": "Nuovo ufficio",
"PE.Views.Toolbar.txtScheme3": "Apice",
"PE.Views.Toolbar.txtScheme4": "Aspetto",
"PE.Views.Toolbar.txtScheme5": "Città",

View file

@ -47,6 +47,7 @@
"Common.define.chartData.textStock": "株価チャート",
"Common.define.chartData.textSurface": "表面",
"Common.Translation.warnFileLocked": "文書が別のアプリで使用されています。編集を続けて、コピーとして保存できます。",
"Common.Translation.warnFileLockedBtnEdit": "コピーを作成",
"Common.UI.ColorButton.textAutoColor": "自動",
"Common.UI.ColorButton.textNewColor": "ユーザー設定の色の追加",
"Common.UI.ComboBorderSize.txtNoBorders": "枠線なし",
@ -71,7 +72,7 @@
"Common.UI.SynchronizeTip.textDontShow": "今後このメッセージを表示しない",
"Common.UI.SynchronizeTip.textSynchronize": "ドキュメントは他のユーザーによって変更されました。<br>変更を保存するためにここでクリックし、アップデートを再ロードしてください。",
"Common.UI.ThemeColorPalette.textStandartColors": "標準の色",
"Common.UI.ThemeColorPalette.textThemeColors": "テーマの色",
"Common.UI.ThemeColorPalette.textThemeColors": "テーマカラー",
"Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)",
"Common.UI.Themes.txtThemeDark": "暗い",
"Common.UI.Themes.txtThemeLight": "明るい",
@ -96,10 +97,12 @@
"Common.Views.About.txtVersion": "バージョン",
"Common.Views.AutoCorrectDialog.textAdd": "追加する",
"Common.Views.AutoCorrectDialog.textApplyText": "入力時に適用する",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "オートコレクト",
"Common.Views.AutoCorrectDialog.textAutoFormat": "入力時にオートフォーマット",
"Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き",
"Common.Views.AutoCorrectDialog.textBy": "幅",
"Common.Views.AutoCorrectDialog.textDelete": "削除する",
"Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする",
"Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)の代わりにダッシュ(—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "数式オートコレクト",
"Common.Views.AutoCorrectDialog.textNumbered": "自動番号付きリスト",
@ -170,6 +173,12 @@
"Common.Views.Header.tipViewUsers": "ユーザーの表示と文書のアクセス権の管理",
"Common.Views.Header.txtAccessRights": "アクセス許可を変更する",
"Common.Views.Header.txtRename": "名前の変更",
"Common.Views.History.textCloseHistory": "履歴を閉じる",
"Common.Views.History.textHideAll": "変更の詳細を隠す",
"Common.Views.History.textRestore": "復元する",
"Common.Views.History.textShow": "拡張機能",
"Common.Views.History.textShowAll": "変更の詳細を表示する",
"Common.Views.History.textVer": "ver.",
"Common.Views.ImageFromUrlDialog.textUrl": "画像のURLの貼り付け",
"Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。",
@ -236,6 +245,8 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "共同編集モードを設定する",
"Common.Views.ReviewChanges.tipCommentRem": "コメントを削除する",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "現在のコメントを削除する",
"Common.Views.ReviewChanges.tipCommentResolve": "コメントを承諾する",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "現在のコメントを承諾する",
"Common.Views.ReviewChanges.tipHistory": "バージョン履歴を表示する",
"Common.Views.ReviewChanges.tipRejectCurrent": "現在の変更を元に戻す",
"Common.Views.ReviewChanges.tipReview": "変更履歴",
@ -255,6 +266,11 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "私のコメントを削除する",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "私の現在のコメントを削除する",
"Common.Views.ReviewChanges.txtCommentRemove": "削除する",
"Common.Views.ReviewChanges.txtCommentResolve": "承諾する",
"Common.Views.ReviewChanges.txtCommentResolveAll": "すべてのコメントを承諾する。",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "現在のコメントを承諾する",
"Common.Views.ReviewChanges.txtCommentResolveMy": "自分のコメントを承諾する。",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "現在のコメントを承諾する",
"Common.Views.ReviewChanges.txtDocLang": "言語",
"Common.Views.ReviewChanges.txtFinal": "すべての変更が承認されました(プレビュー)",
"Common.Views.ReviewChanges.txtFinalCap": "最終版",
@ -341,9 +357,11 @@
"Common.Views.UserNameDialog.textDontShow": "二度と表示しない",
"Common.Views.UserNameDialog.textLabel": "ラベル:",
"Common.Views.UserNameDialog.textLabelError": "ラベルは空白にできません。",
"PE.Controllers.LeftMenu.leavePageText": "変更を保存せずにドキュメントを閉じると変更が失われます。<br>保存するには\"キャンセル\"を押して、保存をしてください。保存せずに破棄する場合は\"OK\"をクリックしてください。",
"PE.Controllers.LeftMenu.newDocumentTitle": "名前が付けられていないプレゼンテーション",
"PE.Controllers.LeftMenu.notcriticalErrorTitle": " 警告",
"PE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...",
"PE.Controllers.LeftMenu.textLoadHistory": "バージョン履歴の読み込み中...",
"PE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。",
"PE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。",
"PE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。",
@ -388,6 +406,7 @@
"PE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。",
"PE.Controllers.Main.errorViewerDisconnect": "接続が接続が失われました。文書を表示が可能ですが、<br>接続が復元されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。",
"PE.Controllers.Main.leavePageText": "このプレゼンテーションの保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。",
"PE.Controllers.Main.leavePageTextOnClose": "このプレゼンテーションで保存されていない変更はすべて失われます。<br>\"キャンセル\"をクリックしてから \"保存 \"をクリックすると、変更内容が保存されます。OK \"をクリックすると、保存されていないすべての変更が破棄されます。",
"PE.Controllers.Main.loadFontsTextText": "データを読み込んでいます...",
"PE.Controllers.Main.loadFontsTitleText": "データを読み込んでいます",
"PE.Controllers.Main.loadFontTextText": "データを読み込んでいます...",
@ -438,6 +457,7 @@
"PE.Controllers.Main.textShape": "図形",
"PE.Controllers.Main.textStrict": "厳格モード",
"PE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。<br>他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。",
"PE.Controllers.Main.textTryUndoRedoWarn": "ファスト共同編集モードでは、元に戻す/やり直し機能が無効になります。",
"PE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています",
"PE.Controllers.Main.titleServerVersion": "エディターが更新された",
"PE.Controllers.Main.txtAddFirstSlide": "最初のスライドを追加するには、クリックしてください",
@ -452,6 +472,7 @@
"PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "グラフのタイトル",
"PE.Controllers.Main.txtEditingMode": "編集モードを設定しています...",
"PE.Controllers.Main.txtErrorLoadHistory": "履歴の読み込みに失敗しました。",
"PE.Controllers.Main.txtFiguredArrows": "形の矢印",
"PE.Controllers.Main.txtFooter": "フッター",
"PE.Controllers.Main.txtHeader": "ヘッダー",
@ -461,6 +482,7 @@
"PE.Controllers.Main.txtMath": "数学",
"PE.Controllers.Main.txtMedia": "メディア",
"PE.Controllers.Main.txtNeedSynchronize": "更新があります。",
"PE.Controllers.Main.txtNone": "なし",
"PE.Controllers.Main.txtPicture": "画像",
"PE.Controllers.Main.txtRectangles": "四角形",
"PE.Controllers.Main.txtSeries": "系列",
@ -1260,6 +1282,7 @@
"PE.Views.FileMenu.btnCreateNewCaption": "新規作成",
"PE.Views.FileMenu.btnDownloadCaption": "ダウンロード...",
"PE.Views.FileMenu.btnHelpCaption": "ヘルプ...",
"PE.Views.FileMenu.btnHistoryCaption": "バージョン履歴",
"PE.Views.FileMenu.btnInfoCaption": "プレゼンテーションの情報...",
"PE.Views.FileMenu.btnPrintCaption": "印刷",
"PE.Views.FileMenu.btnProtectCaption": "保護する",
@ -1855,6 +1878,7 @@
"PE.Views.Toolbar.mniImageFromStorage": "ストレージから画像を読み込む",
"PE.Views.Toolbar.mniImageFromUrl": "ファイルからのURL",
"PE.Views.Toolbar.mniLowerCase": "小文字",
"PE.Views.Toolbar.mniSentenceCase": "センテンスケース",
"PE.Views.Toolbar.mniSlideAdvanced": "詳細設定",
"PE.Views.Toolbar.mniSlideStandard": "標準(4:3)",
"PE.Views.Toolbar.mniSlideWide": "ワイド画面(16:9)",
@ -1902,7 +1926,7 @@
"PE.Views.Toolbar.textUnderline": "下線",
"PE.Views.Toolbar.tipAddSlide": "スライドの追加",
"PE.Views.Toolbar.tipBack": "戻る",
"PE.Views.Toolbar.tipChangeCase": "大文字小文字を変更",
"PE.Views.Toolbar.tipChangeCase": "大文字・小文字の変更",
"PE.Views.Toolbar.tipChangeChart": "グラフの種類を変更",
"PE.Views.Toolbar.tipChangeSlide": "レイアウトスライドの変更",
"PE.Views.Toolbar.tipClearStyle": "スタイルのクリア",

View file

@ -176,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Vizualizare utilizatori și gestionare permisiuni de acces",
"Common.Views.Header.txtAccessRights": "Modificare permisiuni",
"Common.Views.Header.txtRename": "Redenumire",
"Common.Views.History.textCloseHistory": "Închide istoricul",
"Common.Views.History.textHide": "Restrângere",
"Common.Views.History.textHideAll": "Ascundere modificări detaliate",
"Common.Views.History.textRestore": "Restaurează",
"Common.Views.History.textShow": "Extindere",
"Common.Views.History.textShowAll": "Afișare detaliată a modificărilor",
"Common.Views.History.textVer": "ver.",
"Common.Views.ImageFromUrlDialog.textUrl": "Lipire imagine prin URL:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Câmp obligatoriu",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\" ",

View file

@ -6,13 +6,51 @@
"Common.Controllers.ExternalDiagramEditor.warningText": "Objektet är inaktiverat eftersom det redigeras av en annan användare.",
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Varning",
"Common.define.chartData.textArea": "Område",
"Common.define.chartData.textAreaStacked": "Staplad yta",
"Common.define.chartData.textAreaStackedPer": "100% staplat område",
"Common.define.chartData.textBar": "Stapel",
"Common.define.chartData.textBarNormal": "Grupperad kolumn",
"Common.define.chartData.textBarNormal3d": "3-D grupperad kolumn",
"Common.define.chartData.textBarNormal3dPerspective": "3-D kolumn",
"Common.define.chartData.textBarStacked": "Staplad kolumn",
"Common.define.chartData.textBarStacked3d": "3-D staplad kolumn",
"Common.define.chartData.textBarStackedPer": "100% staplad kolumn",
"Common.define.chartData.textBarStackedPer3d": "3-D 100% staplad kolumn",
"Common.define.chartData.textCharts": "Diagram",
"Common.define.chartData.textColumn": "Kolumn",
"Common.define.chartData.textCombo": "Combo",
"Common.define.chartData.textComboAreaBar": "Staplat område - grupperad kolumn",
"Common.define.chartData.textComboBarLine": "Grupperad kolumn - rad",
"Common.define.chartData.textComboBarLineSecondary": "Grupperad kolumn - rad på andra axeln",
"Common.define.chartData.textComboCustom": "Anpassad kombination",
"Common.define.chartData.textDoughnut": "Doughnut",
"Common.define.chartData.textHBarNormal": "Grupperad stapel",
"Common.define.chartData.textHBarNormal3d": "3-D grupperad stapel",
"Common.define.chartData.textHBarStacked": "Staplad stapel",
"Common.define.chartData.textHBarStacked3d": "3-D staplad stapel",
"Common.define.chartData.textHBarStackedPer": "100% staplad stapel",
"Common.define.chartData.textHBarStackedPer3d": "3-D 100% staplad stapel",
"Common.define.chartData.textLine": "Linje",
"Common.define.chartData.textLine3d": "3-D linje",
"Common.define.chartData.textLineMarker": "Linje med markörer",
"Common.define.chartData.textLineStacked": "Staplad linje",
"Common.define.chartData.textLineStackedMarker": "Staplad linje med markeringar",
"Common.define.chartData.textLineStackedPer": "100% staplad linje",
"Common.define.chartData.textLineStackedPerMarker": "100% staplad linje med markörer",
"Common.define.chartData.textPie": "Paj",
"Common.define.chartData.textPie3d": "3-D paj",
"Common.define.chartData.textPoint": "XY (Spridning)",
"Common.define.chartData.textScatter": "Sprida ut",
"Common.define.chartData.textScatterLine": "Sprid med raka linjer",
"Common.define.chartData.textScatterLineMarker": "Sprid med raka linjer och markeringar",
"Common.define.chartData.textScatterSmooth": "Sprid med mjuka linjer",
"Common.define.chartData.textScatterSmoothMarker": "Sprid med mjuka linjer och markeringar",
"Common.define.chartData.textStock": "Lager",
"Common.define.chartData.textSurface": "Yta",
"Common.Translation.warnFileLocked": "Dokumentet används av ett annat program. Du kan fortsätta redigera och spara den som en kopia.",
"Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia",
"Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad",
"Common.UI.ColorButton.textAutoColor": "Automatisk",
"Common.UI.ColorButton.textNewColor": "Lägg till ny egen färg",
"Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Inga ramar",
@ -37,6 +75,9 @@
"Common.UI.SynchronizeTip.textSynchronize": "Dokumentet har ändrats av en annan användare. <br> Klicka för att spara dina ändringar och ladda uppdateringarna.",
"Common.UI.ThemeColorPalette.textStandartColors": "Standardfärger",
"Common.UI.ThemeColorPalette.textThemeColors": "Temafärger",
"Common.UI.Themes.txtThemeClassicLight": "Classic Light",
"Common.UI.Themes.txtThemeDark": "Mörk",
"Common.UI.Themes.txtThemeLight": "Ljus",
"Common.UI.Window.cancelButtonText": "Avbryt",
"Common.UI.Window.closeButtonText": "Stäng",
"Common.UI.Window.noButtonText": "Inga",
@ -47,6 +88,7 @@
"Common.UI.Window.textInformation": "Information",
"Common.UI.Window.textWarning": "Varning",
"Common.UI.Window.yesButtonText": "Ja",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"Common.Views.About.txtAddress": "adress:",
"Common.Views.About.txtLicensee": "LICENSINNEHAVARE",
@ -55,6 +97,32 @@
"Common.Views.About.txtPoweredBy": "Powered by",
"Common.Views.About.txtTel": "Tel.:",
"Common.Views.About.txtVersion": "Version",
"Common.Views.AutoCorrectDialog.textAdd": "Lägg till",
"Common.Views.AutoCorrectDialog.textApplyText": "Korrigera när du skriver",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrigering",
"Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformat när du skriver",
"Common.Views.AutoCorrectDialog.textBulleted": "Automatiska punktlistor",
"Common.Views.AutoCorrectDialog.textBy": "Av",
"Common.Views.AutoCorrectDialog.textDelete": "Radera",
"Common.Views.AutoCorrectDialog.textFLSentence": "Stor bokstav varje mening",
"Common.Views.AutoCorrectDialog.textHyphens": "Bindestreck (--) med streck (—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Matematisk autokorrigering",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatiska nummerlistor",
"Common.Views.AutoCorrectDialog.textQuotes": "\"Raka citat\" med \"smarta citat\"",
"Common.Views.AutoCorrectDialog.textRecognized": "Hittade funktioner",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "Följande uttryck är igenkända matematiska uttryck. De kommer inte att kursiveras automatiskt.",
"Common.Views.AutoCorrectDialog.textReplace": "Ersätt",
"Common.Views.AutoCorrectDialog.textReplaceText": "Ersätt när du skriver",
"Common.Views.AutoCorrectDialog.textReplaceType": "Ersätt text när du skriver",
"Common.Views.AutoCorrectDialog.textReset": "Återställ",
"Common.Views.AutoCorrectDialog.textResetAll": "Återställ till standard",
"Common.Views.AutoCorrectDialog.textRestore": "Återställ",
"Common.Views.AutoCorrectDialog.textTitle": "Autokorrigering",
"Common.Views.AutoCorrectDialog.textWarnAddRec": "Erkända funktioner får endast innehålla bokstäverna A till Z, versaler eller gemener.",
"Common.Views.AutoCorrectDialog.textWarnResetRec": "Alla uttryck du har lagt till kommer att tas bort och de borttagna kommer att återställas. Vill du fortsätta?",
"Common.Views.AutoCorrectDialog.warnReplace": "Autokorrigeringsposten för %1 finns redan. Vill du ersätta den?",
"Common.Views.AutoCorrectDialog.warnReset": "All autokorrigering som du lagt till kommer att tas bort och ändringar kommer att återställas till sina ursprungliga värden. Vill du fortsätta?",
"Common.Views.AutoCorrectDialog.warnRestore": "Autokorrigeringen för %1 återställs till sitt ursprungliga värde. Vill du fortsätta?",
"Common.Views.Chat.textSend": "Skicka",
"Common.Views.Comments.textAdd": "Lägg till",
"Common.Views.Comments.textAddComment": "Lägg till kommentar",
@ -83,11 +151,14 @@
"Common.Views.ExternalDiagramEditor.textSave": "Spara & avsluta",
"Common.Views.ExternalDiagramEditor.textTitle": "Diagram editor",
"Common.Views.Header.labelCoUsersDescr": "Dokumentet redigeras för närvarande av flera användare.",
"Common.Views.Header.textAddFavorite": "Markera som favorit",
"Common.Views.Header.textAdvSettings": "Avancerade inställningar",
"Common.Views.Header.textBack": "Gå till filens plats",
"Common.Views.Header.textCompactView": "Dölj verktygsrad",
"Common.Views.Header.textHideLines": "Dölj linjaler",
"Common.Views.Header.textHideNotes": "Dölj noteringar",
"Common.Views.Header.textHideStatusBar": "Dölj statusrad",
"Common.Views.Header.textRemoveFavorite": "Ta bort från favoriter",
"Common.Views.Header.textSaveBegin": "Sparar...",
"Common.Views.Header.textSaveChanged": "Ändrad",
"Common.Views.Header.textSaveEnd": "Alla ändringar sparade",
@ -105,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Visa användare och hantera dokumentbehörigheter",
"Common.Views.Header.txtAccessRights": "Ändra behörigheter",
"Common.Views.Header.txtRename": "Döp om",
"Common.Views.History.textCloseHistory": "Stäng historik",
"Common.Views.History.textHide": "Dra ihop",
"Common.Views.History.textHideAll": "Göm detaljerade ändringar",
"Common.Views.History.textRestore": "Återställ",
"Common.Views.History.textShow": "Expandera",
"Common.Views.History.textShowAll": "Visa detaljerade ändringar",
"Common.Views.History.textVer": "ver.",
"Common.Views.ImageFromUrlDialog.textUrl": "Klistra in en bilds URL:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Detta fält är obligatoriskt",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"",
@ -116,10 +194,19 @@
"Common.Views.InsertTableDialog.txtTitle": "Tabellstorlek",
"Common.Views.InsertTableDialog.txtTitleSplit": "Dela cell",
"Common.Views.LanguageDialog.labelSelect": "Välj språk för dokumentet",
"Common.Views.ListSettingsDialog.textBulleted": "Punktad",
"Common.Views.ListSettingsDialog.textNumbering": "Numrerad",
"Common.Views.ListSettingsDialog.tipChange": "Ändra punktsymbol",
"Common.Views.ListSettingsDialog.txtBullet": "Bullet",
"Common.Views.ListSettingsDialog.txtColor": "Färg",
"Common.Views.ListSettingsDialog.txtNewBullet": "New bullet",
"Common.Views.ListSettingsDialog.txtNone": "ingen",
"Common.Views.ListSettingsDialog.txtOfText": "% av text",
"Common.Views.ListSettingsDialog.txtSize": "Storlek",
"Common.Views.ListSettingsDialog.txtStart": "Börja på",
"Common.Views.ListSettingsDialog.txtSymbol": "Symbol",
"Common.Views.ListSettingsDialog.txtTitle": "Listinställningar",
"Common.Views.ListSettingsDialog.txtType": "Typ",
"Common.Views.OpenDialog.closeButtonText": "Stäng fil",
"Common.Views.OpenDialog.txtEncoding": "Teckenkodning",
"Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord.",
@ -162,6 +249,8 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "Ställ in samredigeringsläge",
"Common.Views.ReviewChanges.tipCommentRem": "Ta bort kommentarer",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Ta bort aktuella kommentarer",
"Common.Views.ReviewChanges.tipCommentResolve": "Lös kommentarer",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "Lös aktuella kommentarer",
"Common.Views.ReviewChanges.tipHistory": "Visa versionshistorik",
"Common.Views.ReviewChanges.tipRejectCurrent": "Avvisa nuvarande ändring",
"Common.Views.ReviewChanges.tipReview": "Spåra ändringar",
@ -175,11 +264,17 @@
"Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptera nuvarande ändring",
"Common.Views.ReviewChanges.txtChat": "Chatt",
"Common.Views.ReviewChanges.txtClose": "Stäng",
"Common.Views.ReviewChanges.txtCoAuthMode": "Redigera samtidigt",
"Common.Views.ReviewChanges.txtCommentRemAll": "Ta bort alla kommentarer",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Ta bort aktuella kommentarer",
"Common.Views.ReviewChanges.txtCommentRemMy": "Ta bort mina kommentarer",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Ta bort mina aktuella kommentarer",
"Common.Views.ReviewChanges.txtCommentRemove": "Ta bort",
"Common.Views.ReviewChanges.txtCommentResolve": "Lös",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Lös alla kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Lös aktuella kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Lös mina kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Lös mina nuvarande kommentarer",
"Common.Views.ReviewChanges.txtDocLang": "Språk",
"Common.Views.ReviewChanges.txtFinal": "Alla ändringar accepterade (Förhandsvisning)",
"Common.Views.ReviewChanges.txtFinalCap": "Slutlig",
@ -217,6 +312,7 @@
"Common.Views.SignDialog.textChange": "Ändra",
"Common.Views.SignDialog.textInputName": "Infoga undertecknares namn",
"Common.Views.SignDialog.textItalic": "Kursiv",
"Common.Views.SignDialog.textNameError": "Undertecknare får inte vara tom.",
"Common.Views.SignDialog.textPurpose": "Syfte för att underteckna det här dokumentet",
"Common.Views.SignDialog.textSelect": "Välj",
"Common.Views.SignDialog.textSelectImage": "Välj bild",
@ -235,16 +331,41 @@
"Common.Views.SignSettingsDialog.textShowDate": "Visa datum för signatur på signaturraden",
"Common.Views.SignSettingsDialog.textTitle": "Skapa signatur",
"Common.Views.SignSettingsDialog.txtEmpty": "Detta fält är obligatoriskt",
"Common.Views.SymbolTableDialog.textCharacter": "Tecken",
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX värde",
"Common.Views.SymbolTableDialog.textCopyright": "Upphovsrättstecken",
"Common.Views.SymbolTableDialog.textDCQuote": "Avslutande dubbelt citattecken",
"Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote",
"Common.Views.SymbolTableDialog.textEllipsis": "Horisontell ellips",
"Common.Views.SymbolTableDialog.textEmDash": "Em Dash",
"Common.Views.SymbolTableDialog.textEmSpace": "Em Space",
"Common.Views.SymbolTableDialog.textEnDash": "En Dash",
"Common.Views.SymbolTableDialog.textEnSpace": "En Space",
"Common.Views.SymbolTableDialog.textFont": "Font",
"Common.Views.SymbolTableDialog.textNBHyphen": "Icke-brytande bindestreck",
"Common.Views.SymbolTableDialog.textNBSpace": "No-break Space",
"Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow tecken",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space",
"Common.Views.SymbolTableDialog.textRange": "Område",
"Common.Views.SymbolTableDialog.textRecent": "Tidigare använda symboler",
"Common.Views.SymbolTableDialog.textRegistered": "Registrerat tecken",
"Common.Views.SymbolTableDialog.textSCQuote": "Avslutande enkelt citattecken",
"Common.Views.SymbolTableDialog.textSection": "Avsnittstecken",
"Common.Views.SymbolTableDialog.textShortcut": "Snabbtangent",
"Common.Views.SymbolTableDialog.textSHyphen": "Mjuk bindestreck",
"Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote",
"Common.Views.SymbolTableDialog.textSpecial": "Specialtecken",
"Common.Views.SymbolTableDialog.textSymbols": "Symboler",
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
"Common.Views.SymbolTableDialog.textTradeMark": "Varumärkesymbol",
"Common.Views.UserNameDialog.textDontShow": "Fråga inte igen",
"Common.Views.UserNameDialog.textLabel": "Etikett:",
"Common.Views.UserNameDialog.textLabelError": "Etiketten får inte vara tom.",
"PE.Controllers.LeftMenu.leavePageText": "Alla ändringar som inte sparats i detta dokument kommer att gå förlorade. <br> Klicka på \"Avbryt\" och sedan \"Spara\" för att spara dem. Klicka på \"OK\" för att kasta alla ändringar som inte sparats.",
"PE.Controllers.LeftMenu.newDocumentTitle": "Ej nanmngiven Presentation",
"PE.Controllers.LeftMenu.notcriticalErrorTitle": "Varning",
"PE.Controllers.LeftMenu.requestEditRightsText": "Begär rätt att editera...",
"PE.Controllers.LeftMenu.textLoadHistory": "Laddar versionshistorik...",
"PE.Controllers.LeftMenu.textNoTextFound": "De data som du har letat efter kunde inte hittas. Ändra dina sökalternativ.",
"PE.Controllers.LeftMenu.textReplaceSkipped": "Ersättningen har gjorts. {0} händelser hoppades över.",
"PE.Controllers.LeftMenu.textReplaceSuccess": "Sökningen har gjorts. Förekomster som ersatts: {0}",
@ -260,6 +381,7 @@
"PE.Controllers.Main.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.<br>Vänligen kontakta din systemadministratör.",
"PE.Controllers.Main.errorBadImageUrl": "Bildens URL är felaktig",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Serveranslutning förlorade. Dokumentet kan inte redigeras just nu.",
"PE.Controllers.Main.errorComboSeries": "Välj minst två serier med data för att skapa ett kombinationsschema.",
"PE.Controllers.Main.errorConnectToServer": "Dokumentet kunde inte sparas. . Kontrollera anslutningsinställningarna eller kontakta administratören <br> När du klickar på \"OK\" -knappen, kommer du att bli ombedd att ladda ner dokumentet.",
"PE.Controllers.Main.errorDatabaseConnection": "Externt fel.<br>Databasanslutningsfel. Kontakta support om felet kvarstår.",
"PE.Controllers.Main.errorDataEncrypted": "Krypterade ändringar har tagits emot, de kan inte avkodas.",
@ -278,6 +400,7 @@
"PE.Controllers.Main.errorSessionAbsolute": "Dokumentet redigeringssession har löpt ut. Vänligen ladda om sidan.",
"PE.Controllers.Main.errorSessionIdle": "Dokumentet har inte redigerats under en ganska lång tid. Var vänlig att ladda om sidan.",
"PE.Controllers.Main.errorSessionToken": "Anslutningen till servern har avbrutits. Vänligen ladda om sidan.",
"PE.Controllers.Main.errorSetPassword": "Lösenord kunde inte ställas in.",
"PE.Controllers.Main.errorStockChart": "Felaktig ordningsföljd. För att bygga ett aktiediagram placerar du uppgifterna på arket i följande ordning:<br> öppningspris, maxpris, minipris, slutkurs.",
"PE.Controllers.Main.errorToken": "Dokumentets säkerhetstoken är inte korrekt. <br>Vänligen kontakta din dokumentserver administratör.",
"PE.Controllers.Main.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.<br>Var vänlig och Kontakta din dokumentserver administratör.",
@ -287,6 +410,7 @@
"PE.Controllers.Main.errorUsersExceed": "Antalet användare som tillåts av licensen överskreds",
"PE.Controllers.Main.errorViewerDisconnect": "Anslutningen bröts. Du kan fortfarande se dokumentet<br>men kommer inte att kunna ladda ner eller skriva ut tills anslutningen är återställd.",
"PE.Controllers.Main.leavePageText": "Du har osparade ändringar i presentatioen. Klicka på \"Stanna på den här sidan\" och sedan på \"Spara\" för att spara. Klicka på \"Lämna den här sidan\" för att ta bort alla ändringar som inte har sparats.",
"PE.Controllers.Main.leavePageTextOnClose": "Alla ej sparade ändringar i presentationen kommer att gå förlorade. <br> Klicka på \"Avbryt\" och sedan på \"Spara\" för att spara dem. Klicka på \"OK\" för att kassera alla ändringar som inte sparats.",
"PE.Controllers.Main.loadFontsTextText": "Laddar data...",
"PE.Controllers.Main.loadFontsTitleText": "Laddar data",
"PE.Controllers.Main.loadFontTextText": "Laddar data...",
@ -309,6 +433,7 @@
"PE.Controllers.Main.requestEditFailedMessageText": "Någon redigerar denna presentation. Försök igen senare.",
"PE.Controllers.Main.requestEditFailedTitleText": "Ingen behörighet",
"PE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas",
"PE.Controllers.Main.saveErrorTextDesktop": "Den här filen kan inte sparas eller skapas. <br> Möjliga orsaker är: <br> 1. Filen är skrivskyddad. <br> 2. Filen redigeras av andra användare. <br> 3. Disken är full eller skadad.",
"PE.Controllers.Main.savePreparingText": "Förbereder att spara",
"PE.Controllers.Main.savePreparingTitle": "Förbereder att spara. Vänta...",
"PE.Controllers.Main.saveTextText": "Sparar presentationen...",
@ -324,12 +449,19 @@
"PE.Controllers.Main.textCloseTip": "Klicka för att stänga tipset",
"PE.Controllers.Main.textContactUs": "Kontakta säljare",
"PE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren. <br> Kontakta vår försäljningsavdelning för att få en offert.",
"PE.Controllers.Main.textGuest": "Gäst",
"PE.Controllers.Main.textHasMacros": "Filen innehåller automatiska makron. <br> Vill du köra makron?",
"PE.Controllers.Main.textLoadingDocument": "Laddar presentationen",
"PE.Controllers.Main.textLongName": "Ange namn (max 128 tecken).",
"PE.Controllers.Main.textNoLicenseTitle": "%1 anslutningsbegränsning",
"PE.Controllers.Main.textPaidFeature": "Betald funktion",
"PE.Controllers.Main.textRemember": "Kom ihåg mitt val för alla filer",
"PE.Controllers.Main.textRenameError": "Användarnamn får inte var tomt.",
"PE.Controllers.Main.textRenameLabel": "Ange namn för samarbete",
"PE.Controllers.Main.textShape": "Form",
"PE.Controllers.Main.textStrict": "Strikt läge",
"PE.Controllers.Main.textTryUndoRedo": "Ångra/Återställ-funktionerna är inaktiva i snabbt samredigeringsläget.<br>Klicka på knappen 'Strikt läge' för att växla till strikt samredigeringsläge och redigera filen utan andra användares påverkan och skicka dina ändringar först efter att du har sparat dem. Du kan växla mellan samredigeringslägena med hjälp av avancerade inställningar.",
"PE.Controllers.Main.textTryUndoRedoWarn": "Ångra-funktionerna är inaktiverade för snabb samredigeringsläge.",
"PE.Controllers.Main.titleLicenseExp": "Licensen har gått ut",
"PE.Controllers.Main.titleServerVersion": "Editor uppdaterad",
"PE.Controllers.Main.txtAddFirstSlide": "Klicka för att lägga till den första bilden",
@ -337,11 +469,14 @@
"PE.Controllers.Main.txtArt": "Din text här",
"PE.Controllers.Main.txtBasicShapes": "Former",
"PE.Controllers.Main.txtButtons": "Knappar",
"PE.Controllers.Main.txtCallouts": "Pratbubbla",
"PE.Controllers.Main.txtCharts": "Diagram",
"PE.Controllers.Main.txtClipArt": "ClipArt",
"PE.Controllers.Main.txtDateTime": "Datum och tid",
"PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Diagramtitel",
"PE.Controllers.Main.txtEditingMode": "Ställ in redigeringsläge...",
"PE.Controllers.Main.txtErrorLoadHistory": "Gick inte ladda historik",
"PE.Controllers.Main.txtFiguredArrows": "Figurpilar",
"PE.Controllers.Main.txtFooter": "Sidfot",
"PE.Controllers.Main.txtHeader": "Sidhuvud",
@ -351,9 +486,16 @@
"PE.Controllers.Main.txtMath": "Matte",
"PE.Controllers.Main.txtMedia": "Media",
"PE.Controllers.Main.txtNeedSynchronize": "Du har uppdateringar",
"PE.Controllers.Main.txtNone": "ingen",
"PE.Controllers.Main.txtPicture": "Bild",
"PE.Controllers.Main.txtRectangles": "Rektanglar",
"PE.Controllers.Main.txtSeries": "Serier",
"PE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)",
"PE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)",
"PE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)",
"PE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)",
"PE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)",
"PE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)",
"PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tillbaka eller föregående knapp",
"PE.Controllers.Main.txtShape_actionButtonBeginning": "Startknapp",
"PE.Controllers.Main.txtShape_actionButtonBlank": "Tömknapp",
@ -367,11 +509,26 @@
"PE.Controllers.Main.txtShape_actionButtonReturn": "Återknapp",
"PE.Controllers.Main.txtShape_actionButtonSound": "Ljudknapp",
"PE.Controllers.Main.txtShape_arc": "Båge",
"PE.Controllers.Main.txtShape_bentArrow": "Böjd pil",
"PE.Controllers.Main.txtShape_bentConnector5": "Armbågskontakt",
"PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Armbågspilkontakt",
"PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Armbågsdubbelpil",
"PE.Controllers.Main.txtShape_bentUpArrow": "Böjd uppåtpil",
"PE.Controllers.Main.txtShape_bevel": "Fasning",
"PE.Controllers.Main.txtShape_blockArc": "Block båge",
"PE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1",
"PE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2",
"PE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3",
"PE.Controllers.Main.txtShape_bracePair": "Dubbelklammer",
"PE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)",
"PE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)",
"PE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)",
"PE.Controllers.Main.txtShape_can": "Burk",
"PE.Controllers.Main.txtShape_chevron": "Chevron",
"PE.Controllers.Main.txtShape_chord": "Chord",
"PE.Controllers.Main.txtShape_circularArrow": "Cirkulär pil",
"PE.Controllers.Main.txtShape_cloud": "Moln",
"PE.Controllers.Main.txtShape_cloudCallout": "Pratbubbla moln",
"PE.Controllers.Main.txtShape_corner": "Hörn",
"PE.Controllers.Main.txtShape_cube": "Kub",
"PE.Controllers.Main.txtShape_curvedConnector3": "Böjd anslutning",
@ -385,8 +542,13 @@
"PE.Controllers.Main.txtShape_diagStripe": "Diagonal rand",
"PE.Controllers.Main.txtShape_diamond": "Diamant",
"PE.Controllers.Main.txtShape_dodecagon": "Dodecagon",
"PE.Controllers.Main.txtShape_donut": "Donut",
"PE.Controllers.Main.txtShape_doubleWave": "Double Wave",
"PE.Controllers.Main.txtShape_downArrow": "Nedåtpil",
"PE.Controllers.Main.txtShape_downArrowCallout": "Pratbubbla nedåtpil",
"PE.Controllers.Main.txtShape_ellipse": "Ellips",
"PE.Controllers.Main.txtShape_ellipseRibbon": "Curved Down Ribbon",
"PE.Controllers.Main.txtShape_ellipseRibbon2": "Curved Up Ribbon",
"PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Födesschema: Alternativ process",
"PE.Controllers.Main.txtShape_flowChartCollate": "Flödesschema: Collate",
"PE.Controllers.Main.txtShape_flowChartConnector": "Flödesschema: Anslutning",
@ -426,7 +588,13 @@
"PE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1",
"PE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2",
"PE.Controllers.Main.txtShape_leftArrow": "Vänsterpil",
"PE.Controllers.Main.txtShape_leftArrowCallout": "Pratbubbla vänsterpil",
"PE.Controllers.Main.txtShape_leftBrace": "Vänsterklammer",
"PE.Controllers.Main.txtShape_leftBracket": "Vänster hakparentes",
"PE.Controllers.Main.txtShape_leftRightArrow": "Vänster-höger-pil",
"PE.Controllers.Main.txtShape_leftRightArrowCallout": "Pratbubbla vänster-höger-pil",
"PE.Controllers.Main.txtShape_leftRightUpArrow": "Vänster höger uppåtpil",
"PE.Controllers.Main.txtShape_leftUpArrow": "Vänster uppåtpil",
"PE.Controllers.Main.txtShape_lightningBolt": "Blixt",
"PE.Controllers.Main.txtShape_line": "Linje",
"PE.Controllers.Main.txtShape_lineWithArrow": "Pil",
@ -439,6 +607,7 @@
"PE.Controllers.Main.txtShape_mathPlus": "Plus",
"PE.Controllers.Main.txtShape_moon": "Måne",
"PE.Controllers.Main.txtShape_noSmoking": "\"Ingen\" symbol",
"PE.Controllers.Main.txtShape_notchedRightArrow": "Skårad högerpil",
"PE.Controllers.Main.txtShape_octagon": "Oktagon",
"PE.Controllers.Main.txtShape_parallelogram": "Parallellogram",
"PE.Controllers.Main.txtShape_pentagon": "Pentagon",
@ -448,26 +617,50 @@
"PE.Controllers.Main.txtShape_polyline1": "Klotter",
"PE.Controllers.Main.txtShape_polyline2": "Fri form",
"PE.Controllers.Main.txtShape_quadArrow": "Rundad rektangel",
"PE.Controllers.Main.txtShape_quadArrowCallout": "Fyrdelad pil med pratbubbla",
"PE.Controllers.Main.txtShape_rect": "Rektangel",
"PE.Controllers.Main.txtShape_ribbon": "Down Ribbon",
"PE.Controllers.Main.txtShape_ribbon2": "Uppåt band",
"PE.Controllers.Main.txtShape_rightArrow": "Högerpil",
"PE.Controllers.Main.txtShape_rightArrowCallout": "Högerpil pratbubbla",
"PE.Controllers.Main.txtShape_rightBrace": "Högerklammer",
"PE.Controllers.Main.txtShape_rightBracket": "Höger hakparentes",
"PE.Controllers.Main.txtShape_round1Rect": "Rektangel med ett rundat hörn",
"PE.Controllers.Main.txtShape_round2DiagRect": "Rektangel med rundade hörn diagonalt",
"PE.Controllers.Main.txtShape_round2SameRect": "Rektangel med rundade hörn samma sida",
"PE.Controllers.Main.txtShape_roundRect": "Rektangel med avrundade hörn",
"PE.Controllers.Main.txtShape_rtTriangle": "Höger triangel",
"PE.Controllers.Main.txtShape_smileyFace": "Glad gubbe",
"PE.Controllers.Main.txtShape_snip1Rect": "Rektangel med ett klippt hörn",
"PE.Controllers.Main.txtShape_snip2DiagRect": "Rektangel med klippta hörn diagonalt",
"PE.Controllers.Main.txtShape_snip2SameRect": "Rektangel med klippta hörn på en sida",
"PE.Controllers.Main.txtShape_snipRoundRect": "Rektangel med ett klippt och rundat hörn",
"PE.Controllers.Main.txtShape_spline": "Kurva",
"PE.Controllers.Main.txtShape_star10": "10-punkts stjärna",
"PE.Controllers.Main.txtShape_star12": "12-punkts stjärna",
"PE.Controllers.Main.txtShape_star16": "16-punkts stjärna",
"PE.Controllers.Main.txtShape_star24": "24-punkts stjärna",
"PE.Controllers.Main.txtShape_star32": "32-punkts stjärna",
"PE.Controllers.Main.txtShape_star4": "4-punkts stjärna",
"PE.Controllers.Main.txtShape_star5": "5-punkts stjärna",
"PE.Controllers.Main.txtShape_star6": "6-punkts stjärna",
"PE.Controllers.Main.txtShape_star7": "7-punkts stjärna",
"PE.Controllers.Main.txtShape_star8": "8-punkts stjärna",
"PE.Controllers.Main.txtShape_stripedRightArrow": "Genomstruken högerpil",
"PE.Controllers.Main.txtShape_sun": "Sol",
"PE.Controllers.Main.txtShape_teardrop": "Tår",
"PE.Controllers.Main.txtShape_textRect": "Textruta",
"PE.Controllers.Main.txtShape_trapezoid": "Trapes",
"PE.Controllers.Main.txtShape_triangle": "Triangel",
"PE.Controllers.Main.txtShape_upArrow": "Pil upp",
"PE.Controllers.Main.txtShape_upArrowCallout": "Pratbubbla uppåtpil",
"PE.Controllers.Main.txtShape_upDownArrow": "Upp-Ner pil",
"PE.Controllers.Main.txtShape_uturnArrow": "U-sväng pil",
"PE.Controllers.Main.txtShape_verticalScroll": "Vertikal rullning",
"PE.Controllers.Main.txtShape_wave": "Våg",
"PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout",
"PE.Controllers.Main.txtShape_wedgeRectCallout": "Pratbubbla rektangel",
"PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rundad rektangel pratbubbla",
"PE.Controllers.Main.txtSldLtTBlank": "Töm",
"PE.Controllers.Main.txtSldLtTChart": "Diagram",
"PE.Controllers.Main.txtSldLtTChartAndTx": "Diagram och text",
@ -509,7 +702,9 @@
"PE.Controllers.Main.txtSlideText": "Bildtext",
"PE.Controllers.Main.txtSlideTitle": "Titel",
"PE.Controllers.Main.txtStarsRibbons": "Stjärnor & banner",
"PE.Controllers.Main.txtTheme_basic": "Grundläggande",
"PE.Controllers.Main.txtTheme_blank": "Töm",
"PE.Controllers.Main.txtTheme_classic": "Klassisk",
"PE.Controllers.Main.txtTheme_corner": "Hörn",
"PE.Controllers.Main.txtTheme_dotted": "Prickad",
"PE.Controllers.Main.txtTheme_green": "Grön",
@ -535,6 +730,8 @@
"PE.Controllers.Main.warnBrowserZoom": "Din webbläsares nuvarande zoominställningar stöds inte fullt ut. Återställ till standard zoom genom att trycka på Ctrl + 0.",
"PE.Controllers.Main.warnLicenseExceeded": "Antalet samtidiga anslutningar till dokumentservern har överskridits och dokumentet öppnas endast för visning.<br>Vänligen kontakta din systemadministratör för mer information.",
"PE.Controllers.Main.warnLicenseExp": "Din licens har gått ut.<br>Förnya din licens och uppdatera sidan.",
"PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licensen ogiltig. <br> Ingen access till redigeringsfunktioner.<br>Kontakta din administratör.",
"PE.Controllers.Main.warnLicenseLimitedRenewed": "Licensen måste förnyas.<br>Endast begränsad funktionalitet.<br>Kontakta din administratör för full funktionalitet.",
"PE.Controllers.Main.warnLicenseUsersExceeded": "Antalet samtidiga användare har överskridits och dokumentet öppnas endast för visning.<br>Vänligen kontakta din systemadministratör för mer information.",
"PE.Controllers.Main.warnNoLicense": "Den här versionen av %1 har vissa begränsningar för samtidiga anslutningar till dokumentservern.<br>Om du behöver mer, överväg att köpa en kommersiell licens.",
"PE.Controllers.Main.warnNoLicenseUsers": "Den här versionen av %1 har vissa begränsningar för samtidiga användare.<br>Om du behöver mer, överväg att köpa en kommersiell licens.",
@ -562,22 +759,27 @@
"PE.Controllers.Toolbar.txtAccent_ArrowL": "Vänster pil ovanför",
"PE.Controllers.Toolbar.txtAccent_ArrowR": "Högerriktad pil ovanför",
"PE.Controllers.Toolbar.txtAccent_Bar": "Stapel",
"PE.Controllers.Toolbar.txtAccent_BarBot": "Underbar",
"PE.Controllers.Toolbar.txtAccent_BarTop": "Overbar",
"PE.Controllers.Toolbar.txtAccent_BorderBox": "Boxad formel (med hållare)",
"PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxad formel (exempel)",
"PE.Controllers.Toolbar.txtAccent_Check": "Markera",
"PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace",
"PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Oberbrace",
"PE.Controllers.Toolbar.txtAccent_Custom_1": "Vektor A",
"PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC med overbar",
"PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y med overbar",
"PE.Controllers.Toolbar.txtAccent_DDDot": "Trippel punkt",
"PE.Controllers.Toolbar.txtAccent_DDot": "Dubbelpunkt",
"PE.Controllers.Toolbar.txtAccent_Dot": "Punkt",
"PE.Controllers.Toolbar.txtAccent_DoubleBar": "Dubbel overbar",
"PE.Controllers.Toolbar.txtAccent_Grave": "Grav",
"PE.Controllers.Toolbar.txtAccent_GroupBot": "Gruppera tecken under",
"PE.Controllers.Toolbar.txtAccent_GroupTop": "Gruppera tecken ovanför",
"PE.Controllers.Toolbar.txtAccent_HarpoonL": "Vänster harpun ovanför",
"PE.Controllers.Toolbar.txtAccent_HarpoonR": "Högerriktad harpunpil ovanför",
"PE.Controllers.Toolbar.txtAccent_Hat": "Hatt",
"PE.Controllers.Toolbar.txtAccent_Smile": "Kort",
"PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"PE.Controllers.Toolbar.txtBracket_Angle": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Parentes med avgränsare",
@ -587,6 +789,7 @@
"PE.Controllers.Toolbar.txtBracket_Curve": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Parentes med avgränsare",
"PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Enkel gaffling",
"PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_Custom_1": "Fall (två villkor)",
"PE.Controllers.Toolbar.txtBracket_Custom_2": "Fall (tre villkor)",
"PE.Controllers.Toolbar.txtBracket_Custom_3": "Stapla objekt",
@ -595,16 +798,30 @@
"PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial koefficient",
"PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial koefficient",
"PE.Controllers.Toolbar.txtBracket_Line": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_LineDouble": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_LowLim": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_Round": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentes med avgränsare",
"PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_Square": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_SquareDouble": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_UppLim": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Enkel parentes",
"PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Enkel parentes",
"PE.Controllers.Toolbar.txtFractionDiagonal": "Skev fraktion",
"PE.Controllers.Toolbar.txtFractionDifferential_1": "Differentiell",
"PE.Controllers.Toolbar.txtFractionDifferential_2": "Differentiell",
@ -626,10 +843,14 @@
"PE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperboliska inverterad sine funktion",
"PE.Controllers.Toolbar.txtFunction_1_Tan": "Inverterad tangent funktion",
"PE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperboliska inverterad tangent funktion",
"PE.Controllers.Toolbar.txtFunction_Cos": "Cosinus funktion",
"PE.Controllers.Toolbar.txtFunction_Cosh": "Hyperboliska cosine funktion",
"PE.Controllers.Toolbar.txtFunction_Cot": "Cotangens funktion",
"PE.Controllers.Toolbar.txtFunction_Coth": "Hyperboliska cotangent funktion",
"PE.Controllers.Toolbar.txtFunction_Csc": "Cosekant funktion",
"PE.Controllers.Toolbar.txtFunction_Csch": "Hyperboliska cosekanten funktion",
"PE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta",
"PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x",
"PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formel",
"PE.Controllers.Toolbar.txtFunction_Sec": "Sekant funktion",
"PE.Controllers.Toolbar.txtFunction_Sech": "Hyperboliska secant funktion",
@ -673,6 +894,11 @@
"PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summering",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Koppla ihop",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Genomskärning",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Genomskärning",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Genomskärning",
@ -701,16 +927,28 @@
"PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritm",
"PE.Controllers.Toolbar.txtLimitLog_Max": "Max",
"PE.Controllers.Toolbar.txtLimitLog_Min": "Minst",
"PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 tom matris",
"PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 tom matris",
"PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 tom matris",
"PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 tom matris",
"PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Tom matris med parenteser",
"PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Tom matris med parenteser",
"PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Tom matris med parenteser",
"PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Tom matris med parenteser",
"PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 tom matris",
"PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 tom matris",
"PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 tom matris",
"PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 tom matris",
"PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baslinjeprickar",
"PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Prickar i mitten",
"PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonala punkter",
"PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertikala punkter",
"PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Gles matris",
"PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Gles matris",
"PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identitetsmatris",
"PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identitetsmatris",
"PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identitetsmatris",
"PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identitetsmatris",
"PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Höger vänsterpil under",
"PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Höger-vänster pil ovanför",
"PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Vänsterpil under",
@ -718,6 +956,7 @@
"PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Högerriktad pil nedanför",
"PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Högerriktad pil ovanför",
"PE.Controllers.Toolbar.txtOperator_ColonEquals": "Kolon lika med",
"PE.Controllers.Toolbar.txtOperator_Custom_1": "Avkastning",
"PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta-utbyten",
"PE.Controllers.Toolbar.txtOperator_Definition": "Lika med enligt definition",
"PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta lika med",
@ -743,6 +982,7 @@
"PE.Controllers.Toolbar.txtScriptCustom_4": "Skript",
"PE.Controllers.Toolbar.txtScriptSub": "Nedsänkt",
"PE.Controllers.Toolbar.txtScriptSubSup": "Nedsänkt-upphöjd",
"PE.Controllers.Toolbar.txtScriptSubSupLeft": "Vänster subskript-superscript",
"PE.Controllers.Toolbar.txtScriptSup": "Upphöjd",
"PE.Controllers.Toolbar.txtSymbol_about": "Ungefär",
"PE.Controllers.Toolbar.txtSymbol_additional": "Komplettera",
@ -750,10 +990,14 @@
"PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa",
"PE.Controllers.Toolbar.txtSymbol_approx": "Nästa lika med",
"PE.Controllers.Toolbar.txtSymbol_ast": "Asterisk operator",
"PE.Controllers.Toolbar.txtSymbol_beta": "Beta",
"PE.Controllers.Toolbar.txtSymbol_beth": "Slå vad",
"PE.Controllers.Toolbar.txtSymbol_bullet": "Punktlista typ",
"PE.Controllers.Toolbar.txtSymbol_cap": "Genomskärning",
"PE.Controllers.Toolbar.txtSymbol_cbrt": "Kubikrot",
"PE.Controllers.Toolbar.txtSymbol_cdots": "Horisontell elips i mitten",
"PE.Controllers.Toolbar.txtSymbol_celsius": "Grader celsius",
"PE.Controllers.Toolbar.txtSymbol_chi": "Chi",
"PE.Controllers.Toolbar.txtSymbol_cong": "Ungefär lika med",
"PE.Controllers.Toolbar.txtSymbol_cup": "Koppla ihop",
"PE.Controllers.Toolbar.txtSymbol_ddots": "Ner höger diagonal ellips",
@ -781,6 +1025,7 @@
"PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa",
"PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda",
"PE.Controllers.Toolbar.txtSymbol_leftarrow": "Vänsterpil",
"PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Vänster-höger pil",
"PE.Controllers.Toolbar.txtSymbol_leq": "Mindre än eller lika med",
"PE.Controllers.Toolbar.txtSymbol_less": "Mindre än",
"PE.Controllers.Toolbar.txtSymbol_ll": "Mycket mindre än",
@ -805,12 +1050,14 @@
"PE.Controllers.Toolbar.txtSymbol_psi": "Psi",
"PE.Controllers.Toolbar.txtSymbol_qdrt": "Fjärde roten",
"PE.Controllers.Toolbar.txtSymbol_qed": "Slut på bevis",
"PE.Controllers.Toolbar.txtSymbol_rddots": "Diagonal ellips",
"PE.Controllers.Toolbar.txtSymbol_rho": "Rho",
"PE.Controllers.Toolbar.txtSymbol_rightarrow": "Högerpil",
"PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma",
"PE.Controllers.Toolbar.txtSymbol_sqrt": "Radikal skylt",
"PE.Controllers.Toolbar.txtSymbol_tau": "Tau",
"PE.Controllers.Toolbar.txtSymbol_therefore": "Därför",
"PE.Controllers.Toolbar.txtSymbol_theta": "Theta",
"PE.Controllers.Toolbar.txtSymbol_times": "Multiplikationstecken",
"PE.Controllers.Toolbar.txtSymbol_uparrow": "Pil upp",
"PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon",
@ -819,8 +1066,10 @@
"PE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant",
"PE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant",
"PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant",
"PE.Controllers.Toolbar.txtSymbol_vartheta": "Theta variant",
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikal ellips",
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"PE.Controllers.Viewport.textFitPage": "Anpassa till bild",
"PE.Controllers.Viewport.textFitWidth": "Anpassa till bredd",
"PE.Views.ChartSettings.textAdvanced": "Visa avancerade inställningar",
@ -905,6 +1154,7 @@
"PE.Views.DocumentHolder.textFlipH": "Vänd horisontellt",
"PE.Views.DocumentHolder.textFlipV": "Vänd vertikalt",
"PE.Views.DocumentHolder.textFromFile": "Från fil",
"PE.Views.DocumentHolder.textFromStorage": "Från lagring",
"PE.Views.DocumentHolder.textFromUrl": "Från URL",
"PE.Views.DocumentHolder.textNextPage": "Nästa bild",
"PE.Views.DocumentHolder.textPaste": "Klistra in",
@ -987,6 +1237,7 @@
"PE.Views.DocumentHolder.txtMatrixAlign": "Matrisjustering",
"PE.Views.DocumentHolder.txtNewSlide": "Ny bild",
"PE.Views.DocumentHolder.txtOverbar": "Stapel över text",
"PE.Views.DocumentHolder.txtPasteDestFormat": "Använd destinationstema",
"PE.Views.DocumentHolder.txtPastePicture": "Bild",
"PE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll ursprungsformatering",
"PE.Views.DocumentHolder.txtPressLink": "Tryck CTRL och klicka på länken",
@ -1035,6 +1286,7 @@
"PE.Views.FileMenu.btnCreateNewCaption": "Skapa ny",
"PE.Views.FileMenu.btnDownloadCaption": "Ladda ner som...",
"PE.Views.FileMenu.btnHelpCaption": "Hjälp...",
"PE.Views.FileMenu.btnHistoryCaption": "Versionshistorik",
"PE.Views.FileMenu.btnInfoCaption": "Presentation info...",
"PE.Views.FileMenu.btnPrintCaption": "Skriv ut",
"PE.Views.FileMenu.btnProtectCaption": "Skydda",
@ -1084,15 +1336,20 @@
"PE.Views.FileMenuPanels.Settings.strAlignGuides": "Aktivera justeringsguider",
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "Aktivera automatisk återställning",
"PE.Views.FileMenuPanels.Settings.strAutosave": "Aktivera spara automatiskt",
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Redigera samtidigt",
"PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andra användare kommer att se dina ändringar på en gång",
"PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom",
"PE.Views.FileMenuPanels.Settings.strFast": "Snabb",
"PE.Views.FileMenuPanels.Settings.strFontRender": "Fontförslag",
"PE.Views.FileMenuPanels.Settings.strForcesave": "Spara alltid till server (annars spara till servern när dokumentet stängs)",
"PE.Views.FileMenuPanels.Settings.strInputMode": "Aktivera hieroglyfer",
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroinställningar",
"PE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopiera och klistra in",
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in",
"PE.Views.FileMenuPanels.Settings.strShowChanges": "Samarbeta i realtid",
"PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktivera stavningskontroll",
"PE.Views.FileMenuPanels.Settings.strStrict": "Strikt",
"PE.Views.FileMenuPanels.Settings.strTheme": "Gränssnittstema",
"PE.Views.FileMenuPanels.Settings.strUnit": "Måttenhet",
"PE.Views.FileMenuPanels.Settings.strZoom": "Standard zoomvärde",
"PE.Views.FileMenuPanels.Settings.text10Minutes": "Var 10:e minut",
@ -1106,6 +1363,7 @@
"PE.Views.FileMenuPanels.Settings.textForceSave": "Spara till server",
"PE.Views.FileMenuPanels.Settings.textMinute": "Varje minut",
"PE.Views.FileMenuPanels.Settings.txtAll": "Visa alla",
"PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Inställningar autokorrigering",
"PE.Views.FileMenuPanels.Settings.txtCacheMode": "Standard cache-läge",
"PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Anpassa till bild",
@ -1115,11 +1373,19 @@
"PE.Views.FileMenuPanels.Settings.txtLast": "Visa senaste",
"PE.Views.FileMenuPanels.Settings.txtMac": "som OS X",
"PE.Views.FileMenuPanels.Settings.txtNative": "Orginal",
"PE.Views.FileMenuPanels.Settings.txtProofing": "Korrektur",
"PE.Views.FileMenuPanels.Settings.txtPt": "Punkt",
"PE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktivera alla",
"PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktivera alla makron utan avisering",
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Stavningskontroll",
"PE.Views.FileMenuPanels.Settings.txtStopMacros": "Inaktivera allt",
"PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Inaktivera alla makron utan avisering",
"PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Visa meddelanden",
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Inaktivera alla makron med en avisering",
"PE.Views.FileMenuPanels.Settings.txtWin": "som Windows",
"PE.Views.HeaderFooterDialog.applyAllText": "Tillämpa på alla",
"PE.Views.HeaderFooterDialog.applyText": "Tillämpa",
"PE.Views.HeaderFooterDialog.diffLanguage": "du kan inte använda ett datumformat på ett annat språk än bildmastern. <br> För att ändra mastern, klicka på \"Apply to all\" istället för \"Apply\"",
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Varning",
"PE.Views.HeaderFooterDialog.textDateTime": "Datum och tid",
"PE.Views.HeaderFooterDialog.textFixed": "Fast",
@ -1148,6 +1414,7 @@
"PE.Views.HyperlinkSettingsDialog.txtNext": "Nästa bild",
"PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"",
"PE.Views.HyperlinkSettingsDialog.txtPrev": "Föregående bild",
"PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Detta fält är begränsat till 2083 tecken",
"PE.Views.HyperlinkSettingsDialog.txtSlide": "Bild",
"PE.Views.ImageSettings.textAdvanced": "Visa avancerade inställningar",
"PE.Views.ImageSettings.textCrop": "Beskär",
@ -1158,6 +1425,7 @@
"PE.Views.ImageSettings.textFitSlide": "Anpassa till bild",
"PE.Views.ImageSettings.textFlip": "Vänd",
"PE.Views.ImageSettings.textFromFile": "Från fil",
"PE.Views.ImageSettings.textFromStorage": "Från lagring",
"PE.Views.ImageSettings.textFromUrl": "Från URL",
"PE.Views.ImageSettings.textHeight": "Höjd",
"PE.Views.ImageSettings.textHint270": "Rotera 90° moturs",
@ -1196,7 +1464,9 @@
"PE.Views.LeftMenu.tipSupport": "Feedback & support",
"PE.Views.LeftMenu.tipTitles": "Titlar",
"PE.Views.LeftMenu.txtDeveloper": "Utvecklarläge",
"PE.Views.LeftMenu.txtLimit": "Begränsad åtkomst",
"PE.Views.LeftMenu.txtTrial": "TESTLÄGE",
"PE.Views.LeftMenu.txtTrialDev": "Testutvecklarläge",
"PE.Views.ParagraphSettings.strLineHeight": "Radavstånd",
"PE.Views.ParagraphSettings.strParagraphSpacing": "Styckets avstånd",
"PE.Views.ParagraphSettings.strSpacingAfter": "Efter",
@ -1264,12 +1534,14 @@
"PE.Views.ShapeSettings.strTransparency": "Opacitet",
"PE.Views.ShapeSettings.strType": "Typ",
"PE.Views.ShapeSettings.textAdvanced": "Visa avancerade inställningar",
"PE.Views.ShapeSettings.textAngle": "Vinkel",
"PE.Views.ShapeSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.<br> Vänligen ange ett värde mellan 0 och 1584 pt.",
"PE.Views.ShapeSettings.textColor": "Färgfyllnad",
"PE.Views.ShapeSettings.textDirection": "Riktning",
"PE.Views.ShapeSettings.textEmptyPattern": "Inget mönster",
"PE.Views.ShapeSettings.textFlip": "Vänd",
"PE.Views.ShapeSettings.textFromFile": "Från fil",
"PE.Views.ShapeSettings.textFromStorage": "Från lagring",
"PE.Views.ShapeSettings.textFromUrl": "Från URL",
"PE.Views.ShapeSettings.textGradient": "Fyllning",
"PE.Views.ShapeSettings.textGradientFill": "Fyllning",
@ -1281,14 +1553,18 @@
"PE.Views.ShapeSettings.textLinear": "Linjär",
"PE.Views.ShapeSettings.textNoFill": "Ingen fyllning",
"PE.Views.ShapeSettings.textPatternFill": "Mönster",
"PE.Views.ShapeSettings.textPosition": "Position",
"PE.Views.ShapeSettings.textRadial": "Radiell",
"PE.Views.ShapeSettings.textRotate90": "Rotera 90°",
"PE.Views.ShapeSettings.textRotation": "Rotation",
"PE.Views.ShapeSettings.textSelectImage": "Välj bild",
"PE.Views.ShapeSettings.textSelectTexture": "Välj",
"PE.Views.ShapeSettings.textStretch": "Sträck",
"PE.Views.ShapeSettings.textStyle": "Stil",
"PE.Views.ShapeSettings.textTexture": "Från mönster",
"PE.Views.ShapeSettings.textTile": "Bricka",
"PE.Views.ShapeSettings.tipAddGradientPoint": "Lägg till lutningspunkt",
"PE.Views.ShapeSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten",
"PE.Views.ShapeSettings.txtBrownPaper": "Brunt papper",
"PE.Views.ShapeSettings.txtCanvas": "Duk",
"PE.Views.ShapeSettings.txtCarton": "Kartong",
@ -1309,8 +1585,12 @@
"PE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel",
"PE.Views.ShapeSettingsAdvanced.textAngle": "Vinkel",
"PE.Views.ShapeSettingsAdvanced.textArrows": "Pilar",
"PE.Views.ShapeSettingsAdvanced.textAutofit": "Anpassa automatiskt",
"PE.Views.ShapeSettingsAdvanced.textBeginSize": "Starta storlek",
"PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Startstil",
"PE.Views.ShapeSettingsAdvanced.textBevel": "Fasning",
"PE.Views.ShapeSettingsAdvanced.textBottom": "Nederst",
"PE.Views.ShapeSettingsAdvanced.textCapType": "Typ av skiftläge",
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Antal kolumner",
"PE.Views.ShapeSettingsAdvanced.textEndSize": "Slutstorlek",
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "Avslutningsstil",
@ -1323,9 +1603,12 @@
"PE.Views.ShapeSettingsAdvanced.textLeft": "Vänster",
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "Linjestil",
"PE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
"PE.Views.ShapeSettingsAdvanced.textNofit": "Anpassa inte automatiskt",
"PE.Views.ShapeSettingsAdvanced.textResizeFit": "Ändra storlek så den passar texten",
"PE.Views.ShapeSettingsAdvanced.textRight": "Höger",
"PE.Views.ShapeSettingsAdvanced.textRotation": "Rotation",
"PE.Views.ShapeSettingsAdvanced.textRound": "Avrunda",
"PE.Views.ShapeSettingsAdvanced.textShrink": "Krymp text vid överflöd",
"PE.Views.ShapeSettingsAdvanced.textSize": "Storlek",
"PE.Views.ShapeSettingsAdvanced.textSpacing": "Avstånd mellan kolumner",
"PE.Views.ShapeSettingsAdvanced.textSquare": "Fyrkant",
@ -1345,6 +1628,7 @@
"PE.Views.SignatureSettings.strValid": "Giltiga signaturer",
"PE.Views.SignatureSettings.txtContinueEditing": "Redigera ändå",
"PE.Views.SignatureSettings.txtEditWarning": "Vid ändring kommer signaturer tas bort från presentationen.<br>Är du säker på att fortsätta?",
"PE.Views.SignatureSettings.txtRemoveWarning": "Vill du ta bort den här signaturen? <br> Kan inte ångras.",
"PE.Views.SignatureSettings.txtSigned": "Giltiga signaturer har lagts till presentationen. Presentationen är skyddad mot ändring.",
"PE.Views.SignatureSettings.txtSignedInvalid": "Vissa av de digitala signaturerna i presentationen är ogiltiga eller kunde inte verifieras. Presentationen är skyddad från redigering.",
"PE.Views.SlideSettings.strBackground": "Bakgrundsfärg",
@ -1358,18 +1642,24 @@
"PE.Views.SlideSettings.strPattern": "Mönster",
"PE.Views.SlideSettings.strSlideNum": "Visa bildnummer",
"PE.Views.SlideSettings.strStartOnClick": "Börja vid klick",
"PE.Views.SlideSettings.strTransparency": "Opacitet",
"PE.Views.SlideSettings.textAdvanced": "Visa avancerade inställningar",
"PE.Views.SlideSettings.textAngle": "Vinkel",
"PE.Views.SlideSettings.textApplyAll": "Applicera på alla bilder",
"PE.Views.SlideSettings.textBlack": "Genom svart",
"PE.Views.SlideSettings.textBottom": "Nederst",
"PE.Views.SlideSettings.textBottomLeft": "Nederst vänster",
"PE.Views.SlideSettings.textBottomRight": "Nederst höger",
"PE.Views.SlideSettings.textClock": "Klocka",
"PE.Views.SlideSettings.textClockwise": "Medurs",
"PE.Views.SlideSettings.textColor": "Färgfyllnad",
"PE.Views.SlideSettings.textCounterclockwise": "Moturs",
"PE.Views.SlideSettings.textCover": "Omslag",
"PE.Views.SlideSettings.textDirection": "Riktning",
"PE.Views.SlideSettings.textEmptyPattern": "Inget mönster",
"PE.Views.SlideSettings.textFade": "Fade",
"PE.Views.SlideSettings.textFromFile": "Från fil",
"PE.Views.SlideSettings.textFromStorage": "Från lagring",
"PE.Views.SlideSettings.textFromUrl": "Från URL",
"PE.Views.SlideSettings.textGradient": "Fyllning",
"PE.Views.SlideSettings.textGradientFill": "Fyllning",
@ -1381,12 +1671,14 @@
"PE.Views.SlideSettings.textNoFill": "Ingen fyllning",
"PE.Views.SlideSettings.textNone": "Inga",
"PE.Views.SlideSettings.textPatternFill": "Mönster",
"PE.Views.SlideSettings.textPosition": "Position",
"PE.Views.SlideSettings.textPreview": "Förhandsgranska",
"PE.Views.SlideSettings.textPush": "Tryck",
"PE.Views.SlideSettings.textRadial": "Radiell",
"PE.Views.SlideSettings.textReset": "Återställ ändringar",
"PE.Views.SlideSettings.textRight": "Höger",
"PE.Views.SlideSettings.textSec": "s",
"PE.Views.SlideSettings.textSelectImage": "Välj bild",
"PE.Views.SlideSettings.textSelectTexture": "Välj",
"PE.Views.SlideSettings.textSmoothly": "Smoothly",
"PE.Views.SlideSettings.textSplit": "Dela",
@ -1397,6 +1689,7 @@
"PE.Views.SlideSettings.textTop": "Överst",
"PE.Views.SlideSettings.textTopLeft": "Vänsterjustera i överkant",
"PE.Views.SlideSettings.textTopRight": "Övre höger",
"PE.Views.SlideSettings.textUnCover": "Avtäcka",
"PE.Views.SlideSettings.textVerticalIn": "Vertikal in",
"PE.Views.SlideSettings.textVerticalOut": "Vertikal ut",
"PE.Views.SlideSettings.textWedge": "Kil",
@ -1405,6 +1698,8 @@
"PE.Views.SlideSettings.textZoomIn": "Zooma in",
"PE.Views.SlideSettings.textZoomOut": "Zooma ut",
"PE.Views.SlideSettings.textZoomRotate": "Zooma och rotera",
"PE.Views.SlideSettings.tipAddGradientPoint": "Lägg till lutningspunkt",
"PE.Views.SlideSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten",
"PE.Views.SlideSettings.txtBrownPaper": "Brunt papper",
"PE.Views.SlideSettings.txtCanvas": "Duk",
"PE.Views.SlideSettings.txtCarton": "Kartong",
@ -1425,15 +1720,18 @@
"PE.Views.SlideSizeSettings.textSlideSize": "Bild storlek",
"PE.Views.SlideSizeSettings.textTitle": "Bilde storlek inställningar",
"PE.Views.SlideSizeSettings.textWidth": "Bredd",
"PE.Views.SlideSizeSettings.txt35": "35 mm diabilder",
"PE.Views.SlideSizeSettings.txtA3": "A3 Papper (297x420 mm)",
"PE.Views.SlideSizeSettings.txtA4": "A4 Papper (210x297 mm)",
"PE.Views.SlideSizeSettings.txtB4": "B4 (ICO) Papper (250x353 mm)",
"PE.Views.SlideSizeSettings.txtB5": "B5 (ICO) Papper (176x250 mm)",
"PE.Views.SlideSizeSettings.txtBanner": "Baner",
"PE.Views.SlideSizeSettings.txtCustom": "Anpassad",
"PE.Views.SlideSizeSettings.txtLedger": "Ledger Papper (11x17 in)",
"PE.Views.SlideSizeSettings.txtLetter": "Letter Papper (8.5x11 in)",
"PE.Views.SlideSizeSettings.txtOverhead": "Overhead",
"PE.Views.SlideSizeSettings.txtStandard": "Standard (4:3)",
"PE.Views.SlideSizeSettings.txtWidescreen": "Bredbild",
"PE.Views.Statusbar.goToPageText": "Gå till bild",
"PE.Views.Statusbar.pageIndexText": "Bild {0} of {1}",
"PE.Views.Statusbar.textShowBegin": "Visa presentation från början",
@ -1464,6 +1762,7 @@
"PE.Views.TableSettings.splitCellTitleText": "Dela cell",
"PE.Views.TableSettings.textAdvanced": "Visa avancerade inställningar",
"PE.Views.TableSettings.textBackColor": "Bakgrundsfärg",
"PE.Views.TableSettings.textBanded": "Banded",
"PE.Views.TableSettings.textBorderColor": "Färg",
"PE.Views.TableSettings.textBorders": "Ramutseende",
"PE.Views.TableSettings.textCellSize": "Cell storlek",
@ -1494,6 +1793,8 @@
"PE.Views.TableSettings.txtNoBorders": "Inga ramar",
"PE.Views.TableSettings.txtTable_Accent": "Accent",
"PE.Views.TableSettings.txtTable_DarkStyle": "Mörk stil",
"PE.Views.TableSettings.txtTable_LightStyle": "Light Style",
"PE.Views.TableSettings.txtTable_MediumStyle": "Medium stil",
"PE.Views.TableSettings.txtTable_NoGrid": "Ingen tabell",
"PE.Views.TableSettings.txtTable_NoStyle": "Ingen stil",
"PE.Views.TableSettings.txtTable_TableGrid": "Tabellnät",
@ -1520,6 +1821,7 @@
"PE.Views.TextArtSettings.strStroke": "Genomslag",
"PE.Views.TextArtSettings.strTransparency": "Opacitet",
"PE.Views.TextArtSettings.strType": "Typ",
"PE.Views.TextArtSettings.textAngle": "Vinkel",
"PE.Views.TextArtSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.<br> Vänligen ange ett värde mellan 0 och 1584 pt.",
"PE.Views.TextArtSettings.textColor": "Färgfyllnad",
"PE.Views.TextArtSettings.textDirection": "Riktning",
@ -1532,6 +1834,7 @@
"PE.Views.TextArtSettings.textLinear": "Linjär",
"PE.Views.TextArtSettings.textNoFill": "Ingen fyllning",
"PE.Views.TextArtSettings.textPatternFill": "Mönster",
"PE.Views.TextArtSettings.textPosition": "Position",
"PE.Views.TextArtSettings.textRadial": "Radiell",
"PE.Views.TextArtSettings.textSelectTexture": "Välj",
"PE.Views.TextArtSettings.textStretch": "Sträck",
@ -1540,6 +1843,8 @@
"PE.Views.TextArtSettings.textTexture": "Från mönster",
"PE.Views.TextArtSettings.textTile": "Bricka",
"PE.Views.TextArtSettings.textTransform": "Omvandla",
"PE.Views.TextArtSettings.tipAddGradientPoint": "Lägg till lutningspunkt",
"PE.Views.TextArtSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten",
"PE.Views.TextArtSettings.txtBrownPaper": "Brunt papper",
"PE.Views.TextArtSettings.txtCanvas": "Duk",
"PE.Views.TextArtSettings.txtCarton": "Kartong",
@ -1571,13 +1876,19 @@
"PE.Views.Toolbar.capTabFile": "Arkiv",
"PE.Views.Toolbar.capTabHome": "Hem",
"PE.Views.Toolbar.capTabInsert": "Infoga",
"PE.Views.Toolbar.mniCapitalizeWords": "Stor bokstav varje ord",
"PE.Views.Toolbar.mniCustomTable": "Infoga egen tabell",
"PE.Views.Toolbar.mniImageFromFile": "Bild från fil",
"PE.Views.Toolbar.mniImageFromStorage": "Bild från lagring",
"PE.Views.Toolbar.mniImageFromUrl": "Bild från URL",
"PE.Views.Toolbar.mniLowerCase": "Integraler",
"PE.Views.Toolbar.mniSentenceCase": "Stor bokstav varje mening",
"PE.Views.Toolbar.mniSlideAdvanced": "Avancerade inställningar",
"PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)",
"PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)",
"PE.Views.Toolbar.mniToggleCase": "vÄXLA vERSALER",
"PE.Views.Toolbar.mniUpperCase": "VERSALER",
"PE.Views.Toolbar.strMenuNoFill": "Ingen fyllning",
"PE.Views.Toolbar.textAlignBottom": "Justera text till botten",
"PE.Views.Toolbar.textAlignCenter": "Centrera text",
"PE.Views.Toolbar.textAlignJust": "Justering",
@ -1590,7 +1901,12 @@
"PE.Views.Toolbar.textArrangeForward": "Flytta framåt",
"PE.Views.Toolbar.textArrangeFront": "Flytta till förgrund",
"PE.Views.Toolbar.textBold": "Fet",
"PE.Views.Toolbar.textColumnsCustom": "Anpassade kolumner",
"PE.Views.Toolbar.textColumnsOne": "En kolumn",
"PE.Views.Toolbar.textColumnsThree": "Tre kolumner",
"PE.Views.Toolbar.textColumnsTwo": "Två kolumner",
"PE.Views.Toolbar.textItalic": "Kursiv",
"PE.Views.Toolbar.textListSettings": "Listinställningar",
"PE.Views.Toolbar.textNewColor": "Anpassad färg",
"PE.Views.Toolbar.textShapeAlignBottom": "Justera nederst",
"PE.Views.Toolbar.textShapeAlignCenter": "Centrera",
@ -1614,19 +1930,24 @@
"PE.Views.Toolbar.textUnderline": "Understrykning",
"PE.Views.Toolbar.tipAddSlide": "Lägg till ny bild",
"PE.Views.Toolbar.tipBack": "Tillbaka",
"PE.Views.Toolbar.tipChangeCase": "Ändra skiftläge",
"PE.Views.Toolbar.tipChangeChart": "Ändra diagramtyp",
"PE.Views.Toolbar.tipChangeSlide": "Ändra bildlayout",
"PE.Views.Toolbar.tipClearStyle": "Rensa stil",
"PE.Views.Toolbar.tipColorSchemas": "Ändra färgschema",
"PE.Views.Toolbar.tipColumns": "Infoga kolumner",
"PE.Views.Toolbar.tipCopy": "Kopiera",
"PE.Views.Toolbar.tipCopyStyle": "Kopiera stil",
"PE.Views.Toolbar.tipDateTime": "Infoga aktuellt datum och tid",
"PE.Views.Toolbar.tipDecFont": "Minska typsnittstorlek",
"PE.Views.Toolbar.tipDecPrLeft": "Minska indrag",
"PE.Views.Toolbar.tipEditHeader": "Redigera foten",
"PE.Views.Toolbar.tipFontColor": "Fontfärg",
"PE.Views.Toolbar.tipFontName": "Font",
"PE.Views.Toolbar.tipFontSize": "Fontstorlek",
"PE.Views.Toolbar.tipHAligh": "Horisontell justering",
"PE.Views.Toolbar.tipHighlightColor": "Markera färg",
"PE.Views.Toolbar.tipIncFont": "Öka fontstorlek",
"PE.Views.Toolbar.tipIncPrLeft": "Öka indrag",
"PE.Views.Toolbar.tipInsertAudio": "Infoga ljud",
"PE.Views.Toolbar.tipInsertChart": "Infoga diagram",
@ -1670,10 +1991,15 @@
"PE.Views.Toolbar.txtScheme16": "Papper",
"PE.Views.Toolbar.txtScheme17": "Solstånd",
"PE.Views.Toolbar.txtScheme18": "Teknik",
"PE.Views.Toolbar.txtScheme19": "Vandra",
"PE.Views.Toolbar.txtScheme2": "Gråskala",
"PE.Views.Toolbar.txtScheme20": "Urban",
"PE.Views.Toolbar.txtScheme21": "Fart",
"PE.Views.Toolbar.txtScheme22": "New Office",
"PE.Views.Toolbar.txtScheme3": "Apex",
"PE.Views.Toolbar.txtScheme4": "Aspekt",
"PE.Views.Toolbar.txtScheme5": "Medborgerlig",
"PE.Views.Toolbar.txtScheme6": "Öppen plats",
"PE.Views.Toolbar.txtScheme7": "Rimlighet",
"PE.Views.Toolbar.txtScheme8": "Flöde",
"PE.Views.Toolbar.txtScheme9": "Grund",

View file

@ -196,7 +196,8 @@
h3 {
margin: 0;
font-size: 10pt;
color: #665;
color: @text-normal-ie;
color: @text-normal;
font-weight: bold;
padding: 0 0 10px 10px;
white-space: nowrap;
@ -230,7 +231,8 @@
hr {
margin: 0;
border-bottom: none;
border-color: #e1e1e1;
border-top: @scaled-one-px-value-ie solid @border-divider-ie;
border-top: @scaled-one-px-value solid @border-divider;
}
.thumb-list {

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,465 @@
{
"About": {
"textAbout": "About",
"textAddress": "Address",
"textBack": "Back",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Warning",
"textAddComment": "Add Comment",
"textAddReply": "Add Reply",
"textBack": "Back",
"textCancel": "Cancel",
"textCollaboration": "Collaboration",
"textComments": "Comments",
"textDeleteComment": "Delete Comment",
"textDeleteReply": "Delete Reply",
"textDone": "Done",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textNoComments": "This document doesn't contain comments",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUsers": "Users"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuAddComment": "Add Comment",
"menuAddLink": "Add Link",
"menuCancel": "Cancel",
"menuDelete": "Delete",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Controller": {
"Main": {
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"closeButtonText": "Close File",
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"SDK": {
"Chart": "Chart",
"Click to add first slide": "Click to add first slide",
"Click to add notes": "Click to add notes",
"ClipArt": "Clip Art",
"Date and time": "Date and time",
"Diagram": "Diagram",
"Diagram Title": "Chart Title",
"Footer": "Footer",
"Header": "Header",
"Image": "Image",
"Loading": "Loading",
"Media": "Media",
"None": "None",
"Picture": "Picture",
"Series": "Series",
"Slide number": "Slide number",
"Slide subtitle": "Slide subtitle",
"Slide text": "Slide text",
"Slide title": "Slide title",
"Table": "Table",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here"
},
"textAnonymous": "Anonymous",
"textBuyNow": "Visit website",
"textClose": "Close",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textOpenFile": "Enter a password to open the file",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password to the file will be reset",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update it and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit the file."
}
},
"Error": {
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.<br>When you click the 'OK' button, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download' option to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limitation.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.",
"errorUserDrop": "The file cannot be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"openErrorText": "An error has occurred while opening the file",
"saveErrorText": "An error has occurred while saving the file",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"loadThemeTextText": "Loading theme...",
"loadThemeTitleText": "Loading Theme",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this page",
"stayButtonText": "Stay on this Page"
},
"View": {
"Add": {
"notcriticalErrorTitle": "Warning",
"textAddLink": "Add Link",
"textAddress": "Address",
"textBack": "Back",
"textCancel": "Cancel",
"textColumns": "Columns",
"textComment": "Comment",
"textDefault": "Selected text",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify the image URL.",
"textExternalLink": "External Link",
"textFirstSlide": "First Slide",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertImage": "Insert Image",
"textLastSlide": "Last Slide",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkTo": "Link to",
"textLinkType": "Link Type",
"textNextSlide": "Next Slide",
"textOther": "Other",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPreviousSlide": "Previous Slide",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textShape": "Shape",
"textSlide": "Slide",
"textSlideInThisPresentation": "Slide in this Presentation",
"textSlideNumber": "Slide Number",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Edit": {
"notcriticalErrorTitle": "Warning",
"textActualSize": "Actual Size",
"textAddCustomColor": "Add Custom Color",
"textAdditional": "Additional",
"textAdditionalFormatting": "Additional Formatting",
"textAddress": "Address",
"textAfter": "After",
"textAlign": "Align",
"textAlignBottom": "Align Bottom",
"textAlignCenter": "Align Center",
"textAlignLeft": "Align Left",
"textAlignMiddle": "Align Middle",
"textAlignRight": "Align Right",
"textAlignTop": "Align Top",
"textAllCaps": "All Caps",
"textApplyAll": "Apply to All Slides",
"textAuto": "Auto",
"textBack": "Back",
"textBandedColumn": "Banded Column",
"textBandedRow": "Banded Row",
"textBefore": "Before",
"textBlack": "Through Black",
"textBorder": "Border",
"textBottom": "Bottom",
"textBottomLeft": "Bottom-Left",
"textBottomRight": "Bottom-Right",
"textBringToForeground": "Bring to Foreground",
"textBullets": "Bullets",
"textBulletsAndNumbers": "Bullets & Numbers",
"textCaseSensitive": "Case Sensitive",
"textCellMargins": "Cell Margins",
"textChart": "Chart",
"textClock": "Clock",
"textClockwise": "Clockwise",
"textColor": "Color",
"textCounterclockwise": "Counterclockwise",
"textCover": "Cover",
"textCustomColor": "Custom Color",
"textDefault": "Selected text",
"textDelay": "Delay",
"textDeleteSlide": "Delete Slide",
"textDisplay": "Display",
"textDistanceFromText": "Distance From Text",
"textDistributeHorizontally": "Distribute Horizontally",
"textDistributeVertically": "Distribute Vertically",
"textDone": "Done",
"textDoubleStrikethrough": "Double Strikethrough",
"textDuplicateSlide": "Duplicate Slide",
"textDuration": "Duration",
"textEditLink": "Edit Link",
"textEffect": "Effect",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify the image URL.",
"textExternalLink": "External Link",
"textFade": "Fade",
"textFill": "Fill",
"textFinalMessage": "The end of slide preview. Click to exit.",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFirstColumn": "First Column",
"textFirstSlide": "First Slide",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFromLibrary": "Picture from Library",
"textFromURL": "Picture from URL",
"textHeaderRow": "Header Row",
"textHighlight": "Highlight Results",
"textHighlightColor": "Highlight Color",
"textHorizontalIn": "Horizontal In",
"textHorizontalOut": "Horizontal Out",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textLastColumn": "Last Column",
"textLastSlide": "Last Slide",
"textLayout": "Layout",
"textLeft": "Left",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkTo": "Link to",
"textLinkType": "Link Type",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textNextSlide": "Next Slide",
"textNone": "None",
"textNoStyles": "No styles for this type of chart.",
"textNoTextFound": "Text not found",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textNumbers": "Numbers",
"textOpacity": "Opacity",
"textOptions": "Options",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPreviousSlide": "Previous Slide",
"textPt": "pt",
"textPush": "Push",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textReplaceImage": "Replace Image",
"textRight": "Right",
"textScreenTip": "Screen Tip",
"textSearch": "Search",
"textSec": "s",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textShape": "Shape",
"textSize": "Size",
"textSlide": "Slide",
"textSlideInThisPresentation": "Slide in this Presentation",
"textSlideNumber": "Slide Number",
"textSmallCaps": "Small Caps",
"textSmoothly": "Smoothly",
"textSplit": "Split",
"textStartOnClick": "Start On Click",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textText": "Text",
"textTheme": "Theme",
"textTop": "Top",
"textTopLeft": "Top-Left",
"textTopRight": "Top-Right",
"textTotalRow": "Total Row",
"textTransition": "Transition",
"textType": "Type",
"textUnCover": "UnCover",
"textVerticalIn": "Vertical In",
"textVerticalOut": "Vertical Out",
"textWedge": "Wedge",
"textWipe": "Wipe",
"textZoom": "Zoom",
"textZoomIn": "Zoom In",
"textZoomOut": "Zoom Out",
"textZoomRotate": "Zoom and Rotate"
},
"Settings": {
"mniSlideStandard": "Standard (4:3)",
"mniSlideWide": "Widescreen (16:9)",
"textAbout": "About",
"textAddress": "address:",
"textApplication": "Application",
"textApplicationSettings": "Application Settings",
"textAuthor": "Author",
"textBack": "Back",
"textCaseSensitive": "Case Sensitive",
"textCentimeter": "Centimeter",
"textCollaboration": "Collaboration",
"textColorSchemes": "Color Schemes",
"textComment": "Comment",
"textCreated": "Created",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDone": "Done",
"textDownload": "Download",
"textDownloadAs": "Download As...",
"textEmail": "email:",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textHelp": "Help",
"textHighlight": "Highlight Results",
"textInch": "Inch",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textNoTextFound": "Text not found",
"textOwner": "Owner",
"textPoint": "Point",
"textPoweredBy": "Powered By",
"textPresentationInfo": "Presentation Info",
"textPresentationSettings": "Presentation Settings",
"textPresentationTitle": "Presentation Title",
"textPrint": "Print",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSlideSize": "Slide Size",
"textSpellcheck": "Spell Checking",
"textSubject": "Subject",
"textTel": "tel:",
"textTitle": "Title",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"textVersion": "Version",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
}
}
}

View file

@ -450,6 +450,8 @@
"txtScheme18": "Tècnic",
"txtScheme19": "Excursió",
"txtScheme2": "Escala de grisos",
"txtScheme20": "Urbà",
"txtScheme21": "Empenta",
"txtScheme22": "Nova Oficina",
"txtScheme3": "Vèrtex",
"txtScheme4": "Aspecte",

View file

@ -1,3 +1,465 @@
{
"About": {
"textAbout": "About",
"textAddress": "Address",
"textBack": "Back",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Warning",
"textAddComment": "Add Comment",
"textAddReply": "Add Reply",
"textBack": "Back",
"textCancel": "Cancel",
"textCollaboration": "Collaboration",
"textComments": "Comments",
"textDeleteComment": "Delete Comment",
"textDeleteReply": "Delete Reply",
"textDone": "Done",
"textEdit": "Edit",
"textEditComment": "Edit Comment",
"textEditReply": "Edit Reply",
"textEditUser": "Users who are editing the file:",
"textMessageDeleteComment": "Do you really want to delete this comment?",
"textMessageDeleteReply": "Do you really want to delete this reply?",
"textNoComments": "This document doesn't contain comments",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUsers": "Users"
},
"ThemeColorPalette": {
"textCustomColors": "Custom Colors",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
}
},
"ContextMenu": {
"errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"menuAddComment": "Add Comment",
"menuAddLink": "Add Link",
"menuCancel": "Cancel",
"menuDelete": "Delete",
"menuDeleteTable": "Delete Table",
"menuEdit": "Edit",
"menuMerge": "Merge",
"menuMore": "More",
"menuOpenLink": "Open Link",
"menuSplit": "Split",
"menuViewComment": "View Comment",
"textColumns": "Columns",
"textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"textDoNotShowAgain": "Don't show again",
"textRows": "Rows"
},
"Controller": {
"Main": {
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"closeButtonText": "Close File",
"criticalErrorTitle": "Error",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"SDK": {
"Chart": "Chart",
"Click to add first slide": "Click to add first slide",
"Click to add notes": "Click to add notes",
"ClipArt": "Clip Art",
"Date and time": "Date and time",
"Diagram": "Diagram",
"Diagram Title": "Chart Title",
"Footer": "Footer",
"Header": "Header",
"Image": "Image",
"Loading": "Loading",
"Media": "Media",
"None": "None",
"Picture": "Picture",
"Series": "Series",
"Slide number": "Slide number",
"Slide subtitle": "Slide subtitle",
"Slide text": "Slide text",
"Slide title": "Slide title",
"Table": "Table",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here"
},
"textAnonymous": "Anonymous",
"textBuyNow": "Visit website",
"textClose": "Close",
"textContactUs": "Contact sales",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.",
"textGuest": "Guest",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textNo": "No",
"textNoLicenseTitle": "License limit reached",
"textOpenFile": "Enter a password to open the file",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleLicenseExp": "License expired",
"titleServerVersion": "Editor updated",
"titleUpdateVersion": "Version changed",
"txtIncorrectPwd": "Password is incorrect",
"txtProtected": "Once you enter the password and open the file, the current password to the file will be reset",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update it and refresh the page.",
"warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit the file."
}
},
"Error": {
"convertationTimeoutText": "Conversion timeout exceeded.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"criticalErrorTitle": "Error",
"downloadErrorText": "Download failed.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your admin.",
"errorBadImageUrl": "Image url is incorrect",
"errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.<br>When you click the 'OK' button, you will be prompted to download the document.",
"errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"errorDataRange": "Incorrect data range.",
"errorDefaultMessage": "Error code: %1",
"errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download' option to save the file backup copy locally.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limitation.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorKeyExpire": "Key descriptor expired",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.",
"errorUserDrop": "The file cannot be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but you won't be able to download it until the connection is restored and the page is reloaded.",
"notcriticalErrorTitle": "Warning",
"openErrorText": "An error has occurred while opening the file",
"saveErrorText": "An error has occurred while saving the file",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageFileCountMessage": "No images uploaded.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
},
"LongActions": {
"applyChangesTextText": "Loading data...",
"applyChangesTitleText": "Loading Data",
"downloadTextText": "Downloading document...",
"downloadTitleText": "Downloading Document",
"loadFontsTextText": "Loading data...",
"loadFontsTitleText": "Loading Data",
"loadFontTextText": "Loading data...",
"loadFontTitleText": "Loading Data",
"loadImagesTextText": "Loading images...",
"loadImagesTitleText": "Loading Images",
"loadImageTextText": "Loading image...",
"loadImageTitleText": "Loading Image",
"loadingDocumentTextText": "Loading document...",
"loadingDocumentTitleText": "Loading document",
"loadThemeTextText": "Loading theme...",
"loadThemeTitleText": "Loading Theme",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"textLoadingDocument": "Loading document",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
},
"Toolbar": {
"dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"leaveButtonText": "Leave this page",
"stayButtonText": "Stay on this Page"
},
"View": {
"Add": {
"notcriticalErrorTitle": "Warning",
"textAddLink": "Add Link",
"textAddress": "Address",
"textBack": "Back",
"textCancel": "Cancel",
"textColumns": "Columns",
"textComment": "Comment",
"textDefault": "Selected text",
"textDisplay": "Display",
"textEmptyImgUrl": "You need to specify the image URL.",
"textExternalLink": "External Link",
"textFirstSlide": "First Slide",
"textImage": "Image",
"textImageURL": "Image URL",
"textInsert": "Insert",
"textInsertImage": "Insert Image",
"textLastSlide": "Last Slide",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkTo": "Link to",
"textLinkType": "Link Type",
"textNextSlide": "Next Slide",
"textOther": "Other",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPreviousSlide": "Previous Slide",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textShape": "Shape",
"textSlide": "Slide",
"textSlideInThisPresentation": "Slide in this Presentation",
"textSlideNumber": "Slide Number",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
},
"Edit": {
"notcriticalErrorTitle": "Warning",
"textActualSize": "Actual Size",
"textAddCustomColor": "Add Custom Color",
"textAdditional": "Additional",
"textAdditionalFormatting": "Additional Formatting",
"textAddress": "Address",
"textAfter": "After",
"textAlign": "Align",
"textAlignBottom": "Align Bottom",
"textAlignCenter": "Align Center",
"textAlignLeft": "Align Left",
"textAlignMiddle": "Align Middle",
"textAlignRight": "Align Right",
"textAlignTop": "Align Top",
"textAllCaps": "All Caps",
"textApplyAll": "Apply to All Slides",
"textAuto": "Auto",
"textBack": "Back",
"textBandedColumn": "Banded Column",
"textBandedRow": "Banded Row",
"textBefore": "Before",
"textBlack": "Through Black",
"textBorder": "Border",
"textBottom": "Bottom",
"textBottomLeft": "Bottom-Left",
"textBottomRight": "Bottom-Right",
"textBringToForeground": "Bring to Foreground",
"textBullets": "Bullets",
"textBulletsAndNumbers": "Bullets & Numbers",
"textCaseSensitive": "Case Sensitive",
"textCellMargins": "Cell Margins",
"textChart": "Chart",
"textClock": "Clock",
"textClockwise": "Clockwise",
"textColor": "Color",
"textCounterclockwise": "Counterclockwise",
"textCover": "Cover",
"textCustomColor": "Custom Color",
"textDefault": "Selected text",
"textDelay": "Delay",
"textDeleteSlide": "Delete Slide",
"textDisplay": "Display",
"textDistanceFromText": "Distance From Text",
"textDistributeHorizontally": "Distribute Horizontally",
"textDistributeVertically": "Distribute Vertically",
"textDone": "Done",
"textDoubleStrikethrough": "Double Strikethrough",
"textDuplicateSlide": "Duplicate Slide",
"textDuration": "Duration",
"textEditLink": "Edit Link",
"textEffect": "Effect",
"textEffects": "Effects",
"textEmptyImgUrl": "You need to specify the image URL.",
"textExternalLink": "External Link",
"textFade": "Fade",
"textFill": "Fill",
"textFinalMessage": "The end of slide preview. Click to exit.",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFirstColumn": "First Column",
"textFirstSlide": "First Slide",
"textFontColor": "Font Color",
"textFontColors": "Font Colors",
"textFonts": "Fonts",
"textFromLibrary": "Picture from Library",
"textFromURL": "Picture from URL",
"textHeaderRow": "Header Row",
"textHighlight": "Highlight Results",
"textHighlightColor": "Highlight Color",
"textHorizontalIn": "Horizontal In",
"textHorizontalOut": "Horizontal Out",
"textHyperlink": "Hyperlink",
"textImage": "Image",
"textImageURL": "Image URL",
"textLastColumn": "Last Column",
"textLastSlide": "Last Slide",
"textLayout": "Layout",
"textLeft": "Left",
"textLetterSpacing": "Letter Spacing",
"textLineSpacing": "Line Spacing",
"textLink": "Link",
"textLinkSettings": "Link Settings",
"textLinkTo": "Link to",
"textLinkType": "Link Type",
"textMoveBackward": "Move Backward",
"textMoveForward": "Move Forward",
"textNextSlide": "Next Slide",
"textNone": "None",
"textNoStyles": "No styles for this type of chart.",
"textNoTextFound": "Text not found",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textNumbers": "Numbers",
"textOpacity": "Opacity",
"textOptions": "Options",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPreviousSlide": "Previous Slide",
"textPt": "pt",
"textPush": "Push",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textReplaceImage": "Replace Image",
"textRight": "Right",
"textScreenTip": "Screen Tip",
"textSearch": "Search",
"textSec": "s",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textShape": "Shape",
"textSize": "Size",
"textSlide": "Slide",
"textSlideInThisPresentation": "Slide in this Presentation",
"textSlideNumber": "Slide Number",
"textSmallCaps": "Small Caps",
"textSmoothly": "Smoothly",
"textSplit": "Split",
"textStartOnClick": "Start On Click",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textText": "Text",
"textTheme": "Theme",
"textTop": "Top",
"textTopLeft": "Top-Left",
"textTopRight": "Top-Right",
"textTotalRow": "Total Row",
"textTransition": "Transition",
"textType": "Type",
"textUnCover": "UnCover",
"textVerticalIn": "Vertical In",
"textVerticalOut": "Vertical Out",
"textWedge": "Wedge",
"textWipe": "Wipe",
"textZoom": "Zoom",
"textZoomIn": "Zoom In",
"textZoomOut": "Zoom Out",
"textZoomRotate": "Zoom and Rotate"
},
"Settings": {
"mniSlideStandard": "Standard (4:3)",
"mniSlideWide": "Widescreen (16:9)",
"textAbout": "About",
"textAddress": "address:",
"textApplication": "Application",
"textApplicationSettings": "Application Settings",
"textAuthor": "Author",
"textBack": "Back",
"textCaseSensitive": "Case Sensitive",
"textCentimeter": "Centimeter",
"textCollaboration": "Collaboration",
"textColorSchemes": "Color Schemes",
"textComment": "Comment",
"textCreated": "Created",
"textDisableAll": "Disable All",
"textDisableAllMacrosWithNotification": "Disable all macros with notification",
"textDisableAllMacrosWithoutNotification": "Disable all macros without notification",
"textDone": "Done",
"textDownload": "Download",
"textDownloadAs": "Download As...",
"textEmail": "email:",
"textEnableAll": "Enable All",
"textEnableAllMacrosWithoutNotification": "Enable all macros without notification",
"textFind": "Find",
"textFindAndReplace": "Find and Replace",
"textFindAndReplaceAll": "Find and Replace All",
"textHelp": "Help",
"textHighlight": "Highlight Results",
"textInch": "Inch",
"textLastModified": "Last Modified",
"textLastModifiedBy": "Last Modified By",
"textLoading": "Loading...",
"textLocation": "Location",
"textMacrosSettings": "Macros Settings",
"textNoTextFound": "Text not found",
"textOwner": "Owner",
"textPoint": "Point",
"textPoweredBy": "Powered By",
"textPresentationInfo": "Presentation Info",
"textPresentationSettings": "Presentation Settings",
"textPresentationTitle": "Presentation Title",
"textPrint": "Print",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSlideSize": "Slide Size",
"textSpellcheck": "Spell Checking",
"textSubject": "Subject",
"textTel": "tel:",
"textTitle": "Title",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"textVersion": "Version",
"txtScheme1": "Office",
"txtScheme10": "Median",
"txtScheme11": "Metro",
"txtScheme12": "Module",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme2": "Grayscale",
"txtScheme20": "Urban",
"txtScheme21": "Verve",
"txtScheme22": "New Office",
"txtScheme3": "Apex",
"txtScheme4": "Aspect",
"txtScheme5": "Civic",
"txtScheme6": "Concourse",
"txtScheme7": "Equity",
"txtScheme8": "Flow",
"txtScheme9": "Foundry"
}
}
}

View file

@ -450,6 +450,8 @@
"txtScheme18": "Technik",
"txtScheme19": "Wanderung",
"txtScheme2": "Grauskala",
"txtScheme20": "Rhea",
"txtScheme21": "Telesto",
"txtScheme22": "Neues Office",
"txtScheme3": "Apex",
"txtScheme4": "Bildseitenverhältnis",

File diff suppressed because it is too large Load diff

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