Merge branch 'release/v7.2.0' into develop
This commit is contained in:
commit
49dc558158
|
@ -1006,8 +1006,8 @@
|
|||
iframe.allowFullscreen = true;
|
||||
iframe.setAttribute("allowfullscreen",""); // for IE11
|
||||
iframe.setAttribute("onmousewheel",""); // for Safari on Mac
|
||||
iframe.setAttribute("allow", "autoplay; camera; microphone; display-capture");
|
||||
|
||||
iframe.setAttribute("allow", "autoplay; camera; microphone; display-capture; clipboard-write;");
|
||||
|
||||
if (config.type == "mobile")
|
||||
{
|
||||
iframe.style.position = "fixed";
|
||||
|
|
|
@ -89,7 +89,8 @@ define([
|
|||
thumbCanvas.width = thumbs[thumbIdx].width;
|
||||
|
||||
function CThumbnailLoader() {
|
||||
this.supportBinaryFormat = !(Common.Controllers.Desktop.isActive() && !Common.Controllers.isFeatureAvailable('isSupportBinaryFontsSprite'));
|
||||
this.supportBinaryFormat = !(Common.Controllers.Desktop.isActive() && !Common.Controllers.Desktop.isFeatureAvailable('isSupportBinaryFontsSprite'));
|
||||
// наш формат - альфамаска с сжатием типа rle для полностью прозрачных пикселов
|
||||
|
||||
this.image = null;
|
||||
this.binaryFormat = null;
|
||||
|
@ -98,6 +99,7 @@ define([
|
|||
this.height = 0;
|
||||
this.heightOne = 0;
|
||||
this.count = 0;
|
||||
this.offsets = null;
|
||||
|
||||
this.load = function(url, callback) {
|
||||
if (!callback)
|
||||
|
@ -123,7 +125,7 @@ define([
|
|||
|
||||
xhr.onload = function() {
|
||||
// TODO: check errors
|
||||
me.binaryFormat = this.response;
|
||||
me.binaryFormat = new Uint8Array(this.response);
|
||||
callback();
|
||||
};
|
||||
|
||||
|
@ -134,38 +136,74 @@ define([
|
|||
this.openBinary = function(arrayBuffer) {
|
||||
//var t1 = performance.now();
|
||||
|
||||
var binaryAlpha = new Uint8Array(arrayBuffer);
|
||||
var binaryAlpha = this.binaryFormat;
|
||||
this.width = (binaryAlpha[0] << 24) | (binaryAlpha[1] << 16) | (binaryAlpha[2] << 8) | (binaryAlpha[3] << 0);
|
||||
this.heightOne = (binaryAlpha[4] << 24) | (binaryAlpha[5] << 16) | (binaryAlpha[6] << 8) | (binaryAlpha[7] << 0);
|
||||
this.count = (binaryAlpha[8] << 24) | (binaryAlpha[9] << 16) | (binaryAlpha[10] << 8) | (binaryAlpha[11] << 0);
|
||||
this.height = this.count * this.heightOne;
|
||||
|
||||
this.data = new Uint8ClampedArray(4 * this.width * this.height);
|
||||
var MAX_MEMORY_SIZE = 50000000;
|
||||
var memorySize = 4 * this.width * this.height;
|
||||
var isOffsets = (memorySize > MAX_MEMORY_SIZE) ? true : false;
|
||||
|
||||
if (!isOffsets)
|
||||
this.data = new Uint8ClampedArray(memorySize);
|
||||
else
|
||||
this.offsets = new Array(this.count);
|
||||
|
||||
var binaryIndex = 12;
|
||||
var binaryLen = binaryAlpha.length;
|
||||
var imagePixels = this.data;
|
||||
var index = 0;
|
||||
|
||||
var len0 = 0;
|
||||
var tmpValue = 0;
|
||||
while (binaryIndex < binaryLen) {
|
||||
tmpValue = binaryAlpha[binaryIndex++];
|
||||
if (0 == tmpValue) {
|
||||
len0 = binaryAlpha[binaryIndex++];
|
||||
while (len0 > 0) {
|
||||
len0--;
|
||||
imagePixels[index] = imagePixels[index + 1] = imagePixels[index + 2] = 255;
|
||||
imagePixels[index + 3] = 0; // this value is already 0.
|
||||
|
||||
if (!isOffsets) {
|
||||
var imagePixels = this.data;
|
||||
while (binaryIndex < binaryLen) {
|
||||
tmpValue = binaryAlpha[binaryIndex++];
|
||||
if (0 == tmpValue) {
|
||||
len0 = binaryAlpha[binaryIndex++];
|
||||
while (len0 > 0) {
|
||||
len0--;
|
||||
imagePixels[index] = imagePixels[index + 1] = imagePixels[index + 2] = 255;
|
||||
imagePixels[index + 3] = 0; // this value is already 0.
|
||||
index += 4;
|
||||
}
|
||||
} else {
|
||||
imagePixels[index] = imagePixels[index + 1] = imagePixels[index + 2] = 255 - tmpValue;
|
||||
imagePixels[index + 3] = tmpValue;
|
||||
index += 4;
|
||||
}
|
||||
} else {
|
||||
imagePixels[index] = imagePixels[index + 1] = imagePixels[index + 2] = 255 - tmpValue;
|
||||
imagePixels[index + 3] = tmpValue;
|
||||
index += 4;
|
||||
}
|
||||
} else {
|
||||
var module = this.width * this.heightOne;
|
||||
var moduleCur = module - 1;
|
||||
while (binaryIndex < binaryLen) {
|
||||
tmpValue = binaryAlpha[binaryIndex++];
|
||||
if (0 == tmpValue) {
|
||||
len0 = binaryAlpha[binaryIndex++];
|
||||
while (len0 > 0) {
|
||||
len0--;
|
||||
moduleCur++;
|
||||
if (moduleCur === module) {
|
||||
this.offsets[index++] = { pos : binaryIndex, len : len0 + 1 };
|
||||
moduleCur = 0;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
moduleCur++;
|
||||
if (moduleCur === module) {
|
||||
this.offsets[index++] = { pos : binaryIndex - 1, len : -1 };
|
||||
moduleCur = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!this.offsets)
|
||||
delete this.binaryFormat;
|
||||
|
||||
//var t2 = performance.now();
|
||||
//console.log(t2 - t1);
|
||||
};
|
||||
|
@ -185,14 +223,53 @@ define([
|
|||
}
|
||||
|
||||
if (this.supportBinaryFormat) {
|
||||
if (!this.data) {
|
||||
if (!this.data && !this.offsets) {
|
||||
this.openBinary(this.binaryFormat);
|
||||
delete this.binaryFormat;
|
||||
}
|
||||
|
||||
var dataTmp = ctx.createImageData(this.width, this.heightOne);
|
||||
var sizeImage = 4 * this.width * this.heightOne;
|
||||
dataTmp.data.set(new Uint8ClampedArray(this.data.buffer, index * sizeImage, sizeImage));
|
||||
|
||||
if (!this.offsets) {
|
||||
dataTmp.data.set(new Uint8ClampedArray(this.data.buffer, index * sizeImage, sizeImage));
|
||||
} else {
|
||||
var binaryAlpha = this.binaryFormat;
|
||||
var binaryIndex = this.offsets[index].pos;
|
||||
var alphaChannel = 0;
|
||||
var pixelsCount = this.width * this.heightOne;
|
||||
var tmpValue = 0, len0 = 0;
|
||||
var imagePixels = dataTmp.data;
|
||||
if (-1 != this.offsets[index].len) {
|
||||
/*
|
||||
// this values is already 0.
|
||||
for (var i = 0; i < this.offsets[index].len; i++) {
|
||||
pixels[alphaChannel] = 0;
|
||||
alphaChannel += 4;
|
||||
}
|
||||
*/
|
||||
alphaChannel += 4 * this.offsets[index].len;
|
||||
}
|
||||
while (pixelsCount > 0) {
|
||||
tmpValue = binaryAlpha[binaryIndex++];
|
||||
if (0 == tmpValue) {
|
||||
len0 = binaryAlpha[binaryIndex++];
|
||||
if (len0 > pixelsCount)
|
||||
len0 = pixelsCount;
|
||||
while (len0 > 0) {
|
||||
len0--;
|
||||
imagePixels[alphaChannel] = imagePixels[alphaChannel + 1] = imagePixels[alphaChannel + 2] = 255;
|
||||
imagePixels[alphaChannel + 3] = 0; // this value is already 0.
|
||||
alphaChannel += 4;
|
||||
pixelsCount--;
|
||||
}
|
||||
} else {
|
||||
imagePixels[alphaChannel] = imagePixels[alphaChannel + 1] = imagePixels[alphaChannel + 2] = 255 - tmpValue;
|
||||
imagePixels[alphaChannel + 3] = tmpValue;
|
||||
alphaChannel += 4;
|
||||
pixelsCount--;
|
||||
}
|
||||
}
|
||||
}
|
||||
ctx.putImageData(dataTmp, 0, 0);
|
||||
} else {
|
||||
ctx.clearRect(0, 0, this.width, this.heightOne);
|
||||
|
|
|
@ -157,7 +157,7 @@ define([
|
|||
|
||||
setRawValue: function(value) {
|
||||
var value = (value === true || value === 'true' || value === '1' || value === 1 );
|
||||
$('input[type=radio][name=' + this.name + ']').removeClass('checked');
|
||||
value && $('input[type=radio][name=' + this.name + ']').removeClass('checked');
|
||||
this.$radio.toggleClass('checked', value);
|
||||
this.$radio.prop('checked', value);
|
||||
},
|
||||
|
|
|
@ -109,8 +109,12 @@
|
|||
});
|
||||
|
||||
if (opts.hideonclick) {
|
||||
var me = this;
|
||||
var tip = this.$element.data('bs.tooltip');
|
||||
if (tip) tip.tip().on('click', function() {tip.hide();});
|
||||
if (tip) tip.tip().on('click', function() {
|
||||
tip.hide();
|
||||
me.trigger('tooltip:hideonclick', this);
|
||||
});
|
||||
}
|
||||
|
||||
this.$element.on('shown.bs.tooltip', _.bind(this.onTipShown, this));
|
||||
|
|
|
@ -568,7 +568,7 @@ Common.UI.HintManager = new(function() {
|
|||
if (curr.prop('id') === 'btn-goback' || curr.closest('.btn-slot').prop('id') === 'slot-btn-options' ||
|
||||
curr.closest('.btn-slot').prop('id') === 'slot-btn-mode' || curr.prop('id') === 'btn-favorite' || curr.parent().prop('id') === 'tlb-box-users' ||
|
||||
curr.prop('id') === 'left-btn-thumbs' || curr.hasClass('scroll') || curr.prop('id') === 'left-btn-about' ||
|
||||
curr.prop('id') === 'left-btn-support') {
|
||||
curr.prop('id') === 'left-btn-support' || curr.closest('.btn-slot').prop('id') === 'slot-btn-search') {
|
||||
_resetToDefault();
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -613,7 +613,8 @@ define([
|
|||
this.view.turnChanges(state, global);
|
||||
if (userId && this.userCollection) {
|
||||
var rec = this.userCollection.findOriginalUser(userId);
|
||||
rec && this.showTips(Common.Utils.String.format(globalFlag ? this.textOnGlobal : this.textOffGlobal, AscCommon.UserInfoParser.getParsedName(rec.get('username'))));
|
||||
rec && Common.NotificationCenter.trigger('showmessage', {msg: Common.Utils.String.format(globalFlag ? this.textOnGlobal : this.textOffGlobal, AscCommon.UserInfoParser.getParsedName(rec.get('username')))},
|
||||
{timeout: 5000, hideCloseTip: true});
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -903,41 +904,6 @@ define([
|
|||
me.appConfig.reviewHoverMode = val;
|
||||
},
|
||||
|
||||
showTips: function(strings) {
|
||||
var me = this;
|
||||
if (!strings.length) return;
|
||||
if (typeof(strings)!='object') strings = [strings];
|
||||
|
||||
function showNextTip() {
|
||||
var str_tip = strings.shift();
|
||||
if (str_tip) {
|
||||
me.tooltip.setTitle(str_tip);
|
||||
me.tooltip.show();
|
||||
me.tipTimeout = setTimeout(function () {
|
||||
me.tooltip.hide();
|
||||
}, 5000);
|
||||
}
|
||||
}
|
||||
|
||||
if (!this.tooltip) {
|
||||
this.tooltip = new Common.UI.Tooltip({
|
||||
owner: this.getApplication().getController('Toolbar').getView(),
|
||||
hideonclick: true,
|
||||
placement: 'bottom',
|
||||
cls: 'main-info',
|
||||
offset: 30
|
||||
});
|
||||
this.tooltip.on('tooltip:hide', function(cmp){
|
||||
if (cmp==me.tooltip) {
|
||||
clearTimeout(me.tipTimeout);
|
||||
setTimeout(showNextTip, 300);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
showNextTip();
|
||||
},
|
||||
|
||||
applySettings: function(menu) {
|
||||
this.view && this.view.turnSpelling( Common.localStorage.getBool(this.view.appPrefix + "settings-spellcheck", true) );
|
||||
this.view && this.view.turnCoAuthMode( Common.localStorage.getBool(this.view.appPrefix + "settings-coauthmode", true) );
|
||||
|
|
|
@ -209,11 +209,24 @@ define([
|
|||
function updateDocNamePosition(config) {
|
||||
if ( $labelDocName && config) {
|
||||
var $parent = $labelDocName.parent();
|
||||
if (!config.isEdit || !config.customization || !config.customization.compactHeader) {
|
||||
if (!config.isEdit) {
|
||||
var _left_width = $parent.position().left,
|
||||
_right_width = $parent.next().outerWidth();
|
||||
$parent.css('padding-left', _left_width < _right_width ? Math.max(2, _right_width - _left_width) : 2);
|
||||
$parent.css('padding-right', _left_width < _right_width ? 2 : Math.max(2, _left_width - _right_width));
|
||||
} else if (!(config.customization && config.customization.compactHeader)) {
|
||||
var _left_width = $parent.position().left,
|
||||
_right_width = $parent.next().outerWidth(),
|
||||
outerWidth = $labelDocName.outerWidth(),
|
||||
cssWidth = $labelDocName[0].style.width;
|
||||
cssWidth = cssWidth ? parseFloat(cssWidth) : outerWidth;
|
||||
if (cssWidth - outerWidth > 0.1) {
|
||||
$parent.css('padding-left', _left_width < _right_width ? Math.max(2, $parent.outerWidth() - 2 - cssWidth) : 2);
|
||||
$parent.css('padding-right', _left_width < _right_width ? 2 : Math.max(2, $parent.outerWidth() - 2 - cssWidth));
|
||||
} else {
|
||||
$parent.css('padding-left', _left_width < _right_width ? Math.max(2, Math.min(_right_width - _left_width + 2, $parent.outerWidth() - 2 - cssWidth)) : 2);
|
||||
$parent.css('padding-right', _left_width < _right_width ? 2 : Math.max(2, Math.min(_left_width - _right_width + 2, $parent.outerWidth() - 2 - cssWidth)));
|
||||
}
|
||||
}
|
||||
|
||||
if (!(config.customization && config.customization.toolbarHideFileName) && (!config.isEdit || config.customization && config.customization.compactHeader)) {
|
||||
|
@ -226,6 +239,12 @@ define([
|
|||
}
|
||||
}
|
||||
|
||||
function onResize() {
|
||||
if (appConfig && appConfig.isEdit && !(appConfig.customization && appConfig.customization.compactHeader)) {
|
||||
updateDocNamePosition(appConfig);
|
||||
}
|
||||
}
|
||||
|
||||
function onAppShowed(config) {
|
||||
// config.isCrypted =true; //delete fore merge!
|
||||
if ( $labelDocName ) {
|
||||
|
@ -352,6 +371,9 @@ define([
|
|||
|
||||
if (me.btnSearch)
|
||||
me.btnSearch.updateHint(me.tipSearch + Common.Utils.String.platformKey('Ctrl+F'));
|
||||
|
||||
if (appConfig.isEdit && !(appConfig.customization && appConfig.customization.compactHeader))
|
||||
Common.NotificationCenter.on('window:resize', onResize);
|
||||
}
|
||||
|
||||
function onFocusDocName(e){
|
||||
|
@ -779,6 +801,7 @@ define([
|
|||
this.imgCrypted.toggleClass('hidden', false);
|
||||
this._showImgCrypted = false;
|
||||
}
|
||||
(width>=0) && onResize();
|
||||
},
|
||||
|
||||
getTextWidth: function(text) {
|
||||
|
|
|
@ -60,11 +60,11 @@ define([
|
|||
'</div>',
|
||||
'</div>',
|
||||
'<div id="current-plugin-box" class="layout-ct vbox hidden">',
|
||||
'<div id="current-plugin-frame" class="">',
|
||||
'</div>',
|
||||
'<div id="current-plugin-header">',
|
||||
'<label></label>',
|
||||
'<div id="id-plugin-close" class="tool close"></div>',
|
||||
'</div>',
|
||||
'<div id="current-plugin-frame" class="">',
|
||||
'<div id="id-plugin-close" class="close"></div>',
|
||||
'</div>',
|
||||
'</div>',
|
||||
'<div id="plugins-mask" style="display: none;">'
|
||||
|
@ -111,6 +111,13 @@ define([
|
|||
this.currentPluginPanel = $('#current-plugin-box');
|
||||
this.currentPluginFrame = $('#current-plugin-frame');
|
||||
|
||||
this.pluginClose = new Common.UI.Button({
|
||||
parentEl: $('#id-plugin-close'),
|
||||
cls: 'btn-toolbar',
|
||||
iconCls: 'toolbar__icon btn-close',
|
||||
hint: this.textClosePanel
|
||||
});
|
||||
|
||||
this.pluginMenu = new Common.UI.Menu({
|
||||
menuAlign : 'tr-br',
|
||||
items: []
|
||||
|
@ -426,7 +433,8 @@ define([
|
|||
textLoading: 'Loading',
|
||||
textStart: 'Start',
|
||||
textStop: 'Stop',
|
||||
groupCaption: 'Plugins'
|
||||
groupCaption: 'Plugins',
|
||||
textClosePanel: 'Close plugin'
|
||||
|
||||
}, Common.Views.Plugins || {}));
|
||||
});
|
|
@ -52,7 +52,8 @@ define([
|
|||
header: false,
|
||||
cls: 'search-bar',
|
||||
alias: 'SearchBar',
|
||||
showOpenPanel: true
|
||||
showOpenPanel: true,
|
||||
toolclose: 'hide'
|
||||
},
|
||||
|
||||
initialize : function(options) {
|
||||
|
|
|
@ -166,6 +166,9 @@ label {
|
|||
display: block;
|
||||
}
|
||||
|
||||
.padding-very-small {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
.padding-small {
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
|
|
@ -80,17 +80,20 @@
|
|||
|
||||
#current-plugin-header {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 45px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 38px;
|
||||
padding: 10px 12px;
|
||||
top: 0;
|
||||
right: 0;
|
||||
padding: 12px;
|
||||
overflow: hidden;
|
||||
border-bottom: @scaled-one-px-value-ie solid @border-toolbar-ie;
|
||||
border-bottom: @scaled-one-px-value solid @border-toolbar;
|
||||
|
||||
|
||||
label {
|
||||
width: 100%;
|
||||
margin-top: 2px;
|
||||
padding-right: 20px;
|
||||
font-size: 12px;
|
||||
.font-weight-bold();
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
@ -98,20 +101,18 @@
|
|||
}
|
||||
}
|
||||
|
||||
.tool {
|
||||
.close {
|
||||
position: absolute;
|
||||
top: 9px;
|
||||
right: 7px;
|
||||
margin: 0;
|
||||
/*&:before, &:after {
|
||||
width: 2px;
|
||||
width: @scaled-two-px-value;
|
||||
}*/
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
top: 12px;
|
||||
right: 12px;
|
||||
}
|
||||
|
||||
#current-plugin-frame {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding-top: 38px;
|
||||
padding-top: 45px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
|
||||
class CThumbnailLoader {
|
||||
constructor() {
|
||||
this.image = null;
|
||||
this.binaryFormat = null;
|
||||
this.data = null;
|
||||
this.width = 0;
|
||||
this.heightOne = 0;
|
||||
this.offsets = null;
|
||||
}
|
||||
|
||||
load(url, callback) {
|
||||
|
@ -21,53 +23,88 @@ class CThumbnailLoader {
|
|||
|
||||
xhr.onload = e => {
|
||||
// TODO: check errors
|
||||
this.binaryFormat = e.target.response;
|
||||
this.binaryFormat = new Uint8Array(e.target.response);
|
||||
callback();
|
||||
};
|
||||
|
||||
xhr.send(null);
|
||||
}
|
||||
|
||||
_openBinary(arrayBuffer) {
|
||||
openBinary(arrayBuffer) {
|
||||
//var t1 = performance.now();
|
||||
|
||||
const binaryAlpha = new Uint8Array(arrayBuffer);
|
||||
const binaryAlpha = this.binaryFormat;
|
||||
this.width = (binaryAlpha[0] << 24) | (binaryAlpha[1] << 16) | (binaryAlpha[2] << 8) | (binaryAlpha[3] << 0);
|
||||
this.heightOne = (binaryAlpha[4] << 24) | (binaryAlpha[5] << 16) | (binaryAlpha[6] << 8) | (binaryAlpha[7] << 0);
|
||||
const count = (binaryAlpha[8] << 24) | (binaryAlpha[9] << 16) | (binaryAlpha[10] << 8) | (binaryAlpha[11] << 0);
|
||||
const height = count * this.heightOne;
|
||||
|
||||
this.data = new Uint8ClampedArray(4 * this.width * height);
|
||||
const MAX_MEMORY_SIZE = 100000000;
|
||||
const memorySize = 4 * this.width * height;
|
||||
const isOffsets = memorySize > MAX_MEMORY_SIZE;
|
||||
|
||||
if (!isOffsets)
|
||||
this.data = new Uint8ClampedArray(memorySize);
|
||||
else this.offsets = new Array(count);
|
||||
|
||||
var binaryIndex = 12;
|
||||
var imagePixels = this.data;
|
||||
var binaryLen = binaryAlpha.length;
|
||||
var index = 0;
|
||||
|
||||
var len0 = 0;
|
||||
var tmpValue = 0;
|
||||
while (binaryIndex < binaryAlpha.length) {
|
||||
tmpValue = binaryAlpha[binaryIndex++];
|
||||
if (0 == tmpValue) {
|
||||
len0 = binaryAlpha[binaryIndex++];
|
||||
while (len0 > 0) {
|
||||
len0--;
|
||||
imagePixels[index] = imagePixels[index + 1] = imagePixels[index + 2] = 255;
|
||||
imagePixels[index + 3] = 0; // this value is already 0.
|
||||
|
||||
if (!isOffsets) {
|
||||
var imagePixels = this.data;
|
||||
while (binaryIndex < binaryLen) {
|
||||
tmpValue = binaryAlpha[binaryIndex++];
|
||||
if (0 == tmpValue) {
|
||||
len0 = binaryAlpha[binaryIndex++];
|
||||
while (len0 > 0) {
|
||||
len0--;
|
||||
imagePixels[index] = imagePixels[index + 1] = imagePixels[index + 2] = 255;
|
||||
imagePixels[index + 3] = 0; // this value is already 0.
|
||||
index += 4;
|
||||
}
|
||||
} else {
|
||||
imagePixels[index] = imagePixels[index + 1] = imagePixels[index + 2] = 255 - tmpValue;
|
||||
imagePixels[index + 3] = tmpValue;
|
||||
index += 4;
|
||||
}
|
||||
} else {
|
||||
imagePixels[index] = imagePixels[index + 1] = imagePixels[index + 2] = 255 - tmpValue;
|
||||
imagePixels[index + 3] = tmpValue;
|
||||
index += 4;
|
||||
}
|
||||
} else {
|
||||
var module = this.width * this.heightOne;
|
||||
var moduleCur = module - 1;
|
||||
while (binaryIndex < binaryLen) {
|
||||
tmpValue = binaryAlpha[binaryIndex++];
|
||||
if (0 == tmpValue) {
|
||||
len0 = binaryAlpha[binaryIndex++];
|
||||
while (len0 > 0) {
|
||||
len0--;
|
||||
moduleCur++;
|
||||
if (moduleCur === module) {
|
||||
this.offsets[index++] = { pos : binaryIndex, len : len0 + 1 };
|
||||
moduleCur = 0;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
moduleCur++;
|
||||
if (moduleCur === module) {
|
||||
this.offsets[index++] = { pos : binaryIndex - 1, len : -1 };
|
||||
moduleCur = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( !this.offsets )
|
||||
delete this.binaryFormat;
|
||||
|
||||
//var t2 = performance.now();
|
||||
//console.log(t2 - t1);
|
||||
};
|
||||
|
||||
getImage = function(index, canvas, ctx) {
|
||||
//var t1 = performance.now();
|
||||
if (!canvas) {
|
||||
canvas = document.createElement("canvas");
|
||||
canvas.width = this.width;
|
||||
|
@ -78,14 +115,53 @@ class CThumbnailLoader {
|
|||
ctx = canvas.getContext("2d");
|
||||
}
|
||||
|
||||
if (!this.data) {
|
||||
this._openBinary(this.binaryFormat);
|
||||
delete this.binaryFormat;
|
||||
if (!this.data && !this.offsets) {
|
||||
this.openBinary(this.binaryFormat);
|
||||
}
|
||||
|
||||
let dataTmp = ctx.createImageData(this.width, this.heightOne);
|
||||
const sizeImage = 4 * this.width * this.heightOne;
|
||||
dataTmp.data.set(new Uint8ClampedArray(this.data.buffer, index * sizeImage, sizeImage));
|
||||
|
||||
if (!this.offsets) {
|
||||
dataTmp.data.set(new Uint8ClampedArray(this.data.buffer, index * sizeImage, sizeImage));
|
||||
} else {
|
||||
const binaryAlpha = this.binaryFormat;
|
||||
var binaryIndex = this.offsets[index].pos;
|
||||
var alphaChannel = 0;
|
||||
var pixelsCount = this.width * this.heightOne;
|
||||
var tmpValue = 0, len0 = 0;
|
||||
let imagePixels = dataTmp.data;
|
||||
if (-1 != this.offsets[index].len) {
|
||||
/*
|
||||
// this values is already 0.
|
||||
for (var i = 0; i < this.offsets[index].len; i++) {
|
||||
pixels[alphaChannel] = 0;
|
||||
alphaChannel += 4;
|
||||
}
|
||||
*/
|
||||
alphaChannel += 4 * this.offsets[index].len;
|
||||
}
|
||||
while (pixelsCount > 0) {
|
||||
tmpValue = binaryAlpha[binaryIndex++];
|
||||
if (0 == tmpValue) {
|
||||
len0 = binaryAlpha[binaryIndex++];
|
||||
if (len0 > pixelsCount)
|
||||
len0 = pixelsCount;
|
||||
while (len0 > 0) {
|
||||
len0--;
|
||||
imagePixels[alphaChannel] = imagePixels[alphaChannel + 1] = imagePixels[alphaChannel + 2] = 255;
|
||||
imagePixels[alphaChannel + 3] = 0; // this value is already 0.
|
||||
alphaChannel += 4;
|
||||
pixelsCount--;
|
||||
}
|
||||
} else {
|
||||
imagePixels[alphaChannel] = imagePixels[alphaChannel + 1] = imagePixels[alphaChannel + 2] = 255 - tmpValue;
|
||||
imagePixels[alphaChannel + 3] = tmpValue;
|
||||
alphaChannel += 4;
|
||||
pixelsCount--;
|
||||
}
|
||||
}
|
||||
}
|
||||
ctx.putImageData(dataTmp, 0, 0);
|
||||
|
||||
//var t2 = performance.now();
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
"common.view.modals.txtHeight": "Ύψος",
|
||||
"common.view.modals.txtShare": "Διαμοιρασμός συνδέσμου",
|
||||
"common.view.modals.txtWidth": "Πλάτος",
|
||||
"common.view.SearchBar.textFind": "Εύρεση",
|
||||
"DE.ApplicationController.convertationErrorText": "Αποτυχία μετατροπής.",
|
||||
"DE.ApplicationController.convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.",
|
||||
"DE.ApplicationController.criticalErrorTitle": "Σφάλμα",
|
||||
|
@ -46,5 +47,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Άνοιγμα τοποθεσίας αρχείου",
|
||||
"DE.ApplicationView.txtFullScreen": "Πλήρης οθόνη",
|
||||
"DE.ApplicationView.txtPrint": "Εκτύπωση",
|
||||
"DE.ApplicationView.txtSearch": "Αναζήτηση",
|
||||
"DE.ApplicationView.txtShare": "Διαμοιρασμός"
|
||||
}
|
|
@ -47,6 +47,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Open file location",
|
||||
"DE.ApplicationView.txtFullScreen": "Full Screen",
|
||||
"DE.ApplicationView.txtPrint": "Print",
|
||||
"DE.ApplicationView.txtShare": "Share",
|
||||
"DE.ApplicationView.txtSearch": "Search"
|
||||
"DE.ApplicationView.txtSearch": "Search",
|
||||
"DE.ApplicationView.txtShare": "Share"
|
||||
}
|
|
@ -47,5 +47,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Ireki fitxategiaren kokalekua",
|
||||
"DE.ApplicationView.txtFullScreen": "Pantaila osoa",
|
||||
"DE.ApplicationView.txtPrint": "Inprimatu",
|
||||
"DE.ApplicationView.txtSearch": "Bilatu",
|
||||
"DE.ApplicationView.txtShare": "Partekatu"
|
||||
}
|
|
@ -4,6 +4,7 @@
|
|||
"common.view.modals.txtHeight": "Altura",
|
||||
"common.view.modals.txtShare": "Compartir ligazón",
|
||||
"common.view.modals.txtWidth": "Largura",
|
||||
"common.view.SearchBar.textFind": "Buscar",
|
||||
"DE.ApplicationController.convertationErrorText": "Fallou a conversión.",
|
||||
"DE.ApplicationController.convertationTimeoutText": "Excedeu o tempo límite de conversión.",
|
||||
"DE.ApplicationController.criticalErrorTitle": "Erro",
|
||||
|
@ -46,5 +47,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Abrir ubicación do ficheiro",
|
||||
"DE.ApplicationView.txtFullScreen": "Pantalla completa",
|
||||
"DE.ApplicationView.txtPrint": "Imprimir",
|
||||
"DE.ApplicationView.txtSearch": "Buscar",
|
||||
"DE.ApplicationView.txtShare": "Compartir"
|
||||
}
|
52
apps/documenteditor/embed/locale/hy.json
Normal file
52
apps/documenteditor/embed/locale/hy.json
Normal file
|
@ -0,0 +1,52 @@
|
|||
{
|
||||
"common.view.modals.txtCopy": "Պատճենել սեղմատախտակում",
|
||||
"common.view.modals.txtEmbed": "Ներկառուցել",
|
||||
"common.view.modals.txtHeight": "Բարձրություն",
|
||||
"common.view.modals.txtShare": "Տարածել հղումը",
|
||||
"common.view.modals.txtWidth": "Լայնք",
|
||||
"common.view.SearchBar.textFind": "Գտնել",
|
||||
"DE.ApplicationController.convertationErrorText": "Փոխարկումը խափանվեց։",
|
||||
"DE.ApplicationController.convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։",
|
||||
"DE.ApplicationController.criticalErrorTitle": "Սխալ",
|
||||
"DE.ApplicationController.downloadErrorText": "Ներբեռնումը ձախողվեց։",
|
||||
"DE.ApplicationController.downloadTextText": "Փաստաթղթի ներբեռնում...",
|
||||
"DE.ApplicationController.errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի իրավունքը չունեք։<br>Դիմեք փաստաթղթերի ձեր սպասարկիչի վարիչին։",
|
||||
"DE.ApplicationController.errorDefaultMessage": "Սխալի դասիչ՝ %1",
|
||||
"DE.ApplicationController.errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում սխալ է տեղի ունեցել:<br>Օգտագործեք «Ներբեռնում որպես...» տարբերակը՝ ֆայլի կրկնօրինակը ձեր համակարգչի կոշտ սկավառակում պահելու համար:",
|
||||
"DE.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
|
||||
"DE.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:<br> Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
|
||||
"DE.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:",
|
||||
"DE.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
|
||||
"DE.ApplicationController.errorSubmit": "Չհաջողվեց հաստատել",
|
||||
"DE.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։<br>Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",
|
||||
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։<br>Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։",
|
||||
"DE.ApplicationController.errorUserDrop": "Այս պահին ֆայլն անհասանելի է։",
|
||||
"DE.ApplicationController.notcriticalErrorTitle": "Զգուշացում",
|
||||
"DE.ApplicationController.openErrorText": "Ֆայլը բացելիս սխալ է տեղի ունեցել:",
|
||||
"DE.ApplicationController.scriptLoadError": "Կապը խիստ թույլ է, բաղադրիչների մի մասը չբեռնվեց։ Խնդրում ենք էջը թարմացնել։",
|
||||
"DE.ApplicationController.textAnonymous": "Անանուն",
|
||||
"DE.ApplicationController.textClear": "Մաքրել բոլոր դաշտերը",
|
||||
"DE.ApplicationController.textGotIt": "Հասկանալի է",
|
||||
"DE.ApplicationController.textGuest": "Հյուր",
|
||||
"DE.ApplicationController.textLoadingDocument": "Փաստաթղթի բեռնում",
|
||||
"DE.ApplicationController.textNext": "Հաջորդ դաշտ",
|
||||
"DE.ApplicationController.textOf": "սրանից",
|
||||
"DE.ApplicationController.textRequired": "Լրացրել բոլոր անհրաժեշտ դաշտերը՝ ձևն ուղարկելու համար:",
|
||||
"DE.ApplicationController.textSubmit": "Հաստատել",
|
||||
"DE.ApplicationController.textSubmited": "<b>Ձևը հաջողությամբ ուղարկվեց</b><br>Սեղմեք՝ հուշակը փակելու համար",
|
||||
"DE.ApplicationController.txtClose": "Փակել",
|
||||
"DE.ApplicationController.txtEmpty": "(Դատարկ)",
|
||||
"DE.ApplicationController.txtPressLink": "Սեղմել Ctrl և անցնել հղումը",
|
||||
"DE.ApplicationController.unknownErrorText": "Անհայտ սխալ։",
|
||||
"DE.ApplicationController.unsupportedBrowserErrorText": "Ձեր դիտարկիչը չի աջակցվում։",
|
||||
"DE.ApplicationController.waitText": "Խնդրում ենք սպասել...",
|
||||
"DE.ApplicationView.txtDownload": "Ներբեռնել",
|
||||
"DE.ApplicationView.txtDownloadDocx": "Ներբեռնել որպես docx",
|
||||
"DE.ApplicationView.txtDownloadPdf": "Ներբեռնել PDF ձևաչափով",
|
||||
"DE.ApplicationView.txtEmbed": "Ներկառուցել",
|
||||
"DE.ApplicationView.txtFileLocation": "Բացել ֆայլի պանակը",
|
||||
"DE.ApplicationView.txtFullScreen": "Լիէկրան",
|
||||
"DE.ApplicationView.txtPrint": "Տպել",
|
||||
"DE.ApplicationView.txtSearch": "Որոնել",
|
||||
"DE.ApplicationView.txtShare": "Տարածել"
|
||||
}
|
|
@ -4,6 +4,7 @@
|
|||
"common.view.modals.txtHeight": "Hoogte",
|
||||
"common.view.modals.txtShare": "Link delen",
|
||||
"common.view.modals.txtWidth": "Breedte",
|
||||
"common.view.SearchBar.textFind": "Zoeken",
|
||||
"DE.ApplicationController.convertationErrorText": "Conversie is mislukt",
|
||||
"DE.ApplicationController.convertationTimeoutText": "Time-out voor conversie overschreden.",
|
||||
"DE.ApplicationController.criticalErrorTitle": "Fout",
|
||||
|
|
|
@ -47,5 +47,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Deschidere locația fișierului",
|
||||
"DE.ApplicationView.txtFullScreen": "Ecran complet",
|
||||
"DE.ApplicationView.txtPrint": "Imprimare",
|
||||
"DE.ApplicationView.txtSearch": "Căutare",
|
||||
"DE.ApplicationView.txtShare": "Partajează"
|
||||
}
|
|
@ -47,5 +47,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "Открыть расположение файла",
|
||||
"DE.ApplicationView.txtFullScreen": "Во весь экран",
|
||||
"DE.ApplicationView.txtPrint": "Печать",
|
||||
"DE.ApplicationView.txtSearch": "Поиск",
|
||||
"DE.ApplicationView.txtShare": "Поделиться"
|
||||
}
|
|
@ -4,6 +4,7 @@
|
|||
"common.view.modals.txtHeight": "高度",
|
||||
"common.view.modals.txtShare": "分享链接",
|
||||
"common.view.modals.txtWidth": "宽度",
|
||||
"common.view.SearchBar.textFind": "查找",
|
||||
"DE.ApplicationController.convertationErrorText": "转换失败",
|
||||
"DE.ApplicationController.convertationTimeoutText": "转换超时",
|
||||
"DE.ApplicationController.criticalErrorTitle": "错误",
|
||||
|
@ -46,5 +47,6 @@
|
|||
"DE.ApplicationView.txtFileLocation": "打开文件所在位置",
|
||||
"DE.ApplicationView.txtFullScreen": "全屏",
|
||||
"DE.ApplicationView.txtPrint": "打印",
|
||||
"DE.ApplicationView.txtSearch": "搜索",
|
||||
"DE.ApplicationView.txtShare": "共享"
|
||||
}
|
|
@ -47,8 +47,6 @@ require.config({
|
|||
jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel',
|
||||
xregexp : '../vendor/xregexp/xregexp-all-min',
|
||||
sockjs : '../vendor/sockjs/sockjs.min',
|
||||
jszip : '../vendor/jszip/jszip.min',
|
||||
jsziputils : '../vendor/jszip-utils/jszip-utils.min',
|
||||
allfonts : '../../sdkjs/common/AllFonts',
|
||||
sdk : '../../sdkjs/word/sdk-all-min',
|
||||
api : 'api/documents/api',
|
||||
|
@ -102,9 +100,7 @@ require.config({
|
|||
'underscore',
|
||||
'allfonts',
|
||||
'xregexp',
|
||||
'sockjs',
|
||||
'jszip',
|
||||
'jsziputils'
|
||||
'sockjs'
|
||||
]
|
||||
},
|
||||
gateway: {
|
||||
|
|
|
@ -47,8 +47,6 @@ require.config({
|
|||
jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel',
|
||||
xregexp : '../vendor/xregexp/xregexp-all-min',
|
||||
sockjs : '../vendor/sockjs/sockjs.min',
|
||||
jszip : '../vendor/jszip/jszip.min',
|
||||
jsziputils : '../vendor/jszip-utils/jszip-utils.min',
|
||||
api : 'api/documents/api',
|
||||
core : 'common/main/lib/core/application',
|
||||
notification : 'common/main/lib/core/NotificationCenter',
|
||||
|
@ -115,8 +113,6 @@ require([
|
|||
'analytics',
|
||||
'gateway',
|
||||
'locale',
|
||||
'jszip',
|
||||
'jsziputils',
|
||||
'sockjs',
|
||||
'underscore'
|
||||
], function (Backbone, Bootstrap, Core) {
|
||||
|
|
|
@ -32,6 +32,10 @@
|
|||
"Common.UI.Calendar.textShortTuesday": "Τρι",
|
||||
"Common.UI.Calendar.textShortWednesday": "Τετ",
|
||||
"Common.UI.Calendar.textYears": "Έτη",
|
||||
"Common.UI.SearchBar.textFind": "Εύρεση",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Κλείσιμο αναζήτησης",
|
||||
"Common.UI.SearchBar.tipNextResult": "Επόμενο αποτέλεσμα",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Προηγούμενο αποτέλεσμα",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Κλασικό Ανοιχτό",
|
||||
"Common.UI.Themes.txtThemeDark": "Σκούρο",
|
||||
"Common.UI.Themes.txtThemeLight": "Ανοιχτό",
|
||||
|
@ -166,6 +170,7 @@
|
|||
"DE.Views.ApplicationView.txtFileLocation": "Άνοιγμα τοποθεσίας αρχείου",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "Πλήρης οθόνη",
|
||||
"DE.Views.ApplicationView.txtPrint": "Εκτύπωση",
|
||||
"DE.Views.ApplicationView.txtSearch": "Αναζήτηση",
|
||||
"DE.Views.ApplicationView.txtShare": "Διαμοιρασμός",
|
||||
"DE.Views.ApplicationView.txtTheme": "Θέμα διεπαφής"
|
||||
}
|
|
@ -32,6 +32,10 @@
|
|||
"Common.UI.Calendar.textShortTuesday": "Tu",
|
||||
"Common.UI.Calendar.textShortWednesday": "We",
|
||||
"Common.UI.Calendar.textYears": "Years",
|
||||
"Common.UI.SearchBar.textFind": "Find",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Close search",
|
||||
"Common.UI.SearchBar.tipNextResult": "Next result",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Previous result",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Classic Light",
|
||||
"Common.UI.Themes.txtThemeDark": "Dark",
|
||||
"Common.UI.Themes.txtThemeLight": "Light",
|
||||
|
@ -45,10 +49,6 @@
|
|||
"Common.UI.Window.textInformation": "Information",
|
||||
"Common.UI.Window.textWarning": "Warning",
|
||||
"Common.UI.Window.yesButtonText": "Yes",
|
||||
"Common.UI.SearchBar.textFind": "Find",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Previous result",
|
||||
"Common.UI.SearchBar.tipNextResult": "Next result",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Close search",
|
||||
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again",
|
||||
"Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using context menu actions will be performed within this editor tab only.<br><br>To copy or paste to or from applications outside the editor tab use the following keyboard combinations:",
|
||||
"Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions",
|
||||
|
@ -170,7 +170,7 @@
|
|||
"DE.Views.ApplicationView.txtFileLocation": "Open file location",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "Full Screen",
|
||||
"DE.Views.ApplicationView.txtPrint": "Print",
|
||||
"DE.Views.ApplicationView.txtSearch": "Search",
|
||||
"DE.Views.ApplicationView.txtShare": "Share",
|
||||
"DE.Views.ApplicationView.txtTheme": "Interface theme",
|
||||
"DE.Views.ApplicationView.txtSearch": "Search"
|
||||
"DE.Views.ApplicationView.txtTheme": "Interface theme"
|
||||
}
|
|
@ -32,6 +32,10 @@
|
|||
"Common.UI.Calendar.textShortTuesday": "ar.",
|
||||
"Common.UI.Calendar.textShortWednesday": "az.",
|
||||
"Common.UI.Calendar.textYears": "Urteak",
|
||||
"Common.UI.SearchBar.textFind": "Bilatu",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Itxi bilaketa",
|
||||
"Common.UI.SearchBar.tipNextResult": "Hurrengo emaitza",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Aurreko emaitza",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Klasiko argia",
|
||||
"Common.UI.Themes.txtThemeDark": "Iluna",
|
||||
"Common.UI.Themes.txtThemeLight": "Argia",
|
||||
|
@ -166,6 +170,7 @@
|
|||
"DE.Views.ApplicationView.txtFileLocation": "Ireki fitxategiaren kokalekua",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "Pantaila osoa",
|
||||
"DE.Views.ApplicationView.txtPrint": "Inprimatu",
|
||||
"DE.Views.ApplicationView.txtSearch": "Bilatu",
|
||||
"DE.Views.ApplicationView.txtShare": "Partekatu",
|
||||
"DE.Views.ApplicationView.txtTheme": "Interfazearen gaia"
|
||||
}
|
|
@ -32,6 +32,10 @@
|
|||
"Common.UI.Calendar.textShortTuesday": "Ter",
|
||||
"Common.UI.Calendar.textShortWednesday": "mi.",
|
||||
"Common.UI.Calendar.textYears": "Anos",
|
||||
"Common.UI.SearchBar.textFind": "Atopar",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Pechar busca",
|
||||
"Common.UI.SearchBar.tipNextResult": "Seguinte resultado",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Anterior resultado",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Clásico claro",
|
||||
"Common.UI.Themes.txtThemeDark": "Escuro",
|
||||
"Common.UI.Themes.txtThemeLight": "Claro",
|
||||
|
@ -166,6 +170,7 @@
|
|||
"DE.Views.ApplicationView.txtFileLocation": "Abrir ubicación do ficheiro",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "Pantalla completa",
|
||||
"DE.Views.ApplicationView.txtPrint": "Imprimir",
|
||||
"DE.Views.ApplicationView.txtSearch": "Buscar",
|
||||
"DE.Views.ApplicationView.txtShare": "Compartir",
|
||||
"DE.Views.ApplicationView.txtTheme": "Tema da interface"
|
||||
}
|
176
apps/documenteditor/forms/locale/hy.json
Normal file
176
apps/documenteditor/forms/locale/hy.json
Normal file
|
@ -0,0 +1,176 @@
|
|||
{
|
||||
"Common.UI.Calendar.textApril": "Ապրիլ",
|
||||
"Common.UI.Calendar.textAugust": "Օգոստոս",
|
||||
"Common.UI.Calendar.textDecember": "Դեկտեմբեր",
|
||||
"Common.UI.Calendar.textFebruary": "Փետրվար",
|
||||
"Common.UI.Calendar.textJanuary": "Հունվար",
|
||||
"Common.UI.Calendar.textJuly": "Հուլիս",
|
||||
"Common.UI.Calendar.textJune": "Հունիս",
|
||||
"Common.UI.Calendar.textMarch": "Մարտ",
|
||||
"Common.UI.Calendar.textMay": "Մայիս ",
|
||||
"Common.UI.Calendar.textMonths": "ամիսներ",
|
||||
"Common.UI.Calendar.textNovember": "Նոյեմբեր",
|
||||
"Common.UI.Calendar.textOctober": "Հոկտեմբեր",
|
||||
"Common.UI.Calendar.textSeptember": "Սեպտեմբեր",
|
||||
"Common.UI.Calendar.textShortApril": "Ապր",
|
||||
"Common.UI.Calendar.textShortAugust": "Օգս",
|
||||
"Common.UI.Calendar.textShortDecember": "Դեկ",
|
||||
"Common.UI.Calendar.textShortFebruary": "Փետ",
|
||||
"Common.UI.Calendar.textShortFriday": "Ուրբ",
|
||||
"Common.UI.Calendar.textShortJanuary": "Հունվար",
|
||||
"Common.UI.Calendar.textShortJuly": "Հուլիս",
|
||||
"Common.UI.Calendar.textShortJune": "Հունիս",
|
||||
"Common.UI.Calendar.textShortMarch": "Մարտ",
|
||||
"Common.UI.Calendar.textShortMay": "Մայիս ",
|
||||
"Common.UI.Calendar.textShortMonday": "Ամս",
|
||||
"Common.UI.Calendar.textShortNovember": "Նոյ",
|
||||
"Common.UI.Calendar.textShortOctober": "Հոկտ",
|
||||
"Common.UI.Calendar.textShortSaturday": "ՈԱ",
|
||||
"Common.UI.Calendar.textShortSeptember": "Սպտ",
|
||||
"Common.UI.Calendar.textShortSunday": "SU",
|
||||
"Common.UI.Calendar.textShortThursday": "Հնգ",
|
||||
"Common.UI.Calendar.textShortTuesday": "Երք",
|
||||
"Common.UI.Calendar.textShortWednesday": "Չրք",
|
||||
"Common.UI.Calendar.textYears": "Տարիներ",
|
||||
"Common.UI.SearchBar.textFind": "Գտնել",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Փակել որոնումը",
|
||||
"Common.UI.SearchBar.tipNextResult": "Հաջորդ արդյունքը",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Նախորդ արդյունքը",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Դասական լույս",
|
||||
"Common.UI.Themes.txtThemeDark": "Մուգ",
|
||||
"Common.UI.Themes.txtThemeLight": "Լույս",
|
||||
"Common.UI.Window.cancelButtonText": "Չեղարկել",
|
||||
"Common.UI.Window.closeButtonText": "Փակել",
|
||||
"Common.UI.Window.noButtonText": "Ոչ",
|
||||
"Common.UI.Window.okButtonText": "Լավ",
|
||||
"Common.UI.Window.textConfirmation": "Հաստատում",
|
||||
"Common.UI.Window.textDontShow": "Այս գրությունն այլևս ցույց չտալ",
|
||||
"Common.UI.Window.textError": "Սխալ",
|
||||
"Common.UI.Window.textInformation": "Տեղեկատվություն ",
|
||||
"Common.UI.Window.textWarning": "Զգուշացում",
|
||||
"Common.UI.Window.yesButtonText": "Այո",
|
||||
"Common.Views.CopyWarningDialog.textDontShow": "Այս գրությունն այլևս ցույց չտալ",
|
||||
"Common.Views.CopyWarningDialog.textMsg": "Պատճենել, կտրել և տեղադրել գործողությունները՝ օգտագործելով համատեքստային ընտրացանկի գործողությունները, կիրականացվեն միայն այս խմբագրիչի ներդիրում:<br><br>Խմբագրի ներդիրից դուրս գտնվող հավելվածներում կամ դրանցից պատճենելու կամ տեղադրելու համար օգտագործեք ստեղնաշարի հետևյալ համակցությունները.",
|
||||
"Common.Views.CopyWarningDialog.textTitle": "Պատճենելու, կտրելու և տեղադրելու գործողություններ",
|
||||
"Common.Views.CopyWarningDialog.textToCopy": "պատճենման համար",
|
||||
"Common.Views.CopyWarningDialog.textToCut": "Կտրելու համար",
|
||||
"Common.Views.CopyWarningDialog.textToPaste": "փակցնելու համար",
|
||||
"Common.Views.EmbedDialog.textHeight": "Բարձրություն",
|
||||
"Common.Views.EmbedDialog.textTitle": "Ներկառուցել",
|
||||
"Common.Views.EmbedDialog.textWidth": "Լայնք",
|
||||
"Common.Views.EmbedDialog.txtCopy": "Պատճենել սեղմատախտակում",
|
||||
"Common.Views.EmbedDialog.warnCopy": "Բրաուզերի սխալ! Օգտագործեք ստեղնաշարի դյուրանցում [Ctrl] + [C]",
|
||||
"Common.Views.ImageFromUrlDialog.textUrl": "Փակցնել նկարի URL՝",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Այս դաշտը պետք է լինի URL \"http://www.example.com\" ձևաչափով",
|
||||
"Common.Views.OpenDialog.closeButtonText": "Փակել ֆայլը",
|
||||
"Common.Views.OpenDialog.txtEncoding": "Կոդավորում",
|
||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Գաղտնաբառը սխալ է:",
|
||||
"Common.Views.OpenDialog.txtOpenFile": "Մուտքագրել գաղտնաբառ՝ ֆայլը բացելու համար",
|
||||
"Common.Views.OpenDialog.txtPassword": "Գաղտնաբառ",
|
||||
"Common.Views.OpenDialog.txtPreview": "Նախադիտել",
|
||||
"Common.Views.OpenDialog.txtProtected": "Երբ գաղտնաբառը գրեք ու նիշքը բացեք, ընթացիկ գաղտնաբառը կվերակայվի։",
|
||||
"Common.Views.OpenDialog.txtTitle": "Ընտրել %1 ընտրանքներ",
|
||||
"Common.Views.OpenDialog.txtTitleProtected": "Պաշտպանված ֆայլ",
|
||||
"Common.Views.SaveAsDlg.textLoading": "Բեռնվում է",
|
||||
"Common.Views.SaveAsDlg.textTitle": "Պահպանման պանակ",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Բեռնվում է",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Ընտրել տվյալների աղբյուր",
|
||||
"Common.Views.ShareDialog.textTitle": "Տարածել հղումը",
|
||||
"Common.Views.ShareDialog.txtCopy": "Պատճենել սեղմատախտակում",
|
||||
"Common.Views.ShareDialog.warnCopy": "Բրաուզերի սխալ! Օգտագործեք ստեղնաշարի դյուրանցում [Ctrl] + [C]",
|
||||
"DE.Controllers.ApplicationController.convertationErrorText": "Փոխարկումը խափանվեց։",
|
||||
"DE.Controllers.ApplicationController.convertationTimeoutText": "Փոխակերպման ժամկետը գերազանցվել է:",
|
||||
"DE.Controllers.ApplicationController.criticalErrorTitle": "Սխալ",
|
||||
"DE.Controllers.ApplicationController.downloadErrorText": "Ներբեռնումը ձախողվեց։",
|
||||
"DE.Controllers.ApplicationController.downloadTextText": "Փաստաթղթի ներբեռնում...",
|
||||
"DE.Controllers.ApplicationController.errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի իրավունքը չունեք։<br>Դիմեք փաստաթղթերի ձեր սպասարկիչի վարիչին։",
|
||||
"DE.Controllers.ApplicationController.errorBadImageUrl": "Նկարի URL-ը սխալ է",
|
||||
"DE.Controllers.ApplicationController.errorConnectToServer": "Փաստաթուղթը չպահպանվեց։ Խնդրում ենք, ստուգել միացման կարգավորումները կամ կապ հաստատել ձեր վարիչի հետ։<br>Երբ սեղմեք «Լավ» կոճակը, Ձեզ կառաջարկվի փաստաթուղթը ներբեռնել։",
|
||||
"DE.Controllers.ApplicationController.errorDataEncrypted": "Ընդունվել են գաղտնագրված փոփոխությունները, դրանք չեն կարող վերծանելվել։",
|
||||
"DE.Controllers.ApplicationController.errorDefaultMessage": "Սխալի կոդ՝ %1",
|
||||
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում սխալ է տեղի ունեցել:<br>Օգտագործեք «Ներբեռնում որպես...» տարբերակը՝ ֆայլի կրկնօրինակը ձեր համակարգչի կոշտ սկավառակում պահելու համար:",
|
||||
"DE.Controllers.ApplicationController.errorEditingSaveas": "Փաստաթղթի հետ աշխատանքի ընթացքում սխալ է տեղի ունեցել:<br>Օգտագործեք «Պահպանել որպես...» տարբերակը՝ ֆայլի կրկնօրինակը ձեր համակարգչի կոշտ սկավառակում պահելու համար:",
|
||||
"DE.Controllers.ApplicationController.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։",
|
||||
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:<br> Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
|
||||
"DE.Controllers.ApplicationController.errorForceSave": "Սխալ է տեղի ունեցել ֆայլը պահելիս:Խնդրում ենք օգտագործել «Ներբեռնել որպես» տարբերակը՝ ֆայլը ձեր համակարգչի կոշտ սկավառակում պահելու համար կամ ավելի ուշ նորից փորձեք:",
|
||||
"DE.Controllers.ApplicationController.errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
|
||||
"DE.Controllers.ApplicationController.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։",
|
||||
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։",
|
||||
"DE.Controllers.ApplicationController.errorSessionIdle": "Փաստաթուղթը երկար ժամանակ չի խմբագրվել։ Նորի՛ց բեռնեք էջը։",
|
||||
"DE.Controllers.ApplicationController.errorSessionToken": "Սպասարկիչի հետ կապն ընդհատվել է։ Խնդրում ենք վերբեռնել էջը:",
|
||||
"DE.Controllers.ApplicationController.errorSubmit": "Չհաջողվեց հաստատել",
|
||||
"DE.Controllers.ApplicationController.errorToken": "Փաստաթղթի անվտանգության կտրոնը ճիշտ չի ձևակերպված։<br>Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",
|
||||
"DE.Controllers.ApplicationController.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։<br>Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։",
|
||||
"DE.Controllers.ApplicationController.errorUpdateVersion": "Ֆայլի տարբերակը փոխվել է։ Էջը նորից կբեռնվի։",
|
||||
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։<br>Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։",
|
||||
"DE.Controllers.ApplicationController.errorUserDrop": "Այս պահին ֆայլն անհասանելի է։",
|
||||
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Միացումն ընդհատվել է։ Դուք կարող եք շարունակել դիտել փաստաթուղթը,<br>բայց չեք կարողանա ներբեռնել կամ տպել, մինչև միացումը չվերականգնվի։",
|
||||
"DE.Controllers.ApplicationController.mniImageFromFile": "Նկար նիշքից",
|
||||
"DE.Controllers.ApplicationController.mniImageFromStorage": "Պատկեր պահեստից",
|
||||
"DE.Controllers.ApplicationController.mniImageFromUrl": "Պատկերը URL-ից",
|
||||
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Զգուշացում",
|
||||
"DE.Controllers.ApplicationController.openErrorText": "Նիշքի բացման ժամանակ տեղի ունեցավ սխալ",
|
||||
"DE.Controllers.ApplicationController.saveErrorText": "Նիշքի պահպանման ժամանակ տեղի ունեցավ սխալ։",
|
||||
"DE.Controllers.ApplicationController.saveErrorTextDesktop": "Այս ֆայլը հնարավոր չէ պահպանել կամ ստեղծել:<br>Հնարավոր պատճառներն են.<br>1. Ֆայլը միայն կարդալու է:2. Ֆայլը խմբագրվում է այլ օգտվողների կողմից:<br>Սկավառակը լցված է կամ վնասված է:",
|
||||
"DE.Controllers.ApplicationController.scriptLoadError": "Կապը խիստ թույլ է, բաղադրիչների մի մասը չբեռնվեց։ Խնդրում ենք էջը թարմացնել։",
|
||||
"DE.Controllers.ApplicationController.textAnonymous": "Անանուն",
|
||||
"DE.Controllers.ApplicationController.textBuyNow": "Այցելել կայք",
|
||||
"DE.Controllers.ApplicationController.textCloseTip": "Սեղմեք՝ ծայրը փակելու համար:",
|
||||
"DE.Controllers.ApplicationController.textContactUs": "Կապ վաճառքի բաժնի հետ",
|
||||
"DE.Controllers.ApplicationController.textGotIt": "Հասկանալի է",
|
||||
"DE.Controllers.ApplicationController.textGuest": "Հյուր",
|
||||
"DE.Controllers.ApplicationController.textLoadingDocument": "Փաստաթղթի բեռնում",
|
||||
"DE.Controllers.ApplicationController.textNoLicenseTitle": "Լիցենզիայի սահմանաչափը հասել է",
|
||||
"DE.Controllers.ApplicationController.textOf": "սրանից",
|
||||
"DE.Controllers.ApplicationController.textRequired": "Լրացրել բոլոր անհրաժեշտ դաշտերը՝ ձևն ուղարկելու համար:",
|
||||
"DE.Controllers.ApplicationController.textSaveAs": "Պահպանել որպես PDF",
|
||||
"DE.Controllers.ApplicationController.textSaveAsDesktop": "Պահպանել որպես...",
|
||||
"DE.Controllers.ApplicationController.textSubmited": "<b>Ձևը հաջողությամբ ուղարկվեց</b><br>Սեղմեք՝ հուշակը փակելու համար",
|
||||
"DE.Controllers.ApplicationController.titleLicenseExp": "Լիցենզիայի ժամկետը լրացել է",
|
||||
"DE.Controllers.ApplicationController.titleServerVersion": "Խմբագրիչը թարմացվել է",
|
||||
"DE.Controllers.ApplicationController.titleUpdateVersion": "Տարբերակը փոխվել է",
|
||||
"DE.Controllers.ApplicationController.txtArt": "Ձեր տեքստը",
|
||||
"DE.Controllers.ApplicationController.txtChoose": "Ընտրել տարր",
|
||||
"DE.Controllers.ApplicationController.txtClickToLoad": "Սեղմեք նկարրը բեռնելու համար",
|
||||
"DE.Controllers.ApplicationController.txtClose": "Փակել",
|
||||
"DE.Controllers.ApplicationController.txtEmpty": "(Դատարկ)",
|
||||
"DE.Controllers.ApplicationController.txtEnterDate": "Մուտքագրեք ամսաթիվ",
|
||||
"DE.Controllers.ApplicationController.txtPressLink": "Սեղմել Ctrl և անցնել հղումը",
|
||||
"DE.Controllers.ApplicationController.txtUntitled": "Անանուն",
|
||||
"DE.Controllers.ApplicationController.unknownErrorText": "Անհայտ սխալ։",
|
||||
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Ձեր դիտարկիչը չի աջակցվում։",
|
||||
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
||||
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
|
||||
"DE.Controllers.ApplicationController.waitText": "Խնդրում ենք սպասել...",
|
||||
"DE.Controllers.ApplicationController.warnLicenseExceeded": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Այս փաստաթուղթը կբացվի միայն ընթերցման համար։<br>Մանրամասների համար դիմեք վարիչին։",
|
||||
"DE.Controllers.ApplicationController.warnLicenseExp": "Ձեր թույլատրագրի ժամկետը սպառվել է։<br>Թարմացրեք թույլատրագիրը, ապա՝ էջը։",
|
||||
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Լիցենզիայի ժամկետը լրացել է<br>Դուք չունեք փաստաթղթերի խմբագրման գործառույթից օգտվելու հնարավորություն :<br> Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ:",
|
||||
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Լիցենզիան պետք է երկարաձգել:<br>Դուք ունեք փաստաթղթերի խմբագրման գործառույթի սահմանափակ հասանելիություն:<br> Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ՝ լիարժեք մուտք ստանալու համար</b>",
|
||||
"DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։Կապվեք Ձեր ադմինիստրատորի հետ՝ ավելին իմանալու համար:",
|
||||
"DE.Controllers.ApplicationController.warnNoLicense": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Այս փաստաթուղթը կբացվի միայն ընթերցման համար։<br>Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի %1 բաժին։",
|
||||
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի %1 բաժին։",
|
||||
"DE.Views.ApplicationView.textClear": "Մաքրել բոլոր դաշտերը",
|
||||
"DE.Views.ApplicationView.textCopy": "Պատճենել",
|
||||
"DE.Views.ApplicationView.textCut": "Կտրել",
|
||||
"DE.Views.ApplicationView.textFitToPage": "Հարմարեցնել էջին",
|
||||
"DE.Views.ApplicationView.textFitToWidth": "Հարմարեցնել լայնությանը",
|
||||
"DE.Views.ApplicationView.textNext": "Հաջորդ դաշտ",
|
||||
"DE.Views.ApplicationView.textPaste": "Փակցնել",
|
||||
"DE.Views.ApplicationView.textPrintSel": "Տպել ընտրվածքը",
|
||||
"DE.Views.ApplicationView.textRedo": "Վերարկել",
|
||||
"DE.Views.ApplicationView.textSubmit": "Հաստատել",
|
||||
"DE.Views.ApplicationView.textUndo": "Հետարկել",
|
||||
"DE.Views.ApplicationView.textZoom": "Խոշորացնել",
|
||||
"DE.Views.ApplicationView.txtDarkMode": "Մուգ ռեժիմ",
|
||||
"DE.Views.ApplicationView.txtDownload": "Ներբեռնել",
|
||||
"DE.Views.ApplicationView.txtDownloadDocx": "Ներբեռնել որպես docx",
|
||||
"DE.Views.ApplicationView.txtDownloadPdf": "Ներբեռնել PDF ձևաչափով",
|
||||
"DE.Views.ApplicationView.txtEmbed": "Ներկառուցել",
|
||||
"DE.Views.ApplicationView.txtFileLocation": "Բացել նիշքի պանակը",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "Լիէկրան",
|
||||
"DE.Views.ApplicationView.txtPrint": "Տպել",
|
||||
"DE.Views.ApplicationView.txtSearch": "Որոնել",
|
||||
"DE.Views.ApplicationView.txtShare": "Տարածել",
|
||||
"DE.Views.ApplicationView.txtTheme": "Ինտերֆեյսի ոճ"
|
||||
}
|
|
@ -32,6 +32,10 @@
|
|||
"Common.UI.Calendar.textShortTuesday": "Ma",
|
||||
"Common.UI.Calendar.textShortWednesday": "Mi",
|
||||
"Common.UI.Calendar.textYears": "Ani",
|
||||
"Common.UI.SearchBar.textFind": "Găsire",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Închide căutare",
|
||||
"Common.UI.SearchBar.tipNextResult": "Următorul rezultat",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Rezultatul anterior",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Clasic Luminos",
|
||||
"Common.UI.Themes.txtThemeDark": "Întunecat",
|
||||
"Common.UI.Themes.txtThemeLight": "Luminos",
|
||||
|
@ -166,6 +170,7 @@
|
|||
"DE.Views.ApplicationView.txtFileLocation": "Deschidere locația fișierului",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "Ecran complet",
|
||||
"DE.Views.ApplicationView.txtPrint": "Imprimare",
|
||||
"DE.Views.ApplicationView.txtSearch": "Căutare",
|
||||
"DE.Views.ApplicationView.txtShare": "Partajează",
|
||||
"DE.Views.ApplicationView.txtTheme": "Tema interfeței"
|
||||
}
|
|
@ -32,6 +32,10 @@
|
|||
"Common.UI.Calendar.textShortTuesday": "Вт",
|
||||
"Common.UI.Calendar.textShortWednesday": "Ср",
|
||||
"Common.UI.Calendar.textYears": "Годы",
|
||||
"Common.UI.SearchBar.textFind": "Поиск",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Закрыть поиск",
|
||||
"Common.UI.SearchBar.tipNextResult": "Следующий результат",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Предыдущий результат",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Классическая светлая",
|
||||
"Common.UI.Themes.txtThemeDark": "Темная",
|
||||
"Common.UI.Themes.txtThemeLight": "Светлая",
|
||||
|
@ -166,6 +170,7 @@
|
|||
"DE.Views.ApplicationView.txtFileLocation": "Открыть расположение файла",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "Во весь экран",
|
||||
"DE.Views.ApplicationView.txtPrint": "Печать",
|
||||
"DE.Views.ApplicationView.txtSearch": "Поиск",
|
||||
"DE.Views.ApplicationView.txtShare": "Поделиться",
|
||||
"DE.Views.ApplicationView.txtTheme": "Тема интерфейса"
|
||||
}
|
|
@ -32,6 +32,10 @@
|
|||
"Common.UI.Calendar.textShortTuesday": "周二",
|
||||
"Common.UI.Calendar.textShortWednesday": "周三",
|
||||
"Common.UI.Calendar.textYears": "年",
|
||||
"Common.UI.SearchBar.textFind": "查找",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "关闭搜索",
|
||||
"Common.UI.SearchBar.tipNextResult": "下一个",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "上一个",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "经典浅色的",
|
||||
"Common.UI.Themes.txtThemeDark": "深色的",
|
||||
"Common.UI.Themes.txtThemeLight": "浅色的",
|
||||
|
@ -166,6 +170,7 @@
|
|||
"DE.Views.ApplicationView.txtFileLocation": "打开文件位置",
|
||||
"DE.Views.ApplicationView.txtFullScreen": "全屏",
|
||||
"DE.Views.ApplicationView.txtPrint": "打印",
|
||||
"DE.Views.ApplicationView.txtSearch": "搜索",
|
||||
"DE.Views.ApplicationView.txtShare": "共享",
|
||||
"DE.Views.ApplicationView.txtTheme": "界面主题"
|
||||
}
|
|
@ -54,8 +54,6 @@ require.config({
|
|||
jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel',
|
||||
xregexp : '../vendor/xregexp/xregexp-all-min',
|
||||
sockjs : '../vendor/sockjs/sockjs.min',
|
||||
jszip : '../vendor/jszip/jszip.min',
|
||||
jsziputils : '../vendor/jszip-utils/jszip-utils.min',
|
||||
allfonts : '../../sdkjs/common/AllFonts',
|
||||
sdk : '../../sdkjs/word/sdk-all-min',
|
||||
api : 'api/documents/api',
|
||||
|
@ -109,9 +107,7 @@ require.config({
|
|||
'underscore',
|
||||
'allfonts',
|
||||
'xregexp',
|
||||
'sockjs',
|
||||
'jszip',
|
||||
'jsziputils'
|
||||
'sockjs'
|
||||
]
|
||||
},
|
||||
gateway: {
|
||||
|
|
|
@ -802,13 +802,13 @@ define([
|
|||
},
|
||||
|
||||
onHyperlinkClick: function(url) {
|
||||
var me = this;
|
||||
if (url) {
|
||||
if (me.api.asc_getUrlType(url)>0)
|
||||
var type = this.api.asc_getUrlType(url);
|
||||
if (type===AscCommon.c_oAscUrlType.Http || type===AscCommon.c_oAscUrlType.Email)
|
||||
window.open(url);
|
||||
else
|
||||
Common.UI.warning({
|
||||
msg: me.documentHolder.txtWarnUrl,
|
||||
msg: this.documentHolder.txtWarnUrl,
|
||||
buttons: ['yes', 'no'],
|
||||
primary: 'yes',
|
||||
callback: function(btn) {
|
||||
|
|
|
@ -1752,10 +1752,10 @@ define([
|
|||
}
|
||||
},
|
||||
|
||||
onExternalMessage: function(msg) {
|
||||
onExternalMessage: function(msg, options) {
|
||||
if (msg && msg.msg) {
|
||||
msg.msg = (msg.msg).toString();
|
||||
this.showTips([msg.msg.charAt(0).toUpperCase() + msg.msg.substring(1)]);
|
||||
this.showTips([msg.msg.charAt(0).toUpperCase() + msg.msg.substring(1)], options);
|
||||
|
||||
Common.component.Analytics.trackEvent('External Error');
|
||||
}
|
||||
|
@ -2043,17 +2043,30 @@ define([
|
|||
this._state.isDisconnected = true;
|
||||
},
|
||||
|
||||
showTips: function(strings) {
|
||||
showTips: function(strings, options) {
|
||||
var me = this;
|
||||
if (!strings.length) return;
|
||||
if (typeof(strings)!='object') strings = [strings];
|
||||
|
||||
function closeTip(cmp){
|
||||
me.tipTimeout && clearTimeout(me.tipTimeout);
|
||||
setTimeout(showNextTip, 300);
|
||||
}
|
||||
|
||||
function showNextTip() {
|
||||
var str_tip = strings.shift();
|
||||
if (str_tip) {
|
||||
str_tip += '\n' + me.textCloseTip;
|
||||
tooltip.setTitle(str_tip);
|
||||
tooltip.show();
|
||||
if (!(options && options.hideCloseTip))
|
||||
str_tip += '\n' + me.textCloseTip;
|
||||
me.tooltip.setTitle(str_tip);
|
||||
me.tooltip.show();
|
||||
me.tipTimeout && clearTimeout(me.tipTimeout);
|
||||
if (options && options.timeout) {
|
||||
me.tipTimeout = setTimeout(function () {
|
||||
me.tooltip.hide();
|
||||
closeTip();
|
||||
}, options.timeout);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2065,13 +2078,9 @@ define([
|
|||
cls: 'main-info',
|
||||
offset: 30
|
||||
});
|
||||
this.tooltip.on('tooltip:hideonclick',closeTip);
|
||||
}
|
||||
|
||||
var tooltip = this.tooltip;
|
||||
tooltip.on('tooltip:hide', function(){
|
||||
setTimeout(showNextTip, 300);
|
||||
});
|
||||
|
||||
showNextTip();
|
||||
},
|
||||
|
||||
|
|
|
@ -361,7 +361,7 @@ define([
|
|||
|
||||
var text = typeof findText === 'string' ? findText : (this.api.asc_GetSelectedText() || this._state.searchText);
|
||||
if (this.resultItems && this.resultItems.length > 0 &&
|
||||
(!this._state.matchCase && text.toLowerCase() === this.view.inputText.getValue().toLowerCase() ||
|
||||
(!this._state.matchCase && text && text.toLowerCase() === this.view.inputText.getValue().toLowerCase() ||
|
||||
this._state.matchCase && text === this.view.inputText.getValue())) { // show old results
|
||||
return;
|
||||
}
|
||||
|
@ -373,10 +373,10 @@ define([
|
|||
}
|
||||
|
||||
this.hideResults();
|
||||
if (text !== '' && text === this._state.searchText) { // search was made
|
||||
if (text && text !== '' && text === this._state.searchText) { // search was made
|
||||
this.view.disableReplaceButtons(false);
|
||||
this.api.asc_StartTextAroundSearch();
|
||||
} else if (text !== '') { // search wasn't made
|
||||
} else if (text && text !== '') { // search wasn't made
|
||||
this.onInputSearchChange(text);
|
||||
} else {
|
||||
this.resultItems = [];
|
||||
|
|
|
@ -94,17 +94,28 @@
|
|||
<div id="form-chb-comb"></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cols="2">
|
||||
<tr class="form-textfield">
|
||||
<td class="padding-small">
|
||||
<label class="input-label" style="margin-left: 22px;margin-top: 4px;"><%= scope.textWidth %></label>
|
||||
<div id="form-spin-width" style="display: inline-block; float: right;"></div>
|
||||
<td colspan=2>
|
||||
<label class="input-label"><%= scope.textWidth %></label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="form-textfield">
|
||||
<td class="padding-small">
|
||||
<td class="padding-small" width="50%">
|
||||
<div id="form-combo-width-rule" style="width: 85px;"></div>
|
||||
</td>
|
||||
<td class="padding-small" width="50%">
|
||||
<div id="form-spin-width"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="form-textfield">
|
||||
<td colspan=2 class="padding-small">
|
||||
<div class="separator horizontal"></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cols="1">
|
||||
<tr class="form-image">
|
||||
<td class="padding-small">
|
||||
<label class="input-label"><%= scope.textScale %></label>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<div id="paragraphadv-spin-outline-level"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div><label class="header" style="padding-bottom: 4px;"><%= scope.strIndent %></label></div>
|
||||
<div><label class="header padding-very-small"><%= scope.strIndent %></label></div>
|
||||
<div>
|
||||
<div class="padding-large" style="display: inline-block;margin-right: 3px;">
|
||||
<label class="input-label"><%= scope.strIndentsLeftText %></label>
|
||||
|
@ -30,7 +30,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div><label class="header" style="padding-bottom: 4px;"><%= scope.strSpacing %></label></div>
|
||||
<div><label class="header padding-very-small"><%= scope.strSpacing %></label></div>
|
||||
<div>
|
||||
<div style="display: inline-block;margin-right: 3px;">
|
||||
<label class="input-label"><%= scope.strIndentsSpacingBefore %></label>
|
||||
|
@ -119,7 +119,7 @@
|
|||
</div>
|
||||
<div id="id-adv-paragraph-font" class="settings-panel">
|
||||
<div class="inner-content" style="width: 100%;">
|
||||
<div class="padding-small">
|
||||
<div class="padding-very-small">
|
||||
<label class="header"><%= scope.textEffects %></label>
|
||||
</div>
|
||||
<table cols="2">
|
||||
|
@ -148,7 +148,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="padding-small">
|
||||
<div class="padding-very-small">
|
||||
<label class="header"><%= scope.textCharacterSpacing %></label>
|
||||
</div>
|
||||
<div class="padding-large">
|
||||
|
@ -161,6 +161,13 @@
|
|||
<div id="paragraphadv-spin-position"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="padding-very-small">
|
||||
<label class="header"><%= scope.textOpenType %></label>
|
||||
</div>
|
||||
<div class="padding-large">
|
||||
<label class="input-label"><%= scope.textLigatures %></label>
|
||||
<div id="paragraphadv-cmb-ligatures" style="display: inline-block; vertical-align: baseline; margin-left: 5px;"></div>
|
||||
</div>
|
||||
<div class="doc-content-color" style="outline: 1px solid #cbcbcb;">
|
||||
<div id="paragraphadv-font-img" style="width: 300px; height: 80px; position: relative; margin: 0 auto;"></div>
|
||||
</div>
|
||||
|
|
|
@ -80,6 +80,12 @@ define([
|
|||
this._originalFormProps = null;
|
||||
this._originalProps = null;
|
||||
|
||||
this._arrWidthRule = [
|
||||
{displayValue: this.textAuto, value: Asc.CombFormWidthRule.Auto},
|
||||
{displayValue: this.textAtLeast, value: Asc.CombFormWidthRule.AtLeast},
|
||||
{displayValue: this.textExact, value: Asc.CombFormWidthRule.Exact}
|
||||
];
|
||||
|
||||
this.render();
|
||||
},
|
||||
|
||||
|
@ -214,13 +220,26 @@ define([
|
|||
this.chComb.on('change', this.onChCombChanged.bind(this));
|
||||
this.lockedControls.push(this.chComb);
|
||||
|
||||
this.cmbWidthRule = new Common.UI.ComboBox({
|
||||
el: $markup.findById('#form-combo-width-rule'),
|
||||
cls: 'input-group-nr',
|
||||
menuStyle: 'min-width: 85px;',
|
||||
editable: false,
|
||||
data: this._arrWidthRule,
|
||||
dataHint: '1',
|
||||
dataHintDirection: 'bottom',
|
||||
dataHintOffset: 'big'
|
||||
});
|
||||
this.cmbWidthRule.setValue('');
|
||||
this.cmbWidthRule.on('selected', this.onWidthRuleSelect.bind(this));
|
||||
|
||||
this.spnWidth = new Common.UI.MetricSpinner({
|
||||
el: $markup.findById('#form-spin-width'),
|
||||
step: .1,
|
||||
width: 64,
|
||||
width: 85,
|
||||
defaultUnit : "cm",
|
||||
value: 'Auto',
|
||||
allowAuto: true,
|
||||
value: '',
|
||||
allowAuto: false,
|
||||
maxValue: 55.88,
|
||||
minValue: 0.1,
|
||||
dataHint: '1',
|
||||
|
@ -547,6 +566,7 @@ define([
|
|||
if (!checked) {
|
||||
this.chComb.setValue(false, true);
|
||||
this.spnWidth.setDisabled(true);
|
||||
this.cmbWidthRule.setDisabled(true);
|
||||
}
|
||||
if (this.api && !this._noApply) {
|
||||
var props = this._originalProps || new AscCommon.CContentControlPr();
|
||||
|
@ -576,7 +596,8 @@ define([
|
|||
this.chMaxChars.setValue(true, true);
|
||||
this.spnMaxChars.setDisabled(false || this._state.DisabledControls);
|
||||
}
|
||||
this.spnWidth.setDisabled(!checked || this._state.DisabledControls);
|
||||
this.cmbWidthRule.setDisabled(!checked || this._state.Fixed || this._state.DisabledControls);
|
||||
this.spnWidth.setDisabled(!checked || this._state.WidthRule===Asc.CombFormWidthRule.Auto || this._state.DisabledControls);
|
||||
if (this.api && !this._noApply) {
|
||||
var props = this._originalProps || new AscCommon.CContentControlPr();
|
||||
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
|
||||
|
@ -602,6 +623,7 @@ define([
|
|||
if (this.spnWidth.getValue()) {
|
||||
var value = this.spnWidth.getNumberValue();
|
||||
formTextPr.put_Width(value<=0 ? 0 : parseInt(Common.Utils.Metric.fnRecalcToMM(value) * 72 * 20 / 25.4 + 0.5));
|
||||
formTextPr.put_WidthRule(this.cmbWidthRule.getValue());
|
||||
} else
|
||||
formTextPr.put_Width(0);
|
||||
|
||||
|
@ -610,6 +632,19 @@ define([
|
|||
}
|
||||
},
|
||||
|
||||
onWidthRuleSelect: function(combo, record) {
|
||||
if (this.api && !this._noApply) {
|
||||
var props = this._originalProps || new AscCommon.CContentControlPr();
|
||||
var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr();
|
||||
formTextPr.put_WidthRule(record.value);
|
||||
if (record.value === Asc.CombFormWidthRule.Auto)
|
||||
formTextPr.put_Width(this._state.WidthPlaceholder);
|
||||
props.put_TextFormPr(formTextPr);
|
||||
this.api.asc_SetContentControlProperties(props, this.internalId);
|
||||
this.fireEvent('editcomplete', this);
|
||||
}
|
||||
},
|
||||
|
||||
onChRequired: function(field, newValue, oldValue, eOpts){
|
||||
var checked = (field.getValue()=='checked');
|
||||
if (this.api && !this._noApply) {
|
||||
|
@ -648,6 +683,8 @@ define([
|
|||
|
||||
onChFixed: function(field, newValue, oldValue, eOpts){
|
||||
if (this.api && !this._noApply) {
|
||||
var props = this._originalProps || new AscCommon.CContentControlPr();
|
||||
this.cmbWidthRule.setDisabled(!this._state.Comb || field.getValue()=='checked' || this._state.DisabledControls);
|
||||
this.api.asc_SetFixedForm(this.internalId, field.getValue()=='checked');
|
||||
this.fireEvent('editcomplete', this);
|
||||
}
|
||||
|
@ -1118,11 +1155,11 @@ define([
|
|||
}
|
||||
this.chAutofit.setDisabled(!this._state.Fixed || this._state.Comb || this._state.DisabledControls);
|
||||
|
||||
this.spnWidth.setDisabled(!this._state.Comb || this._state.DisabledControls);
|
||||
val = formTextPr.get_Width();
|
||||
if ( (val===undefined || this._state.Width===undefined)&&(this._state.Width!==val) || Math.abs(this._state.Width-val)>0.1) {
|
||||
this.spnWidth.setValue(val!==0 && val!==undefined ? Common.Utils.Metric.fnRecalcFromMM(val * 25.4 / 20 / 72.0) : -1, true);
|
||||
this._state.Width=val;
|
||||
this.cmbWidthRule.setDisabled(!this._state.Comb || this._state.Fixed || this._state.DisabledControls);
|
||||
val = this._state.Fixed ? Asc.CombFormWidthRule.Exact : formTextPr.get_WidthRule();
|
||||
if ( this._state.WidthRule!==val ) {
|
||||
this.cmbWidthRule.setValue((val !== null && val !== undefined) ? val : '');
|
||||
this._state.WidthRule=val;
|
||||
}
|
||||
|
||||
val = this.api.asc_GetTextFormAutoWidth();
|
||||
|
@ -1131,6 +1168,14 @@ define([
|
|||
this._state.WidthPlaceholder=val;
|
||||
}
|
||||
|
||||
this.spnWidth.setDisabled(!this._state.Comb || this._state.WidthRule===Asc.CombFormWidthRule.Auto || this._state.DisabledControls);
|
||||
val = formTextPr.get_Width();
|
||||
val = (this._state.WidthRule===Asc.CombFormWidthRule.Auto || val===undefined || val===0) ? this._state.WidthPlaceholder : val;
|
||||
if ((val===undefined || this._state.Width===undefined)&&(this._state.Width!==val) || Math.abs(this._state.Width-val)>0.1) {
|
||||
this.spnWidth.setValue(val!==0 && val!==undefined ? Common.Utils.Metric.fnRecalcFromMM(val * 25.4 / 20 / 72.0) : '', true);
|
||||
this._state.Width=val;
|
||||
}
|
||||
|
||||
val = formTextPr.get_MaxCharacters();
|
||||
this.chMaxChars.setValue(val && val>=0);
|
||||
this.spnMaxChars.setDisabled(!val || val<0 || this._state.DisabledControls);
|
||||
|
@ -1161,7 +1206,7 @@ define([
|
|||
}
|
||||
var val = this._state.Width;
|
||||
this.spnWidth && this.spnWidth.setMinValue(Common.Utils.Metric.fnRecalcFromMM(1));
|
||||
this.spnWidth && this.spnWidth.setValue(val!==0 && val!==undefined ? Common.Utils.Metric.fnRecalcFromMM(val * 25.4 / 20 / 72.0) : -1, true);
|
||||
this.spnWidth && this.spnWidth.setValue(val!==0 && val!==undefined ? Common.Utils.Metric.fnRecalcFromMM(val * 25.4 / 20 / 72.0) : '', true);
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -1230,7 +1275,8 @@ define([
|
|||
});
|
||||
}
|
||||
this.spnMaxChars.setDisabled(this.chMaxChars.getValue()!=='checked' || this._state.DisabledControls);
|
||||
this.spnWidth.setDisabled(!this._state.Comb || this._state.DisabledControls);
|
||||
this.cmbWidthRule.setDisabled(!this._state.Comb || this._state.Fixed || this._state.DisabledControls);
|
||||
this.spnWidth.setDisabled(!this._state.Comb || this._state.WidthRule===Asc.CombFormWidthRule.Auto || this._state.DisabledControls);
|
||||
this.chMulti.setDisabled(!this._state.Fixed || this._state.Comb || this._state.DisabledControls);
|
||||
this.chAutofit.setDisabled(!this._state.Fixed || this._state.Comb || this._state.DisabledControls);
|
||||
this.chAspect.setDisabled(this._state.scaleFlag === Asc.c_oAscPictureFormScaleFlag.Never || this._state.DisabledControls);
|
||||
|
@ -1376,7 +1422,10 @@ define([
|
|||
textTooSmall: 'Image is Too Small',
|
||||
textScale: 'When to scale',
|
||||
textBackgroundColor: 'Background Color',
|
||||
textTag: 'Tag'
|
||||
textTag: 'Tag',
|
||||
textAuto: 'Auto',
|
||||
textAtLeast: 'At least',
|
||||
textExact: 'Exactly'
|
||||
|
||||
}, DE.Views.FormSettings || {}));
|
||||
});
|
|
@ -98,6 +98,7 @@ define([
|
|||
this.options.tpl = _.template(this.template)(this.options);
|
||||
this.api = this.options.api;
|
||||
this._originalProps = null;
|
||||
this.urlType = AscCommon.c_oAscUrlType.Invalid;
|
||||
|
||||
Common.UI.Window.prototype.initialize.call(this, this.options);
|
||||
},
|
||||
|
@ -135,9 +136,8 @@ define([
|
|||
var trimmed = $.trim(value);
|
||||
if (trimmed.length>2083) return me.txtSizeLimit;
|
||||
|
||||
var urltype = me.api.asc_getUrlType(trimmed);
|
||||
me.isEmail = (urltype==2);
|
||||
return (urltype>0) ? true : me.txtNotUrl;
|
||||
me.urlType = me.api.asc_getUrlType(trimmed);
|
||||
return (me.urlType!==AscCommon.c_oAscUrlType.Invalid) ? true : me.txtNotUrl;
|
||||
}
|
||||
});
|
||||
me.inputUrl._input.on('input', function (e) {
|
||||
|
@ -377,8 +377,8 @@ define([
|
|||
if (type==c_oHyperlinkType.WebLink) {//WebLink
|
||||
var url = $.trim(me.inputUrl.getValue());
|
||||
|
||||
if (! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(url) )
|
||||
url = ( (me.isEmail) ? 'mailto:' : 'http://' ) + url;
|
||||
if (me.urlType!==AscCommon.c_oAscUrlType.Unsafe && ! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(url) )
|
||||
url = ( (me.urlType==AscCommon.c_oAscUrlType.Email) ? 'mailto:' : 'http://' ) + url;
|
||||
|
||||
url = url.replace(new RegExp("%20",'g')," ");
|
||||
props.put_Value(url);
|
||||
|
|
|
@ -209,7 +209,7 @@ define([
|
|||
this.supressEvents = false;
|
||||
|
||||
this.onCoauthOptions();
|
||||
(btn.options.action == 'advancedsearch') && this.fireEvent('search:aftershow', this);
|
||||
btn.pressed && btn.options.action == 'advancedsearch' && this.fireEvent('search:aftershow', this);
|
||||
Common.NotificationCenter.trigger('layout:changed', 'leftmenu');
|
||||
},
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
|||
DE.Views.ParagraphSettingsAdvanced = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
||||
options: {
|
||||
contentWidth: 370,
|
||||
height: 394,
|
||||
height: 415,
|
||||
toggleGroup: 'paragraph-adv-settings-group',
|
||||
storageName: 'de-para-settings-adv-category'
|
||||
},
|
||||
|
@ -513,6 +513,36 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
|||
}, this));
|
||||
this.spinners.push(this.numPosition);
|
||||
|
||||
this._arrLigatures = [
|
||||
{displayValue: this.textNone, value: Asc.LigaturesType.None},
|
||||
{displayValue: this.textStandard, value: Asc.LigaturesType.Standard},
|
||||
{displayValue: this.textContext, value: Asc.LigaturesType.Contextual},
|
||||
{displayValue: this.textHistorical, value: Asc.LigaturesType.Historical},
|
||||
{displayValue: this.textDiscret, value: Asc.LigaturesType.Discretional},
|
||||
{displayValue: this.textStandardContext, value: Asc.LigaturesType.StandardContextual},
|
||||
{displayValue: this.textStandardHistorical, value: Asc.LigaturesType.StandardHistorical},
|
||||
{displayValue: this.textContextHistorical, value: Asc.LigaturesType.ContextualHistorical},
|
||||
{displayValue: this.textStandardDiscret, value: Asc.LigaturesType.StandardDiscretional},
|
||||
{displayValue: this.textContextDiscret, value: Asc.LigaturesType.ContextualDiscretional},
|
||||
{displayValue: this.textHistoricalDiscret, value: Asc.LigaturesType.HistoricalDiscretional},
|
||||
{displayValue: this.textStandardContextHist, value: Asc.LigaturesType.StandardContextualHistorical},
|
||||
{displayValue: this.textStandardContextDiscret, value: Asc.LigaturesType.StandardContextualDiscretional},
|
||||
{displayValue: this.textStandardHistDiscret, value: Asc.LigaturesType.StandardHistoricalDiscretional},
|
||||
{displayValue: this.textContextHistDiscret, value: Asc.LigaturesType.ContextualHistoricalDiscretional},
|
||||
{displayValue: this.textAll, value: Asc.LigaturesType.All}
|
||||
];
|
||||
this.cmbLigatures = new Common.UI.ComboBox({
|
||||
el: $('#paragraphadv-cmb-ligatures'),
|
||||
cls: 'input-group-nr',
|
||||
editable: false,
|
||||
data: this._arrLigatures,
|
||||
style: 'width: 210px;',
|
||||
menuStyle : 'min-width: 210px;max-height:135px;',
|
||||
takeFocusOnClose: true
|
||||
});
|
||||
this.cmbLigatures.setValue(Asc.LigaturesType.None);
|
||||
this.cmbLigatures.on('selected', _.bind(this.onLigaturesSelect, this));
|
||||
|
||||
// Tabs
|
||||
this.numTab = new Common.UI.MetricSpinner({
|
||||
el: $('#paraadv-spin-tab'),
|
||||
|
@ -941,6 +971,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
|||
|
||||
this.cmbOutlinelevel.setValue((props.get_OutlineLvl() === undefined || props.get_OutlineLvl()===null) ? -1 : props.get_OutlineLvl());
|
||||
this.cmbOutlinelevel.setDisabled(!!props.get_OutlineLvlStyle());
|
||||
this.cmbLigatures.setValue((props.get_Ligatures() === undefined || props.get_Ligatures()===null) ? '' : props.get_Ligatures());
|
||||
|
||||
this._noApply = false;
|
||||
|
||||
|
@ -1487,6 +1518,12 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
|||
}
|
||||
},
|
||||
|
||||
onLigaturesSelect: function(combo, record) {
|
||||
if (this._changedProps) {
|
||||
this._changedProps.put_Ligatures(record.value);
|
||||
}
|
||||
},
|
||||
|
||||
textTitle: 'Paragraph - Advanced Settings',
|
||||
strIndentsLeftText: 'Left',
|
||||
strIndentsRightText: 'Right',
|
||||
|
@ -1558,7 +1595,24 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
|||
strIndentsOutlinelevel: 'Outline level',
|
||||
strIndent: 'Indents',
|
||||
strSpacing: 'Spacing',
|
||||
strSuppressLineNumbers: 'Suppress line numbers'
|
||||
strSuppressLineNumbers: 'Suppress line numbers',
|
||||
textOpenType: 'OpenType Features',
|
||||
textLigatures: 'Ligatures',
|
||||
textStandard: 'Standard only',
|
||||
textContext: 'Contextual',
|
||||
textHistorical: 'Historical',
|
||||
textDiscret: 'Discretionary',
|
||||
textStandardContext: 'Standard and Contextual',
|
||||
textStandardHistorical: 'Standard and Historical',
|
||||
textStandardDiscret: 'Standard and Discretionary',
|
||||
textContextHistorical: 'Contextual and Historical',
|
||||
textContextDiscret: 'Contextual and Discretionary',
|
||||
textHistoricalDiscret: 'Historical and Discretionary',
|
||||
textStandardContextHist: 'Standard, Contextual and Historical',
|
||||
textStandardContextDiscret: 'Standard, Contextual and Discretionary',
|
||||
textStandardHistDiscret: 'Standard, Historical and Discretionary',
|
||||
textContextHistDiscret: 'Contextual, Historical and Discretionary',
|
||||
textAll: 'All'
|
||||
|
||||
}, DE.Views.ParagraphSettingsAdvanced || {}));
|
||||
});
|
|
@ -175,7 +175,7 @@ define([
|
|||
{caption: me.textTabHome, action: 'home', extcls: 'canedit', dataHintTitle: 'H'},
|
||||
{caption: me.textTabInsert, action: 'ins', extcls: 'canedit', dataHintTitle: 'I'},
|
||||
{caption: me.textTabLayout, action: 'layout', extcls: 'canedit', layoutname: 'toolbar-layout', dataHintTitle: 'L'},
|
||||
{caption: me.textTabLinks, action: 'links', extcls: 'canedit', layoutname: 'toolbar-references', dataHintTitle: 'R'}
|
||||
{caption: me.textTabLinks, action: 'links', extcls: 'canedit', layoutname: 'toolbar-references', dataHintTitle: 'N'}
|
||||
// undefined, undefined, undefined, undefined,
|
||||
]
|
||||
}
|
||||
|
|
|
@ -54,8 +54,6 @@ require.config({
|
|||
jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel',
|
||||
xregexp : '../vendor/xregexp/xregexp-all-min',
|
||||
sockjs : '../vendor/sockjs/sockjs.min',
|
||||
jszip : '../vendor/jszip/jszip.min',
|
||||
jsziputils : '../vendor/jszip-utils/jszip-utils.min',
|
||||
api : 'api/documents/api',
|
||||
core : 'common/main/lib/core/application',
|
||||
notification : 'common/main/lib/core/NotificationCenter',
|
||||
|
@ -122,8 +120,6 @@ require([
|
|||
'analytics',
|
||||
'gateway',
|
||||
'locale',
|
||||
'jszip',
|
||||
'jsziputils',
|
||||
'sockjs',
|
||||
'underscore'
|
||||
], function (Backbone, Bootstrap, Core) {
|
||||
|
|
|
@ -1853,6 +1853,7 @@
|
|||
"DE.Views.FormSettings.textRequired": "Necessari",
|
||||
"DE.Views.FormSettings.textScale": "Quan s'ajusta a escala",
|
||||
"DE.Views.FormSettings.textSelectImage": "Seleccioneu una imatge",
|
||||
"DE.Views.FormSettings.textTag": "Etiqueta",
|
||||
"DE.Views.FormSettings.textTip": "Consell",
|
||||
"DE.Views.FormSettings.textTipAdd": "Afegeix un valor nou",
|
||||
"DE.Views.FormSettings.textTipDelete": "Suprimeix el valor",
|
||||
|
@ -2046,6 +2047,7 @@
|
|||
"DE.Views.LeftMenu.tipSupport": "Comentaris i servei d'atenció al client",
|
||||
"DE.Views.LeftMenu.tipTitles": "Títols",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "MODE PER A DESENVOLUPADORS",
|
||||
"DE.Views.LeftMenu.txtEditor": "Editor de documents",
|
||||
"DE.Views.LeftMenu.txtLimit": "Limita l'accés",
|
||||
"DE.Views.LeftMenu.txtTrial": "MODE DE PROVA",
|
||||
"DE.Views.LeftMenu.txtTrialDev": "Mode de desenvolupament de prova",
|
||||
|
@ -2691,6 +2693,7 @@
|
|||
"DE.Views.Toolbar.mniImageFromFile": "Imatge del fitxer",
|
||||
"DE.Views.Toolbar.mniImageFromStorage": "Imatge de l'emmagatzematge",
|
||||
"DE.Views.Toolbar.mniImageFromUrl": "Imatge d'URL",
|
||||
"DE.Views.Toolbar.mniInsertSSE": "Insereix un full de càlcul",
|
||||
"DE.Views.Toolbar.mniLowerCase": "minúscules",
|
||||
"DE.Views.Toolbar.mniRemoveFooter": "Suprimeix el peu de pàgina",
|
||||
"DE.Views.Toolbar.mniRemoveHeader": "Suprimeix la capçalera",
|
||||
|
|
|
@ -121,6 +121,7 @@
|
|||
"Common.define.chartData.textScatterSmoothMarker": "Διασπορά με ομαλές γραμμές και δείκτες",
|
||||
"Common.define.chartData.textStock": "Μετοχή",
|
||||
"Common.define.chartData.textSurface": "Επιφάνεια",
|
||||
"Common.Translation.textMoreButton": "Περισσότερα",
|
||||
"Common.Translation.warnFileLocked": "Δεν μπορείτε να επεξεργαστείτε αυτό το αρχείο επειδή επεξεργάζεται σε άλλη εφαρμογή.",
|
||||
"Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου",
|
||||
"Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή",
|
||||
|
@ -170,6 +171,11 @@
|
|||
"Common.UI.HSBColorPicker.textNoColor": "Χωρίς Χρώμα",
|
||||
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Απόκρυψη συνθηματικού",
|
||||
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Εμφάνιση συνθηματικού",
|
||||
"Common.UI.SearchBar.textFind": "Εύρεση",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Κλείσιμο αναζήτησης",
|
||||
"Common.UI.SearchBar.tipNextResult": "Επόμενο αποτέλεσμα",
|
||||
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Ανοίξτε τις σύνθετες ρυθμίσεις",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Προηγούμενο αποτέλεσμα",
|
||||
"Common.UI.SearchDialog.textHighlight": "Επισήμανση αποτελεσμάτων",
|
||||
"Common.UI.SearchDialog.textMatchCase": "Με διάκριση πεζών - κεφαλαίων γραμμάτων",
|
||||
"Common.UI.SearchDialog.textReplaceDef": "Εισάγετε το κείμενο αντικατάστασης",
|
||||
|
@ -182,11 +188,13 @@
|
|||
"Common.UI.SearchDialog.txtBtnReplaceAll": "Αντικατάσταση Όλων",
|
||||
"Common.UI.SynchronizeTip.textDontShow": "Να μην εμφανίζεται αυτό το μήνυμα ξανά",
|
||||
"Common.UI.SynchronizeTip.textSynchronize": "Το έγγραφο έχει αλλάξει από άλλο χρήστη. <br>Παρακαλούμε κάντε κλικ για να αποθηκεύσετε τις αλλαγές σας και να φορτώσετε ξανά τις ενημερώσεις.",
|
||||
"Common.UI.ThemeColorPalette.textRecentColors": "Πρόσφατα Χρώματα",
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Τυπικά Χρώματα",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Χρώματα Θέματος",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Κλασικό Ανοιχτό",
|
||||
"Common.UI.Themes.txtThemeDark": "Σκούρο",
|
||||
"Common.UI.Themes.txtThemeLight": "Ανοιχτό",
|
||||
"Common.UI.Themes.txtThemeSystem": "Ίδιο με το σύστημα",
|
||||
"Common.UI.Window.cancelButtonText": "Ακύρωση",
|
||||
"Common.UI.Window.closeButtonText": "Κλείσιμο",
|
||||
"Common.UI.Window.noButtonText": "Όχι",
|
||||
|
@ -285,6 +293,7 @@
|
|||
"Common.Views.Header.textHideLines": "Απόκρυψη Χαράκων",
|
||||
"Common.Views.Header.textHideStatusBar": "Απόκρυψη Γραμμής Κατάστασης",
|
||||
"Common.Views.Header.textRemoveFavorite": "Αφαίρεση από τα Αγαπημένα",
|
||||
"Common.Views.Header.textShare": "Διαμοιρασμός",
|
||||
"Common.Views.Header.textZoom": "Εστίαση",
|
||||
"Common.Views.Header.tipAccessRights": "Διαχείριση δικαιωμάτων πρόσβασης εγγράφου",
|
||||
"Common.Views.Header.tipDownload": "Λήψη αρχείου",
|
||||
|
@ -292,7 +301,9 @@
|
|||
"Common.Views.Header.tipPrint": "Εκτύπωση αρχείου",
|
||||
"Common.Views.Header.tipRedo": "Επανάληψη",
|
||||
"Common.Views.Header.tipSave": "Αποθήκευση",
|
||||
"Common.Views.Header.tipSearch": "Αναζήτηση",
|
||||
"Common.Views.Header.tipUndo": "Αναίρεση",
|
||||
"Common.Views.Header.tipUsers": "Προβολή χρηστών",
|
||||
"Common.Views.Header.tipViewSettings": "Προβολή ρυθμίσεων",
|
||||
"Common.Views.Header.tipViewUsers": "Προβολή χρηστών και διαχείριση δικαιωμάτων πρόσβασης σε έγγραφα",
|
||||
"Common.Views.Header.txtAccessRights": "Αλλαγή δικαιωμάτων πρόσβασης",
|
||||
|
@ -333,6 +344,7 @@
|
|||
"Common.Views.PluginDlg.textLoading": "Γίνεται φόρτωση",
|
||||
"Common.Views.Plugins.groupCaption": "Πρόσθετα",
|
||||
"Common.Views.Plugins.strPlugins": "Πρόσθετα",
|
||||
"Common.Views.Plugins.textClosePanel": "Κλείσιμο πρόσθετου",
|
||||
"Common.Views.Plugins.textLoading": "Γίνεται φόρτωση",
|
||||
"Common.Views.Plugins.textStart": "Εκκίνηση",
|
||||
"Common.Views.Plugins.textStop": "Διακοπή",
|
||||
|
@ -446,6 +458,21 @@
|
|||
"Common.Views.ReviewPopover.txtReject": "Απόρριψη",
|
||||
"Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση",
|
||||
"Common.Views.SaveAsDlg.textTitle": "Φάκελος για αποθήκευση",
|
||||
"Common.Views.SearchPanel.textCaseSensitive": "Διάκριση Πεζών-Κεφαλαίων",
|
||||
"Common.Views.SearchPanel.textCloseSearch": "Κλείσιμο αναζήτησης",
|
||||
"Common.Views.SearchPanel.textFind": "Εύρεση",
|
||||
"Common.Views.SearchPanel.textFindAndReplace": "Εύρεση και Αντικατάσταση",
|
||||
"Common.Views.SearchPanel.textMatchUsingRegExp": "Ταίριασμα χρησιμοποιώντας κανονικές εκφράσεις (regexp)",
|
||||
"Common.Views.SearchPanel.textNoMatches": "Χωρίς ταίριασμα",
|
||||
"Common.Views.SearchPanel.textNoSearchResults": "Δεν υπάρχουν αποτελέσματα αναζήτησης",
|
||||
"Common.Views.SearchPanel.textReplace": "Αντικατάσταση",
|
||||
"Common.Views.SearchPanel.textReplaceAll": "Αντικατάσταση Όλων",
|
||||
"Common.Views.SearchPanel.textReplaceWith": "Αντικατάσταση με",
|
||||
"Common.Views.SearchPanel.textSearchResults": "Αποτελέσματα αναζήτησης: {0}/{1}",
|
||||
"Common.Views.SearchPanel.textTooManyResults": "Υπάρχουν πάρα πολλά αποτελέσματα για εμφάνιση εδώ",
|
||||
"Common.Views.SearchPanel.textWholeWords": "Ολόκληρες λέξεις μόνο",
|
||||
"Common.Views.SearchPanel.tipNextResult": "Επόμενο αποτέλεσμα",
|
||||
"Common.Views.SearchPanel.tipPreviousResult": "Προηγούμενο αποτέλεσμα",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Γίνεται φόρτωση",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Επιλογή Πηγής Δεδομένων",
|
||||
"Common.Views.SignDialog.textBold": "Έντονα",
|
||||
|
@ -540,6 +567,7 @@
|
|||
"DE.Controllers.Main.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.<br>Χρησιμοποιήστε την επιλογή «Λήψη ως...» για να αποθηκεύσετε το αντίγραφο ασφαλείας στον σκληρό δίσκο του υπολογιστή σας.",
|
||||
"DE.Controllers.Main.errorEditingSaveas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.<br>Χρησιμοποιήστε την επιλογή «Αποθήκευση ως...» για να αποθηκεύσετε το αντίγραφο ασφαλείας στον σκληρό δίσκο του υπολογιστή σας.",
|
||||
"DE.Controllers.Main.errorEmailClient": "Δε βρέθηκε καμιά εφαρμογή email.",
|
||||
"DE.Controllers.Main.errorEmptyTOC": "Ξεκινήστε τη δημιουργία ενός πίνακα περιεχομένων εφαρμόζοντας ένα στυλ επικεφαλίδας από τη συλλογή Στυλ στο επιλεγμένο κείμενο.",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.",
|
||||
"DE.Controllers.Main.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων για λεπτομέρειες.",
|
||||
"DE.Controllers.Main.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.",
|
||||
|
@ -548,6 +576,7 @@
|
|||
"DE.Controllers.Main.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.",
|
||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Η φόρτωση του εγγράφου απέτυχε. Παρακαλούμε επιλέξτε ένα διαφορετικό αρχείο.",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Η συγχώνευση απέτυχε.",
|
||||
"DE.Controllers.Main.errorNoTOC": "Δεν υπάρχει πίνακας περιεχομένων για ενημέρωση. Μπορείτε να εισαγάγετε ένα από την καρτέλα Αναφορές.",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "Αποτυχία αποθήκευσης.",
|
||||
"DE.Controllers.Main.errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.",
|
||||
"DE.Controllers.Main.errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε επαναφορτώστε τη σελίδα.",
|
||||
|
@ -615,8 +644,10 @@
|
|||
"DE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή",
|
||||
"DE.Controllers.Main.textReconnect": "Η σύνδεση αποκαταστάθηκε",
|
||||
"DE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία",
|
||||
"DE.Controllers.Main.textRememberMacros": "Θυμηθείτε την επιλογή μου για όλες τις μακροεντολές",
|
||||
"DE.Controllers.Main.textRenameError": "Το όνομα χρήστη δεν μπορεί να είναι κενό.",
|
||||
"DE.Controllers.Main.textRenameLabel": "Εισάγετε ένα όνομα για συνεργατική χρήση",
|
||||
"DE.Controllers.Main.textRequestMacros": "Μια μακροεντολή κάνει ένα αίτημα στη διεύθυνση URL. Θέλετε να επιτρέψετε το αίτημα στο %1;",
|
||||
"DE.Controllers.Main.textShape": "Σχήμα",
|
||||
"DE.Controllers.Main.textStrict": "Αυστηρή κατάσταση",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.<br>Κάντε κλικ στο κουμπί 'Αυστηρή κατάσταση' για να μεταβείτε στην Αυστηρή κατάσταση συν-επεξεργασίας όπου επεξεργάζεστε το αρχείο χωρίς παρέμβαση άλλων χρηστών και στέλνετε τις αλλαγές σας αφού τις αποθηκεύσετε. Η μετάβαση μεταξύ των δύο καταστάσεων γίνεται μέσω των Προηγμένων Ρυθμίσεων.",
|
||||
|
@ -891,6 +922,8 @@
|
|||
"DE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Έναρξη εγγράφου",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Μετάβαση στην αρχή του εγγράφου",
|
||||
"DE.Controllers.Search.notcriticalErrorTitle": "Προειδοποίηση",
|
||||
"DE.Controllers.Search.warnReplaceString": "{0} δεν είναι ένας έγκυρος ειδικός χαρακτήρας για το πλαίσιο Αντικατάσταση με.",
|
||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Η σύνδεση χάθηκε</b><br>Απόπειρα επανασύνδεσης. Παρακαλούμε, ελέγξτε τις ρυθμίσεις σύνδεσης.",
|
||||
"DE.Controllers.Statusbar.textHasChanges": "Έχουν εντοπιστεί νέες αλλαγές",
|
||||
"DE.Controllers.Statusbar.textSetTrackChanges": "Βρίσκεστε σε κατάσταση Παρακολούθησης Αλλαγών",
|
||||
|
@ -1732,9 +1765,13 @@
|
|||
"DE.Views.FileMenuPanels.Settings.strFast": "Γρήγορη",
|
||||
"DE.Views.FileMenuPanels.Settings.strFontRender": "Βελτιστοποίηση Γραμματοσειράς",
|
||||
"DE.Views.FileMenuPanels.Settings.strForcesave": "Προσθήκη έκδοσης στο χώρο αποθήκευσης μετά την Αποθήκευση ή Ctrl+S",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Αγνόηση λέξεων με ΚΕΦΑΛΑΙΑ",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Αγνόηση λέξεων με αριθμούς",
|
||||
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ρυθμίσεις Mακροεντολών",
|
||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Εμφάνιση κουμπιού Επιλογών Επικόλλησης κατά την επικόλληση περιεχομένου",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Αλλαγές Συνεργασίας Πραγματικού Χρόνου",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "Εμφάνιση σχολίων σε κείμενο",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Εμφάνιση επιλυμένων σχολίων",
|
||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ενεργοποίηση επιλογής ορθογραφικού ελέγχου",
|
||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Αυστηρή",
|
||||
"DE.Views.FileMenuPanels.Settings.strTheme": "Θέμα",
|
||||
|
@ -1758,9 +1795,13 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Εμφάνιση με κλικ στα συννεφάκια",
|
||||
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Εμφάνιση με αιώρηση πάνω από συμβουλές",
|
||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Εκατοστό",
|
||||
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "Συνεργασία",
|
||||
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Ενεργοποίηση σκούρου θέματος εγγράφου",
|
||||
"DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Επεξεργασία και αποθήκευση",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFastTip": "Συν-επεξεργασία σε πραγματικό χρόνο. Όλες οι αλλαγές αποθηκεύονται αυτόματα",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Προσαρμογή στη Σελίδα",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Προσαρμογή στο Πλάτος",
|
||||
"DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Ιερογλυφικά",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInch": "Ίντσα",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInput": "Εναλλακτική Είσοδος",
|
||||
"DE.Views.FileMenuPanels.Settings.txtLast": "Προβολή Τελευταίου",
|
||||
|
@ -1772,12 +1813,17 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtPt": "Σημείο",
|
||||
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Ενεργοποίηση Όλων",
|
||||
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Ενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση",
|
||||
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Εμφάνιση αλλαγών κομματιού",
|
||||
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Έλεγχος Ορθογραφίας",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Απενεργοποίηση Όλων",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStrictTip": "Χρησιμοποιήστε το κουμπί \"Αποθήκευση\" για να συγχρονίσετε τις αλλαγές που κάνετε εσείς και άλλοι",
|
||||
"DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Χρησιμοποιήστε το πλήκτρο Alt για πλοήγηση στη διεπαφή χρήστη χρησιμοποιώντας το πληκτρολόγιο",
|
||||
"DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Χρησιμοποιήστε το πλήκτρο επιλογής για πλοήγηση στη διεπαφή χρήστη χρησιμοποιώντας το πληκτρολόγιο",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Εμφάνιση Ειδοποίησης",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWin": "ως Windows",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Χώρος εργασίας",
|
||||
"DE.Views.FormSettings.textAlways": "Πάντα",
|
||||
"DE.Views.FormSettings.textAspect": "Κλείδωμα αναλογίας",
|
||||
"DE.Views.FormSettings.textAutofit": "Αυτόματο Ταίριασμα",
|
||||
|
@ -1808,6 +1854,7 @@
|
|||
"DE.Views.FormSettings.textRequired": "Απαιτείται",
|
||||
"DE.Views.FormSettings.textScale": "Πότε να γίνεται κλιμάκωση",
|
||||
"DE.Views.FormSettings.textSelectImage": "Επιλογή Εικόνας",
|
||||
"DE.Views.FormSettings.textTag": "Ετικέτα",
|
||||
"DE.Views.FormSettings.textTip": "Υπόδειξη",
|
||||
"DE.Views.FormSettings.textTipAdd": "Προσθήκη νέας τιμής",
|
||||
"DE.Views.FormSettings.textTipDelete": "Διαγραφή τιμής",
|
||||
|
@ -1820,6 +1867,7 @@
|
|||
"DE.Views.FormSettings.textWidth": "Πλάτος κελιού",
|
||||
"DE.Views.FormsTab.capBtnCheckBox": "Πλαίσιο επιλογής",
|
||||
"DE.Views.FormsTab.capBtnComboBox": "Πολλαπλές Επιλογές",
|
||||
"DE.Views.FormsTab.capBtnDownloadForm": "Λήψη ως oform",
|
||||
"DE.Views.FormsTab.capBtnDropDown": "Πτυσσόμενη Λίστα",
|
||||
"DE.Views.FormsTab.capBtnImage": "Εικόνα",
|
||||
"DE.Views.FormsTab.capBtnNext": "Επόμενο Πεδίο",
|
||||
|
@ -1839,6 +1887,7 @@
|
|||
"DE.Views.FormsTab.textSubmited": "Η φόρμα υποβλήθηκε επιτυχώς",
|
||||
"DE.Views.FormsTab.tipCheckBox": "Εισαγωγή πλαισίου επιλογής",
|
||||
"DE.Views.FormsTab.tipComboBox": "Εισαγωγή πολλαπλών επιλογών",
|
||||
"DE.Views.FormsTab.tipDownloadForm": "Κατεβάστε ένα αρχείο ως έγγραφο OFORM με δυνατότητα συμπλήρωσης",
|
||||
"DE.Views.FormsTab.tipDropDown": "Εισαγωγή πτυσσόμενης λίστας",
|
||||
"DE.Views.FormsTab.tipImageField": "Εισαγωγή εικόνας",
|
||||
"DE.Views.FormsTab.tipNextForm": "Μετάβαση στο επόμενο πεδίο",
|
||||
|
@ -1993,11 +2042,13 @@
|
|||
"DE.Views.LeftMenu.tipChat": "Συνομιλία",
|
||||
"DE.Views.LeftMenu.tipComments": "Σχόλια",
|
||||
"DE.Views.LeftMenu.tipNavigation": "Πλοήγηση",
|
||||
"DE.Views.LeftMenu.tipOutline": "Επικεφαλίδες",
|
||||
"DE.Views.LeftMenu.tipPlugins": "Πρόσθετα",
|
||||
"DE.Views.LeftMenu.tipSearch": "Αναζήτηση",
|
||||
"DE.Views.LeftMenu.tipSupport": "Ανατροφοδότηση & Υποστήριξη",
|
||||
"DE.Views.LeftMenu.tipTitles": "Τίτλοι",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "ΛΕΙΤΟΥΡΓΙΑ ΓΙΑ ΠΡΟΓΡΑΜΜΑΤΙΣΤΕΣ",
|
||||
"DE.Views.LeftMenu.txtEditor": "Επεξεργαστής Εγγράφων",
|
||||
"DE.Views.LeftMenu.txtLimit": "Περιορισμός Πρόσβασης",
|
||||
"DE.Views.LeftMenu.txtTrial": "ΚΑΤΑΣΤΑΣΗ ΔΟΚΙΜΑΣΤΙΚΗΣ ΛΕΙΤΟΥΡΓΙΑΣ",
|
||||
"DE.Views.LeftMenu.txtTrialDev": "Δοκιμαστική Λειτουργία για Προγραμματιστές",
|
||||
|
@ -2015,6 +2066,7 @@
|
|||
"DE.Views.LineNumbersDialog.textStartAt": "Έναρξη από",
|
||||
"DE.Views.LineNumbersDialog.textTitle": "Αριθμοί Γραμμών",
|
||||
"DE.Views.LineNumbersDialog.txtAutoText": "Αυτόματα",
|
||||
"DE.Views.Links.capBtnAddText": "Προσθήκη Κειμένου",
|
||||
"DE.Views.Links.capBtnBookmarks": "Σελιδοδείκτης",
|
||||
"DE.Views.Links.capBtnCaption": "Λεζάντα",
|
||||
"DE.Views.Links.capBtnContentsUpdate": "Ενημέρωση Πίνακα",
|
||||
|
@ -2039,6 +2091,7 @@
|
|||
"DE.Views.Links.textSwapNotes": "Αντιμετάθεση Υποσημειώσεων και Σημειώσεων Τέλους",
|
||||
"DE.Views.Links.textUpdateAll": "Ενημέρωση ολόκληρου πίνακα",
|
||||
"DE.Views.Links.textUpdatePages": "Ενημέρωση αριθμών σελίδων μόνο",
|
||||
"DE.Views.Links.tipAddText": "Συμπεριλάβετε την επικεφαλίδα στον Πίνακα Περιεχομένων",
|
||||
"DE.Views.Links.tipBookmarks": "Δημιουργία σελιδοδείκτη",
|
||||
"DE.Views.Links.tipCaption": "Εισαγωγή λεζάντας",
|
||||
"DE.Views.Links.tipContents": "Εισαγωγή πίνακα περιεχομένων",
|
||||
|
@ -2049,6 +2102,8 @@
|
|||
"DE.Views.Links.tipTableFigures": "Εισαγωγή πίνακα εικόνων",
|
||||
"DE.Views.Links.tipTableFiguresUpdate": "Ενημέρωση πίνακα εικόνων",
|
||||
"DE.Views.Links.titleUpdateTOF": "Ενημέρωση Πίνακα Εικόνων",
|
||||
"DE.Views.Links.txtDontShowTof": "Να μην εμφανίζεται στον Πίνακα Περιεχομένων",
|
||||
"DE.Views.Links.txtLevel": "Επίπεδο",
|
||||
"DE.Views.ListSettingsDialog.textAuto": "Αυτόματα",
|
||||
"DE.Views.ListSettingsDialog.textCenter": "Κέντρο",
|
||||
"DE.Views.ListSettingsDialog.textLeft": "Αριστερά",
|
||||
|
@ -2113,6 +2168,8 @@
|
|||
"DE.Views.MailMergeSettings.txtPrev": "Στην προηγούμενη εγγραφή",
|
||||
"DE.Views.MailMergeSettings.txtUntitled": "Άτιτλο",
|
||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Απέτυχε η έναρξη συγχώνευσης",
|
||||
"DE.Views.Navigation.strNavigate": "Επικεφαλίδες",
|
||||
"DE.Views.Navigation.txtClosePanel": "Κλείσιμο επικεφαλίδων",
|
||||
"DE.Views.Navigation.txtCollapse": "Κλείσιμο όλων",
|
||||
"DE.Views.Navigation.txtDemote": "Υποβίβαση",
|
||||
"DE.Views.Navigation.txtEmpty": "Δεν υπάρχουν επικεφαλίδες στο έγγραφο.<br>Εφαρμόστε μια τεχνοτροπία επικεφαλίδων στο κείμενο ώστε να εμφανίζεται στον πίνακα περιεχομένων.",
|
||||
|
@ -2120,11 +2177,17 @@
|
|||
"DE.Views.Navigation.txtEmptyViewer": "Δεν υπάρχουν επικεφαλίδες στο έγγραφο.",
|
||||
"DE.Views.Navigation.txtExpand": "Επέκταση όλων",
|
||||
"DE.Views.Navigation.txtExpandToLevel": "Επέκταση σε επίπεδο",
|
||||
"DE.Views.Navigation.txtFontSize": "Μέγεθος γραμματοσειράς",
|
||||
"DE.Views.Navigation.txtHeadingAfter": "Νέα επικεφαλίδα μετά",
|
||||
"DE.Views.Navigation.txtHeadingBefore": "Νέα επικεφαλίδα πριν",
|
||||
"DE.Views.Navigation.txtLarge": "Μεγάλο",
|
||||
"DE.Views.Navigation.txtMedium": "Μεσαίο",
|
||||
"DE.Views.Navigation.txtNewHeading": "Νέα υποκεφαλίδα",
|
||||
"DE.Views.Navigation.txtPromote": "Προαγωγή",
|
||||
"DE.Views.Navigation.txtSelect": "Επιλογή περιεχομένου",
|
||||
"DE.Views.Navigation.txtSettings": "Ρυθμίσεις επικεφαλίδων",
|
||||
"DE.Views.Navigation.txtSmall": "Μικρό",
|
||||
"DE.Views.Navigation.txtWrapHeadings": "Τυλίξτε μεγάλες επικεφαλίδες",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Εφαρμογή",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Εφαρμογή αλλαγών σε",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Συνεχόμενα",
|
||||
|
@ -2631,7 +2694,10 @@
|
|||
"DE.Views.Toolbar.mniImageFromFile": "Εικόνα από Αρχείο",
|
||||
"DE.Views.Toolbar.mniImageFromStorage": "Εικόνα από Αποθηκευτικό Χώρο",
|
||||
"DE.Views.Toolbar.mniImageFromUrl": "Εικόνα από διεύθυνση URL",
|
||||
"DE.Views.Toolbar.mniInsertSSE": "Εισαγωγή Φύλλο Εργασίας",
|
||||
"DE.Views.Toolbar.mniLowerCase": "πεζά",
|
||||
"DE.Views.Toolbar.mniRemoveFooter": "Αφαίρεση υποσέλιδου",
|
||||
"DE.Views.Toolbar.mniRemoveHeader": "Αφαίρεση κεφαλίδας",
|
||||
"DE.Views.Toolbar.mniSentenceCase": "Πεζά-κεφαλαία πρότασης.",
|
||||
"DE.Views.Toolbar.mniTextToTable": "Μετατροπή Κειμένου σε Πίνακα",
|
||||
"DE.Views.Toolbar.mniToggleCase": "εΝΑΛΛΑΓΗ πΕΖΩΝ-κΕΦΑΛΑΙΩΝ",
|
||||
|
@ -2816,6 +2882,7 @@
|
|||
"DE.Views.ViewTab.textFitToWidth": "Προσαρμογή στο Πλάτος",
|
||||
"DE.Views.ViewTab.textInterfaceTheme": "Θέμα διεπαφής",
|
||||
"DE.Views.ViewTab.textNavigation": "Πλοήγηση",
|
||||
"DE.Views.ViewTab.textOutline": "Επικεφαλίδες",
|
||||
"DE.Views.ViewTab.textRulers": "Χάρακες",
|
||||
"DE.Views.ViewTab.textStatusBar": "Γραμμή Κατάστασης",
|
||||
"DE.Views.ViewTab.textZoom": "Εστίαση",
|
||||
|
|
|
@ -344,6 +344,7 @@
|
|||
"Common.Views.PluginDlg.textLoading": "Loading",
|
||||
"Common.Views.Plugins.groupCaption": "Plugins",
|
||||
"Common.Views.Plugins.strPlugins": "Plugins",
|
||||
"Common.Views.Plugins.textClosePanel": "Close plugin",
|
||||
"Common.Views.Plugins.textLoading": "Loading",
|
||||
"Common.Views.Plugins.textStart": "Start",
|
||||
"Common.Views.Plugins.textStop": "Stop",
|
||||
|
@ -1864,6 +1865,9 @@
|
|||
"DE.Views.FormSettings.textUnlock": "Unlock",
|
||||
"DE.Views.FormSettings.textValue": "Value Options",
|
||||
"DE.Views.FormSettings.textWidth": "Cell width",
|
||||
"DE.Views.FormSettings.textAuto": "Auto",
|
||||
"DE.Views.FormSettings.textAtLeast": "At least",
|
||||
"DE.Views.FormSettings.textExact": "Exactly",
|
||||
"DE.Views.FormsTab.capBtnCheckBox": "Checkbox",
|
||||
"DE.Views.FormsTab.capBtnComboBox": "Combo Box",
|
||||
"DE.Views.FormsTab.capBtnDownloadForm": "Download as oform",
|
||||
|
@ -2332,6 +2336,23 @@
|
|||
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Set top border only",
|
||||
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "No borders",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType Features",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Standard only",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contextual",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historical",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discretionary",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and Contextual",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and Historical",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and Discretionary",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and Historical",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and Discretionary",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historical and Discretionary",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, Contextual and Historical",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, Contextual and Discretionary",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, Historical and Discretionary",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, Historical and Discretionary",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textAll": "All",
|
||||
"DE.Views.RightMenu.txtChartSettings": "Chart settings",
|
||||
"DE.Views.RightMenu.txtFormSettings": "Form Settings",
|
||||
"DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings",
|
||||
|
|
|
@ -891,6 +891,7 @@
|
|||
"DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Principio del documento",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de",
|
||||
"DE.Controllers.Search.warnReplaceString": "{0} no es un carácter especial válido para la casilla Reemplazar con.",
|
||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Se ha perdido la conexión</b><br>Intentando conectar. Compruebe la configuración de la conexión.",
|
||||
"DE.Controllers.Statusbar.textHasChanges": "Nuevos cambios han sido encontrado",
|
||||
"DE.Controllers.Statusbar.textSetTrackChanges": "Usted está en el modo de seguimiento de cambios",
|
||||
|
|
|
@ -563,13 +563,13 @@
|
|||
"DE.Controllers.Main.errorDataRange": "Datu-barruti okerra.",
|
||||
"DE.Controllers.Main.errorDefaultMessage": "Errore-kodea: %1",
|
||||
"DE.Controllers.Main.errorDirectUrl": "Egiaztatu dokumenturako esteka.<br>Esteka honek deskargarako esteka zuzen bat izan behar du.",
|
||||
"DE.Controllers.Main.errorEditingDownloadas": "Errore bat gertatu da dokumentuarekin lan egitean.<br>Erabili 'Deskargatu honela...' aukera fitxategiaren babeskopia zure ordenagailuko disko gogorrera gordetzeko.",
|
||||
"DE.Controllers.Main.errorEditingSaveas": "Errore bat gertatu da dokumentuarekin lan egitean.<br>Erabili 'Gorde honela...' aukera fitxategiaren babeskopia zure ordenagailuko disko gogorrera gordetzeko.",
|
||||
"DE.Controllers.Main.errorEditingDownloadas": "Errore bat gertatu da dokumentuarekin lan egitean.<br>Erabili 'Deskargatu honela...' aukera fitxategiaren babeskopia zure ordenagailuko disko gogorrean gordetzeko.",
|
||||
"DE.Controllers.Main.errorEditingSaveas": "Errore bat gertatu da dokumentuarekin lan egitean.<br>Erabili 'Gorde honela...' aukera fitxategiaren babeskopia zure ordenagailuko disko gogorrean gordetzeko.",
|
||||
"DE.Controllers.Main.errorEmailClient": "Ezin izan da posta-bezerorik aurkitu.",
|
||||
"DE.Controllers.Main.errorEmptyTOC": "Hasi aurkibide bat sortzen hautatutako testuari Estiloak galeriako goiburu-estilo bat aplikatuz.",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "Fitxategia pasahitzez babestua dago eta ezin da ireki.",
|
||||
"DE.Controllers.Main.errorFileSizeExceed": "Fitxategiaren tamainak zure zerbitzarirako ezarritako muga gainditzen du.<br>Jarri harremanetan dokumentu-zerbitzariaren administratzailearekin informazio gehiago lortzeko.",
|
||||
"DE.Controllers.Main.errorForceSave": "Errore bat gertatu da dokumentua gordetzean.<br>Erabili 'Deskargatu honela' aukera fitxategia zure ordenagailuko disko gogorrera gordetzeko edo saiatu berriro geroago.",
|
||||
"DE.Controllers.Main.errorForceSave": "Errore bat gertatu da dokumentua gordetzean.<br>Erabili 'Deskargatu honela' aukera fitxategia zure ordenagailuko disko gogorrean gordetzeko edo saiatu berriro geroago.",
|
||||
"DE.Controllers.Main.errorKeyEncrypt": "Gako-deskriptore ezezaguna",
|
||||
"DE.Controllers.Main.errorKeyExpire": "Gakoaren deskriptorea iraungi da",
|
||||
"DE.Controllers.Main.errorLoadingFont": "Letra-tipoak ez dira kargatu.<br>Jarri zure dokumentu-zerbitzariaren administratzailearekin harremanetan.",
|
||||
|
@ -1853,6 +1853,7 @@
|
|||
"DE.Views.FormSettings.textRequired": "Nahitaezkoa",
|
||||
"DE.Views.FormSettings.textScale": "Noiz eskalatu",
|
||||
"DE.Views.FormSettings.textSelectImage": "Hautatu irudia",
|
||||
"DE.Views.FormSettings.textTag": "Etiketa",
|
||||
"DE.Views.FormSettings.textTip": "Argibidea",
|
||||
"DE.Views.FormSettings.textTipAdd": "Gehitu balio berria",
|
||||
"DE.Views.FormSettings.textTipDelete": "Ezabatu balioa",
|
||||
|
@ -2046,6 +2047,7 @@
|
|||
"DE.Views.LeftMenu.tipSupport": "Oharrak eta laguntza",
|
||||
"DE.Views.LeftMenu.tipTitles": "Izenburuak",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "Garatzaile modua",
|
||||
"DE.Views.LeftMenu.txtEditor": "Dokumentu editorea",
|
||||
"DE.Views.LeftMenu.txtLimit": "Mugatu sarbidea",
|
||||
"DE.Views.LeftMenu.txtTrial": "PROBA MODUA",
|
||||
"DE.Views.LeftMenu.txtTrialDev": "Probako garatzaile modua",
|
||||
|
@ -2691,6 +2693,7 @@
|
|||
"DE.Views.Toolbar.mniImageFromFile": "Irudia fitxategitik",
|
||||
"DE.Views.Toolbar.mniImageFromStorage": "Irudia biltegitik",
|
||||
"DE.Views.Toolbar.mniImageFromUrl": "Irudia URLtik",
|
||||
"DE.Views.Toolbar.mniInsertSSE": "Txertatu kalkulu-orria",
|
||||
"DE.Views.Toolbar.mniLowerCase": "minuskula",
|
||||
"DE.Views.Toolbar.mniRemoveFooter": "Kendu orri-oina",
|
||||
"DE.Views.Toolbar.mniRemoveHeader": "Kendu goiburua",
|
||||
|
|
|
@ -121,6 +121,7 @@
|
|||
"Common.define.chartData.textScatterSmoothMarker": "Dispersión coas liñas suavizadas e marcadores",
|
||||
"Common.define.chartData.textStock": "De cotizacións",
|
||||
"Common.define.chartData.textSurface": "Superficie",
|
||||
"Common.Translation.textMoreButton": "Máis",
|
||||
"Common.Translation.warnFileLocked": "Non pode editar este ficheiro porque está sendo editado noutro aplicativo.",
|
||||
"Common.Translation.warnFileLockedBtnEdit": "Crear unha copia",
|
||||
"Common.Translation.warnFileLockedBtnView": "Abrir para visualizar",
|
||||
|
@ -170,6 +171,11 @@
|
|||
"Common.UI.HSBColorPicker.textNoColor": "Sen cor",
|
||||
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Agochar o contrasinal",
|
||||
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Amosar o contrasinal",
|
||||
"Common.UI.SearchBar.textFind": "Atopar",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Pechar busca",
|
||||
"Common.UI.SearchBar.tipNextResult": "Seguinte resultado",
|
||||
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Abrir a configuración avanzada",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Anterior resultado",
|
||||
"Common.UI.SearchDialog.textHighlight": "Realzar resultados",
|
||||
"Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas",
|
||||
"Common.UI.SearchDialog.textReplaceDef": "Inserir o texto da substitución",
|
||||
|
@ -182,11 +188,13 @@
|
|||
"Common.UI.SearchDialog.txtBtnReplaceAll": "Substituír todo",
|
||||
"Common.UI.SynchronizeTip.textDontShow": "Non volver a amosar esta mensaxe",
|
||||
"Common.UI.SynchronizeTip.textSynchronize": "Outro usuario cambiou o documento. <br> Prema para gardar os cambios e recarga as actualizacións.",
|
||||
"Common.UI.ThemeColorPalette.textRecentColors": "Colores recentes",
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Cores estándar",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Clásico claro",
|
||||
"Common.UI.Themes.txtThemeDark": "Escuro",
|
||||
"Common.UI.Themes.txtThemeLight": "Claro",
|
||||
"Common.UI.Themes.txtThemeSystem": "Igual que o sistema",
|
||||
"Common.UI.Window.cancelButtonText": "Cancelar",
|
||||
"Common.UI.Window.closeButtonText": "Pechar",
|
||||
"Common.UI.Window.noButtonText": "Non",
|
||||
|
@ -213,6 +221,7 @@
|
|||
"Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas",
|
||||
"Common.Views.AutoCorrectDialog.textBy": "Por",
|
||||
"Common.Views.AutoCorrectDialog.textDelete": "Eliminar",
|
||||
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Engadir punto co dobre espazo",
|
||||
"Common.Views.AutoCorrectDialog.textFLCells": "Poñer en maiúsculas a primeira letra das celas da táboa",
|
||||
"Common.Views.AutoCorrectDialog.textFLSentence": "Poñer en maiúscula a primeira letra dunha oración",
|
||||
"Common.Views.AutoCorrectDialog.textHyperlink": "Rutas da rede e Internet por hiperligazóns",
|
||||
|
@ -261,6 +270,7 @@
|
|||
"Common.Views.Comments.textResolved": "Resolto",
|
||||
"Common.Views.Comments.textSort": "Ordenar comentarios",
|
||||
"Common.Views.Comments.textViewResolved": "Non ten permiso para volver a abrir o documento",
|
||||
"Common.Views.Comments.txtEmpty": "Sen comentarios no documento",
|
||||
"Common.Views.CopyWarningDialog.textDontShow": "Non volver a amosar esta mensaxe",
|
||||
"Common.Views.CopyWarningDialog.textMsg": "As accións de copiar, cortar e pegar empregando os botóns da barra de ferramentas do editor e as accións do menú contextual realizaranse só nesta pestana do editor. <br> <br> Para copiar ou pegar en ou desde aplicativos fóra da pestana do editor, use as seguintes combinacións de teclado:",
|
||||
"Common.Views.CopyWarningDialog.textTitle": "Accións de copiar, cortar e pegar",
|
||||
|
@ -283,6 +293,7 @@
|
|||
"Common.Views.Header.textHideLines": "Agochar regras",
|
||||
"Common.Views.Header.textHideStatusBar": "Agochar barra de estado",
|
||||
"Common.Views.Header.textRemoveFavorite": "Eliminar dos Favoritos",
|
||||
"Common.Views.Header.textShare": "Compartir",
|
||||
"Common.Views.Header.textZoom": "Ampliar",
|
||||
"Common.Views.Header.tipAccessRights": "Xestionar dereitos de acceso ao documento",
|
||||
"Common.Views.Header.tipDownload": "Descargar ficheiro",
|
||||
|
@ -290,7 +301,9 @@
|
|||
"Common.Views.Header.tipPrint": "Imprimir ficheiro",
|
||||
"Common.Views.Header.tipRedo": "Refacer",
|
||||
"Common.Views.Header.tipSave": "Gardar",
|
||||
"Common.Views.Header.tipSearch": "Buscar",
|
||||
"Common.Views.Header.tipUndo": "Desfacer",
|
||||
"Common.Views.Header.tipUsers": "Ver usuarios",
|
||||
"Common.Views.Header.tipViewSettings": "Amosar configuración",
|
||||
"Common.Views.Header.tipViewUsers": "Ver usuarios e administrar dereitos de acceso ao documento",
|
||||
"Common.Views.Header.txtAccessRights": "Cambiar dereitos de acceso",
|
||||
|
@ -444,6 +457,21 @@
|
|||
"Common.Views.ReviewPopover.txtReject": "Rexeitar",
|
||||
"Common.Views.SaveAsDlg.textLoading": "Cargando",
|
||||
"Common.Views.SaveAsDlg.textTitle": "Cartafol para gardar",
|
||||
"Common.Views.SearchPanel.textCaseSensitive": "Diferenciar maiúsculas de minúsculas",
|
||||
"Common.Views.SearchPanel.textCloseSearch": "Pechar busca",
|
||||
"Common.Views.SearchPanel.textFind": "Atopar",
|
||||
"Common.Views.SearchPanel.textFindAndReplace": "Buscar e substituír",
|
||||
"Common.Views.SearchPanel.textMatchUsingRegExp": "Relacionar con expresións regulares",
|
||||
"Common.Views.SearchPanel.textNoMatches": "Non hai coincidencias",
|
||||
"Common.Views.SearchPanel.textNoSearchResults": "Non se obtiveron resultados",
|
||||
"Common.Views.SearchPanel.textReplace": "Substituír",
|
||||
"Common.Views.SearchPanel.textReplaceAll": "Substituír todo",
|
||||
"Common.Views.SearchPanel.textReplaceWith": "Substituír con",
|
||||
"Common.Views.SearchPanel.textSearchResults": "Resultados da busca: {0}/{1}",
|
||||
"Common.Views.SearchPanel.textTooManyResults": "Hai moitos resultados para amosar aquí",
|
||||
"Common.Views.SearchPanel.textWholeWords": "Só palabras completas",
|
||||
"Common.Views.SearchPanel.tipNextResult": "Seguinte resultado",
|
||||
"Common.Views.SearchPanel.tipPreviousResult": "Anterior resultado",
|
||||
"Common.Views.SelectFileDlg.textLoading": "Cargando",
|
||||
"Common.Views.SelectFileDlg.textTitle": "Seleccionar fonte de datos",
|
||||
"Common.Views.SignDialog.textBold": "Grosa",
|
||||
|
@ -511,7 +539,9 @@
|
|||
"DE.Controllers.LeftMenu.txtCompatible": "O documento gardarase no novo formato. Permitirá usar todas as funcións do editor, pero pode afectar ao deseño do documento. <br> Use a opción \"Compatibilidade\" da configuración avanzada se quere facer os ficheiros compatibles con versións antigas de MS Word.",
|
||||
"DE.Controllers.LeftMenu.txtUntitled": "Sen título",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAs": "Se segue gardando neste formato, todas as características a excepción do texto perderanse.<br>Te na certeza de que desexa continuar?",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsPdf": "O teu {0} converterase nun formato editable. Isto pode levar un tempo. O documento resultante optimizarase para permitirche editar o texto, polo que é posible que non pareza exactamente ao orixinal {0}, especialmente se o ficheiro orixinal contiña moitos gráficos.",
|
||||
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Se segue gardando neste formato, unha parte de formateo pode perderse.<br> Ten a certeza de que quere continuar?",
|
||||
"DE.Controllers.LeftMenu.warnReplaceString": "{0} non é un caracter especial válido para o campo de substitución.",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Cargando cambios...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Cargando cambios",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Excedeu o tempo límite de conversión.",
|
||||
|
@ -536,6 +566,7 @@
|
|||
"DE.Controllers.Main.errorEditingDownloadas": "Ocorreu un erro ao traballar no documento.<br>Utilice a opción 'Descargar como...' para gardar unha copia do ficheiro no seu computador.",
|
||||
"DE.Controllers.Main.errorEditingSaveas": "Ocorreu un erro ao traballar no documento.<br>utilice a opción 'Gardar como...\" para gardar unha copia do ficheiro no seu computador.",
|
||||
"DE.Controllers.Main.errorEmailClient": "Non se puido atopar ningún cliente de correo electrónico",
|
||||
"DE.Controllers.Main.errorEmptyTOC": "Empezar a crear unha táboa de contidos aplicando un estilo de cabeceira da galería de Estilos ao texto seleccionado.",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "O documento está protexido por un contrasinal e non pode ser aberto.",
|
||||
"DE.Controllers.Main.errorFileSizeExceed": "O tamaño do ficheiro excede os límites establecidos para o teu servidor.<br>Por favor, contacte co seu administrador de Servidor de Documentos para máis detalles.",
|
||||
"DE.Controllers.Main.errorForceSave": "Ocorreu un erro ao gardar o ficheiro. Utilice a opción 'Descargar como' para gardar o ficheiro no seu computador ou inténtao máis tarde.",
|
||||
|
@ -544,6 +575,7 @@
|
|||
"DE.Controllers.Main.errorLoadingFont": "Tipos de letra non cargados.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"DE.Controllers.Main.errorMailMergeLoadFile": "A carga do documento fallou. Por favor, seleccione un ficheiro diferente.",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Erro ao mesturar.",
|
||||
"DE.Controllers.Main.errorNoTOC": "Non hai unha táboa de contidos para actualizar. Pódese inserir unha desde a lapela de Referencias.",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "Erro ao gardar.",
|
||||
"DE.Controllers.Main.errorServerVersion": "A versión do editor foi actualizada. A páxina será recargada para aplicar os cambios.",
|
||||
"DE.Controllers.Main.errorSessionAbsolute": "A sesión de edición de documentos caducou. Recarga a páxina.",
|
||||
|
@ -611,8 +643,10 @@
|
|||
"DE.Controllers.Main.textPaidFeature": "Característica de pago",
|
||||
"DE.Controllers.Main.textReconnect": "Restaurouse a conexión",
|
||||
"DE.Controllers.Main.textRemember": "Recordar a miña elección para todos os ficheiros",
|
||||
"DE.Controllers.Main.textRememberMacros": "Recorda a miña selección por todas as macros",
|
||||
"DE.Controllers.Main.textRenameError": "O nome de usuario non pode estar vacío.",
|
||||
"DE.Controllers.Main.textRenameLabel": "Insira un nome que se usará para a colaboración",
|
||||
"DE.Controllers.Main.textRequestMacros": "Unha macro fai unha petición á URL. Quere permitirlla a %1?",
|
||||
"DE.Controllers.Main.textShape": "Forma",
|
||||
"DE.Controllers.Main.textStrict": "Modo estrito",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "As funcións Desfacer / Refacer están desactivadas para o modo de coedición rápida. <br> Faga clic no botón \"Modo estrito\" para cambiar ao modo de coedición estricto para editar o ficheiro sen interferencias doutros usuarios e enviar os seus cambios só despois de gardalos. eles. Pode cambiar entre os modos de coedición usando o editor Configuración avanzada.",
|
||||
|
@ -887,6 +921,8 @@
|
|||
"DE.Controllers.Main.warnProcessRightsChange": "O dereito de edición do ficheiro é denegado.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Principio do documento",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Ir ao inicio do documento",
|
||||
"DE.Controllers.Search.notcriticalErrorTitle": "Aviso",
|
||||
"DE.Controllers.Search.warnReplaceString": "{0} non é un caracter especial válido para a caixa Substituír por.",
|
||||
"DE.Controllers.Statusbar.textDisconnect": "<b>Perdeuse a conexión</b><br>Intentando conectarse. Comproba a configuración de conexión.",
|
||||
"DE.Controllers.Statusbar.textHasChanges": "Novos cambios foron atopados",
|
||||
"DE.Controllers.Statusbar.textSetTrackChanges": "Está no modo de seguemento de cambios",
|
||||
|
@ -1449,6 +1485,7 @@
|
|||
"DE.Views.DocumentHolder.strSign": "Asinar",
|
||||
"DE.Views.DocumentHolder.styleText": "Formatando como Estilo",
|
||||
"DE.Views.DocumentHolder.tableText": "Táboa",
|
||||
"DE.Views.DocumentHolder.textAccept": "Aceptar o cambio",
|
||||
"DE.Views.DocumentHolder.textAlign": "Aliñar",
|
||||
"DE.Views.DocumentHolder.textArrange": "Arranxar",
|
||||
"DE.Views.DocumentHolder.textArrangeBack": "Enviar ao fondo",
|
||||
|
@ -1483,6 +1520,7 @@
|
|||
"DE.Views.DocumentHolder.textPaste": "Pegar",
|
||||
"DE.Views.DocumentHolder.textPrevPage": "Páxina anterior",
|
||||
"DE.Views.DocumentHolder.textRefreshField": "Actualizar o campo",
|
||||
"DE.Views.DocumentHolder.textReject": "Rexeitar o cambio",
|
||||
"DE.Views.DocumentHolder.textRemCheckBox": "Eliminar caixa de selección",
|
||||
"DE.Views.DocumentHolder.textRemComboBox": "Eliminar caixa de combinación",
|
||||
"DE.Views.DocumentHolder.textRemDropdown": "Eliminar lista despregable",
|
||||
|
@ -1685,12 +1723,18 @@
|
|||
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambiar dereitos de acceso",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentario",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creado",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Visualización rápida da páxina",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Cargando...",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificación por",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificación",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Non",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietario",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Páxinas",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Tamaño da páxina",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Parágrafos",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "Xerador de PDF",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF etiquetado",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versión PDF",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persoas que teñen dereitos",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos con espazos",
|
||||
|
@ -1700,6 +1744,7 @@
|
|||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palabras",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Si",
|
||||
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar dereitos de acceso",
|
||||
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persoas que teñen dereitos",
|
||||
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso",
|
||||
|
@ -1719,9 +1764,13 @@
|
|||
"DE.Views.FileMenuPanels.Settings.strFast": "Rápido",
|
||||
"DE.Views.FileMenuPanels.Settings.strFontRender": "Busca das fontes",
|
||||
"DE.Views.FileMenuPanels.Settings.strForcesave": "Engadir a versión ao almacenamento despois de premer en Gardar ou Ctrl+S",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Omitir palabras en MAIÚSCULAS",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Omitir palabras con números",
|
||||
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuración das macros",
|
||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Amosar o botón Opcións de pegado cando se pegue contido",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Cambios de colaboración en tempo real",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "Amosar comentarios no texto",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Amosar os comentarios resoltos",
|
||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar corrección ortográfica",
|
||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Estrito",
|
||||
"DE.Views.FileMenuPanels.Settings.strTheme": "Tema da interface",
|
||||
|
@ -1745,9 +1794,13 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Amosar cun premer nos globos",
|
||||
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Amosar ao manter o punteiro na información sobre ferramentas",
|
||||
"DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro",
|
||||
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "Colaboración",
|
||||
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Activar o modo escuro para documentos",
|
||||
"DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Editar e gardar",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFastTip": "Coedición en tempo real. Todos os cambios se gardarán automaticamente",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Axustar á páxina",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Axustar á anchura",
|
||||
"DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Xeroglíficos",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInch": "Pulgada",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa",
|
||||
"DE.Views.FileMenuPanels.Settings.txtLast": "Ver últimos",
|
||||
|
@ -1759,12 +1812,17 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtPt": "Punto",
|
||||
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Activar todo",
|
||||
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Activar todas as macros sen notificación",
|
||||
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "AMosar o seguimento dos cambios",
|
||||
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Сorrección ortográfica",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Desactivar todo",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Desactivar todas as macros sen notificación",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStrictTip": "Usar o botón \"Gardar\" para sincronizar os teus cambios e os dos demais",
|
||||
"DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Usar a tecla Alt para navegar pola interface do usuario usando o teclado",
|
||||
"DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Usar a tecla Opcións para navegar pola interface do usuario usando o teclado",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Amosar notificación",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desactivar todas as macros con notificación",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWin": "coma Windows",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Área de traballo",
|
||||
"DE.Views.FormSettings.textAlways": "Sempre",
|
||||
"DE.Views.FormSettings.textAspect": "Bloquear proporción",
|
||||
"DE.Views.FormSettings.textAutofit": "Autoaxustar",
|
||||
|
@ -1795,6 +1853,7 @@
|
|||
"DE.Views.FormSettings.textRequired": "Requirido",
|
||||
"DE.Views.FormSettings.textScale": "Cando escalar",
|
||||
"DE.Views.FormSettings.textSelectImage": "Seleccionar imaxe",
|
||||
"DE.Views.FormSettings.textTag": "Etiqueta",
|
||||
"DE.Views.FormSettings.textTip": "Suxerencia",
|
||||
"DE.Views.FormSettings.textTipAdd": "Engadir novo valor",
|
||||
"DE.Views.FormSettings.textTipDelete": "Eliminar valor",
|
||||
|
@ -1807,6 +1866,7 @@
|
|||
"DE.Views.FormSettings.textWidth": "Ancho da celda",
|
||||
"DE.Views.FormsTab.capBtnCheckBox": "Caixa de selección",
|
||||
"DE.Views.FormsTab.capBtnComboBox": "Caixa de combinación",
|
||||
"DE.Views.FormsTab.capBtnDownloadForm": "Descargar como OFORM",
|
||||
"DE.Views.FormsTab.capBtnDropDown": "Despregable",
|
||||
"DE.Views.FormsTab.capBtnImage": "Imaxe",
|
||||
"DE.Views.FormsTab.capBtnNext": "Seguinte campo",
|
||||
|
@ -1826,6 +1886,7 @@
|
|||
"DE.Views.FormsTab.textSubmited": "O formulario enviouse correctamente",
|
||||
"DE.Views.FormsTab.tipCheckBox": "Inserir caixa de selección",
|
||||
"DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinación",
|
||||
"DE.Views.FormsTab.tipDownloadForm": "Baixar o ficheiro como un documento OFORM que se poida abrir",
|
||||
"DE.Views.FormsTab.tipDropDown": "Inserir lista despregable",
|
||||
"DE.Views.FormsTab.tipImageField": "Inserir imaxe",
|
||||
"DE.Views.FormsTab.tipNextForm": "Ir ao seguinte campo",
|
||||
|
@ -1980,11 +2041,13 @@
|
|||
"DE.Views.LeftMenu.tipChat": "Conversa",
|
||||
"DE.Views.LeftMenu.tipComments": "Comentarios",
|
||||
"DE.Views.LeftMenu.tipNavigation": "Navegación",
|
||||
"DE.Views.LeftMenu.tipOutline": "Títulos",
|
||||
"DE.Views.LeftMenu.tipPlugins": "Extensións",
|
||||
"DE.Views.LeftMenu.tipSearch": "Buscar",
|
||||
"DE.Views.LeftMenu.tipSupport": "Comentarios e soporte",
|
||||
"DE.Views.LeftMenu.tipTitles": "Títulos",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "MODO DO DESENVOLVEDOR",
|
||||
"DE.Views.LeftMenu.txtEditor": "Editor de documentos",
|
||||
"DE.Views.LeftMenu.txtLimit": "Limitar acceso",
|
||||
"DE.Views.LeftMenu.txtTrial": "MODO DE PROBA",
|
||||
"DE.Views.LeftMenu.txtTrialDev": "Modo de programador de proba",
|
||||
|
@ -2002,6 +2065,7 @@
|
|||
"DE.Views.LineNumbersDialog.textStartAt": "Comezar en",
|
||||
"DE.Views.LineNumbersDialog.textTitle": "Numeración das liñas",
|
||||
"DE.Views.LineNumbersDialog.txtAutoText": "Automático",
|
||||
"DE.Views.Links.capBtnAddText": "Engadir texto",
|
||||
"DE.Views.Links.capBtnBookmarks": "Marcador",
|
||||
"DE.Views.Links.capBtnCaption": "Lenda",
|
||||
"DE.Views.Links.capBtnContentsUpdate": "Actualizar",
|
||||
|
@ -2026,6 +2090,7 @@
|
|||
"DE.Views.Links.textSwapNotes": "Intercambiar notas a rodapé e notais ao final",
|
||||
"DE.Views.Links.textUpdateAll": "Actualizar toda a táboa",
|
||||
"DE.Views.Links.textUpdatePages": "Actualizar soamente os números de páxinas",
|
||||
"DE.Views.Links.tipAddText": "Incluír a cabeceira á Táboa de Contidos",
|
||||
"DE.Views.Links.tipBookmarks": "Crear marcador",
|
||||
"DE.Views.Links.tipCaption": "Inserir lenda",
|
||||
"DE.Views.Links.tipContents": "Inserir táboa de contido",
|
||||
|
@ -2036,6 +2101,8 @@
|
|||
"DE.Views.Links.tipTableFigures": "Inserir táboa de figuras",
|
||||
"DE.Views.Links.tipTableFiguresUpdate": "Actualizar táboa de ilustracións",
|
||||
"DE.Views.Links.titleUpdateTOF": "Actualizar táboa de ilustracións",
|
||||
"DE.Views.Links.txtDontShowTof": "Que non se amose a táboa de contidos",
|
||||
"DE.Views.Links.txtLevel": "Nivel",
|
||||
"DE.Views.ListSettingsDialog.textAuto": "Automático",
|
||||
"DE.Views.ListSettingsDialog.textCenter": "Centro",
|
||||
"DE.Views.ListSettingsDialog.textLeft": "Esquerda",
|
||||
|
@ -2100,6 +2167,8 @@
|
|||
"DE.Views.MailMergeSettings.txtPrev": "Ao anterior rexistro",
|
||||
"DE.Views.MailMergeSettings.txtUntitled": "Sen título",
|
||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Imposible empezar fusión",
|
||||
"DE.Views.Navigation.strNavigate": "Títulos",
|
||||
"DE.Views.Navigation.txtClosePanel": "Pechar cabeceiras",
|
||||
"DE.Views.Navigation.txtCollapse": "Contraer todo",
|
||||
"DE.Views.Navigation.txtDemote": "Degradar",
|
||||
"DE.Views.Navigation.txtEmpty": "Non hai títulos no documento.<br>Aplique un estilo do título ao texto para que apareza na táboa de contido.",
|
||||
|
@ -2107,11 +2176,17 @@
|
|||
"DE.Views.Navigation.txtEmptyViewer": "Non hai títulos no documento.",
|
||||
"DE.Views.Navigation.txtExpand": "Expandir todo",
|
||||
"DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel",
|
||||
"DE.Views.Navigation.txtFontSize": "Tamaño da fonte",
|
||||
"DE.Views.Navigation.txtHeadingAfter": "Novo título despois",
|
||||
"DE.Views.Navigation.txtHeadingBefore": "Novo título antes",
|
||||
"DE.Views.Navigation.txtLarge": "Largo",
|
||||
"DE.Views.Navigation.txtMedium": "Medio",
|
||||
"DE.Views.Navigation.txtNewHeading": "Novo subtítulo",
|
||||
"DE.Views.Navigation.txtPromote": "Promover",
|
||||
"DE.Views.Navigation.txtSelect": "Seleccione contido",
|
||||
"DE.Views.Navigation.txtSettings": "Configuración dos títulos",
|
||||
"DE.Views.Navigation.txtSmall": "Pequeno",
|
||||
"DE.Views.Navigation.txtWrapHeadings": "Axustar títulos longos",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "Aplicar",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar cambios a",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "Continua",
|
||||
|
@ -2351,6 +2426,8 @@
|
|||
"DE.Views.Statusbar.pageIndexText": "Páxina {0} de {1}",
|
||||
"DE.Views.Statusbar.tipFitPage": "Axustar á páxina",
|
||||
"DE.Views.Statusbar.tipFitWidth": "Axustar á anchura",
|
||||
"DE.Views.Statusbar.tipHandTool": "Ferramenta manual",
|
||||
"DE.Views.Statusbar.tipSelectTool": "Seleccionar ferramenta",
|
||||
"DE.Views.Statusbar.tipSetLang": "Establecer idioma do texto",
|
||||
"DE.Views.Statusbar.tipZoomFactor": "Ampliar",
|
||||
"DE.Views.Statusbar.tipZoomIn": "Achegar",
|
||||
|
@ -2616,7 +2693,10 @@
|
|||
"DE.Views.Toolbar.mniImageFromFile": "Imaxe do ficheiro",
|
||||
"DE.Views.Toolbar.mniImageFromStorage": "Imaxe do Almacenamento",
|
||||
"DE.Views.Toolbar.mniImageFromUrl": "Imaxe da URL",
|
||||
"DE.Views.Toolbar.mniInsertSSE": "Inserir folla de cálculo",
|
||||
"DE.Views.Toolbar.mniLowerCase": "minúscula",
|
||||
"DE.Views.Toolbar.mniRemoveFooter": "Eliminar o pé de páxina",
|
||||
"DE.Views.Toolbar.mniRemoveHeader": "Eliminar cabeceiras",
|
||||
"DE.Views.Toolbar.mniSentenceCase": "Tipo oración.",
|
||||
"DE.Views.Toolbar.mniTextToTable": "Converter texto en táboa",
|
||||
"DE.Views.Toolbar.mniToggleCase": "tIPO iNVERSO",
|
||||
|
@ -2801,6 +2881,7 @@
|
|||
"DE.Views.ViewTab.textFitToWidth": "Axustar á anchura",
|
||||
"DE.Views.ViewTab.textInterfaceTheme": "Tema da interface",
|
||||
"DE.Views.ViewTab.textNavigation": "Navegación",
|
||||
"DE.Views.ViewTab.textOutline": "Títulos",
|
||||
"DE.Views.ViewTab.textRulers": "Regras",
|
||||
"DE.Views.ViewTab.textStatusBar": "Barra de estado",
|
||||
"DE.Views.ViewTab.textZoom": "Ampliar",
|
||||
|
|
2921
apps/documenteditor/main/locale/hy.json
Normal file
2921
apps/documenteditor/main/locale/hy.json
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1853,6 +1853,7 @@
|
|||
"DE.Views.FormSettings.textRequired": "Vereist",
|
||||
"DE.Views.FormSettings.textScale": "Wanneer schalen",
|
||||
"DE.Views.FormSettings.textSelectImage": "Selecteer afbeelding",
|
||||
"DE.Views.FormSettings.textTag": "Label",
|
||||
"DE.Views.FormSettings.textTip": "Tip",
|
||||
"DE.Views.FormSettings.textTipAdd": "Voeg nieuwe waarde toe",
|
||||
"DE.Views.FormSettings.textTipDelete": "Verwijder waarde",
|
||||
|
@ -2691,6 +2692,7 @@
|
|||
"DE.Views.Toolbar.mniImageFromFile": "Afbeelding uit bestand",
|
||||
"DE.Views.Toolbar.mniImageFromStorage": "Afbeelding van opslag",
|
||||
"DE.Views.Toolbar.mniImageFromUrl": "Afbeelding uit URL",
|
||||
"DE.Views.Toolbar.mniInsertSSE": "Tabel invoegen",
|
||||
"DE.Views.Toolbar.mniLowerCase": "kleine letters ",
|
||||
"DE.Views.Toolbar.mniRemoveFooter": "Verwijder voettekst",
|
||||
"DE.Views.Toolbar.mniRemoveHeader": "Verwijder koptekst",
|
||||
|
|
|
@ -174,6 +174,7 @@
|
|||
"Common.UI.SearchBar.textFind": "Localizar",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Fechar pesquisa",
|
||||
"Common.UI.SearchBar.tipNextResult": "Resultado seguinte",
|
||||
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Abrir opções avançadas",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Resultado anterior",
|
||||
"Common.UI.SearchDialog.textHighlight": "Destacar resultados",
|
||||
"Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas",
|
||||
|
@ -187,6 +188,7 @@
|
|||
"Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir tudo",
|
||||
"Common.UI.SynchronizeTip.textDontShow": "Não exibir esta mensagem novamente",
|
||||
"Common.UI.SynchronizeTip.textSynchronize": "O documento foi alterado por outro utilizador.<br>Clique para guardar as suas alterações e recarregar o documento.",
|
||||
"Common.UI.ThemeColorPalette.textRecentColors": "Cores recentes",
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "Cores padrão",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "Clássico claro",
|
||||
|
@ -562,6 +564,7 @@
|
|||
"DE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.<br>Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no seu computador.",
|
||||
"DE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.<br>Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.",
|
||||
"DE.Controllers.Main.errorEmailClient": "Não foi possível encontrar nenhum cliente de e-mail.",
|
||||
"DE.Controllers.Main.errorEmptyTOC": "Comece a criar um indice, aplicando um estilo de título da galeria Estilos ao texto selecionado.",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.",
|
||||
"DE.Controllers.Main.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.<br>Contacte o administrador do servidor de documentos para mais detalhes.",
|
||||
"DE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar' para guardar o ficheiro no seu computador e tentar mais tarde.",
|
||||
|
@ -1757,9 +1760,12 @@
|
|||
"DE.Views.FileMenuPanels.Settings.strFast": "Rápido",
|
||||
"DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte",
|
||||
"DE.Views.FileMenuPanels.Settings.strForcesave": "Guardar sempre no servidor (caso contrário, guardar no servidor ao fechar o documento)",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras em MAÍSCULAS",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorar palavras com números",
|
||||
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Definições de macros",
|
||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "Mostrar comentários no texto",
|
||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica",
|
||||
"DE.Views.FileMenuPanels.Settings.strStrict": "Estrito",
|
||||
"DE.Views.FileMenuPanels.Settings.strTheme": "Tema da interface",
|
||||
|
@ -1785,6 +1791,8 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro",
|
||||
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "Colaboração",
|
||||
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Ligar o modo escuro do documento",
|
||||
"DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Editar e Guardar",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFastTip": "Co-edição em tempo real. Todas as alterações são salvas automaticamente",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar à página",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar à largura",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInch": "Polegada",
|
||||
|
@ -1835,6 +1843,7 @@
|
|||
"DE.Views.FormSettings.textRequired": "Necessário",
|
||||
"DE.Views.FormSettings.textScale": "Quando escalar",
|
||||
"DE.Views.FormSettings.textSelectImage": "Selecionar imagem",
|
||||
"DE.Views.FormSettings.textTag": "Etiqueta",
|
||||
"DE.Views.FormSettings.textTip": "Dica",
|
||||
"DE.Views.FormSettings.textTipAdd": "Adicionar novo valor",
|
||||
"DE.Views.FormSettings.textTipDelete": "Eliminar valor",
|
||||
|
@ -2026,6 +2035,7 @@
|
|||
"DE.Views.LeftMenu.tipSupport": "Feedback e Suporte",
|
||||
"DE.Views.LeftMenu.tipTitles": "Títulos",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "MODO DE PROGRAMADOR",
|
||||
"DE.Views.LeftMenu.txtEditor": "Editor de Documentos",
|
||||
"DE.Views.LeftMenu.txtLimit": "Limitar o acesso",
|
||||
"DE.Views.LeftMenu.txtTrial": "MODO DE TESTE",
|
||||
"DE.Views.LeftMenu.txtTrialDev": "Versão de Avaliação do Modo de Programador",
|
||||
|
@ -2668,6 +2678,7 @@
|
|||
"DE.Views.Toolbar.mniImageFromFile": "Imagem de um ficheiro",
|
||||
"DE.Views.Toolbar.mniImageFromStorage": "Imagem de um armazenamento",
|
||||
"DE.Views.Toolbar.mniImageFromUrl": "Imagem de um URL",
|
||||
"DE.Views.Toolbar.mniInsertSSE": "Inserir Folha de Cálculo",
|
||||
"DE.Views.Toolbar.mniLowerCase": "minúscula",
|
||||
"DE.Views.Toolbar.mniRemoveFooter": "Remover rodapé",
|
||||
"DE.Views.Toolbar.mniRemoveHeader": "Remover cabeçalho",
|
||||
|
|
|
@ -172,7 +172,7 @@
|
|||
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ascunde parola",
|
||||
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Afișează parola",
|
||||
"Common.UI.SearchBar.textFind": "Găsire",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Închidere căutare",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "Închide căutare",
|
||||
"Common.UI.SearchBar.tipNextResult": "Următorul rezultat",
|
||||
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Deschide setările avansate",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "Rezultatul anterior",
|
||||
|
@ -344,6 +344,7 @@
|
|||
"Common.Views.PluginDlg.textLoading": "Încărcare",
|
||||
"Common.Views.Plugins.groupCaption": "Plugin-uri",
|
||||
"Common.Views.Plugins.strPlugins": "Plugin-uri",
|
||||
"Common.Views.Plugins.textClosePanel": "Închide plugin-ul",
|
||||
"Common.Views.Plugins.textLoading": "Încărcare",
|
||||
"Common.Views.Plugins.textStart": "Pornire",
|
||||
"Common.Views.Plugins.textStop": "Oprire",
|
||||
|
@ -458,7 +459,7 @@
|
|||
"Common.Views.SaveAsDlg.textLoading": "Încărcare",
|
||||
"Common.Views.SaveAsDlg.textTitle": "Folderul de salvare",
|
||||
"Common.Views.SearchPanel.textCaseSensitive": "Sensibil la litere mari și mici",
|
||||
"Common.Views.SearchPanel.textCloseSearch": "Închidere căutare",
|
||||
"Common.Views.SearchPanel.textCloseSearch": "Închide căutare",
|
||||
"Common.Views.SearchPanel.textFind": "Găsire",
|
||||
"Common.Views.SearchPanel.textFindAndReplace": "Găsire și înlocuire",
|
||||
"Common.Views.SearchPanel.textMatchUsingRegExp": "Potrivire expresie regulată",
|
||||
|
|
|
@ -344,6 +344,7 @@
|
|||
"Common.Views.PluginDlg.textLoading": "Загрузка",
|
||||
"Common.Views.Plugins.groupCaption": "Плагины",
|
||||
"Common.Views.Plugins.strPlugins": "Плагины",
|
||||
"Common.Views.Plugins.textClosePanel": "Закрыть плагин",
|
||||
"Common.Views.Plugins.textLoading": "Загрузка",
|
||||
"Common.Views.Plugins.textStart": "Запустить",
|
||||
"Common.Views.Plugins.textStop": "Остановить",
|
||||
|
|
|
@ -121,6 +121,7 @@
|
|||
"Common.define.chartData.textScatterSmoothMarker": "带平滑线和数据标记的散点图",
|
||||
"Common.define.chartData.textStock": "股价图",
|
||||
"Common.define.chartData.textSurface": "平面",
|
||||
"Common.Translation.textMoreButton": "更多",
|
||||
"Common.Translation.warnFileLocked": "您不能编辑此文件,因为它正在另一个应用程序中被编辑。",
|
||||
"Common.Translation.warnFileLockedBtnEdit": "建立副本",
|
||||
"Common.Translation.warnFileLockedBtnView": "以浏览模式打开",
|
||||
|
@ -170,6 +171,11 @@
|
|||
"Common.UI.HSBColorPicker.textNoColor": "没有颜色",
|
||||
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "隐藏密码",
|
||||
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "显示密码",
|
||||
"Common.UI.SearchBar.textFind": "查找",
|
||||
"Common.UI.SearchBar.tipCloseSearch": "关闭搜索",
|
||||
"Common.UI.SearchBar.tipNextResult": "下一个",
|
||||
"Common.UI.SearchBar.tipOpenAdvancedSettings": "打开高级设置",
|
||||
"Common.UI.SearchBar.tipPreviousResult": "上一个",
|
||||
"Common.UI.SearchDialog.textHighlight": "高亮效果",
|
||||
"Common.UI.SearchDialog.textMatchCase": "区分大小写",
|
||||
"Common.UI.SearchDialog.textReplaceDef": "输入替换文字",
|
||||
|
@ -182,11 +188,13 @@
|
|||
"Common.UI.SearchDialog.txtBtnReplaceAll": "全部替换",
|
||||
"Common.UI.SynchronizeTip.textDontShow": "不要再显示此消息",
|
||||
"Common.UI.SynchronizeTip.textSynchronize": "该文档已被其他用户更改。<br>请点击保存更改并重新加载更新。",
|
||||
"Common.UI.ThemeColorPalette.textRecentColors": "最近的颜色",
|
||||
"Common.UI.ThemeColorPalette.textStandartColors": "标准颜色",
|
||||
"Common.UI.ThemeColorPalette.textThemeColors": "主题颜色",
|
||||
"Common.UI.Themes.txtThemeClassicLight": "经典浅颜色",
|
||||
"Common.UI.Themes.txtThemeDark": "暗色模式",
|
||||
"Common.UI.Themes.txtThemeLight": "浅颜色",
|
||||
"Common.UI.Themes.txtThemeSystem": "和系统一致",
|
||||
"Common.UI.Window.cancelButtonText": "取消",
|
||||
"Common.UI.Window.closeButtonText": "关闭",
|
||||
"Common.UI.Window.noButtonText": "否",
|
||||
|
@ -285,6 +293,7 @@
|
|||
"Common.Views.Header.textHideLines": "隐藏标尺",
|
||||
"Common.Views.Header.textHideStatusBar": "隐藏状态栏",
|
||||
"Common.Views.Header.textRemoveFavorite": "从收藏夹中删除",
|
||||
"Common.Views.Header.textShare": "共享",
|
||||
"Common.Views.Header.textZoom": "放大",
|
||||
"Common.Views.Header.tipAccessRights": "管理文档访问权限",
|
||||
"Common.Views.Header.tipDownload": "下载文件",
|
||||
|
@ -292,7 +301,9 @@
|
|||
"Common.Views.Header.tipPrint": "打印文件",
|
||||
"Common.Views.Header.tipRedo": "重做",
|
||||
"Common.Views.Header.tipSave": "保存",
|
||||
"Common.Views.Header.tipSearch": "搜索",
|
||||
"Common.Views.Header.tipUndo": "撤消",
|
||||
"Common.Views.Header.tipUsers": "查看用户",
|
||||
"Common.Views.Header.tipViewSettings": "视图设置",
|
||||
"Common.Views.Header.tipViewUsers": "查看用户和管理文档访问权限",
|
||||
"Common.Views.Header.txtAccessRights": "更改访问权限",
|
||||
|
@ -357,7 +368,7 @@
|
|||
"Common.Views.ReviewChanges.strFast": "快速",
|
||||
"Common.Views.ReviewChanges.strFastDesc": "自动共同编辑模式,自动保存修改痕迹。",
|
||||
"Common.Views.ReviewChanges.strStrict": "手动",
|
||||
"Common.Views.ReviewChanges.strStrictDesc": "手动共同编辑模式,点击保存按钮后,才会同步用户所做的修改。",
|
||||
"Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按钮同步你和其他人的修改。",
|
||||
"Common.Views.ReviewChanges.textEnable": "启动",
|
||||
"Common.Views.ReviewChanges.textWarnTrackChanges": "对全体有完整控制权的用户,“跟踪修改”功能将会启动。任何人下次打开该文档,“跟踪修改”功能都会保持在启动状态。",
|
||||
"Common.Views.ReviewChanges.textWarnTrackChangesTitle": "是否为所有人启动“跟踪修改”?",
|
||||
|
@ -446,6 +457,21 @@
|
|||
"Common.Views.ReviewPopover.txtReject": "拒绝",
|
||||
"Common.Views.SaveAsDlg.textLoading": "载入中",
|
||||
"Common.Views.SaveAsDlg.textTitle": "保存文件夹",
|
||||
"Common.Views.SearchPanel.textCaseSensitive": "区分大小写",
|
||||
"Common.Views.SearchPanel.textCloseSearch": "关闭搜索",
|
||||
"Common.Views.SearchPanel.textFind": "查找",
|
||||
"Common.Views.SearchPanel.textFindAndReplace": "查找和替换",
|
||||
"Common.Views.SearchPanel.textMatchUsingRegExp": "正则匹配",
|
||||
"Common.Views.SearchPanel.textNoMatches": "找不到匹配信息",
|
||||
"Common.Views.SearchPanel.textNoSearchResults": "找不到搜索结果",
|
||||
"Common.Views.SearchPanel.textReplace": "替换",
|
||||
"Common.Views.SearchPanel.textReplaceAll": "全部替换",
|
||||
"Common.Views.SearchPanel.textReplaceWith": "替换为",
|
||||
"Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}",
|
||||
"Common.Views.SearchPanel.textTooManyResults": "这里显示的结果太多了",
|
||||
"Common.Views.SearchPanel.textWholeWords": "仅全字",
|
||||
"Common.Views.SearchPanel.tipNextResult": "下一个",
|
||||
"Common.Views.SearchPanel.tipPreviousResult": "上一个",
|
||||
"Common.Views.SelectFileDlg.textLoading": "载入中",
|
||||
"Common.Views.SelectFileDlg.textTitle": "选择数据源",
|
||||
"Common.Views.SignDialog.textBold": "加粗",
|
||||
|
@ -540,6 +566,7 @@
|
|||
"DE.Controllers.Main.errorEditingDownloadas": "在处理文档期间发生错误。<br>使用“下载为…”选项将文件备份复制到您的计算机硬盘中。",
|
||||
"DE.Controllers.Main.errorEditingSaveas": "在处理文档期间发生错误。<br>使用“另存为…”选项将文件备份复制到计算机硬盘中。",
|
||||
"DE.Controllers.Main.errorEmailClient": "未找到电子邮件客户端。",
|
||||
"DE.Controllers.Main.errorEmptyTOC": "开始创建一个目录并应用样式库中的标题样式到选择的文本。",
|
||||
"DE.Controllers.Main.errorFilePassProtect": "该文档受密码保护,无法被打开。",
|
||||
"DE.Controllers.Main.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.<br>有关详细信息,请与文档服务器管理员联系。",
|
||||
"DE.Controllers.Main.errorForceSave": "保存文件时发生错误请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。",
|
||||
|
@ -548,6 +575,7 @@
|
|||
"DE.Controllers.Main.errorLoadingFont": "字体未加载。<br>请与文档服务器管理员联系。",
|
||||
"DE.Controllers.Main.errorMailMergeLoadFile": "加载文件失败了。请选择另一份文件。",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "合并失败",
|
||||
"DE.Controllers.Main.errorNoTOC": "没有目录要更新。你可以从引用标签插入一个目录。",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "保存失败",
|
||||
"DE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。",
|
||||
"DE.Controllers.Main.errorSessionAbsolute": "文档编辑会话已过期。请重新加载页面。",
|
||||
|
@ -615,8 +643,10 @@
|
|||
"DE.Controllers.Main.textPaidFeature": "付费功能",
|
||||
"DE.Controllers.Main.textReconnect": "连接已恢复",
|
||||
"DE.Controllers.Main.textRemember": "记住我为所有文件的选择",
|
||||
"DE.Controllers.Main.textRememberMacros": "记住我的选择",
|
||||
"DE.Controllers.Main.textRenameError": "用户名不能留空。",
|
||||
"DE.Controllers.Main.textRenameLabel": "输入名称,可用于协作。",
|
||||
"DE.Controllers.Main.textRequestMacros": "宏发起一个请求至URL。你是否允许请求到%1?",
|
||||
"DE.Controllers.Main.textShape": "形状",
|
||||
"DE.Controllers.Main.textStrict": "手动模式",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "对于自动的协同编辑模式,取消/重做功能是禁用的。< br >单击“手动模式”按钮切换到手动协同编辑模式,这样,编辑该文件时只有您保存修改之后,其他用户才能访问这些修改。您可以使用编辑器高级设置易于切换编辑模式。",
|
||||
|
@ -891,6 +921,8 @@
|
|||
"DE.Controllers.Main.warnProcessRightsChange": "您被拒绝编辑文件的权限。",
|
||||
"DE.Controllers.Navigation.txtBeginning": "文档开头",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "转到文档开头",
|
||||
"DE.Controllers.Search.notcriticalErrorTitle": "警告",
|
||||
"DE.Controllers.Search.warnReplaceString": "{0}不是有效的规范",
|
||||
"DE.Controllers.Statusbar.textDisconnect": "<b>连接失败</b><br>正在尝试连接。请检查连接设置。",
|
||||
"DE.Controllers.Statusbar.textHasChanges": "已经跟踪了新的变化",
|
||||
"DE.Controllers.Statusbar.textSetTrackChanges": "你现在处于审阅模式。",
|
||||
|
@ -1732,9 +1764,13 @@
|
|||
"DE.Views.FileMenuPanels.Settings.strFast": "快速",
|
||||
"DE.Views.FileMenuPanels.Settings.strFontRender": "字体微调方式",
|
||||
"DE.Views.FileMenuPanels.Settings.strForcesave": "单击“保存”或Ctrl+S之后版本添加到存储",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "忽略大写单词",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "忽略带数字的单词",
|
||||
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "宏设置",
|
||||
"DE.Views.FileMenuPanels.Settings.strPasteButton": "在执行粘贴操作后显示“粘贴选项”按钮",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowChanges": "实时协作变更",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowComments": "在文本中显示注释",
|
||||
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "显示已解决的注释",
|
||||
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "显示拼写检查选项",
|
||||
"DE.Views.FileMenuPanels.Settings.strStrict": "手动",
|
||||
"DE.Views.FileMenuPanels.Settings.strTheme": "界面主题",
|
||||
|
@ -1758,9 +1794,13 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "点击通知气球以展示",
|
||||
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "光标移至弹出窗口以展示",
|
||||
"DE.Views.FileMenuPanels.Settings.txtCm": "厘米",
|
||||
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "协作",
|
||||
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "开启文档夜间模式",
|
||||
"DE.Views.FileMenuPanels.Settings.txtEditingSaving": "编辑并保存",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFastTip": "实时协同编辑。所有",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitPage": "适合页面",
|
||||
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "适合宽度",
|
||||
"DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "特殊符号",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInch": "寸",
|
||||
"DE.Views.FileMenuPanels.Settings.txtInput": "备选输入",
|
||||
"DE.Views.FileMenuPanels.Settings.txtLast": "最后查看",
|
||||
|
@ -1772,12 +1812,17 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtPt": "点",
|
||||
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "启动所有项目",
|
||||
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "启动所有不带通知的宏",
|
||||
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "显示跟踪变化",
|
||||
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼写检查",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "解除所有项目",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "解除所有不带通知的宏",
|
||||
"DE.Views.FileMenuPanels.Settings.txtStrictTip": "使用“保存\"按钮同步你和其他人的修改",
|
||||
"DE.Views.FileMenuPanels.Settings.txtUseAltKey": "使用键盘上的Alt键导航至用户界面",
|
||||
"DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "使用键盘上的Option键导航至用户界面",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "显示通知",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "解除所有带通知的宏",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWin": "仿照 Windows",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "工作空间",
|
||||
"DE.Views.FormSettings.textAlways": "总是",
|
||||
"DE.Views.FormSettings.textAspect": "锁定宽高比",
|
||||
"DE.Views.FormSettings.textAutofit": "自动适应",
|
||||
|
@ -1808,6 +1853,7 @@
|
|||
"DE.Views.FormSettings.textRequired": "必填",
|
||||
"DE.Views.FormSettings.textScale": "何时按倍缩放?",
|
||||
"DE.Views.FormSettings.textSelectImage": "选择图像",
|
||||
"DE.Views.FormSettings.textTag": "标签",
|
||||
"DE.Views.FormSettings.textTip": "提示",
|
||||
"DE.Views.FormSettings.textTipAdd": "新增值",
|
||||
"DE.Views.FormSettings.textTipDelete": "刪除值",
|
||||
|
@ -1820,6 +1866,7 @@
|
|||
"DE.Views.FormSettings.textWidth": "单元格宽度",
|
||||
"DE.Views.FormsTab.capBtnCheckBox": "多选框",
|
||||
"DE.Views.FormsTab.capBtnComboBox": "组合框",
|
||||
"DE.Views.FormsTab.capBtnDownloadForm": "下载为oform",
|
||||
"DE.Views.FormsTab.capBtnDropDown": "候选列表",
|
||||
"DE.Views.FormsTab.capBtnImage": "图片",
|
||||
"DE.Views.FormsTab.capBtnNext": "下一填充框",
|
||||
|
@ -1839,6 +1886,7 @@
|
|||
"DE.Views.FormsTab.textSubmited": "成功提交表单",
|
||||
"DE.Views.FormsTab.tipCheckBox": "插入多选框",
|
||||
"DE.Views.FormsTab.tipComboBox": "插入组合框",
|
||||
"DE.Views.FormsTab.tipDownloadForm": "下载一个文件填写",
|
||||
"DE.Views.FormsTab.tipDropDown": "插入候选列表",
|
||||
"DE.Views.FormsTab.tipImageField": "插入图片",
|
||||
"DE.Views.FormsTab.tipNextForm": "前往下一填充框",
|
||||
|
@ -1993,11 +2041,13 @@
|
|||
"DE.Views.LeftMenu.tipChat": "聊天",
|
||||
"DE.Views.LeftMenu.tipComments": "批注",
|
||||
"DE.Views.LeftMenu.tipNavigation": "导航",
|
||||
"DE.Views.LeftMenu.tipOutline": "标题",
|
||||
"DE.Views.LeftMenu.tipPlugins": "插件",
|
||||
"DE.Views.LeftMenu.tipSearch": "搜索",
|
||||
"DE.Views.LeftMenu.tipSupport": "反馈和支持",
|
||||
"DE.Views.LeftMenu.tipTitles": "标题",
|
||||
"DE.Views.LeftMenu.txtDeveloper": "开发者模式",
|
||||
"DE.Views.LeftMenu.txtEditor": "文字编辑器",
|
||||
"DE.Views.LeftMenu.txtLimit": "限制访问",
|
||||
"DE.Views.LeftMenu.txtTrial": "试用模式",
|
||||
"DE.Views.LeftMenu.txtTrialDev": "试用开发者模式",
|
||||
|
@ -2015,6 +2065,7 @@
|
|||
"DE.Views.LineNumbersDialog.textStartAt": "始于",
|
||||
"DE.Views.LineNumbersDialog.textTitle": "行号",
|
||||
"DE.Views.LineNumbersDialog.txtAutoText": "自动",
|
||||
"DE.Views.Links.capBtnAddText": "添加文本",
|
||||
"DE.Views.Links.capBtnBookmarks": "书签",
|
||||
"DE.Views.Links.capBtnCaption": "标题",
|
||||
"DE.Views.Links.capBtnContentsUpdate": "刷新",
|
||||
|
@ -2039,6 +2090,7 @@
|
|||
"DE.Views.Links.textSwapNotes": "交换脚注和尾注",
|
||||
"DE.Views.Links.textUpdateAll": "刷新整个表格",
|
||||
"DE.Views.Links.textUpdatePages": "仅刷新页码",
|
||||
"DE.Views.Links.tipAddText": "包括标题在",
|
||||
"DE.Views.Links.tipBookmarks": "创建书签",
|
||||
"DE.Views.Links.tipCaption": "插入标题",
|
||||
"DE.Views.Links.tipContents": "插入目录",
|
||||
|
@ -2049,6 +2101,8 @@
|
|||
"DE.Views.Links.tipTableFigures": "插入图表目录",
|
||||
"DE.Views.Links.tipTableFiguresUpdate": "刷新图表目录",
|
||||
"DE.Views.Links.titleUpdateTOF": "刷新图表目录",
|
||||
"DE.Views.Links.txtDontShowTof": "不要显示在表格",
|
||||
"DE.Views.Links.txtLevel": "级别",
|
||||
"DE.Views.ListSettingsDialog.textAuto": "自动",
|
||||
"DE.Views.ListSettingsDialog.textCenter": "中心",
|
||||
"DE.Views.ListSettingsDialog.textLeft": "左",
|
||||
|
@ -2113,6 +2167,8 @@
|
|||
"DE.Views.MailMergeSettings.txtPrev": "以前的记录",
|
||||
"DE.Views.MailMergeSettings.txtUntitled": "无标题",
|
||||
"DE.Views.MailMergeSettings.warnProcessMailMerge": "启动合并失败",
|
||||
"DE.Views.Navigation.strNavigate": "标题",
|
||||
"DE.Views.Navigation.txtClosePanel": "关闭标题",
|
||||
"DE.Views.Navigation.txtCollapse": "全部折叠",
|
||||
"DE.Views.Navigation.txtDemote": "降级",
|
||||
"DE.Views.Navigation.txtEmpty": "文档中无标题。<br>文本中应用标题样式以便使其出现在目录中。",
|
||||
|
@ -2120,11 +2176,17 @@
|
|||
"DE.Views.Navigation.txtEmptyViewer": "文档中无标题。",
|
||||
"DE.Views.Navigation.txtExpand": "展开全部",
|
||||
"DE.Views.Navigation.txtExpandToLevel": "展开到级别",
|
||||
"DE.Views.Navigation.txtFontSize": "字体大小",
|
||||
"DE.Views.Navigation.txtHeadingAfter": "之后的新标题",
|
||||
"DE.Views.Navigation.txtHeadingBefore": "之前的新标题",
|
||||
"DE.Views.Navigation.txtLarge": "大",
|
||||
"DE.Views.Navigation.txtMedium": "中",
|
||||
"DE.Views.Navigation.txtNewHeading": "新的副标题",
|
||||
"DE.Views.Navigation.txtPromote": "升级",
|
||||
"DE.Views.Navigation.txtSelect": "选择内容",
|
||||
"DE.Views.Navigation.txtSettings": "标题设置",
|
||||
"DE.Views.Navigation.txtSmall": "小",
|
||||
"DE.Views.Navigation.txtWrapHeadings": "长标题换行",
|
||||
"DE.Views.NoteSettingsDialog.textApply": "应用",
|
||||
"DE.Views.NoteSettingsDialog.textApplyTo": "应用更改",
|
||||
"DE.Views.NoteSettingsDialog.textContinue": "连续",
|
||||
|
@ -2631,7 +2693,10 @@
|
|||
"DE.Views.Toolbar.mniImageFromFile": "图片文件",
|
||||
"DE.Views.Toolbar.mniImageFromStorage": "图片来自存储",
|
||||
"DE.Views.Toolbar.mniImageFromUrl": "图片来自网络",
|
||||
"DE.Views.Toolbar.mniInsertSSE": "插入表格",
|
||||
"DE.Views.Toolbar.mniLowerCase": "小写",
|
||||
"DE.Views.Toolbar.mniRemoveFooter": "移除页脚",
|
||||
"DE.Views.Toolbar.mniRemoveHeader": "移除页头",
|
||||
"DE.Views.Toolbar.mniSentenceCase": "句子大小写。",
|
||||
"DE.Views.Toolbar.mniTextToTable": "将文本转为表格",
|
||||
"DE.Views.Toolbar.mniToggleCase": "切换大小写",
|
||||
|
@ -2816,6 +2881,7 @@
|
|||
"DE.Views.ViewTab.textFitToWidth": "适合宽度",
|
||||
"DE.Views.ViewTab.textInterfaceTheme": "界面主题",
|
||||
"DE.Views.ViewTab.textNavigation": "导航",
|
||||
"DE.Views.ViewTab.textOutline": "标题",
|
||||
"DE.Views.ViewTab.textRulers": "标尺",
|
||||
"DE.Views.ViewTab.textStatusBar": "状态栏",
|
||||
"DE.Views.ViewTab.textZoom": "缩放",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRows": "Sətirlər",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Xəbərdarlıq",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"menuSplit": "Split",
|
||||
"textDoNotShowAgain": "Don't show again",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Увага",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
"textAbout": "Quant a...",
|
||||
"textAddress": "Adreça",
|
||||
"textBack": "Enrere",
|
||||
"textEditor": "Editor de documents",
|
||||
"textEmail": "Correu electrònic",
|
||||
"textPoweredBy": "Amb tecnologia de",
|
||||
"textTel": "Tel.",
|
||||
"textVersion": "Versió",
|
||||
"textEditor": "Document Editor"
|
||||
"textVersion": "Versió"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Advertiment",
|
||||
|
@ -199,7 +199,8 @@
|
|||
"textOk": "D'acord",
|
||||
"textRefreshEntireTable": "Actualitza la taula sencera",
|
||||
"textRefreshPageNumbersOnly": "Actualitza només els números de pàgina",
|
||||
"textRows": "Files"
|
||||
"textRows": "Files",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Advertiment",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRows": "Řádky",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Varování",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRefreshEntireTable": "Ganze Tabelle aktualisieren",
|
||||
"textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren",
|
||||
"textRows": "Zeilen"
|
||||
"textRows": "Zeilen",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warnung",
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
"textAbout": "Περί",
|
||||
"textAddress": "Διεύθυνση",
|
||||
"textBack": "Πίσω",
|
||||
"textEditor": "Συντάκτης Εγγράφων",
|
||||
"textEmail": "Ηλεκτρονική διεύθυνση",
|
||||
"textPoweredBy": "Υποστηρίζεται Από",
|
||||
"textTel": "Τηλ",
|
||||
"textVersion": "Έκδοση",
|
||||
"textEditor": "Document Editor"
|
||||
"textVersion": "Έκδοση"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Προειδοποίηση",
|
||||
|
@ -57,11 +57,11 @@
|
|||
"textShape": "Σχήμα",
|
||||
"textStartAt": "Έναρξη Από",
|
||||
"textTable": "Πίνακας",
|
||||
"textTableContents": "Πίνακας Περιεχομένων",
|
||||
"textTableSize": "Μέγεθος Πίνακα",
|
||||
"txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»",
|
||||
"textTableContents": "Table of Contents",
|
||||
"textWithBlueLinks": "With Blue Links",
|
||||
"textWithPageNumbers": "With Page Numbers"
|
||||
"textWithBlueLinks": "Με Μπλε Συνδέσμους",
|
||||
"textWithPageNumbers": "Με Αριθμούς Σελίδων",
|
||||
"txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -197,9 +197,10 @@
|
|||
"textDoNotShowAgain": "Να μην εμφανιστεί ξανά",
|
||||
"textNumberingValue": "Τιμή Αρίθμησης",
|
||||
"textOk": "Εντάξει",
|
||||
"textRefreshEntireTable": "Ανανέωση ολόκληρου πίνακα",
|
||||
"textRefreshPageNumbersOnly": "Ανανέωση αριθμών σελίδων μόνο",
|
||||
"textRows": "Γραμμές",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Προειδοποίηση",
|
||||
|
@ -214,6 +215,7 @@
|
|||
"textAlign": "Στοίχιση",
|
||||
"textAllCaps": "Όλα κεφαλαία",
|
||||
"textAllowOverlap": "Να επιτρέπεται η επικάλυψη",
|
||||
"textAmountOfLevels": "Πλήθος Επιπέδων",
|
||||
"textApril": "Απρίλιος",
|
||||
"textAugust": "Αύγουστος",
|
||||
"textAuto": "Αυτόματα",
|
||||
|
@ -228,11 +230,16 @@
|
|||
"textBringToForeground": "Μεταφορά στο προσκήνιο",
|
||||
"textBullets": "Κουκκίδες",
|
||||
"textBulletsAndNumbers": "Κουκκίδες & Αρίθμηση",
|
||||
"textCancel": "Ακύρωση",
|
||||
"textCellMargins": "Περιθώρια Κελιού",
|
||||
"textCentered": "Κεντραρισμένη",
|
||||
"textChart": "Γράφημα",
|
||||
"textClassic": "Κλασσικό",
|
||||
"textClose": "Κλείσιμο",
|
||||
"textColor": "Χρώμα",
|
||||
"textContinueFromPreviousSection": "Συνέχεια από το προηγούμενο τμήμα",
|
||||
"textCreateTextStyle": "Δημιουργία νέας τεχνοτροπίας κειμένου",
|
||||
"textCurrent": "Τρέχουσα",
|
||||
"textCustomColor": "Προσαρμοσμένο Χρώμα",
|
||||
"textDecember": "Δεκέμβριος",
|
||||
"textDesign": "Σχεδίαση",
|
||||
|
@ -240,11 +247,14 @@
|
|||
"textDifferentOddAndEvenPages": "Διαφορετικές μονές και ζυγές σελίδες",
|
||||
"textDisplay": "Προβολή",
|
||||
"textDistanceFromText": "Απόσταση από το κείμενο",
|
||||
"textDistinctive": "Χαρακτηριστική",
|
||||
"textDone": "Ολοκληρώθηκε",
|
||||
"textDoubleStrikethrough": "Διπλή Διαγραφή",
|
||||
"textEditLink": "Επεξεργασία Συνδέσμου",
|
||||
"textEffects": "Εφέ",
|
||||
"textEmpty": "Κενό",
|
||||
"textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.",
|
||||
"textEnterTitleNewStyle": "Εισαγωγή ονόματος νέας τεχνοτροπίας",
|
||||
"textFebruary": "Φεβρουάριος",
|
||||
"textFill": "Γέμισμα",
|
||||
"textFirstColumn": "Πρώτη Στήλη",
|
||||
|
@ -254,6 +264,7 @@
|
|||
"textFontColors": "Χρώματα Γραμματοσειράς",
|
||||
"textFonts": "Γραμματοσειρές",
|
||||
"textFooter": "Υποσέλιδο",
|
||||
"textFormal": "Επίσημη",
|
||||
"textFr": "Παρ",
|
||||
"textHeader": "Κεφαλίδα",
|
||||
"textHeaderRow": "Σειρά Κεφαλίδας",
|
||||
|
@ -269,7 +280,9 @@
|
|||
"textKeepLinesTogether": "Διατήρηση Γραμμών Μαζί",
|
||||
"textKeepWithNext": "Διατήρηση με Επόμενο",
|
||||
"textLastColumn": "Τελευταία Στήλη",
|
||||
"textLeader": "Γέμισμα γραμμής",
|
||||
"textLetterSpacing": "Διάστημα Γραμμάτων",
|
||||
"textLevels": "Επίπεδα",
|
||||
"textLineSpacing": "Διάστιχο",
|
||||
"textLink": "Σύνδεσμος",
|
||||
"textLinkSettings": "Ρυθμίσεις Συνδέσμου",
|
||||
|
@ -277,9 +290,11 @@
|
|||
"textMarch": "Μάρτιος",
|
||||
"textMay": "Μάιος",
|
||||
"textMo": "Δευ",
|
||||
"textModern": "Μοντέρνα",
|
||||
"textMoveBackward": "Μετακίνηση προς τα Πίσω",
|
||||
"textMoveForward": "Μετακίνηση προς τα Εμπρός",
|
||||
"textMoveWithText": "Μετακίνηση με Κείμενο",
|
||||
"textNextParagraphStyle": "Τεχνοτροπία επόμενης παραγράφου",
|
||||
"textNone": "Κανένα",
|
||||
"textNoStyles": "Δεν υπάρχουν τεχνοτροπίες για αυτόν τον τύπο γραφημάτων.",
|
||||
"textNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»",
|
||||
|
@ -287,84 +302,70 @@
|
|||
"textNumbers": "Αριθμοί",
|
||||
"textOctober": "Οκτώβριος",
|
||||
"textOk": "Εντάξει",
|
||||
"textOnline": "Σε σύνδεση",
|
||||
"textOpacity": "Αδιαφάνεια",
|
||||
"textOptions": "Επιλογές",
|
||||
"textOrphanControl": "Έλεγχος Ορφανών",
|
||||
"textPageBreakBefore": "Αλλαγή Σελίδας Πριν",
|
||||
"textPageNumbering": "Αρίθμηση Σελίδας",
|
||||
"textPageNumbers": "Αριθμοί Σελίδων",
|
||||
"textParagraph": "Παράγραφος",
|
||||
"textParagraphStyle": "Τεχνοτροπία Παραγράφου",
|
||||
"textPictureFromLibrary": "Εικόνα από τη Βιβλιοθήκη",
|
||||
"textPictureFromURL": "Εικόνα από Σύνδεσμο",
|
||||
"textPt": "pt",
|
||||
"textRefresh": "Ανανέωση",
|
||||
"textRefreshEntireTable": "Ανανέωση ολόκληρου πίνακα",
|
||||
"textRefreshPageNumbersOnly": "Ανανέωση αριθμών σελίδων μόνο",
|
||||
"textRemoveChart": "Αφαίρεση Γραφήματος",
|
||||
"textRemoveImage": "Αφαίρεση Εικόνας",
|
||||
"textRemoveLink": "Αφαίρεση Συνδέσμου",
|
||||
"textRemoveShape": "Αφαίρεση Σχήματος",
|
||||
"textRemoveTable": "Αφαίρεση Πίνακα",
|
||||
"textRemoveTableContent": "Αφαίρεση πίνακα περιεχομένων",
|
||||
"textReorder": "Αναδιάταξη",
|
||||
"textRepeatAsHeaderRow": "Επανάληψη ως Σειράς Κεφαλίδας",
|
||||
"textReplace": "Αντικατάσταση",
|
||||
"textReplaceImage": "Αντικατάσταση Εικόνας",
|
||||
"textResizeToFitContent": "Αλλαγή Μεγέθους για Προσαρμογή Περιεχομένου",
|
||||
"textRightAlign": "Δεξιά Στοίχιση",
|
||||
"textSa": "Σαβ",
|
||||
"textSameCreatedNewStyle": "Ίδια με τη νέα δημιουργημένη τεχνοτροπία",
|
||||
"textScreenTip": "Συμβουλή Οθόνης",
|
||||
"textSelectObjectToEdit": "Επιλογή αντικειμένου για επεξεργασία",
|
||||
"textSendToBackground": "Μεταφορά στο Παρασκήνιο",
|
||||
"textSeptember": "Σεπτέμβριος",
|
||||
"textSettings": "Ρυθμίσεις",
|
||||
"textShape": "Σχήμα",
|
||||
"textSimple": "Απλή",
|
||||
"textSize": "Μέγεθος",
|
||||
"textSmallCaps": "Μικρά Κεφαλαία",
|
||||
"textSpaceBetweenParagraphs": "Διάστημα Μεταξύ Παραγράφων",
|
||||
"textSquare": "Τετράγωνο",
|
||||
"textStandard": "Τυπικό",
|
||||
"textStartAt": "Έναρξη από",
|
||||
"textStrikethrough": "Διακριτική διαγραφή",
|
||||
"textStructure": "Δομή",
|
||||
"textStyle": "Τεχνοτροπία",
|
||||
"textStyleOptions": "Επιλογές Tεχνοτροπίας",
|
||||
"textStyles": "Τεχνοτροπίες",
|
||||
"textSu": "Κυρ",
|
||||
"textSubscript": "Δείκτης",
|
||||
"textSuperscript": "Εκθέτης",
|
||||
"textTable": "Πίνακας",
|
||||
"textTableOfCont": "ΠΠ",
|
||||
"textTableOptions": "Επιλογές Πίνακα",
|
||||
"textText": "Κείμενο",
|
||||
"textTh": "Πεμ",
|
||||
"textThrough": "Διά μέσου",
|
||||
"textTight": "Σφιχτό",
|
||||
"textTitle": "Τίτλος",
|
||||
"textTopAndBottom": "Πάνω και Κάτω",
|
||||
"textTotalRow": "Συνολική Γραμμή",
|
||||
"textTu": "Τρι",
|
||||
"textType": "Τύπος",
|
||||
"textWe": "Τετ",
|
||||
"textWrap": "Αναδίπλωση",
|
||||
"textAmountOfLevels": "Amount of Levels",
|
||||
"textCancel": "Cancel",
|
||||
"textCentered": "Centered",
|
||||
"textClassic": "Classic",
|
||||
"textCreateTextStyle": "Create new text style",
|
||||
"textCurrent": "Current",
|
||||
"textDistinctive": "Distinctive",
|
||||
"textDone": "Done",
|
||||
"textEnterTitleNewStyle": "Enter title of a new style",
|
||||
"textFormal": "Formal",
|
||||
"textLeader": "Leader",
|
||||
"textLevels": "Levels",
|
||||
"textModern": "Modern",
|
||||
"textNextParagraphStyle": "Next paragraph style",
|
||||
"textOnline": "Online",
|
||||
"textPageNumbers": "Page Numbers",
|
||||
"textParagraphStyle": "Paragraph Style",
|
||||
"textRefresh": "Refresh",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"textRemoveTableContent": "Remove table of contents",
|
||||
"textRightAlign": "Right Align",
|
||||
"textSameCreatedNewStyle": "Same as created new style",
|
||||
"textSimple": "Simple",
|
||||
"textStandard": "Standard",
|
||||
"textStructure": "Structure",
|
||||
"textStyles": "Styles",
|
||||
"textTableOfCont": "TOC",
|
||||
"textTitle": "Title"
|
||||
"textWrap": "Αναδίπλωση"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.",
|
||||
|
@ -379,6 +380,7 @@
|
|||
"errorDataRange": "Εσφαλμένο εύρος δεδομένων.",
|
||||
"errorDefaultMessage": "Κωδικός σφάλματος: %1",
|
||||
"errorEditingDownloadas": "Συνέβη ένα σφάλμα κατά την επεξεργασία του εγγράφου.<br>Μεταφορτώστε το έγγραφο για να αποθηκεύσετε τοπικά ένα αντίγραφο ασφαλείας.",
|
||||
"errorEmptyTOC": "Ξεκινήστε τη δημιουργία ενός πίνακα περιεχομένων εφαρμόζοντας μια τεχνοτροπία επικεφαλίδας από τη συλλογή Τεχνοτροπίες στο επιλεγμένο κείμενο.",
|
||||
"errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.",
|
||||
"errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο του εξυπηρετητή σας.<br>Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.",
|
||||
"errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού",
|
||||
|
@ -386,6 +388,7 @@
|
|||
"errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.",
|
||||
"errorMailMergeLoadFile": "Φόρτωση απέτυχε",
|
||||
"errorMailMergeSaveFile": "Η συγχώνευση απέτυχε.",
|
||||
"errorNoTOC": "Δεν υπάρχει πίνακας περιεχομένων για ενημέρωση. Μπορείτε να εισαγάγετε ένα από την καρτέλα Αναφορές.",
|
||||
"errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε, φορτώστε ξανά τη σελίδα.",
|
||||
"errorSessionIdle": "Το έγγραφο δεν τροποποιήθηκε για μεγάλο χρονικό διάστημα. Παρακαλούμε, φορτώστε ξανά τη σελίδα.",
|
||||
"errorSessionToken": "Η σύνδεση με τον εξυπηρετητή διακόπηκε. Παρακαλούμε, φορτώστε ξανά τη σελίδα.",
|
||||
|
@ -404,9 +407,7 @@
|
|||
"unknownErrorText": "Άγνωστο σφάλμα.",
|
||||
"uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
|
||||
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
|
||||
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.",
|
||||
"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."
|
||||
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Φόρτωση δεδομένων...",
|
||||
|
@ -528,6 +529,7 @@
|
|||
"textRemember": "Απομνημόνευση επιλογής",
|
||||
"textReplaceSkipped": "Η αντικατάσταση έγινε. {0} εμφανίσεις προσπεράστηκαν.",
|
||||
"textReplaceSuccess": "Η αναζήτηση ολοκληρώθηκε. Εμφανίσεις που αντικαταστάθηκαν: {0}",
|
||||
"textRequestMacros": "Μια μακροεντολή κάνει ένα αίτημα σε διεύθυνση URL. Θέλετε να επιτρέψετε το αίτημα στο %1;",
|
||||
"textYes": "Ναι",
|
||||
"titleLicenseExp": "Η άδεια έληξε",
|
||||
"titleServerVersion": "Ο συντάκτης ενημερώθηκε",
|
||||
|
@ -539,8 +541,7 @@
|
|||
"warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.<br>Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.",
|
||||
"warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.",
|
||||
"warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.<br>Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.",
|
||||
"warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου.",
|
||||
"textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?"
|
||||
"warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου."
|
||||
},
|
||||
"Settings": {
|
||||
"advDRMOptions": "Προστατευμένο Αρχείο",
|
||||
|
@ -553,6 +554,7 @@
|
|||
"textApplicationSettings": "Ρυθμίσεις Εφαρμογής",
|
||||
"textAuthor": "Συγγραφέας",
|
||||
"textBack": "Πίσω",
|
||||
"textBeginningDocument": "Αρχή του εγγράφου",
|
||||
"textBottom": "Κάτω",
|
||||
"textCancel": "Ακύρωση",
|
||||
"textCaseSensitive": "Διάκριση Πεζών-Κεφαλαίων",
|
||||
|
@ -566,6 +568,7 @@
|
|||
"textCommentsDisplay": "Εμφάνιση Σχολίων",
|
||||
"textCreated": "Δημιουργήθηκε",
|
||||
"textCustomSize": "Προσαρμοσμένο Μέγεθος",
|
||||
"textDirection": "Κατεύθυνση",
|
||||
"textDisableAll": "Απενεργοποίηση Όλων",
|
||||
"textDisableAllMacrosWithNotification": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση",
|
||||
"textDisableAllMacrosWithoutNotification": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση",
|
||||
|
@ -577,10 +580,13 @@
|
|||
"textDownloadAs": "Λήψη ως",
|
||||
"textDownloadRtf": "Εάν συνεχίσετε με την αποθήκευση σε αυτή τη μορφή, μέρος της μορφοποίησης μπορεί να χαθεί. Θέλετε σίγουρα να συνεχίσετε;",
|
||||
"textDownloadTxt": "Εάν συνεχίσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν. Θέλετε σίγουρα να συνεχίσετε;",
|
||||
"textEmptyHeading": "Κενή Επικεφαλίδα",
|
||||
"textEmptyScreens": "Δεν υπάρχουν επικεφαλίδες στο έγγραφο. Εφαρμόστε μια τεχνοτροπία επικεφαλίδων ώστε να εμφανίζεται στον πίνακα περιεχομένων.",
|
||||
"textEnableAll": "Ενεργοποίηση Όλων",
|
||||
"textEnableAllMacrosWithoutNotification": "Ενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση",
|
||||
"textEncoding": "Κωδικοποίηση",
|
||||
"textFastWV": "Γρήγορη Προβολή Δικτύου",
|
||||
"textFeedback": "Ανατροφοδότηση & Υποστήριξη",
|
||||
"textFind": "Εύρεση",
|
||||
"textFindAndReplace": "Εύρεση και Αντικατάσταση",
|
||||
"textFindAndReplaceAll": "Εύρεση και Αντικατάσταση Όλων",
|
||||
|
@ -593,12 +599,14 @@
|
|||
"textLastModified": "Τελευταίο Τροποποιημένο",
|
||||
"textLastModifiedBy": "Τελευταία Τροποποίηση Από",
|
||||
"textLeft": "Αριστερά",
|
||||
"textLeftToRight": "Αριστερά Προς Δεξιά",
|
||||
"textLoading": "Φόρτωση...",
|
||||
"textLocation": "Τοποθεσία",
|
||||
"textMacrosSettings": "Ρυθμίσεις Mακροεντολών",
|
||||
"textMargins": "Περιθώρια",
|
||||
"textMarginsH": "Τα πάνω και κάτω περιθώρια είναι πολύ ψηλά για δεδομένο ύψος σελίδας",
|
||||
"textMarginsW": "Το αριστερό και το δεξιό περιθώριο είναι πολύ πλατιά για δεδομένο πλάτος σελίδας",
|
||||
"textNavigation": "Πλοήγηση",
|
||||
"textNo": "Όχι",
|
||||
"textNoCharacters": "Μη Εκτυπώσιμοι Χαρακτήρες",
|
||||
"textNoTextFound": "Δεν βρέθηκε το κείμενο",
|
||||
|
@ -609,6 +617,7 @@
|
|||
"textPages": "Σελίδες",
|
||||
"textPageSize": "Μέγεθος Σελίδας",
|
||||
"textParagraphs": "Παράγραφοι",
|
||||
"textPdfProducer": "Παραγωγός PDF",
|
||||
"textPdfTagged": "PDF με ετικέτες",
|
||||
"textPdfVer": "Έκδοση PDF",
|
||||
"textPoint": "Σημείο",
|
||||
|
@ -618,7 +627,9 @@
|
|||
"textReplace": "Αντικατάσταση",
|
||||
"textReplaceAll": "Αντικατάσταση Όλων",
|
||||
"textResolvedComments": "Επιλυμένα Σχόλια",
|
||||
"textRestartApplication": "Παρακαλούμε επανεκκινήστε την εφαρμογή για να εφαρμοστούν οι αλλαγές",
|
||||
"textRight": "Δεξιά",
|
||||
"textRightToLeft": "Δεξιά Προς Αριστερά",
|
||||
"textSearch": "Αναζήτηση",
|
||||
"textSettings": "Ρυθμίσεις",
|
||||
"textShowNotification": "Εμφάνιση Ειδοποίησης",
|
||||
|
@ -658,17 +669,7 @@
|
|||
"txtScheme6": "Συνάθροιση",
|
||||
"txtScheme7": "Μετοχή",
|
||||
"txtScheme8": "Ροή",
|
||||
"txtScheme9": "Χυτήριο",
|
||||
"textBeginningDocument": "Beginning of document",
|
||||
"textDirection": "Direction",
|
||||
"textEmptyHeading": "Empty Heading",
|
||||
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
|
||||
"textFeedback": "Feedback & Support",
|
||||
"textLeftToRight": "Left To Right",
|
||||
"textNavigation": "Navigation",
|
||||
"textPdfProducer": "PDF Producer",
|
||||
"textRestartApplication": "Please restart the application for the changes to take effect",
|
||||
"textRightToLeft": "Right To Left"
|
||||
"txtScheme9": "Χυτήριο"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.",
|
||||
|
|
|
@ -203,7 +203,8 @@
|
|||
"textOk": "OK",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"textRows": "Rows"
|
||||
"textRows": "Rows",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
"textAbout": "Acerca de",
|
||||
"textAddress": "Dirección",
|
||||
"textBack": "Atrás",
|
||||
"textEditor": "Editor de documentos",
|
||||
"textEmail": "Correo",
|
||||
"textPoweredBy": "Con tecnología de",
|
||||
"textTel": "Tel",
|
||||
"textVersion": "Versión ",
|
||||
"textEditor": "Document Editor"
|
||||
"textVersion": "Versión "
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Advertencia",
|
||||
|
@ -55,13 +55,13 @@
|
|||
"textScreenTip": "Consejo de pantalla",
|
||||
"textSectionBreak": "Salto de sección",
|
||||
"textShape": "Forma",
|
||||
"textStartAt": "Empezar con",
|
||||
"textStartAt": "Empezar en",
|
||||
"textTable": "Tabla",
|
||||
"textTableContents": "Tabla de contenidos",
|
||||
"textTableSize": "Tamaño de tabla",
|
||||
"txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"",
|
||||
"textTableContents": "Table of Contents",
|
||||
"textWithBlueLinks": "With Blue Links",
|
||||
"textWithPageNumbers": "With Page Numbers"
|
||||
"textWithBlueLinks": "Con enlaces azules",
|
||||
"textWithPageNumbers": "Con números de página",
|
||||
"txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\""
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -198,8 +198,9 @@
|
|||
"textNumberingValue": "Valor de numeración",
|
||||
"textOk": "OK",
|
||||
"textRefreshEntireTable": "Actualizar toda la tabla",
|
||||
"textRefreshPageNumbersOnly": "Actualizar solamente los números de página",
|
||||
"textRows": "Filas",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Advertencia",
|
||||
|
@ -315,56 +316,56 @@
|
|||
"textPt": "pt",
|
||||
"textRefresh": "Actualizar",
|
||||
"textRefreshEntireTable": "Actualizar toda la tabla",
|
||||
"textRefreshPageNumbersOnly": "Actualizar solamente los números de página",
|
||||
"textRemoveChart": "Eliminar gráfico",
|
||||
"textRemoveImage": "Eliminar imagen",
|
||||
"textRemoveLink": "Eliminar enlace",
|
||||
"textRemoveShape": "Eliminar forma",
|
||||
"textRemoveTable": "Eliminar tabla",
|
||||
"textRemoveTableContent": "Eliminar la tabla de contenidos",
|
||||
"textReorder": "Reordenar",
|
||||
"textRepeatAsHeaderRow": "Repetir como fila de encabezado",
|
||||
"textReplace": "Reemplazar",
|
||||
"textReplaceImage": "Reemplazar imagen",
|
||||
"textResizeToFitContent": "Cambiar tamaño para ajustar el contenido",
|
||||
"textResizeToFitContent": "Cambiar el tamaño para ajustar el contenido",
|
||||
"textRightAlign": "Alinear a la derecha",
|
||||
"textSa": "sá.",
|
||||
"textSameCreatedNewStyle": "Igual que el nuevo estilo creado",
|
||||
"textScreenTip": "Consejo de pantalla",
|
||||
"textSelectObjectToEdit": "Seleccionar el objeto para editar",
|
||||
"textSendToBackground": "Enviar al fondo",
|
||||
"textSeptember": "septiembre",
|
||||
"textSettings": "Ajustes",
|
||||
"textShape": "Forma",
|
||||
"textSimple": "Simple",
|
||||
"textSize": "Tamaño",
|
||||
"textSmallCaps": "Versalitas",
|
||||
"textSpaceBetweenParagraphs": "Espacio entre párrafos",
|
||||
"textSquare": "Cuadrado",
|
||||
"textStartAt": "Empezar con",
|
||||
"textStandard": "Estándar",
|
||||
"textStartAt": "Empezar en",
|
||||
"textStrikethrough": "Tachado",
|
||||
"textStructure": "Estructura",
|
||||
"textStyle": "Estilo",
|
||||
"textStyleOptions": "Opciones de estilo",
|
||||
"textStyles": "Estilos",
|
||||
"textSu": "do.",
|
||||
"textSubscript": "Subíndice",
|
||||
"textSuperscript": "Superíndice",
|
||||
"textTable": "Tabla",
|
||||
"textTableOfCont": "TDC",
|
||||
"textTableOptions": "Opciones de tabla",
|
||||
"textText": "Texto",
|
||||
"textTh": "ju.",
|
||||
"textThrough": "A través",
|
||||
"textTight": "Estrecho",
|
||||
"textTitle": "Título",
|
||||
"textTopAndBottom": "Superior e inferior",
|
||||
"textTotalRow": "Fila total",
|
||||
"textTu": "ma.",
|
||||
"textType": "Tipo",
|
||||
"textWe": "mi.",
|
||||
"textWrap": "Ajuste",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"textRemoveTableContent": "Remove table of contents",
|
||||
"textRightAlign": "Right Align",
|
||||
"textSameCreatedNewStyle": "Same as created new style",
|
||||
"textSimple": "Simple",
|
||||
"textStandard": "Standard",
|
||||
"textStructure": "Structure",
|
||||
"textStyles": "Styles",
|
||||
"textTableOfCont": "TOC",
|
||||
"textTitle": "Title"
|
||||
"textWrap": "Ajuste"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Tiempo de conversión está superado.",
|
||||
|
@ -379,6 +380,7 @@
|
|||
"errorDataRange": "Rango de datos incorrecto.",
|
||||
"errorDefaultMessage": "Código de error: %1",
|
||||
"errorEditingDownloadas": "Se ha producido un error al trabajar con el documento.<br>Descargue el documento para guardar la copia de seguridad del archivo localmente.",
|
||||
"errorEmptyTOC": "Empezar a crear una tabla de contenidos aplicando un estilo de encabezamiento de la galería de Estilos al texto seleccionado.",
|
||||
"errorFilePassProtect": "El archivo está protegido por contraseña y no se puede abrir.",
|
||||
"errorFileSizeExceed": "El tamaño del archivo excede el límite de su servidor.<br>Por favor, contacte con su administrador.",
|
||||
"errorKeyEncrypt": "Descriptor de clave desconocido",
|
||||
|
@ -386,6 +388,7 @@
|
|||
"errorLoadingFont": "Las fuentes no están cargadas.<br>Por favor, póngase en contacto con el administrador del Document Server.",
|
||||
"errorMailMergeLoadFile": "Error de carga",
|
||||
"errorMailMergeSaveFile": "Error de combinar.",
|
||||
"errorNoTOC": "No hay una tabla de contenidos para actualizar. Se puede insertar uno desde la pestaña de Referencias.",
|
||||
"errorSessionAbsolute": "La sesión de edición del documento ha expirado. Por favor, vuelva a cargar la página.",
|
||||
"errorSessionIdle": "El documento no ha sido editado desde hace mucho tiempo. Por favor, vuelva a cargar la página.",
|
||||
"errorSessionToken": "La conexión con el servidor se ha interrumpido. Por favor, vuelva a cargar la página.",
|
||||
|
@ -404,9 +407,7 @@
|
|||
"unknownErrorText": "Error desconocido.",
|
||||
"uploadImageExtMessage": "Formato de imagen desconocido.",
|
||||
"uploadImageFileCountMessage": "No hay imágenes subidas.",
|
||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.",
|
||||
"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."
|
||||
"uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Cargando datos...",
|
||||
|
@ -435,8 +436,8 @@
|
|||
"savePreparingTitle": "Preparando para guardar. Espere por favor...",
|
||||
"saveTextText": "Guardando documento...",
|
||||
"saveTitleText": "Guardando documento",
|
||||
"sendMergeText": "Envío de los resultados de fusión...",
|
||||
"sendMergeTitle": "Envío de los resultados de fusión",
|
||||
"sendMergeText": "Envío de los resultados de la fusión...",
|
||||
"sendMergeTitle": "Envío de los resultados de la fusión",
|
||||
"textLoadingDocument": "Cargando documento",
|
||||
"txtEditingMode": "Establecer el modo de edición...",
|
||||
"uploadImageTextText": "Cargando imagen...",
|
||||
|
@ -497,7 +498,7 @@
|
|||
"Odd Page ": "Página impar",
|
||||
"Quote": "Cita",
|
||||
"Same as Previous": "Igual al anterior",
|
||||
"Series": "Serie",
|
||||
"Series": "Series",
|
||||
"Subtitle": "Subtítulo",
|
||||
"Syntax Error": "Error de sintaxis",
|
||||
"Table Index Cannot be Zero": "El índice de la tabla no puede ser cero",
|
||||
|
@ -518,7 +519,7 @@
|
|||
"textBuyNow": "Visitar sitio web",
|
||||
"textClose": "Cerrar",
|
||||
"textContactUs": "Contactar con el equipo de ventas",
|
||||
"textCustomLoader": "Por desgracia, no tiene derecho a cambiar el cargador. Póngase en contacto con nuestro departamento de ventas para obtener un presupuesto.",
|
||||
"textCustomLoader": "No tiene permiso para cambiar el cargador. Póngase en contacto con nuestro departamento de ventas para obtener un presupuesto.",
|
||||
"textGuest": "Invitado",
|
||||
"textHasMacros": "El archivo contiene macros automáticas.<br>¿Quiere ejecutar macros?",
|
||||
"textNo": "No",
|
||||
|
@ -580,6 +581,7 @@
|
|||
"textDownloadRtf": "Si sigue guardando en este formato, es posible que se pierda parte del formato. ¿Está seguro de que quiere continuar?",
|
||||
"textDownloadTxt": "Si sigue guardando en este formato, se perderán todas las características excepto el texto. ¿Está seguro de que quiere continuar?",
|
||||
"textEmptyHeading": "Encabezado vacío",
|
||||
"textEmptyScreens": "No hay encabezados en el documento. Aplicar un estilo de encabezado al texto para que aparezca en el índice.",
|
||||
"textEnableAll": "Habilitar todo",
|
||||
"textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación",
|
||||
"textEncoding": "Codificación",
|
||||
|
@ -626,12 +628,13 @@
|
|||
"textReplaceAll": "Reemplazar todo",
|
||||
"textResolvedComments": "Comentarios resueltos.",
|
||||
"textRestartApplication": "Reinicie la aplicación para que los cambios surtan efecto",
|
||||
"textRight": "A la derecha",
|
||||
"textRight": "Derecha",
|
||||
"textRightToLeft": "De derecha a izquierda",
|
||||
"textSearch": "Buscar",
|
||||
"textSettings": "Ajustes",
|
||||
"textShowNotification": "Mostrar notificación",
|
||||
"textSpaces": "Espacios",
|
||||
"textSpellcheck": "Сorrección ortográfica",
|
||||
"textSpellcheck": "Corrección ortográfica",
|
||||
"textStatistic": "Estadísticas",
|
||||
"textSubject": "Asunto",
|
||||
"textSymbols": "Símbolos",
|
||||
|
@ -666,9 +669,7 @@
|
|||
"txtScheme6": "Concurrencia",
|
||||
"txtScheme7": "Equidad ",
|
||||
"txtScheme8": "Flujo",
|
||||
"txtScheme9": "Fundición",
|
||||
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
|
||||
"textRightToLeft": "Right To Left"
|
||||
"txtScheme9": "Fundición"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.",
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
"textAbout": "Honi buruz",
|
||||
"textAddress": "Helbidea",
|
||||
"textBack": "Atzera",
|
||||
"textEditor": "Dokumentu editorea",
|
||||
"textEmail": "Posta elektronikoa",
|
||||
"textPoweredBy": "Garatzailea:",
|
||||
"textTel": "Tel.",
|
||||
"textVersion": "Bertsioa",
|
||||
"textEditor": "Document Editor"
|
||||
"textVersion": "Bertsioa"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Abisua",
|
||||
|
@ -199,7 +199,8 @@
|
|||
"textOk": "Ados",
|
||||
"textRefreshEntireTable": "Freskatu taula osoa",
|
||||
"textRefreshPageNumbersOnly": "Freskatu orri-zenbakiak soilik",
|
||||
"textRows": "Errenkadak"
|
||||
"textRows": "Errenkadak",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Abisua",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "Ok",
|
||||
"textRefreshEntireTable": "Actualiser le tableau entier",
|
||||
"textRefreshPageNumbersOnly": "Actualiser les numéros de page uniquement",
|
||||
"textRows": "Lignes"
|
||||
"textRows": "Lignes",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Avertissement",
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
"textAbout": "Sobre",
|
||||
"textAddress": "Enderezo",
|
||||
"textBack": "Volver",
|
||||
"textEditor": "Editor de documentos",
|
||||
"textEmail": "Correo electrónico",
|
||||
"textPoweredBy": "Desenvolvido por",
|
||||
"textTel": "Tel",
|
||||
"textVersion": "Versión",
|
||||
"textEditor": "Document Editor"
|
||||
"textVersion": "Versión"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
|
@ -57,11 +57,11 @@
|
|||
"textShape": "Forma",
|
||||
"textStartAt": "Comezar en",
|
||||
"textTable": "Táboa",
|
||||
"textTableContents": "Táboa de contidos",
|
||||
"textTableSize": "Tamaño da táboa",
|
||||
"txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"",
|
||||
"textTableContents": "Table of Contents",
|
||||
"textWithBlueLinks": "With Blue Links",
|
||||
"textWithPageNumbers": "With Page Numbers"
|
||||
"textWithBlueLinks": "Con ligazóns azuis",
|
||||
"textWithPageNumbers": "Con números de páxina",
|
||||
"txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\""
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -197,9 +197,10 @@
|
|||
"textDoNotShowAgain": "Non amosar de novo",
|
||||
"textNumberingValue": "Valor de numeración",
|
||||
"textOk": "Aceptar",
|
||||
"textRefreshEntireTable": "Actualizar toda a táboa",
|
||||
"textRefreshPageNumbersOnly": "Actualizar soamente os números de páxina",
|
||||
"textRows": "Filas",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
|
@ -214,6 +215,7 @@
|
|||
"textAlign": "Aliñar",
|
||||
"textAllCaps": "Todo en maiúsculas",
|
||||
"textAllowOverlap": "Permitir sobreposición",
|
||||
"textAmountOfLevels": "Cantidade de niveis",
|
||||
"textApril": "Abril",
|
||||
"textAugust": "Agosto",
|
||||
"textAuto": "Automático",
|
||||
|
@ -228,11 +230,16 @@
|
|||
"textBringToForeground": "Traer ao primeiro plano",
|
||||
"textBullets": "Viñetas",
|
||||
"textBulletsAndNumbers": "Viñetas e números",
|
||||
"textCancel": "Cancelar",
|
||||
"textCellMargins": "Marxes das celdas",
|
||||
"textCentered": "Centrado",
|
||||
"textChart": "Gráfico",
|
||||
"textClassic": "Clásico",
|
||||
"textClose": "Pechar",
|
||||
"textColor": "Cor",
|
||||
"textContinueFromPreviousSection": "Continuar desde a sección anterior",
|
||||
"textCreateTextStyle": "Crear un novo estilo de texto",
|
||||
"textCurrent": "Actual",
|
||||
"textCustomColor": "Cor personalizada",
|
||||
"textDecember": "Decembro",
|
||||
"textDesign": "Deseño",
|
||||
|
@ -240,11 +247,14 @@
|
|||
"textDifferentOddAndEvenPages": "Páxinas pares e impares diferentes",
|
||||
"textDisplay": "Amosar",
|
||||
"textDistanceFromText": "Distancia desde o texto",
|
||||
"textDistinctive": "Distintivo",
|
||||
"textDone": "Concluído",
|
||||
"textDoubleStrikethrough": "Dobre riscado",
|
||||
"textEditLink": "Editar ligazón",
|
||||
"textEffects": "Efectos",
|
||||
"textEmpty": "Baleiro",
|
||||
"textEmptyImgUrl": "Hai que especificar URL de imaxe.",
|
||||
"textEnterTitleNewStyle": "Introduza o título dun novo estilo",
|
||||
"textFebruary": "Febreiro",
|
||||
"textFill": "Encher",
|
||||
"textFirstColumn": "Primeira columna",
|
||||
|
@ -254,6 +264,7 @@
|
|||
"textFontColors": "Cores da fonte",
|
||||
"textFonts": "Fontes",
|
||||
"textFooter": "Rodapé",
|
||||
"textFormal": "Formal",
|
||||
"textFr": "Ver.",
|
||||
"textHeader": "Cabeceira",
|
||||
"textHeaderRow": "Fila da cabeceira",
|
||||
|
@ -269,7 +280,9 @@
|
|||
"textKeepLinesTogether": "Manter as liñas xuntas",
|
||||
"textKeepWithNext": "Manter co seguinte",
|
||||
"textLastColumn": "Última columna",
|
||||
"textLeader": "Guía",
|
||||
"textLetterSpacing": "Espazo entre letras",
|
||||
"textLevels": "Niveis",
|
||||
"textLineSpacing": "Espazo entre liñas",
|
||||
"textLink": "Ligazón",
|
||||
"textLinkSettings": "Configuración da ligazón",
|
||||
|
@ -277,9 +290,11 @@
|
|||
"textMarch": "Marzo",
|
||||
"textMay": "Maio",
|
||||
"textMo": "Lu.",
|
||||
"textModern": "Moderno",
|
||||
"textMoveBackward": "Mover a atrás",
|
||||
"textMoveForward": "Mover á fronte",
|
||||
"textMoveWithText": "Mover con texto",
|
||||
"textNextParagraphStyle": "Estilo de parágrafo seguinte",
|
||||
"textNone": "Ningún",
|
||||
"textNoStyles": "Non hai estilos para este tipo de gráfico.",
|
||||
"textNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"",
|
||||
|
@ -287,84 +302,70 @@
|
|||
"textNumbers": "Números",
|
||||
"textOctober": "Outubro",
|
||||
"textOk": "Aceptar",
|
||||
"textOnline": "En liña",
|
||||
"textOpacity": "Opacidade",
|
||||
"textOptions": "Opcións",
|
||||
"textOrphanControl": "Control de liñas orfás",
|
||||
"textPageBreakBefore": "Salto de páxina antes",
|
||||
"textPageNumbering": "Numeración de páxinas",
|
||||
"textPageNumbers": "Número de páxinas",
|
||||
"textParagraph": "Parágrafo",
|
||||
"textParagraphStyle": "Estilo do parágrafo",
|
||||
"textPictureFromLibrary": "Imaxe da biblioteca",
|
||||
"textPictureFromURL": "Imaxe da URL",
|
||||
"textPt": "pt",
|
||||
"textRefresh": "Actualizar",
|
||||
"textRefreshEntireTable": "Actualizar toda a táboa",
|
||||
"textRefreshPageNumbersOnly": "Actualizar soamente os números de páxina",
|
||||
"textRemoveChart": "Eliminar gráfico",
|
||||
"textRemoveImage": "Eliminar imaxe",
|
||||
"textRemoveLink": "Eliminar ligazón",
|
||||
"textRemoveShape": "Eliminar forma",
|
||||
"textRemoveTable": "Eliminar táboa",
|
||||
"textRemoveTableContent": "Elimine a táboa de contidos",
|
||||
"textReorder": "Reordenar",
|
||||
"textRepeatAsHeaderRow": "Repetir como fila da cabeceira",
|
||||
"textReplace": "Substituír",
|
||||
"textReplaceImage": "Substituír imaxe",
|
||||
"textResizeToFitContent": "Cambiar tamaño para axustar o contido",
|
||||
"textRightAlign": "Aliñar á dereita",
|
||||
"textSa": "Sáb",
|
||||
"textSameCreatedNewStyle": "Igual que o novo estilo creado",
|
||||
"textScreenTip": "Consello da pantalla",
|
||||
"textSelectObjectToEdit": "Seleccionar o obxecto para editar",
|
||||
"textSendToBackground": "Enviar ao fondo",
|
||||
"textSeptember": "Setembro",
|
||||
"textSettings": "Configuración",
|
||||
"textShape": "Forma",
|
||||
"textSimple": "Simple",
|
||||
"textSize": "Tamaño",
|
||||
"textSmallCaps": "Versaletes",
|
||||
"textSpaceBetweenParagraphs": "Espazo entre parágrafos",
|
||||
"textSquare": "Cadrado",
|
||||
"textStandard": "Estándar",
|
||||
"textStartAt": "Comezar en",
|
||||
"textStrikethrough": "Riscado",
|
||||
"textStructure": "Estrutura",
|
||||
"textStyle": "Estilo",
|
||||
"textStyleOptions": "Opcións de estilo",
|
||||
"textStyles": "Estilos",
|
||||
"textSu": "Dom",
|
||||
"textSubscript": "Subscrito",
|
||||
"textSuperscript": "Sobrescrito",
|
||||
"textTable": "Táboa",
|
||||
"textTableOfCont": "TDC",
|
||||
"textTableOptions": "Opcións de táboa",
|
||||
"textText": "Texto",
|
||||
"textTh": "Xo",
|
||||
"textThrough": "A través",
|
||||
"textTight": "Estreito",
|
||||
"textTitle": "Título",
|
||||
"textTopAndBottom": "Parte superior e inferior",
|
||||
"textTotalRow": "Fila total",
|
||||
"textTu": "Ma",
|
||||
"textType": "Tipo",
|
||||
"textWe": "Me",
|
||||
"textWrap": "Axuste",
|
||||
"textAmountOfLevels": "Amount of Levels",
|
||||
"textCancel": "Cancel",
|
||||
"textCentered": "Centered",
|
||||
"textClassic": "Classic",
|
||||
"textCreateTextStyle": "Create new text style",
|
||||
"textCurrent": "Current",
|
||||
"textDistinctive": "Distinctive",
|
||||
"textDone": "Done",
|
||||
"textEnterTitleNewStyle": "Enter title of a new style",
|
||||
"textFormal": "Formal",
|
||||
"textLeader": "Leader",
|
||||
"textLevels": "Levels",
|
||||
"textModern": "Modern",
|
||||
"textNextParagraphStyle": "Next paragraph style",
|
||||
"textOnline": "Online",
|
||||
"textPageNumbers": "Page Numbers",
|
||||
"textParagraphStyle": "Paragraph Style",
|
||||
"textRefresh": "Refresh",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"textRemoveTableContent": "Remove table of contents",
|
||||
"textRightAlign": "Right Align",
|
||||
"textSameCreatedNewStyle": "Same as created new style",
|
||||
"textSimple": "Simple",
|
||||
"textStandard": "Standard",
|
||||
"textStructure": "Structure",
|
||||
"textStyles": "Styles",
|
||||
"textTableOfCont": "TOC",
|
||||
"textTitle": "Title"
|
||||
"textWrap": "Axuste"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Excedeu o tempo límite de conversión.",
|
||||
|
@ -379,6 +380,7 @@
|
|||
"errorDataRange": "Intervalo de datos incorrecto.",
|
||||
"errorDefaultMessage": "Código do erro: %1",
|
||||
"errorEditingDownloadas": "ocorreu un erro ao traballar co documento.<br>Descargue o documento para gardar a copia de seguranza do ficheiro localmente.",
|
||||
"errorEmptyTOC": "Empezar a crear unha táboa de contidos aplicando un estilo de cabeceira da galería de Estilos ao texto seleccionado.",
|
||||
"errorFilePassProtect": "O ficheiro está protexido polo contrasinal e non se pode abrir.",
|
||||
"errorFileSizeExceed": "O tamaño do ficheiro excede o límite do seu servidor.<br>Por favor, contacte co seu administrador.",
|
||||
"errorKeyEncrypt": "Descritor da clave descoñecido",
|
||||
|
@ -386,6 +388,7 @@
|
|||
"errorLoadingFont": "Tipos de letra non cargados.<br>Por favor contacte o administrador do servidor de documentos.",
|
||||
"errorMailMergeLoadFile": "Non se puido cargar",
|
||||
"errorMailMergeSaveFile": "Erro ao mesturar.",
|
||||
"errorNoTOC": "Non hai unha táboa de contidos para actualizar. Pódese inserir unha desde a lapela de Referencias.",
|
||||
"errorSessionAbsolute": "A sesión de edición do documento expirou. Por favor, volva a cargar a páxina.",
|
||||
"errorSessionIdle": "O documento non foi editado desde fai tempo. Por favor, volva a cargar a páxina.",
|
||||
"errorSessionToken": "A conexión co servidor interrompeuse. Por favor, volva a cargar a páxina.",
|
||||
|
@ -404,9 +407,7 @@
|
|||
"unknownErrorText": "Erro descoñecido.",
|
||||
"uploadImageExtMessage": "Formato de imaxe descoñecido.",
|
||||
"uploadImageFileCountMessage": "Non hai imaxes subidas.",
|
||||
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.",
|
||||
"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."
|
||||
"uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Cargando datos...",
|
||||
|
@ -528,6 +529,7 @@
|
|||
"textRemember": "Lembrar a miña escolla",
|
||||
"textReplaceSkipped": "A substitución foi realizada. {0} ocorrencias foron ignoradas.",
|
||||
"textReplaceSuccess": "A busca foi realizada. Ocorrencias substituídas: {0}",
|
||||
"textRequestMacros": "Unha macro fai unha petición á URL. Quere permitirlla a %1?",
|
||||
"textYes": "Si",
|
||||
"titleLicenseExp": "A licenza expirou",
|
||||
"titleServerVersion": "Editor actualizado",
|
||||
|
@ -539,8 +541,7 @@
|
|||
"warnLicenseUsersExceeded": "Alcanzou o límite de usuarios para os editores de %1. Por favor, contacte co se uadministrador para recibir máis información.",
|
||||
"warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.",
|
||||
"warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.<br>Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.",
|
||||
"warnProcessRightsChange": "Non ten permiso para editar este ficheiro.",
|
||||
"textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?"
|
||||
"warnProcessRightsChange": "Non ten permiso para editar este ficheiro."
|
||||
},
|
||||
"Settings": {
|
||||
"advDRMOptions": "Ficheiro protexido",
|
||||
|
@ -553,6 +554,7 @@
|
|||
"textApplicationSettings": "Configuración do aplicativo",
|
||||
"textAuthor": "Autor",
|
||||
"textBack": "Volver",
|
||||
"textBeginningDocument": "Principio do documento",
|
||||
"textBottom": "Inferior",
|
||||
"textCancel": "Cancelar",
|
||||
"textCaseSensitive": "Diferenciar maiúsculas de minúsculas",
|
||||
|
@ -566,6 +568,7 @@
|
|||
"textCommentsDisplay": "Visualización de comentarios",
|
||||
"textCreated": "Creado",
|
||||
"textCustomSize": "Tamaño personalizado",
|
||||
"textDirection": "Dirección ",
|
||||
"textDisableAll": "Desactivar todo",
|
||||
"textDisableAllMacrosWithNotification": "Desactivar todas as macros con notificación",
|
||||
"textDisableAllMacrosWithoutNotification": "Desactivar todas as macros sen notificación",
|
||||
|
@ -577,9 +580,13 @@
|
|||
"textDownloadAs": "Descargar como",
|
||||
"textDownloadRtf": "Se segue gardando neste formato, é posible que se perda parte do formato. Ten a certeza de que quere continuar?",
|
||||
"textDownloadTxt": "Se segue gardando neste formato, perderanse todas as características excepto o texto. Ten a certeza de que quere continuar?",
|
||||
"textEmptyHeading": "Cabeceira vacía",
|
||||
"textEmptyScreens": "Non hai cabeceiras no documento. Aplicar un estilo de cabeceira ao texto para que apareza no índice.",
|
||||
"textEnableAll": "Activar todo",
|
||||
"textEnableAllMacrosWithoutNotification": "Activar todas as macros sen notificación",
|
||||
"textEncoding": "Codificación",
|
||||
"textFastWV": "Visualización rápida da páxina",
|
||||
"textFeedback": "Comentarios e soporte",
|
||||
"textFind": "Buscar",
|
||||
"textFindAndReplace": "Buscar e reemprazar",
|
||||
"textFindAndReplaceAll": "Buscar e reemprazar todo",
|
||||
|
@ -592,12 +599,15 @@
|
|||
"textLastModified": "Última modificación",
|
||||
"textLastModifiedBy": "Última modificación por",
|
||||
"textLeft": "Á esquerda",
|
||||
"textLeftToRight": "Da esquerda para a dereita",
|
||||
"textLoading": "Cargando...",
|
||||
"textLocation": "Ubicación",
|
||||
"textMacrosSettings": "Configuración das macros",
|
||||
"textMargins": "Marxes",
|
||||
"textMarginsH": "Marxes superior e inferior son demasiado altos para unha altura de páxina determinada ",
|
||||
"textMarginsW": "As marxes esquerda e dereita son demasiada amplas para un acho de páxina determinada",
|
||||
"textNavigation": "Navegación",
|
||||
"textNo": "Non",
|
||||
"textNoCharacters": "Caracteres non imprimibles",
|
||||
"textNoTextFound": "Texto non atopado",
|
||||
"textOk": "Aceptar",
|
||||
|
@ -605,7 +615,11 @@
|
|||
"textOrientation": "Orientación",
|
||||
"textOwner": "Propietario",
|
||||
"textPages": "Páxinas",
|
||||
"textPageSize": "Tamaño da páxina",
|
||||
"textParagraphs": "Parágrafos",
|
||||
"textPdfProducer": "Xerador de PDF",
|
||||
"textPdfTagged": "PDF etiquetado",
|
||||
"textPdfVer": "Versión PDF",
|
||||
"textPoint": "Punto",
|
||||
"textPortrait": "Retrato ",
|
||||
"textPrint": "Imprimir",
|
||||
|
@ -613,7 +627,9 @@
|
|||
"textReplace": "Substituír",
|
||||
"textReplaceAll": "Substituír todo",
|
||||
"textResolvedComments": "Comentarios resoltos.",
|
||||
"textRestartApplication": "Reinicie o aplicativo para que os cambios teñan efecto",
|
||||
"textRight": "Á dereita",
|
||||
"textRightToLeft": "Da dereita á esquerda",
|
||||
"textSearch": "Buscar",
|
||||
"textSettings": "Configuración",
|
||||
"textShowNotification": "Amosar notificación",
|
||||
|
@ -627,6 +643,7 @@
|
|||
"textUnitOfMeasurement": "Unidade de medida",
|
||||
"textUploaded": "Subido",
|
||||
"textWords": "Palabras",
|
||||
"textYes": "Si",
|
||||
"txtDownloadTxt": "Descargar TXT",
|
||||
"txtIncorrectPwd": "O contrasinal é incorrecto",
|
||||
"txtOk": "Aceptar",
|
||||
|
@ -652,23 +669,7 @@
|
|||
"txtScheme6": "Concorrencia",
|
||||
"txtScheme7": "Equidade",
|
||||
"txtScheme8": "Fluxo",
|
||||
"txtScheme9": "Fundición",
|
||||
"textBeginningDocument": "Beginning of document",
|
||||
"textDirection": "Direction",
|
||||
"textEmptyHeading": "Empty Heading",
|
||||
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
|
||||
"textFastWV": "Fast Web View",
|
||||
"textFeedback": "Feedback & Support",
|
||||
"textLeftToRight": "Left To Right",
|
||||
"textNavigation": "Navigation",
|
||||
"textNo": "No",
|
||||
"textPageSize": "Page Size",
|
||||
"textPdfProducer": "PDF Producer",
|
||||
"textPdfTagged": "Tagged PDF",
|
||||
"textPdfVer": "PDF Version",
|
||||
"textRestartApplication": "Please restart the application for the changes to take effect",
|
||||
"textRightToLeft": "Right To Left",
|
||||
"textYes": "Yes"
|
||||
"txtScheme9": "Fundición"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Ten cambios sen gardar. Prema en \"Permanecer nesta páxina\" para esperar a que se garde automaticamente. Prema en \"Saír desta páxina\" para descartar todos os cambios non gardados.",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRows": "Sorok",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Figyelmeztetés",
|
||||
|
|
680
apps/documenteditor/mobile/locale/hy.json
Normal file
680
apps/documenteditor/mobile/locale/hy.json
Normal file
|
@ -0,0 +1,680 @@
|
|||
{
|
||||
"About": {
|
||||
"textAbout": "Մասին",
|
||||
"textAddress": "Հասցե",
|
||||
"textBack": "Հետ",
|
||||
"textEditor": "Փաստաթղթի Խմբագրիչ",
|
||||
"textEmail": "էլփոստ",
|
||||
"textPoweredBy": "Օժանդակող՝",
|
||||
"textTel": "Հեռ.",
|
||||
"textVersion": "Տարբերակ"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "Զգուշացում",
|
||||
"textAddLink": "Հավելել հղում",
|
||||
"textAddress": "Հասցե",
|
||||
"textBack": "Հետ",
|
||||
"textBelowText": "Տեքստի ներքև",
|
||||
"textBottomOfPage": "Էջի ներքևում",
|
||||
"textBreak": "Ընդհատում",
|
||||
"textCancel": "Չեղարկել",
|
||||
"textCenterBottom": "Ներքևից կենտրոնով",
|
||||
"textCenterTop": "Վերևից կենտրոնով",
|
||||
"textColumnBreak": "Սյան ընդհատում",
|
||||
"textColumns": "Սյունակներ",
|
||||
"textComment": "Մեկնաբանություն",
|
||||
"textContinuousPage": "Շարունակվող էջ",
|
||||
"textCurrentPosition": "Ընթացիկ դիրք",
|
||||
"textDisplay": "Ցուցադրել",
|
||||
"textEmptyImgUrl": "Պետք է նշել նկարի URL-ը։",
|
||||
"textEvenPage": "Զույգ էջ",
|
||||
"textFootnote": "Ծանոթագրություն",
|
||||
"textFormat": "Ձևաչափ",
|
||||
"textImage": "Նկար",
|
||||
"textImageURL": "Նկարի URL",
|
||||
"textInsert": "Զետեղել",
|
||||
"textInsertFootnote": "Զետեղել տողատակ",
|
||||
"textInsertImage": "Զետեղել նկար",
|
||||
"textLeftBottom": "Ձախ ներքև",
|
||||
"textLeftTop": "Ձախ վերև",
|
||||
"textLink": "Հղում",
|
||||
"textLinkSettings": "Հղման կարգավորումներ",
|
||||
"textLocation": "Տեղ",
|
||||
"textNextPage": "Հաջորդ էջ",
|
||||
"textOddPage": "Կենտ էջ",
|
||||
"textOk": "Լավ",
|
||||
"textOther": "Այլ",
|
||||
"textPageBreak": "Էջատում",
|
||||
"textPageNumber": "Էջի համար",
|
||||
"textPictureFromLibrary": "Նկար գրադարանից",
|
||||
"textPictureFromURL": "Նկար URL-ից",
|
||||
"textPosition": "Դիրք",
|
||||
"textRightBottom": "Աջ ներքև",
|
||||
"textRightTop": "Աջ վերև",
|
||||
"textRows": "Տողեր",
|
||||
"textScreenTip": "Հուշակի գրվածք",
|
||||
"textSectionBreak": "Բաժնի ընդհատում",
|
||||
"textShape": "Պատկեր",
|
||||
"textStartAt": "Մեկնարկել",
|
||||
"textTable": "Աղյուսակ",
|
||||
"textTableContents": "Բովանդակություն",
|
||||
"textTableSize": "Աղյուսակի չափ",
|
||||
"textWithBlueLinks": "Կապույտ հղումներով",
|
||||
"textWithPageNumbers": "Էջի համարներով",
|
||||
"txtNotUrl": "Այս դաշտը պիտի լինի URL հասցե՝ \"http://www.example.com\" ձևաչափով։ "
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
"notcriticalErrorTitle": "Զգուշացում",
|
||||
"textAccept": "Ընդունել",
|
||||
"textAcceptAllChanges": "Ընդունել բոլոր փոփոխումները",
|
||||
"textAddComment": "Ավելացնել մեկնաբանություն",
|
||||
"textAddReply": "Ավելացնել պատասխան",
|
||||
"textAllChangesAcceptedPreview": "Բոլոր փոփոխումներն ընդունված են (նախադիտում)",
|
||||
"textAllChangesEditing": "Բոլոր փոփոխումները (խմբագրում)",
|
||||
"textAllChangesRejectedPreview": "Բոլոր փոփոխումները մերժված են (նախադիտում)",
|
||||
"textAtLeast": "առնվազն",
|
||||
"textAuto": "Ինքնաշխատ",
|
||||
"textBack": "Հետ",
|
||||
"textBaseline": "Հիմնագիծ",
|
||||
"textBold": "Թավ",
|
||||
"textBreakBefore": "Սկզբից էջատում",
|
||||
"textCancel": "Չեղարկել",
|
||||
"textCaps": "Բոլորը մեծատառ",
|
||||
"textCenter": "Հավասարեցնել կենտրոնում",
|
||||
"textChart": "Գծապատկեր",
|
||||
"textCollaboration": "Համագործակցում",
|
||||
"textColor": "Տառատեսակի գույն",
|
||||
"textComments": "Մեկնաբանություններ",
|
||||
"textContextual": "Միևնույն ոճի պարբերությունների միջև միջակայքեր մի ավելացրեք",
|
||||
"textDelete": "Ջնջել",
|
||||
"textDeleteComment": "Ջնջել մեկնաբանությունը",
|
||||
"textDeleted": "Ջնջված՝",
|
||||
"textDeleteReply": "Ջնջել պատասխանը",
|
||||
"textDisplayMode": "Ցուցադրման կերպ",
|
||||
"textDone": "Պատրաստ է",
|
||||
"textDStrikeout": "Կրկնակի ջնջագծում",
|
||||
"textEdit": "Խմբագրել",
|
||||
"textEditComment": "Խմբագրել մեկնաբանությունը",
|
||||
"textEditReply": "Խմբագրել պատասխանը",
|
||||
"textEditUser": "Փաստաթուղթը խմբագրողներ՝",
|
||||
"textEquation": "Հավասարում",
|
||||
"textExact": "ճշգրիտ",
|
||||
"textFinal": "Վերջնական",
|
||||
"textFirstLine": "Առաջին տող",
|
||||
"textFormatted": "Ձևաչափված",
|
||||
"textHighlight": "Գունանշման գույն",
|
||||
"textImage": "Նկար",
|
||||
"textIndentLeft": "Նահանջ` ձախ",
|
||||
"textIndentRight": "Նահանջ` աջ",
|
||||
"textInserted": "Զետեղված․",
|
||||
"textItalic": "Շեղ",
|
||||
"textJustify": "Հավասարեցնել տողաշտկված",
|
||||
"textKeepLines": "Տողերը պահել միասին ",
|
||||
"textKeepNext": "Պահել հաջորդի հետ",
|
||||
"textLeft": "Հավասարեցնել ձախից",
|
||||
"textLineSpacing": "Տողամիջոց՝",
|
||||
"textMarkup": "նշարկում",
|
||||
"textMessageDeleteComment": "Իսկապե՞ս ցանկանում եք ջնջել այս մեկնաբանությունը:",
|
||||
"textMessageDeleteReply": "Իսկապե՞ս ցանկանում եք ջնջել այս մեկնաբանությունը:",
|
||||
"textMultiple": "Բազմակի",
|
||||
"textNoBreakBefore": "Սկզբից էջատում չկա",
|
||||
"textNoChanges": "Փոփոխումներ չկան։",
|
||||
"textNoComments": "Փաստաթղթում մեկնաբանություններ չկան",
|
||||
"textNoContextual": "Հավելել միջակայք նույն ոճի պարբերությունների միջև",
|
||||
"textNoKeepLines": "Տողերը միասին չպահել",
|
||||
"textNoKeepNext": "Հաջորդից առանձնացնել",
|
||||
"textNot": "Ոչ ",
|
||||
"textNoWidow": "Առանց կախված տողի կառավարման",
|
||||
"textNum": "Փոխել համարակալումը",
|
||||
"textOk": "Լավ",
|
||||
"textOriginal": "Բնօրինակ",
|
||||
"textParaDeleted": "Պարբերությունը ջնջված է",
|
||||
"textParaFormatted": "Պարբերությունը ձևաչափված է",
|
||||
"textParaInserted": "Պարբերությունը զետեղված է ",
|
||||
"textParaMoveFromDown": "Տեղափոխված վար՝",
|
||||
"textParaMoveFromUp": "Տեղափոխված վեր՝",
|
||||
"textParaMoveTo": "Տեղափոխված՝",
|
||||
"textPosition": "Դիրք",
|
||||
"textReject": "Մերժել",
|
||||
"textRejectAllChanges": "Մերժել բոլոր փոփոխումները",
|
||||
"textReopen": "Նորից բացել",
|
||||
"textResolve": "Լուծել",
|
||||
"textReview": "Վերանայում",
|
||||
"textReviewChange": "Փոփոխումների վերանայում",
|
||||
"textRight": "Հավասարեցնել աջից",
|
||||
"textShape": "Պատկեր",
|
||||
"textShd": "Խորքի գույն",
|
||||
"textSmallCaps": "Փոքրատառեր",
|
||||
"textSpacing": "Միջատարածք",
|
||||
"textSpacingAfter": "Տարածություն՝ հետո",
|
||||
"textSpacingBefore": "Տարածություն՝ առաջ",
|
||||
"textStrikeout": "Գծաջնջված",
|
||||
"textSubScript": "Վարգիր",
|
||||
"textSuperScript": "Վերգիր",
|
||||
"textTableChanged": "Աղյուսակի կարգավորումները փոխվել են",
|
||||
"textTableRowsAdd": "Ավելացված են աղյուսակի տողեր",
|
||||
"textTableRowsDel": "Ջնջված են աղյուսակի տողեր",
|
||||
"textTabs": "Փոխել Ներդիրները",
|
||||
"textTrackChanges": "Հետագծել փոփոխությունները",
|
||||
"textTryUndoRedo": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:",
|
||||
"textUnderline": "Ընդգծված",
|
||||
"textUsers": "Օգտատերեր",
|
||||
"textWidow": "Վերջակախ տողի կառավարում"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "Առանց լցման"
|
||||
},
|
||||
"ThemeColorPalette": {
|
||||
"textCustomColors": "Հարմարեցված գույներ",
|
||||
"textStandartColors": "Ստանդարտ գույներ",
|
||||
"textThemeColors": "Թեմայի գույներ"
|
||||
}
|
||||
},
|
||||
"ContextMenu": {
|
||||
"errorCopyCutPaste": "Համատեքստի ցանկի պատճենման, կտրման ու փակցնելու գործողությունները միայն այս նիշքի համար են։",
|
||||
"menuAddComment": "Ավելացնել մեկնաբանություն",
|
||||
"menuAddLink": "Հավելել հղում",
|
||||
"menuCancel": "Չեղարկել",
|
||||
"menuContinueNumbering": "Շարունակել համարակալումը",
|
||||
"menuDelete": "Ջնջել",
|
||||
"menuDeleteTable": "Ջնջել աղյուսակը",
|
||||
"menuEdit": "Խմբագրել",
|
||||
"menuJoinList": "Միացնել նախորդ ցուցակին",
|
||||
"menuMerge": "Միաձուլել",
|
||||
"menuMore": "Ավել",
|
||||
"menuOpenLink": "Բացել հղումը",
|
||||
"menuReview": "Վերանայում",
|
||||
"menuReviewChange": "Փոփոխումների վերանայում",
|
||||
"menuSeparateList": "Առանձին ցուցակ",
|
||||
"menuSplit": "Տրոհում",
|
||||
"menuStartNewList": "Մեկնարկել նոր ցուցակ",
|
||||
"menuStartNumberingFrom": "Տեղակայել համարակալման արժեքը",
|
||||
"menuViewComment": "Դիտել մեկնաբանությունը",
|
||||
"textCancel": "Չեղարկել",
|
||||
"textColumns": "Սյունակներ",
|
||||
"textCopyCutPasteActions": "Պատճենելու, կտրելու և փակցնելու գործողություններ",
|
||||
"textDoNotShowAgain": "Այլևս ցույց չտալ",
|
||||
"textNumberingValue": "Համարակալման արժեք",
|
||||
"textOk": "Լավ",
|
||||
"textRefreshEntireTable": "Թարմացրել ամբողջ աղյուսակը",
|
||||
"textRefreshPageNumbersOnly": "Թարմացնել միայն էջերի համարները",
|
||||
"textRows": "Տողեր",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Զգուշացում",
|
||||
"textActualSize": "Իրական չափ",
|
||||
"textAddCustomColor": "Հավելել հարմարեցված գույն",
|
||||
"textAdditional": "Հավելյալ",
|
||||
"textAdditionalFormatting": "Հավելյալ ձևաչափում",
|
||||
"textAddress": "Հասցե",
|
||||
"textAdvanced": "Հավելյալ",
|
||||
"textAdvancedSettings": "Լրացուցիչ կարգավորումներ",
|
||||
"textAfter": "Հետո",
|
||||
"textAlign": "Հավասարեցնել",
|
||||
"textAllCaps": "Բոլորը մեծատառ",
|
||||
"textAllowOverlap": "Թույլ տալ վերածածկում",
|
||||
"textAmountOfLevels": "Մակարդակների չափը",
|
||||
"textApril": "Ապրիլ",
|
||||
"textAugust": "Օգոստոս",
|
||||
"textAuto": "Ինքնաշխատ",
|
||||
"textAutomatic": "Ինքնաշխատ",
|
||||
"textBack": "Հետ",
|
||||
"textBackground": "Խորք",
|
||||
"textBandedColumn": "Միջարկվող սյունակներ",
|
||||
"textBandedRow": "Միջարկվող տողեր",
|
||||
"textBefore": "Առաջ",
|
||||
"textBehind": "Տեքստի հետևում",
|
||||
"textBorder": "Եզրագիծ",
|
||||
"textBringToForeground": "Բերել առջևք ",
|
||||
"textBullets": "Պարբերակներ",
|
||||
"textBulletsAndNumbers": "Պարբերակներ և համարներ",
|
||||
"textCancel": "Չեղարկել",
|
||||
"textCellMargins": "Վանդակի լուսանցքներ",
|
||||
"textCentered": "Կենտրոնացված",
|
||||
"textChart": "Գծապատկեր",
|
||||
"textClassic": "Դասական",
|
||||
"textClose": "Փակել",
|
||||
"textColor": "Գույն",
|
||||
"textContinueFromPreviousSection": "Շարունակել նախորդ բաժնից",
|
||||
"textCreateTextStyle": "Ստեղծել նոր տեքստի ոճ",
|
||||
"textCurrent": "Ընթացիկ",
|
||||
"textCustomColor": "Հարմարեցված գույն",
|
||||
"textDecember": "Դեկտեմբեր",
|
||||
"textDesign": "Ձևավորում",
|
||||
"textDifferentFirstPage": "Տարբեր առաջին էջ",
|
||||
"textDifferentOddAndEvenPages": "Կենտ ու զույգ էջերը՝ տարբեր",
|
||||
"textDisplay": "Ցուցադրել",
|
||||
"textDistanceFromText": "Հեռավորությունը տեքստից",
|
||||
"textDistinctive": "Տարբերակիչ",
|
||||
"textDone": "Պատրաստ է",
|
||||
"textDoubleStrikethrough": "Կրկնակի ջնջագծում",
|
||||
"textEditLink": "Խմբագրել հղումը",
|
||||
"textEffects": "Էֆեկտներ",
|
||||
"textEmpty": "Դատարկ",
|
||||
"textEmptyImgUrl": "Պետք է նշել նկարի URL-ը։",
|
||||
"textEnterTitleNewStyle": "Մուտքագրել նոր ոճի վերնագիրը",
|
||||
"textFebruary": "Փետրվար",
|
||||
"textFill": "Լցնել",
|
||||
"textFirstColumn": "Առաջին սյունակ",
|
||||
"textFirstLine": "Առաջին տող",
|
||||
"textFlow": "Հոսք",
|
||||
"textFontColor": "Տառատեսակի գույն",
|
||||
"textFontColors": "Տառատեսակի գույներ",
|
||||
"textFonts": "Տառատեսակներ",
|
||||
"textFooter": "Էջատակ",
|
||||
"textFormal": "Պաշտոնական",
|
||||
"textFr": "Ուրբ",
|
||||
"textHeader": "Էջագլուխ",
|
||||
"textHeaderRow": "Էջագլխի տող",
|
||||
"textHighlightColor": "Գունանշման գույն",
|
||||
"textHyperlink": "Գերհղում",
|
||||
"textImage": "Նկար",
|
||||
"textImageURL": "Նկարի URL",
|
||||
"textInFront": "Տեքստի դիմաց",
|
||||
"textInline": "Գրվածքի հետ մեկտող",
|
||||
"textJanuary": "Հունվար",
|
||||
"textJuly": "Հուլիս",
|
||||
"textJune": "Հունիս",
|
||||
"textKeepLinesTogether": "Տողերը պահել միասին ",
|
||||
"textKeepWithNext": "Պահել հաջորդի հետ",
|
||||
"textLastColumn": "Վերջին սյունակ",
|
||||
"textLeader": "Առաջնորդ",
|
||||
"textLetterSpacing": "Տառամիջոց",
|
||||
"textLevels": "Մակարդակներ",
|
||||
"textLineSpacing": "Տողամիջոց",
|
||||
"textLink": "Հղում",
|
||||
"textLinkSettings": "Հղման կարգավորումներ",
|
||||
"textLinkToPrevious": "Հղել նախորդին",
|
||||
"textMarch": "Մարտ",
|
||||
"textMay": "Մայիս ",
|
||||
"textMo": "Ամս",
|
||||
"textModern": "Ժամանակակից",
|
||||
"textMoveBackward": "Տանել հետ",
|
||||
"textMoveForward": "Տանել առաջ",
|
||||
"textMoveWithText": "Տանել տեքստի հետ",
|
||||
"textNextParagraphStyle": "Հաջորդ պարբերության ոճը",
|
||||
"textNone": "Ոչ մեկը",
|
||||
"textNoStyles": "Այս տեսակի համար գծապատկերների ոճեր չկան:",
|
||||
"textNotUrl": "Այս դաշտը պիտի լինի URL հասցե՝ \"http://www.example.com\" ձևաչափով։ ",
|
||||
"textNovember": "Նոյեմբեր",
|
||||
"textNumbers": "Թվեր",
|
||||
"textOctober": "Հոկտեմբեր",
|
||||
"textOk": "Լավ",
|
||||
"textOnline": "Առցանց",
|
||||
"textOpacity": "Մգություն",
|
||||
"textOptions": "Ընտրանքներ",
|
||||
"textOrphanControl": "Կախյալ տողի կառավարում",
|
||||
"textPageBreakBefore": "Սկզբից էջատում",
|
||||
"textPageNumbering": "Էջերի համարակալում",
|
||||
"textPageNumbers": "էջի համարներ",
|
||||
"textParagraph": "Պարբերություն",
|
||||
"textParagraphStyle": "Պարբերության ոճ",
|
||||
"textPictureFromLibrary": "Նկար գրադարանից",
|
||||
"textPictureFromURL": "Նկար URL-ից",
|
||||
"textPt": "կտ",
|
||||
"textRefresh": "Թարմացնել",
|
||||
"textRefreshEntireTable": "Թարմացրել ամբողջ աղյուսակը",
|
||||
"textRefreshPageNumbersOnly": "Թարմացնել միայն էջերի համարները",
|
||||
"textRemoveChart": "Հեռացնել գծապատկերը",
|
||||
"textRemoveImage": "Հեռացնել նկարը",
|
||||
"textRemoveLink": "Հեռացնել հղումը",
|
||||
"textRemoveShape": "Հեռացնել պատկերը",
|
||||
"textRemoveTable": "Հեռացնել աղյուսակը",
|
||||
"textRemoveTableContent": "Հեռացնել բովանդակության ցանկը",
|
||||
"textReorder": "Վերադասավորել",
|
||||
"textRepeatAsHeaderRow": "Կրկնել որպես գլխամասի տող",
|
||||
"textReplace": "Փոխարինել",
|
||||
"textReplaceImage": "Փոխարինել նկարը",
|
||||
"textResizeToFitContent": "Չափափոխել ըստ պարունակության",
|
||||
"textRightAlign": "Վերև-աջ հավասարեցում",
|
||||
"textSa": "ՈԱ",
|
||||
"textSameCreatedNewStyle": "Նույնը, ինչ ստեղծված նոր ոճը",
|
||||
"textScreenTip": "Հուշակի գրվածք",
|
||||
"textSelectObjectToEdit": "Ընտրել խմբագրման օբյեկտը",
|
||||
"textSendToBackground": "Տանել խորք",
|
||||
"textSeptember": "Սեպտեմբեր",
|
||||
"textSettings": "Կարգավորումներ",
|
||||
"textShape": "Պատկեր",
|
||||
"textSimple": "Պարզ",
|
||||
"textSize": "Չափ",
|
||||
"textSmallCaps": "Փոքրատառեր",
|
||||
"textSpaceBetweenParagraphs": "Բացատ պարբերությունների միջև",
|
||||
"textSquare": "Քառակուսի",
|
||||
"textStandard": "Ստանդարտ",
|
||||
"textStartAt": "Մեկնարկել",
|
||||
"textStrikethrough": "Վրագծում",
|
||||
"textStructure": "Կառուցվածք",
|
||||
"textStyle": "Ոճ",
|
||||
"textStyleOptions": "Ոճի կարգավորումներ",
|
||||
"textStyles": "Ոճեր",
|
||||
"textSu": "SU",
|
||||
"textSubscript": "Վարգիր",
|
||||
"textSuperscript": "Վերգիր",
|
||||
"textTable": "Աղյուսակ",
|
||||
"textTableOfCont": "ԲՑ ",
|
||||
"textTableOptions": "Աղյուսակի ընտրանքներ",
|
||||
"textText": "Տեքստ",
|
||||
"textTh": "Հնգ",
|
||||
"textThrough": "Միջով",
|
||||
"textTight": "Ձիգ",
|
||||
"textTitle": "Վերնագիր",
|
||||
"textTopAndBottom": "Վերև և ներքև",
|
||||
"textTotalRow": "Արդյունքի տող",
|
||||
"textTu": "Երք",
|
||||
"textType": "Տեսակ",
|
||||
"textWe": "Չրք",
|
||||
"textWrap": "Ծալում"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։",
|
||||
"criticalErrorExtText": "Սեղմեք «Լավ»՝ փաստաթղթերի ցանկին վերադառնալու համար:",
|
||||
"criticalErrorTitle": "Սխալ",
|
||||
"downloadErrorText": "Ներբեռնումը ձախողվեց։",
|
||||
"errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի համար իրավունք չունեք:<br>Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ:",
|
||||
"errorBadImageUrl": "Նկարի URL-ը սխալ է",
|
||||
"errorConnectToServer": "Չհաջողվեց պահել այս փաստաթուղթը:Ստուգեք կապի կարգավորումները կամ կապվեք ադմինիստրատորի հետ:Երբ սեղմում եք Լավ, Ձեզ կառաջարկվի ներբեռնել փաստաթուղթը:",
|
||||
"errorDatabaseConnection": "Արտաքին սխալ։<br>Տվյալաշտեմարանի միացման սխալ։ Դիմեք տեխսպասարկմանը։",
|
||||
"errorDataEncrypted": "Ընդունվել են գաղտնագրված փոփոխությունները, դրանք չեն կարող վերծանելվել։",
|
||||
"errorDataRange": "Տվյալների սխալ ընդգրկույթ։",
|
||||
"errorDefaultMessage": "Սխալի կոդ՝ %1",
|
||||
"errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում սխալ է տեղի ունեցել:<br>Ներբեռնեք փաստաթուղթը՝ ֆայլի կրկնօրինակը տեղում պահելու համար:",
|
||||
"errorEmptyTOC": "Սկսել ստեղծել բովանդակության աղյուսակ՝ կիրառելով վերնագրի ոճը ոճերի սրահից ընտրված տեքստում:",
|
||||
"errorFilePassProtect": "Ֆայլը պաշտպանված է գաղտնաբառով և հնարավոր չէ բացել:",
|
||||
"errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի սահմանաչափը:Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ:",
|
||||
"errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ",
|
||||
"errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է",
|
||||
"errorLoadingFont": "Տառատեսակները բեռնված չեն:<br>Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:",
|
||||
"errorMailMergeLoadFile": "Բեռնման ձախողում",
|
||||
"errorMailMergeSaveFile": "Միաձուլումը խափանվեց։",
|
||||
"errorNoTOC": "Արդիացնելու համար բովանդակություն չկա: Կարող եք զետեղել այն հղումներ ներդիրից:",
|
||||
"errorSessionAbsolute": "Փաստաթղթերի խմբագրման աշխատաշրջանն ավարտվել է:Խնդրում ենք վերաբեռնել էջը:",
|
||||
"errorSessionIdle": "Փաստաթուղթը երկար ժամանակ չի խմբագրվել։Խնդրում ենք վերաբեռնել էջը:",
|
||||
"errorSessionToken": "Սերվերի հետ կապն ընդհատվել է:Խնդրում ենք վերաբեռնել էջը:",
|
||||
"errorStockChart": "Սխալ տողերի հերթականություն:Տվյալների տատանման գծապատկեր կառուցելու համար տվյալները թերթիկի վրա տեղադրեք հետևյալ հաջորդականությամբ.<br> Բացման գին,առավելագույն գին,նվազագույն գին, փակման գին։",
|
||||
"errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։<br>Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։",
|
||||
"errorUserDrop": "Հնարավոր չէ մուտք գործել ֆայլ այս պահին:",
|
||||
"errorUsersExceed": "Օգտատերերի՝ սակագնային պլանով թույլատրված քանակը գերազանցվել է։",
|
||||
"errorViewerDisconnect": "Կապը կորել է:Դուք դեռ կարող եք դիտել փաստաթուղթը,<br>բայց Դուք չեք կարողանա ներբեռնել կամ տպել այն, մինչև կապը չվերականգնվի և էջը վերաբեռնվի:",
|
||||
"notcriticalErrorTitle": "Զգուշացում",
|
||||
"openErrorText": "Ֆայլը բացելիս սխալ է տեղի ունեցել",
|
||||
"saveErrorText": "Ֆայլը պահելիս սխալ է տեղի ունեցել",
|
||||
"scriptLoadError": "Կապը չափազանց դանդաղ է, որոշ բաղադրիչներ չհաջողվեց բեռնել:Խնդրում ենք վերաբեռնել էջը:",
|
||||
"splitDividerErrorText": "Տողերի թիվը պետք է %1-ի բաժանարար լինի",
|
||||
"splitMaxColsErrorText": "Սյունակների թիվը %1-ից պակաս պիտի լինի",
|
||||
"splitMaxRowsErrorText": "Տողերի թիվը պետք է %1-ից պակաս լինի",
|
||||
"unknownErrorText": "Անհայտ սխալ։",
|
||||
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
||||
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
|
||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Տվյալների բեռնում...",
|
||||
"applyChangesTitleText": "Տվյալների բեռնում",
|
||||
"downloadMergeText": "Ներբեռնում...",
|
||||
"downloadMergeTitle": "Ներբեռնում",
|
||||
"downloadTextText": "Փաստաթղթի ներբեռնում...",
|
||||
"downloadTitleText": "Փաստաթղթի ներբեռնում",
|
||||
"loadFontsTextText": "Տվյալների բեռնում...",
|
||||
"loadFontsTitleText": "Տվյալների բեռնում",
|
||||
"loadFontTextText": "Տվյալների բեռնում...",
|
||||
"loadFontTitleText": "Տվյալների բեռնում",
|
||||
"loadImagesTextText": "Նկարների բեռնում...",
|
||||
"loadImagesTitleText": "Նկարների բեռնում",
|
||||
"loadImageTextText": "Նկարի բեռնում...",
|
||||
"loadImageTitleText": "Նկարի բեռնում",
|
||||
"loadingDocumentTextText": "Փաստաթղթի բեռնում...",
|
||||
"loadingDocumentTitleText": "Փաստաթղթի բեռնում",
|
||||
"mailMergeLoadFileText": "Տվյալների աղբյուրի բեռնում...",
|
||||
"mailMergeLoadFileTitle": "Տվյալների աղբյուրի բեռնում",
|
||||
"openTextText": "Փաստաթղթի բացում...",
|
||||
"openTitleText": "Փաստաթղթի բացում",
|
||||
"printTextText": "Փաստաթղթի տպում...",
|
||||
"printTitleText": "Փաստաթղթի տպում",
|
||||
"savePreparingText": "Նախապատրաստում պահպանմանը",
|
||||
"savePreparingTitle": "Նախապատրաստում պահպանմանը։ Խնդրում ենք սպասել...",
|
||||
"saveTextText": "Փաստաթղթի պահպանում...",
|
||||
"saveTitleText": "Փաստաթղթի պահպանում",
|
||||
"sendMergeText": "Ձուլման ուղարկում․․․",
|
||||
"sendMergeTitle": "Ձուլման ուղարկում",
|
||||
"textLoadingDocument": "Փաստաթղթի բեռնում",
|
||||
"txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․",
|
||||
"uploadImageTextText": "Նկարի վերբեռնում...",
|
||||
"uploadImageTitleText": "Նկարի վերբեռնում",
|
||||
"waitText": "Խնդրում ենք սպասել..."
|
||||
},
|
||||
"Main": {
|
||||
"criticalErrorTitle": "Սխալ",
|
||||
"errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի համար իրավունք չունեք:<br>Խնդրում ենք կապվել ձեր ադմինիստրատորի հետ:",
|
||||
"errorOpensource": "Օգտագործելով Համայնքի անվճար տարբերակը՝ կարող եք փաստաթղթեր բացել միայն դիտելու համար:Բջջային վեբ խմբագիրներ մուտք գործելու համար անհրաժեշտ է կոմերցիոն լիցենզիա:",
|
||||
"errorProcessSaveResult": "Պահումը ձախողվել է:",
|
||||
"errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։",
|
||||
"errorUpdateVersion": "Նիշքի տարբերակը փոխվել է։ Էջը նորից կբեռնվի։",
|
||||
"leavePageText": "Դուք չպահված փոփոխություններ ունեք:Սեղմեք «Մնա այս էջում»՝ սպասելու ավտոմատ պահպանմանը:Սեղմեք «Լքել այս էջը»՝ չպահված բոլոր փոփոխությունները մերժելու համար:",
|
||||
"notcriticalErrorTitle": "Զգուշացում",
|
||||
"SDK": {
|
||||
" -Section ": "-Բաժին",
|
||||
"above": "Վեր",
|
||||
"below": "ներքևում",
|
||||
"Caption": "Նկարագիր",
|
||||
"Choose an item": "Ընտրել տարր",
|
||||
"Click to load image": "Սեղմեք նկարրը բեռնելու համար",
|
||||
"Current Document": "Ընթացիկ փաստաթուղթ",
|
||||
"Diagram Title": "Գծապատկերի վերնագիր",
|
||||
"endnote text": "Վերջնական ծանոթագրության տեքստ",
|
||||
"Enter a date": "Մուտքագրեք ամսաթիվ",
|
||||
"Error! Bookmark not defined": "Սխալ։ Էջանիշը չորոշվեց։",
|
||||
"Error! Main Document Only": "Սխալ։ Միայն հիմնական փաստաթուղթ։",
|
||||
"Error! No text of specified style in document": "Սխալ։ Փաստաթղթում չկա նշված ոճի տեքստ։",
|
||||
"Error! Not a valid bookmark self-reference": "Սխալ։ Էջանիշի անվավեր հղում։",
|
||||
"Even Page ": "Զույգ էջ",
|
||||
"First Page ": "Առաջին էջ",
|
||||
"Footer": "Էջատակ",
|
||||
"footnote text": "Ծանոթագրության տեքստ",
|
||||
"Header": "Էջագլուխ",
|
||||
"Heading 1": "Գլխագիր 1",
|
||||
"Heading 2": "Գլխագիր 2",
|
||||
"Heading 3": "Գլխագիր 3",
|
||||
"Heading 4": "Գլխագիր 4",
|
||||
"Heading 5": "Գլխագիր 5",
|
||||
"Heading 6": "Գլխագիր 6",
|
||||
"Heading 7": "Գլխագիր 7",
|
||||
"Heading 8": "Գլխագիր 8",
|
||||
"Heading 9": "Գլխագիր 9",
|
||||
"Hyperlink": "Գերհղում",
|
||||
"Index Too Large": "Ինդեքսը չափազանց մեծ է",
|
||||
"Intense Quote": "Գործուն մեջբերում",
|
||||
"Is Not In Table": "Աղյուսակում չէ",
|
||||
"List Paragraph": "Ցանկի պարբերություն",
|
||||
"Missing Argument": "Բացակայող փաստարկ",
|
||||
"Missing Operator": "Բացակայող օպերատոր",
|
||||
"No Spacing": "Առանց միջատարածքի",
|
||||
"No table of contents entries found": "Բովանդակության ցանկի միավորներ չեն գտնվել։ Կիրառեք վերնագրի ոճ տեքստի վրա, որպեսզի այն հայտնվի բովանդակության աղյուսակում:",
|
||||
"No table of figures entries found": "Պատկերների ցանկի տարրերը չեն գտնվել:",
|
||||
"None": "Ոչ մեկը",
|
||||
"Normal": "Սովորական",
|
||||
"Number Too Large To Format": "Թիվը Չափազանց Մեծ է ձևաչափման համար",
|
||||
"Odd Page ": "Կենտ էջ",
|
||||
"Quote": "Մեջբերում",
|
||||
"Same as Previous": "Նույնը, ինչ նախորդը",
|
||||
"Series": "Շարքեր",
|
||||
"Subtitle": "Ենթանուն",
|
||||
"Syntax Error": "Շարահյուսական սխալ",
|
||||
"Table Index Cannot be Zero": "Աղյուսակի դասիչը չի կարող զրո լինել",
|
||||
"Table of Contents": "Բովանդակություն",
|
||||
"table of figures": "Ձևերի աղյուսակ",
|
||||
"The Formula Not In Table": "Բանաձևն աղյուսակում չէ",
|
||||
"Title": "Վերնագիր",
|
||||
"TOC Heading": "ԲՑ վերնագիր",
|
||||
"Type equation here": "Այստեղ մուտքագրեք հավասարումը:",
|
||||
"Undefined Bookmark": "Չորոշված էջանիշ",
|
||||
"Unexpected End of Formula": "Բանաձևի անսպասելի ավարտ",
|
||||
"X Axis": "X առանցքի XAS",
|
||||
"Y Axis": "Y առանցք",
|
||||
"Your text here": "Ձեր տեքստը այստեղ",
|
||||
"Zero Divide": "Բաժանում զրոյի վրա"
|
||||
},
|
||||
"textAnonymous": "Անանուն",
|
||||
"textBuyNow": "Այցելել կայք",
|
||||
"textClose": "Փակել",
|
||||
"textContactUs": "Կապ վաճառքի բաժնի հետ",
|
||||
"textCustomLoader": "Ներեցեք, Դուք իրավունք չունեք փոխել բեռնիչը:Մեջբերում ստանալու համար դիմեք մեր վաճառքի բաժին:",
|
||||
"textGuest": "Հյուր",
|
||||
"textHasMacros": "Ֆայլում կան ինքնաշխատ մակրոներ։<br>Գործարկե՞լ դրանք։",
|
||||
"textNo": "Ոչ",
|
||||
"textNoLicenseTitle": "Լիցենզիայի սահմանաչափը հասել է",
|
||||
"textNoTextFound": "Տեքստը չի գտնվել",
|
||||
"textPaidFeature": "Վճարովի գործառույթ",
|
||||
"textRemember": "Հիշել իմ ընտրությունը",
|
||||
"textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:",
|
||||
"textReplaceSuccess": "Որոնողական աշխատանքները կատարվել են։ Փոխարինված դեպքերը՝ {0}",
|
||||
"textRequestMacros": "Մակրոն հարցում է անում URL-ին: Ցանկանու՞մ եք թույլ տալ հարցումը %1-ին:",
|
||||
"textYes": "Այո",
|
||||
"titleLicenseExp": "Լիցենզիայի ժամկետը լրացել է",
|
||||
"titleServerVersion": "Խմբագրիչը արդիացվել է",
|
||||
"titleUpdateVersion": "Տարբերակը փոխվել է",
|
||||
"warnLicenseExceeded": "Դուք հասել եք %1 խմբագիրների հետ միաժամանակյա միացումների սահմանաչափին:Այս փաստաթուղթը կբացվի միայն դիտելու համար:Կապվեք Ձեր ադմինիստրատորի հետ՝ ավելին իմանալու համար:",
|
||||
"warnLicenseExp": "Ձեր լիցենզիայի ժամկետը լրացել է:Խնդրում ենք թարմացնել Ձեր լիցենզիան և թարմացնել էջը:",
|
||||
"warnLicenseLimitedNoAccess": "Լիցենզիայի ժամկետը լրացել է․Փաստաթղթերի խմբագրման գործառույթից օգտվելու հնարավորություն չունեք:Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ:",
|
||||
"warnLicenseLimitedRenewed": "Լիցենզիան պետք է երկարաձգվի։Փաստաթղթերի խմբագրման գործառույթի հասանելիությունը սահմանափակ է:Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ՝ լիարժեք մուտք ստանալու համար․",
|
||||
"warnLicenseUsersExceeded": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։Կապվեք Ձեր ադմինիստրատորի հետ՝ ավելին իմանալու համար:",
|
||||
"warnNoLicense": "Դուք հասել եք %1 խմբագիրների հետ միաժամանակյա միացումների սահմանաչափին:Այս փաստաթուղթը կբացվի միայն դիտելու համար:նձնական թարմացման պայմանների համար կապվեք %1 վաճառքի թիմի հետ:",
|
||||
"warnNoLicenseUsers": "Դուք հասել եք %1 խմբագիրների օգտվողի սահմանաչափին:Անձնական թարմացման պայմանների համար կապվեք %1 վաճառքի թիմի հետ:",
|
||||
"warnProcessRightsChange": "Դուք այս ֆայլը խմբագրելու թույլտվություն չունեք:"
|
||||
},
|
||||
"Settings": {
|
||||
"advDRMOptions": "Պաշտպանված նիշք",
|
||||
"advDRMPassword": "Գաղտնաբառ",
|
||||
"advTxtOptions": "Ընտրել TXT-ի հարաչափերը",
|
||||
"closeButtonText": "Փակել ֆայլը",
|
||||
"notcriticalErrorTitle": "Զգուշացում",
|
||||
"textAbout": "Մասին",
|
||||
"textApplication": "Հավելված",
|
||||
"textApplicationSettings": "Հավելվածի կարգավորումներ",
|
||||
"textAuthor": "Հեղինակ",
|
||||
"textBack": "Հետ",
|
||||
"textBeginningDocument": "Փաստաթղթի սկիզբ",
|
||||
"textBottom": "Ներքև",
|
||||
"textCancel": "Չեղարկել",
|
||||
"textCaseSensitive": "Դուրճազգայուն",
|
||||
"textCentimeter": "Սանտիմետր",
|
||||
"textChooseEncoding": "Ընտրել կոդավորում",
|
||||
"textChooseTxtOptions": "Ընտրել TXT-ի հարաչափերը",
|
||||
"textCollaboration": "Համագործակցում",
|
||||
"textColorSchemes": "Գունավորումներ",
|
||||
"textComment": "Մեկնաբանություն",
|
||||
"textComments": "Մեկնաբանություններ",
|
||||
"textCommentsDisplay": "Մեկնաբանությունների ցուցադրում",
|
||||
"textCreated": "Ստեղծված",
|
||||
"textCustomSize": "Հարմարեցված չափ",
|
||||
"textDirection": "Ուղղություն",
|
||||
"textDisableAll": "Անջատել բոլորը",
|
||||
"textDisableAllMacrosWithNotification": "Անջատել բոլոր մակրոները ծանուցմամբ",
|
||||
"textDisableAllMacrosWithoutNotification": "Անջատել բոլոր մակրոները առանց ծանուցման",
|
||||
"textDocumentInfo": "Փաստաթղթի մասին",
|
||||
"textDocumentSettings": "Փաստաթղթի կարգավորումներ",
|
||||
"textDocumentTitle": "Փաստաթղթի անուն",
|
||||
"textDone": "Պատրաստ է",
|
||||
"textDownload": "Ներբեռնել",
|
||||
"textDownloadAs": "Ներբեռնել հետևյալ ձևաչափով՝",
|
||||
"textDownloadRtf": "Եթե շարունակեք պահպանել այս ձևաչափով, որոշ ձևաչափեր կարող են կորչել:Վստա՞հ եք, որ ցանկանում եք շարունակել:",
|
||||
"textDownloadTxt": "Եթե շարունակեք պահպանել այս ձևաչափով, բոլոր յուրահատկությունները, բացի տեքստից, կկորչեն:Վստա՞հ եք, որ ցանկանում եք շարունակել:",
|
||||
"textEmptyHeading": "Դատարկ վերնագիր",
|
||||
"textEmptyScreens": "Փաստաթղթում վերնագրեր չկան:Տեքստի վրա կիրառեք վերնագրերի ոճ, որպեսզի այն հայտնվի բովանդակության աղյուսակում:",
|
||||
"textEnableAll": "Միացնել բոլորը",
|
||||
"textEnableAllMacrosWithoutNotification": "Միացնել բոլոր մակրոները առանց ծանուցման",
|
||||
"textEncoding": "Կոդավորում",
|
||||
"textFastWV": "Արագ վեբ դիտում",
|
||||
"textFeedback": "Հետադարձ կապ և աջակցություն",
|
||||
"textFind": "Գտնել",
|
||||
"textFindAndReplace": "Գտնել և փոխարինել",
|
||||
"textFindAndReplaceAll": "Գտել և փոխարինել բոլորը",
|
||||
"textFormat": "Ձևաչափ",
|
||||
"textHelp": "Օգնություն",
|
||||
"textHiddenTableBorders": "Աղյուսակի թաքնված եզրագծեր",
|
||||
"textHighlightResults": "Գունանշել արդյունքները",
|
||||
"textInch": "Մտչ",
|
||||
"textLandscape": "Հորիզոնական",
|
||||
"textLastModified": "Վերջին փոփոխումը",
|
||||
"textLastModifiedBy": "Վերջին փոփոխման հեղինակ",
|
||||
"textLeft": "Ձախ",
|
||||
"textLeftToRight": "Ձախից աջ",
|
||||
"textLoading": "Բեռնում...",
|
||||
"textLocation": "Տեղ",
|
||||
"textMacrosSettings": "Մակրոների կարգավորումներ",
|
||||
"textMargins": "Լուսանցքներ",
|
||||
"textMarginsH": "Վերևի և ներքևի լուսանցքները չափազանց բարձր են տվյալ էջի բարձրության համար",
|
||||
"textMarginsW": "Ձախ և աջ լուսանցքները չափազանց լայն են տվյալ էջի լայնության համար",
|
||||
"textNavigation": "Նավիգացիա",
|
||||
"textNo": "Ոչ",
|
||||
"textNoCharacters": "Չտպվող գրանշաններ",
|
||||
"textNoTextFound": "Տեքստը չի գտնվել",
|
||||
"textOk": "Լավ",
|
||||
"textOpenFile": "Մուտքագրել գաղտնաբառ՝ ֆայլը բացելու համար",
|
||||
"textOrientation": "Կողմնորոշում",
|
||||
"textOwner": "Տնօրինող",
|
||||
"textPages": "Էջեր",
|
||||
"textPageSize": "Էջի չափ",
|
||||
"textParagraphs": "Պարբերություններ",
|
||||
"textPdfProducer": "PDF պրոդյուսեր",
|
||||
"textPdfTagged": "Պիտակված PDF",
|
||||
"textPdfVer": "PDF տարբերակ",
|
||||
"textPoint": "Կետ",
|
||||
"textPortrait": "Ուղղաձիգ ",
|
||||
"textPrint": "Տպել",
|
||||
"textReaderMode": "Ընթերցման ցուցադրաձև",
|
||||
"textReplace": "Փոխարինել",
|
||||
"textReplaceAll": "Փոխարինել բոլորը",
|
||||
"textResolvedComments": "Լուծված մեկնաբանություններ",
|
||||
"textRestartApplication": "Խնդրում ենք վերագործարկել հավելվածը, որպեսզի փոփոխություններն ուժի մեջ մտնեն",
|
||||
"textRight": "Աջ",
|
||||
"textRightToLeft": "Աջից ձախ",
|
||||
"textSearch": "Որոնել",
|
||||
"textSettings": "Կարգավորումներ",
|
||||
"textShowNotification": "Ցուցադրել ծանուցումը",
|
||||
"textSpaces": "Բացատներ",
|
||||
"textSpellcheck": "Ուղղագրության ստուգում",
|
||||
"textStatistic": "Վիճակագրություն",
|
||||
"textSubject": "Նյութ",
|
||||
"textSymbols": "Նշաններ",
|
||||
"textTitle": "Վերնագիր",
|
||||
"textTop": "Վերև",
|
||||
"textUnitOfMeasurement": "Չափման միավոր",
|
||||
"textUploaded": "Վերբեռնվել է",
|
||||
"textWords": "Բառեր",
|
||||
"textYes": "Այո",
|
||||
"txtDownloadTxt": "Ներբեռնել TXT ձևաչափով",
|
||||
"txtIncorrectPwd": "Գաղտնաբառը սխալ է",
|
||||
"txtOk": "Լավ",
|
||||
"txtProtected": "Գաղտնաբառը մուտքագրելուց և ֆայլը բացելուց հետո ընթացիկ գաղտնաբառը կզրոյացվի",
|
||||
"txtScheme1": "Գրասենյակ",
|
||||
"txtScheme10": "Կենտրոնային",
|
||||
"txtScheme11": "Մետրո ",
|
||||
"txtScheme12": "Մոդուլ ",
|
||||
"txtScheme13": "Վառ",
|
||||
"txtScheme14": "Արևելաոճ",
|
||||
"txtScheme15": "Սկզբնաղբյուր",
|
||||
"txtScheme16": "Թուղթ",
|
||||
"txtScheme17": "Խավարում",
|
||||
"txtScheme18": "Տեխնիկական",
|
||||
"txtScheme19": "Ուղի",
|
||||
"txtScheme2": "Գորշասանդղակ",
|
||||
"txtScheme20": "Քաղաքաոճ",
|
||||
"txtScheme21": "Գունեղ",
|
||||
"txtScheme22": "Նոր Office",
|
||||
"txtScheme3": "Գագաթ",
|
||||
"txtScheme4": "Հարաբերություն",
|
||||
"txtScheme5": "Քաղաքացիական",
|
||||
"txtScheme6": "Համագումար ",
|
||||
"txtScheme7": "Սեփական կապիտալ",
|
||||
"txtScheme8": "Հոսք",
|
||||
"txtScheme9": "Հրատարակիչ"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "Դուք չպահված փոփոխություններ ունեք:Սեղմեք «Մնա այս էջում»՝ սպասելու ավտոմատ պահպանմանը:Սեղմեք «Լքել այս էջը»՝ չպահված բոլոր փոփոխությունները մերժելու համար:",
|
||||
"dlgLeaveTitleText": "Ծրագրից դուրս եք գալիս",
|
||||
"leaveButtonText": "Լքել այս էջը",
|
||||
"stayButtonText": "Մնալ այս էջում"
|
||||
}
|
||||
}
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRows": "Baris",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Peringatan",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRows": "Righe",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Avvertimento",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRefreshEntireTable": "テーブル全体を更新する",
|
||||
"textRefreshPageNumbersOnly": "ページ番号のみを更新する",
|
||||
"textRows": "行"
|
||||
"textRows": "行",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": " 警告",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "확인",
|
||||
"textRows": "행",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "경고",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "ຕົກລົງ",
|
||||
"textRows": "ແຖວ",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "ເຕືອນ",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "Okey",
|
||||
"textRows": "Baris",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Amaran",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRows": "Rijen",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Waarschuwing",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "Ok",
|
||||
"textRows": "Linhas",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRows": "Linhas",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRefreshEntireTable": "Reîmprospătarea întregului tabel",
|
||||
"textRefreshPageNumbersOnly": "Actualizare numai numere de pagină",
|
||||
"textRows": "Rânduri"
|
||||
"textRows": "Rânduri",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Avertisment",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "Ok",
|
||||
"textRefreshEntireTable": "Обновить целиком",
|
||||
"textRefreshPageNumbersOnly": "Обновить только номера страниц",
|
||||
"textRows": "Строки"
|
||||
"textRows": "Строки",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Внимание",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "OK",
|
||||
"textRows": "Riadky",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Upozornenie",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "Tamam",
|
||||
"textRows": "Satırlar",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Dikkat",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "Ок",
|
||||
"textRows": "Рядки",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Увага",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textCancel": "Cancel",
|
||||
"textNumberingValue": "Numbering Value",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Warning",
|
||||
|
|
|
@ -199,7 +199,8 @@
|
|||
"textOk": "確定",
|
||||
"textRows": "行列",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
"textAbout": "关于",
|
||||
"textAddress": "地址",
|
||||
"textBack": "返回",
|
||||
"textEditor": "文字编辑器",
|
||||
"textEmail": "电子邮件",
|
||||
"textPoweredBy": "技术支持",
|
||||
"textTel": "电话",
|
||||
"textVersion": "版本",
|
||||
"textEditor": "Document Editor"
|
||||
"textVersion": "版本"
|
||||
},
|
||||
"Add": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
|
@ -57,11 +57,11 @@
|
|||
"textShape": "形状",
|
||||
"textStartAt": "始于",
|
||||
"textTable": "表格",
|
||||
"textTableContents": "目录",
|
||||
"textTableSize": "表格大小",
|
||||
"txtNotUrl": "该字段应为“http://www.example.com”格式的URL",
|
||||
"textTableContents": "Table of Contents",
|
||||
"textWithBlueLinks": "With Blue Links",
|
||||
"textWithPageNumbers": "With Page Numbers"
|
||||
"textWithBlueLinks": "带蓝色链接",
|
||||
"textWithPageNumbers": "带页号",
|
||||
"txtNotUrl": "该字段应为“http://www.example.com”格式的URL"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -197,9 +197,10 @@
|
|||
"textDoNotShowAgain": "不要再显示",
|
||||
"textNumberingValue": "编号值",
|
||||
"textOk": "好",
|
||||
"textRefreshEntireTable": "刷新整个表格",
|
||||
"textRefreshPageNumbersOnly": "仅刷新页号",
|
||||
"textRows": "行",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only"
|
||||
"txtWarnUrl": "Clicking this link can be harmful to your device and data.<br>Are you sure you want to continue?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "警告",
|
||||
|
@ -214,6 +215,7 @@
|
|||
"textAlign": "对齐",
|
||||
"textAllCaps": "全部大写字母",
|
||||
"textAllowOverlap": "允许重叠",
|
||||
"textAmountOfLevels": "数量级",
|
||||
"textApril": "四月",
|
||||
"textAugust": "八月",
|
||||
"textAuto": "自动",
|
||||
|
@ -228,11 +230,16 @@
|
|||
"textBringToForeground": "放到最上面",
|
||||
"textBullets": "项目符号",
|
||||
"textBulletsAndNumbers": "项目符号与编号",
|
||||
"textCancel": "取消",
|
||||
"textCellMargins": "单元格边距",
|
||||
"textCentered": "居中",
|
||||
"textChart": "图表",
|
||||
"textClassic": "经典",
|
||||
"textClose": "关闭",
|
||||
"textColor": "颜色",
|
||||
"textContinueFromPreviousSection": "从上一节继续",
|
||||
"textCreateTextStyle": "创建新样式",
|
||||
"textCurrent": "当前",
|
||||
"textCustomColor": "自定义颜色",
|
||||
"textDecember": "十二月",
|
||||
"textDesign": "设计",
|
||||
|
@ -240,11 +247,14 @@
|
|||
"textDifferentOddAndEvenPages": "不同的奇数页和偶数页",
|
||||
"textDisplay": "展示",
|
||||
"textDistanceFromText": "文字距离",
|
||||
"textDistinctive": "可区分",
|
||||
"textDone": "完成",
|
||||
"textDoubleStrikethrough": "双删除线",
|
||||
"textEditLink": "编辑链接",
|
||||
"textEffects": "效果",
|
||||
"textEmpty": "空",
|
||||
"textEmptyImgUrl": "您需要指定图像URL。",
|
||||
"textEnterTitleNewStyle": "输入新样式的标题",
|
||||
"textFebruary": "二月",
|
||||
"textFill": "填满",
|
||||
"textFirstColumn": "第一列",
|
||||
|
@ -254,6 +264,7 @@
|
|||
"textFontColors": "字体颜色",
|
||||
"textFonts": "字体",
|
||||
"textFooter": "页脚",
|
||||
"textFormal": "正式",
|
||||
"textFr": "周五",
|
||||
"textHeader": "页眉",
|
||||
"textHeaderRow": "页眉行",
|
||||
|
@ -269,7 +280,9 @@
|
|||
"textKeepLinesTogether": "保持同一行",
|
||||
"textKeepWithNext": "与下一个保持一致",
|
||||
"textLastColumn": "最后一列",
|
||||
"textLeader": "前导符",
|
||||
"textLetterSpacing": "字母间距",
|
||||
"textLevels": "级别",
|
||||
"textLineSpacing": "行间距",
|
||||
"textLink": "链接",
|
||||
"textLinkSettings": "链接设置",
|
||||
|
@ -277,9 +290,11 @@
|
|||
"textMarch": "三月",
|
||||
"textMay": "五月",
|
||||
"textMo": "周一",
|
||||
"textModern": "现代",
|
||||
"textMoveBackward": "向后移动",
|
||||
"textMoveForward": "向前移动",
|
||||
"textMoveWithText": "文字移动",
|
||||
"textNextParagraphStyle": "下一段样式",
|
||||
"textNone": "无",
|
||||
"textNoStyles": "这个类型的流程图没有对应的样式。",
|
||||
"textNotUrl": "该字段应为“http://www.example.com”格式的URL",
|
||||
|
@ -287,84 +302,70 @@
|
|||
"textNumbers": "数字",
|
||||
"textOctober": "十月",
|
||||
"textOk": "好",
|
||||
"textOnline": "在线",
|
||||
"textOpacity": "不透明度",
|
||||
"textOptions": "选项",
|
||||
"textOrphanControl": "单独控制",
|
||||
"textPageBreakBefore": "段前分页",
|
||||
"textPageNumbering": "页码编号",
|
||||
"textPageNumbers": "页号",
|
||||
"textParagraph": "段",
|
||||
"textParagraphStyle": "段落样式",
|
||||
"textPictureFromLibrary": "图库",
|
||||
"textPictureFromURL": "来自网络的图片",
|
||||
"textPt": "像素",
|
||||
"textRefresh": "刷新",
|
||||
"textRefreshEntireTable": "刷新整个表格",
|
||||
"textRefreshPageNumbersOnly": "仅刷新页号",
|
||||
"textRemoveChart": "删除图表",
|
||||
"textRemoveImage": "删除图片",
|
||||
"textRemoveLink": "删除链接",
|
||||
"textRemoveShape": "删除图形",
|
||||
"textRemoveTable": "删除表",
|
||||
"textRemoveTableContent": "删除目录",
|
||||
"textReorder": "重新订购",
|
||||
"textRepeatAsHeaderRow": "重复标题行",
|
||||
"textReplace": "替换",
|
||||
"textReplaceImage": "替换图像",
|
||||
"textResizeToFitContent": "调整大小以适应内容",
|
||||
"textRightAlign": "右对齐",
|
||||
"textSa": "周六",
|
||||
"textSameCreatedNewStyle": "与创建的新样式相同",
|
||||
"textScreenTip": "屏幕提示",
|
||||
"textSelectObjectToEdit": "选择要编辑的物件",
|
||||
"textSendToBackground": "送至后台",
|
||||
"textSeptember": "九月",
|
||||
"textSettings": "设置",
|
||||
"textShape": "形状",
|
||||
"textSimple": "简单",
|
||||
"textSize": "大小",
|
||||
"textSmallCaps": "小型大写字母",
|
||||
"textSpaceBetweenParagraphs": "段间距",
|
||||
"textSquare": "正方形",
|
||||
"textStandard": "标准",
|
||||
"textStartAt": "始于",
|
||||
"textStrikethrough": "删除线",
|
||||
"textStructure": "结构",
|
||||
"textStyle": "样式",
|
||||
"textStyleOptions": "样式选项",
|
||||
"textStyles": "样式",
|
||||
"textSu": "周日",
|
||||
"textSubscript": "下标",
|
||||
"textSuperscript": "上标",
|
||||
"textTable": "表格",
|
||||
"textTableOfCont": "目录",
|
||||
"textTableOptions": "表格选项",
|
||||
"textText": "文本",
|
||||
"textTh": "周四",
|
||||
"textThrough": "穿越型环绕",
|
||||
"textTight": "紧",
|
||||
"textTitle": "标题",
|
||||
"textTopAndBottom": "上下型环绕",
|
||||
"textTotalRow": "总行",
|
||||
"textTu": "周二",
|
||||
"textType": "类型",
|
||||
"textWe": "周三",
|
||||
"textWrap": "包裹",
|
||||
"textAmountOfLevels": "Amount of Levels",
|
||||
"textCancel": "Cancel",
|
||||
"textCentered": "Centered",
|
||||
"textClassic": "Classic",
|
||||
"textCreateTextStyle": "Create new text style",
|
||||
"textCurrent": "Current",
|
||||
"textDistinctive": "Distinctive",
|
||||
"textDone": "Done",
|
||||
"textEnterTitleNewStyle": "Enter title of a new style",
|
||||
"textFormal": "Formal",
|
||||
"textLeader": "Leader",
|
||||
"textLevels": "Levels",
|
||||
"textModern": "Modern",
|
||||
"textNextParagraphStyle": "Next paragraph style",
|
||||
"textOnline": "Online",
|
||||
"textPageNumbers": "Page Numbers",
|
||||
"textParagraphStyle": "Paragraph Style",
|
||||
"textRefresh": "Refresh",
|
||||
"textRefreshEntireTable": "Refresh entire table",
|
||||
"textRefreshPageNumbersOnly": "Refresh page numbers only",
|
||||
"textRemoveTableContent": "Remove table of contents",
|
||||
"textRightAlign": "Right Align",
|
||||
"textSameCreatedNewStyle": "Same as created new style",
|
||||
"textSimple": "Simple",
|
||||
"textStandard": "Standard",
|
||||
"textStructure": "Structure",
|
||||
"textStyles": "Styles",
|
||||
"textTableOfCont": "TOC",
|
||||
"textTitle": "Title"
|
||||
"textWrap": "包裹"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "转换超时",
|
||||
|
@ -379,6 +380,7 @@
|
|||
"errorDataRange": "数据范围不正确",
|
||||
"errorDefaultMessage": "错误代码:%1",
|
||||
"errorEditingDownloadas": "处理文档时发生错误.<br>请将文件备份保存到本地。",
|
||||
"errorEmptyTOC": "开始创建一个目录并应用样式库中的标题样式到选择的文本。",
|
||||
"errorFilePassProtect": "该文件已启动密码保护,无法打开。",
|
||||
"errorFileSizeExceed": "文件大小超出了服务器的限制。<br>恳请你联系管理员。",
|
||||
"errorKeyEncrypt": "未知密钥描述",
|
||||
|
@ -386,6 +388,7 @@
|
|||
"errorLoadingFont": "字体未加载。<br>请与文档服务器管理员联系。",
|
||||
"errorMailMergeLoadFile": "加载失败",
|
||||
"errorMailMergeSaveFile": "合并失败",
|
||||
"errorNoTOC": "没有目录要更新。你可以从引用标签插入一个目录。",
|
||||
"errorSessionAbsolute": "该文件编辑窗口已过期。请刷新该页。",
|
||||
"errorSessionIdle": "该文档已经有一段时间没有编辑了。请刷新该页。",
|
||||
"errorSessionToken": "与服务器的链接被打断。请刷新该页。",
|
||||
|
@ -404,9 +407,7 @@
|
|||
"unknownErrorText": "未知错误。",
|
||||
"uploadImageExtMessage": "未知图像格式。",
|
||||
"uploadImageFileCountMessage": "没有图片上传",
|
||||
"uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.",
|
||||
"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."
|
||||
"uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "数据加载中…",
|
||||
|
@ -528,6 +529,7 @@
|
|||
"textRemember": "记住我的选择",
|
||||
"textReplaceSkipped": "已更换。 {0}次跳过。",
|
||||
"textReplaceSuccess": "搜索已完成。更换次数:{0}",
|
||||
"textRequestMacros": "宏发起一个请求至URL。你是否允许请求到%1?",
|
||||
"textYes": "是",
|
||||
"titleLicenseExp": "许可证过期",
|
||||
"titleServerVersion": "编辑器已更新",
|
||||
|
@ -539,8 +541,7 @@
|
|||
"warnLicenseUsersExceeded": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。",
|
||||
"warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。",
|
||||
"warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。",
|
||||
"warnProcessRightsChange": "你没有编辑这个文件的权限。",
|
||||
"textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?"
|
||||
"warnProcessRightsChange": "你没有编辑这个文件的权限。"
|
||||
},
|
||||
"Settings": {
|
||||
"advDRMOptions": "受保护的文件",
|
||||
|
@ -553,6 +554,7 @@
|
|||
"textApplicationSettings": "应用设置",
|
||||
"textAuthor": "作者",
|
||||
"textBack": "返回",
|
||||
"textBeginningDocument": "文档开头",
|
||||
"textBottom": "底部",
|
||||
"textCancel": "取消",
|
||||
"textCaseSensitive": "区分大小写",
|
||||
|
@ -566,6 +568,7 @@
|
|||
"textCommentsDisplay": "批注显示",
|
||||
"textCreated": "已创建",
|
||||
"textCustomSize": "自定义大小",
|
||||
"textDirection": "方向",
|
||||
"textDisableAll": "解除所有项目",
|
||||
"textDisableAllMacrosWithNotification": "关闭所有带通知的宏",
|
||||
"textDisableAllMacrosWithoutNotification": "关闭所有不带通知的宏",
|
||||
|
@ -577,10 +580,13 @@
|
|||
"textDownloadAs": "另存为",
|
||||
"textDownloadRtf": "如果你用这个格式来保存的话,有些排版将会丢失。你确定要继续吗?",
|
||||
"textDownloadTxt": "如果你用这个格式来保存的话,除文本外的所有特性都会丢失。你确定要继续吗?",
|
||||
"textEmptyHeading": "空标题",
|
||||
"textEmptyScreens": "文档里没有标题。应用标题样式到文本,从而显示到目录。",
|
||||
"textEnableAll": "启动所有项目",
|
||||
"textEnableAllMacrosWithoutNotification": "启动所有不带通知的宏",
|
||||
"textEncoding": "编码",
|
||||
"textFastWV": "快速Web视图",
|
||||
"textFeedback": "反馈和支持",
|
||||
"textFind": "查找",
|
||||
"textFindAndReplace": "查找和替换",
|
||||
"textFindAndReplaceAll": "查找并替换所有",
|
||||
|
@ -593,12 +599,14 @@
|
|||
"textLastModified": "上次修改时间",
|
||||
"textLastModifiedBy": "上次修改人是",
|
||||
"textLeft": "左",
|
||||
"textLeftToRight": "从左到右",
|
||||
"textLoading": "载入中…",
|
||||
"textLocation": "位置",
|
||||
"textMacrosSettings": "宏设置",
|
||||
"textMargins": "边距",
|
||||
"textMarginsH": "顶部和底部边距对于给定的页面高度来说太高",
|
||||
"textMarginsW": "对给定的页面宽度来说,左右边距过高。",
|
||||
"textNavigation": "导航",
|
||||
"textNo": "否",
|
||||
"textNoCharacters": "非打印字符",
|
||||
"textNoTextFound": "文本没找到",
|
||||
|
@ -609,6 +617,7 @@
|
|||
"textPages": "页面",
|
||||
"textPageSize": "页面大小",
|
||||
"textParagraphs": "段落",
|
||||
"textPdfProducer": "PDF制作器",
|
||||
"textPdfTagged": "已标记为PDF",
|
||||
"textPdfVer": "PDF版",
|
||||
"textPoint": "点",
|
||||
|
@ -618,7 +627,9 @@
|
|||
"textReplace": "替换",
|
||||
"textReplaceAll": "全部替换",
|
||||
"textResolvedComments": "已解决批注",
|
||||
"textRestartApplication": "请重新启动应用程序使修改生效",
|
||||
"textRight": "右",
|
||||
"textRightToLeft": "从右到左",
|
||||
"textSearch": "搜索",
|
||||
"textSettings": "设置",
|
||||
"textShowNotification": "显示通知",
|
||||
|
@ -658,17 +669,7 @@
|
|||
"txtScheme6": "汇合",
|
||||
"txtScheme7": "公平",
|
||||
"txtScheme8": "流动",
|
||||
"txtScheme9": "发现",
|
||||
"textBeginningDocument": "Beginning of document",
|
||||
"textDirection": "Direction",
|
||||
"textEmptyHeading": "Empty Heading",
|
||||
"textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.",
|
||||
"textFeedback": "Feedback & Support",
|
||||
"textLeftToRight": "Left To Right",
|
||||
"textNavigation": "Navigation",
|
||||
"textPdfProducer": "PDF Producer",
|
||||
"textRestartApplication": "Please restart the application for the changes to take effect",
|
||||
"textRightToLeft": "Right To Left"
|
||||
"txtScheme9": "发现"
|
||||
},
|
||||
"Toolbar": {
|
||||
"dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。",
|
||||
|
|
|
@ -217,10 +217,31 @@ class ContextMenu extends ContextMenuController {
|
|||
}
|
||||
|
||||
openLink(url) {
|
||||
if (Common.EditorApi.get().asc_getUrlType(url) > 0) {
|
||||
const newDocumentPage = window.open(url, '_blank');
|
||||
if (newDocumentPage) {
|
||||
newDocumentPage.focus();
|
||||
if (url) {
|
||||
const type = Common.EditorApi.get().asc_getUrlType(url);
|
||||
if (type===AscCommon.c_oAscUrlType.Http || type===AscCommon.c_oAscUrlType.Email) {
|
||||
const newDocumentPage = window.open(url, '_blank');
|
||||
if (newDocumentPage) {
|
||||
newDocumentPage.focus();
|
||||
}
|
||||
} else {
|
||||
const { t } = this.props;
|
||||
const _t = t("ContextMenu", { returnObjects: true });
|
||||
f7.dialog.create({
|
||||
title: t('Settings', {returnObjects: true}).notcriticalErrorTitle,
|
||||
text : _t.txtWarnUrl,
|
||||
buttons: [{
|
||||
text: _t.textOk,
|
||||
bold: true,
|
||||
onClick: () => {
|
||||
const newDocumentPage = window.open(url, '_blank');
|
||||
if (newDocumentPage) {
|
||||
newDocumentPage.focus();
|
||||
}
|
||||
}
|
||||
},
|
||||
{ text: _t.menuCancel }]
|
||||
}).open();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,9 +60,7 @@ class MainController extends Component {
|
|||
!window.sdk_scripts && (window.sdk_scripts = ['../../../../sdkjs/common/AllFonts.js',
|
||||
'../../../../sdkjs/word/sdk-all-min.js']);
|
||||
let dep_scripts = ['../../../vendor/xregexp/xregexp-all-min.js',
|
||||
'../../../vendor/sockjs/sockjs.min.js',
|
||||
'../../../vendor/jszip/jszip.min.js',
|
||||
'../../../vendor/jszip-utils/jszip-utils.min.js'];
|
||||
'../../../vendor/sockjs/sockjs.min.js'];
|
||||
dep_scripts.push(...window.sdk_scripts);
|
||||
|
||||
const promise_get_script = (scriptpath) => {
|
||||
|
|
|
@ -31,9 +31,8 @@ class AddLinkController extends Component {
|
|||
const { t } = this.props;
|
||||
const _t = t("Add", { returnObjects: true });
|
||||
const urltype = api.asc_getUrlType(url.trim());
|
||||
const isEmail = (urltype == 2);
|
||||
|
||||
if (urltype < 1) {
|
||||
if (urltype===AscCommon.c_oAscUrlType.Invalid) {
|
||||
f7.dialog.create({
|
||||
title: _t.notcriticalErrorTitle,
|
||||
text: _t.txtNotUrl,
|
||||
|
@ -48,8 +47,8 @@ class AddLinkController extends Component {
|
|||
|
||||
let _url = url.replace(/^\s+|\s+$/g,'');
|
||||
|
||||
if (! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(_url) )
|
||||
_url = (isEmail ? 'mailto:' : 'http://' ) + _url;
|
||||
if (urltype!==AscCommon.c_oAscUrlType.Unsafe && ! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(_url) )
|
||||
_url = (urltype===AscCommon.c_oAscUrlType.Email ? 'mailto:' : 'http://' ) + _url;
|
||||
|
||||
_url = _url.replace(new RegExp("%20",'g')," ");
|
||||
|
||||
|
|
|
@ -28,9 +28,7 @@ class EditHyperlinkController extends Component {
|
|||
|
||||
if (api) {
|
||||
const urltype = api.asc_getUrlType(link.trim());
|
||||
const isEmail = (urltype == 2);
|
||||
|
||||
if (urltype < 1) {
|
||||
if (urltype===AscCommon.c_oAscUrlType.Invalid) {
|
||||
const { t } = this.props;
|
||||
|
||||
f7.dialog.create({
|
||||
|
@ -47,9 +45,8 @@ class EditHyperlinkController extends Component {
|
|||
}
|
||||
|
||||
let url = link.replace(/^\s+|\s+$/g,'');
|
||||
|
||||
if (! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(url) ) {
|
||||
url = (isEmail ? 'mailto:' : 'http://') + url;
|
||||
if (urltype!==AscCommon.c_oAscUrlType.Unsafe && ! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(url) ) {
|
||||
url = (urltype===AscCommon.c_oAscUrlType.Email ? 'mailto:' : 'http://') + url;
|
||||
}
|
||||
|
||||
url = url.replace(new RegExp("%20",'g')," ");
|
||||
|
|
|
@ -86,6 +86,7 @@ export class storeAppOptions {
|
|||
&& (!!(config.customization.goback.url) || config.customization.goback.requestClose && this.canRequestClose);
|
||||
this.canBack = this.canBackToFolder === true;
|
||||
this.canPlugins = false;
|
||||
this.canFeatureForms = !!Common.EditorApi.get().asc_isSupportFeature("forms");
|
||||
|
||||
AscCommon.UserInfoParser.setParser(true);
|
||||
AscCommon.UserInfoParser.setCurrentName(this.user.fullname);
|
||||
|
|
|
@ -133,6 +133,10 @@ export class storeTextSettings {
|
|||
this.spriteThumbs = new CThumbnailLoader();
|
||||
this.spriteThumbs.load(this.thumbs[this.thumbIdx].path, () => {
|
||||
this.spriteCols = Math.floor(this.spriteThumbs.width / (this.thumbs[this.thumbIdx].width)) || 1;
|
||||
|
||||
if (!this.spriteThumbs.data && !this.spriteThumbs.offsets) {
|
||||
this.spriteThumbs.openBinary(this.spriteThumbs.binaryFormat);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ const Download = props => {
|
|||
const _t = t("Settings", { returnObjects: true });
|
||||
const storeDocumentInfo = props.storeDocumentInfo;
|
||||
const dataDoc = storeDocumentInfo.dataDoc;
|
||||
const canFeatureForms = props.storeAppOptions.canFeatureForms;
|
||||
|
||||
return (
|
||||
<Page>
|
||||
|
@ -17,7 +18,7 @@ const Download = props => {
|
|||
<ListItem title="DOCX" onClick={() => props.onSaveFormat(Asc.c_oAscFileType.DOCX)}>
|
||||
<Icon slot="media" icon="icon-format-docx"></Icon>
|
||||
</ListItem>
|
||||
{dataDoc.fileType === 'docxf' || dataDoc.fileType === 'docx' ? [
|
||||
{canFeatureForms && (dataDoc.fileType === 'docxf' || dataDoc.fileType === 'docx') ? [
|
||||
<ListItem title="DOCXF" key="DOCXF" onClick={() => props.onSaveFormat(Asc.c_oAscFileType.DOCXF)}>
|
||||
<Icon slot="media" icon="icon-format-docxf"></Icon>
|
||||
</ListItem>,
|
||||
|
@ -58,4 +59,4 @@ const Download = props => {
|
|||
)
|
||||
}
|
||||
|
||||
export default inject('storeDocumentInfo')(observer(Download));
|
||||
export default inject('storeDocumentInfo', 'storeAppOptions')(observer(Download));
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue