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-weight: bold;
font-size: 11px; font-size: 11px;
box-shadow: 0 6px 12px rgba(0,0,0,0.175); box-shadow: 0 6px 12px rgba(0,0,0,0.175);
max-width: 350px;
padding: 5px 12px; padding: 5px 12px;
white-space: pre-wrap; white-space: pre-wrap;

View file

@ -104,38 +104,37 @@ define([
return this; return this;
}, },
show: function(){ internalShow: function() {
// if (maskeEl || loaderEl) this.ownerEl.append(this.maskeEl);
// return; 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 // The owner is already masked
var ownerEl = this.ownerEl, if (!!this.ownerEl.ismasked)
loaderEl = this.loaderEl,
maskeEl = this.maskeEl;
if (!!ownerEl.ismasked)
return this; return this;
ownerEl.ismasked = true; this.ownerEl.ismasked = true;
var me = this; var me = this;
if (me.title != me.options.title) { if (me.title != me.options.title) {
me.options.title = me.title; me.options.title = me.title;
$('.asc-loadmask-title', loaderEl).html(me.title); $('.asc-loadmask-title', this.loaderEl).html(me.title);
} }
if (immediately) {
me.internalShow();
} else if (!me.timerId) {
// show mask after 500 ms if it wont be hided // show mask after 500 ms if it wont be hided
me.timerId = setTimeout(function () { me.timerId = setTimeout(function () {
ownerEl.append(maskeEl); me.internalShow();
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); },500);
}
return this; return this;
}, },

View file

@ -87,7 +87,7 @@ define([
'<% if (me.options.dynamiccolors!==undefined) { %>' + '<% if (me.options.dynamiccolors!==undefined) { %>' +
'<div class="palette-color-spacer" style="width:100%;height:8px;float:left;"></div><div style="padding: 12px;">' + '<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++) { %>' + '<% 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>' + '<em><span unselectable="on">&#160;</span></em></a>' +
'<% } %>' + '<% } %>' +
'<% } %>' + '<% } %>' +

View file

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

View file

@ -286,7 +286,8 @@ define([
currentThemeId: function () { currentThemeId: function () {
var t = Common.localStorage.getItem('ui-theme') || Common.localStorage.getItem('ui-theme-id'); 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) { defaultThemeId: function (type) {

View file

@ -99,7 +99,7 @@
'<div class="separator horizontal"></div>', '<div class="separator horizontal"></div>',
'<div class="footer right">', '<div class="footer right">',
'<button class="btn normal dlg-btn" result="replace">'+this.txtBtnReplace+'</button>', '<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="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>', '<button class="btn normal dlg-btn iconic" result="next" style="margin-left: 6px;"><span class="icon img-commonctrl next"></span></button>',
'</div>' '</div>'

View file

@ -39,12 +39,17 @@
} }
} }
.dynamic-empty-color em span { .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-ie @border-color-shading-ie;
border: solid @scaled-one-px-value @border-color-shading; border: solid @scaled-one-px-value @border-color-shading;
background: @background-normal-ie; background: @background-normal-ie;
background: @background-normal; background: @background-normal;
} }
}
.color-transparent { .color-transparent {
em span { em span {

View file

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

View file

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

View file

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

View file

@ -189,6 +189,7 @@
} }
} }
.toolbar { .toolbar {
position: absolute;
border-radius: 0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius); border-radius: 0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius);
} }
} }
@ -227,3 +228,11 @@
text-align: center; text-align: center;
margin-top: 35px; 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; 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 { .loadmask > .brendpanel .loading-logo > img {
display: inline-block; display: inline-block;
max-width: 100px; max-width: 124px;
max-height: 20px; max-height: 20px;
margin-top: 2px; margin-top: 2px;
opacity: 0; opacity: 0;
@ -221,7 +221,7 @@
</div> </div>
</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--> <!--vendor-->
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script> <script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>

View file

@ -48,7 +48,7 @@
.loadmask > .brendpanel .loading-logo > img { .loadmask > .brendpanel .loading-logo > img {
display: inline-block; display: inline-block;
max-width: 100px; max-width: 124px;
max-height: 20px; max-height: 20px;
margin-top: 2px; margin-top: 2px;
opacity: 0; opacity: 0;
@ -213,7 +213,7 @@
</div> </div>
</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--> <!--vendor-->
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script> <script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>

View file

@ -322,7 +322,7 @@
</div> </div>
</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--> <!--vendor-->
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script> <script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>

View file

@ -314,7 +314,7 @@
</div> </div>
</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--> <!--vendor-->
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script> <script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>

View file

@ -43,7 +43,9 @@ DE.ApplicationController = new(function(){
labelDocName, labelDocName,
appOptions = {}, appOptions = {},
btnSubmit, btnSubmit,
_submitFail, $submitedTooltip, $requiredTooltip; _submitFail, $submitedTooltip, $requiredTooltip,
$listControlMenu, listControlItems = [], listObj,
bodyWidth = 0;
var LoadingDocument = -256; var LoadingDocument = -256;
@ -83,6 +85,7 @@ DE.ApplicationController = new(function(){
} else { } else {
$('#toolbar').addClass('top'); $('#toolbar').addClass('top');
$('#editor_sdk').addClass('top'); $('#editor_sdk').addClass('top');
ttOffset[1] = 40;
} }
config.canBackToFolder = (config.canBackToFolder!==false) && config.customization && config.customization.goback && config.canBackToFolder = (config.canBackToFolder!==false) && config.customization && config.customization.goback &&
@ -218,33 +221,47 @@ DE.ApplicationController = new(function(){
var $ttEl, $tooltip; var $ttEl, $tooltip;
function onDocMouseMove(data) { function onDocMouseMove(data) {
if (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; 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 ) { if ( !$ttEl ) {
$ttEl = $('.hyperlink-tooltip'); $ttEl = $('.hyperlink-tooltip');
$ttEl.tooltip({'container':'body', 'trigger':'manual'}); $ttEl.tooltip({'container':'body', 'trigger':'manual'});
$ttEl.on('shown.bs.tooltip', function(e) { }
$ttEl.ttpos = [data.get_X(), data.get_Y()];
if ( !$tooltip)
$tooltip = $ttEl.data('bs.tooltip').tip(); $tooltip = $ttEl.data('bs.tooltip').tip();
$tooltip.css({ if (!$tooltip.is(':visible')) {
left: $ttEl.ttpos[0] + ttOffset[0], var tip = $ttEl.data('bs.tooltip');
top: $ttEl.ttpos[1] + ttOffset[1] tip.options.title = str;
}); tip.show([-1000, -1000]);
} else
$tooltip.find('.tooltip-inner')['text'](str);
$tooltip.find('.tooltip-arrow').css({left: 10}); var ttHeight = $tooltip.height(),
}); ttWidth = $tooltip.width();
} !bodyWidth && (bodyWidth = $('body').width());
if ( !$tooltip ) { $ttEl.ttpos[1] -= (ttHeight - ttOffset[1] + 20);
$ttEl.ttpos = [data.get_X(), data.get_Y()]; if ($ttEl.ttpos[0] + ttWidth + 10 >bodyWidth) {
$ttEl.tooltip('show'); $ttEl.ttpos[0] = bodyWidth - ttWidth - 5;
} else { if ($ttEl.ttpos[1] < 0)
$tooltip.css({ $ttEl.ttpos[1] += ttHeight + ttOffset[1] + 20;
left:data.get_X() + ttOffset[0], } else if ($ttEl.ttpos[1] < 0) {
top:data.get_Y() + ttOffset[1] $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() { function hidePreloader() {
$('#loading-mask').fadeOut('slow'); $('#loading-mask').fadeOut('slow');
} }
@ -350,6 +458,11 @@ DE.ApplicationController = new(function(){
api.asc_registerCallback('asc_onPrint', onPrint); api.asc_registerCallback('asc_onPrint', onPrint);
api.asc_registerCallback('asc_onPrintUrl', onPrintUrl); api.asc_registerCallback('asc_onPrintUrl', onPrintUrl);
api.asc_registerCallback('sync_onAllRequiredFormsFilled', onFillRequiredFields); 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('processmouse', onProcessMouse);
Common.Gateway.on('downloadas', onDownloadAs); Common.Gateway.on('downloadas', onDownloadAs);
@ -710,6 +823,7 @@ DE.ApplicationController = new(function(){
function onDocumentResize() { function onDocumentResize() {
api && api.Resize(); api && api.Resize();
bodyWidth = $('body').width();
} }
function createController(){ function createController(){
@ -812,6 +926,8 @@ DE.ApplicationController = new(function(){
textAnonymous: 'Anonymous', textAnonymous: 'Anonymous',
textRequired: 'Fill all required fields to send form.', textRequired: 'Fill all required fields to send form.',
textGotIt: 'Got it', 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(){ DE.ApplicationView = new(function(){
var $btnTools; var $btnTools;
var $menuForm;
// Initialize view // Initialize view
@ -63,11 +64,23 @@ DE.ApplicationView = new(function(){
return $btnTools.parent().find(name); 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 { return {
create: createView create: createView
, tools: { , tools: {
get: getTools get: getTools
}, },
getMenuForm: getMenuForm,
txtDownload: 'Download', txtDownload: 'Download',
txtPrint: 'Print', 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.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.errorFilePassProtect": "The file is password protected and cannot be opened.",
"DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.", "DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
"DE.ApplicationController.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.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.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
"DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
"DE.ApplicationController.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.notcriticalErrorTitle": "Warning",
"DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
"DE.ApplicationController.textAnonymous": "Anonymous", "DE.ApplicationController.textAnonymous": "Anonymous",
@ -31,6 +31,8 @@
"DE.ApplicationController.textSubmit": "Submit", "DE.ApplicationController.textSubmit": "Submit",
"DE.ApplicationController.textSubmited": "<b>Form submitted successfully</b><br>Click to close the tip", "DE.ApplicationController.textSubmited": "<b>Form submitted successfully</b><br>Click to close the tip",
"DE.ApplicationController.txtClose": "Close", "DE.ApplicationController.txtClose": "Close",
"DE.ApplicationController.txtEmpty": "(Empty)",
"DE.ApplicationController.txtPressLink": "Press Ctrl and click link",
"DE.ApplicationController.unknownErrorText": "Unknown error.", "DE.ApplicationController.unknownErrorText": "Unknown error.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.",
"DE.ApplicationController.waitText": "Please, wait...", "DE.ApplicationController.waitText": "Please, wait...",

View file

@ -19,10 +19,14 @@
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
"DE.ApplicationController.notcriticalErrorTitle": "Avviso", "DE.ApplicationController.notcriticalErrorTitle": "Avviso",
"DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", "DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
"DE.ApplicationController.textAnonymous": "Anonimo",
"DE.ApplicationController.textClear": "Cancella tutti i campi", "DE.ApplicationController.textClear": "Cancella tutti i campi",
"DE.ApplicationController.textGotIt": "Capito",
"DE.ApplicationController.textGuest": "Ospite",
"DE.ApplicationController.textLoadingDocument": "Caricamento del documento", "DE.ApplicationController.textLoadingDocument": "Caricamento del documento",
"DE.ApplicationController.textNext": "Campo successivo", "DE.ApplicationController.textNext": "Campo successivo",
"DE.ApplicationController.textOf": "di", "DE.ApplicationController.textOf": "di",
"DE.ApplicationController.textRequired": "Compila tutti i campi richiesti per inviare il modulo.",
"DE.ApplicationController.textSubmit": "Invia", "DE.ApplicationController.textSubmit": "Invia",
"DE.ApplicationController.textSubmited": "<b>Modulo inviato con successo</b><br>Fare click per chiudere la notifica</br>", "DE.ApplicationController.textSubmited": "<b>Modulo inviato con successo</b><br>Fare click per chiudere la notifica</br>",
"DE.ApplicationController.txtClose": "Chiudi", "DE.ApplicationController.txtClose": "Chiudi",

View file

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

View file

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

View file

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

View file

@ -11,20 +11,33 @@
"DE.ApplicationController.downloadTextText": "Laddar ner dokumentet...", "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.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.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.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.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.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.errorUserDrop": "Filen kan inte nås för tillfället. ",
"DE.ApplicationController.notcriticalErrorTitle": "Varning", "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.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.textLoadingDocument": "Laddar dokument",
"DE.ApplicationController.textNext": "Nästa fält",
"DE.ApplicationController.textOf": "av", "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.txtClose": "Stäng",
"DE.ApplicationController.unknownErrorText": "Okänt fel.", "DE.ApplicationController.unknownErrorText": "Okänt fel.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.",
"DE.ApplicationController.waitText": "Var snäll och vänta...", "DE.ApplicationController.waitText": "Var snäll och vänta...",
"DE.ApplicationView.txtDownload": "Ladda ner", "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.txtEmbed": "Inbädda",
"DE.ApplicationView.txtFileLocation": "Gå till filens plats",
"DE.ApplicationView.txtFullScreen": "Fullskärm", "DE.ApplicationView.txtFullScreen": "Fullskärm",
"DE.ApplicationView.txtPrint": "Skriva ut", "DE.ApplicationView.txtPrint": "Skriva ut",
"DE.ApplicationView.txtShare": "Dela" "DE.ApplicationView.txtShare": "Dela"

View file

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

View file

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

View file

@ -322,6 +322,7 @@ define([
toolbar.btnShowHidenChars.on('toggle', _.bind(this.onNonPrintingToggle, this)); toolbar.btnShowHidenChars.on('toggle', _.bind(this.onNonPrintingToggle, this));
toolbar.mnuTablePicker.on('select', _.bind(this.onTablePickerSelect, this)); toolbar.mnuTablePicker.on('select', _.bind(this.onTablePickerSelect, this));
toolbar.mnuInsertTable.on('item:click', _.bind(this.onInsertTableClick, 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.mnuInsertImage.on('item:click', _.bind(this.onInsertImageClick, this));
toolbar.btnInsertText.on('click', _.bind(this.onBtnInsertTextClick, this)); toolbar.btnInsertText.on('click', _.bind(this.onBtnInsertTextClick, this));
toolbar.btnInsertShape.menu.on('hide:after', _.bind(this.onInsertShapeHide, this)); toolbar.btnInsertShape.menu.on('hide:after', _.bind(this.onInsertShapeHide, this));
@ -1524,6 +1525,11 @@ define([
Common.component.Analytics.trackEvent('ToolBar', 'Table'); 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) { onInsertTableClick: function(menu, item, e) {
var me = this; var me = this;
if (item.value === 'custom') { 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)); this.btnDown.on('click', _.bind(this.onMoveItem, this, false));
// date picker // 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 }, 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: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { 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 }]; { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) { data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value);

View file

@ -88,8 +88,8 @@ define([
render: function () { render: function () {
Common.UI.Window.prototype.render.call(this); 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 }, 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: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { 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 }]; { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) { data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value);

View file

@ -719,18 +719,18 @@ define([
if (this.api && !this._noApply) { if (this.api && !this._noApply) {
var props = this._originalProps || new AscCommon.CContentControlPr(); var props = this._originalProps || new AscCommon.CContentControlPr();
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr(); var formPr = this._originalFormProps || new AscCommon.CSdtFormPr();
if (color == 'transparent') { if (color == 'transparent') {
formTextPr.put_CombBorder(); formPr.put_Border();
} else { } else {
var brd = formTextPr.get_CombBorder(); var brd = formPr.get_Border();
if (!brd) if (!brd)
brd = new Asc.asc_CTextBorder(); brd = new Asc.asc_CTextBorder();
brd.put_Value(1); brd.put_Value(1);
brd.put_Color(Common.Utils.ThemeColor.getRgbColor(color)); 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.api.asc_SetContentControlProperties(props, this.internalId);
this.fireEvent('editcomplete', this); this.fireEvent('editcomplete', this);
} }
@ -742,9 +742,9 @@ define([
if (this.api && !this._noApply) { if (this.api && !this._noApply) {
var props = this._originalProps || new AscCommon.CContentControlPr(); var props = this._originalProps || new AscCommon.CContentControlPr();
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr(); var formPr = this._originalFormProps || new AscCommon.CSdtFormPr();
formTextPr.put_CombBorder(); formPr.put_Border();
props.put_TextFormPr(formTextPr); props.put_FormPr(formPr);
this.api.asc_SetContentControlProperties(props, this.internalId); this.api.asc_SetContentControlProperties(props, this.internalId);
this.fireEvent('editcomplete', this); this.fireEvent('editcomplete', this);
} }
@ -890,6 +890,33 @@ define([
this._state.Fixed=val; 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(); var pictPr = props.get_PictureFormPr();
@ -933,8 +960,6 @@ define([
} }
this.chAutofit.setDisabled(!this._state.Fixed || this._state.Comb); this.chAutofit.setDisabled(!this._state.Fixed || this._state.Comb);
this.btnColor.setDisabled(!this._state.Comb);
this.spnWidth.setDisabled(!this._state.Comb); this.spnWidth.setDisabled(!this._state.Comb);
val = formTextPr.get_Width(); val = formTextPr.get_Width();
if ( (val===undefined || this._state.Width===undefined)&&(this._state.Width!==val) || Math.abs(this._state.Width-val)>0.1) { 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.spnMaxChars.setValue(val && val>=0 ? val : 10, true);
this._state.MaxChars=val; 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; this._noApply = false;

View file

@ -247,7 +247,7 @@ define([
maxLength: 1, maxLength: 1,
validateOnChange: true, validateOnChange: true,
validateOnBlur: false, validateOnBlur: false,
value: '-' value: Common.Utils.InternalSettings.get("de-text-to-table-separator") || '-'
}).on ('changing', function(input, newValue) { }).on ('changing', function(input, newValue) {
if (me.props && newValue) { if (me.props && newValue) {
me.props.put_SeparatorType(3, true); me.props.put_SeparatorType(3, true);
@ -315,6 +315,7 @@ define([
if (this.props) { if (this.props) {
this.props.put_AutoFitType(this.rbFixed.getValue() ? 1 : (this.rbContents.getValue() ? 2 : 3)); 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.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; 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_mp": "Moins plus",
"DE.Controllers.Toolbar.txtSymbol_mu": "Mu", "DE.Controllers.Toolbar.txtSymbol_mu": "Mu",
"DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", "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_ni": "Contient comme élément",
"DE.Controllers.Toolbar.txtSymbol_not": "Signe négation", "DE.Controllers.Toolbar.txtSymbol_not": "Signe négation",
"DE.Controllers.Toolbar.txtSymbol_notexists": "Inexistant", "DE.Controllers.Toolbar.txtSymbol_notexists": "Inexistant",
@ -2716,7 +2716,7 @@
"DE.Views.Toolbar.txtMarginAlign": "Aligner par rapport à la marge", "DE.Views.Toolbar.txtMarginAlign": "Aligner par rapport à la marge",
"DE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés", "DE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés",
"DE.Views.Toolbar.txtPageAlign": "Aligner par rapport à la page", "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.txtScheme10": "Médian",
"DE.Views.Toolbar.txtScheme11": "Métro", "DE.Views.Toolbar.txtScheme11": "Métro",
"DE.Views.Toolbar.txtScheme12": "Module", "DE.Views.Toolbar.txtScheme12": "Module",
@ -2733,7 +2733,7 @@
"DE.Views.Toolbar.txtScheme22": "New Office", "DE.Views.Toolbar.txtScheme22": "New Office",
"DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme3": "Apex",
"DE.Views.Toolbar.txtScheme4": "Proportions", "DE.Views.Toolbar.txtScheme4": "Proportions",
"DE.Views.Toolbar.txtScheme5": "Civique", "DE.Views.Toolbar.txtScheme5": "Civil",
"DE.Views.Toolbar.txtScheme6": "Rotonde", "DE.Views.Toolbar.txtScheme6": "Rotonde",
"DE.Views.Toolbar.txtScheme7": "Capitaux", "DE.Views.Toolbar.txtScheme7": "Capitaux",
"DE.Views.Toolbar.txtScheme8": "Flux", "DE.Views.Toolbar.txtScheme8": "Flux",

View file

@ -1737,6 +1737,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra notifica", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra notifica",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica",
"DE.Views.FileMenuPanels.Settings.txtWin": "come su Windows", "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.textCheckbox": "Casella di controllo",
"DE.Views.FormSettings.textColor": "Colore bordo", "DE.Views.FormSettings.textColor": "Colore bordo",
"DE.Views.FormSettings.textComb": "Combinazione di caratteri", "DE.Views.FormSettings.textComb": "Combinazione di caratteri",
@ -1755,16 +1758,21 @@
"DE.Views.FormSettings.textKey": "Chiave", "DE.Views.FormSettings.textKey": "Chiave",
"DE.Views.FormSettings.textLock": "Blocca", "DE.Views.FormSettings.textLock": "Blocca",
"DE.Views.FormSettings.textMaxChars": "Limite caratteri", "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.textNoBorder": "Senza bordo",
"DE.Views.FormSettings.textPlaceholder": "Segnaposto", "DE.Views.FormSettings.textPlaceholder": "Segnaposto",
"DE.Views.FormSettings.textRadiobox": "Pulsante opzione", "DE.Views.FormSettings.textRadiobox": "Pulsante opzione",
"DE.Views.FormSettings.textRequired": "Richiesto", "DE.Views.FormSettings.textRequired": "Richiesto",
"DE.Views.FormSettings.textScale": "Quando scalare",
"DE.Views.FormSettings.textSelectImage": "Seleziona Immagine", "DE.Views.FormSettings.textSelectImage": "Seleziona Immagine",
"DE.Views.FormSettings.textTip": "Suggerimento", "DE.Views.FormSettings.textTip": "Suggerimento",
"DE.Views.FormSettings.textTipAdd": "Aggiungi un nuovo valore", "DE.Views.FormSettings.textTipAdd": "Aggiungi un nuovo valore",
"DE.Views.FormSettings.textTipDelete": "Elimina valore", "DE.Views.FormSettings.textTipDelete": "Elimina valore",
"DE.Views.FormSettings.textTipDown": "Sposta verso il basso", "DE.Views.FormSettings.textTipDown": "Sposta verso il basso",
"DE.Views.FormSettings.textTipUp": "Sposta verso l'alto", "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.textUnlock": "Sblocca",
"DE.Views.FormSettings.textValue": "Opzioni di valore", "DE.Views.FormSettings.textValue": "Opzioni di valore",
"DE.Views.FormSettings.textWidth": "Larghezza cella", "DE.Views.FormSettings.textWidth": "Larghezza cella",
@ -1783,6 +1791,7 @@
"DE.Views.FormsTab.textHighlight": "Impostazioni evidenziazione", "DE.Views.FormsTab.textHighlight": "Impostazioni evidenziazione",
"DE.Views.FormsTab.textNewColor": "Aggiungi Colore personalizzato", "DE.Views.FormsTab.textNewColor": "Aggiungi Colore personalizzato",
"DE.Views.FormsTab.textNoHighlight": "Nessuna evidenziazione", "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.textSubmited": "Modulo inviato con successo",
"DE.Views.FormsTab.tipCheckBox": "Inserisci casella di controllo", "DE.Views.FormsTab.tipCheckBox": "Inserisci casella di controllo",
"DE.Views.FormsTab.tipComboBox": "Inserisci una cella combinata", "DE.Views.FormsTab.tipComboBox": "Inserisci una cella combinata",
@ -2721,6 +2730,7 @@
"DE.Views.Toolbar.txtScheme2": "Scala di grigi", "DE.Views.Toolbar.txtScheme2": "Scala di grigi",
"DE.Views.Toolbar.txtScheme20": "Tramonto", "DE.Views.Toolbar.txtScheme20": "Tramonto",
"DE.Views.Toolbar.txtScheme21": "Verve", "DE.Views.Toolbar.txtScheme21": "Verve",
"DE.Views.Toolbar.txtScheme22": "Nuovo ufficio",
"DE.Views.Toolbar.txtScheme3": "Vertice", "DE.Views.Toolbar.txtScheme3": "Vertice",
"DE.Views.Toolbar.txtScheme4": "Aspetto", "DE.Views.Toolbar.txtScheme4": "Aspetto",
"DE.Views.Toolbar.txtScheme5": "Civico", "DE.Views.Toolbar.txtScheme5": "Civico",

View file

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

View file

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

File diff suppressed because it is too large Load diff

View file

@ -205,6 +205,7 @@
"textBehind": "Detrás", "textBehind": "Detrás",
"textBorder": "Borde", "textBorder": "Borde",
"textBringToForeground": "Traer al primer plano", "textBringToForeground": "Traer al primer plano",
"textBullets": "Viñetas",
"textBulletsAndNumbers": "Viñetas y números", "textBulletsAndNumbers": "Viñetas y números",
"textCellMargins": "Márgenes de celda", "textCellMargins": "Márgenes de celda",
"textChart": "Gráfico", "textChart": "Gráfico",
@ -250,6 +251,7 @@
"textNone": "Ninguno", "textNone": "Ninguno",
"textNoStyles": "No hay estilos para este tipo de gráficos.", "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\"", "textNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"",
"textNumbers": "Números",
"textOpacity": "Opacidad ", "textOpacity": "Opacidad ",
"textOptions": "Opciones", "textOptions": "Opciones",
"textOrphanControl": "Control de líneas huérfanas", "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.", "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", "notcriticalErrorTitle": "Advertencia",
"SDK": { "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", "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", "Footer": "Pie de página",
"footnote text": "Texto de pie de página", "footnote text": "Texto de pie de página",
"Header": "Encabezado", "Header": "Encabezado",
@ -392,17 +409,38 @@
"Heading 7": "Título 7", "Heading 7": "Título 7",
"Heading 8": "Título 8", "Heading 8": "Título 8",
"Heading 9": "Título 9", "Heading 9": "Título 9",
"Hyperlink": "Hiperenlace",
"Index Too Large": "El índice es demasiado grande",
"Intense Quote": "Cita destacada", "Intense Quote": "Cita destacada",
"Is Not In Table": "No está en la tabla",
"List Paragraph": "Párrafo de la lista", "List Paragraph": "Párrafo de la lista",
"Missing Argument": "Falta argumento",
"Missing Operator": "Falta operador",
"No Spacing": "Sin espacio", "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", "Normal": "Normal",
"Number Too Large To Format": "El número es demasiado grande para darle formato",
"Odd Page ": "Página impar",
"Quote": "Cita", "Quote": "Cita",
"Same as Previous": "Igual al anterior",
"Series": "Serie", "Series": "Serie",
"Subtitle": "Subtítulo", "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", "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", "X Axis": "Eje X XAS",
"Y Axis": "Eje Y", "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", "textAnonymous": "Anónimo",
"textBuyNow": "Visitar sitio web", "textBuyNow": "Visitar sitio web",
@ -481,7 +519,7 @@
"textMacrosSettings": "Ajustes de macros", "textMacrosSettings": "Ajustes de macros",
"textMargins": "Márgenes", "textMargins": "Márgenes",
"textMarginsH": "Márgenes superior e inferior son demasiado altos para una altura de página determinada ", "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", "textNoCharacters": "Caracteres no imprimibles",
"textNoTextFound": "Texto no encontrado", "textNoTextFound": "Texto no encontrado",
"textOpenFile": "Introduzca la contraseña para abrir el archivo", "textOpenFile": "Introduzca la contraseña para abrir el archivo",
@ -506,7 +544,29 @@
"textUnitOfMeasurement": "Unidad de medida", "textUnitOfMeasurement": "Unidad de medida",
"textUploaded": "Cargado", "textUploaded": "Cargado",
"txtIncorrectPwd": "La contraseña es incorrecta", "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": { "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.", "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", "About": {
"Common.Controllers.Collaboration.textAtLeast": "vähintään", "textAbout": "About",
"Common.Controllers.Collaboration.textAuto": "Automaattinen", "textAddress": "Address",
"Common.Controllers.Collaboration.textBaseline": "Lähtötaso", "textBack": "Back",
"Common.Controllers.Collaboration.textBold": "Lihavoitu", "textEmail": "Email",
"Common.Controllers.Collaboration.textCaps": "Kaikki isoilla kirjaimilla", "textPoweredBy": "Powered By",
"Common.Controllers.Collaboration.textCenter": "Keskitä", "textTel": "Tel",
"Common.Controllers.Collaboration.textDeleted": "<b>Poistettu:</b>", "textVersion": "Version"
"Common.Controllers.Collaboration.textInserted": "<b>Asetettu:</b>", },
"Common.Controllers.Collaboration.textJustify": "Tasaa", "Add": {
"Common.Controllers.Collaboration.textLeft": "Tasaa vasemmalle", "notcriticalErrorTitle": "Warning",
"Common.Controllers.Collaboration.textNoContextual": "Lisää samantyylinen kappaleväli", "textAddLink": "Add link",
"Common.Controllers.Collaboration.textParaDeleted": "<b>Kappale poistettu</b> ", "textAddress": "Address",
"Common.Controllers.Collaboration.textParaFormatted": "<b>Kappale muotoiltu</b>", "textBack": "Back",
"Common.Controllers.Collaboration.textParaInserted": "<b>Kappale sijoitettu</b> ", "textBelowText": "Below text",
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Siirretty alas:</b>", "textBottomOfPage": "Bottom of page",
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Siirretty ylös:</b>", "textBreak": "Break",
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Siirretty:</b>", "textCancel": "Cancel",
"Common.Controllers.Collaboration.textRight": "Tasaa oikealle", "textCenterBottom": "Center Bottom",
"Common.Controllers.Collaboration.textShd": "Taustaväri", "textCenterTop": "Center Top",
"Common.Controllers.Collaboration.textTableChanged": "<b>Taulukon asetuksia muutettu</b>", "textColumnBreak": "Column Break",
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Taulukkorivit lisätty</b>", "textColumns": "Columns",
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Taulukkorivit poistettu</b>", "textComment": "Comment",
"Common.UI.ThemeColorPalette.textStandartColors": "Vakiovärit", "textContinuousPage": "Continuous Page",
"Common.UI.ThemeColorPalette.textThemeColors": "Teeman värit", "textCurrentPosition": "Current Position",
"Common.Views.Collaboration.textAccept": "Hyväksy", "textDisplay": "Display",
"Common.Views.Collaboration.textAcceptAllChanges": "Hyväksy kaikki muutokset", "textEmptyImgUrl": "You need to specify image URL.",
"Common.Views.Collaboration.textAddReply": "Lisää vastaus", "textEvenPage": "Even Page",
"Common.Views.Collaboration.textAllChangesAcceptedPreview": "Kaikki muutokset hyväksytty (Esikatsele)", "textFootnote": "Footnote",
"Common.Views.Collaboration.textAllChangesEditing": "Kaikki muutokset (muokkaukset)", "textFormat": "Format",
"Common.Views.Collaboration.textAllChangesRejectedPreview": "Kaikki muutokset hylätty (Esikatsele)", "textImage": "Image",
"Common.Views.Collaboration.textBack": "Takaisin", "textImageURL": "Image URL",
"DE.Controllers.AddContainer.textImage": "Kuva", "textInsert": "Insert",
"DE.Controllers.AddContainer.textOther": "Muu", "textInsertFootnote": "Insert Footnote",
"DE.Controllers.AddContainer.textShape": "Muoto", "textInsertImage": "Insert Image",
"DE.Controllers.AddContainer.textTable": "Taulukko", "textLeftBottom": "Left Bottom",
"DE.Controllers.AddImage.textEmptyImgUrl": "Sinun tulee määritellä kuvan verkko-osoite", "textLeftTop": "Left Top",
"DE.Controllers.AddImage.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'", "textLink": "Link",
"DE.Controllers.AddOther.textBelowText": "Tekstin alapuolella", "textLinkSettings": "Link Settings",
"DE.Controllers.AddOther.textBottomOfPage": "Sivun alaosassa", "textLocation": "Location",
"DE.Controllers.AddOther.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'", "textNextPage": "Next Page",
"DE.Controllers.AddTable.textCancel": "Peruuta", "textOddPage": "Odd Page",
"DE.Controllers.AddTable.textColumns": "Sarakkeet", "textOther": "Other",
"DE.Controllers.AddTable.textRows": "Rivit", "textPageBreak": "Page Break",
"DE.Controllers.AddTable.textTableSize": "Taulukon koko", "textPageNumber": "Page Number",
"DE.Controllers.DocumentHolder.menuAddComment": "Lisää kommentti", "textPictureFromLibrary": "Picture from Library",
"DE.Controllers.DocumentHolder.menuAddLink": "Lisää linkki", "textPictureFromURL": "Picture from URL",
"DE.Controllers.DocumentHolder.menuCopy": "Kopio", "textPosition": "Position",
"DE.Controllers.DocumentHolder.menuCut": "Leikkaa", "textRightBottom": "Right Bottom",
"DE.Controllers.DocumentHolder.menuDelete": "Poista", "textRightTop": "Right Top",
"DE.Controllers.DocumentHolder.menuEdit": "Muokkaa", "textRows": "Rows",
"DE.Controllers.DocumentHolder.menuOpenLink": "Avoin linkki", "textScreenTip": "Screen Tip",
"DE.Controllers.DocumentHolder.menuPaste": "Liitä", "textSectionBreak": "Section Break",
"DE.Controllers.EditContainer.textChart": "Kaavio", "textShape": "Shape",
"DE.Controllers.EditContainer.textHyperlink": "Linkki", "textStartAt": "Start At",
"DE.Controllers.EditContainer.textImage": "Kuva", "textTable": "Table",
"DE.Controllers.EditContainer.textParagraph": "Kappale", "textTableSize": "Table Size",
"DE.Controllers.EditContainer.textSettings": "Asetukset", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
"DE.Controllers.EditContainer.textShape": "Muoto", },
"DE.Controllers.EditContainer.textTable": "Taulukko", "Common": {
"DE.Controllers.EditContainer.textText": "Teksti", "Collaboration": {
"DE.Controllers.EditImage.textEmptyImgUrl": "Sinun tulee määritellä kuvan verkko-osoite", "notcriticalErrorTitle": "Warning",
"DE.Controllers.EditImage.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'", "textAccept": "Accept",
"DE.Controllers.EditText.textAuto": "Automaattinen", "textAcceptAllChanges": "Accept all changes",
"DE.Controllers.EditText.textFonts": "Fontit", "textAddComment": "Add comment",
"DE.Controllers.EditText.textPt": "pt", "textAddReply": "Add reply",
"DE.Controllers.Main.advDRMEnterPassword": "Syötä salasanasi", "textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"DE.Controllers.Main.advDRMOptions": "Suojattu tiedosto", "textAllChangesEditing": "All changes (Editing)",
"DE.Controllers.Main.advDRMPassword": "Salasana", "textAllChangesRejectedPreview": "All changes rejected (Preview)",
"DE.Controllers.Main.advTxtOptions": "Valitse TXT vaihtoehdot", "textAtLeast": "at least",
"DE.Controllers.Main.applyChangesTextText": "Ladataan tietoa...", "textAuto": "auto",
"DE.Controllers.Main.applyChangesTitleText": "Ladataan tietoja", "textBack": "Back",
"DE.Controllers.Main.convertationTimeoutText": "Muunnoksen aikaraja saavutettiin.", "textBaseline": "Baseline",
"DE.Controllers.Main.criticalErrorExtText": "Klikkaa 'OK' siirtyäksesi takaisin asiakirjojen luetteloon.", "textBold": "Bold",
"DE.Controllers.Main.criticalErrorTitle": "Virhe", "textBreakBefore": "Page break before",
"DE.Controllers.Main.downloadErrorText": "Lataus epäonnistui.", "textCancel": "Cancel",
"DE.Controllers.Main.downloadMergeText": "Ladataan...", "textCaps": "All caps",
"DE.Controllers.Main.downloadMergeTitle": "Ladataan", "textCenter": "Align center",
"DE.Controllers.Main.downloadTextText": "Ladataan asiakirjaa...", "textChart": "Chart",
"DE.Controllers.Main.downloadTitleText": "Ladataan asiakirjaa", "textCollaboration": "Collaboration",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Palvelimen yhteys menetetty. Et voi enää muokata.", "textColor": "Font color",
"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.", "textComments": "Comments",
"DE.Controllers.Main.errorDatabaseConnection": "Ulkoinen virhe.<br>Tietokannan yhteysvirhe. Ole hyvä ja ota yhteyttä asiakaspalveluun.", "textContextual": "Don't add intervals between paragraphs of the same style",
"DE.Controllers.Main.errorDataRange": "Virheellinen tietoalue", "textDelete": "Delete",
"DE.Controllers.Main.errorDefaultMessage": "Virhekoodi: %1", "textDeleteComment": "Delete Comment",
"DE.Controllers.Main.errorEditingDownloadas": "Asiakirjan käsittelyssä on tapahtunut virhe. <br> Käytä 'Lataa' -vaihtoehtoa tallentaaksesi tiedoston varmuuskopion tietokoneen kiintolevylle. ", "textDeleted": "Deleted:",
"DE.Controllers.Main.errorFilePassProtect": "Asiakirja on salasanalla suojattu.", "textDeleteReply": "Delete Reply",
"DE.Controllers.Main.errorKeyEncrypt": "Tuntematon avainsana", "textDisplayMode": "Display Mode",
"DE.Controllers.Main.errorKeyExpire": "Avainsana erääntynyt", "textDone": "Done",
"DE.Controllers.Main.errorMailMergeLoadFile": "Lataaminen epäonnistui", "textDStrikeout": "Double strikeout",
"DE.Controllers.Main.errorMailMergeSaveFile": "Yhdistäminen epäonnistui.", "textEdit": "Edit",
"DE.Controllers.Main.errorProcessSaveResult": "Tallennus epäonnistui.", "textEditComment": "Edit Comment",
"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.", "textEditReply": "Edit Reply",
"DE.Controllers.Main.errorUpdateVersion": "Tiedoston versio on muuttunut. Sivu ladataan uudelleen.", "textEditUser": "Users who are editing the file:",
"DE.Controllers.Main.errorUserDrop": "Tiedostoon ei ole pääsyä tällä hetkellä.", "textEquation": "Equation",
"DE.Controllers.Main.errorUsersExceed": "Käyttäjien määrä ylitettiin", "textExact": "exactly",
"DE.Controllers.Main.errorViewerDisconnect": "Yhteys on menetetty. Voit vielä selailla asiakirjaa,<br>mutta et pysty lataamaan sitä ennenkuin yhteys on palautettu.", "textFinal": "Final",
"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. ", "textFirstLine": "First line",
"DE.Controllers.Main.loadFontsTextText": "Ladataan tietoa...", "textFormatted": "Formatted",
"DE.Controllers.Main.loadFontsTitleText": "Ladataan tietoja", "textHighlight": "Highlight color",
"DE.Controllers.Main.loadFontTextText": "Ladataan tietoa...", "textImage": "Image",
"DE.Controllers.Main.loadFontTitleText": "Ladataan tietoja", "textIndentLeft": "Indent left",
"DE.Controllers.Main.loadImagesTextText": "Ladataan kuvia...", "textIndentRight": "Indent right",
"DE.Controllers.Main.loadImagesTitleText": "Ladataan kuvia", "textInserted": "Inserted:",
"DE.Controllers.Main.loadImageTextText": "Ladataan kuvaa...", "textItalic": "Italic",
"DE.Controllers.Main.loadImageTitleText": "Ladataan kuvaa", "textJustify": "Align justified ",
"DE.Controllers.Main.loadingDocumentTextText": "Ladataan asiakirjaa...", "textKeepLines": "Keep lines together",
"DE.Controllers.Main.loadingDocumentTitleText": "Ladataan asiakirjaa", "textKeepNext": "Keep with next",
"DE.Controllers.Main.mailMergeLoadFileText": "Ladataan tietolähdettä...", "textLeft": "Align left",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Ladataan tietolähdettä", "textLineSpacing": "Line Spacing: ",
"DE.Controllers.Main.notcriticalErrorTitle": "Varoitus", "textMarkup": "Markup",
"DE.Controllers.Main.openErrorText": "Virhe tapahtui avattaessa tiedostoa", "textMessageDeleteComment": "Do you really want to delete this comment?",
"DE.Controllers.Main.openTextText": "Avataan asiakirjaa...", "textMessageDeleteReply": "Do you really want to delete this reply?",
"DE.Controllers.Main.openTitleText": "Avataan asiakirjaa", "textMultiple": "multiple",
"DE.Controllers.Main.printTextText": "Tulostetaan asiakirjaa...", "textNoBreakBefore": "No page break before",
"DE.Controllers.Main.printTitleText": "Tulostetaan Asiakirjaa", "textNoChanges": "There are no changes.",
"DE.Controllers.Main.saveErrorText": "Virhe tapahtui tallennettaessa tiedostoa", "textNoComments": "This document doesn't contain comments",
"DE.Controllers.Main.savePreparingText": "Valmistetaan tallennusta", "textNoContextual": "Add interval between paragraphs of the same style",
"DE.Controllers.Main.savePreparingTitle": "Valmistellaan talletusta. Ole hyvä ja odota...", "textNoKeepLines": "Don't keep lines together",
"DE.Controllers.Main.saveTextText": "Tallennetaan asiakirjaa...", "textNoKeepNext": "Don't keep with next",
"DE.Controllers.Main.saveTitleText": "Tallennetaan asiakirjaa", "textNot": "Not ",
"DE.Controllers.Main.sendMergeText": "Lähetetään yhdistettynä...", "textNoWidow": "No widow control",
"DE.Controllers.Main.sendMergeTitle": "Lähetä yhdistettynä", "textNum": "Change numbering",
"DE.Controllers.Main.splitDividerErrorText": "Rivien määrä tulee olla arvon %1 jakaja ", "textOriginal": "Original",
"DE.Controllers.Main.splitMaxColsErrorText": "Sarakkeiden määrä tulee olla vähemmän kuin %1", "textParaDeleted": "Paragraph Deleted",
"DE.Controllers.Main.splitMaxRowsErrorText": "Rivien määrä tulee olla vähemmän kuin %1", "textParaFormatted": "Paragraph Formatted",
"DE.Controllers.Main.textAnonymous": "Anonyymi", "textParaInserted": "Paragraph Inserted",
"DE.Controllers.Main.textBack": "Takaisin", "textParaMoveFromDown": "Moved Down:",
"DE.Controllers.Main.textBuyNow": "Vieraile sivustossa", "textParaMoveFromUp": "Moved Up:",
"DE.Controllers.Main.textContactUs": "Myyntiosasto", "textParaMoveTo": "Moved:",
"DE.Controllers.Main.textLoadingDocument": "Ladataan asiakirjaa", "textPosition": "Position",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE avoimen lähdekoodin versio", "textReject": "Reject",
"DE.Controllers.Main.textTryUndoRedo": "Peruutus/tee uudestaan toiminnot eivät ole käytössä yhteisessä pikamuokkaus tilassa.", "textRejectAllChanges": "Reject All Changes",
"DE.Controllers.Main.titleLicenseExp": "Lisenssi erääntynyt", "textReopen": "Reopen",
"DE.Controllers.Main.titleUpdateVersion": "Versio muutettu", "textResolve": "Resolve",
"DE.Controllers.Main.txtAbove": "Yllä", "textReview": "Review",
"DE.Controllers.Main.txtArt": "Tekstisi tähän", "textReviewChange": "Review Change",
"DE.Controllers.Main.txtBelow": "alla", "textRight": "Align right",
"DE.Controllers.Main.txtDiagramTitle": "Kaavion otsikko", "textShape": "Shape",
"DE.Controllers.Main.txtEditingMode": "Aseta muokkauksen tila...", "textShd": "Background color",
"DE.Controllers.Main.txtSeries": "Sarja", "textSmallCaps": "Small caps",
"DE.Controllers.Main.txtXAxis": "X akseli", "textSpacing": "Spacing",
"DE.Controllers.Main.txtYAxis": "Y akseli", "textSpacingAfter": "Spacing after",
"DE.Controllers.Main.unknownErrorText": "Tuntematon virhe.", "textSpacingBefore": "Spacing before",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Selaintasi ei ole tuettu", "textStrikeout": "Strikeout",
"DE.Controllers.Main.uploadImageExtMessage": "Tuntematon kuvan muoto.", "textSubScript": "Subscript",
"DE.Controllers.Main.uploadImageFileCountMessage": "Ei ladattuja kuvia.", "textSuperScript": "Superscript",
"DE.Controllers.Main.uploadImageSizeMessage": "Maksimi kuvan koon rajoitus ylitettiin.", "textTableChanged": "Table Settings Changed",
"DE.Controllers.Main.uploadImageTextText": "Ladataan kuvaa...", "textTableRowsAdd": "Table Rows Added",
"DE.Controllers.Main.uploadImageTitleText": "Ladataan kuvaa", "textTableRowsDel": "Table Rows Deleted",
"DE.Controllers.Main.warnLicenseExp": "Lisenssisi on erääntynyt.<br>Ole hyvä ja päivitä lisenssisi ja virkistä sivu.", "textTabs": "Change tabs",
"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ä.", "textTrackChanges": "Track Changes",
"DE.Controllers.Main.warnProcessRightsChange": "Sinulla ei ole riittävästi oikeuksia muokata tiedostoa.", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"DE.Controllers.Search.textNoTextFound": "Tekstiä ei löytynyt", "textUnderline": "Underline",
"DE.Controllers.Search.textReplaceAll": "Korvaa Kaikki", "textUsers": "Users",
"DE.Controllers.Settings.notcriticalErrorTitle": "Varoitus", "textWidow": "Widow control"
"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?", "ThemeColorPalette": {
"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. ", "textCustomColors": "Custom Colors",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Jätät sovelluksen", "textStandartColors": "Standard Colors",
"DE.Controllers.Toolbar.leaveButtonText": "Jätä tämä sivu", "textThemeColors": "Theme Colors"
"DE.Controllers.Toolbar.stayButtonText": "Jää tälle sivulle", }
"DE.Views.AddImage.textAddress": "Osoite", },
"DE.Views.AddImage.textBack": "Takaisin", "ContextMenu": {
"DE.Views.AddImage.textFromLibrary": "Kuva kirjastosta", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"DE.Views.AddImage.textFromURL": "Kuva verkko-osoitteesta", "menuAddComment": "Add comment",
"DE.Views.AddImage.textImageURL": "Kuvan verkko-osoite", "menuAddLink": "Add link",
"DE.Views.AddImage.textInsertImage": "Lisää kuva", "menuCancel": "Cancel",
"DE.Views.AddImage.textLinkSettings": "Linkin asetukset", "menuDelete": "Delete",
"DE.Views.AddOther.textAddComment": "Kommentoi", "menuDeleteTable": "Delete Table",
"DE.Views.AddOther.textAddLink": "Lisää linkki", "menuEdit": "Edit",
"DE.Views.AddOther.textBack": "Takaisin", "menuMerge": "Merge",
"DE.Views.AddOther.textCenterBottom": "Keskellä alhaalla", "menuMore": "More",
"DE.Views.AddOther.textCenterTop": "Keskellä ylhäällä", "menuOpenLink": "Open Link",
"DE.Views.AddOther.textContPage": "Jatkuva sivu", "menuReview": "Review",
"DE.Views.AddOther.textCurrentPos": "Nykyinen asema", "menuReviewChange": "Review Change",
"DE.Views.AddOther.textDisplay": "Näyttö", "menuSplit": "Split",
"DE.Views.AddOther.textEvenPage": "Parillinen sivu", "menuViewComment": "View Comment",
"DE.Views.AddOther.textInsert": "Lisää", "textColumns": "Columns",
"DE.Views.AddOther.textLeftBottom": "Vasen alhaalla", "textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"DE.Views.AddOther.textLeftTop": "Vasen ylhäällä", "textDoNotShowAgain": "Don't show again",
"DE.Views.AddOther.textLink": "Linkki", "textRows": "Rows"
"DE.Views.AddOther.textNextPage": "Seuraava sivu", },
"DE.Views.AddOther.textOddPage": "Pariton sivu", "Edit": {
"DE.Views.AddOther.textPageBreak": "Sivukatkaisu", "notcriticalErrorTitle": "Warning",
"DE.Views.AddOther.textPageNumber": "Sivunumero", "textActualSize": "Actual size",
"DE.Views.AddOther.textPosition": "Asema", "textAddCustomColor": "Add custom color",
"DE.Views.AddOther.textRightBottom": "Oikea alhaalla", "textAdditional": "Additional",
"DE.Views.AddOther.textRightTop": "Oikea ylhäällä", "textAdditionalFormatting": "Additional formatting",
"DE.Views.AddOther.textSectionBreak": "Osion katkaisu", "textAddress": "Address",
"DE.Views.AddOther.textTip": "Näyttövinkki", "textAdvanced": "Advanced",
"DE.Views.EditChart.textAddCustomColor": "Lisää mukautettu väri", "textAdvancedSettings": "Advanced settings",
"DE.Views.EditChart.textAlign": "Tasaa", "textAfter": "After",
"DE.Views.EditChart.textBack": "Takaisin", "textAlign": "Align",
"DE.Views.EditChart.textBackward": "Siirry takaisin", "textAllCaps": "All caps",
"DE.Views.EditChart.textBehind": "Takana", "textAllowOverlap": "Allow overlap",
"DE.Views.EditChart.textBorder": "Reunus", "textAuto": "Auto",
"DE.Views.EditChart.textColor": "Väri", "textAutomatic": "Automatic",
"DE.Views.EditChart.textDistanceText": "Etäisyys tekstistä", "textBack": "Back",
"DE.Views.EditChart.textFill": "Täytä", "textBackground": "Background",
"DE.Views.EditChart.textForward": "Siirry eteenpäin", "textBandedColumn": "Banded column",
"DE.Views.EditChart.textInFront": "Edessä", "textBandedRow": "Banded row",
"DE.Views.EditChart.textInline": "Linjassa", "textBefore": "Before",
"DE.Views.EditChart.textMoveText": "Siirrä tekstillä", "textBehind": "Behind",
"DE.Views.EditChart.textOverlap": "Salli päällekkäisyys", "textBorder": "Border",
"DE.Views.EditChart.textRemoveChart": "Poista kuvio", "textBringToForeground": "Bring to foreground",
"DE.Views.EditChart.textReorder": "Järjestä uudelleen", "textBullets": "Bullets",
"DE.Views.EditChart.textSize": "Koko", "textBulletsAndNumbers": "Bullets & Numbers",
"DE.Views.EditChart.textSquare": "Neliö", "textCellMargins": "Cell Margins",
"DE.Views.EditChart.textStyle": "Tyyli", "textChart": "Chart",
"DE.Views.EditChart.textThrough": "Kautta", "textClose": "Close",
"DE.Views.EditChart.textTight": "Tiukka", "textColor": "Color",
"DE.Views.EditChart.textToBackground": "Lähetä taustalle", "textContinueFromPreviousSection": "Continue from previous section",
"DE.Views.EditChart.textToForeground": "Tuo etupuolelle", "textCustomColor": "Custom Color",
"DE.Views.EditChart.textTopBottom": "Ylös ja alas", "textDifferentFirstPage": "Different first page",
"DE.Views.EditChart.textType": "Tyyppi", "textDifferentOddAndEvenPages": "Different odd and even pages",
"DE.Views.EditChart.textWrap": "Rivittäminen", "textDisplay": "Display",
"DE.Views.EditHyperlink.textDisplay": "Näyttö", "textDistanceFromText": "Distance from text",
"DE.Views.EditHyperlink.textEdit": "Muokkaa linkkiä", "textDoubleStrikethrough": "Double Strikethrough",
"DE.Views.EditHyperlink.textLink": "Linkki", "textEditLink": "Edit Link",
"DE.Views.EditHyperlink.textRemove": "Poista linkki", "textEffects": "Effects",
"DE.Views.EditHyperlink.textTip": "Näyttövinkki", "textEmptyImgUrl": "You need to specify image URL.",
"DE.Views.EditImage.textAddress": "Osoite", "textFill": "Fill",
"DE.Views.EditImage.textAlign": "Tasaa", "textFirstColumn": "First Column",
"DE.Views.EditImage.textBack": "Takaisin", "textFirstLine": "FirstLine",
"DE.Views.EditImage.textBackward": "Siirry takaisin", "textFlow": "Flow",
"DE.Views.EditImage.textBehind": "Takana", "textFontColor": "Font Color",
"DE.Views.EditImage.textDefault": "Oletuskoko", "textFontColors": "Font Colors",
"DE.Views.EditImage.textDistanceText": "Etäisyys tekstistä", "textFonts": "Fonts",
"DE.Views.EditImage.textForward": "Siirry eteenpäin", "textFooter": "Footer",
"DE.Views.EditImage.textFromLibrary": "Kuva kirjastosta", "textHeader": "Header",
"DE.Views.EditImage.textFromURL": "Kuva verkko-osoitteesta", "textHeaderRow": "Header Row",
"DE.Views.EditImage.textImageURL": "Kuvan verkko-osoite", "textHighlightColor": "Highlight Color",
"DE.Views.EditImage.textInFront": "Edessä", "textHyperlink": "Hyperlink",
"DE.Views.EditImage.textInline": "Linjassa", "textImage": "Image",
"DE.Views.EditImage.textLinkSettings": "Linkin asetukset", "textImageURL": "Image URL",
"DE.Views.EditImage.textMoveText": "Siirrä tekstillä", "textInFront": "In Front",
"DE.Views.EditImage.textOverlap": "Salli päällekkäisyys", "textInline": "Inline",
"DE.Views.EditImage.textRemove": "Poista kuva", "textKeepLinesTogether": "Keep Lines Together",
"DE.Views.EditImage.textReorder": "Järjestä uudelleen", "textKeepWithNext": "Keep with Next",
"DE.Views.EditImage.textReplace": "Korvaa", "textLastColumn": "Last Column",
"DE.Views.EditImage.textReplaceImg": "Korvaa kuva", "textLetterSpacing": "Letter Spacing",
"DE.Views.EditImage.textSquare": "Neliö", "textLineSpacing": "Line Spacing",
"DE.Views.EditImage.textThrough": "Kautta", "textLink": "Link",
"DE.Views.EditImage.textTight": "Tiukka", "textLinkSettings": "Link Settings",
"DE.Views.EditImage.textToBackground": "Lähetä taustalle", "textLinkToPrevious": "Link to Previous",
"DE.Views.EditImage.textToForeground": "Tuo etupuolelle", "textMoveBackward": "Move Backward",
"DE.Views.EditImage.textTopBottom": "Ylös ja alas", "textMoveForward": "Move Forward",
"DE.Views.EditImage.textWrap": "Rivittäminen", "textMoveWithText": "Move with Text",
"DE.Views.EditParagraph.textAddCustomColor": "Lisää mukautettu väri", "textNone": "None",
"DE.Views.EditParagraph.textAdvanced": "Laajennetut asetukset", "textNoStyles": "No styles for this type of charts.",
"DE.Views.EditParagraph.textAdvSettings": "Laajennetut asetukset", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"DE.Views.EditParagraph.textAfter": "Jälkeen", "textOpacity": "Opacity",
"DE.Views.EditParagraph.textAuto": "Automaattinen", "textOptions": "Options",
"DE.Views.EditParagraph.textBack": "Takaisin", "textOrphanControl": "Orphan Control",
"DE.Views.EditParagraph.textBackground": "Tausta", "textPageBreakBefore": "Page Break Before",
"DE.Views.EditParagraph.textBefore": "Ennen", "textPageNumbering": "Page Numbering",
"DE.Views.EditParagraph.textFromText": "Etäisyys tekstistä", "textParagraph": "Paragraph",
"DE.Views.EditParagraph.textKeepLines": "Pidä viivat yhdessä", "textParagraphStyles": "Paragraph Styles",
"DE.Views.EditParagraph.textKeepNext": "Pidä seuraavalla", "textPictureFromLibrary": "Picture from Library",
"DE.Views.EditParagraph.textOrphan": "Orporivien hallinta", "textPictureFromURL": "Picture from URL",
"DE.Views.EditParagraph.textPageBreak": "Sivun katko ennen", "textPt": "pt",
"DE.Views.EditParagraph.textPrgStyles": "Kappaleen tyyli", "textRemoveChart": "Remove Chart",
"DE.Views.EditParagraph.textSpaceBetween": "Kappaleväli", "textRemoveImage": "Remove Image",
"DE.Views.EditShape.textAddCustomColor": "Lisää mukautettu väri", "textRemoveLink": "Remove Link",
"DE.Views.EditShape.textAlign": "Tasaa", "textRemoveShape": "Remove Shape",
"DE.Views.EditShape.textBack": "Takaisin", "textRemoveTable": "Remove Table",
"DE.Views.EditShape.textBackward": "Siirry takaisin", "textReorder": "Reorder",
"DE.Views.EditShape.textBehind": "Takana", "textRepeatAsHeaderRow": "Repeat as Header Row",
"DE.Views.EditShape.textBorder": "Reunus", "textReplace": "Replace",
"DE.Views.EditShape.textColor": "Väri", "textReplaceImage": "Replace Image",
"DE.Views.EditShape.textEffects": "Efektit", "textResizeToFitContent": "Resize to Fit Content",
"DE.Views.EditShape.textFill": "Täytä", "textScreenTip": "Screen Tip",
"DE.Views.EditShape.textForward": "Siirry eteenpäin", "textSelectObjectToEdit": "Select object to edit",
"DE.Views.EditShape.textFromText": "Etäisyys tekstistä", "textSendToBackground": "Send to Background",
"DE.Views.EditShape.textInFront": "Edessä", "textSettings": "Settings",
"DE.Views.EditShape.textInline": "Linjassa", "textShape": "Shape",
"DE.Views.EditShape.textOpacity": "Läpikuultamattomuus", "textSize": "Size",
"DE.Views.EditShape.textOverlap": "Salli päällekkäisyys", "textSmallCaps": "Small Caps",
"DE.Views.EditShape.textRemoveShape": "Poista muoto", "textSpaceBetweenParagraphs": "Space Between Paragraphs",
"DE.Views.EditShape.textReorder": "Järjestä uudelleen", "textSquare": "Square",
"DE.Views.EditShape.textReplace": "Korvaa", "textStartAt": "Start at",
"DE.Views.EditShape.textSize": "Koko", "textStrikethrough": "Strikethrough",
"DE.Views.EditShape.textSquare": "Neliö", "textStyle": "Style",
"DE.Views.EditShape.textStyle": "Tyyli", "textStyleOptions": "Style Options",
"DE.Views.EditShape.textThrough": "Kautta", "textSubscript": "Subscript",
"DE.Views.EditShape.textTight": "Tiukka", "textSuperscript": "Superscript",
"DE.Views.EditShape.textToBackground": "Lähetä taustalle", "textTable": "Table",
"DE.Views.EditShape.textToForeground": "Tuo etupuolelle", "textTableOptions": "Table Options",
"DE.Views.EditShape.textTopAndBottom": "Ylös ja alas", "textText": "Text",
"DE.Views.EditShape.textWithText": "Siirrä tekstillä", "textThrough": "Through",
"DE.Views.EditShape.textWrap": "Rivittäminen", "textTight": "Tight",
"DE.Views.EditTable.textAddCustomColor": "Lisää mukautettu väri", "textTopAndBottom": "Top and Bottom",
"DE.Views.EditTable.textAlign": "Tasaa", "textTotalRow": "Total Row",
"DE.Views.EditTable.textBack": "Takaisin", "textType": "Type",
"DE.Views.EditTable.textBandedColumn": "Raidallinen sarake", "textWrap": "Wrap",
"DE.Views.EditTable.textBandedRow": "Raidallinen rivi", "textNumbers": "Numbers"
"DE.Views.EditTable.textBorder": "Reunus", },
"DE.Views.EditText.textAddCustomColor": "Lisää mukautettu väri", "Error": {
"DE.Views.EditText.textAdditional": "Lisä", "convertationTimeoutText": "Conversion timeout exceeded.",
"DE.Views.EditText.textAdditionalFormat": "Lisämuotoilu", "criticalErrorExtText": "Press 'OK' to go back to the document list.",
"DE.Views.EditText.textAllCaps": "Kaikki isoilla kirjaimilla", "criticalErrorTitle": "Error",
"DE.Views.EditText.textAutomatic": "Automaattinen", "downloadErrorText": "Download failed.",
"DE.Views.EditText.textBack": "Takaisin", "errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"DE.Views.EditText.textBullets": "Pallukat", "errorBadImageUrl": "Image url is incorrect",
"DE.Views.EditText.textCharacterBold": "B", "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.",
"DE.Views.EditText.textDblStrikethrough": "Kaksois yliviivaus", "errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"DE.Views.EditText.textDblSuperscript": "Yläindeksi", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"DE.Views.EditText.textFontColor": "Fontin väri", "errorDataRange": "Incorrect data range.",
"DE.Views.EditText.textFontColors": "Fontin värit", "errorDefaultMessage": "Error code: %1",
"DE.Views.EditText.textFonts": "Fontit", "errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"DE.Views.EditText.textHighlightColor": "Korosta väriä", "errorFilePassProtect": "The file is password protected and could not be opened.",
"DE.Views.EditText.textHighlightColors": "Korosta värejä", "errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"DE.Views.EditText.textLetterSpacing": "Kirjainväli", "errorKeyEncrypt": "Unknown key descriptor",
"DE.Views.EditText.textLineSpacing": "Viivan väli", "errorKeyExpire": "Key descriptor expired",
"DE.Views.EditText.textNone": "Ei mitään", "errorMailMergeLoadFile": "Loading failed",
"DE.Views.EditText.textNumbers": "Numerot", "errorMailMergeSaveFile": "Merge failed.",
"DE.Views.EditText.textSize": "Koko", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"DE.Views.EditText.textSmallCaps": "Kapiteelit", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"DE.Views.EditText.textStrikethrough": "Yliviivaus", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"DE.Views.EditText.textSubscript": "Alaindeksi", "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.",
"DE.Views.Search.textCase": "Isojen/pienten kirjainten mukaan", "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.Views.Search.textDone": "Valmis", "errorUserDrop": "The file can't be accessed right now.",
"DE.Views.Search.textFind": "Etsi", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"DE.Views.Search.textFindAndReplace": "Etsi ja Korvaa", "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.",
"DE.Views.Search.textHighlight": "Korosta tuloksia", "notcriticalErrorTitle": "Warning",
"DE.Views.Search.textReplace": "Korvaa", "openErrorText": "An error has occurred while opening the file",
"DE.Views.Settings.textAbout": "Tietoa", "saveErrorText": "An error has occurred while saving the file",
"DE.Views.Settings.textAddress": "osoite", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"DE.Views.Settings.textAdvancedSettings": "Sovellusasetukset", "splitDividerErrorText": "The number of rows must be a divisor of %1",
"DE.Views.Settings.textApplication": "Sovellus", "splitMaxColsErrorText": "The number of columns must be less than %1",
"DE.Views.Settings.textAuthor": "Kirjoittaja", "splitMaxRowsErrorText": "The number of rows must be less than %1",
"DE.Views.Settings.textBack": "Takaisin", "unknownErrorText": "Unknown error.",
"DE.Views.Settings.textBottom": "Alhaalla", "uploadImageExtMessage": "Unknown image format.",
"DE.Views.Settings.textCreateDate": "Luontipäivä", "uploadImageFileCountMessage": "No images uploaded.",
"DE.Views.Settings.textDocInfo": "Asiakirjan tiedot", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
"DE.Views.Settings.textDocTitle": "Asiakirjan otsikko", },
"DE.Views.Settings.textDone": "Valmis", "LongActions": {
"DE.Views.Settings.textDownload": "Lataa", "applyChangesTextText": "Loading data...",
"DE.Views.Settings.textDownloadAs": "Lataa kuten...", "applyChangesTitleText": "Loading Data",
"DE.Views.Settings.textEditDoc": "Muokkaa asiakirjaa", "downloadMergeText": "Downloading...",
"DE.Views.Settings.textEmail": "sähköposti", "downloadMergeTitle": "Downloading",
"DE.Views.Settings.textFind": "Etsi", "downloadTextText": "Downloading document...",
"DE.Views.Settings.textFindAndReplace": "Etsi ja Korvaa", "downloadTitleText": "Downloading Document",
"DE.Views.Settings.textHelp": "Apua", "loadFontsTextText": "Loading data...",
"DE.Views.Settings.textLoading": "Ladataan...", "loadFontsTitleText": "Loading Data",
"DE.Views.Settings.textPages": "Sivua", "loadFontTextText": "Loading data...",
"DE.Views.Settings.textParagraphs": "Kappaleet", "loadFontTitleText": "Loading Data",
"DE.Views.Settings.textReader": "Lukutila", "loadImagesTextText": "Loading images...",
"DE.Views.Settings.textSettings": "Asetukset", "loadImagesTitleText": "Loading Images",
"DE.Views.Settings.textSpaces": "Välit", "loadImageTextText": "Loading image...",
"DE.Views.Settings.textStatistic": "Tilasto", "loadImageTitleText": "Loading Image",
"DE.Views.Settings.textSymbols": "Symbolit", "loadingDocumentTextText": "Loading document...",
"DE.Views.Settings.textTel": "Puh.", "loadingDocumentTitleText": "Loading document",
"DE.Views.Settings.textVersion": "Versio", "mailMergeLoadFileText": "Loading Data Source...",
"DE.Views.Settings.textWords": "Sanoja", "mailMergeLoadFileTitle": "Loading Data Source",
"DE.Views.Settings.unknownText": "Tuntematon", "openTextText": "Opening document...",
"DE.Views.Toolbar.textBack": "Takaisin" "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", "textReplaceAll": "Remplacer tout",
"textResolvedComments": "Commentaires résolus", "textResolvedComments": "Commentaires résolus",
"textRight": "À droite", "textRight": "À droite",
"textSearch": "Recherche", "textSearch": "Rechercher",
"textSettings": "Paramètres", "textSettings": "Paramètres",
"textShowNotification": "Montrer la notification", "textShowNotification": "Montrer la notification",
"textSpellcheck": "Vérification de l'orthographe", "textSpellcheck": "Vérification de l'orthographe",
@ -557,10 +557,12 @@
"txtScheme18": "Technique", "txtScheme18": "Technique",
"txtScheme19": "Promenade", "txtScheme19": "Promenade",
"txtScheme2": "Nuances de gris", "txtScheme2": "Nuances de gris",
"txtScheme20": "Urbain",
"txtScheme21": "Verve",
"txtScheme22": "New Office", "txtScheme22": "New Office",
"txtScheme3": "Apex", "txtScheme3": "Apex",
"txtScheme4": "Aspect", "txtScheme4": "Aspect",
"txtScheme5": "Civique", "txtScheme5": "Civil",
"txtScheme6": "Rotonde", "txtScheme6": "Rotonde",
"txtScheme7": "Capitaux", "txtScheme7": "Capitaux",
"txtScheme8": "Flux", "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": { "About": {
"textAbout": "情報", "textAbout": "情報",
"textAddress": "アドレス", "textAddress": "アドレス",
"textBack": "戻る" "textBack": "戻る",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
}, },
"Add": { "Add": {
"textAddLink": "リンクを追加", "textAddLink": "リンクを追加",
"textAddress": "アドレス", "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": { "Common": {
"Collaboration": { "Collaboration": {
@ -20,12 +69,118 @@
"textAllChangesRejectedPreview": "すべての変更が拒否されました(プレビュー)", "textAllChangesRejectedPreview": "すべての変更が拒否されました(プレビュー)",
"textAuto": "自動", "textAuto": "自動",
"textBack": "戻る", "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": { "ContextMenu": {
"menuAddComment": "コメントを追加", "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": { "Edit": {
"textActualSize": "実際のサイズ", "textActualSize": "実際のサイズ",
@ -37,16 +192,386 @@
"textAuto": "自動", "textAuto": "自動",
"textAutomatic": "自動", "textAutomatic": "自動",
"textBack": "戻る", "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": { "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": { "Settings": {
"textAbout": "情報", "textAbout": "情報",
"textApplication": "アプリ", "textApplication": "アプリ",
"textApplicationSettings": "アプリ設定", "textApplicationSettings": "アプリ設定",
"textAuthor": "作成者", "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": "양끝 정렬", "About": {
"Common.UI.ThemeColorPalette.textStandartColors": "표준 색상", "textAbout": "About",
"Common.UI.ThemeColorPalette.textThemeColors": "테마 색", "textAddress": "Address",
"Common.Utils.Metric.txtCm": "cm", "textBack": "Back",
"Common.Utils.Metric.txtPt": "pt", "textEmail": "Email",
"DE.Controllers.AddContainer.textImage": "이미지", "textPoweredBy": "Powered By",
"DE.Controllers.AddContainer.textOther": "기타", "textTel": "Tel",
"DE.Controllers.AddContainer.textShape": "Shape", "textVersion": "Version"
"DE.Controllers.AddContainer.textTable": "테이블", },
"DE.Controllers.AddImage.textEmptyImgUrl": "이미지 URL을 지정해야합니다.", "Add": {
"DE.Controllers.AddImage.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", "notcriticalErrorTitle": "Warning",
"DE.Controllers.AddOther.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", "textAddLink": "Add link",
"DE.Controllers.AddTable.textCancel": "취소", "textAddress": "Address",
"DE.Controllers.AddTable.textColumns": "열", "textBack": "Back",
"DE.Controllers.AddTable.textRows": "Rows", "textBelowText": "Below text",
"DE.Controllers.AddTable.textTableSize": "표 크기", "textBottomOfPage": "Bottom of page",
"DE.Controllers.DocumentHolder.errorCopyCutPaste": "복사, 잘라내기 및 붙여 넣기 작업", "textBreak": "Break",
"DE.Controllers.DocumentHolder.menuAddLink": "링크 추가", "textCancel": "Cancel",
"DE.Controllers.DocumentHolder.menuCopy": "복사", "textCenterBottom": "Center Bottom",
"DE.Controllers.DocumentHolder.menuCut": "잘라 내기", "textCenterTop": "Center Top",
"DE.Controllers.DocumentHolder.menuDelete": "삭제", "textColumnBreak": "Column Break",
"DE.Controllers.DocumentHolder.menuEdit": "편집", "textColumns": "Columns",
"DE.Controllers.DocumentHolder.menuMore": "More", "textComment": "Comment",
"DE.Controllers.DocumentHolder.menuOpenLink": "링크 열기", "textContinuousPage": "Continuous Page",
"DE.Controllers.DocumentHolder.menuPaste": "붙여 넣기", "textCurrentPosition": "Current Position",
"DE.Controllers.DocumentHolder.menuReview": "다시보기", "textDisplay": "Display",
"DE.Controllers.DocumentHolder.sheetCancel": "취소", "textEmptyImgUrl": "You need to specify image URL.",
"DE.Controllers.DocumentHolder.textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기", "textEvenPage": "Even Page",
"DE.Controllers.DocumentHolder.textGuest": "Guest", "textFootnote": "Footnote",
"DE.Controllers.EditContainer.textChart": "차트", "textFormat": "Format",
"DE.Controllers.EditContainer.textFooter": "꼬리말", "textImage": "Image",
"DE.Controllers.EditContainer.textHeader": "머리글", "textImageURL": "Image URL",
"DE.Controllers.EditContainer.textHyperlink": "하이퍼 링크", "textInsert": "Insert",
"DE.Controllers.EditContainer.textImage": "이미지", "textInsertFootnote": "Insert Footnote",
"DE.Controllers.EditContainer.textParagraph": "단락", "textInsertImage": "Insert Image",
"DE.Controllers.EditContainer.textSettings": "설정", "textLeftBottom": "Left Bottom",
"DE.Controllers.EditContainer.textShape": "Shape", "textLeftTop": "Left Top",
"DE.Controllers.EditContainer.textTable": "테이블", "textLink": "Link",
"DE.Controllers.EditContainer.textText": "텍스트", "textLinkSettings": "Link Settings",
"DE.Controllers.EditImage.textEmptyImgUrl": "이미지 URL을 지정해야합니다.", "textLocation": "Location",
"DE.Controllers.EditImage.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", "textNextPage": "Next Page",
"DE.Controllers.EditText.textAuto": "Auto", "textOddPage": "Odd Page",
"DE.Controllers.EditText.textFonts": "글꼴", "textOther": "Other",
"DE.Controllers.EditText.textPt": "pt", "textPageBreak": "Page Break",
"DE.Controllers.Main.advDRMEnterPassword": "비밀번호를 입력하십시오 :", "textPageNumber": "Page Number",
"DE.Controllers.Main.advDRMOptions": "보호 된 파일", "textPictureFromLibrary": "Picture from Library",
"DE.Controllers.Main.advDRMPassword": "Password", "textPictureFromURL": "Picture from URL",
"DE.Controllers.Main.advTxtOptions": "TXT 옵션 선택", "textPosition": "Position",
"DE.Controllers.Main.applyChangesTextText": "데이터로드 중 ...", "textRightBottom": "Right Bottom",
"DE.Controllers.Main.applyChangesTitleText": "데이터로드 중", "textRightTop": "Right Top",
"DE.Controllers.Main.closeButtonText": "파일 닫기", "textRows": "Rows",
"DE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", "textScreenTip": "Screen Tip",
"DE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 '확인'을 누르십시오.", "textSectionBreak": "Section Break",
"DE.Controllers.Main.criticalErrorTitle": "오류", "textShape": "Shape",
"DE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.", "textStartAt": "Start At",
"DE.Controllers.Main.downloadMergeText": "다운로드 중 ...", "textTable": "Table",
"DE.Controllers.Main.downloadMergeTitle": "다운로드 중", "textTableSize": "Table Size",
"DE.Controllers.Main.downloadTextText": "문서 다운로드 중 ...", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
"DE.Controllers.Main.downloadTitleText": "문서 다운로드 중", },
"DE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.", "Common": {
"DE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 더 이상 편집 할 수 없습니다.", "Collaboration": {
"DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.<br>'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.", "notcriticalErrorTitle": "Warning",
"DE.Controllers.Main.errorDatabaseConnection": "외부 오류입니다. <br> 데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", "textAccept": "Accept",
"DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.", "textAcceptAllChanges": "Accept all changes",
"DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1", "textAddComment": "Add comment",
"DE.Controllers.Main.errorEditingDownloadas": "문서에 작업하는 도중에 에러가 발생했습니다.<br>'다운로드' 옵션을 사용해서 컴퓨터에 백업본을 저장해 주세요.", "textAddReply": "Add reply",
"DE.Controllers.Main.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", "textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"DE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자", "textAllChangesEditing": "All changes (Editing)",
"DE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다", "textAllChangesRejectedPreview": "All changes rejected (Preview)",
"DE.Controllers.Main.errorMailMergeLoadFile": "로드 실패", "textAtLeast": "at least",
"DE.Controllers.Main.errorMailMergeSaveFile": "병합하지 못했습니다.", "textAuto": "auto",
"DE.Controllers.Main.errorProcessSaveResult": "저장이 실패했습니다.", "textBack": "Back",
"DE.Controllers.Main.errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", "textBaseline": "Baseline",
"DE.Controllers.Main.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 다음 순서로 시트에 데이터를 배치하십시오 : <br> 개시 가격, 최대 가격, 최소 가격, 마감 가격.", "textBold": "Bold",
"DE.Controllers.Main.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", "textBreakBefore": "Page break before",
"DE.Controllers.Main.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "textCancel": "Cancel",
"DE.Controllers.Main.errorUsersExceed": "사용자 수가 초과되었습니다", "textCaps": "All caps",
"DE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는 <br> <br>하지만 연결이 복원 될 때까지 다운로드 할 수 없습니다.", "textCenter": "Align center",
"DE.Controllers.Main.leavePageText": "이 문서에서 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 있으면 문서의 자동 저장을 기다릴 수 있습니다. 저장하지 않은 모든 변경 사항을 취소하려면 '이 페이지 남겨두기'를 클릭하십시오.", "textChart": "Chart",
"DE.Controllers.Main.loadFontsTextText": "데이터로드 중 ...", "textCollaboration": "Collaboration",
"DE.Controllers.Main.loadFontsTitleText": "데이터로드 중", "textColor": "Font color",
"DE.Controllers.Main.loadFontTextText": "데이터로드 중 ...", "textComments": "Comments",
"DE.Controllers.Main.loadFontTitleText": "데이터로드 중", "textContextual": "Don't add intervals between paragraphs of the same style",
"DE.Controllers.Main.loadImagesTextText": "이미지로드 중 ...", "textDelete": "Delete",
"DE.Controllers.Main.loadImagesTitleText": "이미지로드 중", "textDeleteComment": "Delete Comment",
"DE.Controllers.Main.loadImageTextText": "이미지로드 중 ...", "textDeleted": "Deleted:",
"DE.Controllers.Main.loadImageTitleText": "이미지로드 중", "textDeleteReply": "Delete Reply",
"DE.Controllers.Main.loadingDocumentTextText": "문서로드 중 ...", "textDisplayMode": "Display Mode",
"DE.Controllers.Main.loadingDocumentTitleText": "문서로드 중", "textDone": "Done",
"DE.Controllers.Main.mailMergeLoadFileText": "데이터 소스로드 중 ...", "textDStrikeout": "Double strikeout",
"DE.Controllers.Main.mailMergeLoadFileTitle": "데이터 소스로드 중", "textEdit": "Edit",
"DE.Controllers.Main.notcriticalErrorTitle": "경고", "textEditComment": "Edit Comment",
"DE.Controllers.Main.openErrorText": "파일을 여는 동안 오류가 발생했습니다.", "textEditReply": "Edit Reply",
"DE.Controllers.Main.openTextText": "문서 열기 중 ...", "textEditUser": "Users who are editing the file:",
"DE.Controllers.Main.openTitleText": "문서 열기", "textEquation": "Equation",
"DE.Controllers.Main.printTextText": "문서 인쇄 중 ...", "textExact": "exactly",
"DE.Controllers.Main.printTitleText": "문서 인쇄 중", "textFinal": "Final",
"DE.Controllers.Main.saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", "textFirstLine": "First line",
"DE.Controllers.Main.savePreparingText": "저장 준비 중", "textFormatted": "Formatted",
"DE.Controllers.Main.savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", "textHighlight": "Highlight color",
"DE.Controllers.Main.saveTextText": "문서 저장 중 ...", "textImage": "Image",
"DE.Controllers.Main.saveTitleText": "문서 저장 중", "textIndentLeft": "Indent left",
"DE.Controllers.Main.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", "textIndentRight": "Indent right",
"DE.Controllers.Main.sendMergeText": "Sending Merge ...", "textInserted": "Inserted:",
"DE.Controllers.Main.sendMergeTitle": "Sending Merge", "textItalic": "Italic",
"DE.Controllers.Main.splitDividerErrorText": "행 수는 % 1의 제수 여야합니다", "textJustify": "Align justified ",
"DE.Controllers.Main.splitMaxColsErrorText": "열 수가 % 1보다 작아야합니다", "textKeepLines": "Keep lines together",
"DE.Controllers.Main.splitMaxRowsErrorText": "행 수가 % 1보다 작아야합니다", "textKeepNext": "Keep with next",
"DE.Controllers.Main.textAnonymous": "익명", "textLeft": "Align left",
"DE.Controllers.Main.textBack": "Back", "textLineSpacing": "Line Spacing: ",
"DE.Controllers.Main.textBuyNow": "웹 사이트 방문", "textMarkup": "Markup",
"DE.Controllers.Main.textCancel": "취소", "textMessageDeleteComment": "Do you really want to delete this comment?",
"DE.Controllers.Main.textClose": "닫기", "textMessageDeleteReply": "Do you really want to delete this reply?",
"DE.Controllers.Main.textContactUs": "영업 부서", "textMultiple": "multiple",
"DE.Controllers.Main.textDone": "완료", "textNoBreakBefore": "No page break before",
"DE.Controllers.Main.textLoadingDocument": "문서로드 중", "textNoChanges": "There are no changes.",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE 연결 제한", "textNoComments": "This document doesn't contain comments",
"DE.Controllers.Main.textOK": "OK", "textNoContextual": "Add interval between paragraphs of the same style",
"DE.Controllers.Main.textPaidFeature": "유료 기능", "textNoKeepLines": "Don't keep lines together",
"DE.Controllers.Main.textPassword": "Password", "textNoKeepNext": "Don't keep with next",
"DE.Controllers.Main.textPreloader": "로드 중 ...", "textNot": "Not ",
"DE.Controllers.Main.textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", "textNoWidow": "No widow control",
"DE.Controllers.Main.textUsername": "사용자 이름", "textNum": "Change numbering",
"DE.Controllers.Main.titleLicenseExp": "라이센스 만료", "textOriginal": "Original",
"DE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다.", "textParaDeleted": "Paragraph Deleted",
"DE.Controllers.Main.titleUpdateVersion": "버전이 변경되었습니다.", "textParaFormatted": "Paragraph Formatted",
"DE.Controllers.Main.txtArt": "여기에 귀하의 텍스트", "textParaInserted": "Paragraph Inserted",
"DE.Controllers.Main.txtDiagramTitle": "차트 제목", "textParaMoveFromDown": "Moved Down:",
"DE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...", "textParaMoveFromUp": "Moved Up:",
"DE.Controllers.Main.txtFooter": "Footer", "textParaMoveTo": "Moved:",
"DE.Controllers.Main.txtHeader": "머리글", "textPosition": "Position",
"DE.Controllers.Main.txtSeries": "Series", "textReject": "Reject",
"DE.Controllers.Main.txtStyle_footnote_text": "꼬리말 글", "textRejectAllChanges": "Reject All Changes",
"DE.Controllers.Main.txtStyle_Heading_1": "제목 1", "textReopen": "Reopen",
"DE.Controllers.Main.txtStyle_Heading_2": "제목 2", "textResolve": "Resolve",
"DE.Controllers.Main.txtStyle_Heading_3": "제목 3", "textReview": "Review",
"DE.Controllers.Main.txtStyle_Heading_4": "제목 4", "textReviewChange": "Review Change",
"DE.Controllers.Main.txtStyle_Heading_5": "제목 5", "textRight": "Align right",
"DE.Controllers.Main.txtStyle_Heading_6": "제목 6", "textShape": "Shape",
"DE.Controllers.Main.txtStyle_Heading_7": "제목 7", "textShd": "Background color",
"DE.Controllers.Main.txtStyle_Heading_8": "제목 8", "textSmallCaps": "Small caps",
"DE.Controllers.Main.txtStyle_Heading_9": "제목 9", "textSpacing": "Spacing",
"DE.Controllers.Main.txtStyle_Intense_Quote": "강렬한 견적", "textSpacingAfter": "Spacing after",
"DE.Controllers.Main.txtStyle_List_Paragraph": "목록 단락", "textSpacingBefore": "Spacing before",
"DE.Controllers.Main.txtStyle_No_Spacing": "간격 없음", "textStrikeout": "Strikeout",
"DE.Controllers.Main.txtStyle_Normal": "Normal", "textSubScript": "Subscript",
"DE.Controllers.Main.txtStyle_Quote": "Quote", "textSuperScript": "Superscript",
"DE.Controllers.Main.txtStyle_Subtitle": "자막", "textTableChanged": "Table Settings Changed",
"DE.Controllers.Main.txtStyle_Title": "제목", "textTableRowsAdd": "Table Rows Added",
"DE.Controllers.Main.txtXAxis": "X 축", "textTableRowsDel": "Table Rows Deleted",
"DE.Controllers.Main.txtYAxis": "Y 축", "textTabs": "Change tabs",
"DE.Controllers.Main.unknownErrorText": "알 수없는 오류.", "textTrackChanges": "Track Changes",
"DE.Controllers.Main.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"DE.Controllers.Main.uploadImageExtMessage": "알 수없는 이미지 형식입니다.", "textUnderline": "Underline",
"DE.Controllers.Main.uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", "textUsers": "Users",
"DE.Controllers.Main.uploadImageSizeMessage": "Maximium 이미지 크기 제한을 초과했습니다.", "textWidow": "Widow control"
"DE.Controllers.Main.uploadImageTextText": "이미지 업로드 중 ...", },
"DE.Controllers.Main.uploadImageTitleText": "이미지 업로드 중", "ThemeColorPalette": {
"DE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다. <br> 라이센스를 업데이트하고 페이지를 새로 고침하십시오.", "textCustomColors": "Custom Colors",
"DE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다. <br> 더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", "textStandartColors": "Standard Colors",
"DE.Controllers.Main.warnNoLicenseUsers": "%1 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다. <br> 더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", "textThemeColors": "Theme Colors"
"DE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.", }
"DE.Controllers.Search.textNoTextFound": "텍스트를 찾을 수 없습니다", },
"DE.Controllers.Search.textReplaceAll": "모두 바꾸기", "ContextMenu": {
"DE.Controllers.Settings.notcriticalErrorTitle": "경고", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"DE.Controllers.Settings.txtLoading": "로드 중 ...", "menuAddComment": "Add comment",
"DE.Controllers.Settings.unknownText": "알 수 없음", "menuAddLink": "Add link",
"DE.Controllers.Settings.warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?", "menuCancel": "Cancel",
"DE.Controllers.Toolbar.dlgLeaveMsgText": "이 문서에 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 있으면 문서의 자동 저장을 기다릴 수 있습니다. 저장하지 않은 모든 변경 사항을 취소하려면 '이 페이지를 남겨주세요'를 클릭하십시오.", "menuDelete": "Delete",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "응용 프로그램을 종료합니다", "menuDeleteTable": "Delete Table",
"DE.Controllers.Toolbar.leaveButtonText": "이 페이지를 남겨주세요", "menuEdit": "Edit",
"DE.Controllers.Toolbar.stayButtonText": "이 페이지에 머물러 라.", "menuMerge": "Merge",
"DE.Views.AddImage.textAddress": "주소", "menuMore": "More",
"DE.Views.AddImage.textBack": "뒤로", "menuOpenLink": "Open Link",
"DE.Views.AddImage.textFromLibrary": "그림 라이브러리에서", "menuReview": "Review",
"DE.Views.AddImage.textFromURL": "URL에서 그림", "menuReviewChange": "Review Change",
"DE.Views.AddImage.textImageURL": "이미지 URL", "menuSplit": "Split",
"DE.Views.AddImage.textInsertImage": "이미지 삽입", "menuViewComment": "View Comment",
"DE.Views.AddImage.textLinkSettings": "링크 설정", "textColumns": "Columns",
"DE.Views.AddOther.textAddLink": "링크 추가", "textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"DE.Views.AddOther.textBack": "뒤로", "textDoNotShowAgain": "Don't show again",
"DE.Views.AddOther.textCenterBottom": "Center Bottom", "textRows": "Rows"
"DE.Views.AddOther.textCenterTop": "센터 상단", },
"DE.Views.AddOther.textColumnBreak": "열 나누기", "Edit": {
"DE.Views.AddOther.textContPage": "연속 페이지", "notcriticalErrorTitle": "Warning",
"DE.Views.AddOther.textCurrentPos": "현재 위치", "textActualSize": "Actual size",
"DE.Views.AddOther.textDisplay": "표시", "textAddCustomColor": "Add custom color",
"DE.Views.AddOther.textEvenPage": "짝수 페이지", "textAdditional": "Additional",
"DE.Views.AddOther.textInsert": "삽입", "textAdditionalFormatting": "Additional formatting",
"DE.Views.AddOther.textLeftBottom": "왼쪽 아래", "textAddress": "Address",
"DE.Views.AddOther.textLeftTop": "왼쪽 상단", "textAdvanced": "Advanced",
"DE.Views.AddOther.textLink": "링크", "textAdvancedSettings": "Advanced settings",
"DE.Views.AddOther.textNextPage": "다음 페이지", "textAfter": "After",
"DE.Views.AddOther.textOddPage": "홀수 페이지", "textAlign": "Align",
"DE.Views.AddOther.textPageBreak": "페이지 나누기", "textAllCaps": "All caps",
"DE.Views.AddOther.textPageNumber": "페이지 번호", "textAllowOverlap": "Allow overlap",
"DE.Views.AddOther.textPosition": "위치", "textAuto": "Auto",
"DE.Views.AddOther.textRightBottom": "오른쪽 아래", "textAutomatic": "Automatic",
"DE.Views.AddOther.textRightTop": "오른쪽 상단", "textBack": "Back",
"DE.Views.AddOther.textSectionBreak": "섹션 나누기", "textBackground": "Background",
"DE.Views.AddOther.textTip": "화면 팁", "textBandedColumn": "Banded column",
"DE.Views.EditChart.textAlign": "정렬", "textBandedRow": "Banded row",
"DE.Views.EditChart.textBack": "뒤로", "textBefore": "Before",
"DE.Views.EditChart.textBackward": "뒤로 이동", "textBehind": "Behind",
"DE.Views.EditChart.textBehind": "Behind", "textBorder": "Border",
"DE.Views.EditChart.textBorder": "테두리", "textBringToForeground": "Bring to foreground",
"DE.Views.EditChart.textColor": "Color", "textBullets": "Bullets",
"DE.Views.EditChart.textDistanceText": "텍스트로부터의 거리", "textBulletsAndNumbers": "Bullets & Numbers",
"DE.Views.EditChart.textFill": "채우기", "textCellMargins": "Cell Margins",
"DE.Views.EditChart.textForward": "앞으로 이동", "textChart": "Chart",
"DE.Views.EditChart.textInFront": "In Front", "textClose": "Close",
"DE.Views.EditChart.textInline": "인라인", "textColor": "Color",
"DE.Views.EditChart.textMoveText": "텍스트와 함께 이동", "textContinueFromPreviousSection": "Continue from previous section",
"DE.Views.EditChart.textOverlap": "오버랩 허용", "textCustomColor": "Custom Color",
"DE.Views.EditChart.textRemoveChart": "차트 제거", "textDifferentFirstPage": "Different first page",
"DE.Views.EditChart.textReorder": "재정렬", "textDifferentOddAndEvenPages": "Different odd and even pages",
"DE.Views.EditChart.textSize": "크기", "textDisplay": "Display",
"DE.Views.EditChart.textSquare": "Square", "textDistanceFromText": "Distance from text",
"DE.Views.EditChart.textStyle": "스타일", "textDoubleStrikethrough": "Double Strikethrough",
"DE.Views.EditChart.textThrough": "통해", "textEditLink": "Edit Link",
"DE.Views.EditChart.textTight": "Tight", "textEffects": "Effects",
"DE.Views.EditChart.textToBackground": "배경으로 보내기", "textEmptyImgUrl": "You need to specify image URL.",
"DE.Views.EditChart.textToForeground": "포 그라운드로 가져 오기", "textFill": "Fill",
"DE.Views.EditChart.textTopBottom": "상단 및 하단", "textFirstColumn": "First Column",
"DE.Views.EditChart.textType": "유형", "textFirstLine": "FirstLine",
"DE.Views.EditChart.textWrap": "줄 바꾸기", "textFlow": "Flow",
"DE.Views.EditHeader.textDiffFirst": "다른 첫 페이지", "textFontColor": "Font Color",
"DE.Views.EditHeader.textDiffOdd": "다른 홀수 및 짝수 페이지", "textFontColors": "Font Colors",
"DE.Views.EditHeader.textSameAs": "이전 링크", "textFonts": "Fonts",
"DE.Views.EditHyperlink.textDisplay": "표시", "textFooter": "Footer",
"DE.Views.EditHyperlink.textEdit": "링크 편집", "textHeader": "Header",
"DE.Views.EditHyperlink.textLink": "링크", "textHeaderRow": "Header Row",
"DE.Views.EditHyperlink.textRemove": "링크 제거", "textHighlightColor": "Highlight Color",
"DE.Views.EditHyperlink.textTip": "화면 팁", "textHyperlink": "Hyperlink",
"DE.Views.EditImage.textAddress": "주소", "textImage": "Image",
"DE.Views.EditImage.textAlign": "정렬", "textImageURL": "Image URL",
"DE.Views.EditImage.textBack": "뒤로", "textInFront": "In Front",
"DE.Views.EditImage.textBackward": "뒤로 이동", "textInline": "Inline",
"DE.Views.EditImage.textBehind": "Behind", "textKeepLinesTogether": "Keep Lines Together",
"DE.Views.EditImage.textDefault": "기본 크기", "textKeepWithNext": "Keep with Next",
"DE.Views.EditImage.textDistanceText": "텍스트로부터의 거리", "textLastColumn": "Last Column",
"DE.Views.EditImage.textForward": "앞으로 이동", "textLetterSpacing": "Letter Spacing",
"DE.Views.EditImage.textFromLibrary": "그림 라이브러리에서", "textLineSpacing": "Line Spacing",
"DE.Views.EditImage.textFromURL": "URL에서 그림", "textLink": "Link",
"DE.Views.EditImage.textImageURL": "이미지 URL", "textLinkSettings": "Link Settings",
"DE.Views.EditImage.textInFront": "In Front", "textLinkToPrevious": "Link to Previous",
"DE.Views.EditImage.textInline": "인라인", "textMoveBackward": "Move Backward",
"DE.Views.EditImage.textLinkSettings": "링크 설정", "textMoveForward": "Move Forward",
"DE.Views.EditImage.textMoveText": "텍스트와 함께 이동", "textMoveWithText": "Move with Text",
"DE.Views.EditImage.textOverlap": "오버랩 허용", "textNone": "None",
"DE.Views.EditImage.textRemove": "이미지 제거", "textNoStyles": "No styles for this type of charts.",
"DE.Views.EditImage.textReorder": "재주문", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"DE.Views.EditImage.textReplace": "바꾸기", "textOpacity": "Opacity",
"DE.Views.EditImage.textReplaceImg": "이미지 바꾸기", "textOptions": "Options",
"DE.Views.EditImage.textSquare": "Square", "textOrphanControl": "Orphan Control",
"DE.Views.EditImage.textThrough": "통해", "textPageBreakBefore": "Page Break Before",
"DE.Views.EditImage.textTight": "Tight", "textPageNumbering": "Page Numbering",
"DE.Views.EditImage.textToBackground": "배경에 보내기", "textParagraph": "Paragraph",
"DE.Views.EditImage.textToForeground": "포 그라운드로 가져 오기", "textParagraphStyles": "Paragraph Styles",
"DE.Views.EditImage.textTopBottom": "상단 및 하단", "textPictureFromLibrary": "Picture from Library",
"DE.Views.EditImage.textWrap": "줄 바꾸기", "textPictureFromURL": "Picture from URL",
"DE.Views.EditParagraph.textAdvanced": "고급", "textPt": "pt",
"DE.Views.EditParagraph.textAdvSettings": "고급 설정", "textRemoveChart": "Remove Chart",
"DE.Views.EditParagraph.textAfter": "이후", "textRemoveImage": "Remove Image",
"DE.Views.EditParagraph.textAuto": "자동", "textRemoveLink": "Remove Link",
"DE.Views.EditParagraph.textBack": "뒤로", "textRemoveShape": "Remove Shape",
"DE.Views.EditParagraph.textBackground": "배경", "textRemoveTable": "Remove Table",
"DE.Views.EditParagraph.textBefore": "이전", "textReorder": "Reorder",
"DE.Views.EditParagraph.textFirstLine": "첫 번째 줄", "textRepeatAsHeaderRow": "Repeat as Header Row",
"DE.Views.EditParagraph.textFromText": "텍스트로부터의 거리", "textReplace": "Replace",
"DE.Views.EditParagraph.textKeepLines": "Keep Lines Together", "textReplaceImage": "Replace Image",
"DE.Views.EditParagraph.textKeepNext": "다음 보관", "textResizeToFitContent": "Resize to Fit Content",
"DE.Views.EditParagraph.textOrphan": "고아 컨트롤", "textScreenTip": "Screen Tip",
"DE.Views.EditParagraph.textPageBreak": "페이지 나누기 전", "textSelectObjectToEdit": "Select object to edit",
"DE.Views.EditParagraph.textPrgStyles": "단락 스타일", "textSendToBackground": "Send to Background",
"DE.Views.EditParagraph.textSpaceBetween": "단락 사이의 공백", "textSettings": "Settings",
"DE.Views.EditShape.textAlign": "정렬", "textShape": "Shape",
"DE.Views.EditShape.textBack": "뒤로", "textSize": "Size",
"DE.Views.EditShape.textBackward": "뒤로 이동", "textSmallCaps": "Small Caps",
"DE.Views.EditShape.textBehind": "Behind", "textSpaceBetweenParagraphs": "Space Between Paragraphs",
"DE.Views.EditShape.textBorder": "테두리", "textSquare": "Square",
"DE.Views.EditShape.textColor": "Color", "textStartAt": "Start at",
"DE.Views.EditShape.textEffects": "효과", "textStrikethrough": "Strikethrough",
"DE.Views.EditShape.textFill": "채우기", "textStyle": "Style",
"DE.Views.EditShape.textForward": "앞으로 이동", "textStyleOptions": "Style Options",
"DE.Views.EditShape.textFromText": "텍스트로부터의 거리", "textSubscript": "Subscript",
"DE.Views.EditShape.textInFront": "앞에 있음", "textSuperscript": "Superscript",
"DE.Views.EditShape.textInline": "인라인", "textTable": "Table",
"DE.Views.EditShape.textOpacity": "불투명도", "textTableOptions": "Table Options",
"DE.Views.EditShape.textOverlap": "오버랩 허용", "textText": "Text",
"DE.Views.EditShape.textRemoveShape": "도형 제거", "textThrough": "Through",
"DE.Views.EditShape.textReorder": "재정렬", "textTight": "Tight",
"DE.Views.EditShape.textReplace": "바꾸기", "textTopAndBottom": "Top and Bottom",
"DE.Views.EditShape.textSize": "크기", "textTotalRow": "Total Row",
"DE.Views.EditShape.textSquare": "Square", "textType": "Type",
"DE.Views.EditShape.textStyle": "스타일", "textWrap": "Wrap",
"DE.Views.EditShape.textThrough": "통해", "textNumbers": "Numbers"
"DE.Views.EditShape.textTight": "Tight", },
"DE.Views.EditShape.textToBackground": "배경으로 보내기", "Error": {
"DE.Views.EditShape.textToForeground": "포 그라운드로 가져 오기", "convertationTimeoutText": "Conversion timeout exceeded.",
"DE.Views.EditShape.textTopAndBottom": "상단 및 하단", "criticalErrorExtText": "Press 'OK' to go back to the document list.",
"DE.Views.EditShape.textWithText": "텍스트와 함께 이동", "criticalErrorTitle": "Error",
"DE.Views.EditShape.textWrap": "줄 바꾸기", "downloadErrorText": "Download failed.",
"DE.Views.EditTable.textAlign": "정렬", "errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"DE.Views.EditTable.textBack": "뒤로", "errorBadImageUrl": "Image url is incorrect",
"DE.Views.EditTable.textBandedColumn": "줄무늬 형 열", "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.",
"DE.Views.EditTable.textBandedRow": "줄무늬 행", "errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"DE.Views.EditTable.textBorder": "테두리", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"DE.Views.EditTable.textCellMargins": "셀 여백", "errorDataRange": "Incorrect data range.",
"DE.Views.EditTable.textColor": "Color", "errorDefaultMessage": "Error code: %1",
"DE.Views.EditTable.textFill": "채우기", "errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"DE.Views.EditTable.textFirstColumn": "첫 번째 열", "errorFilePassProtect": "The file is password protected and could not be opened.",
"DE.Views.EditTable.textFlow": "흐름", "errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"DE.Views.EditTable.textFromText": "텍스트로부터의 거리", "errorKeyEncrypt": "Unknown key descriptor",
"DE.Views.EditTable.textHeaderRow": "헤더 행", "errorKeyExpire": "Key descriptor expired",
"DE.Views.EditTable.textInline": "인라인", "errorMailMergeLoadFile": "Loading failed",
"DE.Views.EditTable.textLastColumn": "마지막 열", "errorMailMergeSaveFile": "Merge failed.",
"DE.Views.EditTable.textOptions": "옵션", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"DE.Views.EditTable.textRemoveTable": "테이블 제거", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"DE.Views.EditTable.textRepeatHeader": "헤더 행으로 반복", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"DE.Views.EditTable.textResizeFit": "내용에 맞게 크기 조정", "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.",
"DE.Views.EditTable.textSize": "크기", "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.Views.EditTable.textStyle": "스타일", "errorUserDrop": "The file can't be accessed right now.",
"DE.Views.EditTable.textStyleOptions": "스타일 옵션", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"DE.Views.EditTable.textTableOptions": "테이블 옵션", "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.",
"DE.Views.EditTable.textTotalRow": "총 행", "notcriticalErrorTitle": "Warning",
"DE.Views.EditTable.textWithText": "텍스트와 함께 이동", "openErrorText": "An error has occurred while opening the file",
"DE.Views.EditTable.textWrap": "줄 바꾸기", "saveErrorText": "An error has occurred while saving the file",
"DE.Views.EditText.textAdditional": "추가", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"DE.Views.EditText.textAdditionalFormat": "추가 서식 지정", "splitDividerErrorText": "The number of rows must be a divisor of %1",
"DE.Views.EditText.textAllCaps": "모든 대문자", "splitMaxColsErrorText": "The number of columns must be less than %1",
"DE.Views.EditText.textAutomatic": "자동", "splitMaxRowsErrorText": "The number of rows must be less than %1",
"DE.Views.EditText.textBack": "뒤로", "unknownErrorText": "Unknown error.",
"DE.Views.EditText.textBullets": "Bullets", "uploadImageExtMessage": "Unknown image format.",
"DE.Views.EditText.textDblStrikethrough": "Double Strikethrough", "uploadImageFileCountMessage": "No images uploaded.",
"DE.Views.EditText.textDblSuperscript": "위 첨자", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
"DE.Views.EditText.textFontColor": "글꼴 색", },
"DE.Views.EditText.textFontColors": "글꼴 색", "LongActions": {
"DE.Views.EditText.textFonts": "글꼴", "applyChangesTextText": "Loading data...",
"DE.Views.EditText.textHighlightColor": "Highlight Color", "applyChangesTitleText": "Loading Data",
"DE.Views.EditText.textHighlightColors": "하이라이트 색상", "downloadMergeText": "Downloading...",
"DE.Views.EditText.textLetterSpacing": "문자 간격", "downloadMergeTitle": "Downloading",
"DE.Views.EditText.textLineSpacing": "줄 간격", "downloadTextText": "Downloading document...",
"DE.Views.EditText.textNone": "없음", "downloadTitleText": "Downloading Document",
"DE.Views.EditText.textNumbers": "숫자", "loadFontsTextText": "Loading data...",
"DE.Views.EditText.textSize": "크기", "loadFontsTitleText": "Loading Data",
"DE.Views.EditText.textSmallCaps": "작은 대문자", "loadFontTextText": "Loading data...",
"DE.Views.EditText.textStrikethrough": "취소 선", "loadFontTitleText": "Loading Data",
"DE.Views.EditText.textSubscript": "아래 첨자", "loadImagesTextText": "Loading images...",
"DE.Views.Search.textCase": "대소 문자를 구분합니다", "loadImagesTitleText": "Loading Images",
"DE.Views.Search.textDone": "완료", "loadImageTextText": "Loading image...",
"DE.Views.Search.textFind": "찾기", "loadImageTitleText": "Loading Image",
"DE.Views.Search.textFindAndReplace": "찾기 및 바꾸기", "loadingDocumentTextText": "Loading document...",
"DE.Views.Search.textHighlight": "결과 강조 표시", "loadingDocumentTitleText": "Loading document",
"DE.Views.Search.textReplace": "바꾸기", "mailMergeLoadFileText": "Loading Data Source...",
"DE.Views.Search.textSearch": "검색", "mailMergeLoadFileTitle": "Loading Data Source",
"DE.Views.Settings.textAbout": "정보", "openTextText": "Opening document...",
"DE.Views.Settings.textAddress": "주소", "openTitleText": "Opening Document",
"DE.Views.Settings.textAdvancedSettings": "어플리케이션 설정", "printTextText": "Printing document...",
"DE.Views.Settings.textAuthor": "저자", "printTitleText": "Printing Document",
"DE.Views.Settings.textBack": "뒤로", "savePreparingText": "Preparing to save",
"DE.Views.Settings.textCreateDate": "생성 날짜", "savePreparingTitle": "Preparing to save. Please wait...",
"DE.Views.Settings.textCustom": "사용자 정의", "saveTextText": "Saving document...",
"DE.Views.Settings.textCustomSize": "사용자 정의 크기", "saveTitleText": "Saving Document",
"DE.Views.Settings.textDocInfo": "문서 정보", "sendMergeText": "Sending Merge...",
"DE.Views.Settings.textDocTitle": "문서 제목", "sendMergeTitle": "Sending Merge",
"DE.Views.Settings.textDocumentFormats": "문서 형식", "textLoadingDocument": "Loading document",
"DE.Views.Settings.textDocumentSettings": "문서 설정", "txtEditingMode": "Set editing mode...",
"DE.Views.Settings.textDone": "완료", "uploadImageTextText": "Uploading image...",
"DE.Views.Settings.textDownload": "다운로드", "uploadImageTitleText": "Uploading Image",
"DE.Views.Settings.textDownloadAs": "다른 이름으로 다운로드 ...", "waitText": "Please, wait..."
"DE.Views.Settings.textEditDoc": "문서 편집", },
"DE.Views.Settings.textEmail": "이메일", "Main": {
"DE.Views.Settings.textFind": "찾기", "criticalErrorTitle": "Error",
"DE.Views.Settings.textFindAndReplace": "찾기 및 바꾸기", "errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"DE.Views.Settings.textFormat": "서식", "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"DE.Views.Settings.textHelp": "도움말", "errorProcessSaveResult": "Saving failed.",
"DE.Views.Settings.textLandscape": "Landscape", "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"DE.Views.Settings.textLeft": "왼쪽", "errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"DE.Views.Settings.textLoading": "로드 중 ...", "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"DE.Views.Settings.textMargins": "여백", "notcriticalErrorTitle": "Warning",
"DE.Views.Settings.textOrientation": "오리엔테이션", "SDK": {
"DE.Views.Settings.textPages": "페이지", " -Section ": " -Section ",
"DE.Views.Settings.textParagraphs": "단락", "above": "above",
"DE.Views.Settings.textPortrait": "Portrait", "below": "below",
"DE.Views.Settings.textPoweredBy": "Powered by", "Caption": "Caption",
"DE.Views.Settings.textPrint": "인쇄", "Choose an item": "Choose an item",
"DE.Views.Settings.textReader": "리더 모드", "Click to load image": "Click to load image",
"DE.Views.Settings.textReview": "변경 내용 추적", "Current Document": "Current Document",
"DE.Views.Settings.textRight": "오른쪽", "Diagram Title": "Chart Title",
"DE.Views.Settings.textSettings": "설정", "endnote text": "Endnote Text",
"DE.Views.Settings.textSpaces": "공백", "Enter a date": "Enter a date",
"DE.Views.Settings.textSpellcheck": "맞춤법 검사", "Error! Bookmark not defined": "Error! Bookmark not defined.",
"DE.Views.Settings.textStatistic": "Statistic", "Error! Main Document Only": "Error! Main Document Only.",
"DE.Views.Settings.textSymbols": "기호", "Error! No text of specified style in document": "Error! No text of specified style in document.",
"DE.Views.Settings.textTel": "tel", "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"DE.Views.Settings.textTop": "상위", "Even Page ": "Even Page ",
"DE.Views.Settings.textVersion": "버전", "First Page ": "First Page ",
"DE.Views.Settings.textWords": "단어", "Footer": "Footer",
"DE.Views.Settings.unknownText": "알 수 없음", "footnote text": "Footnote Text",
"DE.Views.Toolbar.textBack": "뒤로" "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", "About": {
"Common.UI.ThemeColorPalette.textThemeColors": "Tēmas krāsas", "textAbout": "About",
"Common.Utils.Metric.txtCm": "cm", "textAddress": "Address",
"Common.Utils.Metric.txtPt": "pt", "textBack": "Back",
"DE.Controllers.AddContainer.textImage": "Attēls", "textEmail": "Email",
"DE.Controllers.AddContainer.textOther": "Citi", "textPoweredBy": "Powered By",
"DE.Controllers.AddContainer.textShape": "Forma", "textTel": "Tel",
"DE.Controllers.AddContainer.textTable": "Tabula", "textVersion": "Version"
"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'.", "Add": {
"DE.Controllers.AddOther.txtNotUrl": "Šī lauka URL adresei ir jābūt formātā 'http://www.example.com'.", "notcriticalErrorTitle": "Warning",
"DE.Controllers.AddTable.textCancel": "Atcelt", "textAddLink": "Add link",
"DE.Controllers.AddTable.textColumns": "Kolonnas", "textAddress": "Address",
"DE.Controllers.AddTable.textRows": "Rindas", "textBack": "Back",
"DE.Controllers.AddTable.textTableSize": "Tabulas izmērs", "textBelowText": "Below text",
"DE.Controllers.DocumentHolder.menuAddLink": "Pievienot saiti", "textBottomOfPage": "Bottom of page",
"DE.Controllers.DocumentHolder.menuCopy": "Kopēt", "textBreak": "Break",
"DE.Controllers.DocumentHolder.menuCut": "Izgriezt", "textCancel": "Cancel",
"DE.Controllers.DocumentHolder.menuDelete": "Dzēst", "textCenterBottom": "Center Bottom",
"DE.Controllers.DocumentHolder.menuEdit": "Rediģēt", "textCenterTop": "Center Top",
"DE.Controllers.DocumentHolder.menuMore": "Vairāk", "textColumnBreak": "Column Break",
"DE.Controllers.DocumentHolder.menuOpenLink": "Atvērt saiti", "textColumns": "Columns",
"DE.Controllers.DocumentHolder.menuPaste": "Ielīmēt", "textComment": "Comment",
"DE.Controllers.DocumentHolder.sheetCancel": "Atcelt", "textContinuousPage": "Continuous Page",
"DE.Controllers.DocumentHolder.textGuest": "Viesis", "textCurrentPosition": "Current Position",
"DE.Controllers.EditContainer.textChart": "Diagramma", "textDisplay": "Display",
"DE.Controllers.EditContainer.textHyperlink": "Hipersaite", "textEmptyImgUrl": "You need to specify image URL.",
"DE.Controllers.EditContainer.textImage": "Attēls", "textEvenPage": "Even Page",
"DE.Controllers.EditContainer.textParagraph": "Rindkopa", "textFootnote": "Footnote",
"DE.Controllers.EditContainer.textSettings": "Iestatījumi", "textFormat": "Format",
"DE.Controllers.EditContainer.textShape": "Forma", "textImage": "Image",
"DE.Controllers.EditContainer.textTable": "Tabula", "textImageURL": "Image URL",
"DE.Controllers.EditContainer.textText": "Teksts", "textInsert": "Insert",
"DE.Controllers.EditImage.textEmptyImgUrl": "Ir jānorāda attēla URL.", "textInsertFootnote": "Insert Footnote",
"DE.Controllers.EditImage.txtNotUrl": "Šī lauka URL adresei ir jābūt formātā 'http://www.example.com'.", "textInsertImage": "Insert Image",
"DE.Controllers.EditText.textAuto": "Automātiski", "textLeftBottom": "Left Bottom",
"DE.Controllers.EditText.textFonts": "Fonti", "textLeftTop": "Left Top",
"DE.Controllers.EditText.textPt": "pt", "textLink": "Link",
"DE.Controllers.Main.advDRMEnterPassword": "Ievadiet paroli:", "textLinkSettings": "Link Settings",
"DE.Controllers.Main.advDRMOptions": "Aizsargāts fails", "textLocation": "Location",
"DE.Controllers.Main.advDRMPassword": "Parole", "textNextPage": "Next Page",
"DE.Controllers.Main.advTxtOptions": "Izvēlēties TXT iespējas", "textOddPage": "Odd Page",
"DE.Controllers.Main.applyChangesTextText": "Ielādē datus...", "textOther": "Other",
"DE.Controllers.Main.applyChangesTitleText": "Ielādē datus", "textPageBreak": "Page Break",
"DE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.", "textPageNumber": "Page Number",
"DE.Controllers.Main.criticalErrorExtText": "Nospiediet \"OK\", lai atgrieztos dokumentu sarakstā.", "textPictureFromLibrary": "Picture from Library",
"DE.Controllers.Main.criticalErrorTitle": "Kļūda", "textPictureFromURL": "Picture from URL",
"DE.Controllers.Main.downloadErrorText": "Lejuplāde neizdevās.", "textPosition": "Position",
"DE.Controllers.Main.downloadMergeText": "Lejupielādē...", "textRightBottom": "Right Bottom",
"DE.Controllers.Main.downloadMergeTitle": "Lejupielāde", "textRightTop": "Right Top",
"DE.Controllers.Main.downloadTextText": "Lejuplādē dokumentu...", "textRows": "Rows",
"DE.Controllers.Main.downloadTitleText": "Dokumenta lejupielāde", "textScreenTip": "Screen Tip",
"DE.Controllers.Main.errorBadImageUrl": "Nav pareizs attēla URL", "textSectionBreak": "Section Break",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Zudis servera savienojums. Jūs vairs nevarat rediģēt.", "textShape": "Shape",
"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.", "textStartAt": "Start At",
"DE.Controllers.Main.errorDatabaseConnection": "Ārējā kļūda.<br>Datubāzes piekļuves kļūda. Lūdzu, sazinieties ar atbalsta daļu.", "textTable": "Table",
"DE.Controllers.Main.errorDataRange": "Nepareizs datu diapazons", "textTableSize": "Table Size",
"DE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
"DE.Controllers.Main.errorFilePassProtect": "Fails ir aizsargāts ar paroli un to nevar atvērt.", },
"DE.Controllers.Main.errorKeyEncrypt": "Nezināms atslēgas deskriptors", "Common": {
"DE.Controllers.Main.errorKeyExpire": "Atslēgas deskriptora termiņš beidzies", "Collaboration": {
"DE.Controllers.Main.errorMailMergeLoadFile": "Ielāde neizdevās", "notcriticalErrorTitle": "Warning",
"DE.Controllers.Main.errorMailMergeSaveFile": "Sapludināšana neizdevās.", "textAccept": "Accept",
"DE.Controllers.Main.errorProcessSaveResult": "Saglabāšana neizdevās.", "textAcceptAllChanges": "Accept all changes",
"DE.Controllers.Main.errorServerVersion": "Redaktora versija ir atjaunināta. Lapa tiks pārlādēta, lai piemērotu izmaiņas.", "textAddComment": "Add comment",
"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.", "textAddReply": "Add reply",
"DE.Controllers.Main.errorUpdateVersion": "Faila versija ir mainīta. Lapa tiks pārlādēta.", "textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"DE.Controllers.Main.errorUserDrop": "Failam šobrīd nevar piekļūt.", "textAllChangesEditing": "All changes (Editing)",
"DE.Controllers.Main.errorUsersExceed": "Ir pārsniegts lietotāju skaits", "textAllChangesRejectedPreview": "All changes rejected (Preview)",
"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.", "textAtLeast": "at least",
"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.", "textAuto": "auto",
"DE.Controllers.Main.loadFontsTextText": "Ielādē datus...", "textBack": "Back",
"DE.Controllers.Main.loadFontsTitleText": "Ielādē datus", "textBaseline": "Baseline",
"DE.Controllers.Main.loadFontTextText": "Ielādē datus...", "textBold": "Bold",
"DE.Controllers.Main.loadFontTitleText": "Ielādē datus", "textBreakBefore": "Page break before",
"DE.Controllers.Main.loadImagesTextText": "Ielādē attēlus...", "textCancel": "Cancel",
"DE.Controllers.Main.loadImagesTitleText": "Ielādē attēlus", "textCaps": "All caps",
"DE.Controllers.Main.loadImageTextText": "Ielādē attēlu...", "textCenter": "Align center",
"DE.Controllers.Main.loadImageTitleText": "Ielādē attēlu", "textChart": "Chart",
"DE.Controllers.Main.loadingDocumentTextText": "Ielādē dokumentu...", "textCollaboration": "Collaboration",
"DE.Controllers.Main.loadingDocumentTitleText": "Ielādē dokumentu", "textColor": "Font color",
"DE.Controllers.Main.mailMergeLoadFileText": "Ielādē datu avotu...", "textComments": "Comments",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Ielādē datu avotu", "textContextual": "Don't add intervals between paragraphs of the same style",
"DE.Controllers.Main.notcriticalErrorTitle": "Brīdinājums", "textDelete": "Delete",
"DE.Controllers.Main.openErrorText": "Faila atvēršanas laikā radās kļūda", "textDeleteComment": "Delete Comment",
"DE.Controllers.Main.openTextText": "Dokumenta atvēršana...", "textDeleted": "Deleted:",
"DE.Controllers.Main.openTitleText": "Dokumenta atvēršana", "textDeleteReply": "Delete Reply",
"DE.Controllers.Main.printTextText": "Drukā dokumentu...", "textDisplayMode": "Display Mode",
"DE.Controllers.Main.printTitleText": "Drukā dokumentu", "textDone": "Done",
"DE.Controllers.Main.saveErrorText": "Faila noglabāšanas laikā radās kļūda", "textDStrikeout": "Double strikeout",
"DE.Controllers.Main.savePreparingText": "Gatavojas saglabāt", "textEdit": "Edit",
"DE.Controllers.Main.savePreparingTitle": "Gatavojas saglabāt. Lūdzu, uzgaidiet...", "textEditComment": "Edit Comment",
"DE.Controllers.Main.saveTextText": "Dokumenta saglabāšana...", "textEditReply": "Edit Reply",
"DE.Controllers.Main.saveTitleText": "Dokumenta saglabāšana", "textEditUser": "Users who are editing the file:",
"DE.Controllers.Main.sendMergeText": "Sapludināšanas rezultāta nosūtīšana...", "textEquation": "Equation",
"DE.Controllers.Main.sendMergeTitle": "Saplūšanas rezultāta nosūtīšana", "textExact": "exactly",
"DE.Controllers.Main.splitDividerErrorText": "Rindu skaitam ir jādalās ar %1", "textFinal": "Final",
"DE.Controllers.Main.splitMaxColsErrorText": "Kolonnu skaitam ir jābūt mazākam par %1", "textFirstLine": "First line",
"DE.Controllers.Main.splitMaxRowsErrorText": "Rindu skaitam ir jābūt mazākam nekā %1", "textFormatted": "Formatted",
"DE.Controllers.Main.textAnonymous": "Anonīms lietotājs", "textHighlight": "Highlight color",
"DE.Controllers.Main.textBack": "Atpakaļ", "textImage": "Image",
"DE.Controllers.Main.textBuyNow": "Apmeklēt vietni", "textIndentLeft": "Indent left",
"DE.Controllers.Main.textCancel": "Atcelt", "textIndentRight": "Indent right",
"DE.Controllers.Main.textClose": "Aizvērt", "textInserted": "Inserted:",
"DE.Controllers.Main.textContactUs": "Pārdošanas nodaļa", "textItalic": "Italic",
"DE.Controllers.Main.textDone": "Gatavs", "textJustify": "Align justified ",
"DE.Controllers.Main.textLoadingDocument": "Ielādē dokumentu", "textKeepLines": "Keep lines together",
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE pieslēguma ierobežojums", "textKeepNext": "Keep with next",
"DE.Controllers.Main.textOK": "OK", "textLeft": "Align left",
"DE.Controllers.Main.textPassword": "Parole", "textLineSpacing": "Line Spacing: ",
"DE.Controllers.Main.textPreloader": "Notiek ielāde...", "textMarkup": "Markup",
"DE.Controllers.Main.textTryUndoRedo": "Atsaukšanas/atkārtošanas funkcijas ātrās koprediģēšanas režīmā ir atspējotas.", "textMessageDeleteComment": "Do you really want to delete this comment?",
"DE.Controllers.Main.textUsername": "Lietotājvārds", "textMessageDeleteReply": "Do you really want to delete this reply?",
"DE.Controllers.Main.titleLicenseExp": "Licencei beidzies termiņš", "textMultiple": "multiple",
"DE.Controllers.Main.titleServerVersion": "Atjaunināts redaktors", "textNoBreakBefore": "No page break before",
"DE.Controllers.Main.titleUpdateVersion": "Versija mainīta", "textNoChanges": "There are no changes.",
"DE.Controllers.Main.txtArt": "Ievadiet savu tekstu", "textNoComments": "This document doesn't contain comments",
"DE.Controllers.Main.txtDiagramTitle": "Diagrammas nosaukums", "textNoContextual": "Add interval between paragraphs of the same style",
"DE.Controllers.Main.txtEditingMode": "Uzstāda rediģēšanas režīmu...", "textNoKeepLines": "Don't keep lines together",
"DE.Controllers.Main.txtFooter": "Kājene", "textNoKeepNext": "Don't keep with next",
"DE.Controllers.Main.txtHeader": "Galvene", "textNot": "Not ",
"DE.Controllers.Main.txtSeries": "Rinda", "textNoWidow": "No widow control",
"DE.Controllers.Main.txtStyle_footnote_text": "Zemteksta piezīmes teksts", "textNum": "Change numbering",
"DE.Controllers.Main.txtStyle_Heading_1": "Virsraksts 1", "textOriginal": "Original",
"DE.Controllers.Main.txtStyle_Heading_2": "Virsraksts 2", "textParaDeleted": "Paragraph Deleted",
"DE.Controllers.Main.txtStyle_Heading_3": "Virsraksts 3", "textParaFormatted": "Paragraph Formatted",
"DE.Controllers.Main.txtStyle_Heading_4": "Virsraksts 4", "textParaInserted": "Paragraph Inserted",
"DE.Controllers.Main.txtStyle_Heading_5": "Virsraksts 5", "textParaMoveFromDown": "Moved Down:",
"DE.Controllers.Main.txtStyle_Heading_6": "Virsraksts 6", "textParaMoveFromUp": "Moved Up:",
"DE.Controllers.Main.txtStyle_Heading_7": "Virsraksts 7", "textParaMoveTo": "Moved:",
"DE.Controllers.Main.txtStyle_Heading_8": "Virsraksts 8", "textPosition": "Position",
"DE.Controllers.Main.txtStyle_Heading_9": "Virsraksts 9", "textReject": "Reject",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Izcelts citāts", "textRejectAllChanges": "Reject All Changes",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Saraksta rindkopa", "textReopen": "Reopen",
"DE.Controllers.Main.txtStyle_No_Spacing": "Bez atstarpēm", "textResolve": "Resolve",
"DE.Controllers.Main.txtStyle_Normal": "Normāls", "textReview": "Review",
"DE.Controllers.Main.txtStyle_Quote": "Citāts", "textReviewChange": "Review Change",
"DE.Controllers.Main.txtStyle_Subtitle": "Apakšvirsraksts", "textRight": "Align right",
"DE.Controllers.Main.txtStyle_Title": "Nosaukums", "textShape": "Shape",
"DE.Controllers.Main.txtXAxis": "X ass", "textShd": "Background color",
"DE.Controllers.Main.txtYAxis": "Y ass", "textSmallCaps": "Small caps",
"DE.Controllers.Main.unknownErrorText": "Nezināma kļūda.", "textSpacing": "Spacing",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Jūsu pārlūkprogramma nav atbalstīta.", "textSpacingAfter": "Spacing after",
"DE.Controllers.Main.uploadImageExtMessage": "Nezināms attēla formāts.", "textSpacingBefore": "Spacing before",
"DE.Controllers.Main.uploadImageFileCountMessage": "Nav augšupielādēto attēlu.", "textStrikeout": "Strikeout",
"DE.Controllers.Main.uploadImageSizeMessage": "Maksimālais attēla izmērs ir pārsniegts.", "textSubScript": "Subscript",
"DE.Controllers.Main.uploadImageTextText": "Augšupielādē attēlu...", "textSuperScript": "Superscript",
"DE.Controllers.Main.uploadImageTitleText": "Augšuplādē attēlu", "textTableChanged": "Table Settings Changed",
"DE.Controllers.Main.warnLicenseExp": "Jūsu licencei ir beidzies termiņš.<br>Lūdzu, atjauniniet savu licenci un pārlādējiet lapu.", "textTableRowsAdd": "Table Rows Added",
"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.", "textTableRowsDel": "Table Rows Deleted",
"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.", "textTabs": "Change tabs",
"DE.Controllers.Main.warnProcessRightsChange": "Jums ir liegtas tiesības šo failu rediģēt.", "textTrackChanges": "Track Changes",
"DE.Controllers.Search.textNoTextFound": "Teksts nav atrasts", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"DE.Controllers.Search.textReplaceAll": "Aizvietot visus", "textUnderline": "Underline",
"DE.Controllers.Settings.notcriticalErrorTitle": "Brīdinājums", "textUsers": "Users",
"DE.Controllers.Settings.txtLoading": "Notiek ielāde...", "textWidow": "Widow control"
"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?", "ThemeColorPalette": {
"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.", "textCustomColors": "Custom Colors",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Jūs pametat lietotni", "textStandartColors": "Standard Colors",
"DE.Controllers.Toolbar.leaveButtonText": "Pamest lapu", "textThemeColors": "Theme Colors"
"DE.Controllers.Toolbar.stayButtonText": "Palikt lapā", }
"DE.Views.AddImage.textAddress": "adrese", },
"DE.Views.AddImage.textBack": "Atpakaļ", "ContextMenu": {
"DE.Views.AddImage.textFromLibrary": "Attēls no bibliotēkas", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"DE.Views.AddImage.textFromURL": "Attēls no URL", "menuAddComment": "Add comment",
"DE.Views.AddImage.textImageURL": "Attēla URL", "menuAddLink": "Add link",
"DE.Views.AddImage.textInsertImage": "Ievadīt attēlu", "menuCancel": "Cancel",
"DE.Views.AddImage.textLinkSettings": "Saites uzstādījumi", "menuDelete": "Delete",
"DE.Views.AddOther.textAddLink": "Pievienot saiti", "menuDeleteTable": "Delete Table",
"DE.Views.AddOther.textBack": "Atpakaļ", "menuEdit": "Edit",
"DE.Views.AddOther.textCenterBottom": "Apakšā centrā", "menuMerge": "Merge",
"DE.Views.AddOther.textCenterTop": "Augšā centrā", "menuMore": "More",
"DE.Views.AddOther.textColumnBreak": "Kolonnas atstarpe", "menuOpenLink": "Open Link",
"DE.Views.AddOther.textContPage": "Tekošajā lapā", "menuReview": "Review",
"DE.Views.AddOther.textCurrentPos": "Šībrīža pozīcija", "menuReviewChange": "Review Change",
"DE.Views.AddOther.textDisplay": "Parādīt", "menuSplit": "Split",
"DE.Views.AddOther.textEvenPage": "Līdzena lapa", "menuViewComment": "View Comment",
"DE.Views.AddOther.textInsert": "Ievietot", "textColumns": "Columns",
"DE.Views.AddOther.textLeftBottom": "Kreisā apakšā", "textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"DE.Views.AddOther.textLeftTop": "Kreisā augšā", "textDoNotShowAgain": "Don't show again",
"DE.Views.AddOther.textLink": "Saite", "textRows": "Rows"
"DE.Views.AddOther.textNextPage": "Nākamā lapa", },
"DE.Views.AddOther.textOddPage": "Nepāra lappuse", "Edit": {
"DE.Views.AddOther.textPageBreak": "Lapas pārtraukums", "notcriticalErrorTitle": "Warning",
"DE.Views.AddOther.textPageNumber": "Lapas numurs", "textActualSize": "Actual size",
"DE.Views.AddOther.textPosition": "Pozīcija", "textAddCustomColor": "Add custom color",
"DE.Views.AddOther.textRightBottom": "Labā apakšā", "textAdditional": "Additional",
"DE.Views.AddOther.textRightTop": "Labā augšā", "textAdditionalFormatting": "Additional formatting",
"DE.Views.AddOther.textSectionBreak": "Sadaļas pārtraukums", "textAddress": "Address",
"DE.Views.AddOther.textTip": "Padoms", "textAdvanced": "Advanced",
"DE.Views.EditChart.textAlign": "Līdzināt", "textAdvancedSettings": "Advanced settings",
"DE.Views.EditChart.textBack": "Atpakaļ", "textAfter": "After",
"DE.Views.EditChart.textBackward": "Pārnest atpakaļ", "textAlign": "Align",
"DE.Views.EditChart.textBehind": "Aiz", "textAllCaps": "All caps",
"DE.Views.EditChart.textBorder": "Robeža", "textAllowOverlap": "Allow overlap",
"DE.Views.EditChart.textColor": "Krāsa", "textAuto": "Auto",
"DE.Views.EditChart.textDistanceText": "Attālums no teksta", "textAutomatic": "Automatic",
"DE.Views.EditChart.textFill": "Aizpildīt", "textBack": "Back",
"DE.Views.EditChart.textForward": "Pārnest uz priekšu", "textBackground": "Background",
"DE.Views.EditChart.textInFront": "Priekšā", "textBandedColumn": "Banded column",
"DE.Views.EditChart.textInline": "Tekstā", "textBandedRow": "Banded row",
"DE.Views.EditChart.textMoveText": "Pārnest ar tekstu", "textBefore": "Before",
"DE.Views.EditChart.textOverlap": "Atļaut pārklāšanos", "textBehind": "Behind",
"DE.Views.EditChart.textRemoveChart": "Noņemt diagrammu", "textBorder": "Border",
"DE.Views.EditChart.textReorder": "Pārkārtot", "textBringToForeground": "Bring to foreground",
"DE.Views.EditChart.textSize": "Izmērs", "textBullets": "Bullets",
"DE.Views.EditChart.textSquare": "Kvadrāta", "textBulletsAndNumbers": "Bullets & Numbers",
"DE.Views.EditChart.textStyle": "Stils", "textCellMargins": "Cell Margins",
"DE.Views.EditChart.textThrough": "Cauri", "textChart": "Chart",
"DE.Views.EditChart.textTight": "Cieši", "textClose": "Close",
"DE.Views.EditChart.textToBackground": "Pārnest uz aizmuguri", "textColor": "Color",
"DE.Views.EditChart.textToForeground": "Nest uz priekšplānu", "textContinueFromPreviousSection": "Continue from previous section",
"DE.Views.EditChart.textTopBottom": "Augšā un apakša", "textCustomColor": "Custom Color",
"DE.Views.EditChart.textType": "Veids", "textDifferentFirstPage": "Different first page",
"DE.Views.EditChart.textWrap": "Aplauzt", "textDifferentOddAndEvenPages": "Different odd and even pages",
"DE.Views.EditHyperlink.textDisplay": "Parādīt", "textDisplay": "Display",
"DE.Views.EditHyperlink.textEdit": "Rediģēt saiti", "textDistanceFromText": "Distance from text",
"DE.Views.EditHyperlink.textLink": "Saite", "textDoubleStrikethrough": "Double Strikethrough",
"DE.Views.EditHyperlink.textRemove": "Noņemt saiti", "textEditLink": "Edit Link",
"DE.Views.EditHyperlink.textTip": "Padoms", "textEffects": "Effects",
"DE.Views.EditImage.textAddress": "adrese", "textEmptyImgUrl": "You need to specify image URL.",
"DE.Views.EditImage.textAlign": "Līdzināt", "textFill": "Fill",
"DE.Views.EditImage.textBack": "Atpakaļ", "textFirstColumn": "First Column",
"DE.Views.EditImage.textBackward": "Pārnest atpakaļ", "textFirstLine": "FirstLine",
"DE.Views.EditImage.textBehind": "Aiz", "textFlow": "Flow",
"DE.Views.EditImage.textDefault": "Noklusējuma izmērs", "textFontColor": "Font Color",
"DE.Views.EditImage.textDistanceText": "Attālums no teksta", "textFontColors": "Font Colors",
"DE.Views.EditImage.textForward": "Pārnest uz priekšu", "textFonts": "Fonts",
"DE.Views.EditImage.textFromLibrary": "Attēls no bibliotēkas", "textFooter": "Footer",
"DE.Views.EditImage.textFromURL": "Attēls no URL", "textHeader": "Header",
"DE.Views.EditImage.textImageURL": "Attēla URL", "textHeaderRow": "Header Row",
"DE.Views.EditImage.textInFront": "Priekšā", "textHighlightColor": "Highlight Color",
"DE.Views.EditImage.textInline": "Tekstā", "textHyperlink": "Hyperlink",
"DE.Views.EditImage.textLinkSettings": "Saites uzstādījumi", "textImage": "Image",
"DE.Views.EditImage.textMoveText": "Pārnest ar tekstu", "textImageURL": "Image URL",
"DE.Views.EditImage.textOverlap": "Atļaut pārklāšanos", "textInFront": "In Front",
"DE.Views.EditImage.textRemove": "Noņemt attēlu", "textInline": "Inline",
"DE.Views.EditImage.textReorder": "Pārkārtot", "textKeepLinesTogether": "Keep Lines Together",
"DE.Views.EditImage.textReplace": "Aizvietot", "textKeepWithNext": "Keep with Next",
"DE.Views.EditImage.textReplaceImg": "Aizvietot attēlu", "textLastColumn": "Last Column",
"DE.Views.EditImage.textSquare": "Kvadrāta", "textLetterSpacing": "Letter Spacing",
"DE.Views.EditImage.textThrough": "Cauri", "textLineSpacing": "Line Spacing",
"DE.Views.EditImage.textTight": "Cieši", "textLink": "Link",
"DE.Views.EditImage.textToBackground": "Pārnest uz aizmuguri", "textLinkSettings": "Link Settings",
"DE.Views.EditImage.textToForeground": "Nest uz priekšplānu", "textLinkToPrevious": "Link to Previous",
"DE.Views.EditImage.textTopBottom": "Augšā un apakša", "textMoveBackward": "Move Backward",
"DE.Views.EditImage.textWrap": "Aplauzt", "textMoveForward": "Move Forward",
"DE.Views.EditParagraph.textAdvanced": "Papildus", "textMoveWithText": "Move with Text",
"DE.Views.EditParagraph.textAdvSettings": "Papildu iestatījumi", "textNone": "None",
"DE.Views.EditParagraph.textAfter": "Pēc", "textNoStyles": "No styles for this type of charts.",
"DE.Views.EditParagraph.textAuto": "Automātiski", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"DE.Views.EditParagraph.textBack": "Atpakaļ", "textOpacity": "Opacity",
"DE.Views.EditParagraph.textBackground": "Fons", "textOptions": "Options",
"DE.Views.EditParagraph.textBefore": "Pirms", "textOrphanControl": "Orphan Control",
"DE.Views.EditParagraph.textFromText": "Attālums no teksta", "textPageBreakBefore": "Page Break Before",
"DE.Views.EditParagraph.textKeepLines": "Turēt līnijas kopā", "textPageNumbering": "Page Numbering",
"DE.Views.EditParagraph.textKeepNext": "Nenoraut no nākošā", "textParagraph": "Paragraph",
"DE.Views.EditParagraph.textOrphan": "Bāreņrindiņu kontrole", "textParagraphStyles": "Paragraph Styles",
"DE.Views.EditParagraph.textPageBreak": "Lappuses pārtraukums pirms", "textPictureFromLibrary": "Picture from Library",
"DE.Views.EditParagraph.textPrgStyles": "Rindkopas stili", "textPictureFromURL": "Picture from URL",
"DE.Views.EditParagraph.textSpaceBetween": "Atstarpe starp rindkopām", "textPt": "pt",
"DE.Views.EditShape.textAlign": "Līdzināt", "textRemoveChart": "Remove Chart",
"DE.Views.EditShape.textBack": "Atpakaļ", "textRemoveImage": "Remove Image",
"DE.Views.EditShape.textBackward": "Pārnest atpakaļ", "textRemoveLink": "Remove Link",
"DE.Views.EditShape.textBehind": "Aiz", "textRemoveShape": "Remove Shape",
"DE.Views.EditShape.textBorder": "Robeža", "textRemoveTable": "Remove Table",
"DE.Views.EditShape.textColor": "Krāsa", "textReorder": "Reorder",
"DE.Views.EditShape.textEffects": "Efekti", "textRepeatAsHeaderRow": "Repeat as Header Row",
"DE.Views.EditShape.textFill": "Aizpildīt", "textReplace": "Replace",
"DE.Views.EditShape.textForward": "Pārnest uz priekšu", "textReplaceImage": "Replace Image",
"DE.Views.EditShape.textFromText": "Attālums no teksta", "textResizeToFitContent": "Resize to Fit Content",
"DE.Views.EditShape.textInFront": "Priekšā", "textScreenTip": "Screen Tip",
"DE.Views.EditShape.textInline": "Tekstā", "textSelectObjectToEdit": "Select object to edit",
"DE.Views.EditShape.textOpacity": "Necaurredzamība", "textSendToBackground": "Send to Background",
"DE.Views.EditShape.textOverlap": "Atļaut pārklāšanos", "textSettings": "Settings",
"DE.Views.EditShape.textRemoveShape": "Noņemt figūru", "textShape": "Shape",
"DE.Views.EditShape.textReorder": "Pārkārtot", "textSize": "Size",
"DE.Views.EditShape.textReplace": "Aizvietot", "textSmallCaps": "Small Caps",
"DE.Views.EditShape.textSize": "Izmērs", "textSpaceBetweenParagraphs": "Space Between Paragraphs",
"DE.Views.EditShape.textSquare": "Kvadrāta", "textSquare": "Square",
"DE.Views.EditShape.textStyle": "Stils", "textStartAt": "Start at",
"DE.Views.EditShape.textThrough": "Cauri", "textStrikethrough": "Strikethrough",
"DE.Views.EditShape.textTight": "Cieši", "textStyle": "Style",
"DE.Views.EditShape.textToBackground": "Pārnest uz aizmuguri", "textStyleOptions": "Style Options",
"DE.Views.EditShape.textToForeground": "Nest uz priekšplānu", "textSubscript": "Subscript",
"DE.Views.EditShape.textTopAndBottom": "Augšā un apakša", "textSuperscript": "Superscript",
"DE.Views.EditShape.textWithText": "Pārnest ar tekstu", "textTable": "Table",
"DE.Views.EditShape.textWrap": "Aplauzt", "textTableOptions": "Table Options",
"DE.Views.EditTable.textAlign": "Līdzināt", "textText": "Text",
"DE.Views.EditTable.textBack": "Atpakaļ", "textThrough": "Through",
"DE.Views.EditTable.textBandedColumn": "Joslu kolonna", "textTight": "Tight",
"DE.Views.EditTable.textBandedRow": "Joslu rinda", "textTopAndBottom": "Top and Bottom",
"DE.Views.EditTable.textBorder": "Robeža", "textTotalRow": "Total Row",
"DE.Views.EditTable.textCellMargins": "Šunu piemales", "textType": "Type",
"DE.Views.EditTable.textColor": "Krāsa", "textWrap": "Wrap",
"DE.Views.EditTable.textFill": "Aizpildīt", "textNumbers": "Numbers"
"DE.Views.EditTable.textFirstColumn": "Pirmā kolonna", },
"DE.Views.EditTable.textFlow": "Peldošā", "Error": {
"DE.Views.EditTable.textFromText": "Attālums no teksta", "convertationTimeoutText": "Conversion timeout exceeded.",
"DE.Views.EditTable.textHeaderRow": "Galvenes rinda", "criticalErrorExtText": "Press 'OK' to go back to the document list.",
"DE.Views.EditTable.textInline": "Tekstā", "criticalErrorTitle": "Error",
"DE.Views.EditTable.textLastColumn": "Pēdējā kolonna", "downloadErrorText": "Download failed.",
"DE.Views.EditTable.textOptions": "Iespējas", "errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"DE.Views.EditTable.textRemoveTable": "Noņemt tabulu", "errorBadImageUrl": "Image url is incorrect",
"DE.Views.EditTable.textRepeatHeader": "Atkārtot kā galveni", "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.",
"DE.Views.EditTable.textResizeFit": "Mainīt izmēru atbilstoši saturam", "errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"DE.Views.EditTable.textSize": "Izmērs", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"DE.Views.EditTable.textStyle": "Stils", "errorDataRange": "Incorrect data range.",
"DE.Views.EditTable.textStyleOptions": "Stila iestatījumi", "errorDefaultMessage": "Error code: %1",
"DE.Views.EditTable.textTableOptions": "Tabulas uzstādījumi", "errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"DE.Views.EditTable.textTotalRow": "Koprinda", "errorFilePassProtect": "The file is password protected and could not be opened.",
"DE.Views.EditTable.textWithText": "Pārnest ar tekstu", "errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"DE.Views.EditTable.textWrap": "Aplauzt", "errorKeyEncrypt": "Unknown key descriptor",
"DE.Views.EditText.textAdditional": "Papildu", "errorKeyExpire": "Key descriptor expired",
"DE.Views.EditText.textAdditionalFormat": "Papildu formatēšana", "errorMailMergeLoadFile": "Loading failed",
"DE.Views.EditText.textAllCaps": "Visi lielie burti", "errorMailMergeSaveFile": "Merge failed.",
"DE.Views.EditText.textAutomatic": "Automatic", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"DE.Views.EditText.textBack": "Atpakaļ", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"DE.Views.EditText.textBullets": "Aizzīmes", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"DE.Views.EditText.textDblStrikethrough": "Dubultā pārsvītrošana", "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.",
"DE.Views.EditText.textDblSuperscript": "Augšteksts", "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.Views.EditText.textFontColor": "Fonta krāsa", "errorUserDrop": "The file can't be accessed right now.",
"DE.Views.EditText.textFontColors": "Fonta krāsas", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"DE.Views.EditText.textFonts": "Fonti", "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.",
"DE.Views.EditText.textHighlightColor": "Izcelt ar krāsu", "notcriticalErrorTitle": "Warning",
"DE.Views.EditText.textHighlightColors": "Izcelšanas krāsas", "openErrorText": "An error has occurred while opening the file",
"DE.Views.EditText.textLetterSpacing": "Atstarpe", "saveErrorText": "An error has occurred while saving the file",
"DE.Views.EditText.textLineSpacing": "Rindstarpas", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"DE.Views.EditText.textNone": "neviens", "splitDividerErrorText": "The number of rows must be a divisor of %1",
"DE.Views.EditText.textNumbers": "Skaitļi", "splitMaxColsErrorText": "The number of columns must be less than %1",
"DE.Views.EditText.textSize": "Izmērs", "splitMaxRowsErrorText": "The number of rows must be less than %1",
"DE.Views.EditText.textSmallCaps": "Mazie burti", "unknownErrorText": "Unknown error.",
"DE.Views.EditText.textStrikethrough": "Pārsvītrots", "uploadImageExtMessage": "Unknown image format.",
"DE.Views.EditText.textSubscript": "Apakšteksts", "uploadImageFileCountMessage": "No images uploaded.",
"DE.Views.Search.textCase": "Ievērojot burtu lielumus", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
"DE.Views.Search.textDone": "Gatavs", },
"DE.Views.Search.textFind": "Atrast", "LongActions": {
"DE.Views.Search.textFindAndReplace": "Atrast un aizvietot", "applyChangesTextText": "Loading data...",
"DE.Views.Search.textHighlight": "Izcelt rezultātus", "applyChangesTitleText": "Loading Data",
"DE.Views.Search.textReplace": "Aizvietot", "downloadMergeText": "Downloading...",
"DE.Views.Search.textSearch": "Meklēt", "downloadMergeTitle": "Downloading",
"DE.Views.Settings.textAbout": "Par", "downloadTextText": "Downloading document...",
"DE.Views.Settings.textAddress": "adrese", "downloadTitleText": "Downloading Document",
"DE.Views.Settings.textAuthor": "Autors", "loadFontsTextText": "Loading data...",
"DE.Views.Settings.textBack": "Atpakaļ", "loadFontsTitleText": "Loading Data",
"DE.Views.Settings.textCreateDate": "Izveides datums", "loadFontTextText": "Loading data...",
"DE.Views.Settings.textCustom": "Personalizēts", "loadFontTitleText": "Loading Data",
"DE.Views.Settings.textCustomSize": "Pielāgots izmērs", "loadImagesTextText": "Loading images...",
"DE.Views.Settings.textDocInfo": "Informācija par dokumentu", "loadImagesTitleText": "Loading Images",
"DE.Views.Settings.textDocTitle": "Dokumenta nosaukums", "loadImageTextText": "Loading image...",
"DE.Views.Settings.textDocumentFormats": "Dokumenta formāti", "loadImageTitleText": "Loading Image",
"DE.Views.Settings.textDocumentSettings": "Dokumenta uzstādījumi", "loadingDocumentTextText": "Loading document...",
"DE.Views.Settings.textDone": "Gatavs", "loadingDocumentTitleText": "Loading document",
"DE.Views.Settings.textDownload": "Lejupielādēt", "mailMergeLoadFileText": "Loading Data Source...",
"DE.Views.Settings.textDownloadAs": "Lejupielādēt kā...", "mailMergeLoadFileTitle": "Loading Data Source",
"DE.Views.Settings.textEditDoc": "Rediģēt dokumentu", "openTextText": "Opening document...",
"DE.Views.Settings.textEmail": "e-pasts", "openTitleText": "Opening Document",
"DE.Views.Settings.textFind": "Atrast", "printTextText": "Printing document...",
"DE.Views.Settings.textFindAndReplace": "Atrast un aizvietot", "printTitleText": "Printing Document",
"DE.Views.Settings.textFormat": "Formāts", "savePreparingText": "Preparing to save",
"DE.Views.Settings.textHelp": "Palīdzība", "savePreparingTitle": "Preparing to save. Please wait...",
"DE.Views.Settings.textLandscape": "Ainava", "saveTextText": "Saving document...",
"DE.Views.Settings.textLoading": "Notiek ielāde...", "saveTitleText": "Saving Document",
"DE.Views.Settings.textOrientation": "Orientācija", "sendMergeText": "Sending Merge...",
"DE.Views.Settings.textPages": "Lapas", "sendMergeTitle": "Sending Merge",
"DE.Views.Settings.textParagraphs": "Rindkopas", "textLoadingDocument": "Loading document",
"DE.Views.Settings.textPortrait": "Portrets", "txtEditingMode": "Set editing mode...",
"DE.Views.Settings.textPoweredBy": "Nodrošina", "uploadImageTextText": "Uploading image...",
"DE.Views.Settings.textReader": "Lasīšanas režīms", "uploadImageTitleText": "Uploading Image",
"DE.Views.Settings.textSettings": "Iestatījumi", "waitText": "Please, wait..."
"DE.Views.Settings.textSpaces": "Atstarpes", },
"DE.Views.Settings.textStatistic": "Statistika", "Main": {
"DE.Views.Settings.textSymbols": "Simboli", "criticalErrorTitle": "Error",
"DE.Views.Settings.textTel": "Tel", "errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"DE.Views.Settings.textVersion": "Versija", "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"DE.Views.Settings.textWords": "Vārdi", "errorProcessSaveResult": "Saving failed.",
"DE.Views.Settings.unknownText": "Nezināms", "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"DE.Views.Toolbar.textBack": "Atpakaļ" "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", "txtScheme18": "Technisch",
"txtScheme19": "Tocht", "txtScheme19": "Tocht",
"txtScheme2": "Grijstinten", "txtScheme2": "Grijstinten",
"txtScheme20": "Stedelijk",
"txtScheme21": "Verve",
"txtScheme22": "Nieuw kantoor", "txtScheme22": "Nieuw kantoor",
"txtScheme3": "Top", "txtScheme3": "Top",
"txtScheme4": "Aspect", "txtScheme4": "Aspect",

File diff suppressed because it is too large Load diff

View file

@ -2,9 +2,14 @@
"About": { "About": {
"textAbout": "Sobre", "textAbout": "Sobre",
"textAddress": "Endereço", "textAddress": "Endereço",
"textBack": "Voltar" "textBack": "Voltar",
"textEmail": "Email",
"textPoweredBy": "Desenvolvido por",
"textTel": "Tel",
"textVersion": "Versão"
}, },
"Add": { "Add": {
"notcriticalErrorTitle": "Aviso",
"textAddLink": "Adicionar Link", "textAddLink": "Adicionar Link",
"textAddress": "Endereço", "textAddress": "Endereço",
"textBack": "Voltar", "textBack": "Voltar",
@ -12,12 +17,50 @@
"textBottomOfPage": "Fim da página", "textBottomOfPage": "Fim da página",
"textBreak": "Pausa", "textBreak": "Pausa",
"textCancel": "Cancelar", "textCancel": "Cancelar",
"textCenterBottom": "Centro Inferior",
"textCenterTop": "Centro Superior",
"textColumnBreak": "Quebra de Coluna", "textColumnBreak": "Quebra de Coluna",
"textColumns": "Colunas", "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": { "Common": {
"Collaboration": { "Collaboration": {
"notcriticalErrorTitle": "Aviso",
"textAccept": "Aceitar", "textAccept": "Aceitar",
"textAcceptAllChanges": "Aceitar todas as alterações", "textAcceptAllChanges": "Aceitar todas as alterações",
"textAddComment": "Adicionar comentário", "textAddComment": "Adicionar comentário",
@ -30,28 +73,117 @@
"textBack": "Voltar", "textBack": "Voltar",
"textBaseline": "Baseline", "textBaseline": "Baseline",
"textBold": "Negrito", "textBold": "Negrito",
"textBreakBefore": "Quebra de página antes",
"textCancel": "Cancelar", "textCancel": "Cancelar",
"textCaps": "Todas maiúsculas", "textCaps": "Todas maiúsculas",
"textCenter": "Alinhar ao centro", "textCenter": "Alinhar ao centro",
"textChart": "Gráfico", "textChart": "Gráfico",
"textCollaboration": "Colaboração", "textCollaboration": "Colaboração",
"textColor": "Cor da fonte",
"textComments": "Comentários", "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", "textJustify": "Alinhamento justificado",
"textKeepLines": "Manter as linhas juntas",
"textKeepNext": "Manter com o próximo",
"textLeft": "Alinhar à esquerda", "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", "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", "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", "textRight": "Alinhar à direita",
"textShape": "Forma",
"textShd": "Cor do plano de fundo", "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": { "ContextMenu": {
"errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.",
"menuAddComment": "Adicionar comentário", "menuAddComment": "Adicionar comentário",
"menuAddLink": "Adicionar Link", "menuAddLink": "Adicionar Link",
"menuCancel": "Cancelar", "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": { "Edit": {
"notcriticalErrorTitle": "Aviso",
"textActualSize": "Tamanho atual", "textActualSize": "Tamanho atual",
"textAddCustomColor": "Adicionar Cor Personalizada", "textAddCustomColor": "Adicionar Cor Personalizada",
"textAdditional": "Adicional", "textAdditional": "Adicional",
@ -78,28 +210,268 @@
"textCellMargins": "Margens da célula", "textCellMargins": "Margens da célula",
"textChart": "Gráfico", "textChart": "Gráfico",
"textClose": "Fechar", "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": { "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.", "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.", "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", "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": { "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": { "SDK": {
" -Section ": "-Seção", " -Section ": "-Seção",
"above": "Acima", "above": "Acima",
"below": "Abaixo", "below": "Abaixo",
"Caption": "Legenda", "Caption": "Legenda",
"Choose an item": "Escolha um item", "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", "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": { "Settings": {
"advDRMOptions": "Arquivo protegido",
"advDRMPassword": "Senha",
"advTxtOptions": "Escolha Opções de TXT",
"closeButtonText": "Fechar Arquivo", "closeButtonText": "Fechar Arquivo",
"notcriticalErrorTitle": "Aviso",
"textAbout": "Sobre", "textAbout": "Sobre",
"textApplication": "Aplicativo", "textApplication": "Aplicativo",
"textApplicationSettings": "Configurações de Aplicativo", "textApplicationSettings": "Configurações de Aplicativo",
@ -115,8 +487,91 @@
"textComments": "Comentários", "textComments": "Comentários",
"textCommentsDisplay": "Tela de comentários", "textCommentsDisplay": "Tela de comentários",
"textCreated": "Criado", "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", "txtScheme3": "Ápice",
"txtScheme4": "Aspecto", "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", "txtScheme18": "Tehnic",
"txtScheme19": "Turist", "txtScheme19": "Turist",
"txtScheme2": "Tonuri de gri", "txtScheme2": "Tonuri de gri",
"txtScheme20": "Urban",
"txtScheme21": "Vervă",
"txtScheme22": "New Office", "txtScheme22": "New Office",
"txtScheme3": "Apex", "txtScheme3": "Apex",
"txtScheme4": "Aspect", "txtScheme4": "Aspect",

View file

@ -252,7 +252,7 @@
"textNoStyles": "Для этого типа диаграмм нет стилей.", "textNoStyles": "Для этого типа диаграмм нет стилей.",
"textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"",
"textNumbers": "Нумерация", "textNumbers": "Нумерация",
"textOpacity": "Прозрачность", "textOpacity": "Непрозрачность",
"textOptions": "Параметры", "textOptions": "Параметры",
"textOrphanControl": "Запрет висячих строк", "textOrphanControl": "Запрет висячих строк",
"textPageBreakBefore": "С новой страницы", "textPageBreakBefore": "С новой страницы",
@ -557,6 +557,8 @@
"txtScheme18": "Техническая", "txtScheme18": "Техническая",
"txtScheme19": "Трек", "txtScheme19": "Трек",
"txtScheme2": "Оттенки серого", "txtScheme2": "Оттенки серого",
"txtScheme20": "Городская",
"txtScheme21": "Яркая",
"txtScheme22": "Новая офисная", "txtScheme22": "Новая офисная",
"txtScheme3": "Апекс", "txtScheme3": "Апекс",
"txtScheme4": "Аспект", "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", "About": {
"Common.Controllers.Collaboration.textBaseline": "Baslinje", "textAbout": "About",
"Common.Controllers.Collaboration.textBold": "Fet", "textAddress": "Address",
"Common.Controllers.Collaboration.textBreakBefore": "Sidbrytning före", "textBack": "Back",
"Common.Controllers.Collaboration.textCaps": "Alla versaler", "textEmail": "Email",
"Common.Controllers.Collaboration.textCenter": "Centrera", "textPoweredBy": "Powered By",
"Common.Controllers.Collaboration.textChart": "Diagram", "textTel": "Tel",
"Common.Controllers.Collaboration.textColor": "Teckensnittsfärg", "textVersion": "Version"
"Common.Controllers.Collaboration.textContextual": "Lägg inte till mellanrum mellan stycken med samma formatmall", },
"Common.Controllers.Collaboration.textDeleted": "<b>Raderad:</b>", "Add": {
"Common.Controllers.Collaboration.textDStrikeout": "Dubbel överstrykning", "notcriticalErrorTitle": "Warning",
"Common.Controllers.Collaboration.textEditUser": "Dokumentet redigeras för närvarande av flera användare.", "textAddLink": "Add link",
"Common.Controllers.Collaboration.textEquation": "Ekvation", "textAddress": "Address",
"Common.Controllers.Collaboration.textExact": "exakt", "textBack": "Back",
"Common.Controllers.Collaboration.textFirstLine": "Första raden", "textBelowText": "Below text",
"Common.Controllers.Collaboration.textFormatted": "Formaterad", "textBottomOfPage": "Bottom of page",
"Common.Controllers.Collaboration.textHighlight": "Markera färg", "textBreak": "Break",
"Common.Controllers.Collaboration.textImage": "Bild", "textCancel": "Cancel",
"Common.Controllers.Collaboration.textIndentLeft": "Indrag vänster", "textCenterBottom": "Center Bottom",
"Common.Controllers.Collaboration.textIndentRight": "Indrag höger", "textCenterTop": "Center Top",
"Common.Controllers.Collaboration.textInserted": "<b>Infogad:</b>", "textColumnBreak": "Column Break",
"Common.Controllers.Collaboration.textItalic": "Kursiv", "textColumns": "Columns",
"Common.Controllers.Collaboration.textJustify": "Justera", "textComment": "Comment",
"Common.Controllers.Collaboration.textKeepLines": "Håll ihop rader", "textContinuousPage": "Continuous Page",
"Common.Controllers.Collaboration.textKeepNext": "Behåll med nästa", "textCurrentPosition": "Current Position",
"Common.Controllers.Collaboration.textLeft": "Vänsterjustera", "textDisplay": "Display",
"Common.Controllers.Collaboration.textLineSpacing": "Radavstånd:", "textEmptyImgUrl": "You need to specify image URL.",
"Common.Controllers.Collaboration.textNoBreakBefore": "Ingen sidbrytning före", "textEvenPage": "Even Page",
"Common.Controllers.Collaboration.textNoContextual": "Lägg till intervall mellan punkterna i samma stil", "textFootnote": "Footnote",
"Common.Controllers.Collaboration.textNoKeepLines": "Håll inte ihop raderna", "textFormat": "Format",
"Common.Controllers.Collaboration.textNoKeepNext": "Behåll inte med nästa", "textImage": "Image",
"Common.Controllers.Collaboration.textNot": "Inte", "textImageURL": "Image URL",
"Common.Controllers.Collaboration.textNum": "Ändra numrering", "textInsert": "Insert",
"Common.Controllers.Collaboration.textParaDeleted": "<b>Stycke raderat</b> ", "textInsertFootnote": "Insert Footnote",
"Common.Controllers.Collaboration.textParaFormatted": "<b>Stycke formaterat</b>", "textInsertImage": "Insert Image",
"Common.Controllers.Collaboration.textParaInserted": "<b>Stycke infogat</b> ", "textLeftBottom": "Left Bottom",
"Common.Controllers.Collaboration.textParaMoveFromDown": "<b>Nedflyttade:</b>", "textLeftTop": "Left Top",
"Common.Controllers.Collaboration.textParaMoveFromUp": "<b>Uppflyttade:</b>", "textLink": "Link",
"Common.Controllers.Collaboration.textParaMoveTo": "<b>Flyttade:</b>", "textLinkSettings": "Link Settings",
"Common.Controllers.Collaboration.textRight": "Högerjustera", "textLocation": "Location",
"Common.Controllers.Collaboration.textShape": "Form", "textNextPage": "Next Page",
"Common.Controllers.Collaboration.textShd": "Bakgrundsfärg", "textOddPage": "Odd Page",
"Common.Controllers.Collaboration.textSmallCaps": "Gemener", "textOther": "Other",
"Common.Controllers.Collaboration.textSpacing": "Avstånd", "textPageBreak": "Page Break",
"Common.Controllers.Collaboration.textSpacingAfter": "Avstånd efter", "textPageNumber": "Page Number",
"Common.Controllers.Collaboration.textSpacingBefore": "Avstånd före", "textPictureFromLibrary": "Picture from Library",
"Common.Controllers.Collaboration.textTableChanged": "<b>Tabellinställningar ändrade</b>", "textPictureFromURL": "Picture from URL",
"Common.Controllers.Collaboration.textTableRowsAdd": "<b>Tabellrader tillagda</b>", "textPosition": "Position",
"Common.Controllers.Collaboration.textTableRowsDel": "<b>Tabellrader raderade</b>", "textRightBottom": "Right Bottom",
"Common.Controllers.Collaboration.textTabs": "Ändra tabbar", "textRightTop": "Right Top",
"Common.UI.ThemeColorPalette.textCustomColors": "Anpassade färger", "textRows": "Rows",
"Common.UI.ThemeColorPalette.textStandartColors": "Standardfärger", "textScreenTip": "Screen Tip",
"Common.UI.ThemeColorPalette.textThemeColors": "Temafärger", "textSectionBreak": "Section Break",
"Common.Utils.Metric.txtCm": "cm", "textShape": "Shape",
"Common.Views.Collaboration.textAcceptAllChanges": "Acceptera alla ändringar", "textStartAt": "Start At",
"Common.Views.Collaboration.textBack": "Tillbaka", "textTable": "Table",
"Common.Views.Collaboration.textChange": "Granska ändring", "textTableSize": "Table Size",
"Common.Views.Collaboration.textCollaboration": "Samarbete", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
"Common.Views.Collaboration.textDisplayMode": "Visningsläge", },
"Common.Views.Collaboration.textEditUsers": "Användare", "Common": {
"Common.Views.Collaboration.textFinal": "Slutlig", "Collaboration": {
"Common.Views.Collaboration.textMarkup": "Markering", "notcriticalErrorTitle": "Warning",
"Common.Views.Collaboration.textNoComments": "Detta dokument innehåller inga kommentarer", "textAccept": "Accept",
"Common.Views.Collaboration.textOriginal": "Original", "textAcceptAllChanges": "Accept all changes",
"Common.Views.Collaboration.textRejectAllChanges": "Avvisa alla ändringar", "textAddComment": "Add comment",
"Common.Views.Collaboration.textReview": "Spåra ändringar", "textAddReply": "Add reply",
"Common.Views.Collaboration.textReviewing": "Granska", "textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"DE.Controllers.AddContainer.textImage": "Bild", "textAllChangesEditing": "All changes (Editing)",
"DE.Controllers.AddContainer.textOther": "Annat", "textAllChangesRejectedPreview": "All changes rejected (Preview)",
"DE.Controllers.AddContainer.textShape": "Form", "textAtLeast": "at least",
"DE.Controllers.AddContainer.textTable": "Tabell", "textAuto": "auto",
"DE.Controllers.AddOther.textBelowText": "Under texten", "textBack": "Back",
"DE.Controllers.AddOther.textBottomOfPage": "Nederst på sidan", "textBaseline": "Baseline",
"DE.Controllers.AddTable.textCancel": "Avbryt", "textBold": "Bold",
"DE.Controllers.AddTable.textColumns": "Kolumner", "textBreakBefore": "Page break before",
"DE.Controllers.AddTable.textRows": "Rader", "textCancel": "Cancel",
"DE.Controllers.AddTable.textTableSize": "Tabellstorlek", "textCaps": "All caps",
"DE.Controllers.DocumentHolder.menuAddLink": "Lägg till länk", "textCenter": "Align center",
"DE.Controllers.DocumentHolder.menuCopy": "Kopiera", "textChart": "Chart",
"DE.Controllers.DocumentHolder.menuCut": "Klipp ut", "textCollaboration": "Collaboration",
"DE.Controllers.DocumentHolder.menuDelete": "Radera", "textColor": "Font color",
"DE.Controllers.DocumentHolder.menuDeleteTable": "Radera tabell", "textComments": "Comments",
"DE.Controllers.DocumentHolder.menuEdit": "Redigera", "textContextual": "Don't add intervals between paragraphs of the same style",
"DE.Controllers.DocumentHolder.menuMerge": "Slå ihop celler", "textDelete": "Delete",
"DE.Controllers.DocumentHolder.menuPaste": "Klistra in", "textDeleteComment": "Delete Comment",
"DE.Controllers.DocumentHolder.menuReview": "Granska", "textDeleted": "Deleted:",
"DE.Controllers.DocumentHolder.menuReviewChange": "Granska ändring", "textDeleteReply": "Delete Reply",
"DE.Controllers.DocumentHolder.sheetCancel": "Avbryt", "textDisplayMode": "Display Mode",
"DE.Controllers.DocumentHolder.textCancel": "Avbryt", "textDone": "Done",
"DE.Controllers.DocumentHolder.textColumns": "Kolumner", "textDStrikeout": "Double strikeout",
"DE.Controllers.DocumentHolder.textGuest": "Gäst", "textEdit": "Edit",
"DE.Controllers.DocumentHolder.textRows": "Rader", "textEditComment": "Edit Comment",
"DE.Controllers.EditContainer.textChart": "Diagram", "textEditReply": "Edit Reply",
"DE.Controllers.EditContainer.textFooter": "Sidfot", "textEditUser": "Users who are editing the file:",
"DE.Controllers.EditContainer.textHeader": "Huvud", "textEquation": "Equation",
"DE.Controllers.EditContainer.textHyperlink": "Hyperlänk", "textExact": "exactly",
"DE.Controllers.EditContainer.textImage": "Bild", "textFinal": "Final",
"DE.Controllers.EditContainer.textParagraph": "Stycke", "textFirstLine": "First line",
"DE.Controllers.EditContainer.textSettings": "Inställningar", "textFormatted": "Formatted",
"DE.Controllers.EditContainer.textShape": "Form", "textHighlight": "Highlight color",
"DE.Controllers.EditContainer.textTable": "Tabell", "textImage": "Image",
"DE.Controllers.EditText.textAuto": "Auto", "textIndentLeft": "Indent left",
"DE.Controllers.EditText.textFonts": "Teckensnitt", "textIndentRight": "Indent right",
"DE.Controllers.Main.advDRMEnterPassword": "Ange ditt lösenord:", "textInserted": "Inserted:",
"DE.Controllers.Main.advDRMPassword": "Lösenord", "textItalic": "Italic",
"DE.Controllers.Main.advTxtOptions": "Välj TXT-alternativ", "textJustify": "Align justified ",
"DE.Controllers.Main.applyChangesTextText": "Laddar data...", "textKeepLines": "Keep lines together",
"DE.Controllers.Main.applyChangesTitleText": "Laddar data", "textKeepNext": "Keep with next",
"DE.Controllers.Main.closeButtonText": "Stäng fil", "textLeft": "Align left",
"DE.Controllers.Main.convertationTimeoutText": "Omvandlingstiden har överskridits.", "textLineSpacing": "Line Spacing: ",
"DE.Controllers.Main.criticalErrorTitle": "Fel", "textMarkup": "Markup",
"DE.Controllers.Main.downloadErrorText": "Nedladdningen misslyckades", "textMessageDeleteComment": "Do you really want to delete this comment?",
"DE.Controllers.Main.downloadMergeText": "Laddar ner...", "textMessageDeleteReply": "Do you really want to delete this reply?",
"DE.Controllers.Main.downloadMergeTitle": "Laddar ner", "textMultiple": "multiple",
"DE.Controllers.Main.downloadTextText": "Laddar ner dokumentet...", "textNoBreakBefore": "No page break before",
"DE.Controllers.Main.downloadTitleText": "Laddar ner dokument", "textNoChanges": "There are no changes.",
"DE.Controllers.Main.errorBadImageUrl": "Bildens URL är felaktig", "textNoComments": "This document doesn't contain comments",
"DE.Controllers.Main.errorDatabaseConnection": "Externt fel.<br>Databasanslutningsfel. Var snäll och kontakta support.", "textNoContextual": "Add interval between paragraphs of the same style",
"DE.Controllers.Main.errorDataEncrypted": "Krypterade ändringar har tagits emot, de kan inte avkodas.", "textNoKeepLines": "Don't keep lines together",
"DE.Controllers.Main.errorDataRange": "Felaktigt dataområde", "textNoKeepNext": "Don't keep with next",
"DE.Controllers.Main.errorDefaultMessage": "Felkod: %1", "textNot": "Not ",
"DE.Controllers.Main.errorKeyExpire": "Nyckelns beskrivning har utgått", "textNoWidow": "No widow control",
"DE.Controllers.Main.errorMailMergeLoadFile": "Misslyckades att ladda", "textNum": "Change numbering",
"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.", "textOriginal": "Original",
"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.", "textParaDeleted": "Paragraph Deleted",
"DE.Controllers.Main.loadFontsTextText": "Laddar data...", "textParaFormatted": "Paragraph Formatted",
"DE.Controllers.Main.loadFontsTitleText": "Laddar data", "textParaInserted": "Paragraph Inserted",
"DE.Controllers.Main.loadFontTextText": "Laddar data...", "textParaMoveFromDown": "Moved Down:",
"DE.Controllers.Main.loadFontTitleText": "Laddar data", "textParaMoveFromUp": "Moved Up:",
"DE.Controllers.Main.loadImagesTextText": "Laddar bilder...", "textParaMoveTo": "Moved:",
"DE.Controllers.Main.loadImagesTitleText": "Laddar bilder", "textPosition": "Position",
"DE.Controllers.Main.loadImageTextText": "Laddar bild...", "textReject": "Reject",
"DE.Controllers.Main.loadImageTitleText": "Laddar bild", "textRejectAllChanges": "Reject All Changes",
"DE.Controllers.Main.loadingDocumentTextText": "Laddar dokument...", "textReopen": "Reopen",
"DE.Controllers.Main.loadingDocumentTitleText": "Laddar dokument", "textResolve": "Resolve",
"DE.Controllers.Main.mailMergeLoadFileText": "Laddar från datakälla...", "textReview": "Review",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Laddar från datakälla", "textReviewChange": "Review Change",
"DE.Controllers.Main.openErrorText": "Ett fel uppstod när filen skulle öppnas", "textRight": "Align right",
"DE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas", "textShape": "Shape",
"DE.Controllers.Main.saveTextText": "Sparar dokument...", "textShd": "Background color",
"DE.Controllers.Main.saveTitleText": "Sparar dokument", "textSmallCaps": "Small caps",
"DE.Controllers.Main.splitMaxColsErrorText": "Antalet kolumner måste vara mindre än %1", "textSpacing": "Spacing",
"DE.Controllers.Main.textAnonymous": "Anonym", "textSpacingAfter": "Spacing after",
"DE.Controllers.Main.textBack": "Tillbaka", "textSpacingBefore": "Spacing before",
"DE.Controllers.Main.textCancel": "Avbryt", "textStrikeout": "Strikeout",
"DE.Controllers.Main.textClose": "Stäng", "textSubScript": "Subscript",
"DE.Controllers.Main.textContactUs": "Kontakta säljare", "textSuperScript": "Superscript",
"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.", "textTableChanged": "Table Settings Changed",
"DE.Controllers.Main.textDone": "Klart", "textTableRowsAdd": "Table Rows Added",
"DE.Controllers.Main.textLoadingDocument": "Laddar dokument", "textTableRowsDel": "Table Rows Deleted",
"DE.Controllers.Main.textNoLicenseTitle": "%1 anslutningsbegränsning", "textTabs": "Change tabs",
"DE.Controllers.Main.textOK": "OK", "textTrackChanges": "Track Changes",
"DE.Controllers.Main.textPaidFeature": "Betald funktion", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"DE.Controllers.Main.textPassword": "Lösenord", "textUnderline": "Underline",
"DE.Controllers.Main.textPreloader": "Laddar...", "textUsers": "Users",
"DE.Controllers.Main.titleLicenseExp": "Licensen har gått ut", "textWidow": "Widow control"
"DE.Controllers.Main.titleServerVersion": "Editorn är uppdaterad", },
"DE.Controllers.Main.txtDiagramTitle": "Diagramtitel", "ThemeColorPalette": {
"DE.Controllers.Main.txtFooter": "Sidfot", "textCustomColors": "Custom Colors",
"DE.Controllers.Main.txtHeader": "Huvud", "textStandartColors": "Standard Colors",
"DE.Controllers.Main.txtStyle_footnote_text": "Fotnotstext", "textThemeColors": "Theme Colors"
"DE.Controllers.Main.txtStyle_Heading_1": "Rubrik 1", }
"DE.Controllers.Main.txtStyle_Heading_2": "Rubrik 2", },
"DE.Controllers.Main.txtStyle_Heading_3": "Rubrik 3", "ContextMenu": {
"DE.Controllers.Main.txtStyle_Heading_4": "Rubrik 4", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"DE.Controllers.Main.txtStyle_Heading_5": "Rubrik 5", "menuAddComment": "Add comment",
"DE.Controllers.Main.txtStyle_Heading_6": "Rubrik 6", "menuAddLink": "Add link",
"DE.Controllers.Main.txtStyle_Heading_7": "Rubrik 7", "menuCancel": "Cancel",
"DE.Controllers.Main.txtStyle_Heading_8": "Rubrik 8", "menuDelete": "Delete",
"DE.Controllers.Main.txtStyle_Heading_9": "Rubrik 9", "menuDeleteTable": "Delete Table",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intensivt citat", "menuEdit": "Edit",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Lista avsnitt", "menuMerge": "Merge",
"DE.Controllers.Main.txtStyle_No_Spacing": "Inget avstånd", "menuMore": "More",
"DE.Controllers.Main.txtStyle_Normal": "Normal", "menuOpenLink": "Open Link",
"DE.Controllers.Main.txtStyle_Quote": "Citat", "menuReview": "Review",
"DE.Controllers.Main.txtStyle_Subtitle": "Undertitel", "menuReviewChange": "Review Change",
"DE.Controllers.Main.txtStyle_Title": "Titel", "menuSplit": "Split",
"DE.Controllers.Main.uploadImageSizeMessage": "Maximal bildstorlek har överskridits.", "menuViewComment": "View Comment",
"DE.Controllers.Search.textReplaceAll": "Ersätt alla", "textColumns": "Columns",
"DE.Controllers.Settings.txtLoading": "Laddar...", "textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"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?", "textDoNotShowAgain": "Don't show again",
"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?", "textRows": "Rows"
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Du lämnar appen", },
"DE.Controllers.Toolbar.leaveButtonText": "Lämna denna sidan", "Edit": {
"DE.Views.AddImage.textAddress": "Adress", "notcriticalErrorTitle": "Warning",
"DE.Views.AddImage.textBack": "Tillbaka", "textActualSize": "Actual size",
"DE.Views.AddImage.textFromLibrary": "Bild från biblioteket", "textAddCustomColor": "Add custom color",
"DE.Views.AddImage.textFromURL": "Bild från URL", "textAdditional": "Additional",
"DE.Views.AddImage.textImageURL": "Bild-URL", "textAdditionalFormatting": "Additional formatting",
"DE.Views.AddImage.textInsertImage": "Infoga bild", "textAddress": "Address",
"DE.Views.AddImage.textLinkSettings": "Länkinställningar", "textAdvanced": "Advanced",
"DE.Views.AddOther.textAddLink": "Lägg till länk", "textAdvancedSettings": "Advanced settings",
"DE.Views.AddOther.textBack": "Tillbaka", "textAfter": "After",
"DE.Views.AddOther.textCenterBottom": "Centrerad nederkant", "textAlign": "Align",
"DE.Views.AddOther.textCenterTop": "Centrerad överkant", "textAllCaps": "All caps",
"DE.Views.AddOther.textColumnBreak": "Kolumnbrytning", "textAllowOverlap": "Allow overlap",
"DE.Views.AddOther.textContPage": "Kontinuerliga sida", "textAuto": "Auto",
"DE.Views.AddOther.textCurrentPos": "Nuvarande position", "textAutomatic": "Automatic",
"DE.Views.AddOther.textDisplay": "Visa", "textBack": "Back",
"DE.Views.AddOther.textEvenPage": "Jämn sida", "textBackground": "Background",
"DE.Views.AddOther.textFootnote": "Fotnot", "textBandedColumn": "Banded column",
"DE.Views.AddOther.textFormat": "Format", "textBandedRow": "Banded row",
"DE.Views.AddOther.textInsert": "Infoga", "textBefore": "Before",
"DE.Views.AddOther.textInsertFootnote": "Infoga fotnot", "textBehind": "Behind",
"DE.Views.AddOther.textLeftBottom": "Vänster nederkant", "textBorder": "Border",
"DE.Views.AddOther.textLeftTop": "Vänster överkant", "textBringToForeground": "Bring to foreground",
"DE.Views.AddOther.textLink": "Länk", "textBullets": "Bullets",
"DE.Views.AddOther.textLocation": "Plats", "textBulletsAndNumbers": "Bullets & Numbers",
"DE.Views.AddOther.textNextPage": "Nästa sida", "textCellMargins": "Cell Margins",
"DE.Views.AddOther.textOddPage": "Udda sida", "textChart": "Chart",
"DE.Views.AddOther.textPageBreak": "Sidbrytning", "textClose": "Close",
"DE.Views.AddOther.textRightBottom": "Höger nederkant", "textColor": "Color",
"DE.Views.AddOther.textRightTop": "Höger överkant", "textContinueFromPreviousSection": "Continue from previous section",
"DE.Views.AddOther.textSectionBreak": "Brytning avsnitt", "textCustomColor": "Custom Color",
"DE.Views.AddOther.textStartFrom": "Börja på", "textDifferentFirstPage": "Different first page",
"DE.Views.AddOther.textTip": "Skärmtips", "textDifferentOddAndEvenPages": "Different odd and even pages",
"DE.Views.EditChart.textAddCustomColor": "Lägg till anpassad färg", "textDisplay": "Display",
"DE.Views.EditChart.textAlign": "Justera", "textDistanceFromText": "Distance from text",
"DE.Views.EditChart.textBack": "Tillbaka", "textDoubleStrikethrough": "Double Strikethrough",
"DE.Views.EditChart.textBackward": "Flytta bakåt", "textEditLink": "Edit Link",
"DE.Views.EditChart.textBehind": "Bakom", "textEffects": "Effects",
"DE.Views.EditChart.textBorder": "Gräns", "textEmptyImgUrl": "You need to specify image URL.",
"DE.Views.EditChart.textColor": "Färg", "textFill": "Fill",
"DE.Views.EditChart.textCustomColor": "Anpassad färg", "textFirstColumn": "First Column",
"DE.Views.EditChart.textDistanceText": "Avstånd från text", "textFirstLine": "FirstLine",
"DE.Views.EditChart.textFill": "Fyll", "textFlow": "Flow",
"DE.Views.EditChart.textForward": "Flytta framåt", "textFontColor": "Font Color",
"DE.Views.EditChart.textInFront": "Längst fram", "textFontColors": "Font Colors",
"DE.Views.EditChart.textMoveText": "Flytta med text", "textFonts": "Fonts",
"DE.Views.EditChart.textOverlap": "Tillåt överlappning", "textFooter": "Footer",
"DE.Views.EditChart.textSize": "Storlek", "textHeader": "Header",
"DE.Views.EditChart.textToForeground": "Flytta till förgrund", "textHeaderRow": "Header Row",
"DE.Views.EditChart.textTopBottom": "Övre och nedre", "textHighlightColor": "Highlight Color",
"DE.Views.EditHeader.textDiffFirst": "Annan förstasida", "textHyperlink": "Hyperlink",
"DE.Views.EditHeader.textDiffOdd": "Olika udda och jämna sidor", "textImage": "Image",
"DE.Views.EditHeader.textFrom": "Börja på", "textImageURL": "Image URL",
"DE.Views.EditHeader.textPageNumbering": "Sidnumrering", "textInFront": "In Front",
"DE.Views.EditHeader.textPrev": "Fortsätt från föregående", "textInline": "Inline",
"DE.Views.EditHeader.textSameAs": "Länk till förgående", "textKeepLinesTogether": "Keep Lines Together",
"DE.Views.EditHyperlink.textDisplay": "Visa", "textKeepWithNext": "Keep with Next",
"DE.Views.EditHyperlink.textEdit": "Redigera länk", "textLastColumn": "Last Column",
"DE.Views.EditHyperlink.textLink": "Länk", "textLetterSpacing": "Letter Spacing",
"DE.Views.EditHyperlink.textTip": "Skärmtips", "textLineSpacing": "Line Spacing",
"DE.Views.EditImage.textAddress": "Adress", "textLink": "Link",
"DE.Views.EditImage.textAlign": "Justera", "textLinkSettings": "Link Settings",
"DE.Views.EditImage.textBack": "Tillbaka", "textLinkToPrevious": "Link to Previous",
"DE.Views.EditImage.textBackward": "Flytta bakåt", "textMoveBackward": "Move Backward",
"DE.Views.EditImage.textBehind": "Bakom", "textMoveForward": "Move Forward",
"DE.Views.EditImage.textDefault": "Egentlig Storlek", "textMoveWithText": "Move with Text",
"DE.Views.EditImage.textDistanceText": "Avstånd från text", "textNone": "None",
"DE.Views.EditImage.textForward": "Flytta framåt", "textNoStyles": "No styles for this type of charts.",
"DE.Views.EditImage.textFromLibrary": "Bild från biblioteket", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"DE.Views.EditImage.textFromURL": "Bild från URL", "textOpacity": "Opacity",
"DE.Views.EditImage.textImageURL": "Bild-URL", "textOptions": "Options",
"DE.Views.EditImage.textInFront": "Längst fram", "textOrphanControl": "Orphan Control",
"DE.Views.EditImage.textLinkSettings": "Länkinställningar", "textPageBreakBefore": "Page Break Before",
"DE.Views.EditImage.textMoveText": "Flytta med text", "textPageNumbering": "Page Numbering",
"DE.Views.EditImage.textOverlap": "Tillåt överlappning", "textParagraph": "Paragraph",
"DE.Views.EditImage.textReplace": "Ersätt", "textParagraphStyles": "Paragraph Styles",
"DE.Views.EditImage.textReplaceImg": "Ersätt bild", "textPictureFromLibrary": "Picture from Library",
"DE.Views.EditImage.textToForeground": "Flytta till förgrund", "textPictureFromURL": "Picture from URL",
"DE.Views.EditImage.textTopBottom": "Övre och nedre", "textPt": "pt",
"DE.Views.EditParagraph.textAddCustomColor": "Lägg till anpassad färg", "textRemoveChart": "Remove Chart",
"DE.Views.EditParagraph.textAdvanced": "Avancerad", "textRemoveImage": "Remove Image",
"DE.Views.EditParagraph.textAdvSettings": "Avancerade inställningar", "textRemoveLink": "Remove Link",
"DE.Views.EditParagraph.textAfter": "Efter", "textRemoveShape": "Remove Shape",
"DE.Views.EditParagraph.textAuto": "auto", "textRemoveTable": "Remove Table",
"DE.Views.EditParagraph.textBack": "Tillbaka", "textReorder": "Reorder",
"DE.Views.EditParagraph.textBackground": "Bakgrund", "textRepeatAsHeaderRow": "Repeat as Header Row",
"DE.Views.EditParagraph.textBefore": "Före", "textReplace": "Replace",
"DE.Views.EditParagraph.textCustomColor": "Anpassad färg", "textReplaceImage": "Replace Image",
"DE.Views.EditParagraph.textFirstLine": "Första raden", "textResizeToFitContent": "Resize to Fit Content",
"DE.Views.EditParagraph.textFromText": "Avstånd från text", "textScreenTip": "Screen Tip",
"DE.Views.EditParagraph.textKeepLines": "Håll ihop rader", "textSelectObjectToEdit": "Select object to edit",
"DE.Views.EditParagraph.textKeepNext": "Behåll med nästa", "textSendToBackground": "Send to Background",
"DE.Views.EditParagraph.textPageBreak": "Sidbrytning före", "textSettings": "Settings",
"DE.Views.EditParagraph.textPrgStyles": "Avsnittstilar", "textShape": "Shape",
"DE.Views.EditParagraph.textSpaceBetween": "Avstånd mellan", "textSize": "Size",
"DE.Views.EditShape.textAddCustomColor": "Lägg till anpassad färg", "textSmallCaps": "Small Caps",
"DE.Views.EditShape.textAlign": "Justera", "textSpaceBetweenParagraphs": "Space Between Paragraphs",
"DE.Views.EditShape.textBack": "Tillbaka", "textSquare": "Square",
"DE.Views.EditShape.textBackward": "Flytta bakåt", "textStartAt": "Start at",
"DE.Views.EditShape.textBehind": "Bakom", "textStrikethrough": "Strikethrough",
"DE.Views.EditShape.textBorder": "Gräns", "textStyle": "Style",
"DE.Views.EditShape.textColor": "Färg", "textStyleOptions": "Style Options",
"DE.Views.EditShape.textCustomColor": "Anpassad färg", "textSubscript": "Subscript",
"DE.Views.EditShape.textEffects": "Effekter", "textSuperscript": "Superscript",
"DE.Views.EditShape.textFill": "Fyll", "textTable": "Table",
"DE.Views.EditShape.textForward": "Flytta framåt", "textTableOptions": "Table Options",
"DE.Views.EditShape.textFromText": "Avstånd från text", "textText": "Text",
"DE.Views.EditShape.textInFront": "Längst fram", "textThrough": "Through",
"DE.Views.EditShape.textOpacity": "Opacitet", "textTight": "Tight",
"DE.Views.EditShape.textOverlap": "Tillåt överlappning", "textTopAndBottom": "Top and Bottom",
"DE.Views.EditShape.textReplace": "Ersätt", "textTotalRow": "Total Row",
"DE.Views.EditShape.textSize": "Storlek", "textType": "Type",
"DE.Views.EditShape.textToForeground": "Flytta till förgrund", "textWrap": "Wrap",
"DE.Views.EditShape.textTopAndBottom": "Övre och nedre", "textNumbers": "Numbers"
"DE.Views.EditShape.textWithText": "Flytta med text", },
"DE.Views.EditTable.textAddCustomColor": "Lägg till anpassad färg", "Error": {
"DE.Views.EditTable.textAlign": "Justera", "convertationTimeoutText": "Conversion timeout exceeded.",
"DE.Views.EditTable.textBack": "Tillbaka", "criticalErrorExtText": "Press 'OK' to go back to the document list.",
"DE.Views.EditTable.textBorder": "Gräns", "criticalErrorTitle": "Error",
"DE.Views.EditTable.textCellMargins": "Cell-marginal", "downloadErrorText": "Download failed.",
"DE.Views.EditTable.textColor": "Färg", "errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"DE.Views.EditTable.textCustomColor": "Anpassad färg", "errorBadImageUrl": "Image url is incorrect",
"DE.Views.EditTable.textFill": "Fyll", "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.",
"DE.Views.EditTable.textFirstColumn": "Första kolumnen", "errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"DE.Views.EditTable.textFlow": "Flöde", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"DE.Views.EditTable.textFromText": "Avstånd från text", "errorDataRange": "Incorrect data range.",
"DE.Views.EditTable.textHeaderRow": "Huvudrad", "errorDefaultMessage": "Error code: %1",
"DE.Views.EditTable.textLastColumn": "Sista kolumnen", "errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"DE.Views.EditTable.textRemoveTable": "Radera tabell", "errorFilePassProtect": "The file is password protected and could not be opened.",
"DE.Views.EditTable.textSize": "Storlek", "errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"DE.Views.EditTable.textTableOptions": "Tabellegenskaper", "errorKeyEncrypt": "Unknown key descriptor",
"DE.Views.EditTable.textWithText": "Flytta med text", "errorKeyExpire": "Key descriptor expired",
"DE.Views.EditText.textAddCustomColor": "Lägg till anpassad färg", "errorMailMergeLoadFile": "Loading failed",
"DE.Views.EditText.textAdditional": "Extra", "errorMailMergeSaveFile": "Merge failed.",
"DE.Views.EditText.textAdditionalFormat": "Ytterligare formatering", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"DE.Views.EditText.textAllCaps": "Alla versaler", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"DE.Views.EditText.textAutomatic": "Automatisk", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"DE.Views.EditText.textBack": "Tillbaka", "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.",
"DE.Views.EditText.textBullets": "Punktlista", "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.Views.EditText.textCharacterBold": "B", "errorUserDrop": "The file can't be accessed right now.",
"DE.Views.EditText.textCharacterItalic": "I", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"DE.Views.EditText.textCustomColor": "Anpassad färg", "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.",
"DE.Views.EditText.textDblStrikethrough": "Dubbel genomstrykning", "notcriticalErrorTitle": "Warning",
"DE.Views.EditText.textDblSuperscript": "Upphöjd", "openErrorText": "An error has occurred while opening the file",
"DE.Views.EditText.textFontColor": "Teckensnittsfärg", "saveErrorText": "An error has occurred while saving the file",
"DE.Views.EditText.textFontColors": "Teckensnittsfärger", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"DE.Views.EditText.textFonts": "Teckensnitt", "splitDividerErrorText": "The number of rows must be a divisor of %1",
"DE.Views.EditText.textHighlightColor": "Markera färg", "splitMaxColsErrorText": "The number of columns must be less than %1",
"DE.Views.EditText.textHighlightColors": "Markera färger", "splitMaxRowsErrorText": "The number of rows must be less than %1",
"DE.Views.EditText.textLetterSpacing": "Teckenavstånd", "unknownErrorText": "Unknown error.",
"DE.Views.EditText.textLineSpacing": "Radavstånd", "uploadImageExtMessage": "Unknown image format.",
"DE.Views.EditText.textNone": "ingen", "uploadImageFileCountMessage": "No images uploaded.",
"DE.Views.EditText.textNumbers": "Nummer", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
"DE.Views.EditText.textSize": "Storlek", },
"DE.Views.EditText.textSmallCaps": "Gemener", "LongActions": {
"DE.Views.EditText.textStrikethrough": "Genomstruken", "applyChangesTextText": "Loading data...",
"DE.Views.EditText.textSubscript": "Nedsänkt", "applyChangesTitleText": "Loading Data",
"DE.Views.Search.textCase": "Skiftlägeskänslig", "downloadMergeText": "Downloading...",
"DE.Views.Search.textDone": "Klart", "downloadMergeTitle": "Downloading",
"DE.Views.Search.textFind": "Sök", "downloadTextText": "Downloading document...",
"DE.Views.Search.textFindAndReplace": "Sök och ersätt", "downloadTitleText": "Downloading Document",
"DE.Views.Search.textHighlight": "Markera resultat", "loadFontsTextText": "Loading data...",
"DE.Views.Search.textReplace": "Ersätt", "loadFontsTitleText": "Loading Data",
"DE.Views.Settings.textAbout": "Om", "loadFontTextText": "Loading data...",
"DE.Views.Settings.textAddress": "adress", "loadFontTitleText": "Loading Data",
"DE.Views.Settings.textAdvancedSettings": "Appinställningar", "loadImagesTextText": "Loading images...",
"DE.Views.Settings.textApplication": "Program", "loadImagesTitleText": "Loading Images",
"DE.Views.Settings.textAuthor": "Författare", "loadImageTextText": "Loading image...",
"DE.Views.Settings.textBack": "Tillbaka", "loadImageTitleText": "Loading Image",
"DE.Views.Settings.textBottom": "Nederst", "loadingDocumentTextText": "Loading document...",
"DE.Views.Settings.textCentimeter": "Centimeter", "loadingDocumentTitleText": "Loading document",
"DE.Views.Settings.textCollaboration": "Samarbete", "mailMergeLoadFileText": "Loading Data Source...",
"DE.Views.Settings.textColorSchemes": "Färgschema", "mailMergeLoadFileTitle": "Loading Data Source",
"DE.Views.Settings.textComment": "Kommentar", "openTextText": "Opening document...",
"DE.Views.Settings.textCommentingDisplay": "Visa kommentarer", "openTitleText": "Opening Document",
"DE.Views.Settings.textCreated": "Skapad ", "printTextText": "Printing document...",
"DE.Views.Settings.textCreateDate": "Skapandedatum", "printTitleText": "Printing Document",
"DE.Views.Settings.textCustom": "Anpassad", "savePreparingText": "Preparing to save",
"DE.Views.Settings.textCustomSize": "Anpassad storlek", "savePreparingTitle": "Preparing to save. Please wait...",
"DE.Views.Settings.textDisplayComments": "Kommentarer", "saveTextText": "Saving document...",
"DE.Views.Settings.textDisplayResolvedComments": "Lösta kommentarer", "saveTitleText": "Saving Document",
"DE.Views.Settings.textDocInfo": "Dokumentinformation", "sendMergeText": "Sending Merge...",
"DE.Views.Settings.textDocTitle": "Dokumenttitel", "sendMergeTitle": "Sending Merge",
"DE.Views.Settings.textDocumentFormats": "Dokumentformat", "textLoadingDocument": "Loading document",
"DE.Views.Settings.textDocumentSettings": "Dokumentinställningar", "txtEditingMode": "Set editing mode...",
"DE.Views.Settings.textDone": "Klart", "uploadImageTextText": "Uploading image...",
"DE.Views.Settings.textDownload": "Ladda ner", "uploadImageTitleText": "Uploading Image",
"DE.Views.Settings.textDownloadAs": "Ladda ner som...", "waitText": "Please, wait..."
"DE.Views.Settings.textEditDoc": "Redigera dokument", },
"DE.Views.Settings.textEmail": "E-post", "Main": {
"DE.Views.Settings.textFind": "Sök", "criticalErrorTitle": "Error",
"DE.Views.Settings.textFindAndReplace": "Sök och ersätt", "errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"DE.Views.Settings.textFormat": "Format", "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"DE.Views.Settings.textHelp": "Hjälp", "errorProcessSaveResult": "Saving failed.",
"DE.Views.Settings.textHiddenTableBorders": "Gömda tabellramar", "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"DE.Views.Settings.textInch": "Tum", "errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"DE.Views.Settings.textLandscape": "Landskap", "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"DE.Views.Settings.textLastModified": "Senast ändrad", "notcriticalErrorTitle": "Warning",
"DE.Views.Settings.textLastModifiedBy": "Senast ändrad av", "SDK": {
"DE.Views.Settings.textLeft": "Vänster", " -Section ": " -Section ",
"DE.Views.Settings.textLoading": "Laddar...", "above": "above",
"DE.Views.Settings.textLocation": "Plats", "below": "below",
"DE.Views.Settings.textMargins": "Marginaler", "Caption": "Caption",
"DE.Views.Settings.textNoCharacters": "Dolda tecken", "Choose an item": "Choose an item",
"DE.Views.Settings.textOrientation": "Orientering", "Click to load image": "Click to load image",
"DE.Views.Settings.textOwner": "Ägare", "Current Document": "Current Document",
"DE.Views.Settings.textPages": "Sidor", "Diagram Title": "Chart Title",
"DE.Views.Settings.textParagraphs": "Stycken", "endnote text": "Endnote Text",
"DE.Views.Settings.textPoint": "Punkt", "Enter a date": "Enter a date",
"DE.Views.Settings.textPortrait": "Porträtt", "Error! Bookmark not defined": "Error! Bookmark not defined.",
"DE.Views.Settings.textReview": "Spåra ändringar", "Error! Main Document Only": "Error! Main Document Only.",
"DE.Views.Settings.textRight": "Höger", "Error! No text of specified style in document": "Error! No text of specified style in document.",
"DE.Views.Settings.textSettings": "Inställningar", "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.",
"DE.Views.Settings.textSpaces": "Mellanslag", "Even Page ": "Even Page ",
"DE.Views.Settings.textSpellcheck": "Stavningskontroll", "First Page ": "First Page ",
"DE.Views.Settings.textStatistic": "Statistik", "Footer": "Footer",
"DE.Views.Settings.textSymbols": "Symboler", "footnote text": "Footnote Text",
"DE.Views.Settings.textTitle": "Titel", "Header": "Header",
"DE.Views.Settings.textTop": "Överst", "Heading 1": "Heading 1",
"DE.Views.Settings.textUnitOfMeasurement": "Måttenhet", "Heading 2": "Heading 2",
"DE.Views.Settings.textWords": "Ord", "Heading 3": "Heading 3",
"DE.Views.Toolbar.textBack": "Tillbaka" "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": { "About": {
"textAbout": "Hakkında", "textAbout": "Hakkında",
"textAddress": "adres", "textAddress": "adres",
"textBack": "Geri" "textBack": "Geri",
"textEmail": "Email",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
}, },
"Add": { "Add": {
"textAddLink": "Bağlantı Ekle", "textAddLink": "Bağlantı Ekle",
@ -13,7 +17,46 @@
"textBreak": "Yeni Sayfa", "textBreak": "Yeni Sayfa",
"textCancel": "İptal Et", "textCancel": "İptal Et",
"textCenterBottom": "Orta Alt", "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": { "Common": {
"Collaboration": { "Collaboration": {
@ -36,12 +79,108 @@
"textLeft": "Sola Hizala", "textLeft": "Sola Hizala",
"textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle", "textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle",
"textRight": "Sağa Hizala", "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": { "ContextMenu": {
"menuAddLink": "Bağlantı Ekle", "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": { "Edit": {
"textActualSize": "Gerçek Boyut", "textActualSize": "Gerçek Boyut",
@ -68,18 +207,229 @@
"textCellMargins": "Hücre Kenar Boşluğu", "textCellMargins": "Hücre Kenar Boşluğu",
"textChart": "Grafik", "textChart": "Grafik",
"textClose": "Kapat", "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": { "Error": {
"openErrorText": "Dosya açılırken bir hata oluştu.", "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": { "Main": {
"SDK": { "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", "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": { "Settings": {
"advTxtOptions": "TXT Seçeneklerini Belirle", "advTxtOptions": "TXT Seçeneklerini Belirle",
@ -94,6 +444,134 @@
"textCaseSensitive": "Büyük küçük harfe duyarlı", "textCaseSensitive": "Büyük küçük harfe duyarlı",
"textCentimeter": "Santimetre", "textCentimeter": "Santimetre",
"textCollaboration": "Ortak çalışma", "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", "About": {
"Common.UI.ThemeColorPalette.textThemeColors": "Màu theme", "textAbout": "About",
"Common.Utils.Metric.txtCm": "cm", "textAddress": "Address",
"Common.Utils.Metric.txtPt": "pt", "textBack": "Back",
"DE.Controllers.AddContainer.textImage": "Hình ảnh", "textEmail": "Email",
"DE.Controllers.AddContainer.textOther": "Khác", "textPoweredBy": "Powered By",
"DE.Controllers.AddContainer.textShape": "Hình dạng", "textTel": "Tel",
"DE.Controllers.AddContainer.textTable": "Bảng", "textVersion": "Version"
"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'", "Add": {
"DE.Controllers.AddOther.txtNotUrl": "Trường này phải là một URL có định dạng 'http://www.example.com'", "notcriticalErrorTitle": "Warning",
"DE.Controllers.AddTable.textCancel": "Hủy", "textAddLink": "Add link",
"DE.Controllers.AddTable.textColumns": "Cột", "textAddress": "Address",
"DE.Controllers.AddTable.textRows": "Hàng", "textBack": "Back",
"DE.Controllers.AddTable.textTableSize": "Kích thước bảng", "textBelowText": "Below text",
"DE.Controllers.DocumentHolder.menuAddLink": "Thêm liên kết", "textBottomOfPage": "Bottom of page",
"DE.Controllers.DocumentHolder.menuCopy": "Sao chép", "textBreak": "Break",
"DE.Controllers.DocumentHolder.menuCut": "Cắt", "textCancel": "Cancel",
"DE.Controllers.DocumentHolder.menuDelete": "Xóa", "textCenterBottom": "Center Bottom",
"DE.Controllers.DocumentHolder.menuEdit": "Chỉnh sửa", "textCenterTop": "Center Top",
"DE.Controllers.DocumentHolder.menuMore": "Thêm", "textColumnBreak": "Column Break",
"DE.Controllers.DocumentHolder.menuOpenLink": "Mở liên kết", "textColumns": "Columns",
"DE.Controllers.DocumentHolder.menuPaste": "Dán", "textComment": "Comment",
"DE.Controllers.DocumentHolder.sheetCancel": "Hủy", "textContinuousPage": "Continuous Page",
"DE.Controllers.DocumentHolder.textGuest": "Khách", "textCurrentPosition": "Current Position",
"DE.Controllers.EditContainer.textChart": "Biểu đồ", "textDisplay": "Display",
"DE.Controllers.EditContainer.textHyperlink": "Siêu liên kết", "textEmptyImgUrl": "You need to specify image URL.",
"DE.Controllers.EditContainer.textImage": "Hình ảnh", "textEvenPage": "Even Page",
"DE.Controllers.EditContainer.textParagraph": "Đoạn văn bản", "textFootnote": "Footnote",
"DE.Controllers.EditContainer.textSettings": "Cài đặt", "textFormat": "Format",
"DE.Controllers.EditContainer.textShape": "Hình dạng", "textImage": "Image",
"DE.Controllers.EditContainer.textTable": "Bảng", "textImageURL": "Image URL",
"DE.Controllers.EditContainer.textText": "Văn bản", "textInsert": "Insert",
"DE.Controllers.EditImage.textEmptyImgUrl": "Bạn cần chỉ định URL hình ảnh.", "textInsertFootnote": "Insert Footnote",
"DE.Controllers.EditImage.txtNotUrl": "Trường này phải là một URL có định dạng 'http://www.example.com'", "textInsertImage": "Insert Image",
"DE.Controllers.EditText.textAuto": "Tự động", "textLeftBottom": "Left Bottom",
"DE.Controllers.EditText.textFonts": "Phông chữ", "textLeftTop": "Left Top",
"DE.Controllers.EditText.textPt": "pt", "textLink": "Link",
"DE.Controllers.Main.advDRMEnterPassword": "Nhập mật khẩu của bạn:", "textLinkSettings": "Link Settings",
"DE.Controllers.Main.advDRMOptions": "File được bảo vệ", "textLocation": "Location",
"DE.Controllers.Main.advDRMPassword": "Mật khẩu", "textNextPage": "Next Page",
"DE.Controllers.Main.advTxtOptions": "Chọn tùy chọn TXT", "textOddPage": "Odd Page",
"DE.Controllers.Main.applyChangesTextText": "Đang tải dữ liệu...", "textOther": "Other",
"DE.Controllers.Main.applyChangesTitleText": "Đang tải Dữ liệu", "textPageBreak": "Page Break",
"DE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.", "textPageNumber": "Page Number",
"DE.Controllers.Main.criticalErrorExtText": "Ấn 'OK' để trở lại danh sách tài liệu.", "textPictureFromLibrary": "Picture from Library",
"DE.Controllers.Main.criticalErrorTitle": "Lỗi", "textPictureFromURL": "Picture from URL",
"DE.Controllers.Main.downloadErrorText": "Tải về không thành công.", "textPosition": "Position",
"DE.Controllers.Main.downloadMergeText": "Đang tải...", "textRightBottom": "Right Bottom",
"DE.Controllers.Main.downloadMergeTitle": "Đang tải về", "textRightTop": "Right Top",
"DE.Controllers.Main.downloadTextText": "Đang tải tài liệu...", "textRows": "Rows",
"DE.Controllers.Main.downloadTitleText": "Đang tải tài liệu...", "textScreenTip": "Screen Tip",
"DE.Controllers.Main.errorBadImageUrl": "URL hình ảnh không chính xác", "textSectionBreak": "Section Break",
"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.", "textShape": "Shape",
"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.", "textStartAt": "Start At",
"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ợ.", "textTable": "Table",
"DE.Controllers.Main.errorDataRange": "Phạm vi dữ liệu không chính xác.", "textTableSize": "Table Size",
"DE.Controllers.Main.errorDefaultMessage": "Mã lỗi: %1", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
"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", "Common": {
"DE.Controllers.Main.errorKeyExpire": "Key của descriptor đã hết hạn", "Collaboration": {
"DE.Controllers.Main.errorMailMergeLoadFile": "Tải không thành công", "notcriticalErrorTitle": "Warning",
"DE.Controllers.Main.errorMailMergeSaveFile": "Trộn không thành công.", "textAccept": "Accept",
"DE.Controllers.Main.errorProcessSaveResult": "Lưu không thành công.", "textAcceptAllChanges": "Accept all changes",
"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.", "textAddComment": "Add comment",
"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.", "textAddReply": "Add reply",
"DE.Controllers.Main.errorUpdateVersion": "Phiên bản file này đã được thay đổi. Trang này sẽ được tải lại.", "textAllChangesAcceptedPreview": "All changes accepted (Preview)",
"DE.Controllers.Main.errorUserDrop": "Không thể truy cập file ngay lúc này.", "textAllChangesEditing": "All changes (Editing)",
"DE.Controllers.Main.errorUsersExceed": "Đã vượt quá số lượng người dùng", "textAllChangesRejectedPreview": "All changes rejected (Preview)",
"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.", "textAtLeast": "at least",
"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.", "textAuto": "auto",
"DE.Controllers.Main.loadFontsTextText": "Đang tải dữ liệu...", "textBack": "Back",
"DE.Controllers.Main.loadFontsTitleText": "Đang tải Dữ liệu", "textBaseline": "Baseline",
"DE.Controllers.Main.loadFontTextText": "Đang tải dữ liệu...", "textBold": "Bold",
"DE.Controllers.Main.loadFontTitleText": "Đang tải Dữ liệu", "textBreakBefore": "Page break before",
"DE.Controllers.Main.loadImagesTextText": "Đang tải hình ảnh...", "textCancel": "Cancel",
"DE.Controllers.Main.loadImagesTitleText": "Đang tải hình ảnh", "textCaps": "All caps",
"DE.Controllers.Main.loadImageTextText": "Đang tải hình ảnh...", "textCenter": "Align center",
"DE.Controllers.Main.loadImageTitleText": "Đang tải hình ảnh", "textChart": "Chart",
"DE.Controllers.Main.loadingDocumentTextText": "Đang tải tài liệu...", "textCollaboration": "Collaboration",
"DE.Controllers.Main.loadingDocumentTitleText": "Đang tải tài liệu", "textColor": "Font color",
"DE.Controllers.Main.mailMergeLoadFileText": "Đang tải nguồn dữ liệu...", "textComments": "Comments",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Đang tải nguồn dữ liệu", "textContextual": "Don't add intervals between paragraphs of the same style",
"DE.Controllers.Main.notcriticalErrorTitle": "Cảnh báo", "textDelete": "Delete",
"DE.Controllers.Main.openErrorText": "Xảy ra lỗi khi mở file", "textDeleteComment": "Delete Comment",
"DE.Controllers.Main.openTextText": "Đang mở tài liệu...", "textDeleted": "Deleted:",
"DE.Controllers.Main.openTitleText": "Đang mở tài liệu...", "textDeleteReply": "Delete Reply",
"DE.Controllers.Main.printTextText": "Đang in Tài liệu...", "textDisplayMode": "Display Mode",
"DE.Controllers.Main.printTitleText": "Đang in Tài liệu", "textDone": "Done",
"DE.Controllers.Main.saveErrorText": "Xảy ra lỗi khi lưu file", "textDStrikeout": "Double strikeout",
"DE.Controllers.Main.savePreparingText": "Chuẩn bị lưu", "textEdit": "Edit",
"DE.Controllers.Main.savePreparingTitle": "Chuẩn bị lưu. Vui lòng chờ...", "textEditComment": "Edit Comment",
"DE.Controllers.Main.saveTextText": "Đang lưu tài liệu...", "textEditReply": "Edit Reply",
"DE.Controllers.Main.saveTitleText": "Đang lưu tài liệu...", "textEditUser": "Users who are editing the file:",
"DE.Controllers.Main.sendMergeText": "Đang gửi Trộn...", "textEquation": "Equation",
"DE.Controllers.Main.sendMergeTitle": "Đang gửi Trộn", "textExact": "exactly",
"DE.Controllers.Main.splitDividerErrorText": "Số hàng phải là ước của %1", "textFinal": "Final",
"DE.Controllers.Main.splitMaxColsErrorText": "Số cột phải nhỏ hơn %1", "textFirstLine": "First line",
"DE.Controllers.Main.splitMaxRowsErrorText": "Số hàng phải nhỏ hơn %1", "textFormatted": "Formatted",
"DE.Controllers.Main.textAnonymous": "Nặc danh", "textHighlight": "Highlight color",
"DE.Controllers.Main.textBack": "Quay lại", "textImage": "Image",
"DE.Controllers.Main.textBuyNow": "Truy cập trang web", "textIndentLeft": "Indent left",
"DE.Controllers.Main.textCancel": "Hủy", "textIndentRight": "Indent right",
"DE.Controllers.Main.textClose": "Đóng", "textInserted": "Inserted:",
"DE.Controllers.Main.textContactUs": "Phòng kinh doanh", "textItalic": "Italic",
"DE.Controllers.Main.textDone": "Hoàn tất", "textJustify": "Align justified ",
"DE.Controllers.Main.textLoadingDocument": "Đang tải tài liệu", "textKeepLines": "Keep lines together",
"DE.Controllers.Main.textNoLicenseTitle": "Phiên bản mã nguồn mở ONLYOFFICE", "textKeepNext": "Keep with next",
"DE.Controllers.Main.textOK": "OK", "textLeft": "Align left",
"DE.Controllers.Main.textPassword": "Mật khẩu", "textLineSpacing": "Line Spacing: ",
"DE.Controllers.Main.textPreloader": "Đang tải...", "textMarkup": "Markup",
"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.", "textMessageDeleteComment": "Do you really want to delete this comment?",
"DE.Controllers.Main.textUsername": "Tên đăng nhập", "textMessageDeleteReply": "Do you really want to delete this reply?",
"DE.Controllers.Main.titleLicenseExp": "Giấy phép hết hạn", "textMultiple": "multiple",
"DE.Controllers.Main.titleServerVersion": "Đã cập nhật trình chỉnh sửa", "textNoBreakBefore": "No page break before",
"DE.Controllers.Main.titleUpdateVersion": "Đã thay đổi phiên bản", "textNoChanges": "There are no changes.",
"DE.Controllers.Main.txtArt": "Văn bản của bạn ở đây", "textNoComments": "This document doesn't contain comments",
"DE.Controllers.Main.txtDiagramTitle": "Tiêu đề biểu đồ", "textNoContextual": "Add interval between paragraphs of the same style",
"DE.Controllers.Main.txtEditingMode": "Đặt chế độ chỉnh sửa...", "textNoKeepLines": "Don't keep lines together",
"DE.Controllers.Main.txtSeries": "Chuỗi", "textNoKeepNext": "Don't keep with next",
"DE.Controllers.Main.txtStyle_Heading_1": "Tiêu đề 1", "textNot": "Not ",
"DE.Controllers.Main.txtStyle_Heading_2": "Tiêu đề 2", "textNoWidow": "No widow control",
"DE.Controllers.Main.txtStyle_Heading_3": "Tiêu đề 3", "textNum": "Change numbering",
"DE.Controllers.Main.txtStyle_Heading_4": "Tiêu đề 4", "textOriginal": "Original",
"DE.Controllers.Main.txtStyle_Heading_5": "Tiêu đề 5", "textParaDeleted": "Paragraph Deleted",
"DE.Controllers.Main.txtStyle_Heading_6": "Tiêu đề 6", "textParaFormatted": "Paragraph Formatted",
"DE.Controllers.Main.txtStyle_Heading_7": "Tiêu đề 7", "textParaInserted": "Paragraph Inserted",
"DE.Controllers.Main.txtStyle_Heading_8": "Tiêu đề 8", "textParaMoveFromDown": "Moved Down:",
"DE.Controllers.Main.txtStyle_Heading_9": "Tiêu đề 9", "textParaMoveFromUp": "Moved Up:",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Trích dẫn mạnh mẽ", "textParaMoveTo": "Moved:",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Đoạn danh sách", "textPosition": "Position",
"DE.Controllers.Main.txtStyle_No_Spacing": "Không cách", "textReject": "Reject",
"DE.Controllers.Main.txtStyle_Normal": "Thường", "textRejectAllChanges": "Reject All Changes",
"DE.Controllers.Main.txtStyle_Quote": "Trích dẫn", "textReopen": "Reopen",
"DE.Controllers.Main.txtStyle_Subtitle": "Phụ đề", "textResolve": "Resolve",
"DE.Controllers.Main.txtStyle_Title": "Tiêu đề", "textReview": "Review",
"DE.Controllers.Main.txtXAxis": "Trục X", "textReviewChange": "Review Change",
"DE.Controllers.Main.txtYAxis": "Trục Y", "textRight": "Align right",
"DE.Controllers.Main.unknownErrorText": "Lỗi không xác định.", "textShape": "Shape",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Trình duyệt của bạn không được hỗ trợ.", "textShd": "Background color",
"DE.Controllers.Main.uploadImageExtMessage": "Định dạng hình ảnh không xác định.", "textSmallCaps": "Small caps",
"DE.Controllers.Main.uploadImageFileCountMessage": "Không có hình ảnh được tải lên.", "textSpacing": "Spacing",
"DE.Controllers.Main.uploadImageSizeMessage": "Đã vượt quá giới hạn kích thước tối đa của hình ảnh.", "textSpacingAfter": "Spacing after",
"DE.Controllers.Main.uploadImageTextText": "Đang tải lên hình ảnh...", "textSpacingBefore": "Spacing before",
"DE.Controllers.Main.uploadImageTitleText": "Đang tải lên hình ảnh", "textStrikeout": "Strikeout",
"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.", "textSubScript": "Subscript",
"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.", "textSuperScript": "Superscript",
"DE.Controllers.Main.warnProcessRightsChange": "Bạn đã bị từ chối quyền chỉnh sửa file này.", "textTableChanged": "Table Settings Changed",
"DE.Controllers.Search.textNoTextFound": "Không tìm thấy nội dung", "textTableRowsAdd": "Table Rows Added",
"DE.Controllers.Search.textReplaceAll": "Thay thế tất cả", "textTableRowsDel": "Table Rows Deleted",
"DE.Controllers.Settings.notcriticalErrorTitle": "Cảnh báo", "textTabs": "Change tabs",
"DE.Controllers.Settings.txtLoading": "Đang tải...", "textTrackChanges": "Track Changes",
"DE.Controllers.Settings.unknownText": "Không xác định", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"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?", "textUnderline": "Underline",
"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.", "textUsers": "Users",
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Bạn rời khỏi ứng dụng", "textWidow": "Widow control"
"DE.Controllers.Toolbar.leaveButtonText": "Rời trang này", },
"DE.Controllers.Toolbar.stayButtonText": "Ở lại trang này", "ThemeColorPalette": {
"DE.Views.AddImage.textAddress": "Địa chỉ", "textCustomColors": "Custom Colors",
"DE.Views.AddImage.textBack": "Quay lại", "textStandartColors": "Standard Colors",
"DE.Views.AddImage.textFromLibrary": "Hình ảnh từ Thư viện", "textThemeColors": "Theme Colors"
"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", "ContextMenu": {
"DE.Views.AddImage.textLinkSettings": "Cài đặt Liên kết", "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.",
"DE.Views.AddOther.textAddLink": "Thêm liên kết", "menuAddComment": "Add comment",
"DE.Views.AddOther.textBack": "Quay lại", "menuAddLink": "Add link",
"DE.Views.AddOther.textCenterBottom": "Chính giữa bên dưới", "menuCancel": "Cancel",
"DE.Views.AddOther.textCenterTop": "Chính giữa bên trên", "menuDelete": "Delete",
"DE.Views.AddOther.textColumnBreak": "Ngắt cột", "menuDeleteTable": "Delete Table",
"DE.Views.AddOther.textContPage": "Trang liên tục", "menuEdit": "Edit",
"DE.Views.AddOther.textCurrentPos": "Vị trí hiện tại", "menuMerge": "Merge",
"DE.Views.AddOther.textDisplay": "Hiển thị", "menuMore": "More",
"DE.Views.AddOther.textEvenPage": "Trang chẵn", "menuOpenLink": "Open Link",
"DE.Views.AddOther.textInsert": "Chèn", "menuReview": "Review",
"DE.Views.AddOther.textLeftBottom": "Dưới dùng bên trái", "menuReviewChange": "Review Change",
"DE.Views.AddOther.textLeftTop": "Trên dùng bên trái", "menuSplit": "Split",
"DE.Views.AddOther.textLink": "Liên kết", "menuViewComment": "View Comment",
"DE.Views.AddOther.textNextPage": "Trang tiếp theo", "textColumns": "Columns",
"DE.Views.AddOther.textOddPage": "Trang lẻ", "textCopyCutPasteActions": "Copy, Cut and Paste Actions",
"DE.Views.AddOther.textPageBreak": "Ngắt trang", "textDoNotShowAgain": "Don't show again",
"DE.Views.AddOther.textPageNumber": "Số trang", "textRows": "Rows"
"DE.Views.AddOther.textPosition": "Vị trí", },
"DE.Views.AddOther.textRightBottom": "Dưới cùng bên phải", "Edit": {
"DE.Views.AddOther.textRightTop": "Trên cùng bên phải", "notcriticalErrorTitle": "Warning",
"DE.Views.AddOther.textSectionBreak": "Ngắt phần", "textActualSize": "Actual size",
"DE.Views.AddOther.textTip": "Screen Tip", "textAddCustomColor": "Add custom color",
"DE.Views.EditChart.textAlign": "Căn chỉnh", "textAdditional": "Additional",
"DE.Views.EditChart.textBack": "Quay lại", "textAdditionalFormatting": "Additional formatting",
"DE.Views.EditChart.textBackward": "Di chuyển ngược lại", "textAddress": "Address",
"DE.Views.EditChart.textBehind": "Sau", "textAdvanced": "Advanced",
"DE.Views.EditChart.textBorder": "Đường viền", "textAdvancedSettings": "Advanced settings",
"DE.Views.EditChart.textColor": "Màu sắc", "textAfter": "After",
"DE.Views.EditChart.textDistanceText": "Khoảng cách từ văn bản", "textAlign": "Align",
"DE.Views.EditChart.textFill": "Đổ màu", "textAllCaps": "All caps",
"DE.Views.EditChart.textForward": "Di chuyển tiến lên", "textAllowOverlap": "Allow overlap",
"DE.Views.EditChart.textInFront": "Ở trước", "textAuto": "Auto",
"DE.Views.EditChart.textInline": "Cùng dòng", "textAutomatic": "Automatic",
"DE.Views.EditChart.textMoveText": "Di chuyển cùng văn bản", "textBack": "Back",
"DE.Views.EditChart.textOverlap": "Cho phép chồng chéo", "textBackground": "Background",
"DE.Views.EditChart.textRemoveChart": "Xóa biểu đồ", "textBandedColumn": "Banded column",
"DE.Views.EditChart.textReorder": "Đặt lại", "textBandedRow": "Banded row",
"DE.Views.EditChart.textSize": "Kích thước", "textBefore": "Before",
"DE.Views.EditChart.textSquare": "Vuông", "textBehind": "Behind",
"DE.Views.EditChart.textStyle": "Kiểu", "textBorder": "Border",
"DE.Views.EditChart.textThrough": "Xuyên qua", "textBringToForeground": "Bring to foreground",
"DE.Views.EditChart.textTight": "Sát", "textBullets": "Bullets",
"DE.Views.EditChart.textToBackground": "Gửi tới Nền", "textBulletsAndNumbers": "Bullets & Numbers",
"DE.Views.EditChart.textToForeground": "Đưa lên Cận cảnh", "textCellMargins": "Cell Margins",
"DE.Views.EditChart.textTopBottom": "Trên cùng và dưới cùng", "textChart": "Chart",
"DE.Views.EditChart.textType": "Loại", "textClose": "Close",
"DE.Views.EditChart.textWrap": "Ngắt dòng", "textColor": "Color",
"DE.Views.EditHyperlink.textDisplay": "Hiển thị", "textContinueFromPreviousSection": "Continue from previous section",
"DE.Views.EditHyperlink.textEdit": "Chỉnh sửa Liên kết", "textCustomColor": "Custom Color",
"DE.Views.EditHyperlink.textLink": "Liên kết", "textDifferentFirstPage": "Different first page",
"DE.Views.EditHyperlink.textRemove": "Xóa liên kết", "textDifferentOddAndEvenPages": "Different odd and even pages",
"DE.Views.EditHyperlink.textTip": "Screen Tip", "textDisplay": "Display",
"DE.Views.EditImage.textAddress": "Địa chỉ", "textDistanceFromText": "Distance from text",
"DE.Views.EditImage.textAlign": "Căn chỉnh", "textDoubleStrikethrough": "Double Strikethrough",
"DE.Views.EditImage.textBack": "Sau", "textEditLink": "Edit Link",
"DE.Views.EditImage.textBackward": "Di chuyển ngược lại", "textEffects": "Effects",
"DE.Views.EditImage.textBehind": "Sau", "textEmptyImgUrl": "You need to specify image URL.",
"DE.Views.EditImage.textDefault": "Kích thước mặc định", "textFill": "Fill",
"DE.Views.EditImage.textDistanceText": "Khoảng cách từ văn bản", "textFirstColumn": "First Column",
"DE.Views.EditImage.textForward": "Di chuyển tiến lên", "textFirstLine": "FirstLine",
"DE.Views.EditImage.textFromLibrary": "Hình ảnh từ Thư viện", "textFlow": "Flow",
"DE.Views.EditImage.textFromURL": "Hình ảnh từ URL", "textFontColor": "Font Color",
"DE.Views.EditImage.textImageURL": "URL hình ảnh", "textFontColors": "Font Colors",
"DE.Views.EditImage.textInFront": "Ở trước", "textFonts": "Fonts",
"DE.Views.EditImage.textInline": "Cùng dòng", "textFooter": "Footer",
"DE.Views.EditImage.textLinkSettings": "Cài đặt Liên kết", "textHeader": "Header",
"DE.Views.EditImage.textMoveText": "Di chuyển cùng văn bản", "textHeaderRow": "Header Row",
"DE.Views.EditImage.textOverlap": "Cho phép chồng chéo", "textHighlightColor": "Highlight Color",
"DE.Views.EditImage.textRemove": "Xóa hình ảnh", "textHyperlink": "Hyperlink",
"DE.Views.EditImage.textReorder": "Đặt lại", "textImage": "Image",
"DE.Views.EditImage.textReplace": "Thay thế", "textImageURL": "Image URL",
"DE.Views.EditImage.textReplaceImg": "Thay thế ảnh", "textInFront": "In Front",
"DE.Views.EditImage.textSquare": "Vuông", "textInline": "Inline",
"DE.Views.EditImage.textThrough": "Xuyên qua", "textKeepLinesTogether": "Keep Lines Together",
"DE.Views.EditImage.textTight": "Sát", "textKeepWithNext": "Keep with Next",
"DE.Views.EditImage.textToBackground": "Gửi tới Nền", "textLastColumn": "Last Column",
"DE.Views.EditImage.textToForeground": "Đưa lên Cận cảnh", "textLetterSpacing": "Letter Spacing",
"DE.Views.EditImage.textTopBottom": "Trên cùng và dưới cùng", "textLineSpacing": "Line Spacing",
"DE.Views.EditImage.textWrap": "Ngắt dòng", "textLink": "Link",
"DE.Views.EditParagraph.textAdvanced": "Nâng cao", "textLinkSettings": "Link Settings",
"DE.Views.EditParagraph.textAdvSettings": "Cài đặt nâng cao", "textLinkToPrevious": "Link to Previous",
"DE.Views.EditParagraph.textAfter": "Sau", "textMoveBackward": "Move Backward",
"DE.Views.EditParagraph.textAuto": "Tự động", "textMoveForward": "Move Forward",
"DE.Views.EditParagraph.textBack": "Quay lại", "textMoveWithText": "Move with Text",
"DE.Views.EditParagraph.textBackground": "Nền", "textNone": "None",
"DE.Views.EditParagraph.textBefore": "Trước", "textNoStyles": "No styles for this type of charts.",
"DE.Views.EditParagraph.textFromText": "Khoảng cách từ văn bản", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"DE.Views.EditParagraph.textKeepLines": "Giữ các dòng cùng nhau", "textOpacity": "Opacity",
"DE.Views.EditParagraph.textKeepNext": "Giữ cho tiếp theo", "textOptions": "Options",
"DE.Views.EditParagraph.textOrphan": "Kiểm soát dòng lẻ đầu trang sau", "textOrphanControl": "Orphan Control",
"DE.Views.EditParagraph.textPageBreak": "Ngắt trang đằng trước", "textPageBreakBefore": "Page Break Before",
"DE.Views.EditParagraph.textPrgStyles": "Kiểu đoạn văn bản", "textPageNumbering": "Page Numbering",
"DE.Views.EditParagraph.textSpaceBetween": "Khoảng cách giữa các đoạn", "textParagraph": "Paragraph",
"DE.Views.EditShape.textAlign": "Căn chỉnh", "textParagraphStyles": "Paragraph Styles",
"DE.Views.EditShape.textBack": "Quay lại", "textPictureFromLibrary": "Picture from Library",
"DE.Views.EditShape.textBackward": "Di chuyển ngược lại", "textPictureFromURL": "Picture from URL",
"DE.Views.EditShape.textBehind": "Sau", "textPt": "pt",
"DE.Views.EditShape.textBorder": "Đường viền", "textRemoveChart": "Remove Chart",
"DE.Views.EditShape.textColor": "Màu sắc", "textRemoveImage": "Remove Image",
"DE.Views.EditShape.textEffects": "Hiệu ứng", "textRemoveLink": "Remove Link",
"DE.Views.EditShape.textFill": "Đổ màu", "textRemoveShape": "Remove Shape",
"DE.Views.EditShape.textForward": "Di chuyển tiến lên", "textRemoveTable": "Remove Table",
"DE.Views.EditShape.textFromText": "Khoảng cách từ văn bản", "textReorder": "Reorder",
"DE.Views.EditShape.textInFront": "Ở trước", "textRepeatAsHeaderRow": "Repeat as Header Row",
"DE.Views.EditShape.textInline": "Cùng dòng", "textReplace": "Replace",
"DE.Views.EditShape.textOpacity": "Độ mờ", "textReplaceImage": "Replace Image",
"DE.Views.EditShape.textOverlap": "Cho phép chồng chéo", "textResizeToFitContent": "Resize to Fit Content",
"DE.Views.EditShape.textRemoveShape": "Xóa hình", "textScreenTip": "Screen Tip",
"DE.Views.EditShape.textReorder": "Đặt lại", "textSelectObjectToEdit": "Select object to edit",
"DE.Views.EditShape.textReplace": "Thay thế", "textSendToBackground": "Send to Background",
"DE.Views.EditShape.textSize": "Kích thước", "textSettings": "Settings",
"DE.Views.EditShape.textSquare": "Vuông", "textShape": "Shape",
"DE.Views.EditShape.textStyle": "Kiểu", "textSize": "Size",
"DE.Views.EditShape.textThrough": "Xuyên qua", "textSmallCaps": "Small Caps",
"DE.Views.EditShape.textTight": "Sát", "textSpaceBetweenParagraphs": "Space Between Paragraphs",
"DE.Views.EditShape.textToBackground": "Gửi tới Nền", "textSquare": "Square",
"DE.Views.EditShape.textToForeground": "Đưa lên Cận cảnh", "textStartAt": "Start at",
"DE.Views.EditShape.textTopAndBottom": "Trên cùng và dưới cùng", "textStrikethrough": "Strikethrough",
"DE.Views.EditShape.textWithText": "Di chuyển cùng văn bản", "textStyle": "Style",
"DE.Views.EditShape.textWrap": "Ngắt dòng", "textStyleOptions": "Style Options",
"DE.Views.EditTable.textAlign": "Căn chỉnh", "textSubscript": "Subscript",
"DE.Views.EditTable.textBack": "Quay lại", "textSuperscript": "Superscript",
"DE.Views.EditTable.textBandedColumn": "Cột gắn dải màu", "textTable": "Table",
"DE.Views.EditTable.textBandedRow": "Hàng gắn dải màu", "textTableOptions": "Table Options",
"DE.Views.EditTable.textBorder": "Đường viền", "textText": "Text",
"DE.Views.EditTable.textCellMargins": "Lề của ô", "textThrough": "Through",
"DE.Views.EditTable.textColor": "Màu sắc", "textTight": "Tight",
"DE.Views.EditTable.textFill": "Đổ màu", "textTopAndBottom": "Top and Bottom",
"DE.Views.EditTable.textFirstColumn": "Cột đầu tiên", "textTotalRow": "Total Row",
"DE.Views.EditTable.textFlow": "Flow", "textType": "Type",
"DE.Views.EditTable.textFromText": "Khoảng cách từ văn bản", "textWrap": "Wrap",
"DE.Views.EditTable.textHeaderRow": "Dòng Header", "textNumbers": "Numbers"
"DE.Views.EditTable.textInline": "Cùng dòng", },
"DE.Views.EditTable.textLastColumn": "Cột cuối cùng", "Error": {
"DE.Views.EditTable.textOptions": "Tùy chọn", "convertationTimeoutText": "Conversion timeout exceeded.",
"DE.Views.EditTable.textRemoveTable": "Xóa bảng", "criticalErrorExtText": "Press 'OK' to go back to the document list.",
"DE.Views.EditTable.textRepeatHeader": "Lặp lại như hàng Header", "criticalErrorTitle": "Error",
"DE.Views.EditTable.textResizeFit": "Thay đổi kích thước để phù hợp với nội dung", "downloadErrorText": "Download failed.",
"DE.Views.EditTable.textSize": "Kích thước", "errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"DE.Views.EditTable.textStyle": "Kiểu", "errorBadImageUrl": "Image url is incorrect",
"DE.Views.EditTable.textStyleOptions": "Tùy chọn kiểu", "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.",
"DE.Views.EditTable.textTableOptions": "Tùy chọn bảng", "errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
"DE.Views.EditTable.textTotalRow": "Tổng số hàng", "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"DE.Views.EditTable.textWithText": "Di chuyển cùng văn bản", "errorDataRange": "Incorrect data range.",
"DE.Views.EditTable.textWrap": "Ngắt dòng", "errorDefaultMessage": "Error code: %1",
"DE.Views.EditText.textAdditional": "Bổ sung", "errorEditingDownloadas": "An error occurred during the work with the document.<br>Download document to save the file backup copy locally.",
"DE.Views.EditText.textAdditionalFormat": "Định dạng bổ sung", "errorFilePassProtect": "The file is password protected and could not be opened.",
"DE.Views.EditText.textAllCaps": "Tất cả Drop cap", "errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"DE.Views.EditText.textAutomatic": "Tự động", "errorKeyEncrypt": "Unknown key descriptor",
"DE.Views.EditText.textBack": "Quay lại", "errorKeyExpire": "Key descriptor expired",
"DE.Views.EditText.textBullets": "Dấu đầu dòng", "errorMailMergeLoadFile": "Loading failed",
"DE.Views.EditText.textDblStrikethrough": "Gạch đôi giữa chữ", "errorMailMergeSaveFile": "Merge failed.",
"DE.Views.EditText.textDblSuperscript": "Chỉ số trên", "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"DE.Views.EditText.textFontColor": "Màu chữ", "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"DE.Views.EditText.textFontColors": "Màu chữ", "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"DE.Views.EditText.textFonts": "Phông chữ", "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.",
"DE.Views.EditText.textHighlightColor": "Màu tô sáng", "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.Views.EditText.textHighlightColors": "Màu tô sáng", "errorUserDrop": "The file can't be accessed right now.",
"DE.Views.EditText.textLetterSpacing": "Khoảng cách chữ cái", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"DE.Views.EditText.textLineSpacing": "Khoảng cách dòng", "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.",
"DE.Views.EditText.textNone": "Không", "notcriticalErrorTitle": "Warning",
"DE.Views.EditText.textNumbers": "Số", "openErrorText": "An error has occurred while opening the file",
"DE.Views.EditText.textSize": "Kích thước", "saveErrorText": "An error has occurred while saving the file",
"DE.Views.EditText.textSmallCaps": "Drop cap nhỏ", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"DE.Views.EditText.textStrikethrough": "Gạch giữa chữ", "splitDividerErrorText": "The number of rows must be a divisor of %1",
"DE.Views.EditText.textSubscript": "Chỉ số dưới", "splitMaxColsErrorText": "The number of columns must be less than %1",
"DE.Views.Search.textCase": "Phân biệt chữ hoa chữ thường", "splitMaxRowsErrorText": "The number of rows must be less than %1",
"DE.Views.Search.textDone": "Hoàn tất", "unknownErrorText": "Unknown error.",
"DE.Views.Search.textFind": "Tìm", "uploadImageExtMessage": "Unknown image format.",
"DE.Views.Search.textFindAndReplace": "Tìm và Thay thế", "uploadImageFileCountMessage": "No images uploaded.",
"DE.Views.Search.textHighlight": "Tô sáng kết quả", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
"DE.Views.Search.textReplace": "Thay thế", },
"DE.Views.Search.textSearch": "Tìm kiếm", "LongActions": {
"DE.Views.Settings.textAbout": "Giới thiệu", "applyChangesTextText": "Loading data...",
"DE.Views.Settings.textAddress": "địa chỉ", "applyChangesTitleText": "Loading Data",
"DE.Views.Settings.textAuthor": "Tác giả", "downloadMergeText": "Downloading...",
"DE.Views.Settings.textBack": "Quay lại", "downloadMergeTitle": "Downloading",
"DE.Views.Settings.textCreateDate": "Ngày tạo", "downloadTextText": "Downloading document...",
"DE.Views.Settings.textCustom": "Tuỳ chỉnh", "downloadTitleText": "Downloading Document",
"DE.Views.Settings.textCustomSize": "Tùy chỉnh kích thước", "loadFontsTextText": "Loading data...",
"DE.Views.Settings.textDocInfo": "Thông tin Tài liệu", "loadFontsTitleText": "Loading Data",
"DE.Views.Settings.textDocTitle": "Tiêu đề tài liệu", "loadFontTextText": "Loading data...",
"DE.Views.Settings.textDocumentFormats": "Định dạng Tài liệu", "loadFontTitleText": "Loading Data",
"DE.Views.Settings.textDocumentSettings": "Cài đặt tài liệu", "loadImagesTextText": "Loading images...",
"DE.Views.Settings.textDone": "Hoàn tất", "loadImagesTitleText": "Loading Images",
"DE.Views.Settings.textDownload": "Tải về", "loadImageTextText": "Loading image...",
"DE.Views.Settings.textDownloadAs": "Tải về dưới dạng...", "loadImageTitleText": "Loading Image",
"DE.Views.Settings.textEditDoc": "Chỉnh sửa Tài liệu", "loadingDocumentTextText": "Loading document...",
"DE.Views.Settings.textEmail": "email", "loadingDocumentTitleText": "Loading document",
"DE.Views.Settings.textFind": "Tìm", "mailMergeLoadFileText": "Loading Data Source...",
"DE.Views.Settings.textFindAndReplace": "Tìm và Thay thế", "mailMergeLoadFileTitle": "Loading Data Source",
"DE.Views.Settings.textFormat": "Định dạng", "openTextText": "Opening document...",
"DE.Views.Settings.textHelp": "Trợ giúp", "openTitleText": "Opening Document",
"DE.Views.Settings.textLandscape": "Nằm ngang", "printTextText": "Printing document...",
"DE.Views.Settings.textLoading": "Đang tải...", "printTitleText": "Printing Document",
"DE.Views.Settings.textOrientation": "Hướng", "savePreparingText": "Preparing to save",
"DE.Views.Settings.textPages": "Trang", "savePreparingTitle": "Preparing to save. Please wait...",
"DE.Views.Settings.textParagraphs": "Đoạn văn bản", "saveTextText": "Saving document...",
"DE.Views.Settings.textPortrait": "Thẳng đứng", "saveTitleText": "Saving Document",
"DE.Views.Settings.textPoweredBy": "Được hỗ trợ bởi", "sendMergeText": "Sending Merge...",
"DE.Views.Settings.textReader": "Chế độ đọc", "sendMergeTitle": "Sending Merge",
"DE.Views.Settings.textSettings": "Cài đặt", "textLoadingDocument": "Loading document",
"DE.Views.Settings.textSpaces": "Khoảng cách", "txtEditingMode": "Set editing mode...",
"DE.Views.Settings.textStatistic": "Thống kê", "uploadImageTextText": "Uploading image...",
"DE.Views.Settings.textSymbols": "Biểu tượng", "uploadImageTitleText": "Uploading Image",
"DE.Views.Settings.textTel": "ĐT", "waitText": "Please, wait..."
"DE.Views.Settings.textVersion": "Phiên bản", },
"DE.Views.Settings.textWords": "Từ", "Main": {
"DE.Views.Settings.unknownText": "Không xác định", "criticalErrorTitle": "Error",
"DE.Views.Toolbar.textBack": "Quay lại" "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": "上下", "textTopAndBottom": "上下",
"textTotalRow": "总行", "textTotalRow": "总行",
"textType": "类型", "textType": "类型",
"textWrap": "包裹" "textWrap": "包裹",
"textBullets": "Bullets",
"textNumbers": "Numbers"
}, },
"Error": { "Error": {
"convertationTimeoutText": "转换超时", "convertationTimeoutText": "转换超时",
@ -402,7 +404,43 @@
"Title": "标题", "Title": "标题",
"X Axis": "X 轴 XAS", "X Axis": "X 轴 XAS",
"Y Axis": "Y 轴", "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": "匿名", "textAnonymous": "匿名",
"textBuyNow": "访问网站", "textBuyNow": "访问网站",
@ -506,7 +544,29 @@
"textUnitOfMeasurement": "计量单位", "textUnitOfMeasurement": "计量单位",
"textUploaded": "已上传", "textUploaded": "已上传",
"txtIncorrectPwd": "密码有误", "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": { "Toolbar": {
"dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。",

View file

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

View file

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

View file

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

View file

@ -13,7 +13,7 @@ import {storeLinkSettings} from './linkSettings';
import {storeApplicationSettings} from './applicationSettings'; import {storeApplicationSettings} from './applicationSettings';
import {storeAppOptions} from "./appOptions"; import {storeAppOptions} from "./appOptions";
import {storePalette} from "./palette"; 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 {storeComments} from "../../../../common/mobile/lib/store/comments";
import {storeToolbarSettings} from "./toolbar"; import {storeToolbarSettings} from "./toolbar";

View file

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

View file

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

View file

@ -6,6 +6,7 @@ import { useTranslation } from "react-i18next";
const PageApplicationSettings = props => { const PageApplicationSettings = props => {
const { t } = useTranslation(); const { t } = useTranslation();
const _t = t("Settings", { returnObjects: true }); const _t = t("Settings", { returnObjects: true });
const displayMode = props.storeReview.displayMode;
const store = props.storeApplicationSettings; const store = props.storeApplicationSettings;
const unitMeasurement = store.unitMeasurement; const unitMeasurement = store.unitMeasurement;
const isSpellChecking = store.isSpellChecking; const isSpellChecking = store.isSpellChecking;
@ -49,7 +50,7 @@ const PageApplicationSettings = props => {
</ListItem> </ListItem>
</List> </List>
<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} <Toggle checked={isNonprintingCharacters}
onChange={() => { onChange={() => {
store.changeNoCharacters(!isNonprintingCharacters); store.changeNoCharacters(!isNonprintingCharacters);
@ -57,7 +58,7 @@ const PageApplicationSettings = props => {
}} }}
/> />
</ListItem> </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} <Toggle checked={isHiddenTableBorders}
onChange={() => { onChange={() => {
store.changeShowTableEmptyLine(!isHiddenTableBorders); 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)); const MacrosSettings = inject("storeApplicationSettings")(observer(PageMacrosSettings));
export {ApplicationSettings, MacrosSettings}; 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 } = useTranslation();
const _t = t('Settings', {returnObjects: true}); const _t = t('Settings', {returnObjects: true});
const storeReview = props.storeReview;
const displayMode = storeReview.displayMode;
const navbar = <Navbar title={_t.textSettings}> const navbar = <Navbar title={_t.textSettings}>
{!props.inPopover && <NavRight><Link popupClose=".settings-popup">{_t.textDone}</Link></NavRight>} {!props.inPopover && <NavRight><Link popupClose=".settings-popup">{_t.textDone}</Link></NavRight>}
</Navbar>; </Navbar>;
@ -139,7 +141,8 @@ const SettingsList = inject("storeAppOptions")(observer(props => {
</ListItem> </ListItem>
} }
{_isEdit && {_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> <Icon slot="media" icon="icon-doc-setup"></Icon>
</ListItem> </ListItem>
} }

View file

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

View file

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

View file

@ -13,9 +13,9 @@
"PE.ApplicationController.errorDefaultMessage": "Error code: %1", "PE.ApplicationController.errorDefaultMessage": "Error code: %1",
"PE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "PE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.",
"PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.", "PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
"PE.ApplicationController.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.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
"PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
"PE.ApplicationController.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.notcriticalErrorTitle": "Warning",
"PE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "PE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
"PE.ApplicationController.textAnonymous": "Anonymous", "PE.ApplicationController.textAnonymous": "Anonymous",

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
"PE.ApplicationController.notcriticalErrorTitle": "Avviso", "PE.ApplicationController.notcriticalErrorTitle": "Avviso",
"PE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", "PE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
"PE.ApplicationController.textAnonymous": "Anonimo",
"PE.ApplicationController.textGuest": "Ospite",
"PE.ApplicationController.textLoadingDocument": "Caricamento della presentazione", "PE.ApplicationController.textLoadingDocument": "Caricamento della presentazione",
"PE.ApplicationController.textOf": "di", "PE.ApplicationController.textOf": "di",
"PE.ApplicationController.txtClose": "Chiudi", "PE.ApplicationController.txtClose": "Chiudi",

View file

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

View file

@ -17,6 +17,8 @@
"PE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "PE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ",
"PE.ApplicationController.notcriticalErrorTitle": "Varning", "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.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.textLoadingDocument": "Laddar prentationen",
"PE.ApplicationController.textOf": "av", "PE.ApplicationController.textOf": "av",
"PE.ApplicationController.txtClose": "Stäng", "PE.ApplicationController.txtClose": "Stäng",
@ -25,6 +27,7 @@
"PE.ApplicationController.waitText": "Var snäll och vänta...", "PE.ApplicationController.waitText": "Var snäll och vänta...",
"PE.ApplicationView.txtDownload": "Ladda ner", "PE.ApplicationView.txtDownload": "Ladda ner",
"PE.ApplicationView.txtEmbed": "Inbädda", "PE.ApplicationView.txtEmbed": "Inbädda",
"PE.ApplicationView.txtFileLocation": "Gå till filens plats",
"PE.ApplicationView.txtFullScreen": "Fullskärm", "PE.ApplicationView.txtFullScreen": "Fullskärm",
"PE.ApplicationView.txtPrint": "Skriva ut", "PE.ApplicationView.txtPrint": "Skriva ut",
"PE.ApplicationView.txtShare": "Dela" "PE.ApplicationView.txtShare": "Dela"

View file

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

View file

@ -88,8 +88,8 @@ define([
render: function () { render: function () {
Common.UI.Window.prototype.render.call(this); 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 }, 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: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { 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 }]; { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) { data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); 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%;' 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 }, 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: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { 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 }]; { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
data.forEach(function(item) { data.forEach(function(item) {
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); 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.tipViewUsers": "Consulteu els usuaris i gestioneu els drets daccés als documents",
"Common.Views.Header.txtAccessRights": "Canviar els drets daccés", "Common.Views.Header.txtAccessRights": "Canviar els drets daccés",
"Common.Views.Header.txtRename": "Renombrar", "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.textUrl": "Pegar URL d'imatge:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", "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\"", "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_mathNotEqual": "No igual",
"PE.Controllers.Main.txtShape_mathPlus": "Més", "PE.Controllers.Main.txtShape_mathPlus": "Més",
"PE.Controllers.Main.txtShape_moon": "Lluna", "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_notchedRightArrow": "Fletxa a la dreta encaixada",
"PE.Controllers.Main.txtShape_octagon": "Octagon", "PE.Controllers.Main.txtShape_octagon": "Octagon",
"PE.Controllers.Main.txtShape_parallelogram": "Paral·lelograma", "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.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten",
"Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern", "Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern",
"Common.Views.Header.txtRename": "Umbenennen", "Common.Views.Header.txtRename": "Umbenennen",
"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.textUrl": "Bild-URL einfügen:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dieses Feld ist erforderlich", "Common.Views.ImageFromUrlDialog.txtEmpty": "Dieses Feld ist erforderlich",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Dieses Feld muss eine URL im Format \"http://www.example.com\" enthalten", "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.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento",
"Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso", "Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso",
"Common.Views.Header.txtRename": "Renombrar", "Common.Views.Header.txtRename": "Renombrar",
"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.textUrl": "Pegar URL de imagen:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo es obligatorio", "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo es obligatorio",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo debe ser URL en el formato \"http://www.example.com\"", "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.txtScheme22": "New Office",
"PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme3": "Apex",
"PE.Views.Toolbar.txtScheme4": "Proportions", "PE.Views.Toolbar.txtScheme4": "Proportions",
"PE.Views.Toolbar.txtScheme5": "Civique", "PE.Views.Toolbar.txtScheme5": "Civil",
"PE.Views.Toolbar.txtScheme6": "Rotonde", "PE.Views.Toolbar.txtScheme6": "Rotonde",
"PE.Views.Toolbar.txtScheme7": "Capitaux", "PE.Views.Toolbar.txtScheme7": "Capitaux",
"PE.Views.Toolbar.txtScheme8": "Flux", "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.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento",
"Common.Views.Header.txtAccessRights": "Modifica diritti di accesso", "Common.Views.Header.txtAccessRights": "Modifica diritti di accesso",
"Common.Views.Header.txtRename": "Rinomina", "Common.Views.Header.txtRename": "Rinomina",
"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.textUrl": "Incolla URL immagine:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Campo obbligatorio", "Common.Views.ImageFromUrlDialog.txtEmpty": "Campo obbligatorio",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"", "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.txtScheme2": "Scala di grigi",
"PE.Views.Toolbar.txtScheme20": "Tramonto", "PE.Views.Toolbar.txtScheme20": "Tramonto",
"PE.Views.Toolbar.txtScheme21": "Verve", "PE.Views.Toolbar.txtScheme21": "Verve",
"PE.Views.Toolbar.txtScheme22": "Nuovo ufficio",
"PE.Views.Toolbar.txtScheme3": "Apice", "PE.Views.Toolbar.txtScheme3": "Apice",
"PE.Views.Toolbar.txtScheme4": "Aspetto", "PE.Views.Toolbar.txtScheme4": "Aspetto",
"PE.Views.Toolbar.txtScheme5": "Città", "PE.Views.Toolbar.txtScheme5": "Città",

View file

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

View file

@ -176,6 +176,13 @@
"Common.Views.Header.tipViewUsers": "Vizualizare utilizatori și gestionare permisiuni de acces", "Common.Views.Header.tipViewUsers": "Vizualizare utilizatori și gestionare permisiuni de acces",
"Common.Views.Header.txtAccessRights": "Modificare permisiuni", "Common.Views.Header.txtAccessRights": "Modificare permisiuni",
"Common.Views.Header.txtRename": "Redenumire", "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.textUrl": "Lipire imagine prin URL:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Câmp obligatoriu", "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\" ", "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.warningText": "Objektet är inaktiverat eftersom det redigeras av en annan användare.",
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Varning", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Varning",
"Common.define.chartData.textArea": "Område", "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.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.textCharts": "Diagram",
"Common.define.chartData.textColumn": "Kolumn", "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.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.textPie": "Paj",
"Common.define.chartData.textPie3d": "3-D paj",
"Common.define.chartData.textPoint": "XY (Spridning)", "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.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.ColorButton.textNewColor": "Lägg till ny egen färg",
"Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar", "Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar",
"Common.UI.ComboBorderSizeEditable.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.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.textStandartColors": "Standardfärger",
"Common.UI.ThemeColorPalette.textThemeColors": "Temafä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.cancelButtonText": "Avbryt",
"Common.UI.Window.closeButtonText": "Stäng", "Common.UI.Window.closeButtonText": "Stäng",
"Common.UI.Window.noButtonText": "Inga", "Common.UI.Window.noButtonText": "Inga",
@ -47,6 +88,7 @@
"Common.UI.Window.textInformation": "Information", "Common.UI.Window.textInformation": "Information",
"Common.UI.Window.textWarning": "Varning", "Common.UI.Window.textWarning": "Varning",
"Common.UI.Window.yesButtonText": "Ja", "Common.UI.Window.yesButtonText": "Ja",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt", "Common.Utils.Metric.txtPt": "pt",
"Common.Views.About.txtAddress": "adress:", "Common.Views.About.txtAddress": "adress:",
"Common.Views.About.txtLicensee": "LICENSINNEHAVARE", "Common.Views.About.txtLicensee": "LICENSINNEHAVARE",
@ -55,6 +97,32 @@
"Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtPoweredBy": "Powered by",
"Common.Views.About.txtTel": "Tel.:", "Common.Views.About.txtTel": "Tel.:",
"Common.Views.About.txtVersion": "Version", "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.Chat.textSend": "Skicka",
"Common.Views.Comments.textAdd": "Lägg till", "Common.Views.Comments.textAdd": "Lägg till",
"Common.Views.Comments.textAddComment": "Lägg till kommentar", "Common.Views.Comments.textAddComment": "Lägg till kommentar",
@ -83,11 +151,14 @@
"Common.Views.ExternalDiagramEditor.textSave": "Spara & avsluta", "Common.Views.ExternalDiagramEditor.textSave": "Spara & avsluta",
"Common.Views.ExternalDiagramEditor.textTitle": "Diagram editor", "Common.Views.ExternalDiagramEditor.textTitle": "Diagram editor",
"Common.Views.Header.labelCoUsersDescr": "Dokumentet redigeras för närvarande av flera användare.", "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.textAdvSettings": "Avancerade inställningar",
"Common.Views.Header.textBack": "Gå till filens plats", "Common.Views.Header.textBack": "Gå till filens plats",
"Common.Views.Header.textCompactView": "Dölj verktygsrad", "Common.Views.Header.textCompactView": "Dölj verktygsrad",
"Common.Views.Header.textHideLines": "Dölj linjaler", "Common.Views.Header.textHideLines": "Dölj linjaler",
"Common.Views.Header.textHideNotes": "Dölj noteringar",
"Common.Views.Header.textHideStatusBar": "Dölj statusrad", "Common.Views.Header.textHideStatusBar": "Dölj statusrad",
"Common.Views.Header.textRemoveFavorite": "Ta bort från favoriter",
"Common.Views.Header.textSaveBegin": "Sparar...", "Common.Views.Header.textSaveBegin": "Sparar...",
"Common.Views.Header.textSaveChanged": "Ändrad", "Common.Views.Header.textSaveChanged": "Ändrad",
"Common.Views.Header.textSaveEnd": "Alla ändringar sparade", "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.tipViewUsers": "Visa användare och hantera dokumentbehörigheter",
"Common.Views.Header.txtAccessRights": "Ändra behörigheter", "Common.Views.Header.txtAccessRights": "Ändra behörigheter",
"Common.Views.Header.txtRename": "Döp om", "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.textUrl": "Klistra in en bilds URL:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Detta fält är obligatoriskt", "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\"", "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.txtTitle": "Tabellstorlek",
"Common.Views.InsertTableDialog.txtTitleSplit": "Dela cell", "Common.Views.InsertTableDialog.txtTitleSplit": "Dela cell",
"Common.Views.LanguageDialog.labelSelect": "Välj språk för dokumentet", "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.txtColor": "Färg",
"Common.Views.ListSettingsDialog.txtNewBullet": "New bullet",
"Common.Views.ListSettingsDialog.txtNone": "ingen",
"Common.Views.ListSettingsDialog.txtOfText": "% av text", "Common.Views.ListSettingsDialog.txtOfText": "% av text",
"Common.Views.ListSettingsDialog.txtSize": "Storlek", "Common.Views.ListSettingsDialog.txtSize": "Storlek",
"Common.Views.ListSettingsDialog.txtStart": "Börja på", "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.closeButtonText": "Stäng fil",
"Common.Views.OpenDialog.txtEncoding": "Teckenkodning", "Common.Views.OpenDialog.txtEncoding": "Teckenkodning",
"Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord.", "Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord.",
@ -162,6 +249,8 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "Ställ in samredigeringsläge", "Common.Views.ReviewChanges.tipCoAuthMode": "Ställ in samredigeringsläge",
"Common.Views.ReviewChanges.tipCommentRem": "Ta bort kommentarer", "Common.Views.ReviewChanges.tipCommentRem": "Ta bort kommentarer",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Ta bort aktuella 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.tipHistory": "Visa versionshistorik",
"Common.Views.ReviewChanges.tipRejectCurrent": "Avvisa nuvarande ändring", "Common.Views.ReviewChanges.tipRejectCurrent": "Avvisa nuvarande ändring",
"Common.Views.ReviewChanges.tipReview": "Spåra ändringar", "Common.Views.ReviewChanges.tipReview": "Spåra ändringar",
@ -175,11 +264,17 @@
"Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptera nuvarande ändring", "Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptera nuvarande ändring",
"Common.Views.ReviewChanges.txtChat": "Chatt", "Common.Views.ReviewChanges.txtChat": "Chatt",
"Common.Views.ReviewChanges.txtClose": "Stäng", "Common.Views.ReviewChanges.txtClose": "Stäng",
"Common.Views.ReviewChanges.txtCoAuthMode": "Redigera samtidigt",
"Common.Views.ReviewChanges.txtCommentRemAll": "Ta bort alla kommentarer", "Common.Views.ReviewChanges.txtCommentRemAll": "Ta bort alla kommentarer",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Ta bort aktuella kommentarer", "Common.Views.ReviewChanges.txtCommentRemCurrent": "Ta bort aktuella kommentarer",
"Common.Views.ReviewChanges.txtCommentRemMy": "Ta bort mina kommentarer", "Common.Views.ReviewChanges.txtCommentRemMy": "Ta bort mina kommentarer",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Ta bort mina aktuella kommentarer", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Ta bort mina aktuella kommentarer",
"Common.Views.ReviewChanges.txtCommentRemove": "Ta bort", "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.txtDocLang": "Språk",
"Common.Views.ReviewChanges.txtFinal": "Alla ändringar accepterade (Förhandsvisning)", "Common.Views.ReviewChanges.txtFinal": "Alla ändringar accepterade (Förhandsvisning)",
"Common.Views.ReviewChanges.txtFinalCap": "Slutlig", "Common.Views.ReviewChanges.txtFinalCap": "Slutlig",
@ -217,6 +312,7 @@
"Common.Views.SignDialog.textChange": "Ändra", "Common.Views.SignDialog.textChange": "Ändra",
"Common.Views.SignDialog.textInputName": "Infoga undertecknares namn", "Common.Views.SignDialog.textInputName": "Infoga undertecknares namn",
"Common.Views.SignDialog.textItalic": "Kursiv", "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.textPurpose": "Syfte för att underteckna det här dokumentet",
"Common.Views.SignDialog.textSelect": "Välj", "Common.Views.SignDialog.textSelect": "Välj",
"Common.Views.SignDialog.textSelectImage": "Välj bild", "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.textShowDate": "Visa datum för signatur på signaturraden",
"Common.Views.SignSettingsDialog.textTitle": "Skapa signatur", "Common.Views.SignSettingsDialog.textTitle": "Skapa signatur",
"Common.Views.SignSettingsDialog.txtEmpty": "Detta fält är obligatoriskt", "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.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.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.textRange": "Område",
"Common.Views.SymbolTableDialog.textRecent": "Tidigare använda symboler", "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.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.textSymbols": "Symboler",
"Common.Views.SymbolTableDialog.textTitle": "Symbol", "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.newDocumentTitle": "Ej nanmngiven Presentation",
"PE.Controllers.LeftMenu.notcriticalErrorTitle": "Varning", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Varning",
"PE.Controllers.LeftMenu.requestEditRightsText": "Begär rätt att editera...", "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.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.textReplaceSkipped": "Ersättningen har gjorts. {0} händelser hoppades över.",
"PE.Controllers.LeftMenu.textReplaceSuccess": "Sökningen har gjorts. Förekomster som ersatts: {0}", "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.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.errorBadImageUrl": "Bildens URL är felaktig",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Serveranslutning förlorade. Dokumentet kan inte redigeras just nu.", "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.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.errorDatabaseConnection": "Externt fel.<br>Databasanslutningsfel. Kontakta support om felet kvarstår.",
"PE.Controllers.Main.errorDataEncrypted": "Krypterade ändringar har tagits emot, de kan inte avkodas.", "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.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.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.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.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.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.", "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.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.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.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.loadFontsTextText": "Laddar data...",
"PE.Controllers.Main.loadFontsTitleText": "Laddar data", "PE.Controllers.Main.loadFontsTitleText": "Laddar data",
"PE.Controllers.Main.loadFontTextText": "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.requestEditFailedMessageText": "Någon redigerar denna presentation. Försök igen senare.",
"PE.Controllers.Main.requestEditFailedTitleText": "Ingen behörighet", "PE.Controllers.Main.requestEditFailedTitleText": "Ingen behörighet",
"PE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas", "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.savePreparingText": "Förbereder att spara",
"PE.Controllers.Main.savePreparingTitle": "Förbereder att spara. Vänta...", "PE.Controllers.Main.savePreparingTitle": "Förbereder att spara. Vänta...",
"PE.Controllers.Main.saveTextText": "Sparar presentationen...", "PE.Controllers.Main.saveTextText": "Sparar presentationen...",
@ -324,12 +449,19 @@
"PE.Controllers.Main.textCloseTip": "Klicka för att stänga tipset", "PE.Controllers.Main.textCloseTip": "Klicka för att stänga tipset",
"PE.Controllers.Main.textContactUs": "Kontakta säljare", "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.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.textLoadingDocument": "Laddar presentationen",
"PE.Controllers.Main.textLongName": "Ange namn (max 128 tecken).",
"PE.Controllers.Main.textNoLicenseTitle": "%1 anslutningsbegränsning", "PE.Controllers.Main.textNoLicenseTitle": "%1 anslutningsbegränsning",
"PE.Controllers.Main.textPaidFeature": "Betald funktion", "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.textShape": "Form",
"PE.Controllers.Main.textStrict": "Strikt läge", "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.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.titleLicenseExp": "Licensen har gått ut",
"PE.Controllers.Main.titleServerVersion": "Editor uppdaterad", "PE.Controllers.Main.titleServerVersion": "Editor uppdaterad",
"PE.Controllers.Main.txtAddFirstSlide": "Klicka för att lägga till den första bilden", "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.txtArt": "Din text här",
"PE.Controllers.Main.txtBasicShapes": "Former", "PE.Controllers.Main.txtBasicShapes": "Former",
"PE.Controllers.Main.txtButtons": "Knappar", "PE.Controllers.Main.txtButtons": "Knappar",
"PE.Controllers.Main.txtCallouts": "Pratbubbla",
"PE.Controllers.Main.txtCharts": "Diagram", "PE.Controllers.Main.txtCharts": "Diagram",
"PE.Controllers.Main.txtClipArt": "ClipArt",
"PE.Controllers.Main.txtDateTime": "Datum och tid", "PE.Controllers.Main.txtDateTime": "Datum och tid",
"PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Diagramtitel", "PE.Controllers.Main.txtDiagramTitle": "Diagramtitel",
"PE.Controllers.Main.txtEditingMode": "Ställ in redigeringsläge...", "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.txtFiguredArrows": "Figurpilar",
"PE.Controllers.Main.txtFooter": "Sidfot", "PE.Controllers.Main.txtFooter": "Sidfot",
"PE.Controllers.Main.txtHeader": "Sidhuvud", "PE.Controllers.Main.txtHeader": "Sidhuvud",
@ -351,9 +486,16 @@
"PE.Controllers.Main.txtMath": "Matte", "PE.Controllers.Main.txtMath": "Matte",
"PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtMedia": "Media",
"PE.Controllers.Main.txtNeedSynchronize": "Du har uppdateringar", "PE.Controllers.Main.txtNeedSynchronize": "Du har uppdateringar",
"PE.Controllers.Main.txtNone": "ingen",
"PE.Controllers.Main.txtPicture": "Bild", "PE.Controllers.Main.txtPicture": "Bild",
"PE.Controllers.Main.txtRectangles": "Rektanglar", "PE.Controllers.Main.txtRectangles": "Rektanglar",
"PE.Controllers.Main.txtSeries": "Serier", "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_actionButtonBackPrevious": "Tillbaka eller föregående knapp",
"PE.Controllers.Main.txtShape_actionButtonBeginning": "Startknapp", "PE.Controllers.Main.txtShape_actionButtonBeginning": "Startknapp",
"PE.Controllers.Main.txtShape_actionButtonBlank": "Tömknapp", "PE.Controllers.Main.txtShape_actionButtonBlank": "Tömknapp",
@ -367,11 +509,26 @@
"PE.Controllers.Main.txtShape_actionButtonReturn": "Återknapp", "PE.Controllers.Main.txtShape_actionButtonReturn": "Återknapp",
"PE.Controllers.Main.txtShape_actionButtonSound": "Ljudknapp", "PE.Controllers.Main.txtShape_actionButtonSound": "Ljudknapp",
"PE.Controllers.Main.txtShape_arc": "Båge", "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_bentConnector5": "Armbågskontakt",
"PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Armbågspilkontakt", "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Armbågspilkontakt",
"PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Armbågsdubbelpil", "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_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_cloud": "Moln",
"PE.Controllers.Main.txtShape_cloudCallout": "Pratbubbla moln",
"PE.Controllers.Main.txtShape_corner": "Hörn", "PE.Controllers.Main.txtShape_corner": "Hörn",
"PE.Controllers.Main.txtShape_cube": "Kub", "PE.Controllers.Main.txtShape_cube": "Kub",
"PE.Controllers.Main.txtShape_curvedConnector3": "Böjd anslutning", "PE.Controllers.Main.txtShape_curvedConnector3": "Böjd anslutning",
@ -385,8 +542,13 @@
"PE.Controllers.Main.txtShape_diagStripe": "Diagonal rand", "PE.Controllers.Main.txtShape_diagStripe": "Diagonal rand",
"PE.Controllers.Main.txtShape_diamond": "Diamant", "PE.Controllers.Main.txtShape_diamond": "Diamant",
"PE.Controllers.Main.txtShape_dodecagon": "Dodecagon", "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_downArrow": "Nedåtpil",
"PE.Controllers.Main.txtShape_downArrowCallout": "Pratbubbla nedåtpil",
"PE.Controllers.Main.txtShape_ellipse": "Ellips", "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_flowChartAlternateProcess": "Födesschema: Alternativ process",
"PE.Controllers.Main.txtShape_flowChartCollate": "Flödesschema: Collate", "PE.Controllers.Main.txtShape_flowChartCollate": "Flödesschema: Collate",
"PE.Controllers.Main.txtShape_flowChartConnector": "Flödesschema: Anslutning", "PE.Controllers.Main.txtShape_flowChartConnector": "Flödesschema: Anslutning",
@ -426,7 +588,13 @@
"PE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1", "PE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1",
"PE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2", "PE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2",
"PE.Controllers.Main.txtShape_leftArrow": "Vänsterpil", "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_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_lightningBolt": "Blixt",
"PE.Controllers.Main.txtShape_line": "Linje", "PE.Controllers.Main.txtShape_line": "Linje",
"PE.Controllers.Main.txtShape_lineWithArrow": "Pil", "PE.Controllers.Main.txtShape_lineWithArrow": "Pil",
@ -439,6 +607,7 @@
"PE.Controllers.Main.txtShape_mathPlus": "Plus", "PE.Controllers.Main.txtShape_mathPlus": "Plus",
"PE.Controllers.Main.txtShape_moon": "Måne", "PE.Controllers.Main.txtShape_moon": "Måne",
"PE.Controllers.Main.txtShape_noSmoking": "\"Ingen\" symbol", "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_octagon": "Oktagon",
"PE.Controllers.Main.txtShape_parallelogram": "Parallellogram", "PE.Controllers.Main.txtShape_parallelogram": "Parallellogram",
"PE.Controllers.Main.txtShape_pentagon": "Pentagon", "PE.Controllers.Main.txtShape_pentagon": "Pentagon",
@ -448,26 +617,50 @@
"PE.Controllers.Main.txtShape_polyline1": "Klotter", "PE.Controllers.Main.txtShape_polyline1": "Klotter",
"PE.Controllers.Main.txtShape_polyline2": "Fri form", "PE.Controllers.Main.txtShape_polyline2": "Fri form",
"PE.Controllers.Main.txtShape_quadArrow": "Rundad rektangel", "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_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_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_round1Rect": "Rektangel med ett rundat hörn",
"PE.Controllers.Main.txtShape_round2DiagRect": "Rektangel med rundade hörn diagonalt", "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_round2SameRect": "Rektangel med rundade hörn samma sida",
"PE.Controllers.Main.txtShape_roundRect": "Rektangel med avrundade hörn", "PE.Controllers.Main.txtShape_roundRect": "Rektangel med avrundade hörn",
"PE.Controllers.Main.txtShape_rtTriangle": "Höger triangel", "PE.Controllers.Main.txtShape_rtTriangle": "Höger triangel",
"PE.Controllers.Main.txtShape_smileyFace": "Glad gubbe", "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_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_stripedRightArrow": "Genomstruken högerpil",
"PE.Controllers.Main.txtShape_sun": "Sol", "PE.Controllers.Main.txtShape_sun": "Sol",
"PE.Controllers.Main.txtShape_teardrop": "Tår", "PE.Controllers.Main.txtShape_teardrop": "Tår",
"PE.Controllers.Main.txtShape_textRect": "Textruta", "PE.Controllers.Main.txtShape_textRect": "Textruta",
"PE.Controllers.Main.txtShape_trapezoid": "Trapes",
"PE.Controllers.Main.txtShape_triangle": "Triangel", "PE.Controllers.Main.txtShape_triangle": "Triangel",
"PE.Controllers.Main.txtShape_upArrow": "Pil upp", "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_upDownArrow": "Upp-Ner pil",
"PE.Controllers.Main.txtShape_uturnArrow": "U-sväng pil", "PE.Controllers.Main.txtShape_uturnArrow": "U-sväng pil",
"PE.Controllers.Main.txtShape_verticalScroll": "Vertikal rullning", "PE.Controllers.Main.txtShape_verticalScroll": "Vertikal rullning",
"PE.Controllers.Main.txtShape_wave": "Våg", "PE.Controllers.Main.txtShape_wave": "Våg",
"PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout", "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.txtSldLtTBlank": "Töm",
"PE.Controllers.Main.txtSldLtTChart": "Diagram", "PE.Controllers.Main.txtSldLtTChart": "Diagram",
"PE.Controllers.Main.txtSldLtTChartAndTx": "Diagram och text", "PE.Controllers.Main.txtSldLtTChartAndTx": "Diagram och text",
@ -509,7 +702,9 @@
"PE.Controllers.Main.txtSlideText": "Bildtext", "PE.Controllers.Main.txtSlideText": "Bildtext",
"PE.Controllers.Main.txtSlideTitle": "Titel", "PE.Controllers.Main.txtSlideTitle": "Titel",
"PE.Controllers.Main.txtStarsRibbons": "Stjärnor & banner", "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_blank": "Töm",
"PE.Controllers.Main.txtTheme_classic": "Klassisk",
"PE.Controllers.Main.txtTheme_corner": "Hörn", "PE.Controllers.Main.txtTheme_corner": "Hörn",
"PE.Controllers.Main.txtTheme_dotted": "Prickad", "PE.Controllers.Main.txtTheme_dotted": "Prickad",
"PE.Controllers.Main.txtTheme_green": "Grön", "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.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.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.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.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.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.", "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_ArrowL": "Vänster pil ovanför",
"PE.Controllers.Toolbar.txtAccent_ArrowR": "Högerriktad pil ovanför", "PE.Controllers.Toolbar.txtAccent_ArrowR": "Högerriktad pil ovanför",
"PE.Controllers.Toolbar.txtAccent_Bar": "Stapel", "PE.Controllers.Toolbar.txtAccent_Bar": "Stapel",
"PE.Controllers.Toolbar.txtAccent_BarBot": "Underbar",
"PE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", "PE.Controllers.Toolbar.txtAccent_BarTop": "Overbar",
"PE.Controllers.Toolbar.txtAccent_BorderBox": "Boxad formel (med hållare)", "PE.Controllers.Toolbar.txtAccent_BorderBox": "Boxad formel (med hållare)",
"PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxad formel (exempel)", "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxad formel (exempel)",
"PE.Controllers.Toolbar.txtAccent_Check": "Markera", "PE.Controllers.Toolbar.txtAccent_Check": "Markera",
"PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace",
"PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Oberbrace", "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Oberbrace",
"PE.Controllers.Toolbar.txtAccent_Custom_1": "Vektor A", "PE.Controllers.Toolbar.txtAccent_Custom_1": "Vektor A",
"PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC med overbar", "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_DDDot": "Trippel punkt",
"PE.Controllers.Toolbar.txtAccent_DDot": "Dubbelpunkt", "PE.Controllers.Toolbar.txtAccent_DDot": "Dubbelpunkt",
"PE.Controllers.Toolbar.txtAccent_Dot": "Punkt", "PE.Controllers.Toolbar.txtAccent_Dot": "Punkt",
"PE.Controllers.Toolbar.txtAccent_DoubleBar": "Dubbel overbar",
"PE.Controllers.Toolbar.txtAccent_Grave": "Grav", "PE.Controllers.Toolbar.txtAccent_Grave": "Grav",
"PE.Controllers.Toolbar.txtAccent_GroupBot": "Gruppera tecken under", "PE.Controllers.Toolbar.txtAccent_GroupBot": "Gruppera tecken under",
"PE.Controllers.Toolbar.txtAccent_GroupTop": "Gruppera tecken ovanför", "PE.Controllers.Toolbar.txtAccent_GroupTop": "Gruppera tecken ovanför",
"PE.Controllers.Toolbar.txtAccent_HarpoonL": "Vänster harpun 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_HarpoonR": "Högerriktad harpunpil ovanför",
"PE.Controllers.Toolbar.txtAccent_Hat": "Hatt", "PE.Controllers.Toolbar.txtAccent_Hat": "Hatt",
"PE.Controllers.Toolbar.txtAccent_Smile": "Kort",
"PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"PE.Controllers.Toolbar.txtBracket_Angle": "Parenteser", "PE.Controllers.Toolbar.txtBracket_Angle": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Parentes med avgränsare", "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": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Parentes med avgränsare", "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Parentes med avgränsare",
"PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Enkel gaffling", "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_1": "Fall (två villkor)",
"PE.Controllers.Toolbar.txtBracket_Custom_2": "Fall (tre villkor)", "PE.Controllers.Toolbar.txtBracket_Custom_2": "Fall (tre villkor)",
"PE.Controllers.Toolbar.txtBracket_Custom_3": "Stapla objekt", "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_6": "Binomial koefficient",
"PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial koefficient", "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial koefficient",
"PE.Controllers.Toolbar.txtBracket_Line": "Parenteser", "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": "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": "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": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentes med avgränsare", "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": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Parenteser", "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "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_Square_OpenOpen": "Parenteser",
"PE.Controllers.Toolbar.txtBracket_SquareDouble": "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": "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.txtFractionDiagonal": "Skev fraktion",
"PE.Controllers.Toolbar.txtFractionDifferential_1": "Differentiell", "PE.Controllers.Toolbar.txtFractionDifferential_1": "Differentiell",
"PE.Controllers.Toolbar.txtFractionDifferential_2": "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_Sinh": "Hyperboliska inverterad sine funktion",
"PE.Controllers.Toolbar.txtFunction_1_Tan": "Inverterad tangent funktion", "PE.Controllers.Toolbar.txtFunction_1_Tan": "Inverterad tangent funktion",
"PE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperboliska 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_Cosh": "Hyperboliska cosine funktion",
"PE.Controllers.Toolbar.txtFunction_Cot": "Cotangens funktion",
"PE.Controllers.Toolbar.txtFunction_Coth": "Hyperboliska cotangent 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_Csch": "Hyperboliska cosekanten funktion",
"PE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", "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_Custom_3": "Tangent formel",
"PE.Controllers.Toolbar.txtFunction_Sec": "Sekant funktion", "PE.Controllers.Toolbar.txtFunction_Sec": "Sekant funktion",
"PE.Controllers.Toolbar.txtFunction_Sech": "Hyperboliska secant 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_3": "Summering",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt", "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Koppla ihop", "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": "Genomskärning",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Genomskärning", "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Genomskärning",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Genomskärning", "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Genomskärning",
@ -701,16 +927,28 @@
"PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritm", "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritm",
"PE.Controllers.Toolbar.txtLimitLog_Max": "Max", "PE.Controllers.Toolbar.txtLimitLog_Max": "Max",
"PE.Controllers.Toolbar.txtLimitLog_Min": "Minst", "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_DLineBracket": "Tom matris med parenteser",
"PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "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_RoundBracket": "Tom matris med parenteser",
"PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "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_Baseline": "Baslinjeprickar",
"PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Prickar i mitten", "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Prickar i mitten",
"PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonala punkter", "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonala punkter",
"PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertikala punkter", "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertikala punkter",
"PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Gles matris", "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Gles matris",
"PE.Controllers.Toolbar.txtMatrix_Flat_Square": "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_Bot": "Höger vänsterpil under",
"PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Höger-vänster pil ovanför", "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Höger-vänster pil ovanför",
"PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Vänsterpil under", "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_Bot": "Högerriktad pil nedanför",
"PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Högerriktad pil ovanför", "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Högerriktad pil ovanför",
"PE.Controllers.Toolbar.txtOperator_ColonEquals": "Kolon lika med", "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_Custom_2": "Delta-utbyten",
"PE.Controllers.Toolbar.txtOperator_Definition": "Lika med enligt definition", "PE.Controllers.Toolbar.txtOperator_Definition": "Lika med enligt definition",
"PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta lika med", "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta lika med",
@ -743,6 +982,7 @@
"PE.Controllers.Toolbar.txtScriptCustom_4": "Skript", "PE.Controllers.Toolbar.txtScriptCustom_4": "Skript",
"PE.Controllers.Toolbar.txtScriptSub": "Nedsänkt", "PE.Controllers.Toolbar.txtScriptSub": "Nedsänkt",
"PE.Controllers.Toolbar.txtScriptSubSup": "Nedsänkt-upphöjd", "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.txtScriptSup": "Upphöjd",
"PE.Controllers.Toolbar.txtSymbol_about": "Ungefär", "PE.Controllers.Toolbar.txtSymbol_about": "Ungefär",
"PE.Controllers.Toolbar.txtSymbol_additional": "Komplettera", "PE.Controllers.Toolbar.txtSymbol_additional": "Komplettera",
@ -750,10 +990,14 @@
"PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", "PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa",
"PE.Controllers.Toolbar.txtSymbol_approx": "Nästa lika med", "PE.Controllers.Toolbar.txtSymbol_approx": "Nästa lika med",
"PE.Controllers.Toolbar.txtSymbol_ast": "Asterisk operator", "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_cap": "Genomskärning",
"PE.Controllers.Toolbar.txtSymbol_cbrt": "Kubikrot", "PE.Controllers.Toolbar.txtSymbol_cbrt": "Kubikrot",
"PE.Controllers.Toolbar.txtSymbol_cdots": "Horisontell elips i mitten", "PE.Controllers.Toolbar.txtSymbol_cdots": "Horisontell elips i mitten",
"PE.Controllers.Toolbar.txtSymbol_celsius": "Grader celsius", "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_cong": "Ungefär lika med",
"PE.Controllers.Toolbar.txtSymbol_cup": "Koppla ihop", "PE.Controllers.Toolbar.txtSymbol_cup": "Koppla ihop",
"PE.Controllers.Toolbar.txtSymbol_ddots": "Ner höger diagonal ellips", "PE.Controllers.Toolbar.txtSymbol_ddots": "Ner höger diagonal ellips",
@ -781,6 +1025,7 @@
"PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa",
"PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda",
"PE.Controllers.Toolbar.txtSymbol_leftarrow": "Vänsterpil", "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_leq": "Mindre än eller lika med",
"PE.Controllers.Toolbar.txtSymbol_less": "Mindre än", "PE.Controllers.Toolbar.txtSymbol_less": "Mindre än",
"PE.Controllers.Toolbar.txtSymbol_ll": "Mycket mindre än", "PE.Controllers.Toolbar.txtSymbol_ll": "Mycket mindre än",
@ -805,12 +1050,14 @@
"PE.Controllers.Toolbar.txtSymbol_psi": "Psi", "PE.Controllers.Toolbar.txtSymbol_psi": "Psi",
"PE.Controllers.Toolbar.txtSymbol_qdrt": "Fjärde roten", "PE.Controllers.Toolbar.txtSymbol_qdrt": "Fjärde roten",
"PE.Controllers.Toolbar.txtSymbol_qed": "Slut på bevis", "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_rho": "Rho",
"PE.Controllers.Toolbar.txtSymbol_rightarrow": "Högerpil", "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Högerpil",
"PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma",
"PE.Controllers.Toolbar.txtSymbol_sqrt": "Radikal skylt", "PE.Controllers.Toolbar.txtSymbol_sqrt": "Radikal skylt",
"PE.Controllers.Toolbar.txtSymbol_tau": "Tau", "PE.Controllers.Toolbar.txtSymbol_tau": "Tau",
"PE.Controllers.Toolbar.txtSymbol_therefore": "Därför", "PE.Controllers.Toolbar.txtSymbol_therefore": "Därför",
"PE.Controllers.Toolbar.txtSymbol_theta": "Theta",
"PE.Controllers.Toolbar.txtSymbol_times": "Multiplikationstecken", "PE.Controllers.Toolbar.txtSymbol_times": "Multiplikationstecken",
"PE.Controllers.Toolbar.txtSymbol_uparrow": "Pil upp", "PE.Controllers.Toolbar.txtSymbol_uparrow": "Pil upp",
"PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon",
@ -819,8 +1066,10 @@
"PE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant", "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant",
"PE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant", "PE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant",
"PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma 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_vdots": "Vertikal ellips",
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"PE.Controllers.Viewport.textFitPage": "Anpassa till bild", "PE.Controllers.Viewport.textFitPage": "Anpassa till bild",
"PE.Controllers.Viewport.textFitWidth": "Anpassa till bredd", "PE.Controllers.Viewport.textFitWidth": "Anpassa till bredd",
"PE.Views.ChartSettings.textAdvanced": "Visa avancerade inställningar", "PE.Views.ChartSettings.textAdvanced": "Visa avancerade inställningar",
@ -905,6 +1154,7 @@
"PE.Views.DocumentHolder.textFlipH": "Vänd horisontellt", "PE.Views.DocumentHolder.textFlipH": "Vänd horisontellt",
"PE.Views.DocumentHolder.textFlipV": "Vänd vertikalt", "PE.Views.DocumentHolder.textFlipV": "Vänd vertikalt",
"PE.Views.DocumentHolder.textFromFile": "Från fil", "PE.Views.DocumentHolder.textFromFile": "Från fil",
"PE.Views.DocumentHolder.textFromStorage": "Från lagring",
"PE.Views.DocumentHolder.textFromUrl": "Från URL", "PE.Views.DocumentHolder.textFromUrl": "Från URL",
"PE.Views.DocumentHolder.textNextPage": "Nästa bild", "PE.Views.DocumentHolder.textNextPage": "Nästa bild",
"PE.Views.DocumentHolder.textPaste": "Klistra in", "PE.Views.DocumentHolder.textPaste": "Klistra in",
@ -987,6 +1237,7 @@
"PE.Views.DocumentHolder.txtMatrixAlign": "Matrisjustering", "PE.Views.DocumentHolder.txtMatrixAlign": "Matrisjustering",
"PE.Views.DocumentHolder.txtNewSlide": "Ny bild", "PE.Views.DocumentHolder.txtNewSlide": "Ny bild",
"PE.Views.DocumentHolder.txtOverbar": "Stapel över text", "PE.Views.DocumentHolder.txtOverbar": "Stapel över text",
"PE.Views.DocumentHolder.txtPasteDestFormat": "Använd destinationstema",
"PE.Views.DocumentHolder.txtPastePicture": "Bild", "PE.Views.DocumentHolder.txtPastePicture": "Bild",
"PE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll ursprungsformatering", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll ursprungsformatering",
"PE.Views.DocumentHolder.txtPressLink": "Tryck CTRL och klicka på länken", "PE.Views.DocumentHolder.txtPressLink": "Tryck CTRL och klicka på länken",
@ -1035,6 +1286,7 @@
"PE.Views.FileMenu.btnCreateNewCaption": "Skapa ny", "PE.Views.FileMenu.btnCreateNewCaption": "Skapa ny",
"PE.Views.FileMenu.btnDownloadCaption": "Ladda ner som...", "PE.Views.FileMenu.btnDownloadCaption": "Ladda ner som...",
"PE.Views.FileMenu.btnHelpCaption": "Hjälp...", "PE.Views.FileMenu.btnHelpCaption": "Hjälp...",
"PE.Views.FileMenu.btnHistoryCaption": "Versionshistorik",
"PE.Views.FileMenu.btnInfoCaption": "Presentation info...", "PE.Views.FileMenu.btnInfoCaption": "Presentation info...",
"PE.Views.FileMenu.btnPrintCaption": "Skriv ut", "PE.Views.FileMenu.btnPrintCaption": "Skriv ut",
"PE.Views.FileMenu.btnProtectCaption": "Skydda", "PE.Views.FileMenu.btnProtectCaption": "Skydda",
@ -1084,15 +1336,20 @@
"PE.Views.FileMenuPanels.Settings.strAlignGuides": "Aktivera justeringsguider", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Aktivera justeringsguider",
"PE.Views.FileMenuPanels.Settings.strAutoRecover": "Aktivera automatisk återställning", "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Aktivera automatisk återställning",
"PE.Views.FileMenuPanels.Settings.strAutosave": "Aktivera spara automatiskt", "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.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.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom",
"PE.Views.FileMenuPanels.Settings.strFast": "Snabb", "PE.Views.FileMenuPanels.Settings.strFast": "Snabb",
"PE.Views.FileMenuPanels.Settings.strFontRender": "Fontförslag", "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.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.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.strShowChanges": "Samarbeta i realtid",
"PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktivera stavningskontroll", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktivera stavningskontroll",
"PE.Views.FileMenuPanels.Settings.strStrict": "Strikt", "PE.Views.FileMenuPanels.Settings.strStrict": "Strikt",
"PE.Views.FileMenuPanels.Settings.strTheme": "Gränssnittstema",
"PE.Views.FileMenuPanels.Settings.strUnit": "Måttenhet", "PE.Views.FileMenuPanels.Settings.strUnit": "Måttenhet",
"PE.Views.FileMenuPanels.Settings.strZoom": "Standard zoomvärde", "PE.Views.FileMenuPanels.Settings.strZoom": "Standard zoomvärde",
"PE.Views.FileMenuPanels.Settings.text10Minutes": "Var 10:e minut", "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.textForceSave": "Spara till server",
"PE.Views.FileMenuPanels.Settings.textMinute": "Varje minut", "PE.Views.FileMenuPanels.Settings.textMinute": "Varje minut",
"PE.Views.FileMenuPanels.Settings.txtAll": "Visa alla", "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.txtCacheMode": "Standard cache-läge",
"PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Anpassa till bild", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Anpassa till bild",
@ -1115,11 +1373,19 @@
"PE.Views.FileMenuPanels.Settings.txtLast": "Visa senaste", "PE.Views.FileMenuPanels.Settings.txtLast": "Visa senaste",
"PE.Views.FileMenuPanels.Settings.txtMac": "som OS X", "PE.Views.FileMenuPanels.Settings.txtMac": "som OS X",
"PE.Views.FileMenuPanels.Settings.txtNative": "Orginal", "PE.Views.FileMenuPanels.Settings.txtNative": "Orginal",
"PE.Views.FileMenuPanels.Settings.txtProofing": "Korrektur",
"PE.Views.FileMenuPanels.Settings.txtPt": "Punkt", "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.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.FileMenuPanels.Settings.txtWin": "som Windows",
"PE.Views.HeaderFooterDialog.applyAllText": "Tillämpa på alla", "PE.Views.HeaderFooterDialog.applyAllText": "Tillämpa på alla",
"PE.Views.HeaderFooterDialog.applyText": "Tillämpa", "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.notcriticalErrorTitle": "Varning",
"PE.Views.HeaderFooterDialog.textDateTime": "Datum och tid", "PE.Views.HeaderFooterDialog.textDateTime": "Datum och tid",
"PE.Views.HeaderFooterDialog.textFixed": "Fast", "PE.Views.HeaderFooterDialog.textFixed": "Fast",
@ -1148,6 +1414,7 @@
"PE.Views.HyperlinkSettingsDialog.txtNext": "Nästa bild", "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.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.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.HyperlinkSettingsDialog.txtSlide": "Bild",
"PE.Views.ImageSettings.textAdvanced": "Visa avancerade inställningar", "PE.Views.ImageSettings.textAdvanced": "Visa avancerade inställningar",
"PE.Views.ImageSettings.textCrop": "Beskär", "PE.Views.ImageSettings.textCrop": "Beskär",
@ -1158,6 +1425,7 @@
"PE.Views.ImageSettings.textFitSlide": "Anpassa till bild", "PE.Views.ImageSettings.textFitSlide": "Anpassa till bild",
"PE.Views.ImageSettings.textFlip": "Vänd", "PE.Views.ImageSettings.textFlip": "Vänd",
"PE.Views.ImageSettings.textFromFile": "Från fil", "PE.Views.ImageSettings.textFromFile": "Från fil",
"PE.Views.ImageSettings.textFromStorage": "Från lagring",
"PE.Views.ImageSettings.textFromUrl": "Från URL", "PE.Views.ImageSettings.textFromUrl": "Från URL",
"PE.Views.ImageSettings.textHeight": "Höjd", "PE.Views.ImageSettings.textHeight": "Höjd",
"PE.Views.ImageSettings.textHint270": "Rotera 90° moturs", "PE.Views.ImageSettings.textHint270": "Rotera 90° moturs",
@ -1196,7 +1464,9 @@
"PE.Views.LeftMenu.tipSupport": "Feedback & support", "PE.Views.LeftMenu.tipSupport": "Feedback & support",
"PE.Views.LeftMenu.tipTitles": "Titlar", "PE.Views.LeftMenu.tipTitles": "Titlar",
"PE.Views.LeftMenu.txtDeveloper": "Utvecklarläge", "PE.Views.LeftMenu.txtDeveloper": "Utvecklarläge",
"PE.Views.LeftMenu.txtLimit": "Begränsad åtkomst",
"PE.Views.LeftMenu.txtTrial": "TESTLÄGE", "PE.Views.LeftMenu.txtTrial": "TESTLÄGE",
"PE.Views.LeftMenu.txtTrialDev": "Testutvecklarläge",
"PE.Views.ParagraphSettings.strLineHeight": "Radavstånd", "PE.Views.ParagraphSettings.strLineHeight": "Radavstånd",
"PE.Views.ParagraphSettings.strParagraphSpacing": "Styckets avstånd", "PE.Views.ParagraphSettings.strParagraphSpacing": "Styckets avstånd",
"PE.Views.ParagraphSettings.strSpacingAfter": "Efter", "PE.Views.ParagraphSettings.strSpacingAfter": "Efter",
@ -1264,12 +1534,14 @@
"PE.Views.ShapeSettings.strTransparency": "Opacitet", "PE.Views.ShapeSettings.strTransparency": "Opacitet",
"PE.Views.ShapeSettings.strType": "Typ", "PE.Views.ShapeSettings.strType": "Typ",
"PE.Views.ShapeSettings.textAdvanced": "Visa avancerade inställningar", "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.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.textColor": "Färgfyllnad",
"PE.Views.ShapeSettings.textDirection": "Riktning", "PE.Views.ShapeSettings.textDirection": "Riktning",
"PE.Views.ShapeSettings.textEmptyPattern": "Inget mönster", "PE.Views.ShapeSettings.textEmptyPattern": "Inget mönster",
"PE.Views.ShapeSettings.textFlip": "Vänd", "PE.Views.ShapeSettings.textFlip": "Vänd",
"PE.Views.ShapeSettings.textFromFile": "Från fil", "PE.Views.ShapeSettings.textFromFile": "Från fil",
"PE.Views.ShapeSettings.textFromStorage": "Från lagring",
"PE.Views.ShapeSettings.textFromUrl": "Från URL", "PE.Views.ShapeSettings.textFromUrl": "Från URL",
"PE.Views.ShapeSettings.textGradient": "Fyllning", "PE.Views.ShapeSettings.textGradient": "Fyllning",
"PE.Views.ShapeSettings.textGradientFill": "Fyllning", "PE.Views.ShapeSettings.textGradientFill": "Fyllning",
@ -1281,14 +1553,18 @@
"PE.Views.ShapeSettings.textLinear": "Linjär", "PE.Views.ShapeSettings.textLinear": "Linjär",
"PE.Views.ShapeSettings.textNoFill": "Ingen fyllning", "PE.Views.ShapeSettings.textNoFill": "Ingen fyllning",
"PE.Views.ShapeSettings.textPatternFill": "Mönster", "PE.Views.ShapeSettings.textPatternFill": "Mönster",
"PE.Views.ShapeSettings.textPosition": "Position",
"PE.Views.ShapeSettings.textRadial": "Radiell", "PE.Views.ShapeSettings.textRadial": "Radiell",
"PE.Views.ShapeSettings.textRotate90": "Rotera 90°", "PE.Views.ShapeSettings.textRotate90": "Rotera 90°",
"PE.Views.ShapeSettings.textRotation": "Rotation", "PE.Views.ShapeSettings.textRotation": "Rotation",
"PE.Views.ShapeSettings.textSelectImage": "Välj bild",
"PE.Views.ShapeSettings.textSelectTexture": "Välj", "PE.Views.ShapeSettings.textSelectTexture": "Välj",
"PE.Views.ShapeSettings.textStretch": "Sträck", "PE.Views.ShapeSettings.textStretch": "Sträck",
"PE.Views.ShapeSettings.textStyle": "Stil", "PE.Views.ShapeSettings.textStyle": "Stil",
"PE.Views.ShapeSettings.textTexture": "Från mönster", "PE.Views.ShapeSettings.textTexture": "Från mönster",
"PE.Views.ShapeSettings.textTile": "Bricka", "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.txtBrownPaper": "Brunt papper",
"PE.Views.ShapeSettings.txtCanvas": "Duk", "PE.Views.ShapeSettings.txtCanvas": "Duk",
"PE.Views.ShapeSettings.txtCarton": "Kartong", "PE.Views.ShapeSettings.txtCarton": "Kartong",
@ -1309,8 +1585,12 @@
"PE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel",
"PE.Views.ShapeSettingsAdvanced.textAngle": "Vinkel", "PE.Views.ShapeSettingsAdvanced.textAngle": "Vinkel",
"PE.Views.ShapeSettingsAdvanced.textArrows": "Pilar", "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.textBevel": "Fasning",
"PE.Views.ShapeSettingsAdvanced.textBottom": "Nederst", "PE.Views.ShapeSettingsAdvanced.textBottom": "Nederst",
"PE.Views.ShapeSettingsAdvanced.textCapType": "Typ av skiftläge",
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Antal kolumner", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Antal kolumner",
"PE.Views.ShapeSettingsAdvanced.textEndSize": "Slutstorlek", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Slutstorlek",
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "Avslutningsstil", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Avslutningsstil",
@ -1323,9 +1603,12 @@
"PE.Views.ShapeSettingsAdvanced.textLeft": "Vänster", "PE.Views.ShapeSettingsAdvanced.textLeft": "Vänster",
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "Linjestil", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Linjestil",
"PE.Views.ShapeSettingsAdvanced.textMiter": "Miter", "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.textRight": "Höger",
"PE.Views.ShapeSettingsAdvanced.textRotation": "Rotation", "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotation",
"PE.Views.ShapeSettingsAdvanced.textRound": "Avrunda", "PE.Views.ShapeSettingsAdvanced.textRound": "Avrunda",
"PE.Views.ShapeSettingsAdvanced.textShrink": "Krymp text vid överflöd",
"PE.Views.ShapeSettingsAdvanced.textSize": "Storlek", "PE.Views.ShapeSettingsAdvanced.textSize": "Storlek",
"PE.Views.ShapeSettingsAdvanced.textSpacing": "Avstånd mellan kolumner", "PE.Views.ShapeSettingsAdvanced.textSpacing": "Avstånd mellan kolumner",
"PE.Views.ShapeSettingsAdvanced.textSquare": "Fyrkant", "PE.Views.ShapeSettingsAdvanced.textSquare": "Fyrkant",
@ -1345,6 +1628,7 @@
"PE.Views.SignatureSettings.strValid": "Giltiga signaturer", "PE.Views.SignatureSettings.strValid": "Giltiga signaturer",
"PE.Views.SignatureSettings.txtContinueEditing": "Redigera ändå", "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.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.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.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", "PE.Views.SlideSettings.strBackground": "Bakgrundsfärg",
@ -1358,18 +1642,24 @@
"PE.Views.SlideSettings.strPattern": "Mönster", "PE.Views.SlideSettings.strPattern": "Mönster",
"PE.Views.SlideSettings.strSlideNum": "Visa bildnummer", "PE.Views.SlideSettings.strSlideNum": "Visa bildnummer",
"PE.Views.SlideSettings.strStartOnClick": "Börja vid klick", "PE.Views.SlideSettings.strStartOnClick": "Börja vid klick",
"PE.Views.SlideSettings.strTransparency": "Opacitet",
"PE.Views.SlideSettings.textAdvanced": "Visa avancerade inställningar", "PE.Views.SlideSettings.textAdvanced": "Visa avancerade inställningar",
"PE.Views.SlideSettings.textAngle": "Vinkel",
"PE.Views.SlideSettings.textApplyAll": "Applicera på alla bilder", "PE.Views.SlideSettings.textApplyAll": "Applicera på alla bilder",
"PE.Views.SlideSettings.textBlack": "Genom svart",
"PE.Views.SlideSettings.textBottom": "Nederst", "PE.Views.SlideSettings.textBottom": "Nederst",
"PE.Views.SlideSettings.textBottomLeft": "Nederst vänster", "PE.Views.SlideSettings.textBottomLeft": "Nederst vänster",
"PE.Views.SlideSettings.textBottomRight": "Nederst höger", "PE.Views.SlideSettings.textBottomRight": "Nederst höger",
"PE.Views.SlideSettings.textClock": "Klocka",
"PE.Views.SlideSettings.textClockwise": "Medurs", "PE.Views.SlideSettings.textClockwise": "Medurs",
"PE.Views.SlideSettings.textColor": "Färgfyllnad", "PE.Views.SlideSettings.textColor": "Färgfyllnad",
"PE.Views.SlideSettings.textCounterclockwise": "Moturs", "PE.Views.SlideSettings.textCounterclockwise": "Moturs",
"PE.Views.SlideSettings.textCover": "Omslag",
"PE.Views.SlideSettings.textDirection": "Riktning", "PE.Views.SlideSettings.textDirection": "Riktning",
"PE.Views.SlideSettings.textEmptyPattern": "Inget mönster", "PE.Views.SlideSettings.textEmptyPattern": "Inget mönster",
"PE.Views.SlideSettings.textFade": "Fade", "PE.Views.SlideSettings.textFade": "Fade",
"PE.Views.SlideSettings.textFromFile": "Från fil", "PE.Views.SlideSettings.textFromFile": "Från fil",
"PE.Views.SlideSettings.textFromStorage": "Från lagring",
"PE.Views.SlideSettings.textFromUrl": "Från URL", "PE.Views.SlideSettings.textFromUrl": "Från URL",
"PE.Views.SlideSettings.textGradient": "Fyllning", "PE.Views.SlideSettings.textGradient": "Fyllning",
"PE.Views.SlideSettings.textGradientFill": "Fyllning", "PE.Views.SlideSettings.textGradientFill": "Fyllning",
@ -1381,12 +1671,14 @@
"PE.Views.SlideSettings.textNoFill": "Ingen fyllning", "PE.Views.SlideSettings.textNoFill": "Ingen fyllning",
"PE.Views.SlideSettings.textNone": "Inga", "PE.Views.SlideSettings.textNone": "Inga",
"PE.Views.SlideSettings.textPatternFill": "Mönster", "PE.Views.SlideSettings.textPatternFill": "Mönster",
"PE.Views.SlideSettings.textPosition": "Position",
"PE.Views.SlideSettings.textPreview": "Förhandsgranska", "PE.Views.SlideSettings.textPreview": "Förhandsgranska",
"PE.Views.SlideSettings.textPush": "Tryck", "PE.Views.SlideSettings.textPush": "Tryck",
"PE.Views.SlideSettings.textRadial": "Radiell", "PE.Views.SlideSettings.textRadial": "Radiell",
"PE.Views.SlideSettings.textReset": "Återställ ändringar", "PE.Views.SlideSettings.textReset": "Återställ ändringar",
"PE.Views.SlideSettings.textRight": "Höger", "PE.Views.SlideSettings.textRight": "Höger",
"PE.Views.SlideSettings.textSec": "s", "PE.Views.SlideSettings.textSec": "s",
"PE.Views.SlideSettings.textSelectImage": "Välj bild",
"PE.Views.SlideSettings.textSelectTexture": "Välj", "PE.Views.SlideSettings.textSelectTexture": "Välj",
"PE.Views.SlideSettings.textSmoothly": "Smoothly", "PE.Views.SlideSettings.textSmoothly": "Smoothly",
"PE.Views.SlideSettings.textSplit": "Dela", "PE.Views.SlideSettings.textSplit": "Dela",
@ -1397,6 +1689,7 @@
"PE.Views.SlideSettings.textTop": "Överst", "PE.Views.SlideSettings.textTop": "Överst",
"PE.Views.SlideSettings.textTopLeft": "Vänsterjustera i överkant", "PE.Views.SlideSettings.textTopLeft": "Vänsterjustera i överkant",
"PE.Views.SlideSettings.textTopRight": "Övre höger", "PE.Views.SlideSettings.textTopRight": "Övre höger",
"PE.Views.SlideSettings.textUnCover": "Avtäcka",
"PE.Views.SlideSettings.textVerticalIn": "Vertikal in", "PE.Views.SlideSettings.textVerticalIn": "Vertikal in",
"PE.Views.SlideSettings.textVerticalOut": "Vertikal ut", "PE.Views.SlideSettings.textVerticalOut": "Vertikal ut",
"PE.Views.SlideSettings.textWedge": "Kil", "PE.Views.SlideSettings.textWedge": "Kil",
@ -1405,6 +1698,8 @@
"PE.Views.SlideSettings.textZoomIn": "Zooma in", "PE.Views.SlideSettings.textZoomIn": "Zooma in",
"PE.Views.SlideSettings.textZoomOut": "Zooma ut", "PE.Views.SlideSettings.textZoomOut": "Zooma ut",
"PE.Views.SlideSettings.textZoomRotate": "Zooma och rotera", "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.txtBrownPaper": "Brunt papper",
"PE.Views.SlideSettings.txtCanvas": "Duk", "PE.Views.SlideSettings.txtCanvas": "Duk",
"PE.Views.SlideSettings.txtCarton": "Kartong", "PE.Views.SlideSettings.txtCarton": "Kartong",
@ -1425,15 +1720,18 @@
"PE.Views.SlideSizeSettings.textSlideSize": "Bild storlek", "PE.Views.SlideSizeSettings.textSlideSize": "Bild storlek",
"PE.Views.SlideSizeSettings.textTitle": "Bilde storlek inställningar", "PE.Views.SlideSizeSettings.textTitle": "Bilde storlek inställningar",
"PE.Views.SlideSizeSettings.textWidth": "Bredd", "PE.Views.SlideSizeSettings.textWidth": "Bredd",
"PE.Views.SlideSizeSettings.txt35": "35 mm diabilder",
"PE.Views.SlideSizeSettings.txtA3": "A3 Papper (297x420 mm)", "PE.Views.SlideSizeSettings.txtA3": "A3 Papper (297x420 mm)",
"PE.Views.SlideSizeSettings.txtA4": "A4 Papper (210x297 mm)", "PE.Views.SlideSizeSettings.txtA4": "A4 Papper (210x297 mm)",
"PE.Views.SlideSizeSettings.txtB4": "B4 (ICO) Papper (250x353 mm)", "PE.Views.SlideSizeSettings.txtB4": "B4 (ICO) Papper (250x353 mm)",
"PE.Views.SlideSizeSettings.txtB5": "B5 (ICO) Papper (176x250 mm)", "PE.Views.SlideSizeSettings.txtB5": "B5 (ICO) Papper (176x250 mm)",
"PE.Views.SlideSizeSettings.txtBanner": "Baner",
"PE.Views.SlideSizeSettings.txtCustom": "Anpassad", "PE.Views.SlideSizeSettings.txtCustom": "Anpassad",
"PE.Views.SlideSizeSettings.txtLedger": "Ledger Papper (11x17 in)", "PE.Views.SlideSizeSettings.txtLedger": "Ledger Papper (11x17 in)",
"PE.Views.SlideSizeSettings.txtLetter": "Letter Papper (8.5x11 in)", "PE.Views.SlideSizeSettings.txtLetter": "Letter Papper (8.5x11 in)",
"PE.Views.SlideSizeSettings.txtOverhead": "Overhead", "PE.Views.SlideSizeSettings.txtOverhead": "Overhead",
"PE.Views.SlideSizeSettings.txtStandard": "Standard (4:3)", "PE.Views.SlideSizeSettings.txtStandard": "Standard (4:3)",
"PE.Views.SlideSizeSettings.txtWidescreen": "Bredbild",
"PE.Views.Statusbar.goToPageText": "Gå till bild", "PE.Views.Statusbar.goToPageText": "Gå till bild",
"PE.Views.Statusbar.pageIndexText": "Bild {0} of {1}", "PE.Views.Statusbar.pageIndexText": "Bild {0} of {1}",
"PE.Views.Statusbar.textShowBegin": "Visa presentation från början", "PE.Views.Statusbar.textShowBegin": "Visa presentation från början",
@ -1464,6 +1762,7 @@
"PE.Views.TableSettings.splitCellTitleText": "Dela cell", "PE.Views.TableSettings.splitCellTitleText": "Dela cell",
"PE.Views.TableSettings.textAdvanced": "Visa avancerade inställningar", "PE.Views.TableSettings.textAdvanced": "Visa avancerade inställningar",
"PE.Views.TableSettings.textBackColor": "Bakgrundsfärg", "PE.Views.TableSettings.textBackColor": "Bakgrundsfärg",
"PE.Views.TableSettings.textBanded": "Banded",
"PE.Views.TableSettings.textBorderColor": "Färg", "PE.Views.TableSettings.textBorderColor": "Färg",
"PE.Views.TableSettings.textBorders": "Ramutseende", "PE.Views.TableSettings.textBorders": "Ramutseende",
"PE.Views.TableSettings.textCellSize": "Cell storlek", "PE.Views.TableSettings.textCellSize": "Cell storlek",
@ -1494,6 +1793,8 @@
"PE.Views.TableSettings.txtNoBorders": "Inga ramar", "PE.Views.TableSettings.txtNoBorders": "Inga ramar",
"PE.Views.TableSettings.txtTable_Accent": "Accent", "PE.Views.TableSettings.txtTable_Accent": "Accent",
"PE.Views.TableSettings.txtTable_DarkStyle": "Mörk stil", "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_NoGrid": "Ingen tabell",
"PE.Views.TableSettings.txtTable_NoStyle": "Ingen stil", "PE.Views.TableSettings.txtTable_NoStyle": "Ingen stil",
"PE.Views.TableSettings.txtTable_TableGrid": "Tabellnät", "PE.Views.TableSettings.txtTable_TableGrid": "Tabellnät",
@ -1520,6 +1821,7 @@
"PE.Views.TextArtSettings.strStroke": "Genomslag", "PE.Views.TextArtSettings.strStroke": "Genomslag",
"PE.Views.TextArtSettings.strTransparency": "Opacitet", "PE.Views.TextArtSettings.strTransparency": "Opacitet",
"PE.Views.TextArtSettings.strType": "Typ", "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.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.textColor": "Färgfyllnad",
"PE.Views.TextArtSettings.textDirection": "Riktning", "PE.Views.TextArtSettings.textDirection": "Riktning",
@ -1532,6 +1834,7 @@
"PE.Views.TextArtSettings.textLinear": "Linjär", "PE.Views.TextArtSettings.textLinear": "Linjär",
"PE.Views.TextArtSettings.textNoFill": "Ingen fyllning", "PE.Views.TextArtSettings.textNoFill": "Ingen fyllning",
"PE.Views.TextArtSettings.textPatternFill": "Mönster", "PE.Views.TextArtSettings.textPatternFill": "Mönster",
"PE.Views.TextArtSettings.textPosition": "Position",
"PE.Views.TextArtSettings.textRadial": "Radiell", "PE.Views.TextArtSettings.textRadial": "Radiell",
"PE.Views.TextArtSettings.textSelectTexture": "Välj", "PE.Views.TextArtSettings.textSelectTexture": "Välj",
"PE.Views.TextArtSettings.textStretch": "Sträck", "PE.Views.TextArtSettings.textStretch": "Sträck",
@ -1540,6 +1843,8 @@
"PE.Views.TextArtSettings.textTexture": "Från mönster", "PE.Views.TextArtSettings.textTexture": "Från mönster",
"PE.Views.TextArtSettings.textTile": "Bricka", "PE.Views.TextArtSettings.textTile": "Bricka",
"PE.Views.TextArtSettings.textTransform": "Omvandla", "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.txtBrownPaper": "Brunt papper",
"PE.Views.TextArtSettings.txtCanvas": "Duk", "PE.Views.TextArtSettings.txtCanvas": "Duk",
"PE.Views.TextArtSettings.txtCarton": "Kartong", "PE.Views.TextArtSettings.txtCarton": "Kartong",
@ -1571,13 +1876,19 @@
"PE.Views.Toolbar.capTabFile": "Arkiv", "PE.Views.Toolbar.capTabFile": "Arkiv",
"PE.Views.Toolbar.capTabHome": "Hem", "PE.Views.Toolbar.capTabHome": "Hem",
"PE.Views.Toolbar.capTabInsert": "Infoga", "PE.Views.Toolbar.capTabInsert": "Infoga",
"PE.Views.Toolbar.mniCapitalizeWords": "Stor bokstav varje ord",
"PE.Views.Toolbar.mniCustomTable": "Infoga egen tabell", "PE.Views.Toolbar.mniCustomTable": "Infoga egen tabell",
"PE.Views.Toolbar.mniImageFromFile": "Bild från fil", "PE.Views.Toolbar.mniImageFromFile": "Bild från fil",
"PE.Views.Toolbar.mniImageFromStorage": "Bild från lagring", "PE.Views.Toolbar.mniImageFromStorage": "Bild från lagring",
"PE.Views.Toolbar.mniImageFromUrl": "Bild från URL", "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.mniSlideAdvanced": "Avancerade inställningar",
"PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)", "PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)",
"PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)", "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.textAlignBottom": "Justera text till botten",
"PE.Views.Toolbar.textAlignCenter": "Centrera text", "PE.Views.Toolbar.textAlignCenter": "Centrera text",
"PE.Views.Toolbar.textAlignJust": "Justering", "PE.Views.Toolbar.textAlignJust": "Justering",
@ -1590,7 +1901,12 @@
"PE.Views.Toolbar.textArrangeForward": "Flytta framåt", "PE.Views.Toolbar.textArrangeForward": "Flytta framåt",
"PE.Views.Toolbar.textArrangeFront": "Flytta till förgrund", "PE.Views.Toolbar.textArrangeFront": "Flytta till förgrund",
"PE.Views.Toolbar.textBold": "Fet", "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.textItalic": "Kursiv",
"PE.Views.Toolbar.textListSettings": "Listinställningar",
"PE.Views.Toolbar.textNewColor": "Anpassad färg", "PE.Views.Toolbar.textNewColor": "Anpassad färg",
"PE.Views.Toolbar.textShapeAlignBottom": "Justera nederst", "PE.Views.Toolbar.textShapeAlignBottom": "Justera nederst",
"PE.Views.Toolbar.textShapeAlignCenter": "Centrera", "PE.Views.Toolbar.textShapeAlignCenter": "Centrera",
@ -1614,19 +1930,24 @@
"PE.Views.Toolbar.textUnderline": "Understrykning", "PE.Views.Toolbar.textUnderline": "Understrykning",
"PE.Views.Toolbar.tipAddSlide": "Lägg till ny bild", "PE.Views.Toolbar.tipAddSlide": "Lägg till ny bild",
"PE.Views.Toolbar.tipBack": "Tillbaka", "PE.Views.Toolbar.tipBack": "Tillbaka",
"PE.Views.Toolbar.tipChangeCase": "Ändra skiftläge",
"PE.Views.Toolbar.tipChangeChart": "Ändra diagramtyp", "PE.Views.Toolbar.tipChangeChart": "Ändra diagramtyp",
"PE.Views.Toolbar.tipChangeSlide": "Ändra bildlayout", "PE.Views.Toolbar.tipChangeSlide": "Ändra bildlayout",
"PE.Views.Toolbar.tipClearStyle": "Rensa stil", "PE.Views.Toolbar.tipClearStyle": "Rensa stil",
"PE.Views.Toolbar.tipColorSchemas": "Ändra färgschema", "PE.Views.Toolbar.tipColorSchemas": "Ändra färgschema",
"PE.Views.Toolbar.tipColumns": "Infoga kolumner",
"PE.Views.Toolbar.tipCopy": "Kopiera", "PE.Views.Toolbar.tipCopy": "Kopiera",
"PE.Views.Toolbar.tipCopyStyle": "Kopiera stil", "PE.Views.Toolbar.tipCopyStyle": "Kopiera stil",
"PE.Views.Toolbar.tipDateTime": "Infoga aktuellt datum och tid", "PE.Views.Toolbar.tipDateTime": "Infoga aktuellt datum och tid",
"PE.Views.Toolbar.tipDecFont": "Minska typsnittstorlek",
"PE.Views.Toolbar.tipDecPrLeft": "Minska indrag", "PE.Views.Toolbar.tipDecPrLeft": "Minska indrag",
"PE.Views.Toolbar.tipEditHeader": "Redigera foten", "PE.Views.Toolbar.tipEditHeader": "Redigera foten",
"PE.Views.Toolbar.tipFontColor": "Fontfärg", "PE.Views.Toolbar.tipFontColor": "Fontfärg",
"PE.Views.Toolbar.tipFontName": "Font", "PE.Views.Toolbar.tipFontName": "Font",
"PE.Views.Toolbar.tipFontSize": "Fontstorlek", "PE.Views.Toolbar.tipFontSize": "Fontstorlek",
"PE.Views.Toolbar.tipHAligh": "Horisontell justering", "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.tipIncPrLeft": "Öka indrag",
"PE.Views.Toolbar.tipInsertAudio": "Infoga ljud", "PE.Views.Toolbar.tipInsertAudio": "Infoga ljud",
"PE.Views.Toolbar.tipInsertChart": "Infoga diagram", "PE.Views.Toolbar.tipInsertChart": "Infoga diagram",
@ -1670,10 +1991,15 @@
"PE.Views.Toolbar.txtScheme16": "Papper", "PE.Views.Toolbar.txtScheme16": "Papper",
"PE.Views.Toolbar.txtScheme17": "Solstånd", "PE.Views.Toolbar.txtScheme17": "Solstånd",
"PE.Views.Toolbar.txtScheme18": "Teknik", "PE.Views.Toolbar.txtScheme18": "Teknik",
"PE.Views.Toolbar.txtScheme19": "Vandra",
"PE.Views.Toolbar.txtScheme2": "Gråskala", "PE.Views.Toolbar.txtScheme2": "Gråskala",
"PE.Views.Toolbar.txtScheme20": "Urban",
"PE.Views.Toolbar.txtScheme21": "Fart", "PE.Views.Toolbar.txtScheme21": "Fart",
"PE.Views.Toolbar.txtScheme22": "New Office",
"PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme3": "Apex",
"PE.Views.Toolbar.txtScheme4": "Aspekt", "PE.Views.Toolbar.txtScheme4": "Aspekt",
"PE.Views.Toolbar.txtScheme5": "Medborgerlig",
"PE.Views.Toolbar.txtScheme6": "Öppen plats",
"PE.Views.Toolbar.txtScheme7": "Rimlighet", "PE.Views.Toolbar.txtScheme7": "Rimlighet",
"PE.Views.Toolbar.txtScheme8": "Flöde", "PE.Views.Toolbar.txtScheme8": "Flöde",
"PE.Views.Toolbar.txtScheme9": "Grund", "PE.Views.Toolbar.txtScheme9": "Grund",

View file

@ -196,7 +196,8 @@
h3 { h3 {
margin: 0; margin: 0;
font-size: 10pt; font-size: 10pt;
color: #665; color: @text-normal-ie;
color: @text-normal;
font-weight: bold; font-weight: bold;
padding: 0 0 10px 10px; padding: 0 0 10px 10px;
white-space: nowrap; white-space: nowrap;
@ -230,7 +231,8 @@
hr { hr {
margin: 0; margin: 0;
border-bottom: none; 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 { .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", "txtScheme18": "Tècnic",
"txtScheme19": "Excursió", "txtScheme19": "Excursió",
"txtScheme2": "Escala de grisos", "txtScheme2": "Escala de grisos",
"txtScheme20": "Urbà",
"txtScheme21": "Empenta",
"txtScheme22": "Nova Oficina", "txtScheme22": "Nova Oficina",
"txtScheme3": "Vèrtex", "txtScheme3": "Vèrtex",
"txtScheme4": "Aspecte", "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", "txtScheme18": "Technik",
"txtScheme19": "Wanderung", "txtScheme19": "Wanderung",
"txtScheme2": "Grauskala", "txtScheme2": "Grauskala",
"txtScheme20": "Rhea",
"txtScheme21": "Telesto",
"txtScheme22": "Neues Office", "txtScheme22": "Neues Office",
"txtScheme3": "Apex", "txtScheme3": "Apex",
"txtScheme4": "Bildseitenverhältnis", "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