commit
e81c8dedb8
|
@ -193,6 +193,9 @@
|
||||||
change: false/true // hide/show feature in de/pe/sse
|
change: false/true // hide/show feature in de/pe/sse
|
||||||
} / false / true // if false/true - use as init value in de/pe. use instead of customization.spellcheck parameter
|
} / false / true // if false/true - use as init value in de/pe. use instead of customization.spellcheck parameter
|
||||||
},
|
},
|
||||||
|
font: {
|
||||||
|
family: "Arial",
|
||||||
|
},
|
||||||
chat: true,
|
chat: true,
|
||||||
comments: true,
|
comments: true,
|
||||||
zoom: 100,
|
zoom: 100,
|
||||||
|
|
|
@ -1368,6 +1368,23 @@ define([
|
||||||
props = {minScrollbarLength : this.minScrollbarLength};
|
props = {minScrollbarLength : this.minScrollbarLength};
|
||||||
this.scrollAlwaysVisible && (props.alwaysVisibleY = this.scrollAlwaysVisible);
|
this.scrollAlwaysVisible && (props.alwaysVisibleY = this.scrollAlwaysVisible);
|
||||||
|
|
||||||
|
var menuUp = false;
|
||||||
|
if (this.parentMenu.menuAlign) {
|
||||||
|
var m = this.parentMenu.menuAlign.match(/^([a-z]+)-([a-z]+)/);
|
||||||
|
menuUp = (m[1]==='bl' || m[1]==='br');
|
||||||
|
}
|
||||||
|
if (menuUp) {
|
||||||
|
var bottom = top + menuH;
|
||||||
|
if (top<0) {
|
||||||
|
innerEl.css('max-height', (bottom - paddings - margins) + 'px');
|
||||||
|
menuRoot.css('top', 0);
|
||||||
|
this.scroller.update(props);
|
||||||
|
} else if (top>0 && innerEl.height() < this.options.restoreHeight) {
|
||||||
|
innerEl.css('max-height', (Math.min(bottom - paddings - margins, this.options.restoreHeight)) + 'px');
|
||||||
|
menuRoot.css('top', bottom - menuRoot.outerHeight());
|
||||||
|
this.scroller.update(props);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
if (top + menuH > docH ) {
|
if (top + menuH > docH ) {
|
||||||
innerEl.css('max-height', (docH - top - paddings - margins) + 'px');
|
innerEl.css('max-height', (docH - top - paddings - margins) + 'px');
|
||||||
this.scroller.update(props);
|
this.scroller.update(props);
|
||||||
|
@ -1375,6 +1392,7 @@ define([
|
||||||
innerEl.css('max-height', (Math.min(docH - top - paddings - margins, this.options.restoreHeight)) + 'px');
|
innerEl.css('max-height', (Math.min(docH - top - paddings - margins, this.options.restoreHeight)) + 'px');
|
||||||
this.scroller.update(props);
|
this.scroller.update(props);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
fillIndexesArray: function() {
|
fillIndexesArray: function() {
|
||||||
|
|
|
@ -145,7 +145,7 @@ define([
|
||||||
style : '',
|
style : '',
|
||||||
itemTemplate: null,
|
itemTemplate: null,
|
||||||
items : [],
|
items : [],
|
||||||
menuAlign : 'tl-bl',
|
menuAlign : 'tl-bl',//menu - parent
|
||||||
menuAlignEl : null,
|
menuAlignEl : null,
|
||||||
offset : [0, 0],
|
offset : [0, 0],
|
||||||
cyclic : true,
|
cyclic : true,
|
||||||
|
|
|
@ -261,21 +261,21 @@ define([
|
||||||
})).render($('#box-document-title #slot-btn-dt-home'));
|
})).render($('#box-document-title #slot-btn-dt-home'));
|
||||||
titlebuttons['home'] = {btn: header.btnHome};
|
titlebuttons['home'] = {btn: header.btnHome};
|
||||||
|
|
||||||
header.btnHome.on('click', event => {
|
header.btnHome.on('click', function (e) {
|
||||||
native.execCommand('title:button', JSON.stringify({click: "home"}));
|
native.execCommand('title:button', JSON.stringify({click: "home"}));
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#id-box-doc-name').on({
|
$('#id-box-doc-name').on({
|
||||||
'dblclick': e => {
|
'dblclick': function (e) {
|
||||||
native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
||||||
},
|
},
|
||||||
'mousedown': e => {
|
'mousedown': function (e) {
|
||||||
native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
||||||
},
|
},
|
||||||
'mousemove': e => {
|
'mousemove': function (e) {
|
||||||
native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
||||||
},
|
},
|
||||||
'mouseup': e => {
|
'mouseup': function (e) {
|
||||||
native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -68,6 +68,7 @@ if ( window.desktop ) {
|
||||||
delete params.uitheme;
|
delete params.uitheme;
|
||||||
} else {
|
} else {
|
||||||
localStorage.setItem("ui-theme-id", theme.id);
|
localStorage.setItem("ui-theme-id", theme.id);
|
||||||
|
localStorage.removeItem("ui-theme-use-system");
|
||||||
}
|
}
|
||||||
|
|
||||||
localStorage.removeItem("ui-theme");
|
localStorage.removeItem("ui-theme");
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 147 B |
Binary file not shown.
Before Width: | Height: | Size: 149 B |
|
@ -70,7 +70,7 @@
|
||||||
label {
|
label {
|
||||||
color: @text-normal-ie;
|
color: @text-normal-ie;
|
||||||
color: @text-normal;
|
color: @text-normal;
|
||||||
font: 12px arial;
|
font-size: 12px;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie;
|
border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie;
|
||||||
border-bottom: @scaled-one-px-value dotted @text-normal;
|
border-bottom: @scaled-one-px-value dotted @text-normal;
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
.dataview-ct {
|
.dataview-ct {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
font: 12px arial;
|
font-size: 12px;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
|
@ -298,4 +298,7 @@ body {
|
||||||
&.pixel-ratio__1_75 {
|
&.pixel-ratio__1_75 {
|
||||||
image-rendering: crisp-edges; // FF only
|
image-rendering: crisp-edges; // FF only
|
||||||
}
|
}
|
||||||
|
|
||||||
|
font-family: @font-family-sans-serif;
|
||||||
|
font-family: @font-family-base;
|
||||||
}
|
}
|
|
@ -60,7 +60,7 @@
|
||||||
@font-family-serif: Georgia, "Times New Roman", Times, serif;
|
@font-family-serif: Georgia, "Times New Roman", Times, serif;
|
||||||
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
|
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
|
||||||
@font-family-tahoma: tahoma, arial, verdana, sans-serif;
|
@font-family-tahoma: tahoma, arial, verdana, sans-serif;
|
||||||
@font-family-base: @font-family-sans-serif;
|
@font-family-base: var(--font-family-base-custom, @font-family-sans-serif), @font-family-sans-serif;
|
||||||
|
|
||||||
@font-size-base: 11px;
|
@font-size-base: 11px;
|
||||||
@font-size-large: 13px;
|
@font-size-large: 13px;
|
||||||
|
|
|
@ -753,6 +753,19 @@ DE.ApplicationController = new(function(){
|
||||||
message = me.errorTokenExpire;
|
message = me.errorTokenExpire;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||||
|
if (errData === 'pdf')
|
||||||
|
message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || '');
|
||||||
|
else if (errData === 'docx')
|
||||||
|
message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || '');
|
||||||
|
else if (errData === 'xlsx')
|
||||||
|
message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || '');
|
||||||
|
else if (errData === 'pptx')
|
||||||
|
message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || '');
|
||||||
|
else
|
||||||
|
message = me.errorInconsistentExt;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
message = me.errorDefaultMessage.replace('%1', id);
|
message = me.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
@ -962,6 +975,11 @@ DE.ApplicationController = new(function(){
|
||||||
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
|
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
|
||||||
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
|
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
|
||||||
openErrorText: 'An error has occurred while opening the file',
|
openErrorText: 'An error has occurred while opening the file',
|
||||||
textCtrl: 'Ctrl'
|
textCtrl: 'Ctrl',
|
||||||
|
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||||
}
|
}
|
||||||
})();
|
})();
|
|
@ -21,6 +21,11 @@
|
||||||
"DE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
"DE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
||||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "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": "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.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Warning",
|
"DE.ApplicationController.notcriticalErrorTitle": "Warning",
|
||||||
"DE.ApplicationController.openErrorText": "An error has occurred while opening the file.",
|
"DE.ApplicationController.openErrorText": "An error has occurred while opening the file.",
|
||||||
"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.",
|
||||||
|
|
|
@ -301,6 +301,20 @@ define([
|
||||||
config.msg = this.errorTextFormWrongFormat;
|
config.msg = this.errorTextFormWrongFormat;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||||
|
config.maxwidth = 600;
|
||||||
|
if (errData === 'pdf')
|
||||||
|
config.msg = this.errorInconsistentExtPdf.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'docx')
|
||||||
|
config.msg = this.errorInconsistentExtDocx.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'xlsx')
|
||||||
|
config.msg = this.errorInconsistentExtXlsx.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'pptx')
|
||||||
|
config.msg = this.errorInconsistentExtPptx.replace('%1', this.document.fileType || '');
|
||||||
|
else
|
||||||
|
config.msg = this.errorInconsistentExt;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
@ -1909,7 +1923,12 @@ define([
|
||||||
textSaveAsDesktop: 'Save as...',
|
textSaveAsDesktop: 'Save as...',
|
||||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||||
titleLicenseExp: 'License expired',
|
titleLicenseExp: 'License expired',
|
||||||
errorTextFormWrongFormat: 'The value entered does not match the format of the field.'
|
errorTextFormWrongFormat: 'The value entered does not match the format of the field.',
|
||||||
|
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||||
|
|
||||||
}, DE.Controllers.ApplicationController));
|
}, DE.Controllers.ApplicationController));
|
||||||
|
|
||||||
|
|
|
@ -109,6 +109,11 @@
|
||||||
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "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.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "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.Controllers.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
"DE.Controllers.ApplicationController.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||||
|
"DE.Controllers.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.Controllers.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.Controllers.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.Controllers.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||||
"DE.Controllers.ApplicationController.mniImageFromFile": "Image from File",
|
"DE.Controllers.ApplicationController.mniImageFromFile": "Image from File",
|
||||||
"DE.Controllers.ApplicationController.mniImageFromStorage": "Image from Storage",
|
"DE.Controllers.ApplicationController.mniImageFromStorage": "Image from Storage",
|
||||||
"DE.Controllers.ApplicationController.mniImageFromUrl": "Image from URL",
|
"DE.Controllers.ApplicationController.mniImageFromUrl": "Image from URL",
|
||||||
|
|
|
@ -2367,7 +2367,7 @@ define([
|
||||||
store: group.get('groupStore'),
|
store: group.get('groupStore'),
|
||||||
scrollAlwaysVisible: true,
|
scrollAlwaysVisible: true,
|
||||||
showLast: false,
|
showLast: false,
|
||||||
restoreHeight: 10000,
|
restoreHeight: 450,
|
||||||
itemTemplate: _.template(
|
itemTemplate: _.template(
|
||||||
'<div class="item-equation" style="" >' +
|
'<div class="item-equation" style="" >' +
|
||||||
'<div class="equation-icon" style="background-position:<%= posX %>px <%= posY %>px;width:<%= width %>px;height:<%= height %>px;" id="<%= id %>"></div>' +
|
'<div class="equation-icon" style="background-position:<%= posX %>px <%= posY %>px;width:<%= width %>px;height:<%= height %>px;" id="<%= id %>"></div>' +
|
||||||
|
@ -2381,6 +2381,12 @@ define([
|
||||||
});
|
});
|
||||||
menu.off('show:before', onShowBefore);
|
menu.off('show:before', onShowBefore);
|
||||||
};
|
};
|
||||||
|
var bringForward = function (menu) {
|
||||||
|
eqContainer.addClass('has-open-menu');
|
||||||
|
};
|
||||||
|
var sendBackward = function (menu) {
|
||||||
|
eqContainer.removeClass('has-open-menu');
|
||||||
|
};
|
||||||
for (var i = 0; i < equationsStore.length; ++i) {
|
for (var i = 0; i < equationsStore.length; ++i) {
|
||||||
var equationGroup = equationsStore.at(i);
|
var equationGroup = equationsStore.at(i);
|
||||||
var btn = new Common.UI.Button({
|
var btn = new Common.UI.Button({
|
||||||
|
@ -2399,6 +2405,8 @@ define([
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
btn.menu.on('show:before', onShowBefore);
|
btn.menu.on('show:before', onShowBefore);
|
||||||
|
btn.menu.on('show:before', bringForward);
|
||||||
|
btn.menu.on('hide:after', sendBackward);
|
||||||
me.equationBtns.push(btn);
|
me.equationBtns.push(btn);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2430,8 +2438,14 @@ define([
|
||||||
showPoint[1] = bounds[3] + 10;
|
showPoint[1] = bounds[3] + 10;
|
||||||
!Common.Utils.InternalSettings.get("de-hidden-rulers") && (showPoint[1] -= 26);
|
!Common.Utils.InternalSettings.get("de-hidden-rulers") && (showPoint[1] -= 26);
|
||||||
}
|
}
|
||||||
eqContainer.css({left: showPoint[0], top : Math.min(this._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1]))});
|
showPoint[1] = Math.min(me._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1]));
|
||||||
// menu.menuAlign = validation ? 'tr-br' : 'tl-bl';
|
eqContainer.css({left: showPoint[0], top : showPoint[1]});
|
||||||
|
|
||||||
|
var menuAlign = (me._Height - showPoint[1] - eqContainer.outerHeight() < 220) ? 'bl-tl' : 'tl-bl';
|
||||||
|
me.equationBtns.forEach(function(item){
|
||||||
|
item && (item.menu.menuAlign = menuAlign);
|
||||||
|
});
|
||||||
|
me.equationSettingsBtn.menu.menuAlign = menuAlign;
|
||||||
if (eqContainer.is(':visible')) {
|
if (eqContainer.is(':visible')) {
|
||||||
if (me.equationSettingsBtn.menu.isVisible()) {
|
if (me.equationSettingsBtn.menu.isVisible()) {
|
||||||
me.equationSettingsBtn.menu.options.initMenu();
|
me.equationSettingsBtn.menu.options.initMenu();
|
||||||
|
|
|
@ -380,6 +380,19 @@ define([
|
||||||
Common.Utils.InternalSettings.set("guest-username", value);
|
Common.Utils.InternalSettings.set("guest-username", value);
|
||||||
Common.Utils.InternalSettings.set("save-guest-username", !!value);
|
Common.Utils.InternalSettings.set("save-guest-username", !!value);
|
||||||
}
|
}
|
||||||
|
if (this.appOptions.customization.font) {
|
||||||
|
if (this.appOptions.customization.font.family && typeof this.appOptions.customization.font.family === 'string') {
|
||||||
|
var arr = this.appOptions.customization.font.family.split(',');
|
||||||
|
for (var i=0; i<arr.length; i++) {
|
||||||
|
var item = arr[i].trim();
|
||||||
|
if (item && (/[\s0-9\.]/).test(item)) {
|
||||||
|
arr[i] = "'" + item + "'";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
document.documentElement.style.setProperty("--font-family-base-custom", arr.join(','));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.editorConfig.user =
|
this.editorConfig.user =
|
||||||
this.appOptions.user = Common.Utils.fillUserInfo(this.editorConfig.user, this.editorConfig.lang, value ? (value + ' (' + this.appOptions.guestName + ')' ) : this.textAnonymous,
|
this.appOptions.user = Common.Utils.fillUserInfo(this.editorConfig.user, this.editorConfig.lang, value ? (value + ' (' + this.appOptions.guestName + ')' ) : this.textAnonymous,
|
||||||
Common.localStorage.getItem("guest-id") || ('uid-' + Date.now()));
|
Common.localStorage.getItem("guest-id") || ('uid-' + Date.now()));
|
||||||
|
@ -1418,7 +1431,8 @@ define([
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} else if (!this.appOptions.isDesktopApp && !this.appOptions.canBrandingExt &&
|
} else if (!this.appOptions.isDesktopApp && !this.appOptions.canBrandingExt &&
|
||||||
this.editorConfig && this.editorConfig.customization && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo)) {
|
this.editorConfig && this.editorConfig.customization && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo ||
|
||||||
|
this.editorConfig.customization.font && this.editorConfig.customization.font.family)) {
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
title: this.textPaidFeature,
|
title: this.textPaidFeature,
|
||||||
msg : this.textCustomLoader,
|
msg : this.textCustomLoader,
|
||||||
|
@ -1983,6 +1997,20 @@ define([
|
||||||
config.msg = this.errorPasswordIsNotCorrect;
|
config.msg = this.errorPasswordIsNotCorrect;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||||
|
config.maxwidth = 600;
|
||||||
|
if (errData === 'pdf')
|
||||||
|
config.msg = this.errorInconsistentExtPdf.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'docx')
|
||||||
|
config.msg = this.errorInconsistentExtDocx.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'xlsx')
|
||||||
|
config.msg = this.errorInconsistentExtXlsx.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'pptx')
|
||||||
|
config.msg = this.errorInconsistentExtPptx.replace('%1', this.document.fileType || '');
|
||||||
|
else
|
||||||
|
config.msg = this.errorInconsistentExt;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
@ -3287,7 +3315,12 @@ define([
|
||||||
errorPasswordIsNotCorrect: 'The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.',
|
errorPasswordIsNotCorrect: 'The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.',
|
||||||
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
|
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
|
||||||
textUndo: 'Undo',
|
textUndo: 'Undo',
|
||||||
textContinue: 'Continue'
|
textContinue: 'Continue',
|
||||||
|
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||||
}
|
}
|
||||||
})(), DE.Controllers.Main || {}))
|
})(), DE.Controllers.Main || {}))
|
||||||
});
|
});
|
|
@ -69,7 +69,7 @@ define([
|
||||||
if (item.options.action === 'help') {
|
if (item.options.action === 'help') {
|
||||||
if ( panel.noHelpContents === true && navigator.onLine ) {
|
if ( panel.noHelpContents === true && navigator.onLine ) {
|
||||||
this.fireEvent('item:click', [this, 'external-help', true]);
|
this.fireEvent('item:click', [this, 'external-help', true]);
|
||||||
window.open(panel.urlHelpCenter, '_blank');
|
!!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2019,7 +2019,14 @@ define([
|
||||||
this.menu = options.menu;
|
this.menu = options.menu;
|
||||||
this.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
|
this.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
|
||||||
this.openUrl = null;
|
this.openUrl = null;
|
||||||
this.urlHelpCenter = '{{HELP_CENTER_WEB_DE}}';
|
|
||||||
|
if ( !Common.Utils.isIE ) {
|
||||||
|
if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_DE}}') ) {
|
||||||
|
const _url_obj = new URL('{{HELP_CENTER_WEB_DE}}');
|
||||||
|
_url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage());
|
||||||
|
this.urlHelpCenter = _url_obj.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.en_data = [
|
this.en_data = [
|
||||||
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"},
|
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"},
|
||||||
|
|
|
@ -765,6 +765,11 @@
|
||||||
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||||
|
"DE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"DE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||||
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
||||||
"DE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
"DE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
|
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||||
|
|
|
@ -130,7 +130,7 @@
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
padding: 3px 10px;
|
padding: 3px 10px;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font: 11px arial;
|
.font-size-normal();
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -179,7 +179,9 @@
|
||||||
.separator {
|
.separator {
|
||||||
height: 20px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
z-index: @zindex-dropdown - 19;
|
&.has-open-menu {
|
||||||
|
z-index: @zindex-navbar + 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-menu.list-settings-level {
|
.dropdown-menu.list-settings-level {
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Məlumat yüklənir...",
|
"applyChangesTextText": "Məlumat yüklənir...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"openErrorText": "An error has occurred while opening the file",
|
"openErrorText": "An error has occurred while opening the file",
|
||||||
"saveErrorText": "An error has occurred while saving 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.",
|
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Загрузка даных…",
|
"applyChangesTextText": "Загрузка даных…",
|
||||||
|
|
|
@ -423,7 +423,12 @@
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Error desconegut.",
|
"unknownErrorText": "Error desconegut.",
|
||||||
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
||||||
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
||||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB."
|
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "S'estan carregant les dades...",
|
"applyChangesTextText": "S'estan carregant les dades...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageFileCountMessage": "Nenahrány žádné obrázky.",
|
"uploadImageFileCountMessage": "Nenahrány žádné obrázky.",
|
||||||
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
|
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Načítání dat...",
|
"applyChangesTextText": "Načítání dat...",
|
||||||
|
|
|
@ -423,7 +423,12 @@
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageExtMessage": "Unbekanntes Bildformat.",
|
"uploadImageExtMessage": "Unbekanntes Bildformat.",
|
||||||
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
|
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
|
||||||
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
|
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Daten werden geladen...",
|
"applyChangesTextText": "Daten werden geladen...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
|
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
|
||||||
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
|
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Φόρτωση δεδομένων...",
|
"applyChangesTextText": "Φόρτωση δεδομένων...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Unknown error.",
|
"unknownErrorText": "Unknown error.",
|
||||||
"uploadImageExtMessage": "Unknown image format.",
|
"uploadImageExtMessage": "Unknown image format.",
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||||
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Cargando datos...",
|
"applyChangesTextText": "Cargando datos...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageExtMessage": "Irudi-formatu ezezaguna.",
|
"uploadImageExtMessage": "Irudi-formatu ezezaguna.",
|
||||||
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
|
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
|
||||||
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
|
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Datuak kargatzen...",
|
"applyChangesTextText": "Datuak kargatzen...",
|
||||||
|
|
|
@ -423,7 +423,12 @@
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Erreur inconnue.",
|
"unknownErrorText": "Erreur inconnue.",
|
||||||
"uploadImageExtMessage": "Format d'image inconnu.",
|
"uploadImageExtMessage": "Format d'image inconnu.",
|
||||||
"uploadImageFileCountMessage": "Aucune image chargée.",
|
"uploadImageFileCountMessage": "Aucune image chargée.",
|
||||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
|
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Chargement des données en cours...",
|
"applyChangesTextText": "Chargement des données en cours...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
|
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
|
||||||
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
|
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Cargando datos...",
|
"applyChangesTextText": "Cargando datos...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Ismeretlen hiba.",
|
"unknownErrorText": "Ismeretlen hiba.",
|
||||||
"uploadImageExtMessage": "Ismeretlen képformátum.",
|
"uploadImageExtMessage": "Ismeretlen képformátum.",
|
||||||
"uploadImageFileCountMessage": "Nincsenek feltöltött képek.",
|
"uploadImageFileCountMessage": "Nincsenek feltöltött képek.",
|
||||||
"uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB."
|
"uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Adatok betöltése...",
|
"applyChangesTextText": "Adatok betöltése...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Անհայտ սխալ։",
|
"unknownErrorText": "Անհայտ սխալ։",
|
||||||
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
||||||
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
|
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
|
||||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
|
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Տվյալների բեռնում...",
|
"applyChangesTextText": "Տվյալների բեռնում...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Kesalahan tidak diketahui.",
|
"unknownErrorText": "Kesalahan tidak diketahui.",
|
||||||
"uploadImageExtMessage": "Format gambar tidak dikenal.",
|
"uploadImageExtMessage": "Format gambar tidak dikenal.",
|
||||||
"uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.",
|
"uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.",
|
||||||
"uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB."
|
"uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Memuat data...",
|
"applyChangesTextText": "Memuat data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
|
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
|
||||||
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
|
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Caricamento di dati...",
|
"applyChangesTextText": "Caricamento di dati...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "不明なエラー",
|
"unknownErrorText": "不明なエラー",
|
||||||
"uploadImageExtMessage": "不明なイメージの形式",
|
"uploadImageExtMessage": "不明なイメージの形式",
|
||||||
"uploadImageFileCountMessage": "アップロードしたイメージがない",
|
"uploadImageFileCountMessage": "アップロードしたイメージがない",
|
||||||
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。"
|
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "データの読み込み中...",
|
"applyChangesTextText": "データの読み込み中...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "데이터로드 중 ...",
|
"applyChangesTextText": "데이터로드 중 ...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...",
|
"applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...",
|
||||||
|
|
|
@ -423,7 +423,12 @@
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
|
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
|
||||||
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
|
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Data dimuatkan…",
|
"applyChangesTextText": "Data dimuatkan…",
|
||||||
|
|
|
@ -423,7 +423,12 @@
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Gegevens worden geladen...",
|
"applyChangesTextText": "Gegevens worden geladen...",
|
||||||
|
|
|
@ -423,7 +423,12 @@
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Erro desconhecido.",
|
"unknownErrorText": "Erro desconhecido.",
|
||||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||||
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
|
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
|
||||||
"uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB."
|
"uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "A carregar dados...",
|
"applyChangesTextText": "A carregar dados...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Erro desconhecido.",
|
"unknownErrorText": "Erro desconhecido.",
|
||||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||||
"uploadImageFileCountMessage": "Sem imagens carregadas.",
|
"uploadImageFileCountMessage": "Sem imagens carregadas.",
|
||||||
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
|
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Carregando dados...",
|
"applyChangesTextText": "Carregando dados...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.",
|
"uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.",
|
||||||
"uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.",
|
"uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Încărcarea datelor...",
|
"applyChangesTextText": "Încărcarea datelor...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "Неизвестная ошибка.",
|
"unknownErrorText": "Неизвестная ошибка.",
|
||||||
"uploadImageExtMessage": "Неизвестный формат рисунка.",
|
"uploadImageExtMessage": "Неизвестный формат рисунка.",
|
||||||
"uploadImageFileCountMessage": "Ни одного рисунка не загружено.",
|
"uploadImageFileCountMessage": "Ни одного рисунка не загружено.",
|
||||||
"uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB."
|
"uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Загрузка данных...",
|
"applyChangesTextText": "Загрузка данных...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Načítavanie dát...",
|
"applyChangesTextText": "Načítavanie dát...",
|
||||||
|
|
|
@ -648,7 +648,12 @@
|
||||||
"unknownErrorText": "Unknown error.",
|
"unknownErrorText": "Unknown error.",
|
||||||
"uploadImageExtMessage": "Unknown image format.",
|
"uploadImageExtMessage": "Unknown image format.",
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -423,7 +423,12 @@
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Veri yükleniyor...",
|
"applyChangesTextText": "Veri yükleniyor...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Завантаження даних...",
|
"applyChangesTextText": "Завантаження даних...",
|
||||||
|
|
|
@ -423,7 +423,12 @@
|
||||||
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
"errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
|
||||||
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
"errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"uploadImageFileCountMessage": "無上傳圖片。",
|
"uploadImageFileCountMessage": "無上傳圖片。",
|
||||||
"uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。",
|
"uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
"errorTextFormWrongFormat": "The value entered does not match the format of the field."
|
"errorTextFormWrongFormat": "The value entered does not match the format of the field.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "載入資料中...",
|
"applyChangesTextText": "載入資料中...",
|
||||||
|
|
|
@ -420,7 +420,12 @@
|
||||||
"unknownErrorText": "未知错误。",
|
"unknownErrorText": "未知错误。",
|
||||||
"uploadImageExtMessage": "未知图像格式。",
|
"uploadImageExtMessage": "未知图像格式。",
|
||||||
"uploadImageFileCountMessage": "没有图片上传",
|
"uploadImageFileCountMessage": "没有图片上传",
|
||||||
"uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB."
|
"uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "数据加载中…",
|
"applyChangesTextText": "数据加载中…",
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { inject } from 'mobx-react';
|
||||||
import { f7 } from 'framework7-react';
|
import { f7 } from 'framework7-react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => {
|
const ErrorController = inject('storeAppOptions','storeDocumentInfo')(({storeAppOptions, storeDocumentInfo, LoadingDocument}) => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const _t = t("Error", { returnObjects: true });
|
const _t = t("Error", { returnObjects: true });
|
||||||
|
|
||||||
|
@ -197,6 +197,20 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu
|
||||||
config.msg = _t.errorDirectUrl;
|
config.msg = _t.errorDirectUrl;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||||
|
let docExt = storeDocumentInfo.dataDoc ? storeDocumentInfo.dataDoc.fileType || '' : '';
|
||||||
|
if (errData === 'pdf')
|
||||||
|
config.msg = _t.errorInconsistentExtPdf.replace('%1', docExt);
|
||||||
|
else if (errData === 'docx')
|
||||||
|
config.msg = _t.errorInconsistentExtDocx.replace('%1', docExt);
|
||||||
|
else if (errData === 'xlsx')
|
||||||
|
config.msg = _t.errorInconsistentExtXlsx.replace('%1', docExt);
|
||||||
|
else if (errData === 'pptx')
|
||||||
|
config.msg = _t.errorInconsistentExtPptx.replace('%1', docExt);
|
||||||
|
else
|
||||||
|
config.msg = _t.errorInconsistentExt;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
config.msg = _t.errorDefaultMessage.replace('%1', id);
|
config.msg = _t.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -614,6 +614,19 @@ PE.ApplicationController = new(function(){
|
||||||
message = me.errorTokenExpire;
|
message = me.errorTokenExpire;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||||
|
if (errData === 'pdf')
|
||||||
|
message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || '');
|
||||||
|
else if (errData === 'docx')
|
||||||
|
message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || '');
|
||||||
|
else if (errData === 'xlsx')
|
||||||
|
message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || '');
|
||||||
|
else if (errData === 'pptx')
|
||||||
|
message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || '');
|
||||||
|
else
|
||||||
|
message = me.errorInconsistentExt;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
message = me.errorDefaultMessage.replace('%1', id);
|
message = me.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
@ -782,6 +795,11 @@ PE.ApplicationController = new(function(){
|
||||||
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.",
|
||||||
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
|
errorLoadingFont: 'Fonts are not loaded.<br>Please contact your Document Server administrator.',
|
||||||
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
|
errorTokenExpire: 'The document security token has expired.<br>Please contact your Document Server administrator.',
|
||||||
openErrorText: 'An error has occurred while opening the file'
|
openErrorText: 'An error has occurred while opening the file',
|
||||||
|
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -19,6 +19,11 @@
|
||||||
"PE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
"PE.ApplicationController.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
||||||
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "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": "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.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"PE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"PE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"PE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"PE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Warning",
|
"PE.ApplicationController.notcriticalErrorTitle": "Warning",
|
||||||
"PE.ApplicationController.openErrorText": "An error has occurred while opening the file.",
|
"PE.ApplicationController.openErrorText": "An error has occurred while opening the file.",
|
||||||
"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.",
|
||||||
|
|
|
@ -2282,7 +2282,7 @@ define([
|
||||||
store: group.get('groupStore'),
|
store: group.get('groupStore'),
|
||||||
scrollAlwaysVisible: true,
|
scrollAlwaysVisible: true,
|
||||||
showLast: false,
|
showLast: false,
|
||||||
restoreHeight: group.get('groupHeight') ? parseInt(group.get('groupHeight')) : true,
|
restoreHeight: 450,
|
||||||
itemTemplate: _.template(
|
itemTemplate: _.template(
|
||||||
'<div class="item-equation" style="" >' +
|
'<div class="item-equation" style="" >' +
|
||||||
'<div class="equation-icon" style="background-position:<%= posX %>px <%= posY %>px;width:<%= width %>px;height:<%= height %>px;" id="<%= id %>"></div>' +
|
'<div class="equation-icon" style="background-position:<%= posX %>px <%= posY %>px;width:<%= width %>px;height:<%= height %>px;" id="<%= id %>"></div>' +
|
||||||
|
@ -2296,6 +2296,12 @@ define([
|
||||||
});
|
});
|
||||||
menu.off('show:before', onShowBefore);
|
menu.off('show:before', onShowBefore);
|
||||||
};
|
};
|
||||||
|
var bringForward = function (menu) {
|
||||||
|
eqContainer.addClass('has-open-menu');
|
||||||
|
};
|
||||||
|
var sendBackward = function (menu) {
|
||||||
|
eqContainer.removeClass('has-open-menu');
|
||||||
|
};
|
||||||
for (var i = 0; i < equationsStore.length; ++i) {
|
for (var i = 0; i < equationsStore.length; ++i) {
|
||||||
var equationGroup = equationsStore.at(i);
|
var equationGroup = equationsStore.at(i);
|
||||||
var btn = new Common.UI.Button({
|
var btn = new Common.UI.Button({
|
||||||
|
@ -2315,6 +2321,8 @@ define([
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
btn.menu.on('show:before', onShowBefore);
|
btn.menu.on('show:before', onShowBefore);
|
||||||
|
btn.menu.on('show:before', bringForward);
|
||||||
|
btn.menu.on('hide:after', sendBackward);
|
||||||
me.equationBtns.push(btn);
|
me.equationBtns.push(btn);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2341,8 +2349,14 @@ define([
|
||||||
if (showPoint[1]<0) {
|
if (showPoint[1]<0) {
|
||||||
showPoint[1] = bounds[3] + 10;
|
showPoint[1] = bounds[3] + 10;
|
||||||
}
|
}
|
||||||
eqContainer.css({left: showPoint[0], top : Math.min(me._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1]))});
|
showPoint[1] = Math.min(me._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1]));
|
||||||
// menu.menuAlign = validation ? 'tr-br' : 'tl-bl';
|
eqContainer.css({left: showPoint[0], top : showPoint[1]});
|
||||||
|
|
||||||
|
var menuAlign = (me._Height - showPoint[1] - eqContainer.outerHeight() < 220) ? 'bl-tl' : 'tl-bl';
|
||||||
|
me.equationBtns.forEach(function(item){
|
||||||
|
item && (item.menu.menuAlign = menuAlign);
|
||||||
|
});
|
||||||
|
me.equationSettingsBtn.menu.menuAlign = menuAlign;
|
||||||
if (eqContainer.is(':visible')) {
|
if (eqContainer.is(':visible')) {
|
||||||
if (me.equationSettingsBtn.menu.isVisible()) {
|
if (me.equationSettingsBtn.menu.isVisible()) {
|
||||||
me.equationSettingsBtn.menu.options.initMenu();
|
me.equationSettingsBtn.menu.options.initMenu();
|
||||||
|
|
|
@ -339,6 +339,19 @@ define([
|
||||||
Common.Utils.InternalSettings.set("guest-username", value);
|
Common.Utils.InternalSettings.set("guest-username", value);
|
||||||
Common.Utils.InternalSettings.set("save-guest-username", !!value);
|
Common.Utils.InternalSettings.set("save-guest-username", !!value);
|
||||||
}
|
}
|
||||||
|
if (this.appOptions.customization.font) {
|
||||||
|
if (this.appOptions.customization.font.family && typeof this.appOptions.customization.font.family === 'string') {
|
||||||
|
var arr = this.appOptions.customization.font.family.split(',');
|
||||||
|
for (var i=0; i<arr.length; i++) {
|
||||||
|
var item = arr[i].trim();
|
||||||
|
if (item && (/[\s0-9\.]/).test(item)) {
|
||||||
|
arr[i] = "'" + item + "'";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
document.documentElement.style.setProperty("--font-family-base-custom", arr.join(','));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.editorConfig.user =
|
this.editorConfig.user =
|
||||||
this.appOptions.user = Common.Utils.fillUserInfo(data.config.user, this.editorConfig.lang, value ? (value + ' (' + this.appOptions.guestName + ')' ) : this.textAnonymous,
|
this.appOptions.user = Common.Utils.fillUserInfo(data.config.user, this.editorConfig.lang, value ? (value + ' (' + this.appOptions.guestName + ')' ) : this.textAnonymous,
|
||||||
Common.localStorage.getItem("guest-id") || ('uid-' + Date.now()));
|
Common.localStorage.getItem("guest-id") || ('uid-' + Date.now()));
|
||||||
|
@ -1040,7 +1053,8 @@ define([
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} else if (!this.appOptions.isDesktopApp && !this.appOptions.canBrandingExt &&
|
} else if (!this.appOptions.isDesktopApp && !this.appOptions.canBrandingExt &&
|
||||||
this.editorConfig && this.editorConfig.customization && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo)) {
|
this.editorConfig && this.editorConfig.customization && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo ||
|
||||||
|
this.editorConfig.customization.font && this.editorConfig.customization.font.family)) {
|
||||||
Common.UI.warning({
|
Common.UI.warning({
|
||||||
title: this.textPaidFeature,
|
title: this.textPaidFeature,
|
||||||
msg : this.textCustomLoader,
|
msg : this.textCustomLoader,
|
||||||
|
@ -1579,6 +1593,20 @@ define([
|
||||||
config.msg = this.errorDirectUrl;
|
config.msg = this.errorDirectUrl;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.ConvertationOpenFormat:
|
||||||
|
config.maxwidth = 600;
|
||||||
|
if (errData === 'pdf')
|
||||||
|
config.msg = this.errorInconsistentExtPdf.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'docx')
|
||||||
|
config.msg = this.errorInconsistentExtDocx.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'xlsx')
|
||||||
|
config.msg = this.errorInconsistentExtXlsx.replace('%1', this.document.fileType || '');
|
||||||
|
else if (errData === 'pptx')
|
||||||
|
config.msg = this.errorInconsistentExtPptx.replace('%1', this.document.fileType || '');
|
||||||
|
else
|
||||||
|
config.msg = this.errorInconsistentExt;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
@ -3017,7 +3045,12 @@ define([
|
||||||
textRememberMacros: 'Remember my choice for all macros',
|
textRememberMacros: 'Remember my choice for all macros',
|
||||||
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
|
confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).',
|
||||||
textUndo: 'Undo',
|
textUndo: 'Undo',
|
||||||
textContinue: 'Continue'
|
textContinue: 'Continue',
|
||||||
|
errorInconsistentExtDocx: 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtXlsx: 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPptx: 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExtPdf: 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.',
|
||||||
|
errorInconsistentExt: 'An error has occurred while opening the file.<br>The file content does not match the file extension.'
|
||||||
}
|
}
|
||||||
})(), PE.Controllers.Main || {}))
|
})(), PE.Controllers.Main || {}))
|
||||||
});
|
});
|
||||||
|
|
|
@ -72,7 +72,7 @@ define([
|
||||||
if (item.options.action === 'help') {
|
if (item.options.action === 'help') {
|
||||||
if ( panel.noHelpContents === true && navigator.onLine ) {
|
if ( panel.noHelpContents === true && navigator.onLine ) {
|
||||||
this.fireEvent('item:click', [this, 'external-help', true]);
|
this.fireEvent('item:click', [this, 'external-help', true]);
|
||||||
window.open(panel.urlHelpCenter, '_blank');
|
!!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1512,7 +1512,14 @@ define([
|
||||||
this.menu = options.menu;
|
this.menu = options.menu;
|
||||||
this.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
|
this.urlPref = 'resources/help/{{DEFAULT_LANG}}/';
|
||||||
this.openUrl = null;
|
this.openUrl = null;
|
||||||
this.urlHelpCenter = '{{HELP_CENTER_WEB_PE}}';
|
|
||||||
|
if ( !Common.Utils.isIE ) {
|
||||||
|
if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_PE}}') ) {
|
||||||
|
const _url_obj = new URL('{{HELP_CENTER_WEB_PE}}');
|
||||||
|
_url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage());
|
||||||
|
this.urlHelpCenter = _url_obj.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.en_data = [
|
this.en_data = [
|
||||||
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Presentation Editor user interface", "headername": "Program Interface"},
|
{"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Presentation Editor user interface", "headername": "Program Interface"},
|
||||||
|
|
|
@ -837,6 +837,11 @@
|
||||||
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
"PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||||
"PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
"PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||||
|
"PE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"PE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"PE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"PE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"PE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
|
||||||
"PE.Controllers.Main.leavePageText": "You have unsaved changes in this presentation. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
"PE.Controllers.Main.leavePageText": "You have unsaved changes in this presentation. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
||||||
"PE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this presentation will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
"PE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this presentation will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
||||||
"PE.Controllers.Main.loadFontsTextText": "Loading data...",
|
"PE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
padding: 3px 10px;
|
padding: 3px 10px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font: 11px arial;
|
.font-size-normal();
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -111,6 +111,9 @@
|
||||||
.separator {
|
.separator {
|
||||||
height: 20px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
|
&.has-open-menu {
|
||||||
|
z-index: @zindex-navbar + 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-theme {
|
.item-theme {
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Naməlum təsvir formatı.",
|
"uploadImageExtMessage": "Naməlum təsvir formatı.",
|
||||||
"uploadImageFileCountMessage": "Heç bir təsvir yüklənməyib.",
|
"uploadImageFileCountMessage": "Heç bir təsvir yüklənməyib.",
|
||||||
"uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
|
"uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Məlumat yüklənir...",
|
"applyChangesTextText": "Məlumat yüklənir...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"openErrorText": "An error has occurred while opening the file",
|
"openErrorText": "An error has occurred while opening the file",
|
||||||
"saveErrorText": "An error has occurred while saving 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.",
|
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Загрузка даных…",
|
"applyChangesTextText": "Загрузка даных…",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Error desconegut.",
|
"unknownErrorText": "Error desconegut.",
|
||||||
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
||||||
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
||||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB."
|
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "S'estant carregant les dades...",
|
"applyChangesTextText": "S'estant carregant les dades...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Neznámý formát obrázku.",
|
"uploadImageExtMessage": "Neznámý formát obrázku.",
|
||||||
"uploadImageFileCountMessage": "Žádné obrázky nenahrány.",
|
"uploadImageFileCountMessage": "Žádné obrázky nenahrány.",
|
||||||
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
|
"uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Načítání dat...",
|
"applyChangesTextText": "Načítání dat...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Unbekanntes Bildformat.",
|
"uploadImageExtMessage": "Unbekanntes Bildformat.",
|
||||||
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
|
"uploadImageFileCountMessage": "Keine Bilder hochgeladen.",
|
||||||
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
|
"uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Daten werden geladen...",
|
"applyChangesTextText": "Daten werden geladen...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
|
"uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
|
||||||
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
|
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
|
||||||
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
|
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Φόρτωση δεδομένων...",
|
"applyChangesTextText": "Φόρτωση δεδομένων...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Unknown error.",
|
"unknownErrorText": "Unknown error.",
|
||||||
"uploadImageExtMessage": "Unknown image format.",
|
"uploadImageExtMessage": "Unknown image format.",
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||||
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Cargando datos...",
|
"applyChangesTextText": "Cargando datos...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Irudi formatu ezezaguna.",
|
"uploadImageExtMessage": "Irudi formatu ezezaguna.",
|
||||||
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
|
"uploadImageFileCountMessage": "Ez da irudirik kargatu.",
|
||||||
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
|
"uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Datuak kargatzen...",
|
"applyChangesTextText": "Datuak kargatzen...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Erreur inconnue.",
|
"unknownErrorText": "Erreur inconnue.",
|
||||||
"uploadImageExtMessage": "Format d'image inconnu.",
|
"uploadImageExtMessage": "Format d'image inconnu.",
|
||||||
"uploadImageFileCountMessage": "Aucune image chargée.",
|
"uploadImageFileCountMessage": "Aucune image chargée.",
|
||||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
|
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Chargement des données en cours...",
|
"applyChangesTextText": "Chargement des données en cours...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Formato de imaxe descoñecido.",
|
"uploadImageExtMessage": "Formato de imaxe descoñecido.",
|
||||||
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
|
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
|
||||||
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
|
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Cargando datos...",
|
"applyChangesTextText": "Cargando datos...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Ismeretlen hiba.",
|
"unknownErrorText": "Ismeretlen hiba.",
|
||||||
"uploadImageExtMessage": "Ismeretlen képformátum.",
|
"uploadImageExtMessage": "Ismeretlen képformátum.",
|
||||||
"uploadImageFileCountMessage": "Nincs kép feltöltve.",
|
"uploadImageFileCountMessage": "Nincs kép feltöltve.",
|
||||||
"uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB."
|
"uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Adatok betöltése...",
|
"applyChangesTextText": "Adatok betöltése...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Անհայտ սխալ։",
|
"unknownErrorText": "Անհայտ սխալ։",
|
||||||
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
||||||
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
|
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
|
||||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
|
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Տվյալների բեռնում...",
|
"applyChangesTextText": "Տվյալների բեռնում...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Kesalahan tidak diketahui.",
|
"unknownErrorText": "Kesalahan tidak diketahui.",
|
||||||
"uploadImageExtMessage": "Format gambar tidak dikenal.",
|
"uploadImageExtMessage": "Format gambar tidak dikenal.",
|
||||||
"uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.",
|
"uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.",
|
||||||
"uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB."
|
"uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Memuat data...",
|
"applyChangesTextText": "Memuat data...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Formato d'immagine sconosciuto.",
|
"uploadImageExtMessage": "Formato d'immagine sconosciuto.",
|
||||||
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
|
"uploadImageFileCountMessage": "Nessuna immagine caricata.",
|
||||||
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
|
"uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Caricamento di dati...",
|
"applyChangesTextText": "Caricamento di dati...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "不明なエラー",
|
"unknownErrorText": "不明なエラー",
|
||||||
"uploadImageExtMessage": "不明なイメージの形式",
|
"uploadImageExtMessage": "不明なイメージの形式",
|
||||||
"uploadImageFileCountMessage": "アップロードしたイメージがない",
|
"uploadImageFileCountMessage": "アップロードしたイメージがない",
|
||||||
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。"
|
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "データの読み込み中...",
|
"applyChangesTextText": "データの読み込み中...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "알 수없는 이미지 형식입니다.",
|
"uploadImageExtMessage": "알 수없는 이미지 형식입니다.",
|
||||||
"uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.",
|
"uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.",
|
||||||
"uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.",
|
"uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "데이터로드 중 ...",
|
"applyChangesTextText": "데이터로드 중 ...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ",
|
"uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ",
|
||||||
"uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ",
|
"uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ",
|
||||||
"uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.",
|
"uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...",
|
"applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Format imej yang tidak diketahui.",
|
"uploadImageExtMessage": "Format imej yang tidak diketahui.",
|
||||||
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
|
"uploadImageFileCountMessage": "Tiada Imej dimuat naik.",
|
||||||
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
|
"uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Data dimuatkan…",
|
"applyChangesTextText": "Data dimuatkan…",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Onbekende afbeeldingsindeling.",
|
"uploadImageExtMessage": "Onbekende afbeeldingsindeling.",
|
||||||
"uploadImageFileCountMessage": "Geen afbeeldingen geüpload.",
|
"uploadImageFileCountMessage": "Geen afbeeldingen geüpload.",
|
||||||
"uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 25MB.",
|
"uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 25MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Gegevens worden geladen...",
|
"applyChangesTextText": "Gegevens worden geladen...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Erro desconhecido.",
|
"unknownErrorText": "Erro desconhecido.",
|
||||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||||
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
|
"uploadImageFileCountMessage": "Nenhuma imagem foi carregada.",
|
||||||
"uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB."
|
"uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "A carregar dados...",
|
"applyChangesTextText": "A carregar dados...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Erro desconhecido.",
|
"unknownErrorText": "Erro desconhecido.",
|
||||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||||
"uploadImageFileCountMessage": "Sem imagens carregadas.",
|
"uploadImageFileCountMessage": "Sem imagens carregadas.",
|
||||||
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
|
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Carregando dados...",
|
"applyChangesTextText": "Carregando dados...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Format de imagine nerecunoscut.",
|
"uploadImageExtMessage": "Format de imagine nerecunoscut.",
|
||||||
"uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.",
|
"uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.",
|
||||||
"uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.",
|
"uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Încărcarea datelor...",
|
"applyChangesTextText": "Încărcarea datelor...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Неизвестная ошибка.",
|
"unknownErrorText": "Неизвестная ошибка.",
|
||||||
"uploadImageExtMessage": "Неизвестный формат рисунка.",
|
"uploadImageExtMessage": "Неизвестный формат рисунка.",
|
||||||
"uploadImageFileCountMessage": "Ни одного рисунка не загружено.",
|
"uploadImageFileCountMessage": "Ни одного рисунка не загружено.",
|
||||||
"uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB."
|
"uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Загрузка данных...",
|
"applyChangesTextText": "Загрузка данных...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Neznámy formát obrázka.",
|
"uploadImageExtMessage": "Neznámy formát obrázka.",
|
||||||
"uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.",
|
"uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.",
|
||||||
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.",
|
"uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Načítavanie dát...",
|
"applyChangesTextText": "Načítavanie dát...",
|
||||||
|
|
|
@ -456,7 +456,12 @@
|
||||||
"unknownErrorText": "Unknown error.",
|
"unknownErrorText": "Unknown error.",
|
||||||
"uploadImageExtMessage": "Unknown image format.",
|
"uploadImageExtMessage": "Unknown image format.",
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageExtMessage": "Bilinmeyen resim formatı.",
|
"uploadImageExtMessage": "Bilinmeyen resim formatı.",
|
||||||
"uploadImageFileCountMessage": "Resim yüklenmedi.",
|
"uploadImageFileCountMessage": "Resim yüklenmedi.",
|
||||||
"uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir.",
|
"uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Veri yükleniyor...",
|
"applyChangesTextText": "Veri yükleniyor...",
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"unknownErrorText": "Unknown error.",
|
"unknownErrorText": "Unknown error.",
|
||||||
"uploadImageExtMessage": "Unknown image format.",
|
"uploadImageExtMessage": "Unknown image format.",
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"View": {
|
"View": {
|
||||||
"Add": {
|
"Add": {
|
||||||
|
|
|
@ -172,7 +172,12 @@
|
||||||
"uploadImageFileCountMessage": "No images uploaded.",
|
"uploadImageFileCountMessage": "No images uploaded.",
|
||||||
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
|
||||||
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
"errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
|
||||||
|
"errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
|
||||||
|
"errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension."
|
||||||
},
|
},
|
||||||
"LongActions": {
|
"LongActions": {
|
||||||
"applyChangesTextText": "Loading data...",
|
"applyChangesTextText": "Loading data...",
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue