Merge remote-tracking branch 'remotes/origin/develop' into feature/placeholders
This commit is contained in:
commit
14c27ee0a7
|
@ -782,7 +782,14 @@
|
||||||
|
|
||||||
if (config.frameEditorId)
|
if (config.frameEditorId)
|
||||||
params += "&frameEditorId=" + config.frameEditorId;
|
params += "&frameEditorId=" + config.frameEditorId;
|
||||||
|
|
||||||
|
if (config.editorConfig && config.editorConfig.mode == 'view' ||
|
||||||
|
config.document && config.document.permissions && (config.document.permissions.edit === false && !config.document.permissions.review ))
|
||||||
|
params += "&mode=view";
|
||||||
|
|
||||||
|
if (config.editorConfig && config.editorConfig.customization && !!config.editorConfig.customization.compactHeader)
|
||||||
|
params += "&compact=true";
|
||||||
|
|
||||||
return params;
|
return params;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
491
apps/common/main/lib/component/Calendar.js
Normal file
491
apps/common/main/lib/component/Calendar.js
Normal file
|
@ -0,0 +1,491 @@
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* (c) Copyright Ascensio System SIA 2010-2019
|
||||||
|
*
|
||||||
|
* This program is a free software product. You can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||||
|
* version 3 as published by the Free Software Foundation. In accordance with
|
||||||
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||||
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||||
|
* of any third-party rights.
|
||||||
|
*
|
||||||
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||||
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||||
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||||
|
*
|
||||||
|
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||||
|
* street, Riga, Latvia, EU, LV-1050.
|
||||||
|
*
|
||||||
|
* The interactive user interfaces in modified source and object code versions
|
||||||
|
* of the Program must display Appropriate Legal Notices, as required under
|
||||||
|
* Section 5 of the GNU AGPL version 3.
|
||||||
|
*
|
||||||
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||||
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||||
|
* grant you any rights under trademark law for use of our trademarks.
|
||||||
|
*
|
||||||
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||||
|
* well as technical writing content are licensed under the terms of the
|
||||||
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||||
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
if (Common === undefined)
|
||||||
|
var Common = {};
|
||||||
|
|
||||||
|
define([
|
||||||
|
'common/main/lib/component/BaseView',
|
||||||
|
'common/main/lib/util/utils'
|
||||||
|
], function () {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
Common.UI.Calendar = Common.UI.BaseView.extend(_.extend({
|
||||||
|
|
||||||
|
template :
|
||||||
|
_.template([
|
||||||
|
'<div id="calendar" class="calendar-box">',
|
||||||
|
'<div class="calendar-header">',
|
||||||
|
'<div class="top-row">',
|
||||||
|
'<div id="prev-arrow"><button type="button"><i class="arrow-prev img-commonctrl"> </i></button></div>',
|
||||||
|
'<div class="title"></div>',
|
||||||
|
'<div id="next-arrow"><button type="button"><i class="arrow-next img-commonctrl"> </i></button></div>',
|
||||||
|
'</div>',
|
||||||
|
'<div class="bottom-row">',
|
||||||
|
'</div>',
|
||||||
|
'</div>',
|
||||||
|
'<div class="calendar-content"></div>',
|
||||||
|
'</div>'
|
||||||
|
].join('')),
|
||||||
|
|
||||||
|
options: {
|
||||||
|
date: undefined,
|
||||||
|
firstday: 0 // 0 - sunday, 1 - monday
|
||||||
|
},
|
||||||
|
|
||||||
|
initialize : function(options) {
|
||||||
|
Common.UI.BaseView.prototype.initialize.call(this, options);
|
||||||
|
|
||||||
|
var me = this;
|
||||||
|
|
||||||
|
this.monthNames = [this.textJanuary, this.textFebruary, this.textMarch, this.textApril, this.textMay, this.textJune, this.textJuly, this.textAugust, this.textSeptember, this.textOctober, this.textNovember, this.textDecember];
|
||||||
|
this.dayNamesShort = [this.textShortSunday, this.textShortMonday, this.textShortTuesday, this.textShortWednesday, this.textShortThursday, this.textShortFriday, this.textShortSaturday];
|
||||||
|
this.monthShortNames = [this.textShortJanuary, this.textShortFebruary, this.textShortMarch, this.textShortApril, this.textShortMay, this.textShortJune, this.textShortJuly, this.textShortAugust, this.textShortSeptember, this.textShortOctober, this.textShortNovember, this.textShortDecember];
|
||||||
|
|
||||||
|
me.options.date = options.date;
|
||||||
|
if (!_.isUndefined(options.firstday) && (options.firstday === 0 || options.firstday === 1)) {
|
||||||
|
me.options.firstday = options.firstday;
|
||||||
|
}
|
||||||
|
|
||||||
|
me.enableKeyEvents= me.options.enableKeyEvents;
|
||||||
|
|
||||||
|
me._state = undefined; // 0 - month, 1 - months, 2 - years
|
||||||
|
|
||||||
|
me.render();
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function () {
|
||||||
|
var me = this;
|
||||||
|
me.cmpEl = me.$el || $(this.el);
|
||||||
|
me.cmpEl.html(this.template());
|
||||||
|
|
||||||
|
me.currentDate = me.options.date || new Date();
|
||||||
|
|
||||||
|
me.btnPrev = new Common.UI.Button({
|
||||||
|
cls: '',
|
||||||
|
iconCls: 'arrow-prev img-commonctrl'
|
||||||
|
});
|
||||||
|
me.btnPrev.render(me.cmpEl.find('#prev-arrow'));
|
||||||
|
me.btnPrev.on('click', _.bind(me.onClickPrev, me));
|
||||||
|
|
||||||
|
me.btnNext = new Common.UI.Button({
|
||||||
|
cls: '',
|
||||||
|
iconCls: 'arrow-next img-commonctrl'
|
||||||
|
});
|
||||||
|
me.btnNext.render(me.cmpEl.find('#next-arrow'));
|
||||||
|
me.btnNext.on('click', _.bind(me.onClickNext, me));
|
||||||
|
|
||||||
|
me.cmpEl.on('keydown', function(e) {
|
||||||
|
me.trigger('calendar:keydown', me, e);
|
||||||
|
});
|
||||||
|
|
||||||
|
me.renderMonth(me.currentDate);
|
||||||
|
|
||||||
|
this.trigger('render:after', this);
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
|
||||||
|
onClickPrev: function () {
|
||||||
|
var me = this;
|
||||||
|
if (me._state === 0) {
|
||||||
|
var d = new Date(me.currentDate);
|
||||||
|
d.setMonth(d.getMonth() - 1);
|
||||||
|
if (d.getFullYear() > 0) {
|
||||||
|
me.renderMonth(d);
|
||||||
|
}
|
||||||
|
} else if (me._state === 1) {
|
||||||
|
var d = new Date(me.currentDate);
|
||||||
|
d.setFullYear(d.getFullYear() - 1);
|
||||||
|
if (d.getFullYear() > 0) {
|
||||||
|
me.renderMonths(d);
|
||||||
|
}
|
||||||
|
} else if (me._state === 2) {
|
||||||
|
var year = me.currentDate.getFullYear(),
|
||||||
|
newYear;
|
||||||
|
if (year % 10 !== 0) {
|
||||||
|
newYear = String(year);
|
||||||
|
newYear = Number(newYear.slice(0, -1) + '0') - 1;
|
||||||
|
} else {
|
||||||
|
newYear = year - 1;
|
||||||
|
}
|
||||||
|
if (newYear > 0) {
|
||||||
|
me.currentDate.setFullYear(newYear);
|
||||||
|
me.renderYears(newYear);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onClickNext: function () {
|
||||||
|
var me = this;
|
||||||
|
if (me._state === 0) {
|
||||||
|
var d = new Date(me.currentDate);
|
||||||
|
d.setMonth(d.getMonth() + 1);
|
||||||
|
if (d.getFullYear() > 0) {
|
||||||
|
me.renderMonth(d);
|
||||||
|
}
|
||||||
|
} else if (me._state === 1) {
|
||||||
|
var d = new Date(me.currentDate);
|
||||||
|
d.setFullYear(d.getFullYear() + 1);
|
||||||
|
if (d.getFullYear() > 0) {
|
||||||
|
me.renderMonths(d);
|
||||||
|
}
|
||||||
|
} else if (me._state === 2) {
|
||||||
|
var year = me.currentDate.getFullYear(),
|
||||||
|
newYear;
|
||||||
|
if (year % 10 !== 9) {
|
||||||
|
newYear = String(year);
|
||||||
|
newYear = Number(newYear.slice(0, -1) + '9') + 1;
|
||||||
|
} else {
|
||||||
|
newYear = year + 1;
|
||||||
|
}
|
||||||
|
if (newYear > 0) {
|
||||||
|
me.currentDate.setFullYear(newYear);
|
||||||
|
me.renderYears(newYear);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
renderYears: function (year) {
|
||||||
|
var me = this,
|
||||||
|
year = _.isNumber(year) ? year : (me.currentDate ? me.currentDate.getFullYear() : new Date().getFullYear());
|
||||||
|
|
||||||
|
me._state = 2;
|
||||||
|
|
||||||
|
var firstYear = year,
|
||||||
|
lastYear = year;
|
||||||
|
if ((firstYear % 10) !== 0) {
|
||||||
|
var strYear = String(year);
|
||||||
|
firstYear = Number(strYear.slice(0, -1) + '0');
|
||||||
|
}
|
||||||
|
if ((lastYear % 10) !== 9) {
|
||||||
|
var strYear = String(year);
|
||||||
|
lastYear = Number(strYear.slice(0, -1) + '9');
|
||||||
|
}
|
||||||
|
|
||||||
|
me.topTitle = _.template([
|
||||||
|
'<label>' + firstYear + '-' + lastYear + '</label>'
|
||||||
|
].join(''));
|
||||||
|
me.cmpEl.find('.calendar-header .title').html(me.topTitle);
|
||||||
|
|
||||||
|
me.bottomTitle = _.template([
|
||||||
|
'<label>' + me.textYears + '</label>'
|
||||||
|
].join(''));
|
||||||
|
me.cmpEl.find('.calendar-header .bottom-row').html(me.bottomTitle);
|
||||||
|
|
||||||
|
var arrYears = [];
|
||||||
|
var tmpYear = firstYear - 3;
|
||||||
|
|
||||||
|
for (var i = 0; i < 16; i++) {
|
||||||
|
arrYears.push({
|
||||||
|
year: (tmpYear > 0) ? tmpYear : '',
|
||||||
|
isCurrentDecade: ((tmpYear >= firstYear) && (tmpYear <= lastYear)) ? true : false,
|
||||||
|
disabled: (tmpYear > 0) ? false : true,
|
||||||
|
selected: (_.isDate(me.selectedDate)) ?
|
||||||
|
(tmpYear === me.selectedDate.getFullYear()) :
|
||||||
|
(tmpYear === new Date().getFullYear())
|
||||||
|
});
|
||||||
|
tmpYear++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!me.yearPicker) {
|
||||||
|
me.yearPicker = new Common.UI.DataView({
|
||||||
|
el: me.cmpEl.find('.calendar-content'),
|
||||||
|
store: new Common.UI.DataViewStore(arrYears),
|
||||||
|
itemTemplate: _.template('<div class="name-year <% if (!isCurrentDecade) { %> no-current-decade <% } %>" data-year="<%= year %>"><%= year %></div>')
|
||||||
|
});
|
||||||
|
me.yearPicker.on('item:click', function (picker, item, record, e) {
|
||||||
|
var year = record.get('year'),
|
||||||
|
date = new Date();
|
||||||
|
date.setFullYear(year);
|
||||||
|
me.renderMonths(date);
|
||||||
|
});
|
||||||
|
me.enableKeyEvents && this.yearPicker.on('item:keydown', function(view, record, e) {
|
||||||
|
if (e.keyCode==Common.UI.Keys.ESC) {
|
||||||
|
Common.NotificationCenter.trigger('dataview:blur');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else
|
||||||
|
me.yearPicker.store.reset(arrYears);
|
||||||
|
|
||||||
|
me.enableKeyEvents && _.delay(function() {
|
||||||
|
me.monthPicker.cmpEl.find('.dataview').focus();
|
||||||
|
}, 10);
|
||||||
|
},
|
||||||
|
|
||||||
|
renderMonths: function (date) {
|
||||||
|
var me = this,
|
||||||
|
curDate = (_.isDate(date)) ? date : (me.currentDate ? me.currentDate : new Date()),
|
||||||
|
year = curDate.getFullYear();
|
||||||
|
|
||||||
|
me._state = 1;
|
||||||
|
me.currentDate = curDate;
|
||||||
|
|
||||||
|
// Number of year
|
||||||
|
me.topTitle = _.template([
|
||||||
|
'<div class="button"><label>' + year + '</label></div>'
|
||||||
|
].join(''));
|
||||||
|
me.cmpEl.find('.calendar-header .title').html(me.topTitle);
|
||||||
|
me.cmpEl.find('.calendar-header .title').off();
|
||||||
|
me.cmpEl.find('.calendar-header .title').on('click', _.bind(me.renderYears, me));
|
||||||
|
|
||||||
|
me.bottomTitle = _.template([
|
||||||
|
'<label>' + me.textMonths + '</label>'
|
||||||
|
].join(''));
|
||||||
|
me.cmpEl.find('.calendar-header .bottom-row').html(me.bottomTitle);
|
||||||
|
|
||||||
|
var arrMonths = [];
|
||||||
|
var today = new Date();
|
||||||
|
|
||||||
|
for (var ind = 0; ind < 12; ind++) {
|
||||||
|
arrMonths.push({
|
||||||
|
indexMonth: ind,
|
||||||
|
nameMonth: me.monthShortNames[ind],
|
||||||
|
year: year,
|
||||||
|
curYear: true,
|
||||||
|
isCurrentMonth: (ind === curDate.getMonth()),
|
||||||
|
selected: (_.isDate(me.selectedDate)) ?
|
||||||
|
(ind === me.selectedDate.getMonth() && year === me.selectedDate.getFullYear()) :
|
||||||
|
(ind === today.getMonth() && year === today.getFullYear())
|
||||||
|
});
|
||||||
|
}
|
||||||
|
year = year + 1;
|
||||||
|
for (var ind = 0; ind < 4; ind++) {
|
||||||
|
arrMonths.push({
|
||||||
|
indexMonth: ind,
|
||||||
|
nameMonth: me.monthShortNames[ind],
|
||||||
|
year: year,
|
||||||
|
curYear: false,
|
||||||
|
selected: (_.isDate(me.selectedDate)) ?
|
||||||
|
(ind === me.selectedDate.getMonth() && year === me.selectedDate.getFullYear()) :
|
||||||
|
(ind === today.getMonth() && year === today.getFullYear())
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!me.monthsPicker) {
|
||||||
|
me.monthsPicker = new Common.UI.DataView({
|
||||||
|
el: me.cmpEl.find('.calendar-content'),
|
||||||
|
store: new Common.UI.DataViewStore(arrMonths),
|
||||||
|
itemTemplate: _.template('<div class="name-month <% if (!curYear) { %> no-cur-year <% } %>" data-month="<%= indexMonth %>" data-year="<%= year %>"><%= nameMonth %></div>')
|
||||||
|
});
|
||||||
|
me.monthsPicker.on('item:click', function (picker, item, record, e) {
|
||||||
|
var month = record.get('indexMonth'),
|
||||||
|
year = record.get('year'),
|
||||||
|
date = new Date();
|
||||||
|
date.setFullYear(year, month);
|
||||||
|
me.renderMonth(date);
|
||||||
|
});
|
||||||
|
me.enableKeyEvents && this.monthsPicker.on('item:keydown', function(view, record, e) {
|
||||||
|
if (e.keyCode==Common.UI.Keys.ESC) {
|
||||||
|
Common.NotificationCenter.trigger('dataview:blur');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else
|
||||||
|
me.monthsPicker.store.reset(arrMonths);
|
||||||
|
|
||||||
|
me.enableKeyEvents && _.delay(function() {
|
||||||
|
me.monthPicker.cmpEl.find('.dataview').focus();
|
||||||
|
}, 10);
|
||||||
|
},
|
||||||
|
|
||||||
|
renderMonth: function (date) {
|
||||||
|
var me = this;
|
||||||
|
me._state = 0;
|
||||||
|
var firstDay = me.options.firstday;
|
||||||
|
|
||||||
|
// Current date
|
||||||
|
var curDate = date || new Date(),
|
||||||
|
curMonth = curDate.getMonth(),
|
||||||
|
curIndexDayInWeek = curDate.getDay(),
|
||||||
|
curNumberDayInMonth = curDate.getDate(),
|
||||||
|
curYear = curDate.getFullYear();
|
||||||
|
|
||||||
|
me.currentDate = curDate;
|
||||||
|
|
||||||
|
// Name month
|
||||||
|
me.topTitle = _.template([
|
||||||
|
'<div class="button">',
|
||||||
|
'<label>' + me.monthNames[curMonth] + ' ' + curYear + '</label>',
|
||||||
|
'</div>'
|
||||||
|
].join(''));
|
||||||
|
me.cmpEl.find('.calendar-header .title').html(me.topTitle);
|
||||||
|
me.cmpEl.find('.calendar-header .title').off();
|
||||||
|
me.cmpEl.find('.calendar-header .title').on('click', _.bind(me.renderMonths, me));
|
||||||
|
|
||||||
|
// Name days of week
|
||||||
|
var dayNamesTemplate = '';
|
||||||
|
for (var i = firstDay; i < 7; i++) {
|
||||||
|
dayNamesTemplate += '<label>' + me.dayNamesShort[i] + '</label>';
|
||||||
|
}
|
||||||
|
if (firstDay > 0) {
|
||||||
|
dayNamesTemplate += '<label>' + me.dayNamesShort[0] + '</label>';
|
||||||
|
}
|
||||||
|
me.cmpEl.find('.calendar-header .bottom-row').html(_.template(dayNamesTemplate));
|
||||||
|
|
||||||
|
// Month
|
||||||
|
var rows = 6,
|
||||||
|
cols = 7;
|
||||||
|
|
||||||
|
var arrDays = [];
|
||||||
|
|
||||||
|
var d = new Date(curDate);
|
||||||
|
d.setDate(1);
|
||||||
|
var firstDayOfMonthIndex = d.getDay();
|
||||||
|
|
||||||
|
var daysInPrevMonth = me.daysInMonth(d.getTime() - (10 * 24 * 60 * 60 * 1000)),
|
||||||
|
numberDay,
|
||||||
|
month,
|
||||||
|
year;
|
||||||
|
if (firstDay === 0) {
|
||||||
|
numberDay = (firstDayOfMonthIndex > 0) ? (daysInPrevMonth - (firstDayOfMonthIndex - 1)) : 1;
|
||||||
|
} else {
|
||||||
|
if (firstDayOfMonthIndex === 0) {
|
||||||
|
numberDay = daysInPrevMonth - 5;
|
||||||
|
} else {
|
||||||
|
numberDay = daysInPrevMonth - (firstDayOfMonthIndex - 2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ((firstDayOfMonthIndex > 0 && firstDay === 0) || firstDay === 1) {
|
||||||
|
if (curMonth - 1 >= 0) {
|
||||||
|
month = curMonth - 1;
|
||||||
|
year = curYear;
|
||||||
|
} else {
|
||||||
|
month = 11;
|
||||||
|
year = curYear - 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
month = curMonth;
|
||||||
|
year = curYear;
|
||||||
|
}
|
||||||
|
|
||||||
|
var tmp = new Date();
|
||||||
|
tmp.setFullYear(year, month, numberDay);
|
||||||
|
var today = new Date();
|
||||||
|
|
||||||
|
for(var r = 0; r < rows; r++) {
|
||||||
|
for(var c = 0; c < cols; c++) {
|
||||||
|
var tmpDay = tmp.getDay(),
|
||||||
|
tmpNumber = tmp.getDate(),
|
||||||
|
tmpMonth = tmp.getMonth(),
|
||||||
|
tmpYear = tmp.getFullYear();
|
||||||
|
arrDays.push({
|
||||||
|
indexInWeek: tmpDay,
|
||||||
|
dayNumber: tmpNumber,
|
||||||
|
month: tmpMonth,
|
||||||
|
year: tmpYear,
|
||||||
|
isCurrentMonth: tmpMonth === curMonth,
|
||||||
|
selected: (_.isDate(me.selectedDate)) ?
|
||||||
|
(tmpNumber === me.selectedDate.getDate() && tmpMonth === me.selectedDate.getMonth() && tmpYear === me.selectedDate.getFullYear()) :
|
||||||
|
(tmpNumber === today.getDate() && tmpMonth === today.getMonth() && tmpYear === today.getFullYear())
|
||||||
|
});
|
||||||
|
tmp.setDate(tmpNumber + 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!me.monthPicker) {
|
||||||
|
me.monthPicker = new Common.UI.DataView({
|
||||||
|
el: me.cmpEl.find('.calendar-content'),
|
||||||
|
store: new Common.UI.DataViewStore(arrDays),
|
||||||
|
itemTemplate: _.template('<div class="number-day<% if (indexInWeek === 6 || indexInWeek === 0) { %> weekend<% } %><% if (!isCurrentMonth) { %> no-current-month<% } %>" data-number="<%= dayNumber %>" data-month="<%= month %>" data-year="<%= year %>"><%= dayNumber %></div>')
|
||||||
|
});
|
||||||
|
me.monthPicker.on('item:click', function(picker, item, record, e) {
|
||||||
|
var day = record.get('dayNumber'),
|
||||||
|
month = record.get('month'),
|
||||||
|
year = record.get('year');
|
||||||
|
if (_.isUndefined(me.selectedDate)) {
|
||||||
|
me.selectedDate = new Date();
|
||||||
|
}
|
||||||
|
me.selectedDate.setFullYear(year, month, day);
|
||||||
|
me.trigger('date:click', me, me.selectedDate);
|
||||||
|
});
|
||||||
|
me.enableKeyEvents && this.monthPicker.on('item:keydown', function(view, record, e) {
|
||||||
|
if (e.keyCode==Common.UI.Keys.ESC) {
|
||||||
|
Common.NotificationCenter.trigger('dataview:blur');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else
|
||||||
|
me.monthPicker.store.reset(arrDays);
|
||||||
|
|
||||||
|
me.enableKeyEvents && _.delay(function() {
|
||||||
|
me.monthPicker.cmpEl.find('.dataview').focus();
|
||||||
|
}, 10);
|
||||||
|
},
|
||||||
|
|
||||||
|
daysInMonth: function (date) {
|
||||||
|
var d;
|
||||||
|
d = date ? new Date(date) : new Date();
|
||||||
|
var result = new Date();
|
||||||
|
result.setFullYear(d.getFullYear(), d.getMonth() + 1, 0);
|
||||||
|
return result.getDate();
|
||||||
|
},
|
||||||
|
|
||||||
|
setDate: function (date) {
|
||||||
|
if (_.isDate(date)) {
|
||||||
|
this.selectedDate = new Date(date);
|
||||||
|
this.renderMonth(this.selectedDate);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
textJanuary: 'January',
|
||||||
|
textFebruary: 'February',
|
||||||
|
textMarch: 'March',
|
||||||
|
textApril: 'April',
|
||||||
|
textMay: 'May',
|
||||||
|
textJune: 'June',
|
||||||
|
textJuly: 'July',
|
||||||
|
textAugust: 'August',
|
||||||
|
textSeptember: 'September',
|
||||||
|
textOctober: 'October',
|
||||||
|
textNovember: 'November',
|
||||||
|
textDecember: 'December',
|
||||||
|
textShortJanuary: 'Jan',
|
||||||
|
textShortFebruary: 'Feb',
|
||||||
|
textShortMarch: 'Mar',
|
||||||
|
textShortApril: 'Apr',
|
||||||
|
textShortMay: 'May',
|
||||||
|
textShortJune: 'Jun',
|
||||||
|
textShortJuly: 'Jul',
|
||||||
|
textShortAugust: 'Aug',
|
||||||
|
textShortSeptember: 'Sep',
|
||||||
|
textShortOctober: 'Oct',
|
||||||
|
textShortNovember: 'Nov',
|
||||||
|
textShortDecember: 'Dec',
|
||||||
|
textShortSunday: 'Su',
|
||||||
|
textShortMonday: 'Mo',
|
||||||
|
textShortTuesday: 'Tu',
|
||||||
|
textShortWednesday: 'We',
|
||||||
|
textShortThursday: 'Th',
|
||||||
|
textShortFriday: 'Fr',
|
||||||
|
textShortSaturday: 'Sa',
|
||||||
|
textMonths: 'Months',
|
||||||
|
textYears: 'Years'
|
||||||
|
}, Common.UI.Calendar || {}));
|
||||||
|
});
|
|
@ -46,15 +46,16 @@ define([
|
||||||
'common/main/lib/component/Window',
|
'common/main/lib/component/Window',
|
||||||
'common/main/lib/component/MetricSpinner',
|
'common/main/lib/component/MetricSpinner',
|
||||||
'common/main/lib/component/ThemeColorPalette',
|
'common/main/lib/component/ThemeColorPalette',
|
||||||
'common/main/lib/component/ColorButton'
|
'common/main/lib/component/ColorButton',
|
||||||
|
'common/main/lib/view/SymbolTableDialog'
|
||||||
], function () { 'use strict';
|
], function () { 'use strict';
|
||||||
|
|
||||||
Common.Views.ListSettingsDialog = Common.UI.Window.extend(_.extend({
|
Common.Views.ListSettingsDialog = Common.UI.Window.extend(_.extend({
|
||||||
options: {
|
options: {
|
||||||
type: 0, // 0 - markers, 1 - numbers
|
type: 0, // 0 - markers, 1 - numbers
|
||||||
width: 230,
|
width: 230,
|
||||||
height: 156,
|
height: 200,
|
||||||
style: 'min-width: 230px;',
|
style: 'min-width: 240px;',
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
split: false,
|
split: false,
|
||||||
buttons: ['ok', 'cancel']
|
buttons: ['ok', 'cancel']
|
||||||
|
@ -64,20 +65,25 @@ define([
|
||||||
this.type = options.type || 0;
|
this.type = options.type || 0;
|
||||||
|
|
||||||
_.extend(this.options, {
|
_.extend(this.options, {
|
||||||
title: this.txtTitle,
|
title: this.txtTitle
|
||||||
height: this.type==1 ? 190 : 156
|
|
||||||
}, options || {});
|
}, options || {});
|
||||||
|
|
||||||
this.template = [
|
this.template = [
|
||||||
'<div class="box">',
|
'<div class="box">',
|
||||||
'<div class="input-row">',
|
'<div class="input-row" style="margin-bottom: 10px;">',
|
||||||
'<label class="text" style="width: 70px;">' + this.txtSize + '</label><div id="id-dlg-list-size"></div><label class="text" style="margin-left: 10px;">' + this.txtOfText + '</label>',
|
'<label class="text" style="width: 70px;">' + this.txtSize + '</label><div id="id-dlg-list-size"></div><label class="text" style="margin-left: 10px;">' + this.txtOfText + '</label>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div style="margin-top: 10px;">',
|
'<div style="margin-bottom: 10px;">',
|
||||||
'<label class="text" style="width: 70px;">' + this.txtColor + '</label><div id="id-dlg-list-color" style="display: inline-block;"></div>',
|
'<label class="text" style="width: 70px;">' + this.txtColor + '</label><div id="id-dlg-list-color" style="display: inline-block;"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
|
'<% if (type == 0) { %>',
|
||||||
|
'<div class="input-row" style="margin-bottom: 10px;">',
|
||||||
|
'<label class="text" style="width: 70px;vertical-align: top;">' + this.txtBullet + '</label>',
|
||||||
|
'<button type="button" class="btn btn-text-default" id="id-dlg-list-edit" style="width:53px;display: inline-block;vertical-align: top;"></button>',
|
||||||
|
'</div>',
|
||||||
|
'<% } %>',
|
||||||
'<% if (type == 1) { %>',
|
'<% if (type == 1) { %>',
|
||||||
'<div class="input-row" style="margin-top: 10px;">',
|
'<div class="input-row" style="margin-bottom: 10px;">',
|
||||||
'<label class="text" style="width: 70px;">' + this.txtStart + '</label><div id="id-dlg-list-start"></div>',
|
'<label class="text" style="width: 70px;">' + this.txtStart + '</label><div id="id-dlg-list-start"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<% } %>',
|
'<% } %>',
|
||||||
|
@ -163,6 +169,13 @@ define([
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.btnEdit = new Common.UI.Button({
|
||||||
|
el: $window.find('#id-dlg-list-edit'),
|
||||||
|
hint: this.tipChange
|
||||||
|
});
|
||||||
|
this.btnEdit.on('click', _.bind(this.onEditBullet, this));
|
||||||
|
this.btnEdit.cmpEl.css({'font-size': '12px'});
|
||||||
|
|
||||||
this.afterRender();
|
this.afterRender();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -186,6 +199,36 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onEditBullet: function() {
|
||||||
|
var me = this,
|
||||||
|
props = me.bulletProps,
|
||||||
|
handler = function(dlg, result, settings) {
|
||||||
|
if (result == 'ok') {
|
||||||
|
props.changed = true;
|
||||||
|
props.code = settings.code;
|
||||||
|
props.font = settings.font;
|
||||||
|
props.symbol = settings.symbol;
|
||||||
|
props.font && me.btnEdit.cmpEl.css('font-family', props.font);
|
||||||
|
settings.symbol && me.btnEdit.setCaption(settings.symbol);
|
||||||
|
if (me._changedProps) {
|
||||||
|
me._changedProps.asc_putBulletFont(props.font);
|
||||||
|
me._changedProps.asc_putBulletSymbol(props.symbol);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
win = new Common.Views.SymbolTableDialog({
|
||||||
|
api: me.options.api,
|
||||||
|
lang: me.options.interfaceLang,
|
||||||
|
modal: true,
|
||||||
|
type: 0,
|
||||||
|
font: props.font,
|
||||||
|
symbol: props.symbol,
|
||||||
|
handler: handler
|
||||||
|
});
|
||||||
|
win.show();
|
||||||
|
win.on('symbol:dblclick', handler);
|
||||||
|
},
|
||||||
|
|
||||||
_handleInput: function(state) {
|
_handleInput: function(state) {
|
||||||
if (this.options.handler) {
|
if (this.options.handler) {
|
||||||
this.options.handler.call(this, state, this._changedProps);
|
this.options.handler.call(this, state, this._changedProps);
|
||||||
|
@ -228,6 +271,12 @@ define([
|
||||||
if (!isselected) this.colors.clearSelection();
|
if (!isselected) this.colors.clearSelection();
|
||||||
} else
|
} else
|
||||||
this.colors.select(color,true);
|
this.colors.select(color,true);
|
||||||
|
|
||||||
|
if (this.type==0) {
|
||||||
|
this.bulletProps = {symbol: props.asc_getBulletSymbol(), font: props.asc_getBulletFont()};
|
||||||
|
this.bulletProps.font && this.btnEdit.cmpEl.css('font-family', this.bulletProps.font);
|
||||||
|
this.bulletProps.symbol && this.btnEdit.setCaption(this.bulletProps.symbol);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this._changedProps = new Asc.asc_CParagraphProperty();
|
this._changedProps = new Asc.asc_CParagraphProperty();
|
||||||
},
|
},
|
||||||
|
@ -237,6 +286,8 @@ define([
|
||||||
txtColor: 'Color',
|
txtColor: 'Color',
|
||||||
txtOfText: '% of text',
|
txtOfText: '% of text',
|
||||||
textNewColor: 'Add New Custom Color',
|
textNewColor: 'Add New Custom Color',
|
||||||
txtStart: 'Start at'
|
txtStart: 'Start at',
|
||||||
|
txtBullet: 'Bullet',
|
||||||
|
tipChange: 'Change bullet'
|
||||||
}, Common.Views.ListSettingsDialog || {}))
|
}, Common.Views.ListSettingsDialog || {}))
|
||||||
});
|
});
|
|
@ -453,6 +453,15 @@ define([
|
||||||
var init = (aFontSelects.length<1);
|
var init = (aFontSelects.length<1);
|
||||||
init && this.initFonts();
|
init && this.initFonts();
|
||||||
|
|
||||||
|
if (options.font) {
|
||||||
|
for(var i = 0; i < aFontSelects.length; ++i){
|
||||||
|
if(aFontSelects[i].displayValue === options.font){
|
||||||
|
nCurrentFont = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (nCurrentFont < 0)
|
if (nCurrentFont < 0)
|
||||||
nCurrentFont = 0;
|
nCurrentFont = 0;
|
||||||
|
|
||||||
|
@ -477,6 +486,12 @@ define([
|
||||||
nCurrentSymbol = aRanges[0].Start;
|
nCurrentSymbol = aRanges[0].Start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (options.code) {
|
||||||
|
nCurrentSymbol = options.code;
|
||||||
|
} else if (options.symbol) {
|
||||||
|
nCurrentSymbol = this.fixedCharCodeAt(options.symbol, 0);
|
||||||
|
}
|
||||||
|
|
||||||
if (init && this.options.lang && this.options.lang != 'en') {
|
if (init && this.options.lang && this.options.lang != 'en') {
|
||||||
var me = this;
|
var me = this;
|
||||||
loadTranslation(this.options.lang, function(){
|
loadTranslation(this.options.lang, function(){
|
||||||
|
@ -536,6 +551,7 @@ define([
|
||||||
for(i = 0; i < aFontSelects.length; ++i){
|
for(i = 0; i < aFontSelects.length; ++i){
|
||||||
aFontSelects[i].value = i;
|
aFontSelects[i].value = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!oFontsByName[sInitFont]){
|
if(!oFontsByName[sInitFont]){
|
||||||
if(oFontsByName['Cambria Math']){
|
if(oFontsByName['Cambria Math']){
|
||||||
sInitFont = 'Cambria Math';
|
sInitFont = 'Cambria Math';
|
||||||
|
|
|
@ -400,8 +400,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
li.disabled {
|
&.scale-menu {
|
||||||
opacity: 0.65;
|
li.disabled {
|
||||||
|
opacity: 0.65;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
128
apps/common/main/resources/less/calendar.less
Normal file
128
apps/common/main/resources/less/calendar.less
Normal file
|
@ -0,0 +1,128 @@
|
||||||
|
@calendar-bg-color: @tabs-bg-color;
|
||||||
|
|
||||||
|
.calendar-window {
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.calendar-box {
|
||||||
|
width: 198px;
|
||||||
|
height: 220px;
|
||||||
|
border: 1px solid @calendar-bg-color;
|
||||||
|
.top-row {
|
||||||
|
padding: 0 5px;
|
||||||
|
}
|
||||||
|
.btn {
|
||||||
|
background-color: transparent;
|
||||||
|
border: none;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
margin-top: 4px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
.icon {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
&.arrow-prev {
|
||||||
|
background-position: -55px -96px;
|
||||||
|
}
|
||||||
|
&.arrow-next {
|
||||||
|
background-position: -52px -112px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
background-color: rgba(255,255,255,0.2);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.calendar-header {
|
||||||
|
height: 50px;
|
||||||
|
background-color: @calendar-bg-color;
|
||||||
|
color: #FFFFFF;
|
||||||
|
.top-row {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.bottom-row {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
width: 100%;
|
||||||
|
margin: 4px 6px 3px 6px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 13px;
|
||||||
|
label {
|
||||||
|
padding: 2px 10px 0;
|
||||||
|
display: block;
|
||||||
|
font-weight: bold;
|
||||||
|
&:not(:last-of-type) {
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.button {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
&:hover {
|
||||||
|
background-color: rgba(255,255,255,0.2);
|
||||||
|
cursor: pointer;
|
||||||
|
label {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.calendar-content {
|
||||||
|
.item {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
height: auto;
|
||||||
|
width: auto;
|
||||||
|
box-shadow: none;
|
||||||
|
border: 1px solid #fff;
|
||||||
|
.name-month, .name-year {
|
||||||
|
height: 40px;
|
||||||
|
width: 47px;
|
||||||
|
background-color: #F1F1F1;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
.number-day {
|
||||||
|
height: 26px;
|
||||||
|
width: 26px;
|
||||||
|
background-color: #F1F1F1;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
&.selected {
|
||||||
|
.number-day, .name-month, .name-year {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #7D858C;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.weekend {
|
||||||
|
color: #D25252;
|
||||||
|
}
|
||||||
|
.no-current-month, .no-cur-year, .no-current-decade {
|
||||||
|
color: #A5A5A5;
|
||||||
|
}
|
||||||
|
&:not(.disabled):not(.selected) {
|
||||||
|
.number-day, .name-month, .name-year {
|
||||||
|
&:hover {
|
||||||
|
background-color: #D9D9D9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -41,6 +41,7 @@
|
||||||
|
|
||||||
define([
|
define([
|
||||||
'core',
|
'core',
|
||||||
|
'common/main/lib/component/Calendar',
|
||||||
'documenteditor/main/app/view/Links',
|
'documenteditor/main/app/view/Links',
|
||||||
'documenteditor/main/app/view/NoteSettingsDialog',
|
'documenteditor/main/app/view/NoteSettingsDialog',
|
||||||
'documenteditor/main/app/view/HyperlinkSettingsDialog',
|
'documenteditor/main/app/view/HyperlinkSettingsDialog',
|
||||||
|
@ -129,7 +130,8 @@ define([
|
||||||
in_header = false,
|
in_header = false,
|
||||||
in_equation = false,
|
in_equation = false,
|
||||||
in_image = false,
|
in_image = false,
|
||||||
in_table = false;
|
in_table = false,
|
||||||
|
frame_pr = null;
|
||||||
|
|
||||||
while (++i < selectedObjects.length) {
|
while (++i < selectedObjects.length) {
|
||||||
type = selectedObjects[i].get_ObjectType();
|
type = selectedObjects[i].get_ObjectType();
|
||||||
|
@ -137,6 +139,7 @@ define([
|
||||||
|
|
||||||
if (type === Asc.c_oAscTypeSelectElement.Paragraph) {
|
if (type === Asc.c_oAscTypeSelectElement.Paragraph) {
|
||||||
paragraph_locked = pr.get_Locked();
|
paragraph_locked = pr.get_Locked();
|
||||||
|
frame_pr = pr;
|
||||||
} else if (type === Asc.c_oAscTypeSelectElement.Header) {
|
} else if (type === Asc.c_oAscTypeSelectElement.Header) {
|
||||||
header_locked = pr.get_Locked();
|
header_locked = pr.get_Locked();
|
||||||
in_header = true;
|
in_header = true;
|
||||||
|
@ -153,12 +156,19 @@ define([
|
||||||
|
|
||||||
var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null,
|
var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null,
|
||||||
control_plain = (control_props) ? (control_props.get_ContentControlType()==Asc.c_oAscSdtLevelType.Inline) : false;
|
control_plain = (control_props) ? (control_props.get_ContentControlType()==Asc.c_oAscSdtLevelType.Inline) : false;
|
||||||
|
var rich_del_lock = (frame_pr) ? !frame_pr.can_DeleteBlockContentControl() : true,
|
||||||
|
rich_edit_lock = (frame_pr) ? !frame_pr.can_EditBlockContentControl() : true,
|
||||||
|
plain_del_lock = (frame_pr) ? !frame_pr.can_DeleteInlineContentControl() : true,
|
||||||
|
plain_edit_lock = (frame_pr) ? !frame_pr.can_EditInlineContentControl() : true;
|
||||||
|
|
||||||
var need_disable = paragraph_locked || in_equation || in_image || in_header || control_plain;
|
var need_disable = paragraph_locked || in_equation || in_image || in_header || control_plain || rich_edit_lock || plain_edit_lock;
|
||||||
this.view.btnsNotes.setDisabled(need_disable);
|
this.view.btnsNotes.setDisabled(need_disable);
|
||||||
|
|
||||||
need_disable = paragraph_locked || header_locked || in_header || control_plain;
|
need_disable = paragraph_locked || header_locked || in_header || control_plain;
|
||||||
this.view.btnBookmarks.setDisabled(need_disable);
|
this.view.btnBookmarks.setDisabled(need_disable);
|
||||||
|
|
||||||
|
need_disable = in_header || rich_edit_lock || plain_edit_lock || rich_del_lock || plain_del_lock;
|
||||||
|
this.view.btnsContents.setDisabled(need_disable);
|
||||||
},
|
},
|
||||||
|
|
||||||
onApiCanAddHyperlink: function(value) {
|
onApiCanAddHyperlink: function(value) {
|
||||||
|
@ -351,8 +361,9 @@ define([
|
||||||
})).show();
|
})).show();
|
||||||
},
|
},
|
||||||
|
|
||||||
onShowContentControlsActions: function(action, x, y) {
|
onShowTOCActions: function(obj, x, y) {
|
||||||
var menu = (action==1) ? this.view.contentsUpdateMenu : this.view.contentsMenu,
|
var action = obj.button,
|
||||||
|
menu = (action==AscCommon.CCButtonType.Toc) ? this.view.contentsUpdateMenu : this.view.contentsMenu,
|
||||||
documentHolderView = this.getApplication().getController('DocumentHolder').documentHolder,
|
documentHolderView = this.getApplication().getController('DocumentHolder').documentHolder,
|
||||||
menuContainer = documentHolderView.cmpEl.find(Common.Utils.String.format('#menu-container-{0}', menu.id)),
|
menuContainer = documentHolderView.cmpEl.find(Common.Utils.String.format('#menu-container-{0}', menu.id)),
|
||||||
me = this;
|
me = this;
|
||||||
|
@ -391,6 +402,150 @@ define([
|
||||||
onHideContentControlsActions: function() {
|
onHideContentControlsActions: function() {
|
||||||
this.view.contentsMenu && this.view.contentsMenu.hide();
|
this.view.contentsMenu && this.view.contentsMenu.hide();
|
||||||
this.view.contentsUpdateMenu && this.view.contentsUpdateMenu.hide();
|
this.view.contentsUpdateMenu && this.view.contentsUpdateMenu.hide();
|
||||||
|
this.view.listControlMenu && this.view.listControlMenu.isVisible() && this.view.listControlMenu.hide();
|
||||||
|
var controlsContainer = this.getApplication().getController('DocumentHolder').documentHolder.cmpEl.find('#calendar-control-container');
|
||||||
|
if (controlsContainer.is(':visible'))
|
||||||
|
controlsContainer.hide();
|
||||||
|
},
|
||||||
|
|
||||||
|
onShowDateActions: function(obj, x, y) {
|
||||||
|
var props = obj.pr,
|
||||||
|
specProps = props.get_DateTimePr(),
|
||||||
|
id = props.get_InternalId(),
|
||||||
|
documentHolderView = this.getApplication().getController('DocumentHolder').documentHolder,
|
||||||
|
controlsContainer = documentHolderView.cmpEl.find('#calendar-control-container'),
|
||||||
|
me = this;
|
||||||
|
|
||||||
|
if (controlsContainer.length < 1) {
|
||||||
|
controlsContainer = $('<div id="calendar-control-container" style="position: absolute;z-index: 1000;"><div id="id-document-calendar-control" style="position: fixed; left: -1000px; top: -1000px;"></div></div>');
|
||||||
|
documentHolderView.cmpEl.append(controlsContainer);
|
||||||
|
}
|
||||||
|
|
||||||
|
Common.UI.Menu.Manager.hideAll();
|
||||||
|
|
||||||
|
controlsContainer.css({left: x, top : y});
|
||||||
|
controlsContainer.show();
|
||||||
|
|
||||||
|
if (!this.cmpCalendar) {
|
||||||
|
this.cmpCalendar = new Common.UI.Calendar({
|
||||||
|
el: documentHolderView.cmpEl.find('#id-document-calendar-control'),
|
||||||
|
enableKeyEvents: true,
|
||||||
|
firstday: 1
|
||||||
|
});
|
||||||
|
this.cmpCalendar.on('date:click', function (cmp, date) {
|
||||||
|
specProps.put_FullDate(new Date(date));
|
||||||
|
me.api.asc_SetContentControlProperties(props, id);
|
||||||
|
controlsContainer.hide();
|
||||||
|
me.api.asc_UncheckContentControlButtons();
|
||||||
|
});
|
||||||
|
this.cmpCalendar.on('calendar:keydown', function (cmp, e) {
|
||||||
|
if (e.keyCode==Common.UI.Keys.ESC) {
|
||||||
|
controlsContainer.hide();
|
||||||
|
me.api.asc_UncheckContentControlButtons();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.cmpCalendar.setDate(new Date(specProps ? specProps.get_FullDate() : undefined));
|
||||||
|
|
||||||
|
// align
|
||||||
|
var offset = controlsContainer.offset(),
|
||||||
|
docW = Common.Utils.innerWidth(),
|
||||||
|
docH = Common.Utils.innerHeight() - 10, // Yep, it's magic number
|
||||||
|
menuW = this.cmpCalendar.cmpEl.outerWidth(),
|
||||||
|
menuH = this.cmpCalendar.cmpEl.outerHeight(),
|
||||||
|
buttonOffset = 22,
|
||||||
|
left = offset.left - menuW,
|
||||||
|
top = offset.top;
|
||||||
|
if (top + menuH > docH) {
|
||||||
|
top = docH - menuH;
|
||||||
|
left -= buttonOffset;
|
||||||
|
}
|
||||||
|
if (top < 0)
|
||||||
|
top = 0;
|
||||||
|
if (left + menuW > docW)
|
||||||
|
left = docW - menuW;
|
||||||
|
this.cmpCalendar.cmpEl.css({left: left, top : top});
|
||||||
|
|
||||||
|
documentHolderView._preventClick = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
onShowListActions: function(obj, x, y) {
|
||||||
|
var type = obj.type,
|
||||||
|
props = obj.pr,
|
||||||
|
id = props.get_InternalId(),
|
||||||
|
specProps = (type == Asc.c_oAscContentControlSpecificType.ComboBox) ? props.get_ComboBoxPr() : props.get_DropDownListPr(),
|
||||||
|
menu = this.view.listControlMenu,
|
||||||
|
documentHolderView = this.getApplication().getController('DocumentHolder').documentHolder,
|
||||||
|
menuContainer = menu ? documentHolderView.cmpEl.find(Common.Utils.String.format('#menu-container-{0}', menu.id)) : null,
|
||||||
|
me = this;
|
||||||
|
|
||||||
|
this._fromShowContentControls = true;
|
||||||
|
Common.UI.Menu.Manager.hideAll();
|
||||||
|
|
||||||
|
if (!menu) {
|
||||||
|
this.view.listControlMenu = menu = new Common.UI.Menu({
|
||||||
|
menuAlign: 'tr-bl',
|
||||||
|
items: []
|
||||||
|
});
|
||||||
|
menu.on('item:click', function(menu, item) {
|
||||||
|
setTimeout(function(){
|
||||||
|
me.api.asc_SelectContentControlListItem(item.value, id);
|
||||||
|
}, 1);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Prepare menu container
|
||||||
|
if (!menuContainer || menuContainer.length < 1) {
|
||||||
|
menuContainer = $(Common.Utils.String.format('<div id="menu-container-{0}" style="position: absolute; z-index: 10000;"><div class="dropdown-toggle" data-toggle="dropdown"></div></div>', menu.id));
|
||||||
|
documentHolderView.cmpEl.append(menuContainer);
|
||||||
|
}
|
||||||
|
|
||||||
|
menu.render(menuContainer);
|
||||||
|
menu.cmpEl.attr({tabindex: "-1"});
|
||||||
|
menu.on('hide:after', function(){
|
||||||
|
me.view.listControlMenu.removeAll();
|
||||||
|
if (!me._fromShowContentControls)
|
||||||
|
me.api.asc_UncheckContentControlButtons();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (specProps) {
|
||||||
|
var count = specProps.get_ItemsCount();
|
||||||
|
for (var i=0; i<count; i++) {
|
||||||
|
menu.addItem(new Common.UI.MenuItem({
|
||||||
|
caption : specProps.get_ItemDisplayText(i),
|
||||||
|
value : specProps.get_ItemValue(i)
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
menuContainer.css({left: x, top : y});
|
||||||
|
menuContainer.attr('data-value', 'prevent-canvas-click');
|
||||||
|
documentHolderView._preventClick = true;
|
||||||
|
menu.show();
|
||||||
|
|
||||||
|
menu.alignPosition();
|
||||||
|
_.delay(function() {
|
||||||
|
menu.cmpEl.focus();
|
||||||
|
}, 10);
|
||||||
|
this._fromShowContentControls = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
onShowContentControlsActions: function(obj, x, y) {
|
||||||
|
var type = obj.type;
|
||||||
|
switch (type) {
|
||||||
|
case Asc.c_oAscContentControlSpecificType.TOC:
|
||||||
|
this.onShowTOCActions(obj, x, y);
|
||||||
|
break;
|
||||||
|
case Asc.c_oAscContentControlSpecificType.DateTime:
|
||||||
|
this.onShowDateActions(obj, x, y);
|
||||||
|
break;
|
||||||
|
case Asc.c_oAscContentControlSpecificType.Picture:
|
||||||
|
this.api.asc_addImage(obj);
|
||||||
|
break;
|
||||||
|
case Asc.c_oAscContentControlSpecificType.DropDownList:
|
||||||
|
case Asc.c_oAscContentControlSpecificType.ComboBox:
|
||||||
|
this.onShowListActions(obj, x, y);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}, DE.Controllers.Links || {}));
|
}, DE.Controllers.Links || {}));
|
||||||
|
|
|
@ -380,7 +380,10 @@ define([
|
||||||
this.api.asc_registerCallback('asc_onContextMenu', _.bind(this.onContextMenu, this));
|
this.api.asc_registerCallback('asc_onContextMenu', _.bind(this.onContextMenu, this));
|
||||||
this.api.asc_registerCallback('asc_onShowParaMarks', _.bind(this.onShowParaMarks, this));
|
this.api.asc_registerCallback('asc_onShowParaMarks', _.bind(this.onShowParaMarks, this));
|
||||||
this.api.asc_registerCallback('asc_onChangeSdtGlobalSettings', _.bind(this.onChangeSdtGlobalSettings, this));
|
this.api.asc_registerCallback('asc_onChangeSdtGlobalSettings', _.bind(this.onChangeSdtGlobalSettings, this));
|
||||||
|
this.api.asc_registerCallback('asc_onTextLanguage', _.bind(this.onTextLanguage, this));
|
||||||
Common.NotificationCenter.on('fonts:change', _.bind(this.onApiChangeFont, this));
|
Common.NotificationCenter.on('fonts:change', _.bind(this.onApiChangeFont, this));
|
||||||
|
this.api.asc_registerCallback('asc_onTableDrawModeChanged', _.bind(this.onTableDraw, this));
|
||||||
|
this.api.asc_registerCallback('asc_onTableEraseModeChanged', _.bind(this.onTableErase, this));
|
||||||
} else if (this.mode.isRestrictedEdit) {
|
} else if (this.mode.isRestrictedEdit) {
|
||||||
this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onApiFocusObjectRestrictedEdit, this));
|
this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onApiFocusObjectRestrictedEdit, this));
|
||||||
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onApiCoAuthoringDisconnect, this));
|
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onApiCoAuthoringDisconnect, this));
|
||||||
|
@ -736,7 +739,11 @@ define([
|
||||||
if (sh)
|
if (sh)
|
||||||
this.onParagraphColor(sh);
|
this.onParagraphColor(sh);
|
||||||
|
|
||||||
var need_disable = paragraph_locked || header_locked;
|
var rich_del_lock = (frame_pr) ? !frame_pr.can_DeleteBlockContentControl() : true,
|
||||||
|
rich_edit_lock = (frame_pr) ? !frame_pr.can_EditBlockContentControl() : true,
|
||||||
|
plain_del_lock = (frame_pr) ? !frame_pr.can_DeleteInlineContentControl() : true,
|
||||||
|
plain_edit_lock = (frame_pr) ? !frame_pr.can_EditInlineContentControl() : true;
|
||||||
|
var need_disable = paragraph_locked || header_locked || rich_edit_lock || plain_edit_lock;
|
||||||
|
|
||||||
if (this._state.prcontrolsdisable != need_disable) {
|
if (this._state.prcontrolsdisable != need_disable) {
|
||||||
if (this._state.activated) this._state.prcontrolsdisable = need_disable;
|
if (this._state.activated) this._state.prcontrolsdisable = need_disable;
|
||||||
|
@ -750,15 +757,18 @@ define([
|
||||||
lock_type = (in_control&&control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked,
|
lock_type = (in_control&&control_props) ? control_props.get_Lock() : Asc.c_oAscSdtLockType.Unlocked,
|
||||||
control_plain = (in_control&&control_props) ? (control_props.get_ContentControlType()==Asc.c_oAscSdtLevelType.Inline) : false;
|
control_plain = (in_control&&control_props) ? (control_props.get_ContentControlType()==Asc.c_oAscSdtLevelType.Inline) : false;
|
||||||
(lock_type===undefined) && (lock_type = Asc.c_oAscSdtLockType.Unlocked);
|
(lock_type===undefined) && (lock_type = Asc.c_oAscSdtLockType.Unlocked);
|
||||||
|
var content_locked = lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.ContentLocked;
|
||||||
|
|
||||||
if (!paragraph_locked && !header_locked) {
|
toolbar.btnContentControls.setDisabled(paragraph_locked || header_locked);
|
||||||
toolbar.btnContentControls.menu.items[0].setDisabled(control_plain || lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.ContentLocked);
|
if (!(paragraph_locked || header_locked)) {
|
||||||
toolbar.btnContentControls.menu.items[1].setDisabled(control_plain || lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.ContentLocked);
|
var control_disable = control_plain || content_locked;
|
||||||
toolbar.btnContentControls.menu.items[3].setDisabled(!in_control || lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked);
|
for (var i=0; i<7; i++)
|
||||||
toolbar.btnContentControls.menu.items[5].setDisabled(!in_control);
|
toolbar.btnContentControls.menu.items[i].setDisabled(control_disable);
|
||||||
|
toolbar.btnContentControls.menu.items[8].setDisabled(!in_control || lock_type==Asc.c_oAscSdtLockType.SdtContentLocked || lock_type==Asc.c_oAscSdtLockType.SdtLocked);
|
||||||
|
toolbar.btnContentControls.menu.items[10].setDisabled(!in_control);
|
||||||
}
|
}
|
||||||
|
|
||||||
var need_text_disable = paragraph_locked || header_locked || in_chart;
|
var need_text_disable = paragraph_locked || header_locked || in_chart || rich_edit_lock || plain_edit_lock;
|
||||||
if (this._state.textonlycontrolsdisable != need_text_disable) {
|
if (this._state.textonlycontrolsdisable != need_text_disable) {
|
||||||
if (this._state.activated) this._state.textonlycontrolsdisable = need_text_disable;
|
if (this._state.activated) this._state.textonlycontrolsdisable = need_text_disable;
|
||||||
if (!need_disable) {
|
if (!need_disable) {
|
||||||
|
@ -766,7 +776,7 @@ define([
|
||||||
item.setDisabled(need_text_disable);
|
item.setDisabled(need_text_disable);
|
||||||
}, this);
|
}, this);
|
||||||
}
|
}
|
||||||
toolbar.btnCopyStyle.setDisabled(need_text_disable);
|
// toolbar.btnCopyStyle.setDisabled(need_text_disable);
|
||||||
toolbar.btnClearStyle.setDisabled(need_text_disable);
|
toolbar.btnClearStyle.setDisabled(need_text_disable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -792,22 +802,22 @@ define([
|
||||||
if ( !toolbar.btnDropCap.isDisabled() )
|
if ( !toolbar.btnDropCap.isDisabled() )
|
||||||
toolbar.mnuDropCapAdvanced.setDisabled(disable_dropcapadv);
|
toolbar.mnuDropCapAdvanced.setDisabled(disable_dropcapadv);
|
||||||
|
|
||||||
need_disable = !can_add_table || header_locked || in_equation || control_plain;
|
need_disable = !can_add_table || header_locked || in_equation || control_plain || rich_edit_lock || plain_edit_lock || rich_del_lock || plain_del_lock;
|
||||||
toolbar.btnInsertTable.setDisabled(need_disable);
|
toolbar.btnInsertTable.setDisabled(need_disable);
|
||||||
|
|
||||||
need_disable = toolbar.mnuPageNumCurrentPos.isDisabled() && toolbar.mnuPageNumberPosPicker.isDisabled() || control_plain;
|
need_disable = toolbar.mnuPageNumCurrentPos.isDisabled() && toolbar.mnuPageNumberPosPicker.isDisabled() || control_plain;
|
||||||
toolbar.mnuInsertPageNum.setDisabled(need_disable);
|
toolbar.mnuInsertPageNum.setDisabled(need_disable);
|
||||||
|
|
||||||
var in_footnote = this.api.asc_IsCursorInFootnote();
|
var in_footnote = this.api.asc_IsCursorInFootnote();
|
||||||
need_disable = paragraph_locked || header_locked || in_header || in_image || in_equation && !btn_eq_state || in_footnote || in_control;
|
need_disable = paragraph_locked || header_locked || in_header || in_image || in_equation && !btn_eq_state || in_footnote || in_control || rich_edit_lock || plain_edit_lock || rich_del_lock;
|
||||||
toolbar.btnsPageBreak.setDisabled(need_disable);
|
toolbar.btnsPageBreak.setDisabled(need_disable);
|
||||||
toolbar.btnBlankPage.setDisabled(need_disable);
|
toolbar.btnBlankPage.setDisabled(need_disable);
|
||||||
|
|
||||||
need_disable = paragraph_locked || header_locked || in_equation || control_plain;
|
need_disable = paragraph_locked || header_locked || in_equation || control_plain || content_locked;
|
||||||
toolbar.btnInsertShape.setDisabled(need_disable);
|
toolbar.btnInsertShape.setDisabled(need_disable);
|
||||||
toolbar.btnInsertText.setDisabled(need_disable);
|
toolbar.btnInsertText.setDisabled(need_disable);
|
||||||
|
|
||||||
need_disable = paragraph_locked || header_locked || in_para && !can_add_image || in_equation || control_plain;
|
need_disable = paragraph_locked || header_locked || in_para && !can_add_image || in_equation || control_plain || rich_del_lock || plain_del_lock || content_locked;
|
||||||
toolbar.btnInsertImage.setDisabled(need_disable);
|
toolbar.btnInsertImage.setDisabled(need_disable);
|
||||||
toolbar.btnInsertTextArt.setDisabled(need_disable || in_footnote);
|
toolbar.btnInsertTextArt.setDisabled(need_disable || in_footnote);
|
||||||
|
|
||||||
|
@ -816,28 +826,28 @@ define([
|
||||||
this._state.in_chart = in_chart;
|
this._state.in_chart = in_chart;
|
||||||
}
|
}
|
||||||
|
|
||||||
need_disable = in_chart && image_locked || !in_chart && need_disable || control_plain;
|
need_disable = in_chart && image_locked || !in_chart && need_disable || control_plain || rich_del_lock || plain_del_lock || content_locked;
|
||||||
toolbar.btnInsertChart.setDisabled(need_disable);
|
toolbar.btnInsertChart.setDisabled(need_disable);
|
||||||
|
|
||||||
need_disable = paragraph_locked || header_locked || in_chart || !can_add_image&&!in_equation || control_plain;
|
need_disable = paragraph_locked || header_locked || in_chart || !can_add_image&&!in_equation || control_plain || rich_edit_lock || plain_edit_lock || rich_del_lock || plain_del_lock;
|
||||||
toolbar.btnInsertEquation.setDisabled(need_disable);
|
toolbar.btnInsertEquation.setDisabled(need_disable);
|
||||||
|
|
||||||
toolbar.btnInsertSymbol.setDisabled(!in_para || paragraph_locked || header_locked);
|
toolbar.btnInsertSymbol.setDisabled(!in_para || paragraph_locked || header_locked || rich_edit_lock || plain_edit_lock || rich_del_lock || plain_del_lock);
|
||||||
|
|
||||||
need_disable = paragraph_locked || header_locked || in_equation;
|
need_disable = paragraph_locked || header_locked || in_equation || rich_edit_lock || plain_edit_lock;
|
||||||
toolbar.btnSuperscript.setDisabled(need_disable);
|
toolbar.btnSuperscript.setDisabled(need_disable);
|
||||||
toolbar.btnSubscript.setDisabled(need_disable);
|
toolbar.btnSubscript.setDisabled(need_disable);
|
||||||
|
|
||||||
toolbar.btnEditHeader.setDisabled(in_equation);
|
toolbar.btnEditHeader.setDisabled(in_equation);
|
||||||
|
|
||||||
need_disable = paragraph_locked || header_locked || in_image || control_plain;
|
need_disable = paragraph_locked || header_locked || in_image || control_plain || rich_edit_lock || plain_edit_lock;
|
||||||
if (need_disable != toolbar.btnColumns.isDisabled())
|
if (need_disable != toolbar.btnColumns.isDisabled())
|
||||||
toolbar.btnColumns.setDisabled(need_disable);
|
toolbar.btnColumns.setDisabled(need_disable);
|
||||||
|
|
||||||
if (toolbar.listStylesAdditionalMenuItem && (frame_pr===undefined) !== toolbar.listStylesAdditionalMenuItem.isDisabled())
|
if (toolbar.listStylesAdditionalMenuItem && (frame_pr===undefined) !== toolbar.listStylesAdditionalMenuItem.isDisabled())
|
||||||
toolbar.listStylesAdditionalMenuItem.setDisabled(frame_pr===undefined);
|
toolbar.listStylesAdditionalMenuItem.setDisabled(frame_pr===undefined);
|
||||||
|
|
||||||
need_disable = !this.api.can_AddQuotedComment() || paragraph_locked || header_locked || image_locked;
|
need_disable = !this.api.can_AddQuotedComment() || paragraph_locked || header_locked || image_locked || rich_del_lock || rich_edit_lock || plain_del_lock || plain_edit_lock;
|
||||||
if (this.mode.compatibleFeatures) {
|
if (this.mode.compatibleFeatures) {
|
||||||
need_disable = need_disable || in_image;
|
need_disable = need_disable || in_image;
|
||||||
}
|
}
|
||||||
|
@ -854,6 +864,13 @@ define([
|
||||||
this.modeAlwaysSetStyle = false;
|
this.modeAlwaysSetStyle = false;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onTableDraw: function(v) {
|
||||||
|
this.toolbar.mnuInsertTable && this.toolbar.mnuInsertTable.items[2].setChecked(!!v, true);
|
||||||
|
},
|
||||||
|
onTableErase: function(v) {
|
||||||
|
this.toolbar.mnuInsertTable && this.toolbar.mnuInsertTable.items[3].setChecked(!!v, true);
|
||||||
|
},
|
||||||
|
|
||||||
onApiParagraphStyleChange: function(name) {
|
onApiParagraphStyleChange: function(name) {
|
||||||
if (this._state.prstyle != name) {
|
if (this._state.prstyle != name) {
|
||||||
var listStyle = this.toolbar.listStyles,
|
var listStyle = this.toolbar.listStyles,
|
||||||
|
@ -1410,6 +1427,12 @@ define([
|
||||||
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
|
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
|
||||||
}
|
}
|
||||||
})).show();
|
})).show();
|
||||||
|
} else if (item.value == 'draw') {
|
||||||
|
item.isChecked() && menu.items[3].setChecked(false, true);
|
||||||
|
this.api.SetTableDrawMode(item.isChecked());
|
||||||
|
} else if (item.value == 'erase') {
|
||||||
|
item.isChecked() && menu.items[2].setChecked(false, true);
|
||||||
|
this.api.SetTableEraseMode(item.isChecked());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1733,6 +1756,8 @@ define([
|
||||||
(new DE.Views.ControlSettingsDialog({
|
(new DE.Views.ControlSettingsDialog({
|
||||||
props: props,
|
props: props,
|
||||||
api: me.api,
|
api: me.api,
|
||||||
|
controlLang: me._state.lang,
|
||||||
|
interfaceLang: me.mode.lang,
|
||||||
handler: function(result, value) {
|
handler: function(result, value) {
|
||||||
if (result == 'ok') {
|
if (result == 'ok') {
|
||||||
me.api.asc_SetContentControlProperties(value, id);
|
me.api.asc_SetContentControlProperties(value, id);
|
||||||
|
@ -1749,7 +1774,17 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.api.asc_AddContentControl(item.value);
|
if (item.value == 'plain' || item.value == 'rich')
|
||||||
|
this.api.asc_AddContentControl((item.value=='plain') ? Asc.c_oAscSdtLevelType.Inline : Asc.c_oAscSdtLevelType.Block);
|
||||||
|
else if (item.value == 'picture')
|
||||||
|
this.api.asc_AddContentControlPicture();
|
||||||
|
else if (item.value == 'checkbox')
|
||||||
|
this.api.asc_AddContentControlCheckBox();
|
||||||
|
else if (item.value == 'date')
|
||||||
|
this.api.asc_AddContentControlDatePicker();
|
||||||
|
else if (item.value == 'combobox' || item.value == 'dropdown')
|
||||||
|
this.api.asc_AddContentControlList(item.value == 'combobox');
|
||||||
|
|
||||||
Common.component.Analytics.trackEvent('ToolBar', 'Add Content Control');
|
Common.component.Analytics.trackEvent('ToolBar', 'Add Content Control');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2952,6 +2987,10 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onTextLanguage: function(langId) {
|
||||||
|
this._state.lang = langId;
|
||||||
|
},
|
||||||
|
|
||||||
textEmptyImgUrl : 'You need to specify image URL.',
|
textEmptyImgUrl : 'You need to specify image URL.',
|
||||||
textWarning : 'Warning',
|
textWarning : 'Warning',
|
||||||
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 100',
|
textFontSizeErr : 'The entered value is incorrect.<br>Please enter a numeric value between 1 and 100',
|
||||||
|
|
|
@ -0,0 +1,151 @@
|
||||||
|
<div id="id-adv-control-settings-general" class="settings-panel active">
|
||||||
|
<div class="inner-content">
|
||||||
|
<table cols="1" style="width: 100%;">
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<label class="input-label"><%= scope.textName %></label>
|
||||||
|
<div id="control-settings-txt-name"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-large">
|
||||||
|
<label class="input-label"><%= scope.textTag %></label>
|
||||||
|
<div id="control-settings-txt-tag"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-large">
|
||||||
|
<div class="separator horizontal"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<table cols="2" style="width: auto;">
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small" colspan="2">
|
||||||
|
<label class="header"><%= scope.textAppearance %></label>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<label class="input-label" style="margin-right: 10px;"><%= scope.textShowAs %></label>
|
||||||
|
</td>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-combo-show" class="input-group-nr" style="display: inline-block; width:120px;"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<label class="input-label" style="margin-right: 10px;"><%= scope.textColor %></label>
|
||||||
|
</td>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-color-btn" style="display: inline-block;"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-large" colspan="2">
|
||||||
|
<button type="button" class="btn btn-text-default auto" id="control-settings-btn-all" style="min-width: 98px;"><%= scope.textApplyAll %></button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="id-adv-control-settings-lock" class="settings-panel active">
|
||||||
|
<div class="inner-content">
|
||||||
|
<table cols="1" style="width: 100%;">
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-chb-lock-delete"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-chb-lock-edit"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="id-adv-control-settings-list" class="settings-panel active">
|
||||||
|
<div class="inner-content">
|
||||||
|
<table cols="2" style="width: 100%;">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<label class="header" style="width: 99px;"><%= scope.textDisplayName %></label>
|
||||||
|
<label class="header" style=""><%= scope.textValue %></label>
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr style="vertical-align: top;">
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-list" style="width:200px; height: 192px;margin-right: 10px;"></div>
|
||||||
|
</td>
|
||||||
|
<td class="padding-small">
|
||||||
|
<button type="button" class="btn btn-text-default" id="control-settings-btn-add" style="min-width: 86px;margin-bottom: 5px;"><%= scope.textAdd %></button>
|
||||||
|
<button type="button" class="btn btn-text-default" id="control-settings-btn-change" style="min-width: 86px;margin-bottom: 5px;"><%= scope.textChange %></button>
|
||||||
|
<button type="button" class="btn btn-text-default" id="control-settings-btn-delete" style="min-width: 86px;margin-bottom: 5px;"><%= scope.textDelete %></button>
|
||||||
|
<button type="button" class="btn btn-text-default" id="control-settings-btn-up" style="min-width: 86px;margin-bottom: 5px;"><%= scope.textUp %></button>
|
||||||
|
<button type="button" class="btn btn-text-default" id="control-settings-btn-down" style="min-width: 86px;margin-bottom: 5px;"><%= scope.textDown %></button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="id-adv-control-settings-date" class="settings-panel active">
|
||||||
|
<div class="inner-content">
|
||||||
|
<table cols="1" style="width: 100%;">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<label><%= scope.textFormat %></label>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-txt-format" style="width: 100%;"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-format" style="width: 100%; height: 165px;"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<label><%= scope.textLang %></label>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-lang"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="id-adv-control-settings-checkbox" class="settings-panel">
|
||||||
|
<div class="inner-content">
|
||||||
|
<table cols="3" style="width: auto;">
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<label class="input-label" style="margin-right: 10px;"><%= scope.textChecked %></label>
|
||||||
|
</td>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-input-checked" style="margin-right: 10px;"></div>
|
||||||
|
</td>
|
||||||
|
<td class="padding-small">
|
||||||
|
<button type="button" class="btn btn-text-default" id="control-settings-btn-checked-edit" style="min-width:86px;"><%= scope.textChange %></button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<label class="input-label" style="margin-right: 10px;"><%= scope.textUnchecked %></label>
|
||||||
|
</td>
|
||||||
|
<td class="padding-small">
|
||||||
|
<div id="control-settings-input-unchecked" style="margin-right: 10px;"></div>
|
||||||
|
</td>
|
||||||
|
<td class="padding-small">
|
||||||
|
<button type="button" class="btn btn-text-default" id="control-settings-btn-unchecked-edit" style="min-width:86px;"><%= scope.textChange %></button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -14,17 +14,17 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<button type="button" class="btn btn-text-default" id="image-button-original-size" style="width:100px;"><%= scope.textOriginalSize %></button>
|
<button type="button" class="btn btn-text-default" id="image-button-original-size" style="min-width:100px;width: auto;"><%= scope.textOriginalSize %></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<button type="button" class="btn btn-text-default" id="image-button-fit-margins" style="width:100px;"><%= scope.textFitMargins %></button>
|
<button type="button" class="btn btn-text-default" id="image-button-fit-margins" style="min-width:100px;width: auto;"><%= scope.textFitMargins %></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<div id="image-button-crop" style="width: 100px;"></div>
|
<div id="image-button-crop" style="min-width: 100px;"></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -39,17 +39,21 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define([
|
define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
|
||||||
'common/main/lib/util/utils',
|
'common/main/lib/util/utils',
|
||||||
'common/main/lib/component/CheckBox',
|
'common/main/lib/component/CheckBox',
|
||||||
'common/main/lib/component/InputField',
|
'common/main/lib/component/InputField',
|
||||||
'common/main/lib/view/AdvancedSettingsWindow'
|
'common/main/lib/view/AdvancedSettingsWindow',
|
||||||
], function () { 'use strict';
|
'common/main/lib/view/SymbolTableDialog',
|
||||||
|
'documenteditor/main/app/view/EditListItemDialog'
|
||||||
|
], function (contentTemplate) { 'use strict';
|
||||||
|
|
||||||
DE.Views.ControlSettingsDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
DE.Views.ControlSettingsDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
||||||
options: {
|
options: {
|
||||||
contentWidth: 310,
|
contentWidth: 310,
|
||||||
height: 412
|
height: 392,
|
||||||
|
toggleGroup: 'control-adv-settings-group',
|
||||||
|
storageName: 'de-control-settings-adv-category'
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
@ -57,83 +61,16 @@ define([
|
||||||
|
|
||||||
_.extend(this.options, {
|
_.extend(this.options, {
|
||||||
title: this.textTitle,
|
title: this.textTitle,
|
||||||
template: [
|
items: [
|
||||||
'<div class="box" style="height:' + (me.options.height - 85) + 'px;">',
|
{panelId: 'id-adv-control-settings-general', panelCaption: this.strGeneral},
|
||||||
'<div class="content-panel" style="padding: 0 5px;"><div class="inner-content">',
|
{panelId: 'id-adv-control-settings-lock', panelCaption: this.textLock},
|
||||||
'<div class="settings-panel active">',
|
{panelId: 'id-adv-control-settings-list', panelCaption: this.textCombobox},
|
||||||
'<table cols="1" style="width: 100%;">',
|
{panelId: 'id-adv-control-settings-date', panelCaption: this.textDate},
|
||||||
'<tr>',
|
{panelId: 'id-adv-control-settings-checkbox',panelCaption: this.textCheckbox}
|
||||||
'<td class="padding-small">',
|
],
|
||||||
'<label class="input-label">', me.textName, '</label>',
|
contentTemplate: _.template(contentTemplate)({
|
||||||
'<div id="control-settings-txt-name"></div>',
|
scope: this
|
||||||
'</td>',
|
})
|
||||||
'</tr>',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-large">',
|
|
||||||
'<label class="input-label">', me.textTag, '</label>',
|
|
||||||
'<div id="control-settings-txt-tag"></div>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-large">',
|
|
||||||
'<div class="separator horizontal"></div>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'</table>',
|
|
||||||
'<table cols="2" style="width: auto;">',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-small" colspan="2">',
|
|
||||||
'<label class="header">', me.textAppearance, '</label>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-small">',
|
|
||||||
'<label class="input-label" style="margin-right: 10px;">', me.textShowAs,'</label>',
|
|
||||||
'</td>',
|
|
||||||
'<td class="padding-small">',
|
|
||||||
'<div id="control-settings-combo-show" class="input-group-nr" style="display: inline-block; width:120px;"></div>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-small">',
|
|
||||||
'<label class="input-label" style="margin-right: 10px;">', me.textColor, '</label>',
|
|
||||||
'</td>',
|
|
||||||
'<td class="padding-small">',
|
|
||||||
'<div id="control-settings-color-btn" style="display: inline-block;"></div>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-large" colspan="2">',
|
|
||||||
'<button type="button" class="btn btn-text-default auto" id="control-settings-btn-all" style="min-width: 98px;">', me.textApplyAll,'</button>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'</table>',
|
|
||||||
'<table cols="1" style="width: 100%;">',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-large">',
|
|
||||||
'<div class="separator horizontal"></div>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-small">',
|
|
||||||
'<label class="header">', me.textLock, '</label>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-small">',
|
|
||||||
'<div id="control-settings-chb-lock-delete"></div>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'<tr>',
|
|
||||||
'<td class="padding-small">',
|
|
||||||
'<div id="control-settings-chb-lock-edit"></div>',
|
|
||||||
'</td>',
|
|
||||||
'</tr>',
|
|
||||||
'</table>',
|
|
||||||
'</div></div>',
|
|
||||||
'</div>',
|
|
||||||
'</div>'
|
|
||||||
].join('')
|
|
||||||
}, options);
|
}, options);
|
||||||
|
|
||||||
this.handler = options.handler;
|
this.handler = options.handler;
|
||||||
|
@ -222,6 +159,117 @@ define([
|
||||||
labelText: this.txtLockEdit
|
labelText: this.txtLockEdit
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// combobox & dropdown list
|
||||||
|
this.list = new Common.UI.ListView({
|
||||||
|
el: $('#control-settings-list', this.$window),
|
||||||
|
store: new Common.UI.DataViewStore(),
|
||||||
|
emptyText: '',
|
||||||
|
template: _.template(['<div class="listview inner" style=""></div>'].join('')),
|
||||||
|
itemTemplate: _.template([
|
||||||
|
'<div id="<%= id %>" class="list-item" style="width: 100%;display:inline-block;">',
|
||||||
|
'<div style="width:90px;display: inline-block;vertical-align: middle; overflow: hidden; text-overflow: ellipsis;white-space: pre;margin-right: 5px;"><%= name %></div>',
|
||||||
|
'<div style="width:90px;display: inline-block;vertical-align: middle; overflow: hidden; text-overflow: ellipsis;white-space: pre;"><%= value %></div>',
|
||||||
|
'</div>'
|
||||||
|
].join(''))
|
||||||
|
});
|
||||||
|
this.list.on('item:select', _.bind(this.onSelectItem, this));
|
||||||
|
|
||||||
|
this.btnAdd = new Common.UI.Button({
|
||||||
|
el: $('#control-settings-btn-add')
|
||||||
|
});
|
||||||
|
this.btnAdd.on('click', _.bind(this.onAddItem, this));
|
||||||
|
|
||||||
|
this.btnChange = new Common.UI.Button({
|
||||||
|
el: $('#control-settings-btn-change')
|
||||||
|
});
|
||||||
|
this.btnChange.on('click', _.bind(this.onChangeItem, this));
|
||||||
|
|
||||||
|
this.btnDelete = new Common.UI.Button({
|
||||||
|
el: $('#control-settings-btn-delete')
|
||||||
|
});
|
||||||
|
this.btnDelete.on('click', _.bind(this.onDeleteItem, this));
|
||||||
|
|
||||||
|
this.btnUp = new Common.UI.Button({
|
||||||
|
el: $('#control-settings-btn-up')
|
||||||
|
});
|
||||||
|
this.btnUp.on('click', _.bind(this.onMoveItem, this, true));
|
||||||
|
|
||||||
|
this.btnDown = new Common.UI.Button({
|
||||||
|
el: $('#control-settings-btn-down')
|
||||||
|
});
|
||||||
|
this.btnDown.on('click', _.bind(this.onMoveItem, this, false));
|
||||||
|
|
||||||
|
// date picker
|
||||||
|
var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A },
|
||||||
|
{ value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 },
|
||||||
|
{ value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }];
|
||||||
|
data.forEach(function(item) {
|
||||||
|
var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value);
|
||||||
|
item.displayValue = langinfo[1];
|
||||||
|
item.langName = langinfo[0];
|
||||||
|
});
|
||||||
|
|
||||||
|
this.cmbLang = new Common.UI.ComboBox({
|
||||||
|
el : $('#control-settings-lang'),
|
||||||
|
menuStyle : 'min-width: 100%; max-height: 185px;',
|
||||||
|
cls : 'input-group-nr',
|
||||||
|
editable : false,
|
||||||
|
data : data
|
||||||
|
});
|
||||||
|
this.cmbLang.setValue(0x0409);
|
||||||
|
this.cmbLang.on('selected',function(combo, record) {
|
||||||
|
me.updateFormats(record.value);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.listFormats = new Common.UI.ListView({
|
||||||
|
el: $('#control-settings-format'),
|
||||||
|
store: new Common.UI.DataViewStore(),
|
||||||
|
scrollAlwaysVisible: true
|
||||||
|
});
|
||||||
|
this.listFormats.on('item:select', _.bind(this.onSelectFormat, this));
|
||||||
|
|
||||||
|
this.txtDate = new Common.UI.InputField({
|
||||||
|
el : $('#control-settings-txt-format'),
|
||||||
|
allowBlank : true,
|
||||||
|
validateOnChange: false,
|
||||||
|
validateOnBlur: false,
|
||||||
|
style : 'width: 100%;',
|
||||||
|
value : ''
|
||||||
|
});
|
||||||
|
|
||||||
|
// Check Box
|
||||||
|
this.txtChecked = new Common.UI.InputField({
|
||||||
|
el : $('#control-settings-input-checked'),
|
||||||
|
allowBlank : true,
|
||||||
|
validateOnChange: false,
|
||||||
|
validateOnBlur: false,
|
||||||
|
style : 'width: 30px;',
|
||||||
|
value : ''
|
||||||
|
});
|
||||||
|
this.txtChecked._input.attr('disabled', true);
|
||||||
|
this.txtChecked._input.css({'text-align': 'center', 'font-size': '16px'});
|
||||||
|
|
||||||
|
this.txtUnchecked = new Common.UI.InputField({
|
||||||
|
el : $('#control-settings-input-unchecked'),
|
||||||
|
allowBlank : true,
|
||||||
|
validateOnChange: false,
|
||||||
|
validateOnBlur: false,
|
||||||
|
style : 'width: 30px;',
|
||||||
|
value : ''
|
||||||
|
});
|
||||||
|
this.txtUnchecked._input.attr('disabled', true);
|
||||||
|
this.txtUnchecked._input.css({'text-align': 'center', 'font-size': '16px'});
|
||||||
|
|
||||||
|
this.btnEditChecked = new Common.UI.Button({
|
||||||
|
el: $('#control-settings-btn-checked-edit')
|
||||||
|
});
|
||||||
|
this.btnEditChecked.on('click', _.bind(this.onEditCheckbox, this, true));
|
||||||
|
|
||||||
|
this.btnEditUnchecked = new Common.UI.Button({
|
||||||
|
el: $('#control-settings-btn-unchecked-edit')
|
||||||
|
});
|
||||||
|
this.btnEditUnchecked.on('click', _.bind(this.onEditCheckbox, this, false));
|
||||||
|
|
||||||
this.afterRender();
|
this.afterRender();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -252,6 +300,10 @@ define([
|
||||||
afterRender: function() {
|
afterRender: function() {
|
||||||
this.updateThemeColors();
|
this.updateThemeColors();
|
||||||
this._setDefaults(this.props);
|
this._setDefaults(this.props);
|
||||||
|
if (this.storageName) {
|
||||||
|
var value = Common.localStorage.getItem(this.storageName);
|
||||||
|
this.setActiveCategory((value!==null) ? parseInt(value) : 0);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function() {
|
show: function() {
|
||||||
|
@ -286,6 +338,69 @@ define([
|
||||||
(val===undefined) && (val = Asc.c_oAscSdtLockType.Unlocked);
|
(val===undefined) && (val = Asc.c_oAscSdtLockType.Unlocked);
|
||||||
this.chLockDelete.setValue(val==Asc.c_oAscSdtLockType.SdtContentLocked || val==Asc.c_oAscSdtLockType.SdtLocked);
|
this.chLockDelete.setValue(val==Asc.c_oAscSdtLockType.SdtContentLocked || val==Asc.c_oAscSdtLockType.SdtLocked);
|
||||||
this.chLockEdit.setValue(val==Asc.c_oAscSdtLockType.SdtContentLocked || val==Asc.c_oAscSdtLockType.ContentLocked);
|
this.chLockEdit.setValue(val==Asc.c_oAscSdtLockType.SdtContentLocked || val==Asc.c_oAscSdtLockType.ContentLocked);
|
||||||
|
|
||||||
|
var type = props.get_SpecificType();
|
||||||
|
|
||||||
|
//for list controls
|
||||||
|
this.btnsCategory[2].setVisible(type == Asc.c_oAscContentControlSpecificType.ComboBox || type == Asc.c_oAscContentControlSpecificType.DropDownList);
|
||||||
|
if (type == Asc.c_oAscContentControlSpecificType.ComboBox || type == Asc.c_oAscContentControlSpecificType.DropDownList) {
|
||||||
|
this.btnsCategory[2].setCaption(type == Asc.c_oAscContentControlSpecificType.ComboBox ? this.textCombobox : this.textDropDown);
|
||||||
|
var specProps = (type == Asc.c_oAscContentControlSpecificType.ComboBox) ? props.get_ComboBoxPr() : props.get_DropDownListPr();
|
||||||
|
if (specProps) {
|
||||||
|
var count = specProps.get_ItemsCount();
|
||||||
|
var arr = [];
|
||||||
|
for (var i=0; i<count; i++) {
|
||||||
|
arr.push({
|
||||||
|
value: specProps.get_ItemValue(i),
|
||||||
|
name: specProps.get_ItemDisplayText(i)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.list.store.reset(arr);
|
||||||
|
}
|
||||||
|
this.disableListButtons();
|
||||||
|
}
|
||||||
|
|
||||||
|
//for date picker
|
||||||
|
this.btnsCategory[3].setVisible(type == Asc.c_oAscContentControlSpecificType.DateTime);
|
||||||
|
if (type == Asc.c_oAscContentControlSpecificType.DateTime) {
|
||||||
|
var specProps = props.get_DateTimePr();
|
||||||
|
if (specProps) {
|
||||||
|
this.datetime = specProps;
|
||||||
|
var lang = specProps.get_LangId() || this.options.controlLang;
|
||||||
|
if (lang) {
|
||||||
|
var item = this.cmbLang.store.findWhere({value: lang});
|
||||||
|
item = item ? item.get('value') : 0x0409;
|
||||||
|
this.cmbLang.setValue(item);
|
||||||
|
}
|
||||||
|
this.updateFormats(this.cmbLang.getValue());
|
||||||
|
var format = specProps.get_DateFormat();
|
||||||
|
var rec = this.listFormats.store.findWhere({format: format});
|
||||||
|
this.listFormats.selectRecord(rec);
|
||||||
|
this.listFormats.scrollToRecord(rec);
|
||||||
|
this.txtDate.setValue(format);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// for check box
|
||||||
|
this.btnsCategory[4].setVisible(type == Asc.c_oAscContentControlSpecificType.CheckBox);
|
||||||
|
if (type == Asc.c_oAscContentControlSpecificType.CheckBox) {
|
||||||
|
var specProps = props.get_CheckBoxPr();
|
||||||
|
if (specProps) {
|
||||||
|
var code = specProps.get_CheckedSymbol(),
|
||||||
|
font = specProps.get_CheckedFont();
|
||||||
|
font && this.txtChecked.cmpEl.css('font-family', font);
|
||||||
|
code && this.txtChecked.setValue(String.fromCharCode(code));
|
||||||
|
this.checkedBox = {code: code, font: font};
|
||||||
|
|
||||||
|
code = specProps.get_UncheckedSymbol();
|
||||||
|
font = specProps.get_UncheckedFont();
|
||||||
|
font && this.txtUnchecked.cmpEl.css('font-family', font);
|
||||||
|
code && this.txtUnchecked.setValue(String.fromCharCode(code));
|
||||||
|
this.uncheckedBox = {code: code, font: font};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.type = type;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -312,6 +427,39 @@ define([
|
||||||
lock = Asc.c_oAscSdtLockType.ContentLocked;
|
lock = Asc.c_oAscSdtLockType.ContentLocked;
|
||||||
props.put_Lock(lock);
|
props.put_Lock(lock);
|
||||||
|
|
||||||
|
// for list controls
|
||||||
|
if (this.type == Asc.c_oAscContentControlSpecificType.ComboBox || this.type == Asc.c_oAscContentControlSpecificType.DropDownList) {
|
||||||
|
var specProps = new AscCommon.CSdtComboBoxPr();
|
||||||
|
this.list.store.each(function (item, index) {
|
||||||
|
specProps.add_Item(item.get('name'), item.get('value'));
|
||||||
|
});
|
||||||
|
(this.type == Asc.c_oAscContentControlSpecificType.ComboBox) ? props.put_ComboBoxPr(specProps) : props.put_DropDownListPr(specProps);
|
||||||
|
}
|
||||||
|
|
||||||
|
//for date picker
|
||||||
|
if (this.type == Asc.c_oAscContentControlSpecificType.DateTime) {
|
||||||
|
var specProps = new AscCommon.CSdtDatePickerPr();
|
||||||
|
specProps.put_DateFormat(this.txtDate.getValue());
|
||||||
|
specProps.put_LangId(this.cmbLang.getValue());
|
||||||
|
props.put_DateTimePr(specProps);
|
||||||
|
}
|
||||||
|
|
||||||
|
// for check box
|
||||||
|
if (this.type == Asc.c_oAscContentControlSpecificType.CheckBox) {
|
||||||
|
if (this.checkedBox && this.checkedBox.changed || this.uncheckedBox && this.uncheckedBox.changed) {
|
||||||
|
var specProps = new AscCommon.CSdtCheckBoxPr();
|
||||||
|
if (this.checkedBox) {
|
||||||
|
specProps.put_CheckedSymbol(this.checkedBox.code);
|
||||||
|
specProps.put_CheckedFont(this.checkedBox.font);
|
||||||
|
}
|
||||||
|
if (this.uncheckedBox) {
|
||||||
|
specProps.put_UncheckedSymbol(this.uncheckedBox.code);
|
||||||
|
specProps.put_UncheckedFont(this.uncheckedBox.font);
|
||||||
|
}
|
||||||
|
props.put_CheckBoxPr(specProps);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return props;
|
return props;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -339,6 +487,147 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onSelectItem: function(listView, itemView, record) {
|
||||||
|
this.disableListButtons(false);
|
||||||
|
},
|
||||||
|
|
||||||
|
disableListButtons: function(disabled) {
|
||||||
|
if (disabled===undefined)
|
||||||
|
disabled = !this.list.getSelectedRec();
|
||||||
|
this.btnChange.setDisabled(disabled);
|
||||||
|
this.btnDelete.setDisabled(disabled);
|
||||||
|
this.btnUp.setDisabled(disabled);
|
||||||
|
this.btnDown.setDisabled(disabled);
|
||||||
|
},
|
||||||
|
|
||||||
|
onAddItem: function() {
|
||||||
|
var me = this,
|
||||||
|
win = new DE.Views.EditListItemDialog({
|
||||||
|
store: me.list.store,
|
||||||
|
handler: function(result, name, value) {
|
||||||
|
if (result == 'ok') {
|
||||||
|
var rec = me.list.store.add({
|
||||||
|
value: value,
|
||||||
|
name: name
|
||||||
|
});
|
||||||
|
if (rec) {
|
||||||
|
me.list.selectRecord(rec);
|
||||||
|
me.list.scrollToRecord(rec);
|
||||||
|
me.disableListButtons();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
me.list.cmpEl.find('.listview').focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
win.show();
|
||||||
|
},
|
||||||
|
|
||||||
|
onChangeItem: function() {
|
||||||
|
var me = this,
|
||||||
|
rec = this.list.getSelectedRec(),
|
||||||
|
win = new DE.Views.EditListItemDialog({
|
||||||
|
store: me.list.store,
|
||||||
|
handler: function(result, name, value) {
|
||||||
|
if (result == 'ok') {
|
||||||
|
if (rec) {
|
||||||
|
rec.set({
|
||||||
|
value: value,
|
||||||
|
name: name
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
me.list.cmpEl.find('.listview').focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
rec && win.show();
|
||||||
|
rec && win.setSettings({name: rec.get('name'), value: rec.get('value')});
|
||||||
|
},
|
||||||
|
|
||||||
|
onDeleteItem: function(btn, eOpts){
|
||||||
|
var rec = this.list.getSelectedRec();
|
||||||
|
if (rec) {
|
||||||
|
var store = this.list.store;
|
||||||
|
var idx = _.indexOf(store.models, rec);
|
||||||
|
store.remove(rec);
|
||||||
|
if (idx>store.length-1) idx = store.length-1;
|
||||||
|
if (store.length>0) {
|
||||||
|
this.list.selectByIndex(idx);
|
||||||
|
this.list.scrollToRecord(store.at(idx));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.disableListButtons();
|
||||||
|
this.list.cmpEl.find('.listview').focus();
|
||||||
|
},
|
||||||
|
|
||||||
|
onMoveItem: function(up) {
|
||||||
|
var store = this.list.store,
|
||||||
|
length = store.length,
|
||||||
|
rec = this.list.getSelectedRec();
|
||||||
|
if (rec) {
|
||||||
|
var index = store.indexOf(rec);
|
||||||
|
store.add(store.remove(rec), {at: up ? Math.max(0, index-1) : Math.min(length-1, index+1)});
|
||||||
|
this.list.selectRecord(rec);
|
||||||
|
this.list.scrollToRecord(rec);
|
||||||
|
}
|
||||||
|
this.list.cmpEl.find('.listview').focus();
|
||||||
|
},
|
||||||
|
|
||||||
|
updateFormats: function(lang) {
|
||||||
|
if (this.datetime) {
|
||||||
|
var props = this.datetime,
|
||||||
|
formats = props.get_FormatsExamples(),
|
||||||
|
arr = [];
|
||||||
|
for (var i = 0, len = formats.length; i < len; i++)
|
||||||
|
{
|
||||||
|
props.get_String(formats[i], undefined, lang);
|
||||||
|
var rec = new Common.UI.DataViewModel();
|
||||||
|
rec.set({
|
||||||
|
format: formats[i],
|
||||||
|
value: props.get_String(formats[i], undefined, lang)
|
||||||
|
});
|
||||||
|
arr.push(rec);
|
||||||
|
}
|
||||||
|
this.listFormats.store.reset(arr);
|
||||||
|
this.listFormats.selectByIndex(0);
|
||||||
|
var rec = this.listFormats.getSelectedRec();
|
||||||
|
this.listFormats.scrollToRecord(rec);
|
||||||
|
this.txtDate.setValue(rec.get('format'));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onEditCheckbox: function(checked) {
|
||||||
|
if (this.api) {
|
||||||
|
var me = this,
|
||||||
|
props = (checked) ? me.checkedBox : me.uncheckedBox,
|
||||||
|
cmp = (checked) ? me.txtChecked : me.txtUnchecked,
|
||||||
|
handler = function(dlg, result, settings) {
|
||||||
|
if (result == 'ok') {
|
||||||
|
props.changed = true;
|
||||||
|
props.code = settings.code;
|
||||||
|
props.font = settings.font;
|
||||||
|
props.font && cmp.cmpEl.css('font-family', props.font);
|
||||||
|
settings.symbol && cmp.setValue(settings.symbol);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
win = new Common.Views.SymbolTableDialog({
|
||||||
|
api: me.api,
|
||||||
|
lang: me.options.interfaceLang,
|
||||||
|
modal: true,
|
||||||
|
type: 0,
|
||||||
|
font: props.font,
|
||||||
|
code: props.code,
|
||||||
|
handler: handler
|
||||||
|
});
|
||||||
|
win.show();
|
||||||
|
win.on('symbol:dblclick', handler);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
onSelectFormat: function(lisvView, itemView, record) {
|
||||||
|
if (!record) return;
|
||||||
|
this.txtDate.setValue(record.get('format'));
|
||||||
|
},
|
||||||
|
|
||||||
textTitle: 'Content Control Settings',
|
textTitle: 'Content Control Settings',
|
||||||
textName: 'Title',
|
textName: 'Title',
|
||||||
textTag: 'Tag',
|
textTag: 'Tag',
|
||||||
|
@ -352,7 +641,23 @@ define([
|
||||||
textNewColor: 'Add New Custom Color',
|
textNewColor: 'Add New Custom Color',
|
||||||
textApplyAll: 'Apply to All',
|
textApplyAll: 'Apply to All',
|
||||||
textAppearance: 'Appearance',
|
textAppearance: 'Appearance',
|
||||||
textSystemColor: 'System'
|
textSystemColor: 'System',
|
||||||
|
strGeneral: 'General',
|
||||||
|
textAdd: 'Add',
|
||||||
|
textChange: 'Edit',
|
||||||
|
textDelete: 'Delete',
|
||||||
|
textUp: 'Up',
|
||||||
|
textDown: 'Down',
|
||||||
|
textCombobox: 'Combo box',
|
||||||
|
textDropDown: 'Drop-down list',
|
||||||
|
textDisplayName: 'Display name',
|
||||||
|
textValue: 'Value',
|
||||||
|
textDate: 'Date format',
|
||||||
|
textLang: 'Language',
|
||||||
|
textFormat: 'Display the date like this',
|
||||||
|
textCheckbox: 'Check box',
|
||||||
|
textChecked: 'Checked symbol',
|
||||||
|
textUnchecked: 'Unchecked symbol'
|
||||||
|
|
||||||
}, DE.Views.ControlSettingsDialog || {}))
|
}, DE.Views.ControlSettingsDialog || {}))
|
||||||
});
|
});
|
175
apps/documenteditor/main/app/view/EditListItemDialog.js
Normal file
175
apps/documenteditor/main/app/view/EditListItemDialog.js
Normal file
|
@ -0,0 +1,175 @@
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* (c) Copyright Ascensio System SIA 2010-2019
|
||||||
|
*
|
||||||
|
* This program is a free software product. You can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||||
|
* version 3 as published by the Free Software Foundation. In accordance with
|
||||||
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||||
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||||
|
* of any third-party rights.
|
||||||
|
*
|
||||||
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||||
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||||
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||||
|
*
|
||||||
|
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||||
|
* street, Riga, Latvia, EU, LV-1050.
|
||||||
|
*
|
||||||
|
* The interactive user interfaces in modified source and object code versions
|
||||||
|
* of the Program must display Appropriate Legal Notices, as required under
|
||||||
|
* Section 5 of the GNU AGPL version 3.
|
||||||
|
*
|
||||||
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||||
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||||
|
* grant you any rights under trademark law for use of our trademarks.
|
||||||
|
*
|
||||||
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||||
|
* well as technical writing content are licensed under the terms of the
|
||||||
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||||
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EditListItemDialog.js
|
||||||
|
*
|
||||||
|
* Created by Julia Radzhabova on 05.11.2019
|
||||||
|
* Copyright (c) 2019 Ascensio System SIA. All rights reserved.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
define([
|
||||||
|
'common/main/lib/component/Window',
|
||||||
|
'common/main/lib/component/InputField'
|
||||||
|
], function () { 'use strict';
|
||||||
|
|
||||||
|
DE.Views.EditListItemDialog = Common.UI.Window.extend(_.extend({
|
||||||
|
options: {
|
||||||
|
width: 330,
|
||||||
|
header: false,
|
||||||
|
cls: 'modal-dlg',
|
||||||
|
buttons: ['ok', 'cancel']
|
||||||
|
},
|
||||||
|
|
||||||
|
initialize : function(options) {
|
||||||
|
_.extend(this.options, options || {});
|
||||||
|
|
||||||
|
this.template = [
|
||||||
|
'<div class="box">',
|
||||||
|
'<div class="input-row">',
|
||||||
|
'<label>' + this.textDisplayName + '</label>',
|
||||||
|
'</div>',
|
||||||
|
'<div id="id-dlg-label-name" class="input-row" style="margin-bottom: 8px;"></div>',
|
||||||
|
'<div class="input-row">',
|
||||||
|
'<label>' + this.textValue + '</label>',
|
||||||
|
'</div>',
|
||||||
|
'<div id="id-dlg-label-value" class="input-row"></div>',
|
||||||
|
'</div>'
|
||||||
|
].join('');
|
||||||
|
|
||||||
|
this.options.tpl = _.template(this.template)(this.options);
|
||||||
|
Common.UI.Window.prototype.initialize.call(this, this.options);
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function() {
|
||||||
|
Common.UI.Window.prototype.render.call(this);
|
||||||
|
|
||||||
|
var me = this;
|
||||||
|
me.inputName = new Common.UI.InputField({
|
||||||
|
el : $('#id-dlg-label-name'),
|
||||||
|
allowBlank : false,
|
||||||
|
blankError : me.textNameError,
|
||||||
|
style : 'width: 100%;',
|
||||||
|
validateOnBlur: false,
|
||||||
|
validation : function(value) {
|
||||||
|
return value ? true : '';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
me.inputName._input.on('input', function (e) {
|
||||||
|
if (me.copyvalue==undefined && me.inputValue.getValue()==me.inputName.getValue()) {
|
||||||
|
me.copyvalue = 1;
|
||||||
|
}
|
||||||
|
if (me.copyvalue==1)
|
||||||
|
me.inputValue.setValue($(e.target).val());
|
||||||
|
else if (me.copyvalue==2)
|
||||||
|
me.copyvalue = 0;
|
||||||
|
});
|
||||||
|
|
||||||
|
me.inputValue = new Common.UI.InputField({
|
||||||
|
el : $('#id-dlg-label-value'),
|
||||||
|
style : 'width: 100%;',
|
||||||
|
validateOnBlur: false,
|
||||||
|
validation : function(value) {
|
||||||
|
if (value!=='' && me.options.store) {
|
||||||
|
var rec = me.options.store.findWhere({value: value});
|
||||||
|
if (rec)
|
||||||
|
return me.textValueError
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
me.inputValue._input.on('input', function (e) {
|
||||||
|
if (me.copyvalue==undefined && me.inputValue.getValue()==me.inputName.getValue()) {
|
||||||
|
me.copyvalue = 2;
|
||||||
|
}
|
||||||
|
if (me.copyvalue==2)
|
||||||
|
me.inputName.setValue($(e.target).val());
|
||||||
|
else if (me.copyvalue==1)
|
||||||
|
me.copyvalue = 0;
|
||||||
|
});
|
||||||
|
|
||||||
|
var $window = this.getChild();
|
||||||
|
$window.find('.btn').on('click', _.bind(this.onBtnClick, this));
|
||||||
|
},
|
||||||
|
|
||||||
|
show: function() {
|
||||||
|
Common.UI.Window.prototype.show.apply(this, arguments);
|
||||||
|
|
||||||
|
var me = this;
|
||||||
|
_.delay(function(){
|
||||||
|
me.inputName.cmpEl.find('input').focus();
|
||||||
|
},50);
|
||||||
|
},
|
||||||
|
|
||||||
|
onPrimary: function(event) {
|
||||||
|
this._handleInput('ok');
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
|
onBtnClick: function(event) {
|
||||||
|
this._handleInput(event.currentTarget.attributes['result'].value);
|
||||||
|
},
|
||||||
|
|
||||||
|
_handleInput: function(state) {
|
||||||
|
if (this.options.handler) {
|
||||||
|
if (state == 'ok') {
|
||||||
|
if (this.inputName.checkValidate() !== true) {
|
||||||
|
this.inputName.cmpEl.find('input').focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.inputValue.checkValidate() !== true) {
|
||||||
|
this.inputValue.cmpEl.find('input').focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.options.handler.call(this, state, this.inputName.getValue(), this.inputValue.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
this.close();
|
||||||
|
},
|
||||||
|
|
||||||
|
setSettings: function (props) {
|
||||||
|
if (props) {
|
||||||
|
this.inputName.setValue(props.name || '');
|
||||||
|
this.inputValue.setValue(props.value || '');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
textDisplayName: 'Display name',
|
||||||
|
textValue: 'Value',
|
||||||
|
textNameError: 'Display name must not be empty.',
|
||||||
|
textValueError: 'An item with the same value already exists.'
|
||||||
|
}, DE.Views.EditListItemDialog || {}));
|
||||||
|
});
|
|
@ -159,6 +159,10 @@ define([
|
||||||
});
|
});
|
||||||
this.lockedControls.push(this.btnFitMargins);
|
this.lockedControls.push(this.btnFitMargins);
|
||||||
|
|
||||||
|
var w = Math.max(this.btnOriginalSize.cmpEl.width(), this.btnFitMargins.cmpEl.width());
|
||||||
|
this.btnOriginalSize.cmpEl.width(w);
|
||||||
|
this.btnFitMargins.cmpEl.width(w);
|
||||||
|
|
||||||
this.btnInsertFromFile = new Common.UI.Button({
|
this.btnInsertFromFile = new Common.UI.Button({
|
||||||
el: $('#image-button-from-file')
|
el: $('#image-button-from-file')
|
||||||
});
|
});
|
||||||
|
@ -229,6 +233,7 @@ define([
|
||||||
this.btnFlipH.on('click', _.bind(this.onBtnFlipClick, this));
|
this.btnFlipH.on('click', _.bind(this.onBtnFlipClick, this));
|
||||||
this.lockedControls.push(this.btnFlipH);
|
this.lockedControls.push(this.btnFlipH);
|
||||||
|
|
||||||
|
var w = this.btnOriginalSize.cmpEl.outerWidth();
|
||||||
this.btnCrop = new Common.UI.Button({
|
this.btnCrop = new Common.UI.Button({
|
||||||
cls: 'btn-text-split-default',
|
cls: 'btn-text-split-default',
|
||||||
caption: this.textCrop,
|
caption: this.textCrop,
|
||||||
|
@ -236,9 +241,9 @@ define([
|
||||||
enableToggle: true,
|
enableToggle: true,
|
||||||
allowDepress: true,
|
allowDepress: true,
|
||||||
pressed: this._state.cropMode,
|
pressed: this._state.cropMode,
|
||||||
width: 100,
|
width: w,
|
||||||
menu : new Common.UI.Menu({
|
menu : new Common.UI.Menu({
|
||||||
style : 'min-width: 100px;',
|
style : 'min-width:' + w + 'px;',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
caption: this.textCrop,
|
caption: this.textCrop,
|
||||||
|
|
|
@ -480,7 +480,9 @@ define([
|
||||||
menu: new Common.UI.Menu({
|
menu: new Common.UI.Menu({
|
||||||
items: [
|
items: [
|
||||||
{template: _.template('<div id="id-toolbar-menu-tablepicker" class="dimension-picker" style="margin: 5px 10px;"></div>')},
|
{template: _.template('<div id="id-toolbar-menu-tablepicker" class="dimension-picker" style="margin: 5px 10px;"></div>')},
|
||||||
{caption: this.mniCustomTable, value: 'custom'}
|
{caption: this.mniCustomTable, value: 'custom'},
|
||||||
|
{caption: this.mniDrawTable, value: 'draw', checkable: true},
|
||||||
|
{caption: this.mniEraseTable, value: 'erase', checkable: true}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
@ -638,18 +640,43 @@ define([
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
caption: this.textPlainControl,
|
caption: this.textPlainControl,
|
||||||
iconCls: 'mnu-control-plain',
|
// iconCls: 'mnu-control-plain',
|
||||||
value: Asc.c_oAscSdtLevelType.Inline
|
value: 'plain'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
caption: this.textRichControl,
|
caption: this.textRichControl,
|
||||||
iconCls: 'mnu-control-rich',
|
// iconCls: 'mnu-control-rich',
|
||||||
value: Asc.c_oAscSdtLevelType.Block
|
value: 'rich'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
caption: this.textPictureControl,
|
||||||
|
// iconCls: 'mnu-control-rich',
|
||||||
|
value: 'picture'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
caption: this.textComboboxControl,
|
||||||
|
// iconCls: 'mnu-control-rich',
|
||||||
|
value: 'combobox'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
caption: this.textDropdownControl,
|
||||||
|
// iconCls: 'mnu-control-rich',
|
||||||
|
value: 'dropdown'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
caption: this.textDateControl,
|
||||||
|
// iconCls: 'mnu-control-rich',
|
||||||
|
value: 'date'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
caption: this.textCheckboxControl,
|
||||||
|
// iconCls: 'mnu-control-rich',
|
||||||
|
value: 'checkbox'
|
||||||
},
|
},
|
||||||
{caption: '--'},
|
{caption: '--'},
|
||||||
{
|
{
|
||||||
caption: this.textRemoveControl,
|
caption: this.textRemoveControl,
|
||||||
iconCls: 'mnu-control-remove',
|
// iconCls: 'mnu-control-remove',
|
||||||
value: 'remove'
|
value: 'remove'
|
||||||
},
|
},
|
||||||
{caption: '--'},
|
{caption: '--'},
|
||||||
|
@ -677,7 +704,7 @@ define([
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
this.paragraphControls.push(this.btnContentControls);
|
// this.paragraphControls.push(this.btnContentControls);
|
||||||
|
|
||||||
this.btnColumns = new Common.UI.Button({
|
this.btnColumns = new Common.UI.Button({
|
||||||
id: 'tlbtn-columns',
|
id: 'tlbtn-columns',
|
||||||
|
@ -1928,8 +1955,7 @@ define([
|
||||||
|
|
||||||
this.btnMailRecepients.setVisible(mode.canCoAuthoring == true && mode.canUseMailMerge);
|
this.btnMailRecepients.setVisible(mode.canCoAuthoring == true && mode.canUseMailMerge);
|
||||||
this.listStylesAdditionalMenuItem.setVisible(mode.canEditStyles);
|
this.listStylesAdditionalMenuItem.setVisible(mode.canEditStyles);
|
||||||
this.btnContentControls.menu.items[4].setVisible(mode.canEditContentControl);
|
this.btnContentControls.menu.items[10].setVisible(mode.canEditContentControl);
|
||||||
this.btnContentControls.menu.items[5].setVisible(mode.canEditContentControl);
|
|
||||||
this.mnuInsertImage.items[2].setVisible(this.mode.canRequestInsertImage || this.mode.fileChoiceUrl && this.mode.fileChoiceUrl.indexOf("{documentType}")>-1);
|
this.mnuInsertImage.items[2].setVisible(this.mode.canRequestInsertImage || this.mode.fileChoiceUrl && this.mode.fileChoiceUrl.indexOf("{documentType}")>-1);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -2286,9 +2312,16 @@ define([
|
||||||
textEditWatermark: 'Custom Watermark',
|
textEditWatermark: 'Custom Watermark',
|
||||||
textRemWatermark: 'Remove Watermark',
|
textRemWatermark: 'Remove Watermark',
|
||||||
tipWatermark: 'Edit watermark',
|
tipWatermark: 'Edit watermark',
|
||||||
|
textPictureControl: 'Picture',
|
||||||
|
textComboboxControl: 'Combo box',
|
||||||
|
textCheckboxControl: 'Check box',
|
||||||
|
textDropdownControl: 'Drop-down list',
|
||||||
|
textDateControl: 'Date',
|
||||||
capBtnAddComment: 'Add Comment',
|
capBtnAddComment: 'Add Comment',
|
||||||
capBtnInsSymbol: 'Symbol',
|
capBtnInsSymbol: 'Symbol',
|
||||||
tipInsertSymbol: 'Insert symbol'
|
tipInsertSymbol: 'Insert symbol',
|
||||||
|
mniDrawTable: 'Draw table',
|
||||||
|
mniEraseTable: 'Erase table'
|
||||||
}
|
}
|
||||||
})(), DE.Views.Toolbar || {}));
|
})(), DE.Views.Toolbar || {}));
|
||||||
});
|
});
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
background: #f1f1f1;
|
background: #e2e2e2;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,10 +101,10 @@
|
||||||
|
|
||||||
.loadmask > .placeholder {
|
.loadmask > .placeholder {
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
width: 796px;
|
width: 794px;
|
||||||
margin: 46px auto;
|
margin: 46px auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: 1px solid #dfdfdf;
|
border: 1px solid #bebebe;
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -223,10 +223,14 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var params = getUrlParams(),
|
var params = getUrlParams(),
|
||||||
|
compact = params["compact"] == 'true',
|
||||||
view = params["mode"] == 'view';
|
view = params["mode"] == 'view';
|
||||||
|
|
||||||
if (view) {
|
if (compact || view) {
|
||||||
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
||||||
|
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
|
||||||
|
}
|
||||||
|
if (view) {
|
||||||
document.querySelector('.sktoolbar').remove();
|
document.querySelector('.sktoolbar').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
background: #f1f1f1;
|
background: #e2e2e2;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,10 +102,10 @@
|
||||||
|
|
||||||
.loadmask > .placeholder {
|
.loadmask > .placeholder {
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
width: 796px;
|
width: 794px;
|
||||||
margin: 46px auto;
|
margin: 46px auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: 1px solid #dfdfdf;
|
border: 1px solid #bebebe;
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,11 +209,17 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var params = getUrlParams(),
|
var params = getUrlParams(),
|
||||||
|
compact = params["compact"] == 'true',
|
||||||
view = params["mode"] == 'view';
|
view = params["mode"] == 'view';
|
||||||
if (view) {
|
|
||||||
|
if (compact || view) {
|
||||||
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
||||||
|
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
|
||||||
|
}
|
||||||
|
if (view) {
|
||||||
document.querySelector('.sktoolbar').remove();
|
document.querySelector('.sktoolbar').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stopLoading) {
|
if (stopLoading) {
|
||||||
document.body.removeChild(document.getElementById('loading-mask'));
|
document.body.removeChild(document.getElementById('loading-mask'));
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -69,6 +69,15 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Промяна на разделите",
|
"Common.Controllers.ReviewChanges.textTabs": "Промяна на разделите",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Подчертавам",
|
"Common.Controllers.ReviewChanges.textUnderline": "Подчертавам",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Управление на вдовицата",
|
"Common.Controllers.ReviewChanges.textWidow": "Управление на вдовицата",
|
||||||
|
"Common.define.chartData.textArea": "Площ",
|
||||||
|
"Common.define.chartData.textBar": "Бар",
|
||||||
|
"Common.define.chartData.textColumn": "Колона",
|
||||||
|
"Common.define.chartData.textLine": "Линия",
|
||||||
|
"Common.define.chartData.textPie": "Кръгова",
|
||||||
|
"Common.define.chartData.textPoint": "XY (точкова)",
|
||||||
|
"Common.define.chartData.textStock": "Борсова",
|
||||||
|
"Common.define.chartData.textSurface": "Повърхност",
|
||||||
|
"Common.define.chartData.textCharts": "Диаграми",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
|
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
|
||||||
|
@ -1000,20 +1009,12 @@
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Отбелязани",
|
"DE.Views.BookmarksDialog.textTitle": "Отбелязани",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Името на отметката може да съдържа само букви, цифри и долни черти и трябва да започва с буквата",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Името на отметката може да съдържа само букви, цифри и долни черти и трябва да започва с буквата",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Показване на разширените настройки",
|
"DE.Views.ChartSettings.textAdvanced": "Показване на разширените настройки",
|
||||||
"DE.Views.ChartSettings.textArea": "Площ",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Бар",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Промяна на типа на диаграмата",
|
"DE.Views.ChartSettings.textChartType": "Промяна на типа на диаграмата",
|
||||||
"DE.Views.ChartSettings.textColumn": "Колона",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Редактиране на данни",
|
"DE.Views.ChartSettings.textEditData": "Редактиране на данни",
|
||||||
"DE.Views.ChartSettings.textHeight": "Височина",
|
"DE.Views.ChartSettings.textHeight": "Височина",
|
||||||
"DE.Views.ChartSettings.textLine": "Линия",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Размер по подразбиране",
|
"DE.Views.ChartSettings.textOriginalSize": "Размер по подразбиране",
|
||||||
"DE.Views.ChartSettings.textPie": "Кръгова",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (точкова)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Размер",
|
"DE.Views.ChartSettings.textSize": "Размер",
|
||||||
"DE.Views.ChartSettings.textStock": "Борсова",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Стил",
|
"DE.Views.ChartSettings.textStyle": "Стил",
|
||||||
"DE.Views.ChartSettings.textSurface": "Повърхност",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Откачете от панела",
|
"DE.Views.ChartSettings.textUndock": "Откачете от панела",
|
||||||
"DE.Views.ChartSettings.textWidth": "Ширина",
|
"DE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"DE.Views.ChartSettings.textWrap": "Стил на опаковане",
|
"DE.Views.ChartSettings.textWrap": "Стил на опаковане",
|
||||||
|
@ -1994,13 +1995,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Изображение от хранилището",
|
"DE.Views.Toolbar.mniImageFromStorage": "Изображение от хранилището",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Изображение от URL адрес",
|
"DE.Views.Toolbar.mniImageFromUrl": "Изображение от URL адрес",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Без попълване",
|
"DE.Views.Toolbar.strMenuNoFill": "Без попълване",
|
||||||
"DE.Views.Toolbar.textArea": "Площ",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Автоматичен",
|
"DE.Views.Toolbar.textAutoColor": "Автоматичен",
|
||||||
"DE.Views.Toolbar.textBar": "Бар",
|
|
||||||
"DE.Views.Toolbar.textBold": "Получер",
|
"DE.Views.Toolbar.textBold": "Получер",
|
||||||
"DE.Views.Toolbar.textBottom": "Долу:",
|
"DE.Views.Toolbar.textBottom": "Долу:",
|
||||||
"DE.Views.Toolbar.textCharts": "Диаграми",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Колона",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Персонализирани графи",
|
"DE.Views.Toolbar.textColumnsCustom": "Персонализирани графи",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Наляво",
|
"DE.Views.Toolbar.textColumnsLeft": "Наляво",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Един",
|
"DE.Views.Toolbar.textColumnsOne": "Един",
|
||||||
|
@ -2019,7 +2016,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Курсив",
|
"DE.Views.Toolbar.textItalic": "Курсив",
|
||||||
"DE.Views.Toolbar.textLandscape": "Пейзаж",
|
"DE.Views.Toolbar.textLandscape": "Пейзаж",
|
||||||
"DE.Views.Toolbar.textLeft": "Наляво: ",
|
"DE.Views.Toolbar.textLeft": "Наляво: ",
|
||||||
"DE.Views.Toolbar.textLine": "Линия",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Последно персонализирано",
|
"DE.Views.Toolbar.textMarginsLast": "Последно персонализирано",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Умерен",
|
"DE.Views.Toolbar.textMarginsModerate": "Умерен",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Тесен",
|
"DE.Views.Toolbar.textMarginsNarrow": "Тесен",
|
||||||
|
@ -2033,14 +2029,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Нечетна страница",
|
"DE.Views.Toolbar.textOddPage": "Нечетна страница",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Персонализирани полета",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Персонализирани полета",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Персонализиран размер на страницата",
|
"DE.Views.Toolbar.textPageSizeCustom": "Персонализиран размер на страницата",
|
||||||
"DE.Views.Toolbar.textPie": "Кръгова",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Вмъкване на контрол на съдържанието в обикновен текст",
|
"DE.Views.Toolbar.textPlainControl": "Вмъкване на контрол на съдържанието в обикновен текст",
|
||||||
"DE.Views.Toolbar.textPoint": "XY (точкова)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Портрет",
|
"DE.Views.Toolbar.textPortrait": "Портрет",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Премахване на контрола на съдържанието",
|
"DE.Views.Toolbar.textRemoveControl": "Премахване на контрола на съдържанието",
|
||||||
"DE.Views.Toolbar.textRichControl": "Вмъкване на контрол върху съдържанието на богатия текст",
|
"DE.Views.Toolbar.textRichControl": "Вмъкване на контрол върху съдържанието на богатия текст",
|
||||||
"DE.Views.Toolbar.textRight": "Дясно: ",
|
"DE.Views.Toolbar.textRight": "Дясно: ",
|
||||||
"DE.Views.Toolbar.textStock": "Борсова",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Зачеркнато",
|
"DE.Views.Toolbar.textStrikeout": "Зачеркнато",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Изтриване на стил",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Изтриване на стил",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Изтрийте всички персонализирани стилове",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Изтрийте всички персонализирани стилове",
|
||||||
|
@ -2050,7 +2043,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Актуализация от избора",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Актуализация от избора",
|
||||||
"DE.Views.Toolbar.textSubscript": "Долен",
|
"DE.Views.Toolbar.textSubscript": "Долен",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Горен индекс",
|
"DE.Views.Toolbar.textSuperscript": "Горен индекс",
|
||||||
"DE.Views.Toolbar.textSurface": "Повърхност",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Сътрудничество",
|
"DE.Views.Toolbar.textTabCollaboration": "Сътрудничество",
|
||||||
"DE.Views.Toolbar.textTabFile": "Файл",
|
"DE.Views.Toolbar.textTabFile": "Файл",
|
||||||
"DE.Views.Toolbar.textTabHome": "У дома",
|
"DE.Views.Toolbar.textTabHome": "У дома",
|
||||||
|
|
|
@ -63,6 +63,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
|
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Podtržené",
|
"Common.Controllers.ReviewChanges.textUnderline": "Podtržené",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
|
"Common.define.chartData.textArea": "Plošný graf",
|
||||||
|
"Common.define.chartData.textBar": "Pruhový graf",
|
||||||
|
"Common.define.chartData.textColumn": "Sloupcový graf",
|
||||||
|
"Common.define.chartData.textLine": "Liniový graf",
|
||||||
|
"Common.define.chartData.textPie": "Kruhový diagram",
|
||||||
|
"Common.define.chartData.textPoint": "Bodový graf",
|
||||||
|
"Common.define.chartData.textStock": "Burzovní graf",
|
||||||
|
"Common.define.chartData.textSurface": "Povrch",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
|
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
|
||||||
|
@ -689,20 +697,12 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Ksí",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Ksí",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilé nastavení",
|
"DE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilé nastavení",
|
||||||
"DE.Views.ChartSettings.textArea": "Plošný graf",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Pruhový graf",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Změnit typ grafu",
|
"DE.Views.ChartSettings.textChartType": "Změnit typ grafu",
|
||||||
"DE.Views.ChartSettings.textColumn": "Sloupcový graf",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Upravit data",
|
"DE.Views.ChartSettings.textEditData": "Upravit data",
|
||||||
"DE.Views.ChartSettings.textHeight": "Výška",
|
"DE.Views.ChartSettings.textHeight": "Výška",
|
||||||
"DE.Views.ChartSettings.textLine": "Liniový graf",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Výchozí velikost",
|
"DE.Views.ChartSettings.textOriginalSize": "Výchozí velikost",
|
||||||
"DE.Views.ChartSettings.textPie": "Kruhový diagram",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Bodový graf",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Velikost",
|
"DE.Views.ChartSettings.textSize": "Velikost",
|
||||||
"DE.Views.ChartSettings.textStock": "Burzovní graf",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Styl",
|
"DE.Views.ChartSettings.textStyle": "Styl",
|
||||||
"DE.Views.ChartSettings.textSurface": "Povrch",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Odepnout od panelu",
|
"DE.Views.ChartSettings.textUndock": "Odepnout od panelu",
|
||||||
"DE.Views.ChartSettings.textWidth": "Šířka",
|
"DE.Views.ChartSettings.textWidth": "Šířka",
|
||||||
"DE.Views.ChartSettings.textWrap": "Obtékání textu",
|
"DE.Views.ChartSettings.textWrap": "Obtékání textu",
|
||||||
|
@ -1495,13 +1495,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru",
|
"DE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Obrázek z adresy URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Obrázek z adresy URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Bez výplně",
|
"DE.Views.Toolbar.strMenuNoFill": "Bez výplně",
|
||||||
"DE.Views.Toolbar.textArea": "Plošný graf",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automaticky",
|
"DE.Views.Toolbar.textAutoColor": "Automaticky",
|
||||||
"DE.Views.Toolbar.textBar": "Pruhový graf",
|
|
||||||
"DE.Views.Toolbar.textBold": "Tučné",
|
"DE.Views.Toolbar.textBold": "Tučné",
|
||||||
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
||||||
"DE.Views.Toolbar.textCharts": "Grafy",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Sloupcový graf",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Vlastní sloupce",
|
"DE.Views.Toolbar.textColumnsCustom": "Vlastní sloupce",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "One",
|
"DE.Views.Toolbar.textColumnsOne": "One",
|
||||||
|
@ -1520,7 +1516,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Kurzíva",
|
"DE.Views.Toolbar.textItalic": "Kurzíva",
|
||||||
"DE.Views.Toolbar.textLandscape": "Na šířku",
|
"DE.Views.Toolbar.textLandscape": "Na šířku",
|
||||||
"DE.Views.Toolbar.textLeft": "Left: ",
|
"DE.Views.Toolbar.textLeft": "Left: ",
|
||||||
"DE.Views.Toolbar.textLine": "Liniový graf",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
||||||
|
@ -1533,11 +1528,8 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Lichá stránka",
|
"DE.Views.Toolbar.textOddPage": "Lichá stránka",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
||||||
"DE.Views.Toolbar.textPie": "Kruhový diagram",
|
|
||||||
"DE.Views.Toolbar.textPoint": "Bodový graf",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Na výšku",
|
"DE.Views.Toolbar.textPortrait": "Na výšku",
|
||||||
"DE.Views.Toolbar.textRight": "Right: ",
|
"DE.Views.Toolbar.textRight": "Right: ",
|
||||||
"DE.Views.Toolbar.textStock": "Burzovní graf",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Přeškrtnout",
|
"DE.Views.Toolbar.textStrikeout": "Přeškrtnout",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Odstranit styl",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Odstranit styl",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Odstranit všechny vlastní styly",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Odstranit všechny vlastní styly",
|
||||||
|
@ -1547,7 +1539,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizovat z výběru",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizovat z výběru",
|
||||||
"DE.Views.Toolbar.textSubscript": "Dolní index",
|
"DE.Views.Toolbar.textSubscript": "Dolní index",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Horní index",
|
"DE.Views.Toolbar.textSuperscript": "Horní index",
|
||||||
"DE.Views.Toolbar.textSurface": "Povrch",
|
|
||||||
"DE.Views.Toolbar.textTabFile": "Soubor",
|
"DE.Views.Toolbar.textTabFile": "Soubor",
|
||||||
"DE.Views.Toolbar.textTabHome": "Domů",
|
"DE.Views.Toolbar.textTabHome": "Domů",
|
||||||
"DE.Views.Toolbar.textTabInsert": "Vložit",
|
"DE.Views.Toolbar.textTabInsert": "Vložit",
|
||||||
|
|
|
@ -1995,13 +1995,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Bild aus dem Speicher",
|
"DE.Views.Toolbar.mniImageFromStorage": "Bild aus dem Speicher",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Bild aus URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Bild aus URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Keine Füllung",
|
"DE.Views.Toolbar.strMenuNoFill": "Keine Füllung",
|
||||||
"DE.Views.Toolbar.textArea": "Fläche",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatisch",
|
"DE.Views.Toolbar.textAutoColor": "Automatisch",
|
||||||
"DE.Views.Toolbar.textBar": "Balken",
|
|
||||||
"DE.Views.Toolbar.textBold": "Fett",
|
"DE.Views.Toolbar.textBold": "Fett",
|
||||||
"DE.Views.Toolbar.textBottom": "Unten: ",
|
"DE.Views.Toolbar.textBottom": "Unten: ",
|
||||||
"DE.Views.Toolbar.textCharts": "Diagramme",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Spalte",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Benutzerdefinierte Spalten",
|
"DE.Views.Toolbar.textColumnsCustom": "Benutzerdefinierte Spalten",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Links",
|
"DE.Views.Toolbar.textColumnsLeft": "Links",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Ein",
|
"DE.Views.Toolbar.textColumnsOne": "Ein",
|
||||||
|
@ -2020,7 +2016,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Kursiv",
|
"DE.Views.Toolbar.textItalic": "Kursiv",
|
||||||
"DE.Views.Toolbar.textLandscape": "Querformat",
|
"DE.Views.Toolbar.textLandscape": "Querformat",
|
||||||
"DE.Views.Toolbar.textLeft": "Links: ",
|
"DE.Views.Toolbar.textLeft": "Links: ",
|
||||||
"DE.Views.Toolbar.textLine": "Linie",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": " Benutzerdefiniert als letzte",
|
"DE.Views.Toolbar.textMarginsLast": " Benutzerdefiniert als letzte",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Mittelmäßig",
|
"DE.Views.Toolbar.textMarginsModerate": "Mittelmäßig",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Schmal",
|
"DE.Views.Toolbar.textMarginsNarrow": "Schmal",
|
||||||
|
@ -2034,14 +2029,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Ungerade Seite",
|
"DE.Views.Toolbar.textOddPage": "Ungerade Seite",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Benutzerdefinierte Seitenränder ",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Benutzerdefinierte Seitenränder ",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Benutzerdefiniertes Seitenformat",
|
"DE.Views.Toolbar.textPageSizeCustom": "Benutzerdefiniertes Seitenformat",
|
||||||
"DE.Views.Toolbar.textPie": "Kreis",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Nur-Text-Inhaltssteuerelement einfügen",
|
"DE.Views.Toolbar.textPlainControl": "Nur-Text-Inhaltssteuerelement einfügen",
|
||||||
"DE.Views.Toolbar.textPoint": "Punkt (XY)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Hochformat",
|
"DE.Views.Toolbar.textPortrait": "Hochformat",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Inhaltssteuerelement entfernen",
|
"DE.Views.Toolbar.textRemoveControl": "Inhaltssteuerelement entfernen",
|
||||||
"DE.Views.Toolbar.textRichControl": "Rich-Text-Inhaltssteuerelement einfügen",
|
"DE.Views.Toolbar.textRichControl": "Rich-Text-Inhaltssteuerelement einfügen",
|
||||||
"DE.Views.Toolbar.textRight": "Rechts: ",
|
"DE.Views.Toolbar.textRight": "Rechts: ",
|
||||||
"DE.Views.Toolbar.textStock": "Kurs",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Durchgestrichen",
|
"DE.Views.Toolbar.textStrikeout": "Durchgestrichen",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Stil löschen",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Stil löschen",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Alle benutzerdefinierte Stile löschen ",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Alle benutzerdefinierte Stile löschen ",
|
||||||
|
@ -2051,7 +2043,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Aus der Auswahl neu aktualisieren",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Aus der Auswahl neu aktualisieren",
|
||||||
"DE.Views.Toolbar.textSubscript": "Tiefgestellt",
|
"DE.Views.Toolbar.textSubscript": "Tiefgestellt",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Hochgestellt",
|
"DE.Views.Toolbar.textSuperscript": "Hochgestellt",
|
||||||
"DE.Views.Toolbar.textSurface": "Oberfläche",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Zusammenarbeit",
|
"DE.Views.Toolbar.textTabCollaboration": "Zusammenarbeit",
|
||||||
"DE.Views.Toolbar.textTabFile": "Datei",
|
"DE.Views.Toolbar.textTabFile": "Datei",
|
||||||
"DE.Views.Toolbar.textTabHome": "Startseite",
|
"DE.Views.Toolbar.textTabHome": "Startseite",
|
||||||
|
|
|
@ -111,6 +111,39 @@
|
||||||
"Common.UI.Window.textInformation": "Information",
|
"Common.UI.Window.textInformation": "Information",
|
||||||
"Common.UI.Window.textWarning": "Warning",
|
"Common.UI.Window.textWarning": "Warning",
|
||||||
"Common.UI.Window.yesButtonText": "Yes",
|
"Common.UI.Window.yesButtonText": "Yes",
|
||||||
|
"Common.UI.Calendar.textJanuary": "January",
|
||||||
|
"Common.UI.Calendar.textFebruary": "February",
|
||||||
|
"Common.UI.Calendar.textMarch": "March",
|
||||||
|
"Common.UI.Calendar.textApril": "April",
|
||||||
|
"Common.UI.Calendar.textMay": "May",
|
||||||
|
"Common.UI.Calendar.textJune": "June",
|
||||||
|
"Common.UI.Calendar.textJuly": "July",
|
||||||
|
"Common.UI.Calendar.textAugust": "August",
|
||||||
|
"Common.UI.Calendar.textSeptember": "September",
|
||||||
|
"Common.UI.Calendar.textOctober": "October",
|
||||||
|
"Common.UI.Calendar.textNovember": "November",
|
||||||
|
"Common.UI.Calendar.textDecember": "December",
|
||||||
|
"Common.UI.Calendar.textShortJanuary": "Jan",
|
||||||
|
"Common.UI.Calendar.textShortFebruary": "Feb",
|
||||||
|
"Common.UI.Calendar.textShortMarch": "Mar",
|
||||||
|
"Common.UI.Calendar.textShortApril": "Apr",
|
||||||
|
"Common.UI.Calendar.textShortMay": "May",
|
||||||
|
"Common.UI.Calendar.textShortJune": "Jun",
|
||||||
|
"Common.UI.Calendar.textShortJuly": "Jul",
|
||||||
|
"Common.UI.Calendar.textShortAugust": "Aug",
|
||||||
|
"Common.UI.Calendar.textShortSeptember": "Sep",
|
||||||
|
"Common.UI.Calendar.textShortOctober": "Oct",
|
||||||
|
"Common.UI.Calendar.textShortNovember": "Nov",
|
||||||
|
"Common.UI.Calendar.textShortDecember": "Dec",
|
||||||
|
"Common.UI.Calendar.textShortSunday": "Su",
|
||||||
|
"Common.UI.Calendar.textShortMonday": "Mo",
|
||||||
|
"Common.UI.Calendar.textShortTuesday": "Tu",
|
||||||
|
"Common.UI.Calendar.textShortWednesday": "We",
|
||||||
|
"Common.UI.Calendar.textShortThursday": "Th",
|
||||||
|
"Common.UI.Calendar.textShortFriday": "Fr",
|
||||||
|
"Common.UI.Calendar.textShortSaturday": "Sa",
|
||||||
|
"Common.UI.Calendar.textMonths": "Months",
|
||||||
|
"Common.UI.Calendar.textYears": "Years",
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
"Common.Views.About.txtAddress": "address: ",
|
"Common.Views.About.txtAddress": "address: ",
|
||||||
|
@ -230,6 +263,8 @@
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
|
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Show version history",
|
"Common.Views.ReviewChanges.tipHistory": "Show version history",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Track changes",
|
"Common.Views.ReviewChanges.tipReview": "Track changes",
|
||||||
|
@ -244,6 +279,11 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Chat",
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Close",
|
"Common.Views.ReviewChanges.txtClose": "Close",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Remove",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Language",
|
"Common.Views.ReviewChanges.txtDocLang": "Language",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)",
|
"Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
||||||
|
@ -262,13 +302,6 @@
|
||||||
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
|
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
|
||||||
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
|
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
|
||||||
"Common.Views.ReviewChanges.txtView": "Display Mode",
|
"Common.Views.ReviewChanges.txtView": "Display Mode",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemove": "Remove",
|
|
||||||
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments",
|
|
||||||
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments",
|
|
||||||
"Common.Views.ReviewChangesDialog.textTitle": "Review Changes",
|
"Common.Views.ReviewChangesDialog.textTitle": "Review Changes",
|
||||||
"Common.Views.ReviewChangesDialog.txtAccept": "Accept",
|
"Common.Views.ReviewChangesDialog.txtAccept": "Accept",
|
||||||
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes",
|
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes",
|
||||||
|
@ -315,11 +348,11 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
|
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
|
"Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
|
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
|
||||||
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
|
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
|
||||||
"Common.Views.SymbolTableDialog.textFont": "Font",
|
"Common.Views.SymbolTableDialog.textFont": "Font",
|
||||||
"Common.Views.SymbolTableDialog.textRange": "Range",
|
"Common.Views.SymbolTableDialog.textRange": "Range",
|
||||||
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
|
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
|
||||||
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
|
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
"DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
|
||||||
|
@ -369,6 +402,7 @@
|
||||||
"DE.Controllers.Main.errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
|
"DE.Controllers.Main.errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
"DE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
"DE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||||
|
@ -671,7 +705,6 @@
|
||||||
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||||
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
||||||
|
@ -686,6 +719,7 @@
|
||||||
"DE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 100",
|
"DE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 100",
|
||||||
"DE.Controllers.Toolbar.textFraction": "Fractions",
|
"DE.Controllers.Toolbar.textFraction": "Fractions",
|
||||||
"DE.Controllers.Toolbar.textFunction": "Functions",
|
"DE.Controllers.Toolbar.textFunction": "Functions",
|
||||||
|
"DE.Controllers.Toolbar.textInsert": "Insert",
|
||||||
"DE.Controllers.Toolbar.textIntegral": "Integrals",
|
"DE.Controllers.Toolbar.textIntegral": "Integrals",
|
||||||
"DE.Controllers.Toolbar.textLargeOperator": "Large Operators",
|
"DE.Controllers.Toolbar.textLargeOperator": "Large Operators",
|
||||||
"DE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
|
"DE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
|
||||||
|
@ -1013,7 +1047,6 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
|
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"DE.Controllers.Toolbar.textInsert": "Insert",
|
|
||||||
"DE.Controllers.Viewport.textFitPage": "Fit to Page",
|
"DE.Controllers.Viewport.textFitPage": "Fit to Page",
|
||||||
"DE.Controllers.Viewport.textFitWidth": "Fit to Width",
|
"DE.Controllers.Viewport.textFitWidth": "Fit to Width",
|
||||||
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Label:",
|
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Label:",
|
||||||
|
@ -1065,20 +1098,12 @@
|
||||||
"DE.Views.CellsRemoveDialog.textRow": "Delete entire row",
|
"DE.Views.CellsRemoveDialog.textRow": "Delete entire row",
|
||||||
"DE.Views.CellsRemoveDialog.textTitle": "Delete Cells",
|
"DE.Views.CellsRemoveDialog.textTitle": "Delete Cells",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||||
"del_DE.Views.ChartSettings.textArea": "Area",
|
|
||||||
"del_DE.Views.ChartSettings.textBar": "Bar",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Change Chart Type",
|
"DE.Views.ChartSettings.textChartType": "Change Chart Type",
|
||||||
"del_DE.Views.ChartSettings.textColumn": "Column",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Edit Data",
|
"DE.Views.ChartSettings.textEditData": "Edit Data",
|
||||||
"DE.Views.ChartSettings.textHeight": "Height",
|
"DE.Views.ChartSettings.textHeight": "Height",
|
||||||
"del_DE.Views.ChartSettings.textLine": "Line",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Actual Size",
|
"DE.Views.ChartSettings.textOriginalSize": "Actual Size",
|
||||||
"del_DE.Views.ChartSettings.textPie": "Pie",
|
|
||||||
"del_DE.Views.ChartSettings.textPoint": "XY (Scatter)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Size",
|
"DE.Views.ChartSettings.textSize": "Size",
|
||||||
"del_DE.Views.ChartSettings.textStock": "Stock",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Style",
|
"DE.Views.ChartSettings.textStyle": "Style",
|
||||||
"del_DE.Views.ChartSettings.textSurface": "Surface",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Undock from panel",
|
"DE.Views.ChartSettings.textUndock": "Undock from panel",
|
||||||
"DE.Views.ChartSettings.textWidth": "Width",
|
"DE.Views.ChartSettings.textWidth": "Width",
|
||||||
"DE.Views.ChartSettings.textWrap": "Wrapping Style",
|
"DE.Views.ChartSettings.textWrap": "Wrapping Style",
|
||||||
|
@ -1104,6 +1129,22 @@
|
||||||
"DE.Views.ControlSettingsDialog.textTitle": "Content Control Settings",
|
"DE.Views.ControlSettingsDialog.textTitle": "Content Control Settings",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
|
||||||
|
"DE.Views.ControlSettingsDialog.strGeneral": "General",
|
||||||
|
"DE.Views.ControlSettingsDialog.textAdd": "Add",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChange": "Edit",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDelete": "Delete",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUp": "Up",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDown": "Down",
|
||||||
|
"DE.Views.ControlSettingsDialog.textCombobox": "Combo box",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDropDown": "Drop-down list",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDisplayName": "Display name",
|
||||||
|
"DE.Views.ControlSettingsDialog.textValue": "Value",
|
||||||
|
"DE.Views.ControlSettingsDialog.textDate": "Date format",
|
||||||
|
"DE.Views.ControlSettingsDialog.textLang": "Language",
|
||||||
|
"DE.Views.ControlSettingsDialog.textFormat": "Display the date like this",
|
||||||
|
"DE.Views.ControlSettingsDialog.textCheckbox": "Check box",
|
||||||
|
"DE.Views.ControlSettingsDialog.textChecked": "Checked symbol",
|
||||||
|
"DE.Views.ControlSettingsDialog.textUnchecked": "Unchecked symbol",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
||||||
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
|
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
|
||||||
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
|
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
|
||||||
|
@ -1362,6 +1403,10 @@
|
||||||
"DE.Views.DropcapSettingsAdvanced.textWidth": "Width",
|
"DE.Views.DropcapSettingsAdvanced.textWidth": "Width",
|
||||||
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Font",
|
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Font",
|
||||||
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "No borders",
|
"DE.Views.DropcapSettingsAdvanced.txtNoBorders": "No borders",
|
||||||
|
"DE.Views.EditListItemDialog.textDisplayName": "Display name",
|
||||||
|
"DE.Views.EditListItemDialog.textValue": "Value",
|
||||||
|
"DE.Views.EditListItemDialog.textNameError": "Display name must not be empty.",
|
||||||
|
"DE.Views.EditListItemDialog.textValueError": "An item with the same value already exists.",
|
||||||
"DE.Views.FileMenu.btnBackCaption": "Open file location",
|
"DE.Views.FileMenu.btnBackCaption": "Open file location",
|
||||||
"DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
|
"DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
|
||||||
"DE.Views.FileMenu.btnCreateNewCaption": "Create New",
|
"DE.Views.FileMenu.btnCreateNewCaption": "Create New",
|
||||||
|
@ -2084,6 +2129,7 @@
|
||||||
"DE.Views.Toolbar.capBtnInsImage": "Image",
|
"DE.Views.Toolbar.capBtnInsImage": "Image",
|
||||||
"DE.Views.Toolbar.capBtnInsPagebreak": "Breaks",
|
"DE.Views.Toolbar.capBtnInsPagebreak": "Breaks",
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "Shape",
|
"DE.Views.Toolbar.capBtnInsShape": "Shape",
|
||||||
|
"DE.Views.Toolbar.capBtnInsSymbol": "Symbol",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "Table",
|
"DE.Views.Toolbar.capBtnInsTable": "Table",
|
||||||
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
|
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
|
||||||
"DE.Views.Toolbar.capBtnInsTextbox": "Text Box",
|
"DE.Views.Toolbar.capBtnInsTextbox": "Text Box",
|
||||||
|
@ -2108,13 +2154,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Image from Storage",
|
"DE.Views.Toolbar.mniImageFromStorage": "Image from Storage",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Image from URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Image from URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "No Fill",
|
"DE.Views.Toolbar.strMenuNoFill": "No Fill",
|
||||||
"del_DE.Views.Toolbar.textArea": "Area",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatic",
|
"DE.Views.Toolbar.textAutoColor": "Automatic",
|
||||||
"del_DE.Views.Toolbar.textBar": "Bar",
|
|
||||||
"DE.Views.Toolbar.textBold": "Bold",
|
"DE.Views.Toolbar.textBold": "Bold",
|
||||||
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
||||||
"del_DE.Views.Toolbar.textCharts": "Charts",
|
|
||||||
"del_DE.Views.Toolbar.textColumn": "Column",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
|
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "One",
|
"DE.Views.Toolbar.textColumnsOne": "One",
|
||||||
|
@ -2134,7 +2176,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Italic",
|
"DE.Views.Toolbar.textItalic": "Italic",
|
||||||
"DE.Views.Toolbar.textLandscape": "Landscape",
|
"DE.Views.Toolbar.textLandscape": "Landscape",
|
||||||
"DE.Views.Toolbar.textLeft": "Left: ",
|
"DE.Views.Toolbar.textLeft": "Left: ",
|
||||||
"del_DE.Views.Toolbar.textLine": "Line",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
||||||
|
@ -2148,15 +2189,12 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Odd Page",
|
"DE.Views.Toolbar.textOddPage": "Odd Page",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
||||||
"del_DE.Views.Toolbar.textPie": "Pie",
|
"DE.Views.Toolbar.textPlainControl": "Plain text",
|
||||||
"DE.Views.Toolbar.textPlainControl": "Insert plain text content control",
|
|
||||||
"del_DE.Views.Toolbar.textPoint": "XY (Scatter)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Portrait",
|
"DE.Views.Toolbar.textPortrait": "Portrait",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Remove content control",
|
"DE.Views.Toolbar.textRemoveControl": "Remove content control",
|
||||||
"DE.Views.Toolbar.textRemWatermark": "Remove Watermark",
|
"DE.Views.Toolbar.textRemWatermark": "Remove Watermark",
|
||||||
"DE.Views.Toolbar.textRichControl": "Insert rich text content control",
|
"DE.Views.Toolbar.textRichControl": "Rich text",
|
||||||
"DE.Views.Toolbar.textRight": "Right: ",
|
"DE.Views.Toolbar.textRight": "Right: ",
|
||||||
"del_DE.Views.Toolbar.textStock": "Stock",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Strikethrough",
|
"DE.Views.Toolbar.textStrikeout": "Strikethrough",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
||||||
|
@ -2166,7 +2204,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
|
||||||
"DE.Views.Toolbar.textSubscript": "Subscript",
|
"DE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"del_DE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
"DE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
||||||
"DE.Views.Toolbar.textTabFile": "File",
|
"DE.Views.Toolbar.textTabFile": "File",
|
||||||
"DE.Views.Toolbar.textTabHome": "Home",
|
"DE.Views.Toolbar.textTabHome": "Home",
|
||||||
|
@ -2211,6 +2248,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertImage": "Insert image",
|
"DE.Views.Toolbar.tipInsertImage": "Insert image",
|
||||||
"DE.Views.Toolbar.tipInsertNum": "Insert Page Number",
|
"DE.Views.Toolbar.tipInsertNum": "Insert Page Number",
|
||||||
"DE.Views.Toolbar.tipInsertShape": "Insert autoshape",
|
"DE.Views.Toolbar.tipInsertShape": "Insert autoshape",
|
||||||
|
"DE.Views.Toolbar.tipInsertSymbol": "Insert symbol",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "Insert table",
|
"DE.Views.Toolbar.tipInsertTable": "Insert table",
|
||||||
"DE.Views.Toolbar.tipInsertText": "Insert text box",
|
"DE.Views.Toolbar.tipInsertText": "Insert text box",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "Insert Text Art",
|
"DE.Views.Toolbar.tipInsertTextArt": "Insert Text Art",
|
||||||
|
@ -2262,8 +2300,13 @@
|
||||||
"DE.Views.Toolbar.txtScheme7": "Equity",
|
"DE.Views.Toolbar.txtScheme7": "Equity",
|
||||||
"DE.Views.Toolbar.txtScheme8": "Flow",
|
"DE.Views.Toolbar.txtScheme8": "Flow",
|
||||||
"DE.Views.Toolbar.txtScheme9": "Foundry",
|
"DE.Views.Toolbar.txtScheme9": "Foundry",
|
||||||
"DE.Views.Toolbar.capBtnInsSymbol": "Symbol",
|
"DE.Views.Toolbar.textPictureControl": "Picture",
|
||||||
"DE.Views.Toolbar.tipInsertSymbol": "Insert symbol",
|
"DE.Views.Toolbar.textComboboxControl": "Combo box",
|
||||||
|
"DE.Views.Toolbar.textCheckboxControl": "Check box",
|
||||||
|
"DE.Views.Toolbar.textDropdownControl": "Drop-down list",
|
||||||
|
"DE.Views.Toolbar.textDateControl": "Date",
|
||||||
|
"DE.Views.Toolbar.mniDrawTable": "Draw table",
|
||||||
|
"DE.Views.Toolbar.mniEraseTable": "Erase table",
|
||||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
||||||
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
|
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
|
||||||
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
|
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
|
||||||
|
|
|
@ -69,6 +69,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Cambiar tabuladores",
|
"Common.Controllers.ReviewChanges.textTabs": "Cambiar tabuladores",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Subrayado",
|
"Common.Controllers.ReviewChanges.textUnderline": "Subrayado",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
|
"Common.define.chartData.textArea": "Área",
|
||||||
|
"Common.define.chartData.textBar": "Barra",
|
||||||
|
"Common.define.chartData.textColumn": "Gráfico de columnas",
|
||||||
|
"Common.define.chartData.textLine": "Línea",
|
||||||
|
"Common.define.chartData.textPie": "Gráfico circular",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Dispersión)",
|
||||||
|
"Common.define.chartData.textStock": "De cotizaciones",
|
||||||
|
"Common.define.chartData.textSurface": "Superficie",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
||||||
|
@ -1001,20 +1009,12 @@
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Marcadores",
|
"DE.Views.BookmarksDialog.textTitle": "Marcadores",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Nombre de marcador sólo puede contener letras, dígitos y barras bajas y debe comenzar con la letra",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Nombre de marcador sólo puede contener letras, dígitos y barras bajas y debe comenzar con la letra",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
"DE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
||||||
"DE.Views.ChartSettings.textArea": "Área",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Barra",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
|
"DE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
|
||||||
"DE.Views.ChartSettings.textColumn": "Gráfico de columnas",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Editar datos",
|
"DE.Views.ChartSettings.textEditData": "Editar datos",
|
||||||
"DE.Views.ChartSettings.textHeight": "Altura",
|
"DE.Views.ChartSettings.textHeight": "Altura",
|
||||||
"DE.Views.ChartSettings.textLine": "Línea",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Tamaño Predeterminado",
|
"DE.Views.ChartSettings.textOriginalSize": "Tamaño Predeterminado",
|
||||||
"DE.Views.ChartSettings.textPie": "Gráfico circular",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (Dispersión)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Tamaño",
|
"DE.Views.ChartSettings.textSize": "Tamaño",
|
||||||
"DE.Views.ChartSettings.textStock": "De cotizaciones",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Estilo",
|
"DE.Views.ChartSettings.textStyle": "Estilo",
|
||||||
"DE.Views.ChartSettings.textSurface": "Superficie",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Desacoplar de panel",
|
"DE.Views.ChartSettings.textUndock": "Desacoplar de panel",
|
||||||
"DE.Views.ChartSettings.textWidth": "Ancho",
|
"DE.Views.ChartSettings.textWidth": "Ancho",
|
||||||
"DE.Views.ChartSettings.textWrap": "Ajuste de texto",
|
"DE.Views.ChartSettings.textWrap": "Ajuste de texto",
|
||||||
|
@ -2005,13 +2005,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Imagen de Almacenamiento",
|
"DE.Views.Toolbar.mniImageFromStorage": "Imagen de Almacenamiento",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Imagen de URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Imagen de URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Sin relleno",
|
"DE.Views.Toolbar.strMenuNoFill": "Sin relleno",
|
||||||
"DE.Views.Toolbar.textArea": "Área",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automático",
|
"DE.Views.Toolbar.textAutoColor": "Automático",
|
||||||
"DE.Views.Toolbar.textBar": "Gráfico de barras",
|
|
||||||
"DE.Views.Toolbar.textBold": "Negrita",
|
"DE.Views.Toolbar.textBold": "Negrita",
|
||||||
"DE.Views.Toolbar.textBottom": "Inferior: ",
|
"DE.Views.Toolbar.textBottom": "Inferior: ",
|
||||||
"DE.Views.Toolbar.textCharts": "Gráficos",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Gráfico de columnas",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Columnas personalizadas",
|
"DE.Views.Toolbar.textColumnsCustom": "Columnas personalizadas",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Izquierdo",
|
"DE.Views.Toolbar.textColumnsLeft": "Izquierdo",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Uno",
|
"DE.Views.Toolbar.textColumnsOne": "Uno",
|
||||||
|
@ -2031,7 +2027,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Cursiva",
|
"DE.Views.Toolbar.textItalic": "Cursiva",
|
||||||
"DE.Views.Toolbar.textLandscape": "Horizontal",
|
"DE.Views.Toolbar.textLandscape": "Horizontal",
|
||||||
"DE.Views.Toolbar.textLeft": "Izquierdo: ",
|
"DE.Views.Toolbar.textLeft": "Izquierdo: ",
|
||||||
"DE.Views.Toolbar.textLine": "Gráfico de líneas",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "último personalizado",
|
"DE.Views.Toolbar.textMarginsLast": "último personalizado",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderar",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderar",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Estrecho",
|
"DE.Views.Toolbar.textMarginsNarrow": "Estrecho",
|
||||||
|
@ -2045,15 +2040,12 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Página impar",
|
"DE.Views.Toolbar.textOddPage": "Página impar",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Márgenes personalizados",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Márgenes personalizados",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Tamaño de página personalizado",
|
"DE.Views.Toolbar.textPageSizeCustom": "Tamaño de página personalizado",
|
||||||
"DE.Views.Toolbar.textPie": "Gráfico circular",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Introducir contenido de texto simple",
|
"DE.Views.Toolbar.textPlainControl": "Introducir contenido de texto simple",
|
||||||
"DE.Views.Toolbar.textPoint": "XY (Dispersión)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Vertical",
|
"DE.Views.Toolbar.textPortrait": "Vertical",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Elimine el control de contenido",
|
"DE.Views.Toolbar.textRemoveControl": "Elimine el control de contenido",
|
||||||
"DE.Views.Toolbar.textRemWatermark": "Quitar marca de agua",
|
"DE.Views.Toolbar.textRemWatermark": "Quitar marca de agua",
|
||||||
"DE.Views.Toolbar.textRichControl": "Introducir contenido de texto rico",
|
"DE.Views.Toolbar.textRichControl": "Introducir contenido de texto rico",
|
||||||
"DE.Views.Toolbar.textRight": "Derecho: ",
|
"DE.Views.Toolbar.textRight": "Derecho: ",
|
||||||
"DE.Views.Toolbar.textStock": "De cotizaciones",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Tachado",
|
"DE.Views.Toolbar.textStrikeout": "Tachado",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Eliminar estilo",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Eliminar estilo",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Borrar todos los estilos personalizados",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Borrar todos los estilos personalizados",
|
||||||
|
@ -2063,7 +2055,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Actualizar de la selección",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Actualizar de la selección",
|
||||||
"DE.Views.Toolbar.textSubscript": "Subíndice",
|
"DE.Views.Toolbar.textSubscript": "Subíndice",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Sobreíndice",
|
"DE.Views.Toolbar.textSuperscript": "Sobreíndice",
|
||||||
"DE.Views.Toolbar.textSurface": "Superficie",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Colaboración",
|
"DE.Views.Toolbar.textTabCollaboration": "Colaboración",
|
||||||
"DE.Views.Toolbar.textTabFile": "Archivo",
|
"DE.Views.Toolbar.textTabFile": "Archivo",
|
||||||
"DE.Views.Toolbar.textTabHome": "Inicio",
|
"DE.Views.Toolbar.textTabHome": "Inicio",
|
||||||
|
|
|
@ -69,6 +69,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Changer les tabulations",
|
"Common.Controllers.ReviewChanges.textTabs": "Changer les tabulations",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Souligné",
|
"Common.Controllers.ReviewChanges.textUnderline": "Souligné",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Contrôle des veuves",
|
"Common.Controllers.ReviewChanges.textWidow": "Contrôle des veuves",
|
||||||
|
"Common.define.chartData.textArea": "En aires",
|
||||||
|
"Common.define.chartData.textBar": "En barre",
|
||||||
|
"Common.define.chartData.textColumn": "Colonne",
|
||||||
|
"Common.define.chartData.textLine": "Graphique en ligne",
|
||||||
|
"Common.define.chartData.textPie": "Graphiques à secteurs",
|
||||||
|
"Common.define.chartData.textPoint": "Nuages de points (XY)",
|
||||||
|
"Common.define.chartData.textStock": "Boursier",
|
||||||
|
"Common.define.chartData.textSurface": "Surface",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
|
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
|
||||||
|
@ -1013,20 +1021,12 @@
|
||||||
"DE.Views.CellsRemoveDialog.textRow": "Supprimer la ligne entière",
|
"DE.Views.CellsRemoveDialog.textRow": "Supprimer la ligne entière",
|
||||||
"DE.Views.CellsRemoveDialog.textTitle": "Supprimer les cellules",
|
"DE.Views.CellsRemoveDialog.textTitle": "Supprimer les cellules",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
"DE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
||||||
"DE.Views.ChartSettings.textArea": "En aires",
|
|
||||||
"DE.Views.ChartSettings.textBar": "En barre",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Modifier le type de graphique",
|
"DE.Views.ChartSettings.textChartType": "Modifier le type de graphique",
|
||||||
"DE.Views.ChartSettings.textColumn": "Colonne",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Modifier les données",
|
"DE.Views.ChartSettings.textEditData": "Modifier les données",
|
||||||
"DE.Views.ChartSettings.textHeight": "Hauteur",
|
"DE.Views.ChartSettings.textHeight": "Hauteur",
|
||||||
"DE.Views.ChartSettings.textLine": "Graphique en ligne",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Taille par défaut",
|
"DE.Views.ChartSettings.textOriginalSize": "Taille par défaut",
|
||||||
"DE.Views.ChartSettings.textPie": "Graphiques à secteurs",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Nuages de points (XY)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Taille",
|
"DE.Views.ChartSettings.textSize": "Taille",
|
||||||
"DE.Views.ChartSettings.textStock": "Boursier",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Style",
|
"DE.Views.ChartSettings.textStyle": "Style",
|
||||||
"DE.Views.ChartSettings.textSurface": "Surface",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Détacher du panneau",
|
"DE.Views.ChartSettings.textUndock": "Détacher du panneau",
|
||||||
"DE.Views.ChartSettings.textWidth": "Largeur",
|
"DE.Views.ChartSettings.textWidth": "Largeur",
|
||||||
"DE.Views.ChartSettings.textWrap": "Style d'habillage",
|
"DE.Views.ChartSettings.textWrap": "Style d'habillage",
|
||||||
|
@ -2051,13 +2051,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Image de stockage",
|
"DE.Views.Toolbar.mniImageFromStorage": "Image de stockage",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Image à partir d'une URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Image à partir d'une URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Pas de remplissage",
|
"DE.Views.Toolbar.strMenuNoFill": "Pas de remplissage",
|
||||||
"DE.Views.Toolbar.textArea": "En aires",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatique",
|
"DE.Views.Toolbar.textAutoColor": "Automatique",
|
||||||
"DE.Views.Toolbar.textBar": "En barre",
|
|
||||||
"DE.Views.Toolbar.textBold": "Gras",
|
"DE.Views.Toolbar.textBold": "Gras",
|
||||||
"DE.Views.Toolbar.textBottom": "En bas: ",
|
"DE.Views.Toolbar.textBottom": "En bas: ",
|
||||||
"DE.Views.Toolbar.textCharts": "Graphiques",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Colonne",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées",
|
"DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "A gauche",
|
"DE.Views.Toolbar.textColumnsLeft": "A gauche",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Un",
|
"DE.Views.Toolbar.textColumnsOne": "Un",
|
||||||
|
@ -2077,7 +2073,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Italique",
|
"DE.Views.Toolbar.textItalic": "Italique",
|
||||||
"DE.Views.Toolbar.textLandscape": "Paysage",
|
"DE.Views.Toolbar.textLandscape": "Paysage",
|
||||||
"DE.Views.Toolbar.textLeft": "À gauche:",
|
"DE.Views.Toolbar.textLeft": "À gauche:",
|
||||||
"DE.Views.Toolbar.textLine": "Graphique en ligne",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Dernière mesure",
|
"DE.Views.Toolbar.textMarginsLast": "Dernière mesure",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Modérer",
|
"DE.Views.Toolbar.textMarginsModerate": "Modérer",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Étroit",
|
"DE.Views.Toolbar.textMarginsNarrow": "Étroit",
|
||||||
|
@ -2091,15 +2086,12 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Page impaire",
|
"DE.Views.Toolbar.textOddPage": "Page impaire",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Taille personnalisée",
|
"DE.Views.Toolbar.textPageSizeCustom": "Taille personnalisée",
|
||||||
"DE.Views.Toolbar.textPie": "Graphiques à secteurs",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Insérer un contrôle de contenu en texte brut",
|
"DE.Views.Toolbar.textPlainControl": "Insérer un contrôle de contenu en texte brut",
|
||||||
"DE.Views.Toolbar.textPoint": "Nuages de points (XY)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Portrait",
|
"DE.Views.Toolbar.textPortrait": "Portrait",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Supprimer le contrôle du contenu",
|
"DE.Views.Toolbar.textRemoveControl": "Supprimer le contrôle du contenu",
|
||||||
"DE.Views.Toolbar.textRemWatermark": "Supprimer le filigrane",
|
"DE.Views.Toolbar.textRemWatermark": "Supprimer le filigrane",
|
||||||
"DE.Views.Toolbar.textRichControl": "Insérer un contrôle de contenu en texte enrichi",
|
"DE.Views.Toolbar.textRichControl": "Insérer un contrôle de contenu en texte enrichi",
|
||||||
"DE.Views.Toolbar.textRight": "A droite: ",
|
"DE.Views.Toolbar.textRight": "A droite: ",
|
||||||
"DE.Views.Toolbar.textStock": "Boursier",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Barré",
|
"DE.Views.Toolbar.textStrikeout": "Barré",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Supprimer le style",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Supprimer le style",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Supprimer tous les styles personnalisés",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Supprimer tous les styles personnalisés",
|
||||||
|
@ -2109,7 +2101,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Mettre à jour selon la sélection",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Mettre à jour selon la sélection",
|
||||||
"DE.Views.Toolbar.textSubscript": "Indice",
|
"DE.Views.Toolbar.textSubscript": "Indice",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Exposant",
|
"DE.Views.Toolbar.textSuperscript": "Exposant",
|
||||||
"DE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
"DE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
||||||
"DE.Views.Toolbar.textTabFile": "Fichier",
|
"DE.Views.Toolbar.textTabFile": "Fichier",
|
||||||
"DE.Views.Toolbar.textTabHome": "Accueil",
|
"DE.Views.Toolbar.textTabHome": "Accueil",
|
||||||
|
|
|
@ -63,6 +63,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Lapok módosítása",
|
"Common.Controllers.ReviewChanges.textTabs": "Lapok módosítása",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Aláhúzott",
|
"Common.Controllers.ReviewChanges.textUnderline": "Aláhúzott",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Özvegy sor",
|
"Common.Controllers.ReviewChanges.textWidow": "Özvegy sor",
|
||||||
|
"Common.define.chartData.textArea": "Terület",
|
||||||
|
"Common.define.chartData.textBar": "Sáv",
|
||||||
|
"Common.define.chartData.textColumn": "Oszlop",
|
||||||
|
"Common.define.chartData.textLine": "Vonal",
|
||||||
|
"Common.define.chartData.textPie": "Kör",
|
||||||
|
"Common.define.chartData.textPoint": "Pont",
|
||||||
|
"Common.define.chartData.textStock": "Részvény",
|
||||||
|
"Common.define.chartData.textSurface": "Felület",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
||||||
|
@ -923,20 +931,12 @@
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Könyvjelzők",
|
"DE.Views.BookmarksDialog.textTitle": "Könyvjelzők",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "A könyvjelző neve kizárólag betűket, számokat és alulvonást tartalmazhat, és betűvel kezdődhet.",
|
"DE.Views.BookmarksDialog.txtInvalidName": "A könyvjelző neve kizárólag betűket, számokat és alulvonást tartalmazhat, és betűvel kezdődhet.",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése",
|
"DE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése",
|
||||||
"DE.Views.ChartSettings.textArea": "Terület",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Sáv",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Diagramtípus módosítása",
|
"DE.Views.ChartSettings.textChartType": "Diagramtípus módosítása",
|
||||||
"DE.Views.ChartSettings.textColumn": "Oszlop",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Adat szerkesztése",
|
"DE.Views.ChartSettings.textEditData": "Adat szerkesztése",
|
||||||
"DE.Views.ChartSettings.textHeight": "Magasság",
|
"DE.Views.ChartSettings.textHeight": "Magasság",
|
||||||
"DE.Views.ChartSettings.textLine": "Vonal",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Alapértelmezett méret",
|
"DE.Views.ChartSettings.textOriginalSize": "Alapértelmezett méret",
|
||||||
"DE.Views.ChartSettings.textPie": "Kör",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Pont",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Méret",
|
"DE.Views.ChartSettings.textSize": "Méret",
|
||||||
"DE.Views.ChartSettings.textStock": "Részvény",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Stílus",
|
"DE.Views.ChartSettings.textStyle": "Stílus",
|
||||||
"DE.Views.ChartSettings.textSurface": "Felület",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Eltávolít a panelről",
|
"DE.Views.ChartSettings.textUndock": "Eltávolít a panelről",
|
||||||
"DE.Views.ChartSettings.textWidth": "Szélesség",
|
"DE.Views.ChartSettings.textWidth": "Szélesség",
|
||||||
"DE.Views.ChartSettings.textWrap": "Tördelés stílus",
|
"DE.Views.ChartSettings.textWrap": "Tördelés stílus",
|
||||||
|
@ -1912,13 +1912,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Kép a tárolóból",
|
"DE.Views.Toolbar.mniImageFromStorage": "Kép a tárolóból",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Kép hivatkozásból",
|
"DE.Views.Toolbar.mniImageFromUrl": "Kép hivatkozásból",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Nincs kitöltés",
|
"DE.Views.Toolbar.strMenuNoFill": "Nincs kitöltés",
|
||||||
"DE.Views.Toolbar.textArea": "Terület",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatikus",
|
"DE.Views.Toolbar.textAutoColor": "Automatikus",
|
||||||
"DE.Views.Toolbar.textBar": "Sáv",
|
|
||||||
"DE.Views.Toolbar.textBold": "Félkövér",
|
"DE.Views.Toolbar.textBold": "Félkövér",
|
||||||
"DE.Views.Toolbar.textBottom": "Alsó:",
|
"DE.Views.Toolbar.textBottom": "Alsó:",
|
||||||
"DE.Views.Toolbar.textCharts": "Diagramok",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Oszlop",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Egyéni hasábok",
|
"DE.Views.Toolbar.textColumnsCustom": "Egyéni hasábok",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Bal",
|
"DE.Views.Toolbar.textColumnsLeft": "Bal",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Egy",
|
"DE.Views.Toolbar.textColumnsOne": "Egy",
|
||||||
|
@ -1937,7 +1933,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Dőlt",
|
"DE.Views.Toolbar.textItalic": "Dőlt",
|
||||||
"DE.Views.Toolbar.textLandscape": "Tájkép",
|
"DE.Views.Toolbar.textLandscape": "Tájkép",
|
||||||
"DE.Views.Toolbar.textLeft": "Bal:",
|
"DE.Views.Toolbar.textLeft": "Bal:",
|
||||||
"DE.Views.Toolbar.textLine": "Vonal",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások",
|
"DE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Mérsékelt",
|
"DE.Views.Toolbar.textMarginsModerate": "Mérsékelt",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Keskeny",
|
"DE.Views.Toolbar.textMarginsNarrow": "Keskeny",
|
||||||
|
@ -1951,14 +1946,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Páratlan oldal",
|
"DE.Views.Toolbar.textOddPage": "Páratlan oldal",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Egyéni margók",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Egyéni margók",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Egyéni lapméret",
|
"DE.Views.Toolbar.textPageSizeCustom": "Egyéni lapméret",
|
||||||
"DE.Views.Toolbar.textPie": "Kör",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Egyszerű szöveg tartalomkezelő beillesztése",
|
"DE.Views.Toolbar.textPlainControl": "Egyszerű szöveg tartalomkezelő beillesztése",
|
||||||
"DE.Views.Toolbar.textPoint": "Pont",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Portré",
|
"DE.Views.Toolbar.textPortrait": "Portré",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Tartalomkezelő eltávolítása",
|
"DE.Views.Toolbar.textRemoveControl": "Tartalomkezelő eltávolítása",
|
||||||
"DE.Views.Toolbar.textRichControl": "Rich text tartalomkezelő beillesztése",
|
"DE.Views.Toolbar.textRichControl": "Rich text tartalomkezelő beillesztése",
|
||||||
"DE.Views.Toolbar.textRight": "Jobb:",
|
"DE.Views.Toolbar.textRight": "Jobb:",
|
||||||
"DE.Views.Toolbar.textStock": "Részvény",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Áthúzott",
|
"DE.Views.Toolbar.textStrikeout": "Áthúzott",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Stílus törlése",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Stílus törlése",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Minden egyéni stílus törlése",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Minden egyéni stílus törlése",
|
||||||
|
@ -1968,7 +1960,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Frissítés a kiválasztásból",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Frissítés a kiválasztásból",
|
||||||
"DE.Views.Toolbar.textSubscript": "Alsó index",
|
"DE.Views.Toolbar.textSubscript": "Alsó index",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Felső index",
|
"DE.Views.Toolbar.textSuperscript": "Felső index",
|
||||||
"DE.Views.Toolbar.textSurface": "Felület",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Együttműködés",
|
"DE.Views.Toolbar.textTabCollaboration": "Együttműködés",
|
||||||
"DE.Views.Toolbar.textTabFile": "Fájl",
|
"DE.Views.Toolbar.textTabFile": "Fájl",
|
||||||
"DE.Views.Toolbar.textTabHome": "Kezdőlap",
|
"DE.Views.Toolbar.textTabHome": "Kezdőlap",
|
||||||
|
|
|
@ -69,6 +69,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Modifica Schede",
|
"Common.Controllers.ReviewChanges.textTabs": "Modifica Schede",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Sottolineato",
|
"Common.Controllers.ReviewChanges.textUnderline": "Sottolineato",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
|
"Common.define.chartData.textArea": "Aerogramma",
|
||||||
|
"Common.define.chartData.textBar": "A barre",
|
||||||
|
"Common.define.chartData.textColumn": "Istogramma",
|
||||||
|
"Common.define.chartData.textLine": "A linee",
|
||||||
|
"Common.define.chartData.textPie": "A torta",
|
||||||
|
"Common.define.chartData.textPoint": "XY (A dispersione)",
|
||||||
|
"Common.define.chartData.textStock": "Azionario",
|
||||||
|
"Common.define.chartData.textSurface": "Superficie",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
||||||
|
@ -1002,21 +1010,18 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Ordina per",
|
"DE.Views.BookmarksDialog.textSort": "Ordina per",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Segnalibri",
|
"DE.Views.BookmarksDialog.textTitle": "Segnalibri",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "il nome del Segnalibro può contenere solo lettere, numeri e underscore, e dovrebbe iniziare con la lettera",
|
"DE.Views.BookmarksDialog.txtInvalidName": "il nome del Segnalibro può contenere solo lettere, numeri e underscore, e dovrebbe iniziare con la lettera",
|
||||||
|
"DE.Views.CaptionDialog.textBefore": "Prima",
|
||||||
|
"DE.Views.CaptionDialog.textColon": "due punti",
|
||||||
|
"DE.Views.CaptionDialog.textSeparator": "Usa separatore",
|
||||||
|
"DE.Views.CellsAddDialog.textCol": "Colonne",
|
||||||
|
"DE.Views.CellsRemoveDialog.textTitle": "Elimina celle",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
"DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
||||||
"DE.Views.ChartSettings.textArea": "Aerogramma",
|
|
||||||
"DE.Views.ChartSettings.textBar": "A barre",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Cambia tipo grafico",
|
"DE.Views.ChartSettings.textChartType": "Cambia tipo grafico",
|
||||||
"DE.Views.ChartSettings.textColumn": "Istogramma",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Modifica dati",
|
"DE.Views.ChartSettings.textEditData": "Modifica dati",
|
||||||
"DE.Views.ChartSettings.textHeight": "Altezza",
|
"DE.Views.ChartSettings.textHeight": "Altezza",
|
||||||
"DE.Views.ChartSettings.textLine": "A linee",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Predefinita",
|
"DE.Views.ChartSettings.textOriginalSize": "Predefinita",
|
||||||
"DE.Views.ChartSettings.textPie": "A torta",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (A dispersione)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Dimensione",
|
"DE.Views.ChartSettings.textSize": "Dimensione",
|
||||||
"DE.Views.ChartSettings.textStock": "Azionario",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Stile",
|
"DE.Views.ChartSettings.textStyle": "Stile",
|
||||||
"DE.Views.ChartSettings.textSurface": "Superficie",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Disancora dal pannello",
|
"DE.Views.ChartSettings.textUndock": "Disancora dal pannello",
|
||||||
"DE.Views.ChartSettings.textWidth": "Larghezza",
|
"DE.Views.ChartSettings.textWidth": "Larghezza",
|
||||||
"DE.Views.ChartSettings.textWrap": "Stile di disposizione testo",
|
"DE.Views.ChartSettings.textWrap": "Stile di disposizione testo",
|
||||||
|
@ -1119,6 +1124,7 @@
|
||||||
"DE.Views.DocumentHolder.textArrangeBackward": "Porta indietro",
|
"DE.Views.DocumentHolder.textArrangeBackward": "Porta indietro",
|
||||||
"DE.Views.DocumentHolder.textArrangeForward": "Porta avanti",
|
"DE.Views.DocumentHolder.textArrangeForward": "Porta avanti",
|
||||||
"DE.Views.DocumentHolder.textArrangeFront": "Porta in primo piano",
|
"DE.Views.DocumentHolder.textArrangeFront": "Porta in primo piano",
|
||||||
|
"DE.Views.DocumentHolder.textCells": "Celle",
|
||||||
"DE.Views.DocumentHolder.textContentControls": "Controllo Contenuto",
|
"DE.Views.DocumentHolder.textContentControls": "Controllo Contenuto",
|
||||||
"DE.Views.DocumentHolder.textContinueNumbering": "Continua la numerazione",
|
"DE.Views.DocumentHolder.textContinueNumbering": "Continua la numerazione",
|
||||||
"DE.Views.DocumentHolder.textCopy": "Copia",
|
"DE.Views.DocumentHolder.textCopy": "Copia",
|
||||||
|
@ -1321,6 +1327,7 @@
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Crea un nuovo documento di testo vuoto che potrai formattare in seguito durante la modifica. Oppure scegli uno dei modelli per creare un documento di un certo tipo al quale sono già applicati certi stili.",
|
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Crea un nuovo documento di testo vuoto che potrai formattare in seguito durante la modifica. Oppure scegli uno dei modelli per creare un documento di un certo tipo al quale sono già applicati certi stili.",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nuovo documento di testo",
|
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nuovo documento di testo",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nessun modello",
|
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Nessun modello",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Applica",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Aggiungi Autore",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Aggiungi Autore",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Aggiungi testo",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Aggiungi testo",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicazione",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Applicazione",
|
||||||
|
@ -2032,13 +2039,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Immagine dallo spazio di archiviazione",
|
"DE.Views.Toolbar.mniImageFromStorage": "Immagine dallo spazio di archiviazione",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Immagine da URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Immagine da URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Nessun riempimento",
|
"DE.Views.Toolbar.strMenuNoFill": "Nessun riempimento",
|
||||||
"DE.Views.Toolbar.textArea": "Aerogramma",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatico",
|
"DE.Views.Toolbar.textAutoColor": "Automatico",
|
||||||
"DE.Views.Toolbar.textBar": "A barre",
|
|
||||||
"DE.Views.Toolbar.textBold": "Grassetto",
|
"DE.Views.Toolbar.textBold": "Grassetto",
|
||||||
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
||||||
"DE.Views.Toolbar.textCharts": "Grafici",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Istogramma",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Colonne personalizzate",
|
"DE.Views.Toolbar.textColumnsCustom": "Colonne personalizzate",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "One",
|
"DE.Views.Toolbar.textColumnsOne": "One",
|
||||||
|
@ -2058,7 +2061,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Corsivo",
|
"DE.Views.Toolbar.textItalic": "Corsivo",
|
||||||
"DE.Views.Toolbar.textLandscape": "Orizzontale",
|
"DE.Views.Toolbar.textLandscape": "Orizzontale",
|
||||||
"DE.Views.Toolbar.textLeft": "Left: ",
|
"DE.Views.Toolbar.textLeft": "Left: ",
|
||||||
"DE.Views.Toolbar.textLine": "A linee",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderare",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderare",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
||||||
|
@ -2072,15 +2074,12 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Pagina dispari",
|
"DE.Views.Toolbar.textOddPage": "Pagina dispari",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
||||||
"DE.Views.Toolbar.textPie": "A torta",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Inserisci il controllo del contenuto in testo normale",
|
"DE.Views.Toolbar.textPlainControl": "Inserisci il controllo del contenuto in testo normale",
|
||||||
"DE.Views.Toolbar.textPoint": "XY (A dispersione)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Verticale",
|
"DE.Views.Toolbar.textPortrait": "Verticale",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Rimuovi il controllo del contenuto",
|
"DE.Views.Toolbar.textRemoveControl": "Rimuovi il controllo del contenuto",
|
||||||
"DE.Views.Toolbar.textRemWatermark": "Rimuovi filigrana",
|
"DE.Views.Toolbar.textRemWatermark": "Rimuovi filigrana",
|
||||||
"DE.Views.Toolbar.textRichControl": "Inserisci il controllo del contenuto RTF",
|
"DE.Views.Toolbar.textRichControl": "Inserisci il controllo del contenuto RTF",
|
||||||
"DE.Views.Toolbar.textRight": "Right: ",
|
"DE.Views.Toolbar.textRight": "Right: ",
|
||||||
"DE.Views.Toolbar.textStock": "Azionario",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Barrato",
|
"DE.Views.Toolbar.textStrikeout": "Barrato",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Elimina stile",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Elimina stile",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Elimina tutti gli stili personalizzati",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Elimina tutti gli stili personalizzati",
|
||||||
|
@ -2090,7 +2089,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Aggiorna da selezione",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Aggiorna da selezione",
|
||||||
"DE.Views.Toolbar.textSubscript": "Pedice",
|
"DE.Views.Toolbar.textSubscript": "Pedice",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Apice",
|
"DE.Views.Toolbar.textSuperscript": "Apice",
|
||||||
"DE.Views.Toolbar.textSurface": "Superficie",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Collaborazione",
|
"DE.Views.Toolbar.textTabCollaboration": "Collaborazione",
|
||||||
"DE.Views.Toolbar.textTabFile": "File",
|
"DE.Views.Toolbar.textTabFile": "File",
|
||||||
"DE.Views.Toolbar.textTabHome": "Home",
|
"DE.Views.Toolbar.textTabHome": "Home",
|
||||||
|
|
|
@ -63,6 +63,13 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "タブの変更",
|
"Common.Controllers.ReviewChanges.textTabs": "タブの変更",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "下線",
|
"Common.Controllers.ReviewChanges.textUnderline": "下線",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "改ページ時1行残して段落を区切らないを制御する。",
|
"Common.Controllers.ReviewChanges.textWidow": "改ページ時1行残して段落を区切らないを制御する。",
|
||||||
|
"Common.define.chartData.textArea": "面グラフ",
|
||||||
|
"Common.define.chartData.textBar": "横棒グラフ",
|
||||||
|
"Common.define.chartData.textColumn": "縦棒グラフ",
|
||||||
|
"Common.define.chartData.textLine": "折れ線グラフ",
|
||||||
|
"Common.define.chartData.textPie": "円グラフ",
|
||||||
|
"Common.define.chartData.textPoint": "点グラフ",
|
||||||
|
"Common.define.chartData.textStock": "株価チャート",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "罫線なし",
|
"Common.UI.ComboBorderSize.txtNoBorders": "罫線なし",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "罫線なし",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "罫線なし",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
|
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
|
||||||
|
@ -589,18 +596,11 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "グザイ",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "グザイ",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "ゼータ",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "ゼータ",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "詳細設定の表示",
|
"DE.Views.ChartSettings.textAdvanced": "詳細設定の表示",
|
||||||
"DE.Views.ChartSettings.textArea": "面グラフ",
|
|
||||||
"DE.Views.ChartSettings.textBar": "横棒グラフ",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "グラフの種類の変更",
|
"DE.Views.ChartSettings.textChartType": "グラフの種類の変更",
|
||||||
"DE.Views.ChartSettings.textColumn": "縦棒グラフ",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "データの編集",
|
"DE.Views.ChartSettings.textEditData": "データの編集",
|
||||||
"DE.Views.ChartSettings.textHeight": "高さ",
|
"DE.Views.ChartSettings.textHeight": "高さ",
|
||||||
"DE.Views.ChartSettings.textLine": "折れ線グラフ",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "既定のサイズ",
|
"DE.Views.ChartSettings.textOriginalSize": "既定のサイズ",
|
||||||
"DE.Views.ChartSettings.textPie": "円グラフ",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "点グラフ",
|
|
||||||
"DE.Views.ChartSettings.textSize": "サイズ",
|
"DE.Views.ChartSettings.textSize": "サイズ",
|
||||||
"DE.Views.ChartSettings.textStock": "株価チャート",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "スタイル",
|
"DE.Views.ChartSettings.textStyle": "スタイル",
|
||||||
"DE.Views.ChartSettings.textUndock": "パネルからのドッキング解除",
|
"DE.Views.ChartSettings.textUndock": "パネルからのドッキング解除",
|
||||||
"DE.Views.ChartSettings.textWidth": "幅",
|
"DE.Views.ChartSettings.textWidth": "幅",
|
||||||
|
@ -1327,12 +1327,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "ファイルからの画像",
|
"DE.Views.Toolbar.mniImageFromFile": "ファイルからの画像",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "ファイルからのURL",
|
"DE.Views.Toolbar.mniImageFromUrl": "ファイルからのURL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "塗りつぶしなし",
|
"DE.Views.Toolbar.strMenuNoFill": "塗りつぶしなし",
|
||||||
"DE.Views.Toolbar.textArea": "面グラフ",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "自動",
|
"DE.Views.Toolbar.textAutoColor": "自動",
|
||||||
"DE.Views.Toolbar.textBar": "横棒グラフ",
|
|
||||||
"DE.Views.Toolbar.textBold": "太字",
|
"DE.Views.Toolbar.textBold": "太字",
|
||||||
"DE.Views.Toolbar.textBottom": "下:",
|
"DE.Views.Toolbar.textBottom": "下:",
|
||||||
"DE.Views.Toolbar.textColumn": "縦棒グラフ",
|
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "左",
|
"DE.Views.Toolbar.textColumnsLeft": "左",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "1",
|
"DE.Views.Toolbar.textColumnsOne": "1",
|
||||||
"DE.Views.Toolbar.textColumnsRight": "右に",
|
"DE.Views.Toolbar.textColumnsRight": "右に",
|
||||||
|
@ -1348,7 +1345,6 @@
|
||||||
"DE.Views.Toolbar.textInText": "テキスト",
|
"DE.Views.Toolbar.textInText": "テキスト",
|
||||||
"DE.Views.Toolbar.textItalic": "斜体",
|
"DE.Views.Toolbar.textItalic": "斜体",
|
||||||
"DE.Views.Toolbar.textLeft": "左:",
|
"DE.Views.Toolbar.textLeft": "左:",
|
||||||
"DE.Views.Toolbar.textLine": "折れ線グラフ",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "最後に適用したユーザー",
|
"DE.Views.Toolbar.textMarginsLast": "最後に適用したユーザー",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "標準",
|
"DE.Views.Toolbar.textMarginsModerate": "標準",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "狭い",
|
"DE.Views.Toolbar.textMarginsNarrow": "狭い",
|
||||||
|
@ -1361,10 +1357,7 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "奇数ページから開始",
|
"DE.Views.Toolbar.textOddPage": "奇数ページから開始",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "カスタム マージン",
|
"DE.Views.Toolbar.textPageMarginsCustom": "カスタム マージン",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "ユーザー設定のページ サイズ",
|
"DE.Views.Toolbar.textPageSizeCustom": "ユーザー設定のページ サイズ",
|
||||||
"DE.Views.Toolbar.textPie": "円グラフ",
|
|
||||||
"DE.Views.Toolbar.textPoint": "点グラフ",
|
|
||||||
"DE.Views.Toolbar.textRight": "右:",
|
"DE.Views.Toolbar.textRight": "右:",
|
||||||
"DE.Views.Toolbar.textStock": "株価チャート",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "取り消し線",
|
"DE.Views.Toolbar.textStrikeout": "取り消し線",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "スタイルの削除",
|
"DE.Views.Toolbar.textStyleMenuDelete": "スタイルの削除",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "ユーザー設定のスタイルの削除",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "ユーザー設定のスタイルの削除",
|
||||||
|
|
|
@ -777,20 +777,12 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "정렬",
|
"DE.Views.BookmarksDialog.textSort": "정렬",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "책갈피",
|
"DE.Views.BookmarksDialog.textTitle": "책갈피",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
"DE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
||||||
"DE.Views.ChartSettings.textArea": "영역",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Bar",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "차트 유형 변경",
|
"DE.Views.ChartSettings.textChartType": "차트 유형 변경",
|
||||||
"DE.Views.ChartSettings.textColumn": "열",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "데이터 편집",
|
"DE.Views.ChartSettings.textEditData": "데이터 편집",
|
||||||
"DE.Views.ChartSettings.textHeight": "높이",
|
"DE.Views.ChartSettings.textHeight": "높이",
|
||||||
"DE.Views.ChartSettings.textLine": "Line",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "기본 크기",
|
"DE.Views.ChartSettings.textOriginalSize": "기본 크기",
|
||||||
"DE.Views.ChartSettings.textPie": "파이",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (Scatter)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "크기",
|
"DE.Views.ChartSettings.textSize": "크기",
|
||||||
"DE.Views.ChartSettings.textStock": "Stock",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "스타일",
|
"DE.Views.ChartSettings.textStyle": "스타일",
|
||||||
"DE.Views.ChartSettings.textSurface": "표면",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "패널에서 도킹 해제",
|
"DE.Views.ChartSettings.textUndock": "패널에서 도킹 해제",
|
||||||
"DE.Views.ChartSettings.textWidth": "너비",
|
"DE.Views.ChartSettings.textWidth": "너비",
|
||||||
"DE.Views.ChartSettings.textWrap": "포장 스타일",
|
"DE.Views.ChartSettings.textWrap": "포장 스타일",
|
||||||
|
@ -1707,13 +1699,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "그림 파일에서",
|
"DE.Views.Toolbar.mniImageFromFile": "그림 파일에서",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "URL에서 그림",
|
"DE.Views.Toolbar.mniImageFromUrl": "URL에서 그림",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "채우기 없음",
|
"DE.Views.Toolbar.strMenuNoFill": "채우기 없음",
|
||||||
"DE.Views.Toolbar.textArea": "Area",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "자동",
|
"DE.Views.Toolbar.textAutoColor": "자동",
|
||||||
"DE.Views.Toolbar.textBar": "Bar",
|
|
||||||
"DE.Views.Toolbar.textBold": "Bold",
|
"DE.Views.Toolbar.textBold": "Bold",
|
||||||
"DE.Views.Toolbar.textBottom": "Bottom :",
|
"DE.Views.Toolbar.textBottom": "Bottom :",
|
||||||
"DE.Views.Toolbar.textCharts": "차트",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Column",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "사용자 정의 열",
|
"DE.Views.Toolbar.textColumnsCustom": "사용자 정의 열",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "왼쪽",
|
"DE.Views.Toolbar.textColumnsLeft": "왼쪽",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "하나",
|
"DE.Views.Toolbar.textColumnsOne": "하나",
|
||||||
|
@ -1732,7 +1720,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Italic",
|
"DE.Views.Toolbar.textItalic": "Italic",
|
||||||
"DE.Views.Toolbar.textLandscape": "Landscape",
|
"DE.Views.Toolbar.textLandscape": "Landscape",
|
||||||
"DE.Views.Toolbar.textLeft": "왼쪽 :",
|
"DE.Views.Toolbar.textLeft": "왼쪽 :",
|
||||||
"DE.Views.Toolbar.textLine": "Line",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "마지막 사용자 정의",
|
"DE.Views.Toolbar.textMarginsLast": "마지막 사용자 정의",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "보통",
|
"DE.Views.Toolbar.textMarginsModerate": "보통",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "좁다",
|
"DE.Views.Toolbar.textMarginsNarrow": "좁다",
|
||||||
|
@ -1745,14 +1732,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "홀수 페이지",
|
"DE.Views.Toolbar.textOddPage": "홀수 페이지",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "사용자 정의 여백",
|
"DE.Views.Toolbar.textPageMarginsCustom": "사용자 정의 여백",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "사용자 정의 페이지 크기",
|
"DE.Views.Toolbar.textPageSizeCustom": "사용자 정의 페이지 크기",
|
||||||
"DE.Views.Toolbar.textPie": "파이",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "일반 텍스트 콘텐트 제어 삽입",
|
"DE.Views.Toolbar.textPlainControl": "일반 텍스트 콘텐트 제어 삽입",
|
||||||
"DE.Views.Toolbar.textPoint": "XY (Scatter)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Portrait",
|
"DE.Views.Toolbar.textPortrait": "Portrait",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "콘텐트 제어 삭제",
|
"DE.Views.Toolbar.textRemoveControl": "콘텐트 제어 삭제",
|
||||||
"DE.Views.Toolbar.textRichControl": "리치 텍스트 콘텐트 제어 삽입",
|
"DE.Views.Toolbar.textRichControl": "리치 텍스트 콘텐트 제어 삽입",
|
||||||
"DE.Views.Toolbar.textRight": "오른쪽 :",
|
"DE.Views.Toolbar.textRight": "오른쪽 :",
|
||||||
"DE.Views.Toolbar.textStock": "Stock",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Strikeout",
|
"DE.Views.Toolbar.textStrikeout": "Strikeout",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "스타일 삭제",
|
"DE.Views.Toolbar.textStyleMenuDelete": "스타일 삭제",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "모든 사용자 정의 스타일 삭제",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "모든 사용자 정의 스타일 삭제",
|
||||||
|
@ -1762,7 +1746,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "선택 항목에서 업데이트",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "선택 항목에서 업데이트",
|
||||||
"DE.Views.Toolbar.textSubscript": "Subscript",
|
"DE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"DE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "합치기",
|
"DE.Views.Toolbar.textTabCollaboration": "합치기",
|
||||||
"DE.Views.Toolbar.textTabFile": "파일",
|
"DE.Views.Toolbar.textTabFile": "파일",
|
||||||
"DE.Views.Toolbar.textTabHome": "집",
|
"DE.Views.Toolbar.textTabHome": "집",
|
||||||
|
|
|
@ -774,20 +774,12 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Šķirot pēc",
|
"DE.Views.BookmarksDialog.textSort": "Šķirot pēc",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Grāmatzīmes",
|
"DE.Views.BookmarksDialog.textTitle": "Grāmatzīmes",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||||
"DE.Views.ChartSettings.textArea": "Area Chart",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Bar Chart",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Change Chart Type",
|
"DE.Views.ChartSettings.textChartType": "Change Chart Type",
|
||||||
"DE.Views.ChartSettings.textColumn": "Column Chart",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Edit Data",
|
"DE.Views.ChartSettings.textEditData": "Edit Data",
|
||||||
"DE.Views.ChartSettings.textHeight": "Height",
|
"DE.Views.ChartSettings.textHeight": "Height",
|
||||||
"DE.Views.ChartSettings.textLine": "Line Chart",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Default Size",
|
"DE.Views.ChartSettings.textOriginalSize": "Default Size",
|
||||||
"DE.Views.ChartSettings.textPie": "Pie Chart",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (Scatter) Chart",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Size",
|
"DE.Views.ChartSettings.textSize": "Size",
|
||||||
"DE.Views.ChartSettings.textStock": "Stock Chart",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Style",
|
"DE.Views.ChartSettings.textStyle": "Style",
|
||||||
"DE.Views.ChartSettings.textSurface": "Virsma",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Undock from panel",
|
"DE.Views.ChartSettings.textUndock": "Undock from panel",
|
||||||
"DE.Views.ChartSettings.textWidth": "Width",
|
"DE.Views.ChartSettings.textWidth": "Width",
|
||||||
"DE.Views.ChartSettings.textWrap": "Wrapping Style",
|
"DE.Views.ChartSettings.textWrap": "Wrapping Style",
|
||||||
|
@ -1704,13 +1696,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Attēls no faila",
|
"DE.Views.Toolbar.mniImageFromFile": "Attēls no faila",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Attēls no URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Attēls no URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Bez aizpildījuma",
|
"DE.Views.Toolbar.strMenuNoFill": "Bez aizpildījuma",
|
||||||
"DE.Views.Toolbar.textArea": "Area Chart",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatic",
|
"DE.Views.Toolbar.textAutoColor": "Automatic",
|
||||||
"DE.Views.Toolbar.textBar": "Bar Chart",
|
|
||||||
"DE.Views.Toolbar.textBold": "Treknraksts",
|
"DE.Views.Toolbar.textBold": "Treknraksts",
|
||||||
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
||||||
"DE.Views.Toolbar.textCharts": "Diagrammas",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Column Chart",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Pielāgotās kolonnas",
|
"DE.Views.Toolbar.textColumnsCustom": "Pielāgotās kolonnas",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "One",
|
"DE.Views.Toolbar.textColumnsOne": "One",
|
||||||
|
@ -1729,7 +1717,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Kursīvs",
|
"DE.Views.Toolbar.textItalic": "Kursīvs",
|
||||||
"DE.Views.Toolbar.textLandscape": "Ainava",
|
"DE.Views.Toolbar.textLandscape": "Ainava",
|
||||||
"DE.Views.Toolbar.textLeft": "Left: ",
|
"DE.Views.Toolbar.textLeft": "Left: ",
|
||||||
"DE.Views.Toolbar.textLine": "Line Chart",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
||||||
|
@ -1742,14 +1729,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Odd Page",
|
"DE.Views.Toolbar.textOddPage": "Odd Page",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
||||||
"DE.Views.Toolbar.textPie": "Pie Chart",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Ievietot parastā teksta satura kontroli",
|
"DE.Views.Toolbar.textPlainControl": "Ievietot parastā teksta satura kontroli",
|
||||||
"DE.Views.Toolbar.textPoint": "XY (Scatter) Chart",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Portrets",
|
"DE.Views.Toolbar.textPortrait": "Portrets",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Noņemt satura kontroles elementu",
|
"DE.Views.Toolbar.textRemoveControl": "Noņemt satura kontroles elementu",
|
||||||
"DE.Views.Toolbar.textRichControl": "Ievietot formatētā teksta satura kontroli",
|
"DE.Views.Toolbar.textRichControl": "Ievietot formatētā teksta satura kontroli",
|
||||||
"DE.Views.Toolbar.textRight": "Right: ",
|
"DE.Views.Toolbar.textRight": "Right: ",
|
||||||
"DE.Views.Toolbar.textStock": "Stock Chart",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Pārsvītrots",
|
"DE.Views.Toolbar.textStrikeout": "Pārsvītrots",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
||||||
|
@ -1759,7 +1743,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
|
||||||
"DE.Views.Toolbar.textSubscript": "Apakšraksts",
|
"DE.Views.Toolbar.textSubscript": "Apakšraksts",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Augšraksts",
|
"DE.Views.Toolbar.textSuperscript": "Augšraksts",
|
||||||
"DE.Views.Toolbar.textSurface": "Virsma",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Sadarbība",
|
"DE.Views.Toolbar.textTabCollaboration": "Sadarbība",
|
||||||
"DE.Views.Toolbar.textTabFile": "Fails",
|
"DE.Views.Toolbar.textTabFile": "Fails",
|
||||||
"DE.Views.Toolbar.textTabHome": "Sākums",
|
"DE.Views.Toolbar.textTabHome": "Sākums",
|
||||||
|
|
|
@ -69,6 +69,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Tabs wijzigen",
|
"Common.Controllers.ReviewChanges.textTabs": "Tabs wijzigen",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Onderstrepen",
|
"Common.Controllers.ReviewChanges.textUnderline": "Onderstrepen",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Zwevende regels voorkomen",
|
"Common.Controllers.ReviewChanges.textWidow": "Zwevende regels voorkomen",
|
||||||
|
"Common.define.chartData.textArea": "Vlak",
|
||||||
|
"Common.define.chartData.textBar": "Staaf",
|
||||||
|
"Common.define.chartData.textColumn": "Kolom",
|
||||||
|
"Common.define.chartData.textLine": "Lijn",
|
||||||
|
"Common.define.chartData.textPie": "Cirkel",
|
||||||
|
"Common.define.chartData.textPoint": "Spreiding",
|
||||||
|
"Common.define.chartData.textStock": "Voorraad",
|
||||||
|
"Common.define.chartData.textSurface": "Oppervlak",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Geen randen",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Geen randen",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
|
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
|
||||||
|
@ -874,20 +882,12 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Sorteren op",
|
"DE.Views.BookmarksDialog.textSort": "Sorteren op",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Bladwijzers",
|
"DE.Views.BookmarksDialog.textTitle": "Bladwijzers",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
"DE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
||||||
"DE.Views.ChartSettings.textArea": "Vlak",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Staaf",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Grafiektype wijzigen",
|
"DE.Views.ChartSettings.textChartType": "Grafiektype wijzigen",
|
||||||
"DE.Views.ChartSettings.textColumn": "Kolom",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Gegevens bewerken",
|
"DE.Views.ChartSettings.textEditData": "Gegevens bewerken",
|
||||||
"DE.Views.ChartSettings.textHeight": "Hoogte",
|
"DE.Views.ChartSettings.textHeight": "Hoogte",
|
||||||
"DE.Views.ChartSettings.textLine": "Lijn",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Standaardgrootte",
|
"DE.Views.ChartSettings.textOriginalSize": "Standaardgrootte",
|
||||||
"DE.Views.ChartSettings.textPie": "Cirkel",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Spreiding",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Grootte",
|
"DE.Views.ChartSettings.textSize": "Grootte",
|
||||||
"DE.Views.ChartSettings.textStock": "Voorraad",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Stijl",
|
"DE.Views.ChartSettings.textStyle": "Stijl",
|
||||||
"DE.Views.ChartSettings.textSurface": "Oppervlak",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Loskoppelen van deelvenster",
|
"DE.Views.ChartSettings.textUndock": "Loskoppelen van deelvenster",
|
||||||
"DE.Views.ChartSettings.textWidth": "Breedte",
|
"DE.Views.ChartSettings.textWidth": "Breedte",
|
||||||
"DE.Views.ChartSettings.textWrap": "Terugloopstijl",
|
"DE.Views.ChartSettings.textWrap": "Terugloopstijl",
|
||||||
|
@ -1845,13 +1845,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Afbeelding uit bestand",
|
"DE.Views.Toolbar.mniImageFromFile": "Afbeelding uit bestand",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Afbeelding van URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Afbeelding van URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Geen vulling",
|
"DE.Views.Toolbar.strMenuNoFill": "Geen vulling",
|
||||||
"DE.Views.Toolbar.textArea": "Vlak",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatisch",
|
"DE.Views.Toolbar.textAutoColor": "Automatisch",
|
||||||
"DE.Views.Toolbar.textBar": "Staaf",
|
|
||||||
"DE.Views.Toolbar.textBold": "Vet",
|
"DE.Views.Toolbar.textBold": "Vet",
|
||||||
"DE.Views.Toolbar.textBottom": "Onder:",
|
"DE.Views.Toolbar.textBottom": "Onder:",
|
||||||
"DE.Views.Toolbar.textCharts": "Grafieken",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Kolom",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Aangepaste kolommen",
|
"DE.Views.Toolbar.textColumnsCustom": "Aangepaste kolommen",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Links",
|
"DE.Views.Toolbar.textColumnsLeft": "Links",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Eén",
|
"DE.Views.Toolbar.textColumnsOne": "Eén",
|
||||||
|
@ -1870,7 +1866,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Cursief",
|
"DE.Views.Toolbar.textItalic": "Cursief",
|
||||||
"DE.Views.Toolbar.textLandscape": "Liggend",
|
"DE.Views.Toolbar.textLandscape": "Liggend",
|
||||||
"DE.Views.Toolbar.textLeft": "Links:",
|
"DE.Views.Toolbar.textLeft": "Links:",
|
||||||
"DE.Views.Toolbar.textLine": "Lijn",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Laatste aangepaste",
|
"DE.Views.Toolbar.textMarginsLast": "Laatste aangepaste",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Gemiddeld",
|
"DE.Views.Toolbar.textMarginsModerate": "Gemiddeld",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Smal",
|
"DE.Views.Toolbar.textMarginsNarrow": "Smal",
|
||||||
|
@ -1883,14 +1878,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Oneven pagina",
|
"DE.Views.Toolbar.textOddPage": "Oneven pagina",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Aangepaste marges",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Aangepaste marges",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Aangepast paginaformaat",
|
"DE.Views.Toolbar.textPageSizeCustom": "Aangepast paginaformaat",
|
||||||
"DE.Views.Toolbar.textPie": "Cirkel",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Platte tekst inhoud beheer toevoegen",
|
"DE.Views.Toolbar.textPlainControl": "Platte tekst inhoud beheer toevoegen",
|
||||||
"DE.Views.Toolbar.textPoint": "Spreiding",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Staand",
|
"DE.Views.Toolbar.textPortrait": "Staand",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Inhoud beheer verwijderen",
|
"DE.Views.Toolbar.textRemoveControl": "Inhoud beheer verwijderen",
|
||||||
"DE.Views.Toolbar.textRichControl": "Uitgebreide tekst inhoud beheer toevoegen",
|
"DE.Views.Toolbar.textRichControl": "Uitgebreide tekst inhoud beheer toevoegen",
|
||||||
"DE.Views.Toolbar.textRight": "Rechts:",
|
"DE.Views.Toolbar.textRight": "Rechts:",
|
||||||
"DE.Views.Toolbar.textStock": "Voorraad",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Doorhalen",
|
"DE.Views.Toolbar.textStrikeout": "Doorhalen",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Stijl verwijderen",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Stijl verwijderen",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Alle aangepaste stijlen verwijderen",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Alle aangepaste stijlen verwijderen",
|
||||||
|
@ -1900,7 +1892,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Bijwerken op basis van selectie",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Bijwerken op basis van selectie",
|
||||||
"DE.Views.Toolbar.textSubscript": "Subscript",
|
"DE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
"DE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"DE.Views.Toolbar.textSurface": "Oppervlak",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Samenwerking",
|
"DE.Views.Toolbar.textTabCollaboration": "Samenwerking",
|
||||||
"DE.Views.Toolbar.textTabFile": "Bestand",
|
"DE.Views.Toolbar.textTabFile": "Bestand",
|
||||||
"DE.Views.Toolbar.textTabHome": "Home",
|
"DE.Views.Toolbar.textTabHome": "Home",
|
||||||
|
|
|
@ -67,6 +67,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Zmień zakładki",
|
"Common.Controllers.ReviewChanges.textTabs": "Zmień zakładki",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Podkreśl",
|
"Common.Controllers.ReviewChanges.textUnderline": "Podkreśl",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Kontrola okna",
|
"Common.Controllers.ReviewChanges.textWidow": "Kontrola okna",
|
||||||
|
"Common.define.chartData.textArea": "Obszar",
|
||||||
|
"Common.define.chartData.textBar": "Pasek",
|
||||||
|
"Common.define.chartData.textColumn": "Kolumna",
|
||||||
|
"Common.define.chartData.textLine": "Liniowy",
|
||||||
|
"Common.define.chartData.textPie": "Kołowe",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Punktowy)",
|
||||||
|
"Common.define.chartData.textStock": "Zbiory",
|
||||||
|
"Common.define.chartData.textSurface": "Powierzchnia",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
|
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
|
||||||
|
@ -775,20 +783,12 @@
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Zakładki",
|
"DE.Views.BookmarksDialog.textTitle": "Zakładki",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Nazwa zakładki powinna zaczynać się literą i zawierać może ona tylko litery, liczby i znaki podkreślenia ",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Nazwa zakładki powinna zaczynać się literą i zawierać może ona tylko litery, liczby i znaki podkreślenia ",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane",
|
"DE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane",
|
||||||
"DE.Views.ChartSettings.textArea": "Obszar",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Pasek",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Zmień typ wykresu",
|
"DE.Views.ChartSettings.textChartType": "Zmień typ wykresu",
|
||||||
"DE.Views.ChartSettings.textColumn": "Kolumna",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Edytuj dane",
|
"DE.Views.ChartSettings.textEditData": "Edytuj dane",
|
||||||
"DE.Views.ChartSettings.textHeight": "Wysokość",
|
"DE.Views.ChartSettings.textHeight": "Wysokość",
|
||||||
"DE.Views.ChartSettings.textLine": "Liniowy",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Domyślny rozmiar",
|
"DE.Views.ChartSettings.textOriginalSize": "Domyślny rozmiar",
|
||||||
"DE.Views.ChartSettings.textPie": "Kołowe",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (Punktowy)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Rozmiar",
|
"DE.Views.ChartSettings.textSize": "Rozmiar",
|
||||||
"DE.Views.ChartSettings.textStock": "Zbiory",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Styl",
|
"DE.Views.ChartSettings.textStyle": "Styl",
|
||||||
"DE.Views.ChartSettings.textSurface": "Powierzchnia",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Odepnij od panelu",
|
"DE.Views.ChartSettings.textUndock": "Odepnij od panelu",
|
||||||
"DE.Views.ChartSettings.textWidth": "Szerokość",
|
"DE.Views.ChartSettings.textWidth": "Szerokość",
|
||||||
"DE.Views.ChartSettings.textWrap": "Styl zawijania",
|
"DE.Views.ChartSettings.textWrap": "Styl zawijania",
|
||||||
|
@ -1678,13 +1678,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Obraz z pliku",
|
"DE.Views.Toolbar.mniImageFromFile": "Obraz z pliku",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Obraz z URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Obraz z URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Brak wypełnienia",
|
"DE.Views.Toolbar.strMenuNoFill": "Brak wypełnienia",
|
||||||
"DE.Views.Toolbar.textArea": "Obszar",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automatyczny",
|
"DE.Views.Toolbar.textAutoColor": "Automatyczny",
|
||||||
"DE.Views.Toolbar.textBar": "Pasek",
|
|
||||||
"DE.Views.Toolbar.textBold": "Pogrubienie",
|
"DE.Views.Toolbar.textBold": "Pogrubienie",
|
||||||
"DE.Views.Toolbar.textBottom": "Dół:",
|
"DE.Views.Toolbar.textBottom": "Dół:",
|
||||||
"DE.Views.Toolbar.textCharts": "Wykresy",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Kolumna",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Niestandardowe kolumny",
|
"DE.Views.Toolbar.textColumnsCustom": "Niestandardowe kolumny",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Lewy",
|
"DE.Views.Toolbar.textColumnsLeft": "Lewy",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Jeden",
|
"DE.Views.Toolbar.textColumnsOne": "Jeden",
|
||||||
|
@ -1704,7 +1700,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Kursywa",
|
"DE.Views.Toolbar.textItalic": "Kursywa",
|
||||||
"DE.Views.Toolbar.textLandscape": "Krajobraz",
|
"DE.Views.Toolbar.textLandscape": "Krajobraz",
|
||||||
"DE.Views.Toolbar.textLeft": "Lewo:",
|
"DE.Views.Toolbar.textLeft": "Lewo:",
|
||||||
"DE.Views.Toolbar.textLine": "Wiersz",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Ostatni niestandardowy",
|
"DE.Views.Toolbar.textMarginsLast": "Ostatni niestandardowy",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Umiarkowany",
|
"DE.Views.Toolbar.textMarginsModerate": "Umiarkowany",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Wąski",
|
"DE.Views.Toolbar.textMarginsNarrow": "Wąski",
|
||||||
|
@ -1718,13 +1713,10 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Nieparzysta strona",
|
"DE.Views.Toolbar.textOddPage": "Nieparzysta strona",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Niestandardowe marginesy",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Niestandardowe marginesy",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Własny rozmiar strony",
|
"DE.Views.Toolbar.textPageSizeCustom": "Własny rozmiar strony",
|
||||||
"DE.Views.Toolbar.textPie": "Kołowe",
|
|
||||||
"DE.Views.Toolbar.textPoint": "XY (Punktowy)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Portret",
|
"DE.Views.Toolbar.textPortrait": "Portret",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Usuń kontrolę treści",
|
"DE.Views.Toolbar.textRemoveControl": "Usuń kontrolę treści",
|
||||||
"DE.Views.Toolbar.textRemWatermark": "Usuń znak wodny",
|
"DE.Views.Toolbar.textRemWatermark": "Usuń znak wodny",
|
||||||
"DE.Views.Toolbar.textRight": "Prawo:",
|
"DE.Views.Toolbar.textRight": "Prawo:",
|
||||||
"DE.Views.Toolbar.textStock": "Zbiory",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Skreślenie",
|
"DE.Views.Toolbar.textStrikeout": "Skreślenie",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Usuń styl",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Usuń styl",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Usuń wszystkie niestandardowe style",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Usuń wszystkie niestandardowe style",
|
||||||
|
@ -1734,7 +1726,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizuj z wyboru",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizuj z wyboru",
|
||||||
"DE.Views.Toolbar.textSubscript": "Indeks",
|
"DE.Views.Toolbar.textSubscript": "Indeks",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Indeks górny",
|
"DE.Views.Toolbar.textSuperscript": "Indeks górny",
|
||||||
"DE.Views.Toolbar.textSurface": "Powierzchnia",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Współpraca",
|
"DE.Views.Toolbar.textTabCollaboration": "Współpraca",
|
||||||
"DE.Views.Toolbar.textTabFile": "Plik",
|
"DE.Views.Toolbar.textTabFile": "Plik",
|
||||||
"DE.Views.Toolbar.textTabHome": "Narzędzia główne",
|
"DE.Views.Toolbar.textTabHome": "Narzędzia główne",
|
||||||
|
|
|
@ -63,6 +63,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
|
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
|
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
|
"Common.define.chartData.textArea": "Área",
|
||||||
|
"Common.define.chartData.textBar": "Barra",
|
||||||
|
"Common.define.chartData.textColumn": "Coluna",
|
||||||
|
"Common.define.chartData.textLine": "Linha",
|
||||||
|
"Common.define.chartData.textPie": "Gráfico de pizza",
|
||||||
|
"Common.define.chartData.textPoint": "Gráfico de pontos",
|
||||||
|
"Common.define.chartData.textStock": "Gráfico de ações",
|
||||||
|
"Common.define.chartData.textSurface": "Superfície",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
|
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
|
||||||
|
@ -744,20 +752,12 @@
|
||||||
"DE.Views.BookmarksDialog.textHidden": "Favoritos ocultos",
|
"DE.Views.BookmarksDialog.textHidden": "Favoritos ocultos",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Favoritos",
|
"DE.Views.BookmarksDialog.textTitle": "Favoritos",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas",
|
"DE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas",
|
||||||
"DE.Views.ChartSettings.textArea": "Área",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Barra",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico",
|
"DE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico",
|
||||||
"DE.Views.ChartSettings.textColumn": "Coluna",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Editar dados",
|
"DE.Views.ChartSettings.textEditData": "Editar dados",
|
||||||
"DE.Views.ChartSettings.textHeight": "Altura",
|
"DE.Views.ChartSettings.textHeight": "Altura",
|
||||||
"DE.Views.ChartSettings.textLine": "Linha",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Tamanho padrão",
|
"DE.Views.ChartSettings.textOriginalSize": "Tamanho padrão",
|
||||||
"DE.Views.ChartSettings.textPie": "Gráfico de pizza",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Gráfico de pontos",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Tamanho",
|
"DE.Views.ChartSettings.textSize": "Tamanho",
|
||||||
"DE.Views.ChartSettings.textStock": "Gráfico de ações",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Estilo",
|
"DE.Views.ChartSettings.textStyle": "Estilo",
|
||||||
"DE.Views.ChartSettings.textSurface": "Superfície",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Desencaixar do painel",
|
"DE.Views.ChartSettings.textUndock": "Desencaixar do painel",
|
||||||
"DE.Views.ChartSettings.textWidth": "Largura",
|
"DE.Views.ChartSettings.textWidth": "Largura",
|
||||||
"DE.Views.ChartSettings.textWrap": "Estilo da quebra automática",
|
"DE.Views.ChartSettings.textWrap": "Estilo da quebra automática",
|
||||||
|
@ -1633,13 +1633,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Imagem do arquivo",
|
"DE.Views.Toolbar.mniImageFromFile": "Imagem do arquivo",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Imagem da URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Imagem da URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Sem preenchimento",
|
"DE.Views.Toolbar.strMenuNoFill": "Sem preenchimento",
|
||||||
"DE.Views.Toolbar.textArea": "Área",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automático",
|
"DE.Views.Toolbar.textAutoColor": "Automático",
|
||||||
"DE.Views.Toolbar.textBar": "Barra",
|
|
||||||
"DE.Views.Toolbar.textBold": "Negrito",
|
"DE.Views.Toolbar.textBold": "Negrito",
|
||||||
"DE.Views.Toolbar.textBottom": "Inferior:",
|
"DE.Views.Toolbar.textBottom": "Inferior:",
|
||||||
"DE.Views.Toolbar.textCharts": "Gráficos",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Coluna",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Personalizar colunas",
|
"DE.Views.Toolbar.textColumnsCustom": "Personalizar colunas",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Esquerda",
|
"DE.Views.Toolbar.textColumnsLeft": "Esquerda",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Uma",
|
"DE.Views.Toolbar.textColumnsOne": "Uma",
|
||||||
|
@ -1658,7 +1654,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Itálico",
|
"DE.Views.Toolbar.textItalic": "Itálico",
|
||||||
"DE.Views.Toolbar.textLandscape": "Paisagem",
|
"DE.Views.Toolbar.textLandscape": "Paisagem",
|
||||||
"DE.Views.Toolbar.textLeft": "Esquerda:",
|
"DE.Views.Toolbar.textLeft": "Esquerda:",
|
||||||
"DE.Views.Toolbar.textLine": "Linha",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Últimos personalizados",
|
"DE.Views.Toolbar.textMarginsLast": "Últimos personalizados",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderado",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderado",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Estreito",
|
"DE.Views.Toolbar.textMarginsNarrow": "Estreito",
|
||||||
|
@ -1671,14 +1666,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Página ímpar",
|
"DE.Views.Toolbar.textOddPage": "Página ímpar",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Margens personalizadas",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Margens personalizadas",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Tamanho de página personalizado",
|
"DE.Views.Toolbar.textPageSizeCustom": "Tamanho de página personalizado",
|
||||||
"DE.Views.Toolbar.textPie": "Gráfico de pizza",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Adicionar Controle de Conteúdo de Texto sem formatação",
|
"DE.Views.Toolbar.textPlainControl": "Adicionar Controle de Conteúdo de Texto sem formatação",
|
||||||
"DE.Views.Toolbar.textPoint": "Gráfico de pontos",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Retrato ",
|
"DE.Views.Toolbar.textPortrait": "Retrato ",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Remover Controle de Conteúdo",
|
"DE.Views.Toolbar.textRemoveControl": "Remover Controle de Conteúdo",
|
||||||
"DE.Views.Toolbar.textRichControl": "Adicionar Controle de Conteúdo de Rich Text",
|
"DE.Views.Toolbar.textRichControl": "Adicionar Controle de Conteúdo de Rich Text",
|
||||||
"DE.Views.Toolbar.textRight": "Direita:",
|
"DE.Views.Toolbar.textRight": "Direita:",
|
||||||
"DE.Views.Toolbar.textStock": "Gráfico de ações",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Taxado",
|
"DE.Views.Toolbar.textStrikeout": "Taxado",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
||||||
|
@ -1688,7 +1680,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
|
||||||
"DE.Views.Toolbar.textSubscript": "Subscrito",
|
"DE.Views.Toolbar.textSubscript": "Subscrito",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Sobrescrito",
|
"DE.Views.Toolbar.textSuperscript": "Sobrescrito",
|
||||||
"DE.Views.Toolbar.textSurface": "Superfície",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Colaboração",
|
"DE.Views.Toolbar.textTabCollaboration": "Colaboração",
|
||||||
"DE.Views.Toolbar.textTabFile": "Arquivo",
|
"DE.Views.Toolbar.textTabFile": "Arquivo",
|
||||||
"DE.Views.Toolbar.textTabHome": "Página Inicial",
|
"DE.Views.Toolbar.textTabHome": "Página Inicial",
|
||||||
|
|
|
@ -230,6 +230,8 @@
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Используйте кнопку 'Сохранить' для синхронизации изменений, вносимых вами и другими пользователями.",
|
"Common.Views.ReviewChanges.strStrictDesc": "Используйте кнопку 'Сохранить' для синхронизации изменений, вносимых вами и другими пользователями.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Принять текущее изменение",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Принять текущее изменение",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Удалить комментарии",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Удалить текущие комментарии",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Показать историю версий",
|
"Common.Views.ReviewChanges.tipHistory": "Показать историю версий",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
|
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
|
||||||
|
@ -244,6 +246,11 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Чат",
|
"Common.Views.ReviewChanges.txtChat": "Чат",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Закрыть",
|
"Common.Views.ReviewChanges.txtClose": "Закрыть",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим совместного редактирования",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим совместного редактирования",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Удалить все комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Удалить текущие комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Удалить мои комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Удалить мои текущие комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Удалить",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Язык",
|
"Common.Views.ReviewChanges.txtDocLang": "Язык",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)",
|
"Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Измененный документ",
|
"Common.Views.ReviewChanges.txtFinalCap": "Измененный документ",
|
||||||
|
@ -308,6 +315,11 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи",
|
"Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Настройка подписи",
|
"Common.Views.SignSettingsDialog.textTitle": "Настройка подписи",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "Это поле необходимо заполнить",
|
"Common.Views.SignSettingsDialog.txtEmpty": "Это поле необходимо заполнить",
|
||||||
|
"Common.Views.SymbolTableDialog.textCode": "Код знака из Юникод (шестн.)",
|
||||||
|
"Common.Views.SymbolTableDialog.textFont": "Шрифт",
|
||||||
|
"Common.Views.SymbolTableDialog.textRange": "Набор",
|
||||||
|
"Common.Views.SymbolTableDialog.textRecent": "Ранее использовавшиеся символы",
|
||||||
|
"Common.Views.SymbolTableDialog.textTitle": "Символ",
|
||||||
"DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны.<br> Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.",
|
"DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны.<br> Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.",
|
||||||
"DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени",
|
"DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени",
|
||||||
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
|
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
|
||||||
|
@ -357,6 +369,7 @@
|
||||||
"DE.Controllers.Main.errorToken": "Токен безопасности документа имеет неправильный формат.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"DE.Controllers.Main.errorToken": "Токен безопасности документа имеет неправильный формат.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"DE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"DE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
"DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
||||||
|
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.<br>Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
"DE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
|
"DE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.",
|
||||||
|
@ -673,6 +686,7 @@
|
||||||
"DE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.<br>Введите числовое значение от 1 до 100",
|
"DE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.<br>Введите числовое значение от 1 до 100",
|
||||||
"DE.Controllers.Toolbar.textFraction": "Дроби",
|
"DE.Controllers.Toolbar.textFraction": "Дроби",
|
||||||
"DE.Controllers.Toolbar.textFunction": "Функции",
|
"DE.Controllers.Toolbar.textFunction": "Функции",
|
||||||
|
"DE.Controllers.Toolbar.textInsert": "Вставить",
|
||||||
"DE.Controllers.Toolbar.textIntegral": "Интегралы",
|
"DE.Controllers.Toolbar.textIntegral": "Интегралы",
|
||||||
"DE.Controllers.Toolbar.textLargeOperator": "Крупные операторы",
|
"DE.Controllers.Toolbar.textLargeOperator": "Крупные операторы",
|
||||||
"DE.Controllers.Toolbar.textLimitAndLog": "Пределы и логарифмы",
|
"DE.Controllers.Toolbar.textLimitAndLog": "Пределы и логарифмы",
|
||||||
|
@ -1051,20 +1065,12 @@
|
||||||
"DE.Views.CellsRemoveDialog.textRow": "Удалить всю строку",
|
"DE.Views.CellsRemoveDialog.textRow": "Удалить всю строку",
|
||||||
"DE.Views.CellsRemoveDialog.textTitle": "Удалить ячейки",
|
"DE.Views.CellsRemoveDialog.textTitle": "Удалить ячейки",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
"DE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
||||||
"DE.Views.ChartSettings.textArea": "С областями",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Линейчатая",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Изменить тип диаграммы",
|
"DE.Views.ChartSettings.textChartType": "Изменить тип диаграммы",
|
||||||
"DE.Views.ChartSettings.textColumn": "Гистограмма",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Изменить данные",
|
"DE.Views.ChartSettings.textEditData": "Изменить данные",
|
||||||
"DE.Views.ChartSettings.textHeight": "Высота",
|
"DE.Views.ChartSettings.textHeight": "Высота",
|
||||||
"DE.Views.ChartSettings.textLine": "График",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Реальный размер",
|
"DE.Views.ChartSettings.textOriginalSize": "Реальный размер",
|
||||||
"DE.Views.ChartSettings.textPie": "Круговая",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Точечная",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Размер",
|
"DE.Views.ChartSettings.textSize": "Размер",
|
||||||
"DE.Views.ChartSettings.textStock": "Биржевая",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Стиль",
|
"DE.Views.ChartSettings.textStyle": "Стиль",
|
||||||
"DE.Views.ChartSettings.textSurface": "Поверхность",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Открепить от панели",
|
"DE.Views.ChartSettings.textUndock": "Открепить от панели",
|
||||||
"DE.Views.ChartSettings.textWidth": "Ширина",
|
"DE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"DE.Views.ChartSettings.textWrap": "Стиль обтекания",
|
"DE.Views.ChartSettings.textWrap": "Стиль обтекания",
|
||||||
|
@ -2058,6 +2064,7 @@
|
||||||
"DE.Views.TextArtSettings.textTemplate": "Шаблон",
|
"DE.Views.TextArtSettings.textTemplate": "Шаблон",
|
||||||
"DE.Views.TextArtSettings.textTransform": "Трансформация",
|
"DE.Views.TextArtSettings.textTransform": "Трансформация",
|
||||||
"DE.Views.TextArtSettings.txtNoBorders": "Без обводки",
|
"DE.Views.TextArtSettings.txtNoBorders": "Без обводки",
|
||||||
|
"DE.Views.Toolbar.capBtnAddComment": "Добавить комментарий",
|
||||||
"DE.Views.Toolbar.capBtnBlankPage": "Пустая страница",
|
"DE.Views.Toolbar.capBtnBlankPage": "Пустая страница",
|
||||||
"DE.Views.Toolbar.capBtnColumns": "Колонки",
|
"DE.Views.Toolbar.capBtnColumns": "Колонки",
|
||||||
"DE.Views.Toolbar.capBtnComment": "Комментарий",
|
"DE.Views.Toolbar.capBtnComment": "Комментарий",
|
||||||
|
@ -2069,6 +2076,7 @@
|
||||||
"DE.Views.Toolbar.capBtnInsImage": "Изображение",
|
"DE.Views.Toolbar.capBtnInsImage": "Изображение",
|
||||||
"DE.Views.Toolbar.capBtnInsPagebreak": "Разрывы",
|
"DE.Views.Toolbar.capBtnInsPagebreak": "Разрывы",
|
||||||
"DE.Views.Toolbar.capBtnInsShape": "Фигура",
|
"DE.Views.Toolbar.capBtnInsShape": "Фигура",
|
||||||
|
"DE.Views.Toolbar.capBtnInsSymbol": "Символ",
|
||||||
"DE.Views.Toolbar.capBtnInsTable": "Таблица",
|
"DE.Views.Toolbar.capBtnInsTable": "Таблица",
|
||||||
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
|
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
|
||||||
"DE.Views.Toolbar.capBtnInsTextbox": "Надпись",
|
"DE.Views.Toolbar.capBtnInsTextbox": "Надпись",
|
||||||
|
@ -2093,13 +2101,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "Изображение из хранилища",
|
"DE.Views.Toolbar.mniImageFromStorage": "Изображение из хранилища",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Изображение по URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Изображение по URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Без заливки",
|
"DE.Views.Toolbar.strMenuNoFill": "Без заливки",
|
||||||
"DE.Views.Toolbar.textArea": "С областями",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Автоматический",
|
"DE.Views.Toolbar.textAutoColor": "Автоматический",
|
||||||
"DE.Views.Toolbar.textBar": "Линейчатая",
|
|
||||||
"DE.Views.Toolbar.textBold": "Полужирный",
|
"DE.Views.Toolbar.textBold": "Полужирный",
|
||||||
"DE.Views.Toolbar.textBottom": "Нижнее: ",
|
"DE.Views.Toolbar.textBottom": "Нижнее: ",
|
||||||
"DE.Views.Toolbar.textCharts": "Диаграммы",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Гистограмма",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Настраиваемые колонки",
|
"DE.Views.Toolbar.textColumnsCustom": "Настраиваемые колонки",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Слева",
|
"DE.Views.Toolbar.textColumnsLeft": "Слева",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Одна",
|
"DE.Views.Toolbar.textColumnsOne": "Одна",
|
||||||
|
@ -2119,7 +2123,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Курсив",
|
"DE.Views.Toolbar.textItalic": "Курсив",
|
||||||
"DE.Views.Toolbar.textLandscape": "Альбомная",
|
"DE.Views.Toolbar.textLandscape": "Альбомная",
|
||||||
"DE.Views.Toolbar.textLeft": "Левое: ",
|
"DE.Views.Toolbar.textLeft": "Левое: ",
|
||||||
"DE.Views.Toolbar.textLine": "График",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Последние настраиваемые",
|
"DE.Views.Toolbar.textMarginsLast": "Последние настраиваемые",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Средние",
|
"DE.Views.Toolbar.textMarginsModerate": "Средние",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Узкие",
|
"DE.Views.Toolbar.textMarginsNarrow": "Узкие",
|
||||||
|
@ -2133,15 +2136,12 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "С нечетной страницы",
|
"DE.Views.Toolbar.textOddPage": "С нечетной страницы",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Настраиваемые поля",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Настраиваемые поля",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Особый размер страницы",
|
"DE.Views.Toolbar.textPageSizeCustom": "Особый размер страницы",
|
||||||
"DE.Views.Toolbar.textPie": "Круговая",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "Вставить элемент управления \"Обычный текст\"",
|
"DE.Views.Toolbar.textPlainControl": "Вставить элемент управления \"Обычный текст\"",
|
||||||
"DE.Views.Toolbar.textPoint": "Точечная",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Книжная",
|
"DE.Views.Toolbar.textPortrait": "Книжная",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Удалить элемент управления содержимым",
|
"DE.Views.Toolbar.textRemoveControl": "Удалить элемент управления содержимым",
|
||||||
"DE.Views.Toolbar.textRemWatermark": "Удалить подложку",
|
"DE.Views.Toolbar.textRemWatermark": "Удалить подложку",
|
||||||
"DE.Views.Toolbar.textRichControl": "Вставить элемент управления \"Форматированный текст\"",
|
"DE.Views.Toolbar.textRichControl": "Вставить элемент управления \"Форматированный текст\"",
|
||||||
"DE.Views.Toolbar.textRight": "Правое: ",
|
"DE.Views.Toolbar.textRight": "Правое: ",
|
||||||
"DE.Views.Toolbar.textStock": "Биржевая",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Зачеркнутый",
|
"DE.Views.Toolbar.textStrikeout": "Зачеркнутый",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Удалить стиль",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Удалить стиль",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Удалить все пользовательские стили",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Удалить все пользовательские стили",
|
||||||
|
@ -2151,7 +2151,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Обновить из выделенного фрагмента",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Обновить из выделенного фрагмента",
|
||||||
"DE.Views.Toolbar.textSubscript": "Подстрочные знаки",
|
"DE.Views.Toolbar.textSubscript": "Подстрочные знаки",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
|
"DE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
|
||||||
"DE.Views.Toolbar.textSurface": "Поверхность",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Совместная работа",
|
"DE.Views.Toolbar.textTabCollaboration": "Совместная работа",
|
||||||
"DE.Views.Toolbar.textTabFile": "Файл",
|
"DE.Views.Toolbar.textTabFile": "Файл",
|
||||||
"DE.Views.Toolbar.textTabHome": "Главная",
|
"DE.Views.Toolbar.textTabHome": "Главная",
|
||||||
|
@ -2196,6 +2195,7 @@
|
||||||
"DE.Views.Toolbar.tipInsertImage": "Вставить изображение",
|
"DE.Views.Toolbar.tipInsertImage": "Вставить изображение",
|
||||||
"DE.Views.Toolbar.tipInsertNum": "Вставить номер страницы",
|
"DE.Views.Toolbar.tipInsertNum": "Вставить номер страницы",
|
||||||
"DE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
|
"DE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
|
||||||
|
"DE.Views.Toolbar.tipInsertSymbol": "Вставить символ",
|
||||||
"DE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
|
"DE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
|
||||||
"DE.Views.Toolbar.tipInsertText": "Вставить надпись",
|
"DE.Views.Toolbar.tipInsertText": "Вставить надпись",
|
||||||
"DE.Views.Toolbar.tipInsertTextArt": "Вставить объект Text Art",
|
"DE.Views.Toolbar.tipInsertTextArt": "Вставить объект Text Art",
|
||||||
|
|
|
@ -63,6 +63,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Zmeniť tabuľky",
|
"Common.Controllers.ReviewChanges.textTabs": "Zmeniť tabuľky",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Podčiarknuť",
|
"Common.Controllers.ReviewChanges.textUnderline": "Podčiarknuť",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Ovládanie okien",
|
"Common.Controllers.ReviewChanges.textWidow": "Ovládanie okien",
|
||||||
|
"Common.define.chartData.textArea": "Plošný graf",
|
||||||
|
"Common.define.chartData.textBar": "Pruhový graf",
|
||||||
|
"Common.define.chartData.textColumn": "Stĺpec",
|
||||||
|
"Common.define.chartData.textLine": "Čiara/líniový graf",
|
||||||
|
"Common.define.chartData.textPie": "Koláčový graf",
|
||||||
|
"Common.define.chartData.textPoint": "Bodový graf",
|
||||||
|
"Common.define.chartData.textStock": "Akcie/burzový graf",
|
||||||
|
"Common.define.chartData.textSurface": "Povrch",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
|
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
|
||||||
|
@ -747,20 +755,12 @@
|
||||||
"DE.Views.BookmarksDialog.textDelete": "Vymazať",
|
"DE.Views.BookmarksDialog.textDelete": "Vymazať",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Záložky",
|
"DE.Views.BookmarksDialog.textTitle": "Záložky",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
|
"DE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
|
||||||
"DE.Views.ChartSettings.textArea": "Plošný graf",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Pruhový graf",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Zmeniť typ grafu",
|
"DE.Views.ChartSettings.textChartType": "Zmeniť typ grafu",
|
||||||
"DE.Views.ChartSettings.textColumn": "Stĺpec",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Upravovať dáta",
|
"DE.Views.ChartSettings.textEditData": "Upravovať dáta",
|
||||||
"DE.Views.ChartSettings.textHeight": "Výška",
|
"DE.Views.ChartSettings.textHeight": "Výška",
|
||||||
"DE.Views.ChartSettings.textLine": "Čiara/líniový graf",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Predvolená veľkosť",
|
"DE.Views.ChartSettings.textOriginalSize": "Predvolená veľkosť",
|
||||||
"DE.Views.ChartSettings.textPie": "Koláčový graf",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Bodový graf",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Veľkosť",
|
"DE.Views.ChartSettings.textSize": "Veľkosť",
|
||||||
"DE.Views.ChartSettings.textStock": "Akcie/burzový graf",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Štýl",
|
"DE.Views.ChartSettings.textStyle": "Štýl",
|
||||||
"DE.Views.ChartSettings.textSurface": "Povrch",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Odpojiť z panelu",
|
"DE.Views.ChartSettings.textUndock": "Odpojiť z panelu",
|
||||||
"DE.Views.ChartSettings.textWidth": "Šírka",
|
"DE.Views.ChartSettings.textWidth": "Šírka",
|
||||||
"DE.Views.ChartSettings.textWrap": "Obtekanie textu",
|
"DE.Views.ChartSettings.textWrap": "Obtekanie textu",
|
||||||
|
@ -1580,13 +1580,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru",
|
"DE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy",
|
"DE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Bez výplne",
|
"DE.Views.Toolbar.strMenuNoFill": "Bez výplne",
|
||||||
"DE.Views.Toolbar.textArea": "Plošný graf",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Automaticky",
|
"DE.Views.Toolbar.textAutoColor": "Automaticky",
|
||||||
"DE.Views.Toolbar.textBar": "Pruhový graf",
|
|
||||||
"DE.Views.Toolbar.textBold": "Tučné",
|
"DE.Views.Toolbar.textBold": "Tučné",
|
||||||
"DE.Views.Toolbar.textBottom": "Dole",
|
"DE.Views.Toolbar.textBottom": "Dole",
|
||||||
"DE.Views.Toolbar.textCharts": "Grafy",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Stĺpec",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Vlastné stĺpce",
|
"DE.Views.Toolbar.textColumnsCustom": "Vlastné stĺpce",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Vľavo",
|
"DE.Views.Toolbar.textColumnsLeft": "Vľavo",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Jeden",
|
"DE.Views.Toolbar.textColumnsOne": "Jeden",
|
||||||
|
@ -1605,7 +1601,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Kurzíva",
|
"DE.Views.Toolbar.textItalic": "Kurzíva",
|
||||||
"DE.Views.Toolbar.textLandscape": "Na šírku",
|
"DE.Views.Toolbar.textLandscape": "Na šírku",
|
||||||
"DE.Views.Toolbar.textLeft": "Vľavo:",
|
"DE.Views.Toolbar.textLeft": "Vľavo:",
|
||||||
"DE.Views.Toolbar.textLine": "Čiara/líniový graf",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Posledná úprava",
|
"DE.Views.Toolbar.textMarginsLast": "Posledná úprava",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Primeraný/pomerne malý",
|
"DE.Views.Toolbar.textMarginsModerate": "Primeraný/pomerne malý",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Úzky",
|
"DE.Views.Toolbar.textMarginsNarrow": "Úzky",
|
||||||
|
@ -1618,11 +1613,8 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Nepárna strana",
|
"DE.Views.Toolbar.textOddPage": "Nepárna strana",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Vlastné okraje",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Vlastné okraje",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Vlastná veľkosť stránky",
|
"DE.Views.Toolbar.textPageSizeCustom": "Vlastná veľkosť stránky",
|
||||||
"DE.Views.Toolbar.textPie": "Koláčový graf",
|
|
||||||
"DE.Views.Toolbar.textPoint": "Bodový graf",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Na výšku",
|
"DE.Views.Toolbar.textPortrait": "Na výšku",
|
||||||
"DE.Views.Toolbar.textRight": "Vpravo:",
|
"DE.Views.Toolbar.textRight": "Vpravo:",
|
||||||
"DE.Views.Toolbar.textStock": "Akcie/burzový graf",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Prečiarknuť",
|
"DE.Views.Toolbar.textStrikeout": "Prečiarknuť",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Odstrániť štýl",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Odstrániť štýl",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Odstrániť všetky vlastné štýly",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Odstrániť všetky vlastné štýly",
|
||||||
|
@ -1632,7 +1624,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizovať z výberu",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizovať z výberu",
|
||||||
"DE.Views.Toolbar.textSubscript": "Dolný index",
|
"DE.Views.Toolbar.textSubscript": "Dolný index",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Horný index",
|
"DE.Views.Toolbar.textSuperscript": "Horný index",
|
||||||
"DE.Views.Toolbar.textSurface": "Povrch",
|
|
||||||
"DE.Views.Toolbar.textTabFile": "Súbor",
|
"DE.Views.Toolbar.textTabFile": "Súbor",
|
||||||
"DE.Views.Toolbar.textTabHome": "Hlavná stránka",
|
"DE.Views.Toolbar.textTabHome": "Hlavná stránka",
|
||||||
"DE.Views.Toolbar.textTabInsert": "Vložiť",
|
"DE.Views.Toolbar.textTabInsert": "Vložiť",
|
||||||
|
|
|
@ -63,6 +63,13 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
|
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
|
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
|
"Common.define.chartData.textArea": "Ploščinski grafikon",
|
||||||
|
"Common.define.chartData.textBar": "Stolpični grafikon",
|
||||||
|
"Common.define.chartData.textColumn": "Stolpični grafikon",
|
||||||
|
"Common.define.chartData.textLine": "Vrstični grafikon",
|
||||||
|
"Common.define.chartData.textPie": "Tortni grafikon",
|
||||||
|
"Common.define.chartData.textPoint": "Točkovni grafikon",
|
||||||
|
"Common.define.chartData.textStock": "Založni grafikon",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Ni mej",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Ni mej",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
|
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
|
||||||
|
@ -586,18 +593,11 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Prikaži napredne nastavitve",
|
"DE.Views.ChartSettings.textAdvanced": "Prikaži napredne nastavitve",
|
||||||
"DE.Views.ChartSettings.textArea": "Ploščinski grafikon",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Stolpični grafikon",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice",
|
"DE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice",
|
||||||
"DE.Views.ChartSettings.textColumn": "Stolpični grafikon",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Uredi podatke",
|
"DE.Views.ChartSettings.textEditData": "Uredi podatke",
|
||||||
"DE.Views.ChartSettings.textHeight": "Višina",
|
"DE.Views.ChartSettings.textHeight": "Višina",
|
||||||
"DE.Views.ChartSettings.textLine": "Vrstični grafikon",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Privzeta velikost",
|
"DE.Views.ChartSettings.textOriginalSize": "Privzeta velikost",
|
||||||
"DE.Views.ChartSettings.textPie": "Tortni grafikon",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Točkovni grafikon",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Velikost",
|
"DE.Views.ChartSettings.textSize": "Velikost",
|
||||||
"DE.Views.ChartSettings.textStock": "Založni grafikon",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Slog",
|
"DE.Views.ChartSettings.textStyle": "Slog",
|
||||||
"DE.Views.ChartSettings.textUndock": "Odklopi s plošče",
|
"DE.Views.ChartSettings.textUndock": "Odklopi s plošče",
|
||||||
"DE.Views.ChartSettings.textWidth": "Širina",
|
"DE.Views.ChartSettings.textWidth": "Širina",
|
||||||
|
@ -1304,12 +1304,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Slika z datoteke",
|
"DE.Views.Toolbar.mniImageFromFile": "Slika z datoteke",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Slika z URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Slika z URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Ni polnila",
|
"DE.Views.Toolbar.strMenuNoFill": "Ni polnila",
|
||||||
"DE.Views.Toolbar.textArea": "Ploščinski grafikon",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Samodejen",
|
"DE.Views.Toolbar.textAutoColor": "Samodejen",
|
||||||
"DE.Views.Toolbar.textBar": "Stolpični grafikon",
|
|
||||||
"DE.Views.Toolbar.textBold": "Krepko",
|
"DE.Views.Toolbar.textBold": "Krepko",
|
||||||
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
||||||
"DE.Views.Toolbar.textColumn": "Stolpični grafikon",
|
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "One",
|
"DE.Views.Toolbar.textColumnsOne": "One",
|
||||||
"DE.Views.Toolbar.textColumnsRight": "Right",
|
"DE.Views.Toolbar.textColumnsRight": "Right",
|
||||||
|
@ -1325,7 +1322,6 @@
|
||||||
"DE.Views.Toolbar.textInText": "v Besedilu",
|
"DE.Views.Toolbar.textInText": "v Besedilu",
|
||||||
"DE.Views.Toolbar.textItalic": "Poševno",
|
"DE.Views.Toolbar.textItalic": "Poševno",
|
||||||
"DE.Views.Toolbar.textLeft": "Left: ",
|
"DE.Views.Toolbar.textLeft": "Left: ",
|
||||||
"DE.Views.Toolbar.textLine": "Vrstični grafikon",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
||||||
|
@ -1337,10 +1333,7 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Čudna stran",
|
"DE.Views.Toolbar.textOddPage": "Čudna stran",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
||||||
"DE.Views.Toolbar.textPie": "Tortni grafikon",
|
|
||||||
"DE.Views.Toolbar.textPoint": "Točkovni grafikon",
|
|
||||||
"DE.Views.Toolbar.textRight": "Right: ",
|
"DE.Views.Toolbar.textRight": "Right: ",
|
||||||
"DE.Views.Toolbar.textStock": "Založni grafikon",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Prečrtaj",
|
"DE.Views.Toolbar.textStrikeout": "Prečrtaj",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
||||||
|
|
|
@ -63,6 +63,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
|
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
|
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
|
||||||
|
"Common.define.chartData.textArea": "Bölge Grafiği",
|
||||||
|
"Common.define.chartData.textBar": "Çubuk grafik",
|
||||||
|
"Common.define.chartData.textColumn": "Sütun grafik",
|
||||||
|
"Common.define.chartData.textLine": "Çizgi grafiği",
|
||||||
|
"Common.define.chartData.textPie": "Dilim grafik",
|
||||||
|
"Common.define.chartData.textPoint": "Nokta grafiği",
|
||||||
|
"Common.define.chartData.textStock": "Stok Grafiği",
|
||||||
|
"Common.define.chartData.textSurface": "Yüzey",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sınır yok",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sınır yok",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
|
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
|
||||||
|
@ -722,20 +730,12 @@
|
||||||
"DE.Views.BookmarksDialog.textDelete": "Sil",
|
"DE.Views.BookmarksDialog.textDelete": "Sil",
|
||||||
"DE.Views.BookmarksDialog.textName": "İsim",
|
"DE.Views.BookmarksDialog.textName": "İsim",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Gelişmiş ayarları göster",
|
"DE.Views.ChartSettings.textAdvanced": "Gelişmiş ayarları göster",
|
||||||
"DE.Views.ChartSettings.textArea": "Bölge Grafiği",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Çubuk grafik",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir",
|
"DE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir",
|
||||||
"DE.Views.ChartSettings.textColumn": "Sütun grafik",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Veri düzenle",
|
"DE.Views.ChartSettings.textEditData": "Veri düzenle",
|
||||||
"DE.Views.ChartSettings.textHeight": "Yükseklik",
|
"DE.Views.ChartSettings.textHeight": "Yükseklik",
|
||||||
"DE.Views.ChartSettings.textLine": "Çizgi grafiği",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Varsayılan Boyut",
|
"DE.Views.ChartSettings.textOriginalSize": "Varsayılan Boyut",
|
||||||
"DE.Views.ChartSettings.textPie": "Dilim grafik",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "Nokta grafiği",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Boyut",
|
"DE.Views.ChartSettings.textSize": "Boyut",
|
||||||
"DE.Views.ChartSettings.textStock": "Stok Grafiği",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Stil",
|
"DE.Views.ChartSettings.textStyle": "Stil",
|
||||||
"DE.Views.ChartSettings.textSurface": "Yüzey",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Panelden çıkar",
|
"DE.Views.ChartSettings.textUndock": "Panelden çıkar",
|
||||||
"DE.Views.ChartSettings.textWidth": "Genişlik",
|
"DE.Views.ChartSettings.textWidth": "Genişlik",
|
||||||
"DE.Views.ChartSettings.textWrap": "Kaydırma Stili",
|
"DE.Views.ChartSettings.textWrap": "Kaydırma Stili",
|
||||||
|
@ -1552,13 +1552,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Dosyadan resim",
|
"DE.Views.Toolbar.mniImageFromFile": "Dosyadan resim",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "URL'den resim",
|
"DE.Views.Toolbar.mniImageFromUrl": "URL'den resim",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Dolgu Yok",
|
"DE.Views.Toolbar.strMenuNoFill": "Dolgu Yok",
|
||||||
"DE.Views.Toolbar.textArea": "Bölge Grafiği",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Otomatik",
|
"DE.Views.Toolbar.textAutoColor": "Otomatik",
|
||||||
"DE.Views.Toolbar.textBar": "Çubuk grafik",
|
|
||||||
"DE.Views.Toolbar.textBold": "Kalın",
|
"DE.Views.Toolbar.textBold": "Kalın",
|
||||||
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
"DE.Views.Toolbar.textBottom": "Bottom: ",
|
||||||
"DE.Views.Toolbar.textCharts": "Grafikler",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Sütun grafik",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Özel Sütunlar",
|
"DE.Views.Toolbar.textColumnsCustom": "Özel Sütunlar",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
"DE.Views.Toolbar.textColumnsLeft": "Left",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "One",
|
"DE.Views.Toolbar.textColumnsOne": "One",
|
||||||
|
@ -1577,7 +1573,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "İtalik",
|
"DE.Views.Toolbar.textItalic": "İtalik",
|
||||||
"DE.Views.Toolbar.textLandscape": "Yatay",
|
"DE.Views.Toolbar.textLandscape": "Yatay",
|
||||||
"DE.Views.Toolbar.textLeft": "Left: ",
|
"DE.Views.Toolbar.textLeft": "Left: ",
|
||||||
"DE.Views.Toolbar.textLine": "Çizgi grafiği",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
||||||
|
@ -1590,11 +1585,8 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Tek Sayfa",
|
"DE.Views.Toolbar.textOddPage": "Tek Sayfa",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
"DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size",
|
||||||
"DE.Views.Toolbar.textPie": "Dilim grafik",
|
|
||||||
"DE.Views.Toolbar.textPoint": "Nokta grafiği",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Dikey",
|
"DE.Views.Toolbar.textPortrait": "Dikey",
|
||||||
"DE.Views.Toolbar.textRight": "Right: ",
|
"DE.Views.Toolbar.textRight": "Right: ",
|
||||||
"DE.Views.Toolbar.textStock": "Stok Grafiği",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Üstü çizili",
|
"DE.Views.Toolbar.textStrikeout": "Üstü çizili",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
|
||||||
|
@ -1604,7 +1596,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
|
||||||
"DE.Views.Toolbar.textSubscript": "Altsimge",
|
"DE.Views.Toolbar.textSubscript": "Altsimge",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Üstsimge",
|
"DE.Views.Toolbar.textSuperscript": "Üstsimge",
|
||||||
"DE.Views.Toolbar.textSurface": "Yüzey",
|
|
||||||
"DE.Views.Toolbar.textTabFile": "Dosya",
|
"DE.Views.Toolbar.textTabFile": "Dosya",
|
||||||
"DE.Views.Toolbar.textTabHome": "Ana Sayfa",
|
"DE.Views.Toolbar.textTabHome": "Ana Sayfa",
|
||||||
"DE.Views.Toolbar.textTabInsert": "Ekle",
|
"DE.Views.Toolbar.textTabInsert": "Ekle",
|
||||||
|
|
|
@ -63,6 +63,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Змінити вкладки",
|
"Common.Controllers.ReviewChanges.textTabs": "Змінити вкладки",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Підкреслений",
|
"Common.Controllers.ReviewChanges.textUnderline": "Підкреслений",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Контроль над",
|
"Common.Controllers.ReviewChanges.textWidow": "Контроль над",
|
||||||
|
"Common.define.chartData.textArea": "Площа",
|
||||||
|
"Common.define.chartData.textBar": "Вставити",
|
||||||
|
"Common.define.chartData.textColumn": "Колона",
|
||||||
|
"Common.define.chartData.textLine": "Лінія",
|
||||||
|
"Common.define.chartData.textPie": "Пиріг",
|
||||||
|
"Common.define.chartData.textPoint": "XY (розсіювання)",
|
||||||
|
"Common.define.chartData.textStock": "Запас",
|
||||||
|
"Common.define.chartData.textSurface": "Поверхня",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
|
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
|
||||||
|
@ -689,20 +697,12 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "ксі",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "ксі",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Зета",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Зета",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування",
|
"DE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування",
|
||||||
"DE.Views.ChartSettings.textArea": "Площа",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Вставити",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Змінити тип діаграми",
|
"DE.Views.ChartSettings.textChartType": "Змінити тип діаграми",
|
||||||
"DE.Views.ChartSettings.textColumn": "Колона",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Редагувати дату",
|
"DE.Views.ChartSettings.textEditData": "Редагувати дату",
|
||||||
"DE.Views.ChartSettings.textHeight": "Висота",
|
"DE.Views.ChartSettings.textHeight": "Висота",
|
||||||
"DE.Views.ChartSettings.textLine": "Лінія",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "За замовчуванням",
|
"DE.Views.ChartSettings.textOriginalSize": "За замовчуванням",
|
||||||
"DE.Views.ChartSettings.textPie": "Пиріг",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (розсіювання)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Розмір",
|
"DE.Views.ChartSettings.textSize": "Розмір",
|
||||||
"DE.Views.ChartSettings.textStock": "Запас",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Стиль",
|
"DE.Views.ChartSettings.textStyle": "Стиль",
|
||||||
"DE.Views.ChartSettings.textSurface": "Поверхня",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Скасувати з панелі",
|
"DE.Views.ChartSettings.textUndock": "Скасувати з панелі",
|
||||||
"DE.Views.ChartSettings.textWidth": "Ширина",
|
"DE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"DE.Views.ChartSettings.textWrap": "Стиль упаковки",
|
"DE.Views.ChartSettings.textWrap": "Стиль упаковки",
|
||||||
|
@ -1508,13 +1508,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Картинка з файлу",
|
"DE.Views.Toolbar.mniImageFromFile": "Картинка з файлу",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Зображення з URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Зображення з URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Немає заповнення",
|
"DE.Views.Toolbar.strMenuNoFill": "Немає заповнення",
|
||||||
"DE.Views.Toolbar.textArea": "Площа",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Автоматично",
|
"DE.Views.Toolbar.textAutoColor": "Автоматично",
|
||||||
"DE.Views.Toolbar.textBar": "Риска",
|
|
||||||
"DE.Views.Toolbar.textBold": "Жирний",
|
"DE.Views.Toolbar.textBold": "Жирний",
|
||||||
"DE.Views.Toolbar.textBottom": "Внизу:",
|
"DE.Views.Toolbar.textBottom": "Внизу:",
|
||||||
"DE.Views.Toolbar.textCharts": "Діаграми",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Колона",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Спеціальні стовпці",
|
"DE.Views.Toolbar.textColumnsCustom": "Спеціальні стовпці",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Лівий",
|
"DE.Views.Toolbar.textColumnsLeft": "Лівий",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Один",
|
"DE.Views.Toolbar.textColumnsOne": "Один",
|
||||||
|
@ -1533,7 +1529,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Курсив",
|
"DE.Views.Toolbar.textItalic": "Курсив",
|
||||||
"DE.Views.Toolbar.textLandscape": "ландшафт",
|
"DE.Views.Toolbar.textLandscape": "ландшафт",
|
||||||
"DE.Views.Toolbar.textLeft": "Вліво:",
|
"DE.Views.Toolbar.textLeft": "Вліво:",
|
||||||
"DE.Views.Toolbar.textLine": "Лінія",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Останній користувач",
|
"DE.Views.Toolbar.textMarginsLast": "Останній користувач",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Помірний",
|
"DE.Views.Toolbar.textMarginsModerate": "Помірний",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Вузький",
|
"DE.Views.Toolbar.textMarginsNarrow": "Вузький",
|
||||||
|
@ -1546,11 +1541,8 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Непарна сторінка",
|
"DE.Views.Toolbar.textOddPage": "Непарна сторінка",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Користувацькі поля",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Користувацькі поля",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Спеціальний розмір сторінки",
|
"DE.Views.Toolbar.textPageSizeCustom": "Спеціальний розмір сторінки",
|
||||||
"DE.Views.Toolbar.textPie": "Пиріг",
|
|
||||||
"DE.Views.Toolbar.textPoint": "XY (розсіювання)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Портрет",
|
"DE.Views.Toolbar.textPortrait": "Портрет",
|
||||||
"DE.Views.Toolbar.textRight": "Право:",
|
"DE.Views.Toolbar.textRight": "Право:",
|
||||||
"DE.Views.Toolbar.textStock": "Запас",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Викреслити",
|
"DE.Views.Toolbar.textStrikeout": "Викреслити",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Видалити стиль",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Видалити стиль",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Видалити всі власні стилі",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Видалити всі власні стилі",
|
||||||
|
@ -1560,7 +1552,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Оновлення від вибору",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Оновлення від вибору",
|
||||||
"DE.Views.Toolbar.textSubscript": "Підрядковий",
|
"DE.Views.Toolbar.textSubscript": "Підрядковий",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Надрядковий",
|
"DE.Views.Toolbar.textSuperscript": "Надрядковий",
|
||||||
"DE.Views.Toolbar.textSurface": "Поверхня",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "Співпраця",
|
"DE.Views.Toolbar.textTabCollaboration": "Співпраця",
|
||||||
"DE.Views.Toolbar.textTabFile": "Файл",
|
"DE.Views.Toolbar.textTabFile": "Файл",
|
||||||
"DE.Views.Toolbar.textTabHome": "Головна",
|
"DE.Views.Toolbar.textTabHome": "Головна",
|
||||||
|
|
|
@ -63,6 +63,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "Thay đổi tab",
|
"Common.Controllers.ReviewChanges.textTabs": "Thay đổi tab",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "Gạch chân",
|
"Common.Controllers.ReviewChanges.textUnderline": "Gạch chân",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "Kiểm soát dòng lẻ cuối trang trước",
|
"Common.Controllers.ReviewChanges.textWidow": "Kiểm soát dòng lẻ cuối trang trước",
|
||||||
|
"Common.define.chartData.textArea": "Vùng",
|
||||||
|
"Common.define.chartData.textBar": "Gạch",
|
||||||
|
"Common.define.chartData.textColumn": "Cột",
|
||||||
|
"Common.define.chartData.textLine": "Đường kẻ",
|
||||||
|
"Common.define.chartData.textPie": "Hình bánh",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Phân tán)",
|
||||||
|
"Common.define.chartData.textStock": "Cổ phiếu",
|
||||||
|
"Common.define.chartData.textSurface": "Bề mặt",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Không viền",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Không viền",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
|
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
|
||||||
|
@ -686,20 +694,12 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Hiển thị Cài đặt Nâng cao",
|
"DE.Views.ChartSettings.textAdvanced": "Hiển thị Cài đặt Nâng cao",
|
||||||
"DE.Views.ChartSettings.textArea": "Vùng",
|
|
||||||
"DE.Views.ChartSettings.textBar": "Gạch",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "Thay đổi Loại biểu đồ",
|
"DE.Views.ChartSettings.textChartType": "Thay đổi Loại biểu đồ",
|
||||||
"DE.Views.ChartSettings.textColumn": "Cột",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "Chỉnh sửa Dữ liệu",
|
"DE.Views.ChartSettings.textEditData": "Chỉnh sửa Dữ liệu",
|
||||||
"DE.Views.ChartSettings.textHeight": "Chiều cao",
|
"DE.Views.ChartSettings.textHeight": "Chiều cao",
|
||||||
"DE.Views.ChartSettings.textLine": "Đường kẻ",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Kích thước mặc định",
|
"DE.Views.ChartSettings.textOriginalSize": "Kích thước mặc định",
|
||||||
"DE.Views.ChartSettings.textPie": "Hình bánh",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (Phân tán)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "Kích thước",
|
"DE.Views.ChartSettings.textSize": "Kích thước",
|
||||||
"DE.Views.ChartSettings.textStock": "Cổ phiếu",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "Kiểu",
|
"DE.Views.ChartSettings.textStyle": "Kiểu",
|
||||||
"DE.Views.ChartSettings.textSurface": "Bề mặt",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "Tháo khỏi bảng điều khiển",
|
"DE.Views.ChartSettings.textUndock": "Tháo khỏi bảng điều khiển",
|
||||||
"DE.Views.ChartSettings.textWidth": "Chiều rộng",
|
"DE.Views.ChartSettings.textWidth": "Chiều rộng",
|
||||||
"DE.Views.ChartSettings.textWrap": "Kiểu ngắt dòng",
|
"DE.Views.ChartSettings.textWrap": "Kiểu ngắt dòng",
|
||||||
|
@ -1492,13 +1492,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromFile": "Hình ảnh từ file",
|
"DE.Views.Toolbar.mniImageFromFile": "Hình ảnh từ file",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "Hình ảnh từ URL",
|
"DE.Views.Toolbar.mniImageFromUrl": "Hình ảnh từ URL",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "Không đổ màu",
|
"DE.Views.Toolbar.strMenuNoFill": "Không đổ màu",
|
||||||
"DE.Views.Toolbar.textArea": "Vùng",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "Tự động",
|
"DE.Views.Toolbar.textAutoColor": "Tự động",
|
||||||
"DE.Views.Toolbar.textBar": "Gạch",
|
|
||||||
"DE.Views.Toolbar.textBold": "Đậm",
|
"DE.Views.Toolbar.textBold": "Đậm",
|
||||||
"DE.Views.Toolbar.textBottom": "Dưới cùng:",
|
"DE.Views.Toolbar.textBottom": "Dưới cùng:",
|
||||||
"DE.Views.Toolbar.textCharts": "Biểu đồ",
|
|
||||||
"DE.Views.Toolbar.textColumn": "Cột",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "Tùy chỉnh cột",
|
"DE.Views.Toolbar.textColumnsCustom": "Tùy chỉnh cột",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "Trái",
|
"DE.Views.Toolbar.textColumnsLeft": "Trái",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "Một",
|
"DE.Views.Toolbar.textColumnsOne": "Một",
|
||||||
|
@ -1517,7 +1513,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "Nghiêng",
|
"DE.Views.Toolbar.textItalic": "Nghiêng",
|
||||||
"DE.Views.Toolbar.textLandscape": "Nằm ngang",
|
"DE.Views.Toolbar.textLandscape": "Nằm ngang",
|
||||||
"DE.Views.Toolbar.textLeft": "Trái:",
|
"DE.Views.Toolbar.textLeft": "Trái:",
|
||||||
"DE.Views.Toolbar.textLine": "Đường kẻ",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "Tuỳ chỉnh cuối cùng",
|
"DE.Views.Toolbar.textMarginsLast": "Tuỳ chỉnh cuối cùng",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "Vừa phải",
|
"DE.Views.Toolbar.textMarginsModerate": "Vừa phải",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "Thu hẹp",
|
"DE.Views.Toolbar.textMarginsNarrow": "Thu hẹp",
|
||||||
|
@ -1530,11 +1525,8 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "Trang lẻ",
|
"DE.Views.Toolbar.textOddPage": "Trang lẻ",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "Tùy chỉnh lề",
|
"DE.Views.Toolbar.textPageMarginsCustom": "Tùy chỉnh lề",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "Tùy chỉnh kích thước trang",
|
"DE.Views.Toolbar.textPageSizeCustom": "Tùy chỉnh kích thước trang",
|
||||||
"DE.Views.Toolbar.textPie": "Hình bánh",
|
|
||||||
"DE.Views.Toolbar.textPoint": "XY (Phân tán)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "Thẳng đứng",
|
"DE.Views.Toolbar.textPortrait": "Thẳng đứng",
|
||||||
"DE.Views.Toolbar.textRight": "Bên phải:",
|
"DE.Views.Toolbar.textRight": "Bên phải:",
|
||||||
"DE.Views.Toolbar.textStock": "Cổ phiếu",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "Gạch bỏ",
|
"DE.Views.Toolbar.textStrikeout": "Gạch bỏ",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "Xóa kiểu",
|
"DE.Views.Toolbar.textStyleMenuDelete": "Xóa kiểu",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Xóa tất cả kiểu tùy chỉnh",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Xóa tất cả kiểu tùy chỉnh",
|
||||||
|
@ -1544,7 +1536,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "Cập nhật từ lựa chọn",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "Cập nhật từ lựa chọn",
|
||||||
"DE.Views.Toolbar.textSubscript": "Chỉ số dưới",
|
"DE.Views.Toolbar.textSubscript": "Chỉ số dưới",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Chỉ số trên",
|
"DE.Views.Toolbar.textSuperscript": "Chỉ số trên",
|
||||||
"DE.Views.Toolbar.textSurface": "Bề mặt",
|
|
||||||
"DE.Views.Toolbar.textTabFile": "File",
|
"DE.Views.Toolbar.textTabFile": "File",
|
||||||
"DE.Views.Toolbar.textTabHome": "Trang chủ",
|
"DE.Views.Toolbar.textTabHome": "Trang chủ",
|
||||||
"DE.Views.Toolbar.textTabInsert": "Chèn",
|
"DE.Views.Toolbar.textTabInsert": "Chèn",
|
||||||
|
|
|
@ -69,6 +69,14 @@
|
||||||
"Common.Controllers.ReviewChanges.textTabs": "更改选项卡",
|
"Common.Controllers.ReviewChanges.textTabs": "更改选项卡",
|
||||||
"Common.Controllers.ReviewChanges.textUnderline": "下划线",
|
"Common.Controllers.ReviewChanges.textUnderline": "下划线",
|
||||||
"Common.Controllers.ReviewChanges.textWidow": "视窗控制",
|
"Common.Controllers.ReviewChanges.textWidow": "视窗控制",
|
||||||
|
"Common.define.chartData.textArea": "区域",
|
||||||
|
"Common.define.chartData.textBar": "条",
|
||||||
|
"Common.define.chartData.textColumn": "列",
|
||||||
|
"Common.define.chartData.textLine": "线",
|
||||||
|
"Common.define.chartData.textPie": "派",
|
||||||
|
"Common.define.chartData.textPoint": "XY(散射)",
|
||||||
|
"Common.define.chartData.textStock": "股票",
|
||||||
|
"Common.define.chartData.textSurface": "平面",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
|
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
||||||
|
@ -1000,20 +1008,12 @@
|
||||||
"DE.Views.BookmarksDialog.textTitle": "书签",
|
"DE.Views.BookmarksDialog.textTitle": "书签",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "书签名称只能包含字母、数字和下划线,并且应以字母开头",
|
"DE.Views.BookmarksDialog.txtInvalidName": "书签名称只能包含字母、数字和下划线,并且应以字母开头",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "显示高级设置",
|
"DE.Views.ChartSettings.textAdvanced": "显示高级设置",
|
||||||
"DE.Views.ChartSettings.textArea": "区域",
|
|
||||||
"DE.Views.ChartSettings.textBar": "条",
|
|
||||||
"DE.Views.ChartSettings.textChartType": "更改图表类型",
|
"DE.Views.ChartSettings.textChartType": "更改图表类型",
|
||||||
"DE.Views.ChartSettings.textColumn": "列",
|
|
||||||
"DE.Views.ChartSettings.textEditData": "编辑数据",
|
"DE.Views.ChartSettings.textEditData": "编辑数据",
|
||||||
"DE.Views.ChartSettings.textHeight": "高度",
|
"DE.Views.ChartSettings.textHeight": "高度",
|
||||||
"DE.Views.ChartSettings.textLine": "线",
|
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "默认大小",
|
"DE.Views.ChartSettings.textOriginalSize": "默认大小",
|
||||||
"DE.Views.ChartSettings.textPie": "派",
|
|
||||||
"DE.Views.ChartSettings.textPoint": "XY(散射)",
|
|
||||||
"DE.Views.ChartSettings.textSize": "大小",
|
"DE.Views.ChartSettings.textSize": "大小",
|
||||||
"DE.Views.ChartSettings.textStock": "股票",
|
|
||||||
"DE.Views.ChartSettings.textStyle": "类型",
|
"DE.Views.ChartSettings.textStyle": "类型",
|
||||||
"DE.Views.ChartSettings.textSurface": "平面",
|
|
||||||
"DE.Views.ChartSettings.textUndock": "离开面板",
|
"DE.Views.ChartSettings.textUndock": "离开面板",
|
||||||
"DE.Views.ChartSettings.textWidth": "宽度",
|
"DE.Views.ChartSettings.textWidth": "宽度",
|
||||||
"DE.Views.ChartSettings.textWrap": "包裹风格",
|
"DE.Views.ChartSettings.textWrap": "包裹风格",
|
||||||
|
@ -1994,13 +1994,9 @@
|
||||||
"DE.Views.Toolbar.mniImageFromStorage": "图片来自存储",
|
"DE.Views.Toolbar.mniImageFromStorage": "图片来自存储",
|
||||||
"DE.Views.Toolbar.mniImageFromUrl": "图片来自网络",
|
"DE.Views.Toolbar.mniImageFromUrl": "图片来自网络",
|
||||||
"DE.Views.Toolbar.strMenuNoFill": "没有填充",
|
"DE.Views.Toolbar.strMenuNoFill": "没有填充",
|
||||||
"DE.Views.Toolbar.textArea": "区域",
|
|
||||||
"DE.Views.Toolbar.textAutoColor": "自动化的",
|
"DE.Views.Toolbar.textAutoColor": "自动化的",
|
||||||
"DE.Views.Toolbar.textBar": "条",
|
|
||||||
"DE.Views.Toolbar.textBold": "加粗",
|
"DE.Views.Toolbar.textBold": "加粗",
|
||||||
"DE.Views.Toolbar.textBottom": "底部: ",
|
"DE.Views.Toolbar.textBottom": "底部: ",
|
||||||
"DE.Views.Toolbar.textCharts": "图表",
|
|
||||||
"DE.Views.Toolbar.textColumn": "列",
|
|
||||||
"DE.Views.Toolbar.textColumnsCustom": "自定义列",
|
"DE.Views.Toolbar.textColumnsCustom": "自定义列",
|
||||||
"DE.Views.Toolbar.textColumnsLeft": "左",
|
"DE.Views.Toolbar.textColumnsLeft": "左",
|
||||||
"DE.Views.Toolbar.textColumnsOne": "一",
|
"DE.Views.Toolbar.textColumnsOne": "一",
|
||||||
|
@ -2019,7 +2015,6 @@
|
||||||
"DE.Views.Toolbar.textItalic": "斜体",
|
"DE.Views.Toolbar.textItalic": "斜体",
|
||||||
"DE.Views.Toolbar.textLandscape": "横向",
|
"DE.Views.Toolbar.textLandscape": "横向",
|
||||||
"DE.Views.Toolbar.textLeft": "左: ",
|
"DE.Views.Toolbar.textLeft": "左: ",
|
||||||
"DE.Views.Toolbar.textLine": "线",
|
|
||||||
"DE.Views.Toolbar.textMarginsLast": "最后自定义",
|
"DE.Views.Toolbar.textMarginsLast": "最后自定义",
|
||||||
"DE.Views.Toolbar.textMarginsModerate": "中等",
|
"DE.Views.Toolbar.textMarginsModerate": "中等",
|
||||||
"DE.Views.Toolbar.textMarginsNarrow": "缩小",
|
"DE.Views.Toolbar.textMarginsNarrow": "缩小",
|
||||||
|
@ -2033,14 +2028,11 @@
|
||||||
"DE.Views.Toolbar.textOddPage": "奇数页",
|
"DE.Views.Toolbar.textOddPage": "奇数页",
|
||||||
"DE.Views.Toolbar.textPageMarginsCustom": "自定义边距",
|
"DE.Views.Toolbar.textPageMarginsCustom": "自定义边距",
|
||||||
"DE.Views.Toolbar.textPageSizeCustom": "自定义页面大小",
|
"DE.Views.Toolbar.textPageSizeCustom": "自定义页面大小",
|
||||||
"DE.Views.Toolbar.textPie": "派",
|
|
||||||
"DE.Views.Toolbar.textPlainControl": "插入纯文本内容控件",
|
"DE.Views.Toolbar.textPlainControl": "插入纯文本内容控件",
|
||||||
"DE.Views.Toolbar.textPoint": "XY (散点图)",
|
|
||||||
"DE.Views.Toolbar.textPortrait": "肖像",
|
"DE.Views.Toolbar.textPortrait": "肖像",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "删除内容控件",
|
"DE.Views.Toolbar.textRemoveControl": "删除内容控件",
|
||||||
"DE.Views.Toolbar.textRichControl": "插入多信息文本内容控件",
|
"DE.Views.Toolbar.textRichControl": "插入多信息文本内容控件",
|
||||||
"DE.Views.Toolbar.textRight": "右: ",
|
"DE.Views.Toolbar.textRight": "右: ",
|
||||||
"DE.Views.Toolbar.textStock": "股票",
|
|
||||||
"DE.Views.Toolbar.textStrikeout": "加删除线",
|
"DE.Views.Toolbar.textStrikeout": "加删除线",
|
||||||
"DE.Views.Toolbar.textStyleMenuDelete": "删除样式",
|
"DE.Views.Toolbar.textStyleMenuDelete": "删除样式",
|
||||||
"DE.Views.Toolbar.textStyleMenuDeleteAll": "删除所有自定义样式",
|
"DE.Views.Toolbar.textStyleMenuDeleteAll": "删除所有自定义样式",
|
||||||
|
@ -2050,7 +2042,6 @@
|
||||||
"DE.Views.Toolbar.textStyleMenuUpdate": "从选择更新",
|
"DE.Views.Toolbar.textStyleMenuUpdate": "从选择更新",
|
||||||
"DE.Views.Toolbar.textSubscript": "下标",
|
"DE.Views.Toolbar.textSubscript": "下标",
|
||||||
"DE.Views.Toolbar.textSuperscript": "上标",
|
"DE.Views.Toolbar.textSuperscript": "上标",
|
||||||
"DE.Views.Toolbar.textSurface": "平面",
|
|
||||||
"DE.Views.Toolbar.textTabCollaboration": "协作",
|
"DE.Views.Toolbar.textTabCollaboration": "协作",
|
||||||
"DE.Views.Toolbar.textTabFile": "文件",
|
"DE.Views.Toolbar.textTabFile": "文件",
|
||||||
"DE.Views.Toolbar.textTabHome": "主页",
|
"DE.Views.Toolbar.textTabHome": "主页",
|
||||||
|
|
|
@ -118,6 +118,7 @@
|
||||||
@import "../../../../common/main/resources/less/toolbar.less";
|
@import "../../../../common/main/resources/less/toolbar.less";
|
||||||
@import "../../../../common/main/resources/less/language-dialog.less";
|
@import "../../../../common/main/resources/less/language-dialog.less";
|
||||||
@import "../../../../common/main/resources/less/winxp_fix.less";
|
@import "../../../../common/main/resources/less/winxp_fix.less";
|
||||||
|
@import "../../../../common/main/resources/less/calendar.less";
|
||||||
@import "../../../../common/main/resources/less/symboltable.less";
|
@import "../../../../common/main/resources/less/symboltable.less";
|
||||||
|
|
||||||
// App
|
// App
|
||||||
|
@ -151,10 +152,10 @@
|
||||||
|
|
||||||
.doc-placeholder {
|
.doc-placeholder {
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
width: 796px;
|
width: 794px;
|
||||||
margin: 40px auto;
|
margin: 46px auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: 1px solid #dfdfdf;
|
border: 1px solid #bebebe;
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
@ -163,11 +164,6 @@
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
|
|
||||||
-moz-animation: flickerAnimation 2s infinite ease-in-out;
|
|
||||||
-o-animation: flickerAnimation 2s infinite ease-in-out;
|
|
||||||
animation: flickerAnimation 2s infinite ease-in-out;
|
|
||||||
|
|
||||||
> .line {
|
> .line {
|
||||||
height: 15px;
|
height: 15px;
|
||||||
margin: 30px 80px;
|
margin: 30px 80px;
|
||||||
|
|
|
@ -77,6 +77,10 @@ label {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#editor-container {
|
||||||
|
background: #e2e2e2;
|
||||||
|
}
|
||||||
|
|
||||||
#editor_sdk {
|
#editor_sdk {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
|
@ -171,7 +171,9 @@ var sdk_dev_scrpipts = [
|
||||||
"../../../../sdkjs/word/Drawing/mobileTouchManager.js",
|
"../../../../sdkjs/word/Drawing/mobileTouchManager.js",
|
||||||
"../../../../sdkjs/word/apiCommon.js",
|
"../../../../sdkjs/word/apiCommon.js",
|
||||||
"../../../../sdkjs/common/apiBase.js",
|
"../../../../sdkjs/common/apiBase.js",
|
||||||
|
"../../../../sdkjs/common/apiBase_plugins.js",
|
||||||
"../../../../sdkjs/word/api.js",
|
"../../../../sdkjs/word/api.js",
|
||||||
|
"../../../../sdkjs/word/api_plugins.js",
|
||||||
"../../../../sdkjs/word/document/empty.js",
|
"../../../../sdkjs/word/document/empty.js",
|
||||||
"../../../../sdkjs/word/Editor/CollaborativeEditing.js",
|
"../../../../sdkjs/word/Editor/CollaborativeEditing.js",
|
||||||
"../../../../sdkjs/word/Math/mathTypes.js",
|
"../../../../sdkjs/word/Math/mathTypes.js",
|
||||||
|
|
|
@ -1126,8 +1126,10 @@ define([
|
||||||
}
|
}
|
||||||
if (props) {
|
if (props) {
|
||||||
(new Common.Views.ListSettingsDialog({
|
(new Common.Views.ListSettingsDialog({
|
||||||
|
api: me.api,
|
||||||
props: props,
|
props: props,
|
||||||
type: type,
|
type: type,
|
||||||
|
interfaceLang: me.toolbar.mode.lang,
|
||||||
handler: function(result, value) {
|
handler: function(result, value) {
|
||||||
if (result == 'ok') {
|
if (result == 'ok') {
|
||||||
if (me.api) {
|
if (me.api) {
|
||||||
|
|
|
@ -14,17 +14,17 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<button type="button" class="btn btn-text-default" id="image-button-original-size" style="width:100px;"><%= scope.textOriginalSize %></button>
|
<button type="button" class="btn btn-text-default" id="image-button-original-size" style="min-width:100px;width: auto;"><%= scope.textOriginalSize %></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<button type="button" class="btn btn-text-default" id="image-button-fit-slide" style="width:100px;"><%= scope.textFitSlide %></button>
|
<button type="button" class="btn btn-text-default" id="image-button-fit-slide" style="min-width:100px;width: auto;"><%= scope.textFitSlide %></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<div id="image-button-crop" style="width: 100px;"></div>
|
<div id="image-button-crop" style="min-width:100px;"></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="padding-small">
|
<tr class="padding-small">
|
||||||
<td>
|
<td>
|
||||||
<div id="slide-panel-color-fill" class="settings-hidden padding-small" style="width: 100%;">
|
<div id="slide-panel-color-fill" class="padding-small" style="width: 100%;">
|
||||||
<div id="slide-back-color-btn" style=""></div>
|
<div id="slide-back-color-btn" style=""></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="slide-panel-image-fill" class="settings-hidden padding-small" style="width: 100%;">
|
<div id="slide-panel-image-fill" class="settings-hidden padding-small" style="width: 100%;">
|
||||||
|
|
|
@ -143,6 +143,17 @@ define([
|
||||||
this.fireEvent('editcomplete', this);
|
this.fireEvent('editcomplete', this);
|
||||||
}, this));
|
}, this));
|
||||||
|
|
||||||
|
this.btnFitSlide = new Common.UI.Button({
|
||||||
|
el: $('#image-button-fit-slide')
|
||||||
|
});
|
||||||
|
this.lockedControls.push(this.btnFitSlide);
|
||||||
|
this.btnFitSlide.on('click', _.bind(this.setFitSlide, this));
|
||||||
|
|
||||||
|
var w = Math.max(this.btnOriginalSize.cmpEl.width(), this.btnFitSlide.cmpEl.width());
|
||||||
|
this.btnOriginalSize.cmpEl.width(w);
|
||||||
|
this.btnFitSlide.cmpEl.width(w);
|
||||||
|
|
||||||
|
w = this.btnOriginalSize.cmpEl.outerWidth();
|
||||||
this.btnCrop = new Common.UI.Button({
|
this.btnCrop = new Common.UI.Button({
|
||||||
cls: 'btn-text-split-default',
|
cls: 'btn-text-split-default',
|
||||||
caption: this.textCrop,
|
caption: this.textCrop,
|
||||||
|
@ -150,9 +161,9 @@ define([
|
||||||
enableToggle: true,
|
enableToggle: true,
|
||||||
allowDepress: true,
|
allowDepress: true,
|
||||||
pressed: this._state.cropMode,
|
pressed: this._state.cropMode,
|
||||||
width: 100,
|
width: w,
|
||||||
menu : new Common.UI.Menu({
|
menu : new Common.UI.Menu({
|
||||||
style : 'min-width: 100px;',
|
style : 'min-width:' + w + 'px;',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
caption: this.textCrop,
|
caption: this.textCrop,
|
||||||
|
@ -176,12 +187,6 @@ define([
|
||||||
this.btnCrop.menu.on('item:click', _.bind(this.onCropMenu, this));
|
this.btnCrop.menu.on('item:click', _.bind(this.onCropMenu, this));
|
||||||
this.lockedControls.push(this.btnCrop);
|
this.lockedControls.push(this.btnCrop);
|
||||||
|
|
||||||
this.btnFitSlide = new Common.UI.Button({
|
|
||||||
el: $('#image-button-fit-slide')
|
|
||||||
});
|
|
||||||
this.lockedControls.push(this.btnFitSlide);
|
|
||||||
this.btnFitSlide.on('click', _.bind(this.setFitSlide, this));
|
|
||||||
|
|
||||||
this.btnRotate270 = new Common.UI.Button({
|
this.btnRotate270 = new Common.UI.Button({
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'rotate-270',
|
iconCls: 'rotate-270',
|
||||||
|
|
|
@ -129,9 +129,23 @@ define([
|
||||||
data: this._arrFillSrc,
|
data: this._arrFillSrc,
|
||||||
disabled: true
|
disabled: true
|
||||||
});
|
});
|
||||||
this.cmbFillSrc.setValue('');
|
this.cmbFillSrc.setValue(Asc.c_oAscFill.FILL_TYPE_SOLID);
|
||||||
this.cmbFillSrc.on('selected', _.bind(this.onFillSrcSelect, this));
|
this.cmbFillSrc.on('selected', _.bind(this.onFillSrcSelect, this));
|
||||||
|
|
||||||
|
this.btnBackColor = new Common.UI.ColorButton({
|
||||||
|
style: "width:45px;",
|
||||||
|
disabled: true,
|
||||||
|
menu : new Common.UI.Menu({
|
||||||
|
items: [
|
||||||
|
{ template: _.template('<div id="slide-back-color-menu" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
||||||
|
{ template: _.template('<a id="slide-back-color-new" style="padding-left:12px;">' + this.textNewColor + '</a>') }
|
||||||
|
]
|
||||||
|
})
|
||||||
|
});
|
||||||
|
this.btnBackColor.render( $('#slide-back-color-btn'));
|
||||||
|
this.btnBackColor.setColor('ffffff');
|
||||||
|
this.FillItems.push(this.btnBackColor);
|
||||||
|
|
||||||
this.FillColorContainer = $('#slide-panel-color-fill');
|
this.FillColorContainer = $('#slide-panel-color-fill');
|
||||||
this.FillImageContainer = $('#slide-panel-image-fill');
|
this.FillImageContainer = $('#slide-panel-image-fill');
|
||||||
this.FillPatternContainer = $('#slide-panel-pattern-fill');
|
this.FillPatternContainer = $('#slide-panel-pattern-fill');
|
||||||
|
@ -1056,20 +1070,7 @@ define([
|
||||||
|
|
||||||
UpdateThemeColors: function() {
|
UpdateThemeColors: function() {
|
||||||
if (this._initSettings) return;
|
if (this._initSettings) return;
|
||||||
if (!this.btnBackColor) {
|
if (!this.colorsBack) {
|
||||||
this.btnBackColor = new Common.UI.ColorButton({
|
|
||||||
style: "width:45px;",
|
|
||||||
disabled: true,
|
|
||||||
menu : new Common.UI.Menu({
|
|
||||||
items: [
|
|
||||||
{ template: _.template('<div id="slide-back-color-menu" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
|
||||||
{ template: _.template('<a id="slide-back-color-new" style="padding-left:12px;">' + this.textNewColor + '</a>') }
|
|
||||||
]
|
|
||||||
})
|
|
||||||
});
|
|
||||||
this.btnBackColor.render( $('#slide-back-color-btn'));
|
|
||||||
this.btnBackColor.setColor('ffffff');
|
|
||||||
this.FillItems.push(this.btnBackColor);
|
|
||||||
this.colorsBack = new Common.UI.ThemeColorPalette({
|
this.colorsBack = new Common.UI.ThemeColorPalette({
|
||||||
el: $('#slide-back-color-menu'),
|
el: $('#slide-back-color-menu'),
|
||||||
value: 'ffffff',
|
value: 'ffffff',
|
||||||
|
|
|
@ -252,10 +252,14 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var params = getUrlParams(),
|
var params = getUrlParams(),
|
||||||
|
compact = params["compact"] == 'true',
|
||||||
view = params["mode"] == 'view';
|
view = params["mode"] == 'view';
|
||||||
|
|
||||||
if (view) {
|
if (compact || view) {
|
||||||
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
||||||
|
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
|
||||||
|
}
|
||||||
|
if (view) {
|
||||||
document.querySelector('.sktoolbar').remove();
|
document.querySelector('.sktoolbar').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -258,10 +258,14 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var params = getUrlParams(),
|
var params = getUrlParams(),
|
||||||
|
compact = params["compact"] == 'true',
|
||||||
view = params["mode"] == 'view';
|
view = params["mode"] == 'view';
|
||||||
|
|
||||||
if (view) {
|
if (compact || view) {
|
||||||
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
||||||
|
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
|
||||||
|
}
|
||||||
|
if (view) {
|
||||||
document.querySelector('.sktoolbar').remove();
|
document.querySelector('.sktoolbar').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,15 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Затвори",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Затвори",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Обектът е деактивиран, а кой е редактиран от друг потребител.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Обектът е деактивиран, а кой е редактиран от друг потребител.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Внимание",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Внимание",
|
||||||
|
"Common.define.chartData.textArea": "Площ",
|
||||||
|
"Common.define.chartData.textBar": "Бар",
|
||||||
|
"Common.define.chartData.textColumn": "Колона",
|
||||||
|
"Common.define.chartData.textLine": "Линия",
|
||||||
|
"Common.define.chartData.textPie": "Кръгова",
|
||||||
|
"Common.define.chartData.textPoint": "XY (точкова)",
|
||||||
|
"Common.define.chartData.textStock": "Борсова",
|
||||||
|
"Common.define.chartData.textSurface": "Повърхност",
|
||||||
|
"Common.define.chartData.textCharts": "Диаграми",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
|
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
|
||||||
|
@ -901,20 +910,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "Плъзгайте се",
|
"PE.Controllers.Viewport.textFitPage": "Плъзгайте се",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Поставя се в ширина",
|
"PE.Controllers.Viewport.textFitWidth": "Поставя се в ширина",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Показване на разширените настройки",
|
"PE.Views.ChartSettings.textAdvanced": "Показване на разширените настройки",
|
||||||
"PE.Views.ChartSettings.textArea": "Площ",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Бар",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Промяна на типа на диаграмата",
|
"PE.Views.ChartSettings.textChartType": "Промяна на типа на диаграмата",
|
||||||
"PE.Views.ChartSettings.textColumn": "Колона",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Редактиране на данни",
|
"PE.Views.ChartSettings.textEditData": "Редактиране на данни",
|
||||||
"PE.Views.ChartSettings.textHeight": "Височина",
|
"PE.Views.ChartSettings.textHeight": "Височина",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Постоянни пропорции",
|
"PE.Views.ChartSettings.textKeepRatio": "Постоянни пропорции",
|
||||||
"PE.Views.ChartSettings.textLine": "Линия",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Кръгова",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY (точкова)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Размер",
|
"PE.Views.ChartSettings.textSize": "Размер",
|
||||||
"PE.Views.ChartSettings.textStock": "Борсова",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Стил",
|
"PE.Views.ChartSettings.textStyle": "Стил",
|
||||||
"PE.Views.ChartSettings.textSurface": "Повърхност",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Ширина",
|
"PE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Алтернативен текст",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Алтернативен текст",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Описание",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Описание",
|
||||||
|
@ -1622,20 +1623,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Подравнете текста към средата",
|
"PE.Views.Toolbar.textAlignMiddle": "Подравнете текста към средата",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Подравняване на текста вдясно",
|
"PE.Views.Toolbar.textAlignRight": "Подравняване на текста вдясно",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Подравняване на текста до върха",
|
"PE.Views.Toolbar.textAlignTop": "Подравняване на текста до върха",
|
||||||
"PE.Views.Toolbar.textArea": "Площ",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Изпращане до фона",
|
"PE.Views.Toolbar.textArrangeBack": "Изпращане до фона",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Изпращане назад",
|
"PE.Views.Toolbar.textArrangeBackward": "Изпращане назад",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Изведи напред",
|
"PE.Views.Toolbar.textArrangeForward": "Изведи напред",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Доведете до преден план",
|
"PE.Views.Toolbar.textArrangeFront": "Доведете до преден план",
|
||||||
"PE.Views.Toolbar.textBar": "Бар",
|
|
||||||
"PE.Views.Toolbar.textBold": "Получер",
|
"PE.Views.Toolbar.textBold": "Получер",
|
||||||
"PE.Views.Toolbar.textCharts": "Диаграми",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Колона",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Курсив",
|
"PE.Views.Toolbar.textItalic": "Курсив",
|
||||||
"PE.Views.Toolbar.textLine": "Линия",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Цвят по избор",
|
"PE.Views.Toolbar.textNewColor": "Цвят по избор",
|
||||||
"PE.Views.Toolbar.textPie": "Кръгова",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY (точкова)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Подравняване отдолу",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Подравняване отдолу",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Подравняване на центъра",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Подравняване на центъра",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Подравняване вляво",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Подравняване вляво",
|
||||||
|
@ -1646,11 +1640,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Показване от текущата слайд",
|
"PE.Views.Toolbar.textShowCurrent": "Показване от текущата слайд",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Показване на изгледа на презентатора",
|
"PE.Views.Toolbar.textShowPresenterView": "Показване на изгледа на презентатора",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Покажи настройките",
|
"PE.Views.Toolbar.textShowSettings": "Покажи настройките",
|
||||||
"PE.Views.Toolbar.textStock": "Борсова",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Зачеркнато",
|
"PE.Views.Toolbar.textStrikeout": "Зачеркнато",
|
||||||
"PE.Views.Toolbar.textSubscript": "Долен",
|
"PE.Views.Toolbar.textSubscript": "Долен",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Горен индекс",
|
"PE.Views.Toolbar.textSuperscript": "Горен индекс",
|
||||||
"PE.Views.Toolbar.textSurface": "Повърхност",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Сътрудничество",
|
"PE.Views.Toolbar.textTabCollaboration": "Сътрудничество",
|
||||||
"PE.Views.Toolbar.textTabFile": "Файл",
|
"PE.Views.Toolbar.textTabFile": "Файл",
|
||||||
"PE.Views.Toolbar.textTabHome": "У дома",
|
"PE.Views.Toolbar.textTabHome": "У дома",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Zavřít",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Zavřít",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je vypnut, protože je upravován jiným uživatelem.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je vypnut, protože je upravován jiným uživatelem.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Varování",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Varování",
|
||||||
|
"Common.define.chartData.textArea": "Plošný graf",
|
||||||
|
"Common.define.chartData.textBar": "Pruhový graf",
|
||||||
|
"Common.define.chartData.textColumn": "Sloupcový graf",
|
||||||
|
"Common.define.chartData.textLine": "Liniový graf",
|
||||||
|
"Common.define.chartData.textPie": "Kruhový diagram",
|
||||||
|
"Common.define.chartData.textPoint": "Bodový graf",
|
||||||
|
"Common.define.chartData.textStock": "Burzovní graf",
|
||||||
|
"Common.define.chartData.textSurface": "Povrch",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
|
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
|
||||||
|
@ -600,20 +608,12 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Ksí",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Ksí",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilé nastavení",
|
"PE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilé nastavení",
|
||||||
"PE.Views.ChartSettings.textArea": "Plošný graf",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Vodorovná čárka",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Změnit typ grafu",
|
"PE.Views.ChartSettings.textChartType": "Změnit typ grafu",
|
||||||
"PE.Views.ChartSettings.textColumn": "Sloupec",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Upravit data",
|
"PE.Views.ChartSettings.textEditData": "Upravit data",
|
||||||
"PE.Views.ChartSettings.textHeight": "Výška",
|
"PE.Views.ChartSettings.textHeight": "Výška",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Konstantní rozměry",
|
"PE.Views.ChartSettings.textKeepRatio": "Konstantní rozměry",
|
||||||
"PE.Views.ChartSettings.textLine": "Čára",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Kruhový diagram",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Bodový graf",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Velikost",
|
"PE.Views.ChartSettings.textSize": "Velikost",
|
||||||
"PE.Views.ChartSettings.textStock": "Akcie",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Styl",
|
"PE.Views.ChartSettings.textStyle": "Styl",
|
||||||
"PE.Views.ChartSettings.textSurface": "Povrch",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Šířka",
|
"PE.Views.ChartSettings.textWidth": "Šířka",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternativní text",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternativní text",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Popis",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Popis",
|
||||||
|
@ -1238,20 +1238,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Zarovnat text doprostřed",
|
"PE.Views.Toolbar.textAlignMiddle": "Zarovnat text doprostřed",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Zarovnat text doprava",
|
"PE.Views.Toolbar.textAlignRight": "Zarovnat text doprava",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Zarovnat text nahoru",
|
"PE.Views.Toolbar.textAlignTop": "Zarovnat text nahoru",
|
||||||
"PE.Views.Toolbar.textArea": "Plošný graf",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Přesunout do pozadí",
|
"PE.Views.Toolbar.textArrangeBack": "Přesunout do pozadí",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Odeslat zpět",
|
"PE.Views.Toolbar.textArrangeBackward": "Odeslat zpět",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Předložit",
|
"PE.Views.Toolbar.textArrangeForward": "Předložit",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Přenést do popředí",
|
"PE.Views.Toolbar.textArrangeFront": "Přenést do popředí",
|
||||||
"PE.Views.Toolbar.textBar": "Vodorovná čárka",
|
|
||||||
"PE.Views.Toolbar.textBold": "Tučně",
|
"PE.Views.Toolbar.textBold": "Tučně",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafy",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Sloupec",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
||||||
"PE.Views.Toolbar.textLine": "Čára",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Vlastní barva",
|
"PE.Views.Toolbar.textNewColor": "Vlastní barva",
|
||||||
"PE.Views.Toolbar.textPie": "Kruhový diagram",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Bodový graf",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Zarovnat dolů",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Zarovnat dolů",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Zarovnat na střed",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Zarovnat na střed",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Zarovnat vlevo",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Zarovnat vlevo",
|
||||||
|
@ -1262,11 +1255,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Zobrazit od aktuálního snímku",
|
"PE.Views.Toolbar.textShowCurrent": "Zobrazit od aktuálního snímku",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Ukázat zobrazení přednášejícího",
|
"PE.Views.Toolbar.textShowPresenterView": "Ukázat zobrazení přednášejícího",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Zobrazit nastavení",
|
"PE.Views.Toolbar.textShowSettings": "Zobrazit nastavení",
|
||||||
"PE.Views.Toolbar.textStock": "Akcie",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Přeškrtnout",
|
"PE.Views.Toolbar.textStrikeout": "Přeškrtnout",
|
||||||
"PE.Views.Toolbar.textSubscript": "Dolní index",
|
"PE.Views.Toolbar.textSubscript": "Dolní index",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Horní index",
|
"PE.Views.Toolbar.textSuperscript": "Horní index",
|
||||||
"PE.Views.Toolbar.textSurface": "Povrch",
|
|
||||||
"PE.Views.Toolbar.textTabFile": "Soubor",
|
"PE.Views.Toolbar.textTabFile": "Soubor",
|
||||||
"PE.Views.Toolbar.textTabHome": "Domů",
|
"PE.Views.Toolbar.textTabHome": "Domů",
|
||||||
"PE.Views.Toolbar.textTabInsert": "Vložit",
|
"PE.Views.Toolbar.textTabInsert": "Vložit",
|
||||||
|
|
|
@ -910,20 +910,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "Folie anpassen",
|
"PE.Controllers.Viewport.textFitPage": "Folie anpassen",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Breite anpassen",
|
"PE.Controllers.Viewport.textFitWidth": "Breite anpassen",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
"PE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
||||||
"PE.Views.ChartSettings.textArea": "Flächen",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Balken",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
|
"PE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
|
||||||
"PE.Views.ChartSettings.textColumn": "Spalte",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Daten ändern",
|
"PE.Views.ChartSettings.textEditData": "Daten ändern",
|
||||||
"PE.Views.ChartSettings.textHeight": "Höhe",
|
"PE.Views.ChartSettings.textHeight": "Höhe",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Seitenverhältnis beibehalten",
|
"PE.Views.ChartSettings.textKeepRatio": "Seitenverhältnis beibehalten",
|
||||||
"PE.Views.ChartSettings.textLine": "Linie",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Kreis",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Punkt (XY)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Größe",
|
"PE.Views.ChartSettings.textSize": "Größe",
|
||||||
"PE.Views.ChartSettings.textStock": "Bestand",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Stil",
|
"PE.Views.ChartSettings.textStyle": "Stil",
|
||||||
"PE.Views.ChartSettings.textSurface": "Oberfläche",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Breite",
|
"PE.Views.ChartSettings.textWidth": "Breite",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Der alternative Text",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Der alternative Text",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Beschreibung",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Beschreibung",
|
||||||
|
@ -1631,20 +1623,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Text mittig ausrichten",
|
"PE.Views.Toolbar.textAlignMiddle": "Text mittig ausrichten",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Text rechtsbündig ausrichten",
|
"PE.Views.Toolbar.textAlignRight": "Text rechtsbündig ausrichten",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Text am oberen Rand ausrichten",
|
"PE.Views.Toolbar.textAlignTop": "Text am oberen Rand ausrichten",
|
||||||
"PE.Views.Toolbar.textArea": "Flächen",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "In den Hintergrund",
|
"PE.Views.Toolbar.textArrangeBack": "In den Hintergrund",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Eine Ebene nach hinten",
|
"PE.Views.Toolbar.textArrangeBackward": "Eine Ebene nach hinten",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Eine Ebene nach vorne",
|
"PE.Views.Toolbar.textArrangeForward": "Eine Ebene nach vorne",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "In den Vordergrund ",
|
"PE.Views.Toolbar.textArrangeFront": "In den Vordergrund ",
|
||||||
"PE.Views.Toolbar.textBar": "Balken",
|
|
||||||
"PE.Views.Toolbar.textBold": "Fett",
|
"PE.Views.Toolbar.textBold": "Fett",
|
||||||
"PE.Views.Toolbar.textCharts": "Diagramme",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Spalte",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Kursiv",
|
"PE.Views.Toolbar.textItalic": "Kursiv",
|
||||||
"PE.Views.Toolbar.textLine": "Linie",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Benutzerdefinierte Farbe",
|
"PE.Views.Toolbar.textNewColor": "Benutzerdefinierte Farbe",
|
||||||
"PE.Views.Toolbar.textPie": "Kreis",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Punkt (XY)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Unten ausrichten",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Unten ausrichten",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Zentriert ausrichten",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Zentriert ausrichten",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Links ausrichten",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Links ausrichten",
|
||||||
|
@ -1655,11 +1640,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Von aktueller Folie abschauen",
|
"PE.Views.Toolbar.textShowCurrent": "Von aktueller Folie abschauen",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Referentenansicht",
|
"PE.Views.Toolbar.textShowPresenterView": "Referentenansicht",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Einstellungen anzeigen",
|
"PE.Views.Toolbar.textShowSettings": "Einstellungen anzeigen",
|
||||||
"PE.Views.Toolbar.textStock": "Bestand",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Durchgestrichen",
|
"PE.Views.Toolbar.textStrikeout": "Durchgestrichen",
|
||||||
"PE.Views.Toolbar.textSubscript": "Tiefgestellt",
|
"PE.Views.Toolbar.textSubscript": "Tiefgestellt",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Hochgestellt",
|
"PE.Views.Toolbar.textSuperscript": "Hochgestellt",
|
||||||
"PE.Views.Toolbar.textSurface": "Oberfläche",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Zusammenarbeit",
|
"PE.Views.Toolbar.textTabCollaboration": "Zusammenarbeit",
|
||||||
"PE.Views.Toolbar.textTabFile": "Datei",
|
"PE.Views.Toolbar.textTabFile": "Datei",
|
||||||
"PE.Views.Toolbar.textTabHome": "Startseite",
|
"PE.Views.Toolbar.textTabHome": "Startseite",
|
||||||
|
|
|
@ -123,6 +123,8 @@
|
||||||
"Common.Views.ListSettingsDialog.txtSize": "Size",
|
"Common.Views.ListSettingsDialog.txtSize": "Size",
|
||||||
"Common.Views.ListSettingsDialog.txtStart": "Start at",
|
"Common.Views.ListSettingsDialog.txtStart": "Start at",
|
||||||
"Common.Views.ListSettingsDialog.txtTitle": "List Settings",
|
"Common.Views.ListSettingsDialog.txtTitle": "List Settings",
|
||||||
|
"Common.Views.ListSettingsDialog.txtBullet": "Bullet",
|
||||||
|
"Common.Views.ListSettingsDialog.tipChange": "Change bullet",
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Close File",
|
"Common.Views.OpenDialog.closeButtonText": "Close File",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
|
||||||
|
@ -161,6 +163,8 @@
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
|
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Show version history",
|
"Common.Views.ReviewChanges.tipHistory": "Show version history",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Track changes",
|
"Common.Views.ReviewChanges.tipReview": "Track changes",
|
||||||
|
@ -175,6 +179,11 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Chat",
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Close",
|
"Common.Views.ReviewChanges.txtClose": "Close",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Remove",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Language",
|
"Common.Views.ReviewChanges.txtDocLang": "Language",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)",
|
"Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
||||||
|
@ -193,13 +202,6 @@
|
||||||
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
|
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
|
||||||
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
|
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
|
||||||
"Common.Views.ReviewChanges.txtView": "Display Mode",
|
"Common.Views.ReviewChanges.txtView": "Display Mode",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemove": "Remove",
|
|
||||||
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments",
|
|
||||||
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments",
|
|
||||||
"Common.Views.ReviewPopover.textAdd": "Add",
|
"Common.Views.ReviewPopover.textAdd": "Add",
|
||||||
"Common.Views.ReviewPopover.textAddReply": "Add Reply",
|
"Common.Views.ReviewPopover.textAddReply": "Add Reply",
|
||||||
"Common.Views.ReviewPopover.textCancel": "Cancel",
|
"Common.Views.ReviewPopover.textCancel": "Cancel",
|
||||||
|
@ -236,11 +238,11 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
|
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
|
"Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
|
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
|
||||||
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
|
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
|
||||||
"Common.Views.SymbolTableDialog.textFont": "Font",
|
"Common.Views.SymbolTableDialog.textFont": "Font",
|
||||||
"Common.Views.SymbolTableDialog.textRange": "Range",
|
"Common.Views.SymbolTableDialog.textRange": "Range",
|
||||||
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
|
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
|
||||||
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
|
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
|
||||||
"PE.Controllers.LeftMenu.newDocumentTitle": "Unnamed presentation",
|
"PE.Controllers.LeftMenu.newDocumentTitle": "Unnamed presentation",
|
||||||
"PE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
|
"PE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
|
||||||
"PE.Controllers.LeftMenu.requestEditRightsText": "Requesting editing rights...",
|
"PE.Controllers.LeftMenu.requestEditRightsText": "Requesting editing rights...",
|
||||||
|
@ -281,6 +283,7 @@
|
||||||
"PE.Controllers.Main.errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
|
"PE.Controllers.Main.errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
|
||||||
"PE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
"PE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
||||||
"PE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
"PE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||||
|
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||||
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
"PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||||
"PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
"PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||||
|
@ -595,7 +598,6 @@
|
||||||
"PE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
"PE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"PE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
"PE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||||
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
|
||||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||||
"PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the system fonts, the saved font will be used when it is available.<br>Do you want to continue?",
|
"PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the system fonts, the saved font will be used when it is available.<br>Do you want to continue?",
|
||||||
"PE.Controllers.Toolbar.textAccent": "Accents",
|
"PE.Controllers.Toolbar.textAccent": "Accents",
|
||||||
|
@ -604,6 +606,7 @@
|
||||||
"PE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 100",
|
"PE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 100",
|
||||||
"PE.Controllers.Toolbar.textFraction": "Fractions",
|
"PE.Controllers.Toolbar.textFraction": "Fractions",
|
||||||
"PE.Controllers.Toolbar.textFunction": "Functions",
|
"PE.Controllers.Toolbar.textFunction": "Functions",
|
||||||
|
"PE.Controllers.Toolbar.textInsert": "Insert",
|
||||||
"PE.Controllers.Toolbar.textIntegral": "Integrals",
|
"PE.Controllers.Toolbar.textIntegral": "Integrals",
|
||||||
"PE.Controllers.Toolbar.textLargeOperator": "Large Operators",
|
"PE.Controllers.Toolbar.textLargeOperator": "Large Operators",
|
||||||
"PE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
|
"PE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
|
||||||
|
@ -929,24 +932,15 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
|
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"PE.Controllers.Toolbar.textInsert": "Insert",
|
|
||||||
"PE.Controllers.Viewport.textFitPage": "Fit to Slide",
|
"PE.Controllers.Viewport.textFitPage": "Fit to Slide",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Fit to Width",
|
"PE.Controllers.Viewport.textFitWidth": "Fit to Width",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
"PE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||||
"del_PE.Views.ChartSettings.textArea": "Area",
|
|
||||||
"del_PE.Views.ChartSettings.textBar": "Bar",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Change Chart Type",
|
"PE.Views.ChartSettings.textChartType": "Change Chart Type",
|
||||||
"del_PE.Views.ChartSettings.textColumn": "Column",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Edit Data",
|
"PE.Views.ChartSettings.textEditData": "Edit Data",
|
||||||
"PE.Views.ChartSettings.textHeight": "Height",
|
"PE.Views.ChartSettings.textHeight": "Height",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Constant proportions",
|
"PE.Views.ChartSettings.textKeepRatio": "Constant proportions",
|
||||||
"del_PE.Views.ChartSettings.textLine": "Line",
|
|
||||||
"del_PE.Views.ChartSettings.textPie": "Pie",
|
|
||||||
"del_PE.Views.ChartSettings.textPoint": "XY (Scatter)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Size",
|
"PE.Views.ChartSettings.textSize": "Size",
|
||||||
"del_PE.Views.ChartSettings.textStock": "Stock",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Style",
|
"PE.Views.ChartSettings.textStyle": "Style",
|
||||||
"del_PE.Views.ChartSettings.textSurface": "Surface",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Width",
|
"PE.Views.ChartSettings.textWidth": "Width",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternative Text",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternative Text",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Description",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Description",
|
||||||
|
@ -1316,6 +1310,11 @@
|
||||||
"PE.Views.LeftMenu.tipTitles": "Titles",
|
"PE.Views.LeftMenu.tipTitles": "Titles",
|
||||||
"PE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
|
"PE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
|
||||||
"PE.Views.LeftMenu.txtTrial": "TRIAL MODE",
|
"PE.Views.LeftMenu.txtTrial": "TRIAL MODE",
|
||||||
|
"del_PE.Views.ListSettingsDialog.textNewColor": "Add New Custom Color",
|
||||||
|
"del_PE.Views.ListSettingsDialog.txtColor": "Color",
|
||||||
|
"del_PE.Views.ListSettingsDialog.txtOfText": "% of text",
|
||||||
|
"del_PE.Views.ListSettingsDialog.txtSize": "Size",
|
||||||
|
"del_PE.Views.ListSettingsDialog.txtTitle": "List Settings",
|
||||||
"PE.Views.ParagraphSettings.strLineHeight": "Line Spacing",
|
"PE.Views.ParagraphSettings.strLineHeight": "Line Spacing",
|
||||||
"PE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing",
|
"PE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing",
|
||||||
"PE.Views.ParagraphSettings.strSpacingAfter": "After",
|
"PE.Views.ParagraphSettings.strSpacingAfter": "After",
|
||||||
|
@ -1693,6 +1692,7 @@
|
||||||
"PE.Views.Toolbar.capBtnComment": "Comment",
|
"PE.Views.Toolbar.capBtnComment": "Comment",
|
||||||
"PE.Views.Toolbar.capBtnDateTime": "Date & Time",
|
"PE.Views.Toolbar.capBtnDateTime": "Date & Time",
|
||||||
"PE.Views.Toolbar.capBtnInsHeader": "Header/Footer",
|
"PE.Views.Toolbar.capBtnInsHeader": "Header/Footer",
|
||||||
|
"PE.Views.Toolbar.capBtnInsSymbol": "Symbol",
|
||||||
"PE.Views.Toolbar.capBtnSlideNum": "Slide Number",
|
"PE.Views.Toolbar.capBtnSlideNum": "Slide Number",
|
||||||
"PE.Views.Toolbar.capInsertChart": "Chart",
|
"PE.Views.Toolbar.capInsertChart": "Chart",
|
||||||
"PE.Views.Toolbar.capInsertEquation": "Equation",
|
"PE.Views.Toolbar.capInsertEquation": "Equation",
|
||||||
|
@ -1718,21 +1718,14 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Align text to the middle",
|
"PE.Views.Toolbar.textAlignMiddle": "Align text to the middle",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Align text right",
|
"PE.Views.Toolbar.textAlignRight": "Align text right",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Align text to the top",
|
"PE.Views.Toolbar.textAlignTop": "Align text to the top",
|
||||||
"del_PE.Views.Toolbar.textArea": "Area",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Send to Background",
|
"PE.Views.Toolbar.textArrangeBack": "Send to Background",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Send Backward",
|
"PE.Views.Toolbar.textArrangeBackward": "Send Backward",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Bring Forward",
|
"PE.Views.Toolbar.textArrangeForward": "Bring Forward",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Bring to Foreground",
|
"PE.Views.Toolbar.textArrangeFront": "Bring to Foreground",
|
||||||
"del_PE.Views.Toolbar.textBar": "Bar",
|
|
||||||
"PE.Views.Toolbar.textBold": "Bold",
|
"PE.Views.Toolbar.textBold": "Bold",
|
||||||
"del_PE.Views.Toolbar.textCharts": "Charts",
|
|
||||||
"del_PE.Views.Toolbar.textColumn": "Column",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Italic",
|
"PE.Views.Toolbar.textItalic": "Italic",
|
||||||
"del_PE.Views.Toolbar.textLine": "Line",
|
|
||||||
"PE.Views.Toolbar.textListSettings": "List Settings",
|
"PE.Views.Toolbar.textListSettings": "List Settings",
|
||||||
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
||||||
"del_PE.Views.Toolbar.textPie": "Pie",
|
|
||||||
"del_PE.Views.Toolbar.textPoint": "XY (Scatter)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Align Center",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Align Center",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Align Left",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Align Left",
|
||||||
|
@ -1743,11 +1736,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Show from Current Slide",
|
"PE.Views.Toolbar.textShowCurrent": "Show from Current Slide",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Show Presenter View",
|
"PE.Views.Toolbar.textShowPresenterView": "Show Presenter View",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Show Settings",
|
"PE.Views.Toolbar.textShowSettings": "Show Settings",
|
||||||
"del_PE.Views.Toolbar.textStock": "Stock",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Strikethrough",
|
"PE.Views.Toolbar.textStrikeout": "Strikethrough",
|
||||||
"PE.Views.Toolbar.textSubscript": "Subscript",
|
"PE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"del_PE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
"PE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
||||||
"PE.Views.Toolbar.textTabFile": "File",
|
"PE.Views.Toolbar.textTabFile": "File",
|
||||||
"PE.Views.Toolbar.textTabHome": "Home",
|
"PE.Views.Toolbar.textTabHome": "Home",
|
||||||
|
@ -1776,6 +1767,7 @@
|
||||||
"PE.Views.Toolbar.tipInsertHyperlink": "Add hyperlink",
|
"PE.Views.Toolbar.tipInsertHyperlink": "Add hyperlink",
|
||||||
"PE.Views.Toolbar.tipInsertImage": "Insert image",
|
"PE.Views.Toolbar.tipInsertImage": "Insert image",
|
||||||
"PE.Views.Toolbar.tipInsertShape": "Insert autoshape",
|
"PE.Views.Toolbar.tipInsertShape": "Insert autoshape",
|
||||||
|
"PE.Views.Toolbar.tipInsertSymbol": "Insert symbol",
|
||||||
"PE.Views.Toolbar.tipInsertTable": "Insert table",
|
"PE.Views.Toolbar.tipInsertTable": "Insert table",
|
||||||
"PE.Views.Toolbar.tipInsertText": "Insert text box",
|
"PE.Views.Toolbar.tipInsertText": "Insert text box",
|
||||||
"PE.Views.Toolbar.tipInsertTextArt": "Insert Text Art",
|
"PE.Views.Toolbar.tipInsertTextArt": "Insert Text Art",
|
||||||
|
@ -1822,7 +1814,5 @@
|
||||||
"PE.Views.Toolbar.txtScheme8": "Flow",
|
"PE.Views.Toolbar.txtScheme8": "Flow",
|
||||||
"PE.Views.Toolbar.txtScheme9": "Foundry",
|
"PE.Views.Toolbar.txtScheme9": "Foundry",
|
||||||
"PE.Views.Toolbar.txtSlideAlign": "Align to Slide",
|
"PE.Views.Toolbar.txtSlideAlign": "Align to Slide",
|
||||||
"PE.Views.Toolbar.txtUngroup": "Ungroup",
|
"PE.Views.Toolbar.txtUngroup": "Ungroup"
|
||||||
"PE.Views.Toolbar.capBtnInsSymbol": "Symbol",
|
|
||||||
"PE.Views.Toolbar.tipInsertSymbol": "Insert symbol"
|
|
||||||
}
|
}
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Cerrar",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Cerrar",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "El objeto está desactivado porque se está editando por otro usuario.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "El objeto está desactivado porque se está editando por otro usuario.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Aviso",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Aviso",
|
||||||
|
"Common.define.chartData.textArea": "Área",
|
||||||
|
"Common.define.chartData.textBar": "Barra",
|
||||||
|
"Common.define.chartData.textColumn": "Gráfico de columnas",
|
||||||
|
"Common.define.chartData.textLine": "Línea",
|
||||||
|
"Common.define.chartData.textPie": "Gráfico circular",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Dispersión)",
|
||||||
|
"Common.define.chartData.textStock": "De cotizaciones",
|
||||||
|
"Common.define.chartData.textSurface": "Superficie",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
||||||
|
@ -902,20 +910,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "Ajustar a la diapositiva",
|
"PE.Controllers.Viewport.textFitPage": "Ajustar a la diapositiva",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Ajustar al ancho",
|
"PE.Controllers.Viewport.textFitWidth": "Ajustar al ancho",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
"PE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
||||||
"PE.Views.ChartSettings.textArea": "Gráfico de área",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Gráfico de barras",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
|
"PE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
|
||||||
"PE.Views.ChartSettings.textColumn": "Histograma",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Editar datos",
|
"PE.Views.ChartSettings.textEditData": "Editar datos",
|
||||||
"PE.Views.ChartSettings.textHeight": "Altura",
|
"PE.Views.ChartSettings.textHeight": "Altura",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Proporciones constantes",
|
"PE.Views.ChartSettings.textKeepRatio": "Proporciones constantes",
|
||||||
"PE.Views.ChartSettings.textLine": "Línea",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Gráfico circular",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY (Dispersión)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Tamaño",
|
"PE.Views.ChartSettings.textSize": "Tamaño",
|
||||||
"PE.Views.ChartSettings.textStock": "De cotizaciones",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Estilo",
|
"PE.Views.ChartSettings.textStyle": "Estilo",
|
||||||
"PE.Views.ChartSettings.textSurface": "Superficie",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Ancho",
|
"PE.Views.ChartSettings.textWidth": "Ancho",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Texto alternativo",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Texto alternativo",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descripción",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descripción",
|
||||||
|
@ -1653,20 +1653,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Alinear texto al medio",
|
"PE.Views.Toolbar.textAlignMiddle": "Alinear texto al medio",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Alinear texto a la derecha",
|
"PE.Views.Toolbar.textAlignRight": "Alinear texto a la derecha",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Alinear texto en la parte superior",
|
"PE.Views.Toolbar.textAlignTop": "Alinear texto en la parte superior",
|
||||||
"PE.Views.Toolbar.textArea": "Gráfico de área",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Enviar al fondo",
|
"PE.Views.Toolbar.textArrangeBack": "Enviar al fondo",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Enviar atrás",
|
"PE.Views.Toolbar.textArrangeBackward": "Enviar atrás",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Traer adelante",
|
"PE.Views.Toolbar.textArrangeForward": "Traer adelante",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Traer al frente",
|
"PE.Views.Toolbar.textArrangeFront": "Traer al frente",
|
||||||
"PE.Views.Toolbar.textBar": "Gráfico de barras",
|
|
||||||
"PE.Views.Toolbar.textBold": "Negrita",
|
"PE.Views.Toolbar.textBold": "Negrita",
|
||||||
"PE.Views.Toolbar.textCharts": "Gráficos",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Histograma",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Cursiva",
|
"PE.Views.Toolbar.textItalic": "Cursiva",
|
||||||
"PE.Views.Toolbar.textLine": "Línea",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Color personalizado",
|
"PE.Views.Toolbar.textNewColor": "Color personalizado",
|
||||||
"PE.Views.Toolbar.textPie": "Gráfico circular",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY (Dispersión)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Alinear en la parte inferior",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Alinear en la parte inferior",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Alinear al centro",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Alinear al centro",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Alinear a la izquierda",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Alinear a la izquierda",
|
||||||
|
@ -1677,11 +1670,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Mostrar desde la diapositiva actual",
|
"PE.Views.Toolbar.textShowCurrent": "Mostrar desde la diapositiva actual",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Observar vista del presentador",
|
"PE.Views.Toolbar.textShowPresenterView": "Observar vista del presentador",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Mostrar los ajustes",
|
"PE.Views.Toolbar.textShowSettings": "Mostrar los ajustes",
|
||||||
"PE.Views.Toolbar.textStock": "De cotizaciones",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Tachado",
|
"PE.Views.Toolbar.textStrikeout": "Tachado",
|
||||||
"PE.Views.Toolbar.textSubscript": "Subíndice",
|
"PE.Views.Toolbar.textSubscript": "Subíndice",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Sobreíndice",
|
"PE.Views.Toolbar.textSuperscript": "Sobreíndice",
|
||||||
"PE.Views.Toolbar.textSurface": "Superficie",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Colaboración",
|
"PE.Views.Toolbar.textTabCollaboration": "Colaboración",
|
||||||
"PE.Views.Toolbar.textTabFile": "Archivo",
|
"PE.Views.Toolbar.textTabFile": "Archivo",
|
||||||
"PE.Views.Toolbar.textTabHome": "Inicio",
|
"PE.Views.Toolbar.textTabHome": "Inicio",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Fermer",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Fermer",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "L'objet est désactivé car il est en cours d'être modifié par un autre utilisateur.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "L'objet est désactivé car il est en cours d'être modifié par un autre utilisateur.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Avertissement",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Avertissement",
|
||||||
|
"Common.define.chartData.textArea": "En aires",
|
||||||
|
"Common.define.chartData.textBar": "En barre",
|
||||||
|
"Common.define.chartData.textColumn": "Colonne",
|
||||||
|
"Common.define.chartData.textLine": "Graphique en ligne",
|
||||||
|
"Common.define.chartData.textPie": "Graphiques à secteurs",
|
||||||
|
"Common.define.chartData.textPoint": "Nuages de points (XY)",
|
||||||
|
"Common.define.chartData.textStock": "Boursier",
|
||||||
|
"Common.define.chartData.textSurface": "Surface",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
|
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
|
||||||
|
@ -903,20 +911,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "Ajuster à la diapositive",
|
"PE.Controllers.Viewport.textFitPage": "Ajuster à la diapositive",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Ajuster à la largeur",
|
"PE.Controllers.Viewport.textFitWidth": "Ajuster à la largeur",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
"PE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
||||||
"PE.Views.ChartSettings.textArea": "En aires",
|
|
||||||
"PE.Views.ChartSettings.textBar": "À barres",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Modifier le type de graphique",
|
"PE.Views.ChartSettings.textChartType": "Modifier le type de graphique",
|
||||||
"PE.Views.ChartSettings.textColumn": "Histogramme",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Modifier les données",
|
"PE.Views.ChartSettings.textEditData": "Modifier les données",
|
||||||
"PE.Views.ChartSettings.textHeight": "Hauteur",
|
"PE.Views.ChartSettings.textHeight": "Hauteur",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Proportions constantes",
|
"PE.Views.ChartSettings.textKeepRatio": "Proportions constantes",
|
||||||
"PE.Views.ChartSettings.textLine": "En ligne",
|
|
||||||
"PE.Views.ChartSettings.textPie": "À secteurs",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Nuages de points (XY)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Taille",
|
"PE.Views.ChartSettings.textSize": "Taille",
|
||||||
"PE.Views.ChartSettings.textStock": "Boursier",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Style",
|
"PE.Views.ChartSettings.textStyle": "Style",
|
||||||
"PE.Views.ChartSettings.textSurface": "Surface",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Largeur",
|
"PE.Views.ChartSettings.textWidth": "Largeur",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Texte de remplacement",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Texte de remplacement",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Description",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Description",
|
||||||
|
@ -1681,20 +1681,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Aligner le texte au milieu",
|
"PE.Views.Toolbar.textAlignMiddle": "Aligner le texte au milieu",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Aligner le texte à droite",
|
"PE.Views.Toolbar.textAlignRight": "Aligner le texte à droite",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Aligner le texte en haut",
|
"PE.Views.Toolbar.textAlignTop": "Aligner le texte en haut",
|
||||||
"PE.Views.Toolbar.textArea": "En aires",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Mettre en arrière-plan",
|
"PE.Views.Toolbar.textArrangeBack": "Mettre en arrière-plan",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Envoyer vers l'arrière.",
|
"PE.Views.Toolbar.textArrangeBackward": "Envoyer vers l'arrière.",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Déplacer vers l'avant",
|
"PE.Views.Toolbar.textArrangeForward": "Déplacer vers l'avant",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Mettre au premier plan",
|
"PE.Views.Toolbar.textArrangeFront": "Mettre au premier plan",
|
||||||
"PE.Views.Toolbar.textBar": "À barres",
|
|
||||||
"PE.Views.Toolbar.textBold": "Gras",
|
"PE.Views.Toolbar.textBold": "Gras",
|
||||||
"PE.Views.Toolbar.textCharts": "Graphiques",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Histogramme",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Italique",
|
"PE.Views.Toolbar.textItalic": "Italique",
|
||||||
"PE.Views.Toolbar.textLine": "En ligne",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Couleur personnalisée",
|
"PE.Views.Toolbar.textNewColor": "Couleur personnalisée",
|
||||||
"PE.Views.Toolbar.textPie": "À secteurs",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Nuages de points (XY)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Aligner en bas",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Aligner en bas",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Aligner au centre",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Aligner au centre",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Aligner à gauche",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Aligner à gauche",
|
||||||
|
@ -1705,11 +1698,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Afficher de la diapositive actuelle",
|
"PE.Views.Toolbar.textShowCurrent": "Afficher de la diapositive actuelle",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Afficher en mode présentateur",
|
"PE.Views.Toolbar.textShowPresenterView": "Afficher en mode présentateur",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Afficher les paramètres",
|
"PE.Views.Toolbar.textShowSettings": "Afficher les paramètres",
|
||||||
"PE.Views.Toolbar.textStock": "Boursier",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Barré",
|
"PE.Views.Toolbar.textStrikeout": "Barré",
|
||||||
"PE.Views.Toolbar.textSubscript": "Indice",
|
"PE.Views.Toolbar.textSubscript": "Indice",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Exposant",
|
"PE.Views.Toolbar.textSuperscript": "Exposant",
|
||||||
"PE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
"PE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
||||||
"PE.Views.Toolbar.textTabFile": "Fichier",
|
"PE.Views.Toolbar.textTabFile": "Fichier",
|
||||||
"PE.Views.Toolbar.textTabHome": "Accueil",
|
"PE.Views.Toolbar.textTabHome": "Accueil",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Bezár",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Bezár",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Az objektum le van tiltva, mert azt egy másik felhasználó szerkeszti.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Az objektum le van tiltva, mert azt egy másik felhasználó szerkeszti.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Figyelmeztetés",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Figyelmeztetés",
|
||||||
|
"Common.define.chartData.textArea": "Terület",
|
||||||
|
"Common.define.chartData.textBar": "Sáv",
|
||||||
|
"Common.define.chartData.textColumn": "Oszlop",
|
||||||
|
"Common.define.chartData.textLine": "Vonal",
|
||||||
|
"Common.define.chartData.textPie": "Kör",
|
||||||
|
"Common.define.chartData.textPoint": "Pont",
|
||||||
|
"Common.define.chartData.textStock": "Részvény",
|
||||||
|
"Common.define.chartData.textSurface": "Felület",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
||||||
|
@ -843,20 +851,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "A diához igazít",
|
"PE.Controllers.Viewport.textFitPage": "A diához igazít",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Szélességhez igazít",
|
"PE.Controllers.Viewport.textFitWidth": "Szélességhez igazít",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése",
|
"PE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése",
|
||||||
"PE.Views.ChartSettings.textArea": "Terület",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Sáv",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Diagramtípus módosítása",
|
"PE.Views.ChartSettings.textChartType": "Diagramtípus módosítása",
|
||||||
"PE.Views.ChartSettings.textColumn": "Oszlop",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Adat szerkesztése",
|
"PE.Views.ChartSettings.textEditData": "Adat szerkesztése",
|
||||||
"PE.Views.ChartSettings.textHeight": "Magasság",
|
"PE.Views.ChartSettings.textHeight": "Magasság",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Állandó arányok",
|
"PE.Views.ChartSettings.textKeepRatio": "Állandó arányok",
|
||||||
"PE.Views.ChartSettings.textLine": "Vonal",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Kördiagram",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Gráf",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Méret",
|
"PE.Views.ChartSettings.textSize": "Méret",
|
||||||
"PE.Views.ChartSettings.textStock": "Állomány",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Stílus",
|
"PE.Views.ChartSettings.textStyle": "Stílus",
|
||||||
"PE.Views.ChartSettings.textSurface": "Felület",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Szélesség",
|
"PE.Views.ChartSettings.textWidth": "Szélesség",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatív szöveg",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatív szöveg",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Leírás",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Leírás",
|
||||||
|
@ -1559,20 +1559,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Szöveg középre rendezése",
|
"PE.Views.Toolbar.textAlignMiddle": "Szöveg középre rendezése",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Szöveg jobbra rendezése",
|
"PE.Views.Toolbar.textAlignRight": "Szöveg jobbra rendezése",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Szöveg felülre rendezése",
|
"PE.Views.Toolbar.textAlignTop": "Szöveg felülre rendezése",
|
||||||
"PE.Views.Toolbar.textArea": "Terület",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Háttérbe küld",
|
"PE.Views.Toolbar.textArrangeBack": "Háttérbe küld",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Visszafelé küld",
|
"PE.Views.Toolbar.textArrangeBackward": "Visszafelé küld",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Előre hoz",
|
"PE.Views.Toolbar.textArrangeForward": "Előre hoz",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Előre hoz",
|
"PE.Views.Toolbar.textArrangeFront": "Előre hoz",
|
||||||
"PE.Views.Toolbar.textBar": "Sáv",
|
|
||||||
"PE.Views.Toolbar.textBold": "Félkövér",
|
"PE.Views.Toolbar.textBold": "Félkövér",
|
||||||
"PE.Views.Toolbar.textCharts": "Diagramok",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Hasáb",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Dőlt",
|
"PE.Views.Toolbar.textItalic": "Dőlt",
|
||||||
"PE.Views.Toolbar.textLine": "Vonal",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Egyéni szín",
|
"PE.Views.Toolbar.textNewColor": "Egyéni szín",
|
||||||
"PE.Views.Toolbar.textPie": "Kördiagram",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Gráf",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Alulra rendez",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Alulra rendez",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Középre rendez",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Középre rendez",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Balra rendez",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Balra rendez",
|
||||||
|
@ -1583,11 +1576,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Indítás az aktuális diától",
|
"PE.Views.Toolbar.textShowCurrent": "Indítás az aktuális diától",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Megjelenítő nézet",
|
"PE.Views.Toolbar.textShowPresenterView": "Megjelenítő nézet",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Beállítások megjelenítése",
|
"PE.Views.Toolbar.textShowSettings": "Beállítások megjelenítése",
|
||||||
"PE.Views.Toolbar.textStock": "Állomány",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Áthúzott",
|
"PE.Views.Toolbar.textStrikeout": "Áthúzott",
|
||||||
"PE.Views.Toolbar.textSubscript": "Alsó index",
|
"PE.Views.Toolbar.textSubscript": "Alsó index",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Felső index",
|
"PE.Views.Toolbar.textSuperscript": "Felső index",
|
||||||
"PE.Views.Toolbar.textSurface": "Felület",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Együttműködés",
|
"PE.Views.Toolbar.textTabCollaboration": "Együttműködés",
|
||||||
"PE.Views.Toolbar.textTabFile": "Fájl",
|
"PE.Views.Toolbar.textTabFile": "Fájl",
|
||||||
"PE.Views.Toolbar.textTabHome": "Kezdőlap",
|
"PE.Views.Toolbar.textTabHome": "Kezdőlap",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Chiudi",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Chiudi",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "L'oggetto è disabilitato perché si sta modificando da un altro utente.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "L'oggetto è disabilitato perché si sta modificando da un altro utente.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Avviso",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Avviso",
|
||||||
|
"Common.define.chartData.textArea": "Aerogramma",
|
||||||
|
"Common.define.chartData.textBar": "A barre",
|
||||||
|
"Common.define.chartData.textColumn": "Istogramma",
|
||||||
|
"Common.define.chartData.textLine": "A linee",
|
||||||
|
"Common.define.chartData.textPie": "A torta",
|
||||||
|
"Common.define.chartData.textPoint": "XY (A dispersione)",
|
||||||
|
"Common.define.chartData.textStock": "Azionario",
|
||||||
|
"Common.define.chartData.textSurface": "Superficie",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
||||||
|
@ -108,6 +116,8 @@
|
||||||
"Common.Views.InsertTableDialog.txtTitle": "Dimensioni tabella",
|
"Common.Views.InsertTableDialog.txtTitle": "Dimensioni tabella",
|
||||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividi cella",
|
"Common.Views.InsertTableDialog.txtTitleSplit": "Dividi cella",
|
||||||
"Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento",
|
"Common.Views.LanguageDialog.labelSelect": "Seleziona la lingua del documento",
|
||||||
|
"Common.Views.ListSettingsDialog.txtSize": "Dimensioni",
|
||||||
|
"Common.Views.ListSettingsDialog.txtStart": "Inizia da",
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Chiudi File",
|
"Common.Views.OpenDialog.closeButtonText": "Chiudi File",
|
||||||
"Common.Views.OpenDialog.txtEncoding": "Codifica",
|
"Common.Views.OpenDialog.txtEncoding": "Codifica",
|
||||||
"Common.Views.OpenDialog.txtIncorrectPwd": "Password errata",
|
"Common.Views.OpenDialog.txtIncorrectPwd": "Password errata",
|
||||||
|
@ -904,20 +914,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "Adatta alla diapositiva",
|
"PE.Controllers.Viewport.textFitPage": "Adatta alla diapositiva",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza",
|
"PE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
"PE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
||||||
"PE.Views.ChartSettings.textArea": "Area",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Barra",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Cambia tipo grafico",
|
"PE.Views.ChartSettings.textChartType": "Cambia tipo grafico",
|
||||||
"PE.Views.ChartSettings.textColumn": "Colonna",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Modifica dati",
|
"PE.Views.ChartSettings.textEditData": "Modifica dati",
|
||||||
"PE.Views.ChartSettings.textHeight": "Altezza",
|
"PE.Views.ChartSettings.textHeight": "Altezza",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Proporzioni costanti",
|
"PE.Views.ChartSettings.textKeepRatio": "Proporzioni costanti",
|
||||||
"PE.Views.ChartSettings.textLine": "Linea",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Torta",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY (A dispersione)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Dimensione",
|
"PE.Views.ChartSettings.textSize": "Dimensione",
|
||||||
"PE.Views.ChartSettings.textStock": "Azionario",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Style",
|
"PE.Views.ChartSettings.textStyle": "Style",
|
||||||
"PE.Views.ChartSettings.textSurface": "Superficie",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Larghezza",
|
"PE.Views.ChartSettings.textWidth": "Larghezza",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Testo alternativo",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Testo alternativo",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrizione",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrizione",
|
||||||
|
@ -1283,6 +1285,7 @@
|
||||||
"PE.Views.LeftMenu.tipTitles": "Titoli",
|
"PE.Views.LeftMenu.tipTitles": "Titoli",
|
||||||
"PE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE",
|
"PE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE",
|
||||||
"PE.Views.LeftMenu.txtTrial": "Modalità di prova",
|
"PE.Views.LeftMenu.txtTrial": "Modalità di prova",
|
||||||
|
"PE.Views.ListSettingsDialog.txtSize": "Dimensioni",
|
||||||
"PE.Views.ParagraphSettings.strLineHeight": "Interlinea",
|
"PE.Views.ParagraphSettings.strLineHeight": "Interlinea",
|
||||||
"PE.Views.ParagraphSettings.strParagraphSpacing": "Spaziatura del paragrafo",
|
"PE.Views.ParagraphSettings.strParagraphSpacing": "Spaziatura del paragrafo",
|
||||||
"PE.Views.ParagraphSettings.strSpacingAfter": "Dopo",
|
"PE.Views.ParagraphSettings.strSpacingAfter": "Dopo",
|
||||||
|
@ -1676,20 +1679,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Allinea testo in mezzo",
|
"PE.Views.Toolbar.textAlignMiddle": "Allinea testo in mezzo",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Allinea testo a destra",
|
"PE.Views.Toolbar.textAlignRight": "Allinea testo a destra",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Allinea testo in alto",
|
"PE.Views.Toolbar.textAlignTop": "Allinea testo in alto",
|
||||||
"PE.Views.Toolbar.textArea": "Area",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Porta in secondo piano",
|
"PE.Views.Toolbar.textArrangeBack": "Porta in secondo piano",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Porta indietro",
|
"PE.Views.Toolbar.textArrangeBackward": "Porta indietro",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Porta avanti",
|
"PE.Views.Toolbar.textArrangeForward": "Porta avanti",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Porta in primo piano",
|
"PE.Views.Toolbar.textArrangeFront": "Porta in primo piano",
|
||||||
"PE.Views.Toolbar.textBar": "Barra",
|
|
||||||
"PE.Views.Toolbar.textBold": "Grassetto",
|
"PE.Views.Toolbar.textBold": "Grassetto",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafici",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Colonna",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Corsivo",
|
"PE.Views.Toolbar.textItalic": "Corsivo",
|
||||||
"PE.Views.Toolbar.textLine": "Linea",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Colore personalizzato",
|
"PE.Views.Toolbar.textNewColor": "Colore personalizzato",
|
||||||
"PE.Views.Toolbar.textPie": "Torta",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY (A dispersione)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Allinea in basso",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Allinea in basso",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Allinea al centro",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Allinea al centro",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Allinea a sinistra",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Allinea a sinistra",
|
||||||
|
@ -1700,11 +1696,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Mostra dalla diapositiva corrente",
|
"PE.Views.Toolbar.textShowCurrent": "Mostra dalla diapositiva corrente",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Mostra la visualizzazione del presenter",
|
"PE.Views.Toolbar.textShowPresenterView": "Mostra la visualizzazione del presenter",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Mostra Impostazioni",
|
"PE.Views.Toolbar.textShowSettings": "Mostra Impostazioni",
|
||||||
"PE.Views.Toolbar.textStock": "Azionario",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Barrato",
|
"PE.Views.Toolbar.textStrikeout": "Barrato",
|
||||||
"PE.Views.Toolbar.textSubscript": "Pedice",
|
"PE.Views.Toolbar.textSubscript": "Pedice",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Apice",
|
"PE.Views.Toolbar.textSuperscript": "Apice",
|
||||||
"PE.Views.Toolbar.textSurface": "Superficie",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Collaborazione",
|
"PE.Views.Toolbar.textTabCollaboration": "Collaborazione",
|
||||||
"PE.Views.Toolbar.textTabFile": "File",
|
"PE.Views.Toolbar.textTabFile": "File",
|
||||||
"PE.Views.Toolbar.textTabHome": "Home",
|
"PE.Views.Toolbar.textTabHome": "Home",
|
||||||
|
|
|
@ -5,6 +5,13 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "閉じる",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "閉じる",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "他のユーザは編集しているのためオブジェクトが無効になります。",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "他のユーザは編集しているのためオブジェクトが無効になります。",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": " 警告",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": " 警告",
|
||||||
|
"Common.define.chartData.textArea": "面グラフ",
|
||||||
|
"Common.define.chartData.textBar": "横棒グラフ",
|
||||||
|
"Common.define.chartData.textColumn": "縦棒グラフ",
|
||||||
|
"Common.define.chartData.textLine": "折れ線グラフ",
|
||||||
|
"Common.define.chartData.textPie": "円グラフ",
|
||||||
|
"Common.define.chartData.textPoint": "点グラフ",
|
||||||
|
"Common.define.chartData.textStock": "株価チャート",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "枠線なし",
|
"Common.UI.ComboBorderSize.txtNoBorders": "枠線なし",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "枠線なし",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "枠線なし",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
|
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
|
||||||
|
@ -207,18 +214,11 @@
|
||||||
"PE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定しなければなりません。",
|
"PE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定しなければなりません。",
|
||||||
"PE.Controllers.Toolbar.textFontSizeErr": "入力された値が正しくありません。<br>1〜100の数値を入力してください。",
|
"PE.Controllers.Toolbar.textFontSizeErr": "入力された値が正しくありません。<br>1〜100の数値を入力してください。",
|
||||||
"PE.Controllers.Toolbar.textWarning": " 警告",
|
"PE.Controllers.Toolbar.textWarning": " 警告",
|
||||||
"PE.Views.ChartSettings.textArea": "面グラフ",
|
|
||||||
"PE.Views.ChartSettings.textBar": "横棒グラフ",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "グラフの種類の変更",
|
"PE.Views.ChartSettings.textChartType": "グラフの種類の変更",
|
||||||
"PE.Views.ChartSettings.textColumn": "縦棒グラフ",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "データの編集",
|
"PE.Views.ChartSettings.textEditData": "データの編集",
|
||||||
"PE.Views.ChartSettings.textHeight": "高さ",
|
"PE.Views.ChartSettings.textHeight": "高さ",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "比例の定数",
|
"PE.Views.ChartSettings.textKeepRatio": "比例の定数",
|
||||||
"PE.Views.ChartSettings.textLine": "折れ線グラフ",
|
|
||||||
"PE.Views.ChartSettings.textPie": "円グラフ",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "点グラフ",
|
|
||||||
"PE.Views.ChartSettings.textSize": "サイズ",
|
"PE.Views.ChartSettings.textSize": "サイズ",
|
||||||
"PE.Views.ChartSettings.textStock": "株価チャート",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "スタイル",
|
"PE.Views.ChartSettings.textStyle": "スタイル",
|
||||||
"PE.Views.ChartSettings.textWidth": "幅",
|
"PE.Views.ChartSettings.textWidth": "幅",
|
||||||
"PE.Views.DocumentHolder.aboveText": "上",
|
"PE.Views.DocumentHolder.aboveText": "上",
|
||||||
|
@ -706,26 +706,19 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "テキストを中央に揃えます",
|
"PE.Views.Toolbar.textAlignMiddle": "テキストを中央に揃えます",
|
||||||
"PE.Views.Toolbar.textAlignRight": "テキストの右揃え",
|
"PE.Views.Toolbar.textAlignRight": "テキストの右揃え",
|
||||||
"PE.Views.Toolbar.textAlignTop": "テキストの上揃え",
|
"PE.Views.Toolbar.textAlignTop": "テキストの上揃え",
|
||||||
"PE.Views.Toolbar.textArea": "面グラフ",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "背景へ移動",
|
"PE.Views.Toolbar.textArrangeBack": "背景へ移動",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "背面へ移動",
|
"PE.Views.Toolbar.textArrangeBackward": "背面へ移動",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "前面へ移動",
|
"PE.Views.Toolbar.textArrangeForward": "前面へ移動",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "前景に移動",
|
"PE.Views.Toolbar.textArrangeFront": "前景に移動",
|
||||||
"PE.Views.Toolbar.textBar": "横棒グラフ",
|
|
||||||
"PE.Views.Toolbar.textBold": "太字",
|
"PE.Views.Toolbar.textBold": "太字",
|
||||||
"PE.Views.Toolbar.textColumn": "縦棒グラフ",
|
|
||||||
"PE.Views.Toolbar.textItalic": "斜体",
|
"PE.Views.Toolbar.textItalic": "斜体",
|
||||||
"PE.Views.Toolbar.textLine": "折れ線グラフ",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "ユーザー設定の色",
|
"PE.Views.Toolbar.textNewColor": "ユーザー設定の色",
|
||||||
"PE.Views.Toolbar.textPie": "円グラフ",
|
|
||||||
"PE.Views.Toolbar.textPoint": "点グラフ",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "下揃え",
|
"PE.Views.Toolbar.textShapeAlignBottom": "下揃え",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "中央揃え\t",
|
"PE.Views.Toolbar.textShapeAlignCenter": "中央揃え\t",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "左揃え",
|
"PE.Views.Toolbar.textShapeAlignLeft": "左揃え",
|
||||||
"PE.Views.Toolbar.textShapeAlignMiddle": "上下中央揃え",
|
"PE.Views.Toolbar.textShapeAlignMiddle": "上下中央揃え",
|
||||||
"PE.Views.Toolbar.textShapeAlignRight": "右揃え",
|
"PE.Views.Toolbar.textShapeAlignRight": "右揃え",
|
||||||
"PE.Views.Toolbar.textShapeAlignTop": "上揃え",
|
"PE.Views.Toolbar.textShapeAlignTop": "上揃え",
|
||||||
"PE.Views.Toolbar.textStock": "株価チャート",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "取り消し線",
|
"PE.Views.Toolbar.textStrikeout": "取り消し線",
|
||||||
"PE.Views.Toolbar.textSubscript": "下付き",
|
"PE.Views.Toolbar.textSubscript": "下付き",
|
||||||
"PE.Views.Toolbar.textSuperscript": "上付き文字",
|
"PE.Views.Toolbar.textSuperscript": "上付き文字",
|
||||||
|
|
|
@ -696,20 +696,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "슬라이드에 맞추기",
|
"PE.Controllers.Viewport.textFitPage": "슬라이드에 맞추기",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "너비에 맞춤",
|
"PE.Controllers.Viewport.textFitWidth": "너비에 맞춤",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
"PE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
||||||
"PE.Views.ChartSettings.textArea": "영역",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Bar",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "차트 유형 변경",
|
"PE.Views.ChartSettings.textChartType": "차트 유형 변경",
|
||||||
"PE.Views.ChartSettings.textColumn": "열",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "데이터 편집",
|
"PE.Views.ChartSettings.textEditData": "데이터 편집",
|
||||||
"PE.Views.ChartSettings.textHeight": "높이",
|
"PE.Views.ChartSettings.textHeight": "높이",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "일정 비율",
|
"PE.Views.ChartSettings.textKeepRatio": "일정 비율",
|
||||||
"PE.Views.ChartSettings.textLine": "Line",
|
|
||||||
"PE.Views.ChartSettings.textPie": "파이",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY (분산 형)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "크기",
|
"PE.Views.ChartSettings.textSize": "크기",
|
||||||
"PE.Views.ChartSettings.textStock": "Stock",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "스타일",
|
"PE.Views.ChartSettings.textStyle": "스타일",
|
||||||
"PE.Views.ChartSettings.textSurface": "표면",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "너비",
|
"PE.Views.ChartSettings.textWidth": "너비",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "대체 텍스트",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "대체 텍스트",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "설명",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "설명",
|
||||||
|
@ -1372,20 +1364,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "중간에 텍스트 정렬",
|
"PE.Views.Toolbar.textAlignMiddle": "중간에 텍스트 정렬",
|
||||||
"PE.Views.Toolbar.textAlignRight": "텍스트 정렬",
|
"PE.Views.Toolbar.textAlignRight": "텍스트 정렬",
|
||||||
"PE.Views.Toolbar.textAlignTop": "텍스트를 상단에 정렬",
|
"PE.Views.Toolbar.textAlignTop": "텍스트를 상단에 정렬",
|
||||||
"PE.Views.Toolbar.textArea": "Area",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "배경에 보내기",
|
"PE.Views.Toolbar.textArrangeBack": "배경에 보내기",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "뒤로 이동",
|
"PE.Views.Toolbar.textArrangeBackward": "뒤로 이동",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "앞으로 이동",
|
"PE.Views.Toolbar.textArrangeForward": "앞으로 이동",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "전경으로 가져 오기",
|
"PE.Views.Toolbar.textArrangeFront": "전경으로 가져 오기",
|
||||||
"PE.Views.Toolbar.textBar": "Bar",
|
|
||||||
"PE.Views.Toolbar.textBold": "Bold",
|
"PE.Views.Toolbar.textBold": "Bold",
|
||||||
"PE.Views.Toolbar.textCharts": "차트",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Column",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Italic",
|
"PE.Views.Toolbar.textItalic": "Italic",
|
||||||
"PE.Views.Toolbar.textLine": "Line",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "사용자 정의 색상",
|
"PE.Views.Toolbar.textNewColor": "사용자 정의 색상",
|
||||||
"PE.Views.Toolbar.textPie": "파이",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY (분산 형)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "아래쪽 정렬",
|
"PE.Views.Toolbar.textShapeAlignBottom": "아래쪽 정렬",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "정렬 중심",
|
"PE.Views.Toolbar.textShapeAlignCenter": "정렬 중심",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "왼쪽 정렬",
|
"PE.Views.Toolbar.textShapeAlignLeft": "왼쪽 정렬",
|
||||||
|
@ -1396,11 +1381,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "현재 슬라이드에서보기",
|
"PE.Views.Toolbar.textShowCurrent": "현재 슬라이드에서보기",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "프리젠터뷰를 보기",
|
"PE.Views.Toolbar.textShowPresenterView": "프리젠터뷰를 보기",
|
||||||
"PE.Views.Toolbar.textShowSettings": "설정 표시",
|
"PE.Views.Toolbar.textShowSettings": "설정 표시",
|
||||||
"PE.Views.Toolbar.textStock": "Stock",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Strikeout",
|
"PE.Views.Toolbar.textStrikeout": "Strikeout",
|
||||||
"PE.Views.Toolbar.textSubscript": "아래 첨자",
|
"PE.Views.Toolbar.textSubscript": "아래 첨자",
|
||||||
"PE.Views.Toolbar.textSuperscript": "위첨자",
|
"PE.Views.Toolbar.textSuperscript": "위첨자",
|
||||||
"PE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "합치기",
|
"PE.Views.Toolbar.textTabCollaboration": "합치기",
|
||||||
"PE.Views.Toolbar.textTabFile": "파일",
|
"PE.Views.Toolbar.textTabFile": "파일",
|
||||||
"PE.Views.Toolbar.textTabHome": "집",
|
"PE.Views.Toolbar.textTabHome": "집",
|
||||||
|
|
|
@ -693,20 +693,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "Saskaņot ar slaidu",
|
"PE.Controllers.Viewport.textFitPage": "Saskaņot ar slaidu",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Saskaņot ar platumu",
|
"PE.Controllers.Viewport.textFitWidth": "Saskaņot ar platumu",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Radīt papildu iestatījumus",
|
"PE.Views.ChartSettings.textAdvanced": "Radīt papildu iestatījumus",
|
||||||
"PE.Views.ChartSettings.textArea": "Area Chart",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Bar Chart",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Change Chart Type",
|
"PE.Views.ChartSettings.textChartType": "Change Chart Type",
|
||||||
"PE.Views.ChartSettings.textColumn": "Column Chart",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Edit Data",
|
"PE.Views.ChartSettings.textEditData": "Edit Data",
|
||||||
"PE.Views.ChartSettings.textHeight": "Height",
|
"PE.Views.ChartSettings.textHeight": "Height",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Constant Proportions",
|
"PE.Views.ChartSettings.textKeepRatio": "Constant Proportions",
|
||||||
"PE.Views.ChartSettings.textLine": "Line Chart",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Pie Chart",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY (Scatter) Chart",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Size",
|
"PE.Views.ChartSettings.textSize": "Size",
|
||||||
"PE.Views.ChartSettings.textStock": "Stock Chart",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Style",
|
"PE.Views.ChartSettings.textStyle": "Style",
|
||||||
"PE.Views.ChartSettings.textSurface": "Virsma",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Width",
|
"PE.Views.ChartSettings.textWidth": "Width",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatīvs teksts",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatīvs teksts",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Apraksts",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Apraksts",
|
||||||
|
@ -1369,20 +1361,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Align text to the middle",
|
"PE.Views.Toolbar.textAlignMiddle": "Align text to the middle",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Align text right",
|
"PE.Views.Toolbar.textAlignRight": "Align text right",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Align text to the top",
|
"PE.Views.Toolbar.textAlignTop": "Align text to the top",
|
||||||
"PE.Views.Toolbar.textArea": "Area Chart",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Send to Background",
|
"PE.Views.Toolbar.textArrangeBack": "Send to Background",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Sūtīt atpakaļ",
|
"PE.Views.Toolbar.textArrangeBackward": "Sūtīt atpakaļ",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Pārnest uz priekšu",
|
"PE.Views.Toolbar.textArrangeForward": "Pārnest uz priekšu",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Bring To Foreground",
|
"PE.Views.Toolbar.textArrangeFront": "Bring To Foreground",
|
||||||
"PE.Views.Toolbar.textBar": "Bar Chart",
|
|
||||||
"PE.Views.Toolbar.textBold": "Bold",
|
"PE.Views.Toolbar.textBold": "Bold",
|
||||||
"PE.Views.Toolbar.textCharts": "Diagrammas",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Column Chart",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Italic",
|
"PE.Views.Toolbar.textItalic": "Italic",
|
||||||
"PE.Views.Toolbar.textLine": "Line Chart",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
||||||
"PE.Views.Toolbar.textPie": "Pie Chart",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY (Scatter) Chart",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Align Center",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Align Center",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Align Left",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Align Left",
|
||||||
|
@ -1393,11 +1378,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Rādīt no šī slaida",
|
"PE.Views.Toolbar.textShowCurrent": "Rādīt no šī slaida",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Rādīt prezentētāja režīmā",
|
"PE.Views.Toolbar.textShowPresenterView": "Rādīt prezentētāja režīmā",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Rādīt uzstādījumus",
|
"PE.Views.Toolbar.textShowSettings": "Rādīt uzstādījumus",
|
||||||
"PE.Views.Toolbar.textStock": "Stock Chart",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Strikeout",
|
"PE.Views.Toolbar.textStrikeout": "Strikeout",
|
||||||
"PE.Views.Toolbar.textSubscript": "Subscript",
|
"PE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"PE.Views.Toolbar.textSurface": "Virsma",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Sadarbība",
|
"PE.Views.Toolbar.textTabCollaboration": "Sadarbība",
|
||||||
"PE.Views.Toolbar.textTabFile": "Fails",
|
"PE.Views.Toolbar.textTabFile": "Fails",
|
||||||
"PE.Views.Toolbar.textTabHome": "Sākums",
|
"PE.Views.Toolbar.textTabHome": "Sākums",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Sluiten",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Sluiten",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Het object is gedeactiveerd omdat het wordt bewerkt door een andere gebruiker.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Het object is gedeactiveerd omdat het wordt bewerkt door een andere gebruiker.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Waarschuwing",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Waarschuwing",
|
||||||
|
"Common.define.chartData.textArea": "Vlak",
|
||||||
|
"Common.define.chartData.textBar": "Staaf",
|
||||||
|
"Common.define.chartData.textColumn": "Kolom",
|
||||||
|
"Common.define.chartData.textLine": "Lijn",
|
||||||
|
"Common.define.chartData.textPie": "Cirkel",
|
||||||
|
"Common.define.chartData.textPoint": "Spreiding",
|
||||||
|
"Common.define.chartData.textStock": "Voorraad",
|
||||||
|
"Common.define.chartData.textSurface": "Oppervlak",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Geen randen",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Geen randen",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
|
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
|
||||||
|
@ -702,20 +710,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "Aanpassen aan dia",
|
"PE.Controllers.Viewport.textFitPage": "Aanpassen aan dia",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Aan breedte aanpassen",
|
"PE.Controllers.Viewport.textFitWidth": "Aan breedte aanpassen",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
"PE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
||||||
"PE.Views.ChartSettings.textArea": "Vlak",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Staaf",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Grafiektype wijzigen",
|
"PE.Views.ChartSettings.textChartType": "Grafiektype wijzigen",
|
||||||
"PE.Views.ChartSettings.textColumn": "Kolom",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Gegevens bewerken",
|
"PE.Views.ChartSettings.textEditData": "Gegevens bewerken",
|
||||||
"PE.Views.ChartSettings.textHeight": "Hoogte",
|
"PE.Views.ChartSettings.textHeight": "Hoogte",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Constante verhoudingen",
|
"PE.Views.ChartSettings.textKeepRatio": "Constante verhoudingen",
|
||||||
"PE.Views.ChartSettings.textLine": "Lijn",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Cirkel",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Spreiding",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Grootte",
|
"PE.Views.ChartSettings.textSize": "Grootte",
|
||||||
"PE.Views.ChartSettings.textStock": "Voorraad",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Stijl",
|
"PE.Views.ChartSettings.textStyle": "Stijl",
|
||||||
"PE.Views.ChartSettings.textSurface": "Oppervlak",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Breedte",
|
"PE.Views.ChartSettings.textWidth": "Breedte",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatieve tekst",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatieve tekst",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Beschrijving",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Beschrijving",
|
||||||
|
@ -1378,20 +1378,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Tekst centreren",
|
"PE.Views.Toolbar.textAlignMiddle": "Tekst centreren",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Tekst rechts uitlijnen",
|
"PE.Views.Toolbar.textAlignRight": "Tekst rechts uitlijnen",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Tekst bovenaan uitlijnen",
|
"PE.Views.Toolbar.textAlignTop": "Tekst bovenaan uitlijnen",
|
||||||
"PE.Views.Toolbar.textArea": "Vlak",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Naar achtergrond sturen",
|
"PE.Views.Toolbar.textArrangeBack": "Naar achtergrond sturen",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Naar achteren",
|
"PE.Views.Toolbar.textArrangeBackward": "Naar achteren",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Naar Voren Verplaatsen",
|
"PE.Views.Toolbar.textArrangeForward": "Naar Voren Verplaatsen",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Naar voorgrond brengen",
|
"PE.Views.Toolbar.textArrangeFront": "Naar voorgrond brengen",
|
||||||
"PE.Views.Toolbar.textBar": "Staaf",
|
|
||||||
"PE.Views.Toolbar.textBold": "Vet",
|
"PE.Views.Toolbar.textBold": "Vet",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafieken",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Kolom",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Cursief",
|
"PE.Views.Toolbar.textItalic": "Cursief",
|
||||||
"PE.Views.Toolbar.textLine": "Lijn",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Aangepaste kleur",
|
"PE.Views.Toolbar.textNewColor": "Aangepaste kleur",
|
||||||
"PE.Views.Toolbar.textPie": "Cirkel",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Spreiding",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Onder uitlijnen",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Onder uitlijnen",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Midden uitlijnen",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Midden uitlijnen",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Links uitlijnen",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Links uitlijnen",
|
||||||
|
@ -1402,11 +1395,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Vanaf huidige dia tonen",
|
"PE.Views.Toolbar.textShowCurrent": "Vanaf huidige dia tonen",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Presentatieweergave tonen",
|
"PE.Views.Toolbar.textShowPresenterView": "Presentatieweergave tonen",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Instellingen tonen",
|
"PE.Views.Toolbar.textShowSettings": "Instellingen tonen",
|
||||||
"PE.Views.Toolbar.textStock": "Voorraad",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Doorhalen",
|
"PE.Views.Toolbar.textStrikeout": "Doorhalen",
|
||||||
"PE.Views.Toolbar.textSubscript": "Subscript",
|
"PE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
"PE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"PE.Views.Toolbar.textSurface": "Oppervlak",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Samenwerking",
|
"PE.Views.Toolbar.textTabCollaboration": "Samenwerking",
|
||||||
"PE.Views.Toolbar.textTabFile": "Bestand",
|
"PE.Views.Toolbar.textTabFile": "Bestand",
|
||||||
"PE.Views.Toolbar.textTabHome": "Home",
|
"PE.Views.Toolbar.textTabHome": "Home",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Zamknąć",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Zamknąć",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Obiekt jest wyłączony, ponieważ jest edytowany przez innego użytkownika.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Obiekt jest wyłączony, ponieważ jest edytowany przez innego użytkownika.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Ostrzeżenie",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Ostrzeżenie",
|
||||||
|
"Common.define.chartData.textArea": "Obszar",
|
||||||
|
"Common.define.chartData.textBar": "Pasek",
|
||||||
|
"Common.define.chartData.textColumn": "Kolumna",
|
||||||
|
"Common.define.chartData.textLine": "Liniowy",
|
||||||
|
"Common.define.chartData.textPie": "Kołowe",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Punktowy)",
|
||||||
|
"Common.define.chartData.textStock": "Zbiory",
|
||||||
|
"Common.define.chartData.textSurface": "Powierzchnia",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
|
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
|
||||||
|
@ -598,20 +606,12 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane",
|
"PE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane",
|
||||||
"PE.Views.ChartSettings.textArea": "Obszar",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Pasek",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Zmień typ wykresu",
|
"PE.Views.ChartSettings.textChartType": "Zmień typ wykresu",
|
||||||
"PE.Views.ChartSettings.textColumn": "Kolumna",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Edytuj dane",
|
"PE.Views.ChartSettings.textEditData": "Edytuj dane",
|
||||||
"PE.Views.ChartSettings.textHeight": "Wysokość",
|
"PE.Views.ChartSettings.textHeight": "Wysokość",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Stałe proporcje",
|
"PE.Views.ChartSettings.textKeepRatio": "Stałe proporcje",
|
||||||
"PE.Views.ChartSettings.textLine": "Wykres",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Kołowe",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY (Punktowy)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Rozmiar",
|
"PE.Views.ChartSettings.textSize": "Rozmiar",
|
||||||
"PE.Views.ChartSettings.textStock": "Zbiory",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Styl",
|
"PE.Views.ChartSettings.textStyle": "Styl",
|
||||||
"PE.Views.ChartSettings.textSurface": "Powierzchnia",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Szerokość",
|
"PE.Views.ChartSettings.textWidth": "Szerokość",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Tekst alternatywny",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Tekst alternatywny",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Opis",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Opis",
|
||||||
|
@ -1236,20 +1236,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Wyrównaj tekst do środka",
|
"PE.Views.Toolbar.textAlignMiddle": "Wyrównaj tekst do środka",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Wyrównaj tekst do prawej",
|
"PE.Views.Toolbar.textAlignRight": "Wyrównaj tekst do prawej",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Wyrównaj tekst do góry",
|
"PE.Views.Toolbar.textAlignTop": "Wyrównaj tekst do góry",
|
||||||
"PE.Views.Toolbar.textArea": "Obszar",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Wyślij do tła",
|
"PE.Views.Toolbar.textArrangeBack": "Wyślij do tła",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Przenieś do tyłu",
|
"PE.Views.Toolbar.textArrangeBackward": "Przenieś do tyłu",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Przenieś do przodu",
|
"PE.Views.Toolbar.textArrangeForward": "Przenieś do przodu",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Przejdź na pierwszy plan",
|
"PE.Views.Toolbar.textArrangeFront": "Przejdź na pierwszy plan",
|
||||||
"PE.Views.Toolbar.textBar": "Pasek",
|
|
||||||
"PE.Views.Toolbar.textBold": "Pogrubione",
|
"PE.Views.Toolbar.textBold": "Pogrubione",
|
||||||
"PE.Views.Toolbar.textCharts": "Wykresy",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Kolumna",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Kursywa",
|
"PE.Views.Toolbar.textItalic": "Kursywa",
|
||||||
"PE.Views.Toolbar.textLine": "Wykres",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Własny kolor",
|
"PE.Views.Toolbar.textNewColor": "Własny kolor",
|
||||||
"PE.Views.Toolbar.textPie": "Kołowe",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY (Punktowy)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Wyrównaj do dołu",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Wyrównaj do dołu",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Wyrównaj do środka",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Wyrównaj do środka",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Wyrównaj do lewej",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Wyrównaj do lewej",
|
||||||
|
@ -1260,11 +1253,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Pokaż z aktualnego slajdu",
|
"PE.Views.Toolbar.textShowCurrent": "Pokaż z aktualnego slajdu",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Pokaz slajdów w trybie prezentera",
|
"PE.Views.Toolbar.textShowPresenterView": "Pokaz slajdów w trybie prezentera",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Pokaż ustawienia",
|
"PE.Views.Toolbar.textShowSettings": "Pokaż ustawienia",
|
||||||
"PE.Views.Toolbar.textStock": "Zbiory",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Skreślenie",
|
"PE.Views.Toolbar.textStrikeout": "Skreślenie",
|
||||||
"PE.Views.Toolbar.textSubscript": "Indeks dolny",
|
"PE.Views.Toolbar.textSubscript": "Indeks dolny",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Indeks górny",
|
"PE.Views.Toolbar.textSuperscript": "Indeks górny",
|
||||||
"PE.Views.Toolbar.textSurface": "Powierzchnia",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Współpraca",
|
"PE.Views.Toolbar.textTabCollaboration": "Współpraca",
|
||||||
"PE.Views.Toolbar.textTabFile": "Plik",
|
"PE.Views.Toolbar.textTabFile": "Plik",
|
||||||
"PE.Views.Toolbar.textTabHome": "Narzędzia główne",
|
"PE.Views.Toolbar.textTabHome": "Narzędzia główne",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Fechar",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Fechar",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "O objeto está desabilitado por que está sendo editado por outro usuário.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "O objeto está desabilitado por que está sendo editado por outro usuário.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Aviso",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Aviso",
|
||||||
|
"Common.define.chartData.textArea": "Área",
|
||||||
|
"Common.define.chartData.textBar": "Barra",
|
||||||
|
"Common.define.chartData.textColumn": "Coluna",
|
||||||
|
"Common.define.chartData.textLine": "Linha",
|
||||||
|
"Common.define.chartData.textPie": "Gráfico de pizza",
|
||||||
|
"Common.define.chartData.textPoint": "Gráfico de pontos",
|
||||||
|
"Common.define.chartData.textStock": "Gráfico de ações",
|
||||||
|
"Common.define.chartData.textSurface": "Superfície",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
|
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
|
||||||
|
@ -597,20 +605,12 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas",
|
"PE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas",
|
||||||
"PE.Views.ChartSettings.textArea": "Gráfico de área",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Gráfico de barras",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico",
|
"PE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico",
|
||||||
"PE.Views.ChartSettings.textColumn": "Gráfico de coluna",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Editar dados",
|
"PE.Views.ChartSettings.textEditData": "Editar dados",
|
||||||
"PE.Views.ChartSettings.textHeight": "Altura",
|
"PE.Views.ChartSettings.textHeight": "Altura",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Proporções constantes",
|
"PE.Views.ChartSettings.textKeepRatio": "Proporções constantes",
|
||||||
"PE.Views.ChartSettings.textLine": "Gráfico de linha",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Gráfico de pizza",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Gráfico de pontos",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Tamanho",
|
"PE.Views.ChartSettings.textSize": "Tamanho",
|
||||||
"PE.Views.ChartSettings.textStock": "Gráfico de ações",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Estilo",
|
"PE.Views.ChartSettings.textStyle": "Estilo",
|
||||||
"PE.Views.ChartSettings.textSurface": "Superfície",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Largura",
|
"PE.Views.ChartSettings.textWidth": "Largura",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Texto Alternativo",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Texto Alternativo",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrição",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrição",
|
||||||
|
@ -1235,20 +1235,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Alinhar texto ao meio",
|
"PE.Views.Toolbar.textAlignMiddle": "Alinhar texto ao meio",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Alinhar texto à direita",
|
"PE.Views.Toolbar.textAlignRight": "Alinhar texto à direita",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Alinhar texto à parte superior",
|
"PE.Views.Toolbar.textAlignTop": "Alinhar texto à parte superior",
|
||||||
"PE.Views.Toolbar.textArea": "Gráfico de área",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Enviar para plano de fundo",
|
"PE.Views.Toolbar.textArrangeBack": "Enviar para plano de fundo",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Enviar para trás",
|
"PE.Views.Toolbar.textArrangeBackward": "Enviar para trás",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Trazer para frente",
|
"PE.Views.Toolbar.textArrangeForward": "Trazer para frente",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Trazer para primeiro plano",
|
"PE.Views.Toolbar.textArrangeFront": "Trazer para primeiro plano",
|
||||||
"PE.Views.Toolbar.textBar": "Gráfico de barras",
|
|
||||||
"PE.Views.Toolbar.textBold": "Negrito",
|
"PE.Views.Toolbar.textBold": "Negrito",
|
||||||
"PE.Views.Toolbar.textCharts": "Gráficos",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Gráfico de coluna",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Itálico",
|
"PE.Views.Toolbar.textItalic": "Itálico",
|
||||||
"PE.Views.Toolbar.textLine": "Gráfico de linha",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Cor personalizada",
|
"PE.Views.Toolbar.textNewColor": "Cor personalizada",
|
||||||
"PE.Views.Toolbar.textPie": "Gráfico de pizza",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Gráfico de pontos",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Alinhar à parte inferior",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Alinhar à parte inferior",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Alinhar ao centro",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Alinhar ao centro",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Alinhar à esquerda",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Alinhar à esquerda",
|
||||||
|
@ -1259,11 +1252,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Mostrar a partir do slide atual",
|
"PE.Views.Toolbar.textShowCurrent": "Mostrar a partir do slide atual",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Exibir vista de apresentador",
|
"PE.Views.Toolbar.textShowPresenterView": "Exibir vista de apresentador",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Exibir configurações",
|
"PE.Views.Toolbar.textShowSettings": "Exibir configurações",
|
||||||
"PE.Views.Toolbar.textStock": "Gráfico de ações",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Riscado",
|
"PE.Views.Toolbar.textStrikeout": "Riscado",
|
||||||
"PE.Views.Toolbar.textSubscript": "Subscrito",
|
"PE.Views.Toolbar.textSubscript": "Subscrito",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Sobrescrito",
|
"PE.Views.Toolbar.textSuperscript": "Sobrescrito",
|
||||||
"PE.Views.Toolbar.textSurface": "Superfície",
|
|
||||||
"PE.Views.Toolbar.textTabFile": "Arquivo",
|
"PE.Views.Toolbar.textTabFile": "Arquivo",
|
||||||
"PE.Views.Toolbar.textTabHome": "Página Inicial",
|
"PE.Views.Toolbar.textTabHome": "Página Inicial",
|
||||||
"PE.Views.Toolbar.textTabInsert": "Inserir",
|
"PE.Views.Toolbar.textTabInsert": "Inserir",
|
||||||
|
|
|
@ -161,6 +161,8 @@
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Используйте кнопку 'Сохранить' для синхронизации изменений, вносимых вами и другими пользователями.",
|
"Common.Views.ReviewChanges.strStrictDesc": "Используйте кнопку 'Сохранить' для синхронизации изменений, вносимых вами и другими пользователями.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Принять текущее изменение",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Принять текущее изменение",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Удалить комментарии",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Удалить текущие комментарии",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Показать историю версий",
|
"Common.Views.ReviewChanges.tipHistory": "Показать историю версий",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
|
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
|
||||||
|
@ -175,6 +177,11 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Чат",
|
"Common.Views.ReviewChanges.txtChat": "Чат",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Закрыть",
|
"Common.Views.ReviewChanges.txtClose": "Закрыть",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим совместного редактирования",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим совместного редактирования",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Удалить все комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Удалить текущие комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Удалить мои комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Удалить мои текущие комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Удалить",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Язык",
|
"Common.Views.ReviewChanges.txtDocLang": "Язык",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)",
|
"Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Измененный документ",
|
"Common.Views.ReviewChanges.txtFinalCap": "Измененный документ",
|
||||||
|
@ -229,6 +236,11 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи",
|
"Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Настройка подписи",
|
"Common.Views.SignSettingsDialog.textTitle": "Настройка подписи",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "Это поле необходимо заполнить",
|
"Common.Views.SignSettingsDialog.txtEmpty": "Это поле необходимо заполнить",
|
||||||
|
"Common.Views.SymbolTableDialog.textCode": "Код знака из Юникод (шестн.)",
|
||||||
|
"Common.Views.SymbolTableDialog.textFont": "Шрифт",
|
||||||
|
"Common.Views.SymbolTableDialog.textRange": "Набор",
|
||||||
|
"Common.Views.SymbolTableDialog.textRecent": "Ранее использовавшиеся символы",
|
||||||
|
"Common.Views.SymbolTableDialog.textTitle": "Символ",
|
||||||
"PE.Controllers.LeftMenu.newDocumentTitle": "Презентация без имени",
|
"PE.Controllers.LeftMenu.newDocumentTitle": "Презентация без имени",
|
||||||
"PE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
|
"PE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание",
|
||||||
"PE.Controllers.LeftMenu.requestEditRightsText": "Запрос прав на редактирование...",
|
"PE.Controllers.LeftMenu.requestEditRightsText": "Запрос прав на редактирование...",
|
||||||
|
@ -269,6 +281,7 @@
|
||||||
"PE.Controllers.Main.errorToken": "Токен безопасности документа имеет неправильный формат.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"PE.Controllers.Main.errorToken": "Токен безопасности документа имеет неправильный формат.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"PE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"PE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"PE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
"PE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
||||||
|
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.<br>Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
|
||||||
"PE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
"PE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"PE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
|
"PE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
|
||||||
"PE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.",
|
"PE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.",
|
||||||
|
@ -591,6 +604,7 @@
|
||||||
"PE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.<br>Введите числовое значение от 1 до 100",
|
"PE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.<br>Введите числовое значение от 1 до 100",
|
||||||
"PE.Controllers.Toolbar.textFraction": "Дроби",
|
"PE.Controllers.Toolbar.textFraction": "Дроби",
|
||||||
"PE.Controllers.Toolbar.textFunction": "Функции",
|
"PE.Controllers.Toolbar.textFunction": "Функции",
|
||||||
|
"PE.Controllers.Toolbar.textInsert": "Вставить",
|
||||||
"PE.Controllers.Toolbar.textIntegral": "Интегралы",
|
"PE.Controllers.Toolbar.textIntegral": "Интегралы",
|
||||||
"PE.Controllers.Toolbar.textLargeOperator": "Крупные операторы",
|
"PE.Controllers.Toolbar.textLargeOperator": "Крупные операторы",
|
||||||
"PE.Controllers.Toolbar.textLimitAndLog": "Пределы и логарифмы",
|
"PE.Controllers.Toolbar.textLimitAndLog": "Пределы и логарифмы",
|
||||||
|
@ -919,20 +933,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "По размеру слайда",
|
"PE.Controllers.Viewport.textFitPage": "По размеру слайда",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "По ширине",
|
"PE.Controllers.Viewport.textFitWidth": "По ширине",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
"PE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
||||||
"PE.Views.ChartSettings.textArea": "С областями",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Линейчатая",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Изменить тип диаграммы",
|
"PE.Views.ChartSettings.textChartType": "Изменить тип диаграммы",
|
||||||
"PE.Views.ChartSettings.textColumn": "Гистограмма",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Изменить данные",
|
"PE.Views.ChartSettings.textEditData": "Изменить данные",
|
||||||
"PE.Views.ChartSettings.textHeight": "Высота",
|
"PE.Views.ChartSettings.textHeight": "Высота",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Сохранять пропорции",
|
"PE.Views.ChartSettings.textKeepRatio": "Сохранять пропорции",
|
||||||
"PE.Views.ChartSettings.textLine": "График",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Круговая",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Точечная",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Размер",
|
"PE.Views.ChartSettings.textSize": "Размер",
|
||||||
"PE.Views.ChartSettings.textStock": "Биржевая",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Стиль",
|
"PE.Views.ChartSettings.textStyle": "Стиль",
|
||||||
"PE.Views.ChartSettings.textSurface": "Поверхность",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Ширина",
|
"PE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Альтернативный текст",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Альтернативный текст",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Описание",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Описание",
|
||||||
|
@ -1679,9 +1685,11 @@
|
||||||
"PE.Views.TextArtSettings.txtPapyrus": "Папирус",
|
"PE.Views.TextArtSettings.txtPapyrus": "Папирус",
|
||||||
"PE.Views.TextArtSettings.txtWood": "Дерево",
|
"PE.Views.TextArtSettings.txtWood": "Дерево",
|
||||||
"PE.Views.Toolbar.capAddSlide": "Добавить слайд",
|
"PE.Views.Toolbar.capAddSlide": "Добавить слайд",
|
||||||
|
"PE.Views.Toolbar.capBtnAddComment": "Добавить комментарий",
|
||||||
"PE.Views.Toolbar.capBtnComment": "Комментарий",
|
"PE.Views.Toolbar.capBtnComment": "Комментарий",
|
||||||
"PE.Views.Toolbar.capBtnDateTime": "Дата и время",
|
"PE.Views.Toolbar.capBtnDateTime": "Дата и время",
|
||||||
"PE.Views.Toolbar.capBtnInsHeader": "Колонтитулы",
|
"PE.Views.Toolbar.capBtnInsHeader": "Колонтитулы",
|
||||||
|
"PE.Views.Toolbar.capBtnInsSymbol": "Символ",
|
||||||
"PE.Views.Toolbar.capBtnSlideNum": "Номер слайда",
|
"PE.Views.Toolbar.capBtnSlideNum": "Номер слайда",
|
||||||
"PE.Views.Toolbar.capInsertChart": "Диаграмма",
|
"PE.Views.Toolbar.capInsertChart": "Диаграмма",
|
||||||
"PE.Views.Toolbar.capInsertEquation": "Уравнение",
|
"PE.Views.Toolbar.capInsertEquation": "Уравнение",
|
||||||
|
@ -1707,21 +1715,14 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Выравнивание текста по середине",
|
"PE.Views.Toolbar.textAlignMiddle": "Выравнивание текста по середине",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Выравнивание текста по правому краю",
|
"PE.Views.Toolbar.textAlignRight": "Выравнивание текста по правому краю",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Выравнивание текста по верхнему краю",
|
"PE.Views.Toolbar.textAlignTop": "Выравнивание текста по верхнему краю",
|
||||||
"PE.Views.Toolbar.textArea": "С областями",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Перенести на задний план",
|
"PE.Views.Toolbar.textArrangeBack": "Перенести на задний план",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Перенести назад",
|
"PE.Views.Toolbar.textArrangeBackward": "Перенести назад",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Перенести вперед",
|
"PE.Views.Toolbar.textArrangeForward": "Перенести вперед",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Перенести на передний план",
|
"PE.Views.Toolbar.textArrangeFront": "Перенести на передний план",
|
||||||
"PE.Views.Toolbar.textBar": "Линейчатая",
|
|
||||||
"PE.Views.Toolbar.textBold": "Полужирный",
|
"PE.Views.Toolbar.textBold": "Полужирный",
|
||||||
"PE.Views.Toolbar.textCharts": "Диаграммы",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Гистограмма",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Курсив",
|
"PE.Views.Toolbar.textItalic": "Курсив",
|
||||||
"PE.Views.Toolbar.textLine": "График",
|
|
||||||
"PE.Views.Toolbar.textListSettings": "Параметры списка",
|
"PE.Views.Toolbar.textListSettings": "Параметры списка",
|
||||||
"PE.Views.Toolbar.textNewColor": "Пользовательский цвет",
|
"PE.Views.Toolbar.textNewColor": "Пользовательский цвет",
|
||||||
"PE.Views.Toolbar.textPie": "Круговая",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Точечная",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Выровнять по нижнему краю",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Выровнять по нижнему краю",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Выровнять по центру",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Выровнять по центру",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Выровнять по левому краю",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Выровнять по левому краю",
|
||||||
|
@ -1732,11 +1733,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Показ слайдов с текущего слайда",
|
"PE.Views.Toolbar.textShowCurrent": "Показ слайдов с текущего слайда",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Показ слайдов в режиме докладчика",
|
"PE.Views.Toolbar.textShowPresenterView": "Показ слайдов в режиме докладчика",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Параметры показа слайдов",
|
"PE.Views.Toolbar.textShowSettings": "Параметры показа слайдов",
|
||||||
"PE.Views.Toolbar.textStock": "Биржевая",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Зачеркнутый",
|
"PE.Views.Toolbar.textStrikeout": "Зачеркнутый",
|
||||||
"PE.Views.Toolbar.textSubscript": "Подстрочные знаки",
|
"PE.Views.Toolbar.textSubscript": "Подстрочные знаки",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
|
"PE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
|
||||||
"PE.Views.Toolbar.textSurface": "Поверхность",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Совместная работа",
|
"PE.Views.Toolbar.textTabCollaboration": "Совместная работа",
|
||||||
"PE.Views.Toolbar.textTabFile": "Файл",
|
"PE.Views.Toolbar.textTabFile": "Файл",
|
||||||
"PE.Views.Toolbar.textTabHome": "Главная",
|
"PE.Views.Toolbar.textTabHome": "Главная",
|
||||||
|
@ -1765,6 +1764,7 @@
|
||||||
"PE.Views.Toolbar.tipInsertHyperlink": "Добавить гиперссылку",
|
"PE.Views.Toolbar.tipInsertHyperlink": "Добавить гиперссылку",
|
||||||
"PE.Views.Toolbar.tipInsertImage": "Вставить изображение",
|
"PE.Views.Toolbar.tipInsertImage": "Вставить изображение",
|
||||||
"PE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
|
"PE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
|
||||||
|
"PE.Views.Toolbar.tipInsertSymbol": "Вставить символ",
|
||||||
"PE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
|
"PE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
|
||||||
"PE.Views.Toolbar.tipInsertText": "Вставить надпись",
|
"PE.Views.Toolbar.tipInsertText": "Вставить надпись",
|
||||||
"PE.Views.Toolbar.tipInsertTextArt": "Вставить объект Text Art",
|
"PE.Views.Toolbar.tipInsertTextArt": "Вставить объект Text Art",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Zatvoriť",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Zatvoriť",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Upozornenie",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Upozornenie",
|
||||||
|
"Common.define.chartData.textArea": "Plošný graf",
|
||||||
|
"Common.define.chartData.textBar": "Pruhový graf",
|
||||||
|
"Common.define.chartData.textColumn": "Stĺpec",
|
||||||
|
"Common.define.chartData.textLine": "Čiara/líniový graf",
|
||||||
|
"Common.define.chartData.textPie": "Koláčový graf",
|
||||||
|
"Common.define.chartData.textPoint": "Bodový graf",
|
||||||
|
"Common.define.chartData.textStock": "Akcie/burzový graf",
|
||||||
|
"Common.define.chartData.textSurface": "Povrch",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
|
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
|
||||||
|
@ -656,20 +664,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "Prispôsobiť snímke",
|
"PE.Controllers.Viewport.textFitPage": "Prispôsobiť snímke",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "Prispôsobiť na šírku",
|
"PE.Controllers.Viewport.textFitWidth": "Prispôsobiť na šírku",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
|
"PE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
|
||||||
"PE.Views.ChartSettings.textArea": "Plošný graf",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Vodorovná čiarka",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Zmeniť typ grafu",
|
"PE.Views.ChartSettings.textChartType": "Zmeniť typ grafu",
|
||||||
"PE.Views.ChartSettings.textColumn": "Stĺpec",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Upravovať dáta",
|
"PE.Views.ChartSettings.textEditData": "Upravovať dáta",
|
||||||
"PE.Views.ChartSettings.textHeight": "Výška",
|
"PE.Views.ChartSettings.textHeight": "Výška",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Konštantné rozmery",
|
"PE.Views.ChartSettings.textKeepRatio": "Konštantné rozmery",
|
||||||
"PE.Views.ChartSettings.textLine": "Čiara/líniový graf",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Koláčový graf",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Bodový graf",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Veľkosť",
|
"PE.Views.ChartSettings.textSize": "Veľkosť",
|
||||||
"PE.Views.ChartSettings.textStock": "Akcie/burzový graf",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Štýl",
|
"PE.Views.ChartSettings.textStyle": "Štýl",
|
||||||
"PE.Views.ChartSettings.textSurface": "Povrch",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Šírka",
|
"PE.Views.ChartSettings.textWidth": "Šírka",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatívny text",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatívny text",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Popis",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Popis",
|
||||||
|
@ -1311,20 +1311,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Zarovnať text na stred",
|
"PE.Views.Toolbar.textAlignMiddle": "Zarovnať text na stred",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Zarovnať text doprava",
|
"PE.Views.Toolbar.textAlignRight": "Zarovnať text doprava",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Zarovnať text nahor",
|
"PE.Views.Toolbar.textAlignTop": "Zarovnať text nahor",
|
||||||
"PE.Views.Toolbar.textArea": "Plošný graf",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Presunúť do pozadia",
|
"PE.Views.Toolbar.textArrangeBack": "Presunúť do pozadia",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Posunúť späť",
|
"PE.Views.Toolbar.textArrangeBackward": "Posunúť späť",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Posunúť vpred",
|
"PE.Views.Toolbar.textArrangeForward": "Posunúť vpred",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Premiestniť do popredia",
|
"PE.Views.Toolbar.textArrangeFront": "Premiestniť do popredia",
|
||||||
"PE.Views.Toolbar.textBar": "Pruhový graf",
|
|
||||||
"PE.Views.Toolbar.textBold": "Tučné",
|
"PE.Views.Toolbar.textBold": "Tučné",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafy",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Stĺpec",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
"PE.Views.Toolbar.textItalic": "Kurzíva",
|
||||||
"PE.Views.Toolbar.textLine": "Čiara/líniový graf",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Vlastná farba",
|
"PE.Views.Toolbar.textNewColor": "Vlastná farba",
|
||||||
"PE.Views.Toolbar.textPie": "Koláčový graf",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Bodový graf",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Zarovnať dole",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Zarovnať dole",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Centrovať",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Centrovať",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Zarovnať doľava",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Zarovnať doľava",
|
||||||
|
@ -1335,11 +1328,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Zobraziť od aktuálnej snímky",
|
"PE.Views.Toolbar.textShowCurrent": "Zobraziť od aktuálnej snímky",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Zobraziť režim prezentácie",
|
"PE.Views.Toolbar.textShowPresenterView": "Zobraziť režim prezentácie",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Ukázať Nastavenia",
|
"PE.Views.Toolbar.textShowSettings": "Ukázať Nastavenia",
|
||||||
"PE.Views.Toolbar.textStock": "Akcie/burzový graf",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Prečiarknuť",
|
"PE.Views.Toolbar.textStrikeout": "Prečiarknuť",
|
||||||
"PE.Views.Toolbar.textSubscript": "Dolný index",
|
"PE.Views.Toolbar.textSubscript": "Dolný index",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Horný index",
|
"PE.Views.Toolbar.textSuperscript": "Horný index",
|
||||||
"PE.Views.Toolbar.textSurface": "Povrch",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Spolupráca",
|
"PE.Views.Toolbar.textTabCollaboration": "Spolupráca",
|
||||||
"PE.Views.Toolbar.textTabFile": "Súbor",
|
"PE.Views.Toolbar.textTabFile": "Súbor",
|
||||||
"PE.Views.Toolbar.textTabHome": "Hlavná stránka",
|
"PE.Views.Toolbar.textTabHome": "Hlavná stránka",
|
||||||
|
|
|
@ -5,6 +5,13 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Zapri",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Zapri",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je onemogočen, saj ga ureja drug uporabnik.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je onemogočen, saj ga ureja drug uporabnik.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Opozorilo",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Opozorilo",
|
||||||
|
"Common.define.chartData.textArea": "Ploščinski grafikon",
|
||||||
|
"Common.define.chartData.textBar": "Stolpični grafikon",
|
||||||
|
"Common.define.chartData.textColumn": "Stolpični grafikon",
|
||||||
|
"Common.define.chartData.textLine": "Vrstični grafikon",
|
||||||
|
"Common.define.chartData.textPie": "Tortni grafikon",
|
||||||
|
"Common.define.chartData.textPoint": "Točkovni grafikon",
|
||||||
|
"Common.define.chartData.textStock": "Založni grafikon",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Ni mej",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Ni mej",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
|
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
|
||||||
|
@ -203,18 +210,11 @@
|
||||||
"PE.Controllers.Toolbar.textEmptyImgUrl": "Določiti morate URL slike.",
|
"PE.Controllers.Toolbar.textEmptyImgUrl": "Določiti morate URL slike.",
|
||||||
"PE.Controllers.Toolbar.textFontSizeErr": "Vnesena vrednost je nepravilna.<br>Prosim vnesite numerično vrednost med 1 in 100",
|
"PE.Controllers.Toolbar.textFontSizeErr": "Vnesena vrednost je nepravilna.<br>Prosim vnesite numerično vrednost med 1 in 100",
|
||||||
"PE.Controllers.Toolbar.textWarning": "Opozorilo",
|
"PE.Controllers.Toolbar.textWarning": "Opozorilo",
|
||||||
"PE.Views.ChartSettings.textArea": "Ploščinski grafikon",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Stolpični grafikon",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice",
|
"PE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice",
|
||||||
"PE.Views.ChartSettings.textColumn": "Stolpični grafikon",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Uredi podatke",
|
"PE.Views.ChartSettings.textEditData": "Uredi podatke",
|
||||||
"PE.Views.ChartSettings.textHeight": "Višina",
|
"PE.Views.ChartSettings.textHeight": "Višina",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Nenehna razmerja",
|
"PE.Views.ChartSettings.textKeepRatio": "Nenehna razmerja",
|
||||||
"PE.Views.ChartSettings.textLine": "Vrstični grafikon",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Tortni grafikon",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Točkovni grafikon",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Velikost",
|
"PE.Views.ChartSettings.textSize": "Velikost",
|
||||||
"PE.Views.ChartSettings.textStock": "Založni grafikon",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Slog",
|
"PE.Views.ChartSettings.textStyle": "Slog",
|
||||||
"PE.Views.ChartSettings.textWidth": "Širina",
|
"PE.Views.ChartSettings.textWidth": "Širina",
|
||||||
"PE.Views.DocumentHolder.aboveText": "Nad",
|
"PE.Views.DocumentHolder.aboveText": "Nad",
|
||||||
|
@ -698,26 +698,19 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Besedilo poravnaj na sredino",
|
"PE.Views.Toolbar.textAlignMiddle": "Besedilo poravnaj na sredino",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Uskladi Besedilo Desno",
|
"PE.Views.Toolbar.textAlignRight": "Uskladi Besedilo Desno",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Besedilo poravnaj na vrh",
|
"PE.Views.Toolbar.textAlignTop": "Besedilo poravnaj na vrh",
|
||||||
"PE.Views.Toolbar.textArea": "Ploščinski grafikon",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Pošlji k ozadju",
|
"PE.Views.Toolbar.textArrangeBack": "Pošlji k ozadju",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Premakni nazaj",
|
"PE.Views.Toolbar.textArrangeBackward": "Premakni nazaj",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Premakni naprej",
|
"PE.Views.Toolbar.textArrangeForward": "Premakni naprej",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Premakni v ospredje",
|
"PE.Views.Toolbar.textArrangeFront": "Premakni v ospredje",
|
||||||
"PE.Views.Toolbar.textBar": "Stolpični grafikon",
|
|
||||||
"PE.Views.Toolbar.textBold": "Krepko",
|
"PE.Views.Toolbar.textBold": "Krepko",
|
||||||
"PE.Views.Toolbar.textColumn": "Stolpični grafikon",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Poševno",
|
"PE.Views.Toolbar.textItalic": "Poševno",
|
||||||
"PE.Views.Toolbar.textLine": "Vrstični grafikon",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Barva po meri",
|
"PE.Views.Toolbar.textNewColor": "Barva po meri",
|
||||||
"PE.Views.Toolbar.textPie": "Tortni grafikon",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Točkovni grafikon",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Poravnaj dno",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Poravnaj dno",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Poravnaj središče",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Poravnaj središče",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Poravnaj levo",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Poravnaj levo",
|
||||||
"PE.Views.Toolbar.textShapeAlignMiddle": "Poravnaj sredino",
|
"PE.Views.Toolbar.textShapeAlignMiddle": "Poravnaj sredino",
|
||||||
"PE.Views.Toolbar.textShapeAlignRight": "Poravnaj desno",
|
"PE.Views.Toolbar.textShapeAlignRight": "Poravnaj desno",
|
||||||
"PE.Views.Toolbar.textShapeAlignTop": "Poravnaj vrh",
|
"PE.Views.Toolbar.textShapeAlignTop": "Poravnaj vrh",
|
||||||
"PE.Views.Toolbar.textStock": "Založni grafikon",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Prečrtaj",
|
"PE.Views.Toolbar.textStrikeout": "Prečrtaj",
|
||||||
"PE.Views.Toolbar.textSubscript": "Pripis",
|
"PE.Views.Toolbar.textSubscript": "Pripis",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Nadpis",
|
"PE.Views.Toolbar.textSuperscript": "Nadpis",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Kapat",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Kapat",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Obje devre dışı bırakıldı, çünkü başka kullanıcı tarafından düzenleniyor.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Obje devre dışı bırakıldı, çünkü başka kullanıcı tarafından düzenleniyor.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Dikkat",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Dikkat",
|
||||||
|
"Common.define.chartData.textArea": "Bölge Grafiği",
|
||||||
|
"Common.define.chartData.textBar": "Çubuk grafik",
|
||||||
|
"Common.define.chartData.textColumn": "Sütun grafik",
|
||||||
|
"Common.define.chartData.textLine": "Çizgi grafiği",
|
||||||
|
"Common.define.chartData.textPie": "Dilim grafik",
|
||||||
|
"Common.define.chartData.textPoint": "Nokta grafiği",
|
||||||
|
"Common.define.chartData.textStock": "Stok Grafiği",
|
||||||
|
"Common.define.chartData.textSurface": "Yüzey",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sınır yok",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sınır yok",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
|
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
|
||||||
|
@ -624,20 +632,12 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Gelişmiş Ayarları Göster",
|
"PE.Views.ChartSettings.textAdvanced": "Gelişmiş Ayarları Göster",
|
||||||
"PE.Views.ChartSettings.textArea": "Bölge Grafiği",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Çubuk grafik",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir",
|
"PE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir",
|
||||||
"PE.Views.ChartSettings.textColumn": "Sütun grafik",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Veri düzenle",
|
"PE.Views.ChartSettings.textEditData": "Veri düzenle",
|
||||||
"PE.Views.ChartSettings.textHeight": "Yükseklik",
|
"PE.Views.ChartSettings.textHeight": "Yükseklik",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Sabit Orantılar",
|
"PE.Views.ChartSettings.textKeepRatio": "Sabit Orantılar",
|
||||||
"PE.Views.ChartSettings.textLine": "Çizgi grafiği",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Dilim grafik",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "Nokta grafiği",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Boyut",
|
"PE.Views.ChartSettings.textSize": "Boyut",
|
||||||
"PE.Views.ChartSettings.textStock": "Stok Grafiği",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Stil",
|
"PE.Views.ChartSettings.textStyle": "Stil",
|
||||||
"PE.Views.ChartSettings.textSurface": "Yüzey",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Genişlik",
|
"PE.Views.ChartSettings.textWidth": "Genişlik",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatif Metin",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternatif Metin",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Açıklama",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Açıklama",
|
||||||
|
@ -1267,20 +1267,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Metni ortaya hizala",
|
"PE.Views.Toolbar.textAlignMiddle": "Metni ortaya hizala",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Metni Sağa Hizala",
|
"PE.Views.Toolbar.textAlignRight": "Metni Sağa Hizala",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Metni yukarı hizala",
|
"PE.Views.Toolbar.textAlignTop": "Metni yukarı hizala",
|
||||||
"PE.Views.Toolbar.textArea": "Bölge Grafiği",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Arkaplana gönder",
|
"PE.Views.Toolbar.textArrangeBack": "Arkaplana gönder",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Geri Gönder",
|
"PE.Views.Toolbar.textArrangeBackward": "Geri Gönder",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "İleri Taşı",
|
"PE.Views.Toolbar.textArrangeForward": "İleri Taşı",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Önplana Getir",
|
"PE.Views.Toolbar.textArrangeFront": "Önplana Getir",
|
||||||
"PE.Views.Toolbar.textBar": "Çubuk grafik",
|
|
||||||
"PE.Views.Toolbar.textBold": "Kalın",
|
"PE.Views.Toolbar.textBold": "Kalın",
|
||||||
"PE.Views.Toolbar.textCharts": "Grafikler",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Sütun grafik",
|
|
||||||
"PE.Views.Toolbar.textItalic": "İtalik",
|
"PE.Views.Toolbar.textItalic": "İtalik",
|
||||||
"PE.Views.Toolbar.textLine": "Çizgi grafiği",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Özel Renk",
|
"PE.Views.Toolbar.textNewColor": "Özel Renk",
|
||||||
"PE.Views.Toolbar.textPie": "Dilim grafik",
|
|
||||||
"PE.Views.Toolbar.textPoint": "Nokta grafiği",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Alta Hizala",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Alta Hizala",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Ortaya Hizala",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Ortaya Hizala",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Sola Hizala",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Sola Hizala",
|
||||||
|
@ -1291,11 +1284,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Mevcut slayttan itibaren göster",
|
"PE.Views.Toolbar.textShowCurrent": "Mevcut slayttan itibaren göster",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Sunucu görünümüne geç",
|
"PE.Views.Toolbar.textShowPresenterView": "Sunucu görünümüne geç",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Ayarları göster",
|
"PE.Views.Toolbar.textShowSettings": "Ayarları göster",
|
||||||
"PE.Views.Toolbar.textStock": "Stok Grafiği",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Üstü çizili",
|
"PE.Views.Toolbar.textStrikeout": "Üstü çizili",
|
||||||
"PE.Views.Toolbar.textSubscript": "Altsimge",
|
"PE.Views.Toolbar.textSubscript": "Altsimge",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Üstsimge",
|
"PE.Views.Toolbar.textSuperscript": "Üstsimge",
|
||||||
"PE.Views.Toolbar.textSurface": "Yüzey",
|
|
||||||
"PE.Views.Toolbar.textTabFile": "Dosya",
|
"PE.Views.Toolbar.textTabFile": "Dosya",
|
||||||
"PE.Views.Toolbar.textTabHome": "Ana Sayfa",
|
"PE.Views.Toolbar.textTabHome": "Ana Sayfa",
|
||||||
"PE.Views.Toolbar.textTabInsert": "Ekle",
|
"PE.Views.Toolbar.textTabInsert": "Ekle",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Закрити",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Закрити",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Об'єкт вимкнено, оскільки його редагує інший користувач.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Об'єкт вимкнено, оскільки його редагує інший користувач.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Застереження",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Застереження",
|
||||||
|
"Common.define.chartData.textArea": "Площа",
|
||||||
|
"Common.define.chartData.textBar": "Вставити",
|
||||||
|
"Common.define.chartData.textColumn": "Колона",
|
||||||
|
"Common.define.chartData.textLine": "Лінія",
|
||||||
|
"Common.define.chartData.textPie": "Пиріг",
|
||||||
|
"Common.define.chartData.textPoint": "XY (розсіювання)",
|
||||||
|
"Common.define.chartData.textStock": "Запас",
|
||||||
|
"Common.define.chartData.textSurface": "Поверхня",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
|
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
|
||||||
|
@ -600,20 +608,12 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "ксі",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "ксі",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Зета",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Зета",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування",
|
"PE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування",
|
||||||
"PE.Views.ChartSettings.textArea": "Площа",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Вставити",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Змінити тип діаграми",
|
"PE.Views.ChartSettings.textChartType": "Змінити тип діаграми",
|
||||||
"PE.Views.ChartSettings.textColumn": "Колона",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Редагувати дату",
|
"PE.Views.ChartSettings.textEditData": "Редагувати дату",
|
||||||
"PE.Views.ChartSettings.textHeight": "Висота",
|
"PE.Views.ChartSettings.textHeight": "Висота",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Сталі пропорції",
|
"PE.Views.ChartSettings.textKeepRatio": "Сталі пропорції",
|
||||||
"PE.Views.ChartSettings.textLine": "Лінія",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Пиріг",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY (розсіювання)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Розмір",
|
"PE.Views.ChartSettings.textSize": "Розмір",
|
||||||
"PE.Views.ChartSettings.textStock": "Запас",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Стиль",
|
"PE.Views.ChartSettings.textStyle": "Стиль",
|
||||||
"PE.Views.ChartSettings.textSurface": "Поверхня",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Ширина",
|
"PE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Альтернативний текст",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Альтернативний текст",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Опис",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Опис",
|
||||||
|
@ -1248,20 +1248,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Вирівняти текст по центру",
|
"PE.Views.Toolbar.textAlignMiddle": "Вирівняти текст по центру",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Вирівняти текст праворуч",
|
"PE.Views.Toolbar.textAlignRight": "Вирівняти текст праворуч",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Вирівняти текст догори",
|
"PE.Views.Toolbar.textAlignTop": "Вирівняти текст догори",
|
||||||
"PE.Views.Toolbar.textArea": "Площа",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Надіслати до фону",
|
"PE.Views.Toolbar.textArrangeBack": "Надіслати до фону",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Відправити назад",
|
"PE.Views.Toolbar.textArrangeBackward": "Відправити назад",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Висувати",
|
"PE.Views.Toolbar.textArrangeForward": "Висувати",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Перенести на передній план",
|
"PE.Views.Toolbar.textArrangeFront": "Перенести на передній план",
|
||||||
"PE.Views.Toolbar.textBar": "Вставити",
|
|
||||||
"PE.Views.Toolbar.textBold": "Жирний",
|
"PE.Views.Toolbar.textBold": "Жирний",
|
||||||
"PE.Views.Toolbar.textCharts": "Діаграми",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Колона",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Курсив",
|
"PE.Views.Toolbar.textItalic": "Курсив",
|
||||||
"PE.Views.Toolbar.textLine": "Лінія",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Власний колір",
|
"PE.Views.Toolbar.textNewColor": "Власний колір",
|
||||||
"PE.Views.Toolbar.textPie": "Пиріг",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY (розсіювання)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Вирівняти знизу",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Вирівняти знизу",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Вирівняти центр",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Вирівняти центр",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Вирівняти зліва",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Вирівняти зліва",
|
||||||
|
@ -1272,11 +1265,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Показати з поточного слайда",
|
"PE.Views.Toolbar.textShowCurrent": "Показати з поточного слайда",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Показати представлення провідника",
|
"PE.Views.Toolbar.textShowPresenterView": "Показати представлення провідника",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Показати налаштування",
|
"PE.Views.Toolbar.textShowSettings": "Показати налаштування",
|
||||||
"PE.Views.Toolbar.textStock": "Запас",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Викреслити",
|
"PE.Views.Toolbar.textStrikeout": "Викреслити",
|
||||||
"PE.Views.Toolbar.textSubscript": "Підрядковий",
|
"PE.Views.Toolbar.textSubscript": "Підрядковий",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Надрядковий",
|
"PE.Views.Toolbar.textSuperscript": "Надрядковий",
|
||||||
"PE.Views.Toolbar.textSurface": "Поверхня",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "Співпраця",
|
"PE.Views.Toolbar.textTabCollaboration": "Співпраця",
|
||||||
"PE.Views.Toolbar.textTabFile": "Файл",
|
"PE.Views.Toolbar.textTabFile": "Файл",
|
||||||
"PE.Views.Toolbar.textTabHome": "Домашній",
|
"PE.Views.Toolbar.textTabHome": "Домашній",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "Đóng",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "Đóng",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "Đối tượng bị vô hiệu vì nó đang được chỉnh sửa bởi một người dùng khác.",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "Đối tượng bị vô hiệu vì nó đang được chỉnh sửa bởi một người dùng khác.",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Cảnh báo",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Cảnh báo",
|
||||||
|
"Common.define.chartData.textArea": "Vùng",
|
||||||
|
"Common.define.chartData.textBar": "Gạch",
|
||||||
|
"Common.define.chartData.textColumn": "Cột",
|
||||||
|
"Common.define.chartData.textLine": "Đường kẻ",
|
||||||
|
"Common.define.chartData.textPie": "Hình bánh",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Phân tán)",
|
||||||
|
"Common.define.chartData.textStock": "Cổ phiếu",
|
||||||
|
"Common.define.chartData.textSurface": "Bề mặt",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Không viền",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Không viền",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
|
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
|
||||||
|
@ -597,20 +605,12 @@
|
||||||
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
|
||||||
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "Hiển thị Cài đặt Nâng cao",
|
"PE.Views.ChartSettings.textAdvanced": "Hiển thị Cài đặt Nâng cao",
|
||||||
"PE.Views.ChartSettings.textArea": "Vùng",
|
|
||||||
"PE.Views.ChartSettings.textBar": "Cột",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "Thay đổi Loại biểu đồ",
|
"PE.Views.ChartSettings.textChartType": "Thay đổi Loại biểu đồ",
|
||||||
"PE.Views.ChartSettings.textColumn": "Cột",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "Chỉnh sửa Dữ liệu",
|
"PE.Views.ChartSettings.textEditData": "Chỉnh sửa Dữ liệu",
|
||||||
"PE.Views.ChartSettings.textHeight": "Chiều cao",
|
"PE.Views.ChartSettings.textHeight": "Chiều cao",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "Tỷ lệ không đổi",
|
"PE.Views.ChartSettings.textKeepRatio": "Tỷ lệ không đổi",
|
||||||
"PE.Views.ChartSettings.textLine": "Đường kẻ",
|
|
||||||
"PE.Views.ChartSettings.textPie": "Hình bánh",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY (Phân tán)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "Kích thước",
|
"PE.Views.ChartSettings.textSize": "Kích thước",
|
||||||
"PE.Views.ChartSettings.textStock": "Cổ phiếu",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "Kiểu",
|
"PE.Views.ChartSettings.textStyle": "Kiểu",
|
||||||
"PE.Views.ChartSettings.textSurface": "Bề mặt",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "Chiều rộng",
|
"PE.Views.ChartSettings.textWidth": "Chiều rộng",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "Văn bản thay thế",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "Văn bản thay thế",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Mô tả",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Mô tả",
|
||||||
|
@ -1235,20 +1235,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "Căn chỉnh văn bản vào giữa",
|
"PE.Views.Toolbar.textAlignMiddle": "Căn chỉnh văn bản vào giữa",
|
||||||
"PE.Views.Toolbar.textAlignRight": "Căn chỉnh văn bản sang phải",
|
"PE.Views.Toolbar.textAlignRight": "Căn chỉnh văn bản sang phải",
|
||||||
"PE.Views.Toolbar.textAlignTop": "Căn chỉnh văn bản lên trên cùng",
|
"PE.Views.Toolbar.textAlignTop": "Căn chỉnh văn bản lên trên cùng",
|
||||||
"PE.Views.Toolbar.textArea": "Vùng",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Gửi tới Nền",
|
"PE.Views.Toolbar.textArrangeBack": "Gửi tới Nền",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Gửi về phía sau",
|
"PE.Views.Toolbar.textArrangeBackward": "Gửi về phía sau",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Di chuyển tiến lên",
|
"PE.Views.Toolbar.textArrangeForward": "Di chuyển tiến lên",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Đưa lên Cận cảnh",
|
"PE.Views.Toolbar.textArrangeFront": "Đưa lên Cận cảnh",
|
||||||
"PE.Views.Toolbar.textBar": "Cột",
|
|
||||||
"PE.Views.Toolbar.textBold": "Đậm",
|
"PE.Views.Toolbar.textBold": "Đậm",
|
||||||
"PE.Views.Toolbar.textCharts": "Biểu đồ",
|
|
||||||
"PE.Views.Toolbar.textColumn": "Cột",
|
|
||||||
"PE.Views.Toolbar.textItalic": "Nghiêng",
|
"PE.Views.Toolbar.textItalic": "Nghiêng",
|
||||||
"PE.Views.Toolbar.textLine": "Đường kẻ",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "Màu tùy chỉnh",
|
"PE.Views.Toolbar.textNewColor": "Màu tùy chỉnh",
|
||||||
"PE.Views.Toolbar.textPie": "Hình bánh",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY (Phân tán)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "Căn dưới cùng",
|
"PE.Views.Toolbar.textShapeAlignBottom": "Căn dưới cùng",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "Căn trung tâm",
|
"PE.Views.Toolbar.textShapeAlignCenter": "Căn trung tâm",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "Căn trái",
|
"PE.Views.Toolbar.textShapeAlignLeft": "Căn trái",
|
||||||
|
@ -1259,11 +1252,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "Hiển thị từ slide Hiện tại",
|
"PE.Views.Toolbar.textShowCurrent": "Hiển thị từ slide Hiện tại",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "Hiển thị presenter view",
|
"PE.Views.Toolbar.textShowPresenterView": "Hiển thị presenter view",
|
||||||
"PE.Views.Toolbar.textShowSettings": "Hiển thị cài đặt",
|
"PE.Views.Toolbar.textShowSettings": "Hiển thị cài đặt",
|
||||||
"PE.Views.Toolbar.textStock": "Cổ phiếu",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "Gạch bỏ",
|
"PE.Views.Toolbar.textStrikeout": "Gạch bỏ",
|
||||||
"PE.Views.Toolbar.textSubscript": "Chỉ số dưới",
|
"PE.Views.Toolbar.textSubscript": "Chỉ số dưới",
|
||||||
"PE.Views.Toolbar.textSuperscript": "Chỉ số trên",
|
"PE.Views.Toolbar.textSuperscript": "Chỉ số trên",
|
||||||
"PE.Views.Toolbar.textSurface": "Bề mặt",
|
|
||||||
"PE.Views.Toolbar.textTabFile": "File",
|
"PE.Views.Toolbar.textTabFile": "File",
|
||||||
"PE.Views.Toolbar.textTabHome": "Trang chủ",
|
"PE.Views.Toolbar.textTabHome": "Trang chủ",
|
||||||
"PE.Views.Toolbar.textTabInsert": "Chèn",
|
"PE.Views.Toolbar.textTabInsert": "Chèn",
|
||||||
|
|
|
@ -5,6 +5,14 @@
|
||||||
"Common.Controllers.ExternalDiagramEditor.textClose": "关闭",
|
"Common.Controllers.ExternalDiagramEditor.textClose": "关闭",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningText": "该对象被禁用,因为它被另一个用户编辑。",
|
"Common.Controllers.ExternalDiagramEditor.warningText": "该对象被禁用,因为它被另一个用户编辑。",
|
||||||
"Common.Controllers.ExternalDiagramEditor.warningTitle": "警告",
|
"Common.Controllers.ExternalDiagramEditor.warningTitle": "警告",
|
||||||
|
"Common.define.chartData.textArea": "区域",
|
||||||
|
"Common.define.chartData.textBar": "条",
|
||||||
|
"Common.define.chartData.textColumn": "列",
|
||||||
|
"Common.define.chartData.textLine": "线",
|
||||||
|
"Common.define.chartData.textPie": "派",
|
||||||
|
"Common.define.chartData.textPoint": "XY(散射)",
|
||||||
|
"Common.define.chartData.textStock": "股票",
|
||||||
|
"Common.define.chartData.textSurface": "平面",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
|
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
||||||
|
@ -901,20 +909,12 @@
|
||||||
"PE.Controllers.Viewport.textFitPage": "适合幻灯片",
|
"PE.Controllers.Viewport.textFitPage": "适合幻灯片",
|
||||||
"PE.Controllers.Viewport.textFitWidth": "适合宽度",
|
"PE.Controllers.Viewport.textFitWidth": "适合宽度",
|
||||||
"PE.Views.ChartSettings.textAdvanced": "显示高级设置",
|
"PE.Views.ChartSettings.textAdvanced": "显示高级设置",
|
||||||
"PE.Views.ChartSettings.textArea": "区域",
|
|
||||||
"PE.Views.ChartSettings.textBar": "条",
|
|
||||||
"PE.Views.ChartSettings.textChartType": "更改图表类型",
|
"PE.Views.ChartSettings.textChartType": "更改图表类型",
|
||||||
"PE.Views.ChartSettings.textColumn": "列",
|
|
||||||
"PE.Views.ChartSettings.textEditData": "编辑数据",
|
"PE.Views.ChartSettings.textEditData": "编辑数据",
|
||||||
"PE.Views.ChartSettings.textHeight": "高度",
|
"PE.Views.ChartSettings.textHeight": "高度",
|
||||||
"PE.Views.ChartSettings.textKeepRatio": "不变比例",
|
"PE.Views.ChartSettings.textKeepRatio": "不变比例",
|
||||||
"PE.Views.ChartSettings.textLine": "线",
|
|
||||||
"PE.Views.ChartSettings.textPie": "派",
|
|
||||||
"PE.Views.ChartSettings.textPoint": "XY(散射)",
|
|
||||||
"PE.Views.ChartSettings.textSize": "大小",
|
"PE.Views.ChartSettings.textSize": "大小",
|
||||||
"PE.Views.ChartSettings.textStock": "股票",
|
|
||||||
"PE.Views.ChartSettings.textStyle": "类型",
|
"PE.Views.ChartSettings.textStyle": "类型",
|
||||||
"PE.Views.ChartSettings.textSurface": "平面",
|
|
||||||
"PE.Views.ChartSettings.textWidth": "宽度",
|
"PE.Views.ChartSettings.textWidth": "宽度",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAlt": "可选文本",
|
"PE.Views.ChartSettingsAdvanced.textAlt": "可选文本",
|
||||||
"PE.Views.ChartSettingsAdvanced.textAltDescription": "描述",
|
"PE.Views.ChartSettingsAdvanced.textAltDescription": "描述",
|
||||||
|
@ -1622,20 +1622,13 @@
|
||||||
"PE.Views.Toolbar.textAlignMiddle": "将文本对齐到底部",
|
"PE.Views.Toolbar.textAlignMiddle": "将文本对齐到底部",
|
||||||
"PE.Views.Toolbar.textAlignRight": "对齐文本",
|
"PE.Views.Toolbar.textAlignRight": "对齐文本",
|
||||||
"PE.Views.Toolbar.textAlignTop": "将文本对齐到顶部",
|
"PE.Views.Toolbar.textAlignTop": "将文本对齐到顶部",
|
||||||
"PE.Views.Toolbar.textArea": "区域",
|
|
||||||
"PE.Views.Toolbar.textArrangeBack": "发送到背景",
|
"PE.Views.Toolbar.textArrangeBack": "发送到背景",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "向后移动",
|
"PE.Views.Toolbar.textArrangeBackward": "向后移动",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "向前移动",
|
"PE.Views.Toolbar.textArrangeForward": "向前移动",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "放到最上面",
|
"PE.Views.Toolbar.textArrangeFront": "放到最上面",
|
||||||
"PE.Views.Toolbar.textBar": "条",
|
|
||||||
"PE.Views.Toolbar.textBold": "加粗",
|
"PE.Views.Toolbar.textBold": "加粗",
|
||||||
"PE.Views.Toolbar.textCharts": "图表",
|
|
||||||
"PE.Views.Toolbar.textColumn": "列",
|
|
||||||
"PE.Views.Toolbar.textItalic": "斜体",
|
"PE.Views.Toolbar.textItalic": "斜体",
|
||||||
"PE.Views.Toolbar.textLine": "线",
|
|
||||||
"PE.Views.Toolbar.textNewColor": "自定义颜色",
|
"PE.Views.Toolbar.textNewColor": "自定义颜色",
|
||||||
"PE.Views.Toolbar.textPie": "派",
|
|
||||||
"PE.Views.Toolbar.textPoint": "XY(散射)",
|
|
||||||
"PE.Views.Toolbar.textShapeAlignBottom": "底部对齐",
|
"PE.Views.Toolbar.textShapeAlignBottom": "底部对齐",
|
||||||
"PE.Views.Toolbar.textShapeAlignCenter": "居中对齐",
|
"PE.Views.Toolbar.textShapeAlignCenter": "居中对齐",
|
||||||
"PE.Views.Toolbar.textShapeAlignLeft": "左对齐",
|
"PE.Views.Toolbar.textShapeAlignLeft": "左对齐",
|
||||||
|
@ -1646,11 +1639,9 @@
|
||||||
"PE.Views.Toolbar.textShowCurrent": "从当前幻灯片展示",
|
"PE.Views.Toolbar.textShowCurrent": "从当前幻灯片展示",
|
||||||
"PE.Views.Toolbar.textShowPresenterView": "显示演示者视图",
|
"PE.Views.Toolbar.textShowPresenterView": "显示演示者视图",
|
||||||
"PE.Views.Toolbar.textShowSettings": "显示设置",
|
"PE.Views.Toolbar.textShowSettings": "显示设置",
|
||||||
"PE.Views.Toolbar.textStock": "股票",
|
|
||||||
"PE.Views.Toolbar.textStrikeout": "加删除线",
|
"PE.Views.Toolbar.textStrikeout": "加删除线",
|
||||||
"PE.Views.Toolbar.textSubscript": "下标",
|
"PE.Views.Toolbar.textSubscript": "下标",
|
||||||
"PE.Views.Toolbar.textSuperscript": "上标",
|
"PE.Views.Toolbar.textSuperscript": "上标",
|
||||||
"PE.Views.Toolbar.textSurface": "平面",
|
|
||||||
"PE.Views.Toolbar.textTabCollaboration": "协作",
|
"PE.Views.Toolbar.textTabCollaboration": "协作",
|
||||||
"PE.Views.Toolbar.textTabFile": "文件",
|
"PE.Views.Toolbar.textTabFile": "文件",
|
||||||
"PE.Views.Toolbar.textTabHome": "主页",
|
"PE.Views.Toolbar.textTabHome": "主页",
|
||||||
|
|
|
@ -151,6 +151,7 @@ var sdk_dev_scrpipts = [
|
||||||
"../../../../sdkjs/word/Editor/StructuredDocumentTags/SdtPrChanges.js",
|
"../../../../sdkjs/word/Editor/StructuredDocumentTags/SdtPrChanges.js",
|
||||||
"../../../../sdkjs/slide/apiCommon.js",
|
"../../../../sdkjs/slide/apiCommon.js",
|
||||||
"../../../../sdkjs/common/apiBase.js",
|
"../../../../sdkjs/common/apiBase.js",
|
||||||
|
"../../../../sdkjs/common/apiBase_plugins.js",
|
||||||
"../../../../sdkjs/slide/api.js",
|
"../../../../sdkjs/slide/api.js",
|
||||||
"../../../../sdkjs/word/Editor/ParagraphContentBase.js",
|
"../../../../sdkjs/word/Editor/ParagraphContentBase.js",
|
||||||
"../../../../sdkjs/word/Editor/Hyperlink.js",
|
"../../../../sdkjs/word/Editor/Hyperlink.js",
|
||||||
|
|
|
@ -763,8 +763,10 @@ define([
|
||||||
}
|
}
|
||||||
if (props) {
|
if (props) {
|
||||||
(new Common.Views.ListSettingsDialog({
|
(new Common.Views.ListSettingsDialog({
|
||||||
|
api: me.api,
|
||||||
props: props,
|
props: props,
|
||||||
type: this.api.asc_getCurrentListType().get_ListType(),
|
type: me.api.asc_getCurrentListType().get_ListType(),
|
||||||
|
interfaceLang: me.permissions.lang,
|
||||||
handler: function(result, value) {
|
handler: function(result, value) {
|
||||||
if (result == 'ok') {
|
if (result == 'ok') {
|
||||||
if (me.api) {
|
if (me.api) {
|
||||||
|
@ -1687,10 +1689,12 @@ define([
|
||||||
var hyperinfo = cellinfo.asc_getHyperlink(),
|
var hyperinfo = cellinfo.asc_getHyperlink(),
|
||||||
can_add_hyperlink = this.api.asc_canAddShapeHyperlink();
|
can_add_hyperlink = this.api.asc_canAddShapeHyperlink();
|
||||||
|
|
||||||
|
documentHolder.menuParagraphBullets.setVisible(istextchartmenu!==true);
|
||||||
documentHolder.menuHyperlinkShape.setVisible(istextshapemenu && can_add_hyperlink!==false && hyperinfo);
|
documentHolder.menuHyperlinkShape.setVisible(istextshapemenu && can_add_hyperlink!==false && hyperinfo);
|
||||||
documentHolder.menuAddHyperlinkShape.setVisible(istextshapemenu && can_add_hyperlink!==false && !hyperinfo);
|
documentHolder.menuAddHyperlinkShape.setVisible(istextshapemenu && can_add_hyperlink!==false && !hyperinfo);
|
||||||
documentHolder.menuParagraphVAlign.setVisible(istextchartmenu!==true && !isEquation); // убрать после того, как заголовок можно будет растягивать по вертикали!!
|
documentHolder.menuParagraphVAlign.setVisible(istextchartmenu!==true && !isEquation); // убрать после того, как заголовок можно будет растягивать по вертикали!!
|
||||||
documentHolder.menuParagraphDirection.setVisible(istextchartmenu!==true && !isEquation); // убрать после того, как заголовок можно будет растягивать по вертикали!!
|
documentHolder.menuParagraphDirection.setVisible(istextchartmenu!==true && !isEquation); // убрать после того, как заголовок можно будет растягивать по вертикали!!
|
||||||
|
documentHolder.textInShapeMenu.items[3].setVisible(istextchartmenu!==true || istextshapemenu && can_add_hyperlink!==false);
|
||||||
documentHolder.pmiTextAdvanced.setVisible(documentHolder.pmiTextAdvanced.textInfo!==undefined);
|
documentHolder.pmiTextAdvanced.setVisible(documentHolder.pmiTextAdvanced.textInfo!==undefined);
|
||||||
|
|
||||||
_.each(documentHolder.textInShapeMenu.items, function(item) {
|
_.each(documentHolder.textInShapeMenu.items, function(item) {
|
||||||
|
@ -1829,6 +1833,8 @@ define([
|
||||||
documentHolder.menuParagraphDirection.setVisible(false); // убрать после того, как заголовок можно будет растягивать по вертикали!!
|
documentHolder.menuParagraphDirection.setVisible(false); // убрать после того, как заголовок можно будет растягивать по вертикали!!
|
||||||
documentHolder.pmiTextAdvanced.setVisible(false);
|
documentHolder.pmiTextAdvanced.setVisible(false);
|
||||||
documentHolder.textInShapeMenu.items[9].setVisible(false);
|
documentHolder.textInShapeMenu.items[9].setVisible(false);
|
||||||
|
documentHolder.menuParagraphBullets.setVisible(false);
|
||||||
|
documentHolder.textInShapeMenu.items[3].setVisible(false);
|
||||||
documentHolder.pmiTextCopy.setDisabled(false);
|
documentHolder.pmiTextCopy.setDisabled(false);
|
||||||
if (showMenu) this.showPopupMenu(documentHolder.textInShapeMenu, {}, event);
|
if (showMenu) this.showPopupMenu(documentHolder.textInShapeMenu, {}, event);
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,12 +21,12 @@
|
||||||
<table cols="2">
|
<table cols="2">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<button type="button" class="btn btn-text-default" id="image-button-original-size" style="width:100px;"><%= scope.textOriginalSize %></button>
|
<button type="button" class="btn btn-text-default" id="image-button-original-size" style="min-width:100px;width: auto;"><%= scope.textOriginalSize %></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<div id="image-button-crop" style="width: 100px;"></div>
|
<div id="image-button-crop" style="min-width:100px;"></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -188,7 +188,7 @@ define([
|
||||||
editable: false,
|
editable: false,
|
||||||
data: this._arrFillSrc
|
data: this._arrFillSrc
|
||||||
});
|
});
|
||||||
this.cmbFillSrc.setValue(this._arrFillSrc[0].value);
|
this.cmbFillSrc.setValue(Asc.c_oAscFill.FILL_TYPE_NOFILL);
|
||||||
this.fillControls.push(this.cmbFillSrc);
|
this.fillControls.push(this.cmbFillSrc);
|
||||||
this.cmbFillSrc.on('selected', _.bind(this.onFillSrcSelect, this));
|
this.cmbFillSrc.on('selected', _.bind(this.onFillSrcSelect, this));
|
||||||
|
|
||||||
|
|
|
@ -167,6 +167,22 @@ define([
|
||||||
render: function() {
|
render: function() {
|
||||||
Common.UI.Window.prototype.render.call(this);
|
Common.UI.Window.prototype.render.call(this);
|
||||||
|
|
||||||
|
this.menuAddAlign = function(menuRoot, left, top) {
|
||||||
|
var self = this;
|
||||||
|
if (!$window.hasClass('notransform')) {
|
||||||
|
$window.addClass('notransform');
|
||||||
|
menuRoot.addClass('hidden');
|
||||||
|
setTimeout(function() {
|
||||||
|
menuRoot.removeClass('hidden');
|
||||||
|
menuRoot.css({left: left, top: top});
|
||||||
|
self.options.additionalAlign = null;
|
||||||
|
}, 300);
|
||||||
|
} else {
|
||||||
|
menuRoot.css({left: left, top: top});
|
||||||
|
self.options.additionalAlign = null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
var me = this,
|
var me = this,
|
||||||
$window = this.getChild();
|
$window = this.getChild();
|
||||||
|
|
||||||
|
@ -305,6 +321,7 @@ define([
|
||||||
menu: new Common.UI.Menu({
|
menu: new Common.UI.Menu({
|
||||||
style: 'min-width: 110px;',
|
style: 'min-width: 110px;',
|
||||||
maxHeight: 200,
|
maxHeight: 200,
|
||||||
|
additionalAlign: this.menuAddAlign,
|
||||||
items: data
|
items: data
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
@ -319,6 +336,7 @@ define([
|
||||||
menu: new Common.UI.Menu({
|
menu: new Common.UI.Menu({
|
||||||
style: 'min-width: 110px;',
|
style: 'min-width: 110px;',
|
||||||
maxHeight: 200,
|
maxHeight: 200,
|
||||||
|
additionalAlign: this.menuAddAlign,
|
||||||
items: data
|
items: data
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
@ -560,6 +578,7 @@ define([
|
||||||
hint : this.textColor,
|
hint : this.textColor,
|
||||||
split : true,
|
split : true,
|
||||||
menu : new Common.UI.Menu({
|
menu : new Common.UI.Menu({
|
||||||
|
additionalAlign: this.menuAddAlign,
|
||||||
items: [
|
items: [
|
||||||
{ template: _.template('<div id="id-dlg-h-menu-fontcolor" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
{ template: _.template('<div id="id-dlg-h-menu-fontcolor" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
||||||
{ template: _.template('<a id="id-dlg-h-menu-fontcolor-new" style="padding-left:12px;">' + this.textNewColor + '</a>') }
|
{ template: _.template('<a id="id-dlg-h-menu-fontcolor-new" style="padding-left:12px;">' + this.textNewColor + '</a>') }
|
||||||
|
@ -578,6 +597,7 @@ define([
|
||||||
hint : this.textColor,
|
hint : this.textColor,
|
||||||
split : true,
|
split : true,
|
||||||
menu : new Common.UI.Menu({
|
menu : new Common.UI.Menu({
|
||||||
|
additionalAlign: this.menuAddAlign,
|
||||||
items: [
|
items: [
|
||||||
{ template: _.template('<div id="id-dlg-f-menu-fontcolor" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
{ template: _.template('<div id="id-dlg-f-menu-fontcolor" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
||||||
{ template: _.template('<a id="id-dlg-f-menu-fontcolor-new" style="padding-left:12px;">' + this.textNewColor + '</a>') }
|
{ template: _.template('<a id="id-dlg-f-menu-fontcolor-new" style="padding-left:12px;">' + this.textNewColor + '</a>') }
|
||||||
|
@ -666,12 +686,14 @@ define([
|
||||||
this.btnPresetsH.setMenu(new Common.UI.Menu({
|
this.btnPresetsH.setMenu(new Common.UI.Menu({
|
||||||
style: 'min-width: 110px;',
|
style: 'min-width: 110px;',
|
||||||
maxHeight: 200,
|
maxHeight: 200,
|
||||||
|
additionalAlign: this.menuAddAlign,
|
||||||
items: presets
|
items: presets
|
||||||
}));
|
}));
|
||||||
this.btnPresetsH.menu.on('item:click', _.bind(this.onPresetSelect, this, false));
|
this.btnPresetsH.menu.on('item:click', _.bind(this.onPresetSelect, this, false));
|
||||||
this.btnPresetsF.setMenu(new Common.UI.Menu({
|
this.btnPresetsF.setMenu(new Common.UI.Menu({
|
||||||
style: 'min-width: 110px;',
|
style: 'min-width: 110px;',
|
||||||
maxHeight: 200,
|
maxHeight: 200,
|
||||||
|
additionalAlign: this.menuAddAlign,
|
||||||
items: presets
|
items: presets
|
||||||
}));
|
}));
|
||||||
this.btnPresetsF.menu.on('item:click', _.bind(this.onPresetSelect, this, true));
|
this.btnPresetsF.menu.on('item:click', _.bind(this.onPresetSelect, this, true));
|
||||||
|
|
|
@ -199,6 +199,7 @@ define([
|
||||||
|
|
||||||
this.lblReplace = $('#image-lbl-replace');
|
this.lblReplace = $('#image-lbl-replace');
|
||||||
|
|
||||||
|
var w = this.btnOriginalSize.cmpEl.outerWidth();
|
||||||
this.btnCrop = new Common.UI.Button({
|
this.btnCrop = new Common.UI.Button({
|
||||||
cls: 'btn-text-split-default',
|
cls: 'btn-text-split-default',
|
||||||
caption: this.textCrop,
|
caption: this.textCrop,
|
||||||
|
@ -206,9 +207,9 @@ define([
|
||||||
enableToggle: true,
|
enableToggle: true,
|
||||||
allowDepress: true,
|
allowDepress: true,
|
||||||
pressed: this._state.cropMode,
|
pressed: this._state.cropMode,
|
||||||
width: 100,
|
width: w,
|
||||||
menu : new Common.UI.Menu({
|
menu : new Common.UI.Menu({
|
||||||
style : 'min-width: 100px;',
|
style : 'min-width:' + w + 'px;',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
caption: this.textCrop,
|
caption: this.textCrop,
|
||||||
|
|
|
@ -1363,8 +1363,8 @@ define([
|
||||||
caption: me.capBtnScale,
|
caption: me.capBtnScale,
|
||||||
lock: [_set.docPropsLock, _set.lostConnect, _set.coAuth],
|
lock: [_set.docPropsLock, _set.lostConnect, _set.coAuth],
|
||||||
menu: new Common.UI.Menu({
|
menu: new Common.UI.Menu({
|
||||||
items: [
|
items: [],
|
||||||
]})
|
cls: 'scale-menu'})
|
||||||
});
|
});
|
||||||
var menuWidthItem = new Common.UI.MenuItem({
|
var menuWidthItem = new Common.UI.MenuItem({
|
||||||
caption: me.textWidth,
|
caption: me.textWidth,
|
||||||
|
|
|
@ -224,6 +224,7 @@
|
||||||
<script>
|
<script>
|
||||||
var params = getUrlParams(),
|
var params = getUrlParams(),
|
||||||
internal = params["internal"] == 'true',
|
internal = params["internal"] == 'true',
|
||||||
|
compact = params["compact"] == 'true',
|
||||||
view = params["mode"] == 'view';
|
view = params["mode"] == 'view';
|
||||||
|
|
||||||
if (internal) {
|
if (internal) {
|
||||||
|
@ -231,8 +232,11 @@
|
||||||
document.querySelector('.sktoolbar').remove();
|
document.querySelector('.sktoolbar').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (view) {
|
if (compact || view) {
|
||||||
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
||||||
|
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
|
||||||
|
}
|
||||||
|
if (view) {
|
||||||
document.querySelector('.sktoolbar').remove();
|
document.querySelector('.sktoolbar').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -229,6 +229,7 @@
|
||||||
<script>
|
<script>
|
||||||
var params = getUrlParams(),
|
var params = getUrlParams(),
|
||||||
internal = params["internal"] == 'true',
|
internal = params["internal"] == 'true',
|
||||||
|
compact = params["compact"] == 'true',
|
||||||
view = params["mode"] == 'view';
|
view = params["mode"] == 'view';
|
||||||
|
|
||||||
if (internal) {
|
if (internal) {
|
||||||
|
@ -236,8 +237,11 @@
|
||||||
document.querySelector('.sktoolbar').remove();
|
document.querySelector('.sktoolbar').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (view) {
|
if (compact || view) {
|
||||||
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
document.querySelector('.brendpanel > :nth-child(2)').remove();
|
||||||
|
document.querySelector('.brendpanel > :nth-child(1)').style.height = '32px';
|
||||||
|
}
|
||||||
|
if (view) {
|
||||||
document.querySelector('.sktoolbar').remove();
|
document.querySelector('.sktoolbar').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,19 @@
|
||||||
"cancelButtonText": "Отказ",
|
"cancelButtonText": "Отказ",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Внимание",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Внимание",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Въведете съобщението си тук",
|
"Common.Controllers.Chat.textEnterMessage": "Въведете съобщението си тук",
|
||||||
|
"Common.define.chartData.textArea": "Площ",
|
||||||
|
"Common.define.chartData.textBar": "Бар",
|
||||||
|
"Common.define.chartData.textColumn": "Колона",
|
||||||
|
"Common.define.chartData.textLine": "Линия",
|
||||||
|
"Common.define.chartData.textPie": "Кръгова",
|
||||||
|
"Common.define.chartData.textPoint": "XY (точкова)",
|
||||||
|
"Common.define.chartData.textStock": "Борсова",
|
||||||
|
"Common.define.chartData.textSurface": "Повърхност",
|
||||||
|
"Common.define.chartData.textCharts": "Диаграми",
|
||||||
|
"Common.define.chartData.textSparks": "Блещукащи",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Колона",
|
||||||
|
"Common.define.chartData.textLineSpark": "Линия",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Печалба/Загуба",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Няма граници",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
|
"Common.UI.ComboDataView.emptyComboText": "Няма стилове",
|
||||||
|
@ -1128,36 +1141,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Цвят",
|
"SSE.Views.ChartSettings.strSparkColor": "Цвят",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Шаблон",
|
"SSE.Views.ChartSettings.strTemplate": "Шаблон",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Показване на разширените настройки",
|
"SSE.Views.ChartSettings.textAdvanced": "Показване на разширените настройки",
|
||||||
"SSE.Views.ChartSettings.textArea": "Площ",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Бар",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Въведената стойност е неправилна. <br> Въведете стойност между 0 pt и 1584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Въведената стойност е неправилна. <br> Въведете стойност между 0 pt и 1584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Промяна на типа на диаграмата",
|
"SSE.Views.ChartSettings.textChartType": "Промяна на типа на диаграмата",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Колона",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Колона",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Редактиране на данни и местоположение",
|
"SSE.Views.ChartSettings.textEditData": "Редактиране на данни и местоположение",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Първа точка",
|
"SSE.Views.ChartSettings.textFirstPoint": "Първа точка",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Височина",
|
"SSE.Views.ChartSettings.textHeight": "Височина",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Висока точка",
|
"SSE.Views.ChartSettings.textHighPoint": "Висока точка",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Постоянни пропорции",
|
"SSE.Views.ChartSettings.textKeepRatio": "Постоянни пропорции",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Последна точка",
|
"SSE.Views.ChartSettings.textLastPoint": "Последна точка",
|
||||||
"SSE.Views.ChartSettings.textLine": "Линия",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Линия",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Ниска точка",
|
"SSE.Views.ChartSettings.textLowPoint": "Ниска точка",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Маркери",
|
"SSE.Views.ChartSettings.textMarkers": "Маркери",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Отрицателна точка",
|
"SSE.Views.ChartSettings.textNegativePoint": "Отрицателна точка",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Нов потребителски цвят",
|
"SSE.Views.ChartSettings.textNewColor": "Нов потребителски цвят",
|
||||||
"SSE.Views.ChartSettings.textPie": "Кръгова",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "XY (точкова)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Диапазон на данните",
|
"SSE.Views.ChartSettings.textRanges": "Диапазон на данните",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Изберете данни",
|
"SSE.Views.ChartSettings.textSelectData": "Изберете данни",
|
||||||
"SSE.Views.ChartSettings.textShow": "Покажи",
|
"SSE.Views.ChartSettings.textShow": "Покажи",
|
||||||
"SSE.Views.ChartSettings.textSize": "Размер",
|
"SSE.Views.ChartSettings.textSize": "Размер",
|
||||||
"SSE.Views.ChartSettings.textStock": "Борсова",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Стил",
|
"SSE.Views.ChartSettings.textStyle": "Стил",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Повърхност",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Тип",
|
"SSE.Views.ChartSettings.textType": "Тип",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Ширина",
|
"SSE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Печалба/Загуба",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ГРЕШКА! Максималният брой точки в серия на графиката е 4096.",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ГРЕШКА! Максималният брой точки в серия на графиката е 4096.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "Максимален брой поредици данни за диаграма е 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "Максимален брой поредици данни за диаграма е 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Неправилен ред на ред. За изграждане на борсова карта поставете данните на листа в следния ред: <br> цена на отваряне, максимална цена, мин. цена, цена на затваряне.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Неправилен ред на ред. За изграждане на борсова карта поставете данните на листа в следния ред: <br> цена на отваряне, максимална цена, мин. цена, цена на затваряне.",
|
||||||
|
@ -1165,14 +1167,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Описание",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Описание",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Алтернативното текстово представяне на визуалната информация за обекта, което ще бъде прочетено на хората с визуални или когнитивни увреждания, за да им помогне да разберат по-добре каква информация има в изображението, автосистемата, диаграмата или таблицата.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Заглавие",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Заглавие",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Площ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Автоматичен",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Автоматичен",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Авто за всеки",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Авто за всеки",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Ос Кръстове",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Ос Кръстове",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Опции за ос",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Опции за ос",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Позиция на ос",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Позиция на ос",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Настройки на ос",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Настройки на ос",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Бар",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Между отметки с отметки",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Между отметки с отметки",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Милиарди",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Милиарди",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Отдоло",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Отдоло",
|
||||||
|
@ -1180,8 +1180,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Център",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Център",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Елементи на диаграмата & <br/> Легенда на диаграмата",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Елементи на диаграмата & <br/> Легенда на диаграмата",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Заглавие на диаграмата",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Заглавие на диаграмата",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Колона",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Колона",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Крос",
|
"SSE.Views.ChartSettingsDlg.textCross": "Крос",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Персонализиран",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Персонализиран",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "в колони",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "в колони",
|
||||||
|
@ -1222,9 +1220,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Легенда",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Легенда",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Прав",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Прав",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Отгоре",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Отгоре",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Графика на линията",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Линии",
|
"SSE.Views.ChartSettingsDlg.textLines": "Линии",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Линия",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Обхват на местоположението",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Обхват на местоположението",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Нисък",
|
"SSE.Views.ChartSettingsDlg.textLow": "Нисък",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Голям",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Голям",
|
||||||
|
@ -1245,8 +1241,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "От",
|
"SSE.Views.ChartSettingsDlg.textOut": "От",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Външен връх",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Външен връх",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Настилка",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Настилка",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Кръгова",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "XY (точкова)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Стойности в обратен ред",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Стойности в обратен ред",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Обратен ред",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Обратен ред",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Прав",
|
"SSE.Views.ChartSettingsDlg.textRight": "Прав",
|
||||||
|
@ -1267,10 +1261,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Единична Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Единична Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Гладък",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Гладък",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Спарклайн диапазони",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Спарклайн диапазони",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Борсова",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Направо",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Направо",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Стил",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Стил",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Повърхност",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Хиляди",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Хиляди",
|
||||||
|
@ -1287,7 +1279,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Вертикална ос",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Вертикална ос",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Вертикални решетки",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Вертикални решетки",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Заглавие на вертикалната ос",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Заглавие на вертикалната ос",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Печалба/Загуба",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Заглавие на ос",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Заглавие на ос",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Заглавие на ос",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Заглавие на ос",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Нула",
|
"SSE.Views.ChartSettingsDlg.textZero": "Нула",
|
||||||
|
@ -2050,19 +2041,14 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Подравняване надясно",
|
"SSE.Views.Toolbar.textAlignRight": "Подравняване надясно",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Подравняване отгоре",
|
"SSE.Views.Toolbar.textAlignTop": "Подравняване отгоре",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Всички граници",
|
"SSE.Views.Toolbar.textAllBorders": "Всички граници",
|
||||||
"SSE.Views.Toolbar.textArea": "Площ",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Бар",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Получер",
|
"SSE.Views.Toolbar.textBold": "Получер",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Цвят на границата",
|
"SSE.Views.Toolbar.textBordersColor": "Цвят на границата",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Стил на границата",
|
"SSE.Views.Toolbar.textBordersStyle": "Стил на границата",
|
||||||
"SSE.Views.Toolbar.textBottom": "Отдоло:",
|
"SSE.Views.Toolbar.textBottom": "Отдоло:",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Долни граници",
|
"SSE.Views.Toolbar.textBottomBorders": "Долни граници",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Вътрешни вертикални граници",
|
"SSE.Views.Toolbar.textCenterBorders": "Вътрешни вертикални граници",
|
||||||
"SSE.Views.Toolbar.textCharts": "Диаграми",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "Изчистване на зоната за печат",
|
"SSE.Views.Toolbar.textClearPrintArea": "Изчистване на зоната за печат",
|
||||||
"SSE.Views.Toolbar.textClockwise": "Ъгъл по часовниковата стрелка",
|
"SSE.Views.Toolbar.textClockwise": "Ъгъл по часовниковата стрелка",
|
||||||
"SSE.Views.Toolbar.textColumn": "Колона",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Колона",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Ъгъл обратно на часовниковата стрелка",
|
"SSE.Views.Toolbar.textCounterCw": "Ъгъл обратно на часовниковата стрелка",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Преместване на клетките вляво",
|
"SSE.Views.Toolbar.textDelLeft": "Преместване на клетките вляво",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Преместете клетки нагоре",
|
"SSE.Views.Toolbar.textDelUp": "Преместете клетки нагоре",
|
||||||
|
@ -2078,8 +2064,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "Пейзаж",
|
"SSE.Views.Toolbar.textLandscape": "Пейзаж",
|
||||||
"SSE.Views.Toolbar.textLeft": "Наляво:",
|
"SSE.Views.Toolbar.textLeft": "Наляво:",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Ляви граници",
|
"SSE.Views.Toolbar.textLeftBorders": "Ляви граници",
|
||||||
"SSE.Views.Toolbar.textLine": "Линия",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Линия",
|
|
||||||
"SSE.Views.Toolbar.textMarginsLast": "Последно персонализирано",
|
"SSE.Views.Toolbar.textMarginsLast": "Последно персонализирано",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "Тесен",
|
"SSE.Views.Toolbar.textMarginsNarrow": "Тесен",
|
||||||
"SSE.Views.Toolbar.textMarginsNormal": "Нормален",
|
"SSE.Views.Toolbar.textMarginsNormal": "Нормален",
|
||||||
|
@ -2090,8 +2074,6 @@
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Няма граници",
|
"SSE.Views.Toolbar.textNoBorders": "Няма граници",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Външни граници",
|
"SSE.Views.Toolbar.textOutBorders": "Външни граници",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Персонализирани полета",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Персонализирани полета",
|
||||||
"SSE.Views.Toolbar.textPie": "Кръгова",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (точкова)",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "Портрет",
|
"SSE.Views.Toolbar.textPortrait": "Портрет",
|
||||||
"SSE.Views.Toolbar.textPrint": "Печат",
|
"SSE.Views.Toolbar.textPrint": "Печат",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Настройки за печат",
|
"SSE.Views.Toolbar.textPrintOptions": "Настройки за печат",
|
||||||
|
@ -2100,13 +2082,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Завъртете текста надолу",
|
"SSE.Views.Toolbar.textRotateDown": "Завъртете текста надолу",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Завъртете текста нагоре",
|
"SSE.Views.Toolbar.textRotateUp": "Завъртете текста нагоре",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "Задайте област на печат",
|
"SSE.Views.Toolbar.textSetPrintArea": "Задайте област на печат",
|
||||||
"SSE.Views.Toolbar.textSparks": "Блещукащи",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Борсова",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Зачеркнат",
|
"SSE.Views.Toolbar.textStrikeout": "Зачеркнат",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Долен",
|
"SSE.Views.Toolbar.textSubscript": "Долен",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Долен / Горен индекс",
|
"SSE.Views.Toolbar.textSubSuperscript": "Долен / Горен индекс",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Горен индекс",
|
"SSE.Views.Toolbar.textSuperscript": "Горен индекс",
|
||||||
"SSE.Views.Toolbar.textSurface": "Повърхност",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Сътрудничество",
|
"SSE.Views.Toolbar.textTabCollaboration": "Сътрудничество",
|
||||||
"SSE.Views.Toolbar.textTabFile": "досие",
|
"SSE.Views.Toolbar.textTabFile": "досие",
|
||||||
"SSE.Views.Toolbar.textTabHome": "У дома",
|
"SSE.Views.Toolbar.textTabHome": "У дома",
|
||||||
|
@ -2116,7 +2095,6 @@
|
||||||
"SSE.Views.Toolbar.textTop": "Връх:",
|
"SSE.Views.Toolbar.textTop": "Връх:",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Топ граници",
|
"SSE.Views.Toolbar.textTopBorders": "Топ граници",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Подчертавам",
|
"SSE.Views.Toolbar.textUnderline": "Подчертавам",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Печалба/Загуба",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Мащаб",
|
"SSE.Views.Toolbar.textZoom": "Мащаб",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Подравняване отдолу",
|
"SSE.Views.Toolbar.tipAlignBottom": "Подравняване отдолу",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Подравняване на центъра",
|
"SSE.Views.Toolbar.tipAlignCenter": "Подравняване на центъра",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Zrušit",
|
"cancelButtonText": "Zrušit",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Varování",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Varování",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Zde napište svou zprávu",
|
"Common.Controllers.Chat.textEnterMessage": "Zde napište svou zprávu",
|
||||||
|
"Common.define.chartData.textArea": "Plošný graf",
|
||||||
|
"Common.define.chartData.textBar": "Pruhový graf",
|
||||||
|
"Common.define.chartData.textColumn": "Sloupcový graf",
|
||||||
|
"Common.define.chartData.textLine": "Liniový graf",
|
||||||
|
"Common.define.chartData.textPie": "Kruhový diagram",
|
||||||
|
"Common.define.chartData.textPoint": "Bodový graf",
|
||||||
|
"Common.define.chartData.textStock": "Burzovní graf",
|
||||||
|
"Common.define.chartData.textSurface": "Povrch",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Sloupec",
|
||||||
|
"Common.define.chartData.textLineSpark": "Čára",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Zisk/Ztráta ",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez ohraničení",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez ohraničení",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
|
"Common.UI.ComboDataView.emptyComboText": "Žádné styly",
|
||||||
|
@ -780,50 +792,37 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Barva",
|
"SSE.Views.ChartSettings.strSparkColor": "Barva",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Šablona",
|
"SSE.Views.ChartSettings.strTemplate": "Šablona",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilé nastavení",
|
"SSE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilé nastavení",
|
||||||
"SSE.Views.ChartSettings.textArea": "Plošný graf",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Vodorovná čárka",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Zadaná hodnota není správná.<br>Zadejte prosím hodnotu mezi 0 a 1584.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Zadaná hodnota není správná.<br>Zadejte prosím hodnotu mezi 0 a 1584.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Změnit typ grafu",
|
"SSE.Views.ChartSettings.textChartType": "Změnit typ grafu",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Sloupec",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Sloupec",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Upravit data a umístění",
|
"SSE.Views.ChartSettings.textEditData": "Upravit data a umístění",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "První bod",
|
"SSE.Views.ChartSettings.textFirstPoint": "První bod",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Výška",
|
"SSE.Views.ChartSettings.textHeight": "Výška",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Vysoký bod",
|
"SSE.Views.ChartSettings.textHighPoint": "Vysoký bod",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Konstantní rozměry",
|
"SSE.Views.ChartSettings.textKeepRatio": "Konstantní rozměry",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Poslední bod",
|
"SSE.Views.ChartSettings.textLastPoint": "Poslední bod",
|
||||||
"SSE.Views.ChartSettings.textLine": "Čára",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Čára",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Nízký bod",
|
"SSE.Views.ChartSettings.textLowPoint": "Nízký bod",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Značky",
|
"SSE.Views.ChartSettings.textMarkers": "Značky",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Záporný bod",
|
"SSE.Views.ChartSettings.textNegativePoint": "Záporný bod",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Přidat novou vlastní barvu",
|
"SSE.Views.ChartSettings.textNewColor": "Přidat novou vlastní barvu",
|
||||||
"SSE.Views.ChartSettings.textPie": "Kruhový diagram",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Bodový graf",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Rozsah dat",
|
"SSE.Views.ChartSettings.textRanges": "Rozsah dat",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Vybrat data",
|
"SSE.Views.ChartSettings.textSelectData": "Vybrat data",
|
||||||
"SSE.Views.ChartSettings.textShow": "Zobrazit",
|
"SSE.Views.ChartSettings.textShow": "Zobrazit",
|
||||||
"SSE.Views.ChartSettings.textSize": "Velikost",
|
"SSE.Views.ChartSettings.textSize": "Velikost",
|
||||||
"SSE.Views.ChartSettings.textStock": "Akcie",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Styl",
|
"SSE.Views.ChartSettings.textStyle": "Styl",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Povrch",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Typ",
|
"SSE.Views.ChartSettings.textType": "Typ",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Šířka",
|
"SSE.Views.ChartSettings.textWidth": "Šířka",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Zisk/Ztráta ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "CHYBA! Maximální počet datových řad na grafu je 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "CHYBA! Maximální počet datových řad na grafu je 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:<br> otevírací cena, maximální cena, minimální cena, uzavírací cena.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:<br> otevírací cena, maximální cena, minimální cena, uzavírací cena.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAlt": "Alternativní text",
|
"SSE.Views.ChartSettingsDlg.textAlt": "Alternativní text",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Popis",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Popis",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvarování, grafu nebo v tabulce.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, automatickém tvarování, grafu nebo v tabulce.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Název",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Název",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Plošný graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Automaticky",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Automaticky",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automaticky pro každý",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automaticky pro každý",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Křížení os",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Křížení os",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti os",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti os",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Umístění osy",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Umístění osy",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Pruhový graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Mezi značkami",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Mezi značkami",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardy",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardy",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Dole",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Dole",
|
||||||
|
@ -831,8 +830,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Střed",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Střed",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Prvky grafu a<br/>Legenda grafu",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Prvky grafu a<br/>Legenda grafu",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Nadpis grafu",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Nadpis grafu",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Sloupcový graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Sloupec",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Kříž",
|
"SSE.Views.ChartSettingsDlg.textCross": "Kříž",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Vlastní",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Vlastní",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "ve sloupcích",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "ve sloupcích",
|
||||||
|
@ -873,9 +870,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Vpravo",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Vpravo",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Nahoře",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Nahoře",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Liniový graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Čáry",
|
"SSE.Views.ChartSettingsDlg.textLines": "Čáry",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Čára",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Rozsah umístění",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Rozsah umístění",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Nízko",
|
"SSE.Views.ChartSettingsDlg.textLow": "Nízko",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Hlavní",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Hlavní",
|
||||||
|
@ -896,8 +891,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Vně",
|
"SSE.Views.ChartSettingsDlg.textOut": "Vně",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Vně nahoře",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Vně nahoře",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Překrytí",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Překrytí",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Kruhový diagram",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Bodový graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Hodnoty v obráceném pořádí",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Hodnoty v obráceném pořádí",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Obrácené pořadí",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Obrácené pořadí",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Vpravo",
|
"SSE.Views.ChartSettingsDlg.textRight": "Vpravo",
|
||||||
|
@ -918,10 +911,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Jednoduchý Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Jednoduchý Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Plynulé",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Plynulé",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Rozsahy Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Rozsahy Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Burzovní graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Rovné",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Rovné",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Styl",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Styl",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Povrch",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Tisíce",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Tisíce",
|
||||||
|
@ -938,7 +929,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Svislá osa",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Svislá osa",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Svislá mřížka",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Svislá mřížka",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titulek svislé osy",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titulek svislé osy",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Zisk/Ztráta ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titulek osy x",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titulek osy x",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titulek osy y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titulek osy y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Nula",
|
"SSE.Views.ChartSettingsDlg.textZero": "Nula",
|
||||||
|
@ -1521,17 +1511,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Zarovnat vpravo",
|
"SSE.Views.Toolbar.textAlignRight": "Zarovnat vpravo",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Zarovnat nahoru",
|
"SSE.Views.Toolbar.textAlignTop": "Zarovnat nahoru",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Všechny ohraničení",
|
"SSE.Views.Toolbar.textAllBorders": "Všechny ohraničení",
|
||||||
"SSE.Views.Toolbar.textArea": "Plošný graf",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Vodorovná čárka",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Tučně",
|
"SSE.Views.Toolbar.textBold": "Tučně",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Barva ohraničení",
|
"SSE.Views.Toolbar.textBordersColor": "Barva ohraničení",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Styl ohraničení",
|
"SSE.Views.Toolbar.textBordersStyle": "Styl ohraničení",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Spodní ohraničení",
|
"SSE.Views.Toolbar.textBottomBorders": "Spodní ohraničení",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Vnitřní svislé ohraničení",
|
"SSE.Views.Toolbar.textCenterBorders": "Vnitřní svislé ohraničení",
|
||||||
"SSE.Views.Toolbar.textCharts": "Grafy",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Otočit ve směru hodinových ručiček",
|
"SSE.Views.Toolbar.textClockwise": "Otočit ve směru hodinových ručiček",
|
||||||
"SSE.Views.Toolbar.textColumn": "Sloupec",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Sloupec",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Otočit proti směru hodinových ručiček",
|
"SSE.Views.Toolbar.textCounterCw": "Otočit proti směru hodinových ručiček",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Posunout buňky vlevo",
|
"SSE.Views.Toolbar.textDelLeft": "Posunout buňky vlevo",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Posunout buňky nahoru",
|
"SSE.Views.Toolbar.textDelUp": "Posunout buňky nahoru",
|
||||||
|
@ -1545,29 +1530,21 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Posunout buňky vpravo",
|
"SSE.Views.Toolbar.textInsRight": "Posunout buňky vpravo",
|
||||||
"SSE.Views.Toolbar.textItalic": "Kurzíva",
|
"SSE.Views.Toolbar.textItalic": "Kurzíva",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Levé ohraničení",
|
"SSE.Views.Toolbar.textLeftBorders": "Levé ohraničení",
|
||||||
"SSE.Views.Toolbar.textLine": "Čára",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Čára",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Vnitřní horizontální ohraničení",
|
"SSE.Views.Toolbar.textMiddleBorders": "Vnitřní horizontální ohraničení",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Více formátů",
|
"SSE.Views.Toolbar.textMoreFormats": "Více formátů",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Přidat novou vlastní barvu",
|
"SSE.Views.Toolbar.textNewColor": "Přidat novou vlastní barvu",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Bez ohraničení",
|
"SSE.Views.Toolbar.textNoBorders": "Bez ohraničení",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Vnější ohraničení",
|
"SSE.Views.Toolbar.textOutBorders": "Vnější ohraničení",
|
||||||
"SSE.Views.Toolbar.textPie": "Kruhový diagram",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "Bodový graf",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "Tisk",
|
"SSE.Views.Toolbar.textPrint": "Tisk",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Nastavení tisku",
|
"SSE.Views.Toolbar.textPrintOptions": "Nastavení tisku",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Pravé ohraničení",
|
"SSE.Views.Toolbar.textRightBorders": "Pravé ohraničení",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Otočit text dolů",
|
"SSE.Views.Toolbar.textRotateDown": "Otočit text dolů",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Otočit text nahoru",
|
"SSE.Views.Toolbar.textRotateUp": "Otočit text nahoru",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Burzovní graf",
|
|
||||||
"SSE.Views.Toolbar.textSurface": "Povrch",
|
|
||||||
"SSE.Views.Toolbar.textTabFile": "Soubor",
|
"SSE.Views.Toolbar.textTabFile": "Soubor",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Domů",
|
"SSE.Views.Toolbar.textTabHome": "Domů",
|
||||||
"SSE.Views.Toolbar.textTabInsert": "Vložit",
|
"SSE.Views.Toolbar.textTabInsert": "Vložit",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Horní ohraničení",
|
"SSE.Views.Toolbar.textTopBorders": "Horní ohraničení",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Podtržení",
|
"SSE.Views.Toolbar.textUnderline": "Podtržení",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Zisk/Ztráta ",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Přiblížit",
|
"SSE.Views.Toolbar.textZoom": "Přiblížit",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Zarovnat dolů",
|
"SSE.Views.Toolbar.tipAlignBottom": "Zarovnat dolů",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Zarovnat na střed",
|
"SSE.Views.Toolbar.tipAlignCenter": "Zarovnat na střed",
|
||||||
|
|
|
@ -11,6 +11,10 @@
|
||||||
"Common.define.chartData.textPoint": "Punkt (XY)",
|
"Common.define.chartData.textPoint": "Punkt (XY)",
|
||||||
"Common.define.chartData.textStock": "Kurs",
|
"Common.define.chartData.textStock": "Kurs",
|
||||||
"Common.define.chartData.textSurface": "Oberfläche",
|
"Common.define.chartData.textSurface": "Oberfläche",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Gewinn/Verlust",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Spalte",
|
||||||
|
"Common.define.chartData.textLineSpark": "Linie",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Keine Rahmen",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Keine Rahmen",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Keine Rahmen",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Keine Formate",
|
"Common.UI.ComboDataView.emptyComboText": "Keine Formate",
|
||||||
|
@ -1150,36 +1154,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Farbe",
|
"SSE.Views.ChartSettings.strSparkColor": "Farbe",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Vorlage",
|
"SSE.Views.ChartSettings.strTemplate": "Vorlage",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
"SSE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen",
|
||||||
"SSE.Views.ChartSettings.textArea": "Fläche",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Balken",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Der eingegebene Wert ist falsch.<br>Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Der eingegebene Wert ist falsch.<br>Bitte geben Sie einen Wert zwischen 0 pt und 1584 pt ein.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
|
"SSE.Views.ChartSettings.textChartType": "Diagrammtyp ändern",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Säule",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Spalte",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Daten und Standort ändern",
|
"SSE.Views.ChartSettings.textEditData": "Daten und Standort ändern",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Erster Punkt",
|
"SSE.Views.ChartSettings.textFirstPoint": "Erster Punkt",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Höhe",
|
"SSE.Views.ChartSettings.textHeight": "Höhe",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Höchstpunkt",
|
"SSE.Views.ChartSettings.textHighPoint": "Höchstpunkt",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Seitenverhältnis beibehalten",
|
"SSE.Views.ChartSettings.textKeepRatio": "Seitenverhältnis beibehalten",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Letzter Punkt",
|
"SSE.Views.ChartSettings.textLastPoint": "Letzter Punkt",
|
||||||
"SSE.Views.ChartSettings.textLine": "Linie",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Linie",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Tiefpunkt",
|
"SSE.Views.ChartSettings.textLowPoint": "Tiefpunkt",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Markierungen",
|
"SSE.Views.ChartSettings.textMarkers": "Markierungen",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Negativpunkt",
|
"SSE.Views.ChartSettings.textNegativePoint": "Negativpunkt",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Benutzerdefinierte Farbe",
|
"SSE.Views.ChartSettings.textNewColor": "Benutzerdefinierte Farbe",
|
||||||
"SSE.Views.ChartSettings.textPie": "Kreis",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Punkt (XY)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Datenbereich",
|
"SSE.Views.ChartSettings.textRanges": "Datenbereich",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Daten auswählen",
|
"SSE.Views.ChartSettings.textSelectData": "Daten auswählen",
|
||||||
"SSE.Views.ChartSettings.textShow": "Anzeigen",
|
"SSE.Views.ChartSettings.textShow": "Anzeigen",
|
||||||
"SSE.Views.ChartSettings.textSize": "Größe",
|
"SSE.Views.ChartSettings.textSize": "Größe",
|
||||||
"SSE.Views.ChartSettings.textStock": "Kurs",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Stil",
|
"SSE.Views.ChartSettings.textStyle": "Stil",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Oberfläche",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Typ",
|
"SSE.Views.ChartSettings.textType": "Typ",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Breite",
|
"SSE.Views.ChartSettings.textWidth": "Breite",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Gewinn/Verlust",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "FEHLER! Die maximale Punktzahl pro eine Tabelle beträgt 4096 Punkte.",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "FEHLER! Die maximale Punktzahl pro eine Tabelle beträgt 4096 Punkte.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "FEHLER! Die maximale Anzahl der Datenreihen per Diagramm ist 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "FEHLER! Die maximale Anzahl der Datenreihen per Diagramm ist 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an:<br> Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an:<br> Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.",
|
||||||
|
@ -1187,14 +1180,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Beschreibung",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Beschreibung",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titel",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titel",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Flächen",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Automatisch",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Automatisch",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automatisch für jeden",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automatisch für jeden",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Schnittpunkt mit der Achse",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Schnittpunkt mit der Achse",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Parameter der Achse",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Parameter der Achse",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Position der Achse",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Position der Achse",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Achseneinstellungen",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Achseneinstellungen",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Balken",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Zwischen den Teilstrichen",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Zwischen den Teilstrichen",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Milliarden",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Milliarden",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Unten",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Unten",
|
||||||
|
@ -1202,8 +1193,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Zentriert",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Zentriert",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Diagrammelemente und <br/> Diagrammlegende",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Diagrammelemente und <br/> Diagrammlegende",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Diagrammtitel",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Diagrammtitel",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Säule",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Spalte",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Schnittpunkt",
|
"SSE.Views.ChartSettingsDlg.textCross": "Schnittpunkt",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Benutzerdefiniert",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Benutzerdefiniert",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "in Spalten",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "in Spalten",
|
||||||
|
@ -1244,9 +1233,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legende",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legende",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Rechts",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Rechts",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Oben",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Oben",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Linie",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Linien",
|
"SSE.Views.ChartSettingsDlg.textLines": "Linien",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Linie",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Positionsbereich",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Positionsbereich",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Niedrig",
|
"SSE.Views.ChartSettingsDlg.textLow": "Niedrig",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Primäre",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Primäre",
|
||||||
|
@ -1267,8 +1254,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Außen",
|
"SSE.Views.ChartSettingsDlg.textOut": "Außen",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Außen oben",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Außen oben",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Überlagerung",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Überlagerung",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Kreis",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Punkt (XY)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Werte in umgekehrter Reihenfolge",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Werte in umgekehrter Reihenfolge",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Reihenfolge umkehren",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Reihenfolge umkehren",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Rechts",
|
"SSE.Views.ChartSettingsDlg.textRight": "Rechts",
|
||||||
|
@ -1289,10 +1274,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Einzelne Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Einzelne Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Glatt",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Glatt",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Bereiche",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Bereiche",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Kurs",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Gerade",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Gerade",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Stil",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Stil",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Oberfläche",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Tausende",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Tausende",
|
||||||
|
@ -1309,7 +1292,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertikale Achse",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertikale Achse",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Vertikale Gitternetzlinien ",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Vertikale Gitternetzlinien ",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titel der vertikalen Achse",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titel der vertikalen Achse",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Gewinn/Verlust",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X-Achsentitel",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X-Achsentitel",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y-Achsentitel",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y-Achsentitel",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Null",
|
"SSE.Views.ChartSettingsDlg.textZero": "Null",
|
||||||
|
@ -2072,19 +2054,14 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Rechts ausrichten",
|
"SSE.Views.Toolbar.textAlignRight": "Rechts ausrichten",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Oben ausrichten",
|
"SSE.Views.Toolbar.textAlignTop": "Oben ausrichten",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Alle Rahmenlinien",
|
"SSE.Views.Toolbar.textAllBorders": "Alle Rahmenlinien",
|
||||||
"SSE.Views.Toolbar.textArea": "Flächen",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Balken",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Fett",
|
"SSE.Views.Toolbar.textBold": "Fett",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Rahmenfarbe",
|
"SSE.Views.Toolbar.textBordersColor": "Rahmenfarbe",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Rahmenart",
|
"SSE.Views.Toolbar.textBordersStyle": "Rahmenart",
|
||||||
"SSE.Views.Toolbar.textBottom": "Unten: ",
|
"SSE.Views.Toolbar.textBottom": "Unten: ",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Untere Ränder",
|
"SSE.Views.Toolbar.textBottomBorders": "Untere Ränder",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Innere vertikale Rahmenlinien",
|
"SSE.Views.Toolbar.textCenterBorders": "Innere vertikale Rahmenlinien",
|
||||||
"SSE.Views.Toolbar.textCharts": "Diagramme",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "Druckbereich aufheben",
|
"SSE.Views.Toolbar.textClearPrintArea": "Druckbereich aufheben",
|
||||||
"SSE.Views.Toolbar.textClockwise": "Im Uhrzeigersinn drehen",
|
"SSE.Views.Toolbar.textClockwise": "Im Uhrzeigersinn drehen",
|
||||||
"SSE.Views.Toolbar.textColumn": "Spalte",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Spalte",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Gegen den Uhrzeigersinn drehen",
|
"SSE.Views.Toolbar.textCounterCw": "Gegen den Uhrzeigersinn drehen",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Zellen nach links verschieben",
|
"SSE.Views.Toolbar.textDelLeft": "Zellen nach links verschieben",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Zellen nach oben verschieben",
|
"SSE.Views.Toolbar.textDelUp": "Zellen nach oben verschieben",
|
||||||
|
@ -2100,8 +2077,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "Querformat",
|
"SSE.Views.Toolbar.textLandscape": "Querformat",
|
||||||
"SSE.Views.Toolbar.textLeft": "Links: ",
|
"SSE.Views.Toolbar.textLeft": "Links: ",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Rahmenlinien links",
|
"SSE.Views.Toolbar.textLeftBorders": "Rahmenlinien links",
|
||||||
"SSE.Views.Toolbar.textLine": "Linie",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Linie",
|
|
||||||
"SSE.Views.Toolbar.textMarginsLast": " Benutzerdefiniert als letzte",
|
"SSE.Views.Toolbar.textMarginsLast": " Benutzerdefiniert als letzte",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "Schmal",
|
"SSE.Views.Toolbar.textMarginsNarrow": "Schmal",
|
||||||
"SSE.Views.Toolbar.textMarginsNormal": "Normal",
|
"SSE.Views.Toolbar.textMarginsNormal": "Normal",
|
||||||
|
@ -2112,8 +2087,6 @@
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Keine Rahmen",
|
"SSE.Views.Toolbar.textNoBorders": "Keine Rahmen",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Rahmenlinien außen",
|
"SSE.Views.Toolbar.textOutBorders": "Rahmenlinien außen",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Benutzerdefinierte Seitenränder",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Benutzerdefinierte Seitenränder",
|
||||||
"SSE.Views.Toolbar.textPie": "Kreis",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "Punkt (XY)",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "Hochformat",
|
"SSE.Views.Toolbar.textPortrait": "Hochformat",
|
||||||
"SSE.Views.Toolbar.textPrint": "Drucken",
|
"SSE.Views.Toolbar.textPrint": "Drucken",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Druck-Einstellungen",
|
"SSE.Views.Toolbar.textPrintOptions": "Druck-Einstellungen",
|
||||||
|
@ -2122,13 +2095,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Text nach unten drehen",
|
"SSE.Views.Toolbar.textRotateDown": "Text nach unten drehen",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Text nach oben drehen",
|
"SSE.Views.Toolbar.textRotateUp": "Text nach oben drehen",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "Druckbereich festlegen",
|
"SSE.Views.Toolbar.textSetPrintArea": "Druckbereich festlegen",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Bestand",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Durchgestrichen",
|
"SSE.Views.Toolbar.textStrikeout": "Durchgestrichen",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Tiefgestellt",
|
"SSE.Views.Toolbar.textSubscript": "Tiefgestellt",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Tiefgestellt/hochgestellt",
|
"SSE.Views.Toolbar.textSubSuperscript": "Tiefgestellt/hochgestellt",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Hochgestellt",
|
"SSE.Views.Toolbar.textSuperscript": "Hochgestellt",
|
||||||
"SSE.Views.Toolbar.textSurface": "Oberfläche",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Zusammenarbeit",
|
"SSE.Views.Toolbar.textTabCollaboration": "Zusammenarbeit",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Datei",
|
"SSE.Views.Toolbar.textTabFile": "Datei",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Startseite",
|
"SSE.Views.Toolbar.textTabHome": "Startseite",
|
||||||
|
@ -2138,7 +2108,6 @@
|
||||||
"SSE.Views.Toolbar.textTop": "Oben: ",
|
"SSE.Views.Toolbar.textTop": "Oben: ",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Rahmenlinien oben",
|
"SSE.Views.Toolbar.textTopBorders": "Rahmenlinien oben",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Unterstrichen",
|
"SSE.Views.Toolbar.textUnderline": "Unterstrichen",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Gewinn/Verlust",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoom",
|
"SSE.Views.Toolbar.textZoom": "Zoom",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Unten ausrichten",
|
"SSE.Views.Toolbar.tipAlignBottom": "Unten ausrichten",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Zentriert ausrichten",
|
"SSE.Views.Toolbar.tipAlignCenter": "Zentriert ausrichten",
|
||||||
|
|
|
@ -6,14 +6,14 @@
|
||||||
"Common.define.chartData.textBar": "Bar",
|
"Common.define.chartData.textBar": "Bar",
|
||||||
"Common.define.chartData.textCharts": "Charts",
|
"Common.define.chartData.textCharts": "Charts",
|
||||||
"Common.define.chartData.textColumn": "Column",
|
"Common.define.chartData.textColumn": "Column",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Column",
|
||||||
"Common.define.chartData.textLine": "Line",
|
"Common.define.chartData.textLine": "Line",
|
||||||
|
"Common.define.chartData.textLineSpark": "Line",
|
||||||
"Common.define.chartData.textPie": "Pie",
|
"Common.define.chartData.textPie": "Pie",
|
||||||
"Common.define.chartData.textPoint": "XY (Scatter)",
|
"Common.define.chartData.textPoint": "XY (Scatter)",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.define.chartData.textStock": "Stock",
|
"Common.define.chartData.textStock": "Stock",
|
||||||
"Common.define.chartData.textSurface": "Surface",
|
"Common.define.chartData.textSurface": "Surface",
|
||||||
"Common.define.chartData.textSparks": "Sparklines",
|
|
||||||
"Common.define.chartData.textColumnSpark": "Column",
|
|
||||||
"Common.define.chartData.textLineSpark": "Line",
|
|
||||||
"Common.define.chartData.textWinLossSpark": "Win/Loss",
|
"Common.define.chartData.textWinLossSpark": "Win/Loss",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "No borders",
|
"Common.UI.ComboBorderSize.txtNoBorders": "No borders",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
|
||||||
|
@ -113,6 +113,8 @@
|
||||||
"Common.Views.ListSettingsDialog.txtSize": "Size",
|
"Common.Views.ListSettingsDialog.txtSize": "Size",
|
||||||
"Common.Views.ListSettingsDialog.txtStart": "Start at",
|
"Common.Views.ListSettingsDialog.txtStart": "Start at",
|
||||||
"Common.Views.ListSettingsDialog.txtTitle": "List Settings",
|
"Common.Views.ListSettingsDialog.txtTitle": "List Settings",
|
||||||
|
"Common.Views.ListSettingsDialog.txtBullet": "Bullet",
|
||||||
|
"Common.Views.ListSettingsDialog.tipChange": "Change bullet",
|
||||||
"Common.Views.OpenDialog.closeButtonText": "Close File",
|
"Common.Views.OpenDialog.closeButtonText": "Close File",
|
||||||
"Common.Views.OpenDialog.txtColon": "Colon",
|
"Common.Views.OpenDialog.txtColon": "Colon",
|
||||||
"Common.Views.OpenDialog.txtComma": "Comma",
|
"Common.Views.OpenDialog.txtComma": "Comma",
|
||||||
|
@ -159,6 +161,8 @@
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
|
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Show version history",
|
"Common.Views.ReviewChanges.tipHistory": "Show version history",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Track changes",
|
"Common.Views.ReviewChanges.tipReview": "Track changes",
|
||||||
|
@ -173,6 +177,11 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Chat",
|
"Common.Views.ReviewChanges.txtChat": "Chat",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Close",
|
"Common.Views.ReviewChanges.txtClose": "Close",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Remove",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Language",
|
"Common.Views.ReviewChanges.txtDocLang": "Language",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)",
|
"Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
"Common.Views.ReviewChanges.txtFinalCap": "Final",
|
||||||
|
@ -191,13 +200,6 @@
|
||||||
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
|
"Common.Views.ReviewChanges.txtSpelling": "Spell Checking",
|
||||||
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
|
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
|
||||||
"Common.Views.ReviewChanges.txtView": "Display Mode",
|
"Common.Views.ReviewChanges.txtView": "Display Mode",
|
||||||
"Common.Views.ReviewChanges.txtCommentRemove": "Remove",
|
|
||||||
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments",
|
|
||||||
"Common.Views.ReviewChanges.tipCommentRem": "Remove comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
|
|
||||||
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments",
|
|
||||||
"Common.Views.ReviewPopover.textAdd": "Add",
|
"Common.Views.ReviewPopover.textAdd": "Add",
|
||||||
"Common.Views.ReviewPopover.textAddReply": "Add Reply",
|
"Common.Views.ReviewPopover.textAddReply": "Add Reply",
|
||||||
"Common.Views.ReviewPopover.textCancel": "Cancel",
|
"Common.Views.ReviewPopover.textCancel": "Cancel",
|
||||||
|
@ -234,11 +236,11 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
|
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
|
"Common.Views.SignSettingsDialog.textTitle": "Signature Setup",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
|
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
|
||||||
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
|
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
|
||||||
"Common.Views.SymbolTableDialog.textFont": "Font",
|
"Common.Views.SymbolTableDialog.textFont": "Font",
|
||||||
"Common.Views.SymbolTableDialog.textRange": "Range",
|
"Common.Views.SymbolTableDialog.textRange": "Range",
|
||||||
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
|
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
|
||||||
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
|
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
|
||||||
"SSE.Controllers.DataTab.textWizard": "Text to Columns",
|
"SSE.Controllers.DataTab.textWizard": "Text to Columns",
|
||||||
"SSE.Controllers.DocumentHolder.alignmentText": "Alignment",
|
"SSE.Controllers.DocumentHolder.alignmentText": "Alignment",
|
||||||
"SSE.Controllers.DocumentHolder.centerText": "Center",
|
"SSE.Controllers.DocumentHolder.centerText": "Center",
|
||||||
|
@ -482,6 +484,7 @@
|
||||||
"SSE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
"SSE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
|
||||||
"SSE.Controllers.Main.errorUnexpectedGuid": "External error.<br>Unexpected GUID. Please contact support in case the error persists.",
|
"SSE.Controllers.Main.errorUnexpectedGuid": "External error.<br>Unexpected GUID. Please contact support in case the error persists.",
|
||||||
"SSE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
"SSE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||||
|
"SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||||
"SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
"SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
"SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||||
"SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
"SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||||
|
@ -768,7 +771,6 @@
|
||||||
"SSE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
"SSE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"SSE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
"SSE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||||
"SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
|
||||||
"SSE.Controllers.Print.strAllSheets": "All Sheets",
|
"SSE.Controllers.Print.strAllSheets": "All Sheets",
|
||||||
"SSE.Controllers.Print.textWarning": "Warning",
|
"SSE.Controllers.Print.textWarning": "Warning",
|
||||||
"SSE.Controllers.Print.txtCustom": "Custom",
|
"SSE.Controllers.Print.txtCustom": "Custom",
|
||||||
|
@ -786,6 +788,7 @@
|
||||||
"SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 409",
|
"SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 409",
|
||||||
"SSE.Controllers.Toolbar.textFraction": "Fractions",
|
"SSE.Controllers.Toolbar.textFraction": "Fractions",
|
||||||
"SSE.Controllers.Toolbar.textFunction": "Functions",
|
"SSE.Controllers.Toolbar.textFunction": "Functions",
|
||||||
|
"SSE.Controllers.Toolbar.textInsert": "Insert",
|
||||||
"SSE.Controllers.Toolbar.textIntegral": "Integrals",
|
"SSE.Controllers.Toolbar.textIntegral": "Integrals",
|
||||||
"SSE.Controllers.Toolbar.textLargeOperator": "Large Operators",
|
"SSE.Controllers.Toolbar.textLargeOperator": "Large Operators",
|
||||||
"SSE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
|
"SSE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms",
|
||||||
|
@ -1123,7 +1126,6 @@
|
||||||
"SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Table Style Medium",
|
"SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Table Style Medium",
|
||||||
"SSE.Controllers.Toolbar.warnLongOperation": "The operation you are about to perform might take rather much time to complete.<br>Are you sure you want to continue?",
|
"SSE.Controllers.Toolbar.warnLongOperation": "The operation you are about to perform might take rather much time to complete.<br>Are you sure you want to continue?",
|
||||||
"SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell. <br>Are you sure you want to continue?",
|
"SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell. <br>Are you sure you want to continue?",
|
||||||
"SSE.Controllers.Toolbar.textInsert": "Insert",
|
|
||||||
"SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes",
|
"SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes",
|
||||||
"SSE.Controllers.Viewport.textHideFBar": "Hide Formula Bar",
|
"SSE.Controllers.Viewport.textHideFBar": "Hide Formula Bar",
|
||||||
"SSE.Controllers.Viewport.textHideGridlines": "Hide Gridlines",
|
"SSE.Controllers.Viewport.textHideGridlines": "Hide Gridlines",
|
||||||
|
@ -1205,36 +1207,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Color",
|
"SSE.Views.ChartSettings.strSparkColor": "Color",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Template",
|
"SSE.Views.ChartSettings.strTemplate": "Template",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
"SSE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||||
"del_SSE.Views.ChartSettings.textArea": "Area",
|
|
||||||
"del_SSE.Views.ChartSettings.textBar": "Bar",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "The entered value is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "The entered value is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Change Chart Type",
|
"SSE.Views.ChartSettings.textChartType": "Change Chart Type",
|
||||||
"del_SSE.Views.ChartSettings.textColumn": "Column",
|
|
||||||
"del_SSE.Views.ChartSettings.textColumnSpark": "Column",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Edit Data and Location",
|
"SSE.Views.ChartSettings.textEditData": "Edit Data and Location",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "First Point",
|
"SSE.Views.ChartSettings.textFirstPoint": "First Point",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Height",
|
"SSE.Views.ChartSettings.textHeight": "Height",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "High Point",
|
"SSE.Views.ChartSettings.textHighPoint": "High Point",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Constant proportions",
|
"SSE.Views.ChartSettings.textKeepRatio": "Constant proportions",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Last Point",
|
"SSE.Views.ChartSettings.textLastPoint": "Last Point",
|
||||||
"del_SSE.Views.ChartSettings.textLine": "Line",
|
|
||||||
"del_SSE.Views.ChartSettings.textLineSpark": "Line",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Low Point",
|
"SSE.Views.ChartSettings.textLowPoint": "Low Point",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Markers",
|
"SSE.Views.ChartSettings.textMarkers": "Markers",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Negative Point",
|
"SSE.Views.ChartSettings.textNegativePoint": "Negative Point",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Add New Custom Color",
|
"SSE.Views.ChartSettings.textNewColor": "Add New Custom Color",
|
||||||
"del_SSE.Views.ChartSettings.textPie": "Pie",
|
|
||||||
"del_SSE.Views.ChartSettings.textPoint": "XY (Scatter)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Data Range",
|
"SSE.Views.ChartSettings.textRanges": "Data Range",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Select Data",
|
"SSE.Views.ChartSettings.textSelectData": "Select Data",
|
||||||
"SSE.Views.ChartSettings.textShow": "Show",
|
"SSE.Views.ChartSettings.textShow": "Show",
|
||||||
"SSE.Views.ChartSettings.textSize": "Size",
|
"SSE.Views.ChartSettings.textSize": "Size",
|
||||||
"del_SSE.Views.ChartSettings.textStock": "Stock",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Style",
|
"SSE.Views.ChartSettings.textStyle": "Style",
|
||||||
"del_SSE.Views.ChartSettings.textSurface": "Surface",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Type",
|
"SSE.Views.ChartSettings.textType": "Type",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Width",
|
"SSE.Views.ChartSettings.textWidth": "Width",
|
||||||
"del_SSE.Views.ChartSettings.textWinLossSpark": "Win/Loss",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERROR! The maximum number of points in series per chart is 4096.",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERROR! The maximum number of points in series per chart is 4096.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
|
||||||
|
@ -1243,14 +1234,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Description",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Description",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Title",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Title",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textArea": "Area",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Auto for Each",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Auto for Each",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textBar": "Bar",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Billions",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Billions",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Bottom",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Bottom",
|
||||||
|
@ -1258,8 +1247,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Center",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Center",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &<br/>Chart Legend",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &<br/>Chart Legend",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Chart Title",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Chart Title",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textColumn": "Column",
|
|
||||||
"del_SSE.Views.ChartSettingsDlg.textColumnSpark": "Column",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Cross",
|
"SSE.Views.ChartSettingsDlg.textCross": "Cross",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Custom",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Custom",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "in columns",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "in columns",
|
||||||
|
@ -1300,9 +1287,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legend",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legend",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Right",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Right",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Top",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Top",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textLine": "Line Chart",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Lines ",
|
"SSE.Views.ChartSettingsDlg.textLines": "Lines ",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textLineSpark": "Line",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Location Range",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Location Range",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Low",
|
"SSE.Views.ChartSettingsDlg.textLow": "Low",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
|
||||||
|
@ -1324,8 +1309,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Out",
|
"SSE.Views.ChartSettingsDlg.textOut": "Out",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Overlay",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Overlay",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textPie": "Pie",
|
|
||||||
"del_SSE.Views.ChartSettingsDlg.textPoint": "XY (Scatter)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Reverse order",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Reverse order",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Right",
|
"SSE.Views.ChartSettingsDlg.textRight": "Right",
|
||||||
|
@ -1347,10 +1330,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Smooth",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Smooth",
|
||||||
"SSE.Views.ChartSettingsDlg.textSnap": "Cell Snapping",
|
"SSE.Views.ChartSettingsDlg.textSnap": "Cell Snapping",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textStock": "Stock",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Straight",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Straight",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textSurface": "Surface",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Thousands",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Thousands",
|
||||||
|
@ -1368,7 +1349,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Vertical Gridlines",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Vertical Gridlines",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Vertical Axis Title",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Vertical Axis Title",
|
||||||
"del_SSE.Views.ChartSettingsDlg.textWinLossSpark": "Win/Loss",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
||||||
|
@ -1449,6 +1429,7 @@
|
||||||
"SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes",
|
"SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes",
|
||||||
"SSE.Views.DocumentHolder.textFromFile": "From File",
|
"SSE.Views.DocumentHolder.textFromFile": "From File",
|
||||||
"SSE.Views.DocumentHolder.textFromUrl": "From URL",
|
"SSE.Views.DocumentHolder.textFromUrl": "From URL",
|
||||||
|
"SSE.Views.DocumentHolder.textListSettings": "List Settings",
|
||||||
"SSE.Views.DocumentHolder.textMoreFormats": "More formats",
|
"SSE.Views.DocumentHolder.textMoreFormats": "More formats",
|
||||||
"SSE.Views.DocumentHolder.textNone": "None",
|
"SSE.Views.DocumentHolder.textNone": "None",
|
||||||
"SSE.Views.DocumentHolder.textReplace": "Replace image",
|
"SSE.Views.DocumentHolder.textReplace": "Replace image",
|
||||||
|
@ -1528,7 +1509,6 @@
|
||||||
"SSE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
"SSE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
||||||
"SSE.Views.DocumentHolder.txtWidth": "Width",
|
"SSE.Views.DocumentHolder.txtWidth": "Width",
|
||||||
"SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
"SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
||||||
"SSE.Views.DocumentHolder.textListSettings": "List Settings",
|
|
||||||
"SSE.Views.FileMenu.btnBackCaption": "Open file location",
|
"SSE.Views.FileMenu.btnBackCaption": "Open file location",
|
||||||
"SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
|
"SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
|
||||||
"SSE.Views.FileMenu.btnCreateNewCaption": "Create New",
|
"SSE.Views.FileMenu.btnCreateNewCaption": "Create New",
|
||||||
|
@ -2229,6 +2209,7 @@
|
||||||
"SSE.Views.Toolbar.capBtnAddComment": "Add Comment",
|
"SSE.Views.Toolbar.capBtnAddComment": "Add Comment",
|
||||||
"SSE.Views.Toolbar.capBtnComment": "Comment",
|
"SSE.Views.Toolbar.capBtnComment": "Comment",
|
||||||
"SSE.Views.Toolbar.capBtnInsHeader": "Header/Footer",
|
"SSE.Views.Toolbar.capBtnInsHeader": "Header/Footer",
|
||||||
|
"SSE.Views.Toolbar.capBtnInsSymbol": "Symbol",
|
||||||
"SSE.Views.Toolbar.capBtnMargins": "Margins",
|
"SSE.Views.Toolbar.capBtnMargins": "Margins",
|
||||||
"SSE.Views.Toolbar.capBtnPageOrient": "Orientation",
|
"SSE.Views.Toolbar.capBtnPageOrient": "Orientation",
|
||||||
"SSE.Views.Toolbar.capBtnPageSize": "Size",
|
"SSE.Views.Toolbar.capBtnPageSize": "Size",
|
||||||
|
@ -2257,20 +2238,15 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Align Right",
|
"SSE.Views.Toolbar.textAlignRight": "Align Right",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Align Top",
|
"SSE.Views.Toolbar.textAlignTop": "Align Top",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "All Borders",
|
"SSE.Views.Toolbar.textAllBorders": "All Borders",
|
||||||
"del_SSE.Views.Toolbar.textArea": "Area",
|
|
||||||
"SSE.Views.Toolbar.textAuto": "Auto",
|
"SSE.Views.Toolbar.textAuto": "Auto",
|
||||||
"del_SSE.Views.Toolbar.textBar": "Bar",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Bold",
|
"SSE.Views.Toolbar.textBold": "Bold",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Border Color",
|
"SSE.Views.Toolbar.textBordersColor": "Border Color",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Border Style",
|
"SSE.Views.Toolbar.textBordersStyle": "Border Style",
|
||||||
"SSE.Views.Toolbar.textBottom": "Bottom: ",
|
"SSE.Views.Toolbar.textBottom": "Bottom: ",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Bottom Borders",
|
"SSE.Views.Toolbar.textBottomBorders": "Bottom Borders",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders",
|
"SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders",
|
||||||
"del_SSE.Views.Toolbar.textCharts": "Charts",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "Clear Print Area",
|
"SSE.Views.Toolbar.textClearPrintArea": "Clear Print Area",
|
||||||
"SSE.Views.Toolbar.textClockwise": "Angle Clockwise",
|
"SSE.Views.Toolbar.textClockwise": "Angle Clockwise",
|
||||||
"del_SSE.Views.Toolbar.textColumn": "Column",
|
|
||||||
"del_SSE.Views.Toolbar.textColumnSpark": "Column",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise",
|
"SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Shift Cells Left",
|
"SSE.Views.Toolbar.textDelLeft": "Shift Cells Left",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Shift Cells Up",
|
"SSE.Views.Toolbar.textDelUp": "Shift Cells Up",
|
||||||
|
@ -2288,8 +2264,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "Landscape",
|
"SSE.Views.Toolbar.textLandscape": "Landscape",
|
||||||
"SSE.Views.Toolbar.textLeft": "Left: ",
|
"SSE.Views.Toolbar.textLeft": "Left: ",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Left Borders",
|
"SSE.Views.Toolbar.textLeftBorders": "Left Borders",
|
||||||
"del_SSE.Views.Toolbar.textLine": "Line",
|
|
||||||
"del_SSE.Views.Toolbar.textLineSpark": "Line",
|
|
||||||
"SSE.Views.Toolbar.textManyPages": "pages",
|
"SSE.Views.Toolbar.textManyPages": "pages",
|
||||||
"SSE.Views.Toolbar.textMarginsLast": "Last Custom",
|
"SSE.Views.Toolbar.textMarginsLast": "Last Custom",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
"SSE.Views.Toolbar.textMarginsNarrow": "Narrow",
|
||||||
|
@ -2303,8 +2277,6 @@
|
||||||
"SSE.Views.Toolbar.textOnePage": "page",
|
"SSE.Views.Toolbar.textOnePage": "page",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Outside Borders",
|
"SSE.Views.Toolbar.textOutBorders": "Outside Borders",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
|
||||||
"del_SSE.Views.Toolbar.textPie": "Pie",
|
|
||||||
"del_SSE.Views.Toolbar.textPoint": "XY (Scatter)",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "Portrait",
|
"SSE.Views.Toolbar.textPortrait": "Portrait",
|
||||||
"SSE.Views.Toolbar.textPrint": "Print",
|
"SSE.Views.Toolbar.textPrint": "Print",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Print Settings",
|
"SSE.Views.Toolbar.textPrintOptions": "Print Settings",
|
||||||
|
@ -2313,13 +2285,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Rotate Text Down",
|
"SSE.Views.Toolbar.textRotateDown": "Rotate Text Down",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Rotate Text Up",
|
"SSE.Views.Toolbar.textRotateUp": "Rotate Text Up",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "Set Print Area",
|
"SSE.Views.Toolbar.textSetPrintArea": "Set Print Area",
|
||||||
"del_SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"del_SSE.Views.Toolbar.textStock": "Stock",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Strikeout",
|
"SSE.Views.Toolbar.textStrikeout": "Strikeout",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Subscript",
|
"SSE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript",
|
"SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Superscript",
|
"SSE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"del_SSE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
"SSE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
||||||
"SSE.Views.Toolbar.textTabData": "Data",
|
"SSE.Views.Toolbar.textTabData": "Data",
|
||||||
"SSE.Views.Toolbar.textTabFile": "File",
|
"SSE.Views.Toolbar.textTabFile": "File",
|
||||||
|
@ -2332,7 +2301,6 @@
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Top Borders",
|
"SSE.Views.Toolbar.textTopBorders": "Top Borders",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Underline",
|
"SSE.Views.Toolbar.textUnderline": "Underline",
|
||||||
"SSE.Views.Toolbar.textWidth": "Width",
|
"SSE.Views.Toolbar.textWidth": "Width",
|
||||||
"del_SSE.Views.Toolbar.textWinLossSpark": "Win/Loss",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoom",
|
"SSE.Views.Toolbar.textZoom": "Zoom",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Align bottom",
|
"SSE.Views.Toolbar.tipAlignBottom": "Align bottom",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Align center",
|
"SSE.Views.Toolbar.tipAlignCenter": "Align center",
|
||||||
|
@ -2373,6 +2341,7 @@
|
||||||
"SSE.Views.Toolbar.tipInsertImage": "Insert image",
|
"SSE.Views.Toolbar.tipInsertImage": "Insert image",
|
||||||
"SSE.Views.Toolbar.tipInsertOpt": "Insert cells",
|
"SSE.Views.Toolbar.tipInsertOpt": "Insert cells",
|
||||||
"SSE.Views.Toolbar.tipInsertShape": "Insert autoshape",
|
"SSE.Views.Toolbar.tipInsertShape": "Insert autoshape",
|
||||||
|
"SSE.Views.Toolbar.tipInsertSymbol": "Insert symbol",
|
||||||
"SSE.Views.Toolbar.tipInsertTable": "Insert table",
|
"SSE.Views.Toolbar.tipInsertTable": "Insert table",
|
||||||
"SSE.Views.Toolbar.tipInsertText": "Insert text box",
|
"SSE.Views.Toolbar.tipInsertText": "Insert text box",
|
||||||
"SSE.Views.Toolbar.tipInsertTextart": "Insert Text Art",
|
"SSE.Views.Toolbar.tipInsertTextart": "Insert Text Art",
|
||||||
|
@ -2464,8 +2433,6 @@
|
||||||
"SSE.Views.Toolbar.txtTime": "Time",
|
"SSE.Views.Toolbar.txtTime": "Time",
|
||||||
"SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells",
|
"SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells",
|
||||||
"SSE.Views.Toolbar.txtYen": "¥ Yen",
|
"SSE.Views.Toolbar.txtYen": "¥ Yen",
|
||||||
"SSE.Views.Toolbar.capBtnInsSymbol": "Symbol",
|
|
||||||
"SSE.Views.Toolbar.tipInsertSymbol": "Insert symbol",
|
|
||||||
"SSE.Views.Top10FilterDialog.textType": "Show",
|
"SSE.Views.Top10FilterDialog.textType": "Show",
|
||||||
"SSE.Views.Top10FilterDialog.txtBottom": "Bottom",
|
"SSE.Views.Top10FilterDialog.txtBottom": "Bottom",
|
||||||
"SSE.Views.Top10FilterDialog.txtItems": "Item",
|
"SSE.Views.Top10FilterDialog.txtItems": "Item",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Cancelar",
|
"cancelButtonText": "Cancelar",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Introduzca su mensaje aquí",
|
"Common.Controllers.Chat.textEnterMessage": "Introduzca su mensaje aquí",
|
||||||
|
"Common.define.chartData.textArea": "Área",
|
||||||
|
"Common.define.chartData.textBar": "Barra",
|
||||||
|
"Common.define.chartData.textColumn": "Gráfico de columnas",
|
||||||
|
"Common.define.chartData.textLine": "Línea",
|
||||||
|
"Common.define.chartData.textPie": "Gráfico circular",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Dispersión)",
|
||||||
|
"Common.define.chartData.textStock": "De cotizaciones",
|
||||||
|
"Common.define.chartData.textSurface": "Superficie",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Histograma",
|
||||||
|
"Common.define.chartData.textLineSpark": "Línea",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Ganancia/pérdida",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
"Common.UI.ComboDataView.emptyComboText": "Sin estilo",
|
||||||
|
@ -1145,36 +1157,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Color",
|
"SSE.Views.ChartSettings.strSparkColor": "Color",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Plantilla",
|
"SSE.Views.ChartSettings.strTemplate": "Plantilla",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
"SSE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados",
|
||||||
"SSE.Views.ChartSettings.textArea": "Gráfico de área",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Barra",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "El valor numérico es incorrecto.<br>Por favor, introduzca un valor de 0 a 1584 puntos.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "El valor numérico es incorrecto.<br>Por favor, introduzca un valor de 0 a 1584 puntos.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
|
"SSE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Columna",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Histograma",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Editar datos y ubicación",
|
"SSE.Views.ChartSettings.textEditData": "Editar datos y ubicación",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Primer punto",
|
"SSE.Views.ChartSettings.textFirstPoint": "Primer punto",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Altura",
|
"SSE.Views.ChartSettings.textHeight": "Altura",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Punto alto",
|
"SSE.Views.ChartSettings.textHighPoint": "Punto alto",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Proporciones constantes",
|
"SSE.Views.ChartSettings.textKeepRatio": "Proporciones constantes",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Último punto",
|
"SSE.Views.ChartSettings.textLastPoint": "Último punto",
|
||||||
"SSE.Views.ChartSettings.textLine": "Línea",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Línea",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Punto bajo",
|
"SSE.Views.ChartSettings.textLowPoint": "Punto bajo",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Marcadores",
|
"SSE.Views.ChartSettings.textMarkers": "Marcadores",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Punto negativo",
|
"SSE.Views.ChartSettings.textNegativePoint": "Punto negativo",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Color personalizado",
|
"SSE.Views.ChartSettings.textNewColor": "Color personalizado",
|
||||||
"SSE.Views.ChartSettings.textPie": "Gráfico circular",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "XY (Dispersión)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Rango de datos",
|
"SSE.Views.ChartSettings.textRanges": "Rango de datos",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Seleccionar datos",
|
"SSE.Views.ChartSettings.textSelectData": "Seleccionar datos",
|
||||||
"SSE.Views.ChartSettings.textShow": "Mostrar",
|
"SSE.Views.ChartSettings.textShow": "Mostrar",
|
||||||
"SSE.Views.ChartSettings.textSize": "Tamaño",
|
"SSE.Views.ChartSettings.textSize": "Tamaño",
|
||||||
"SSE.Views.ChartSettings.textStock": "De cotizaciones",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Estilo",
|
"SSE.Views.ChartSettings.textStyle": "Estilo",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Superficie",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Tipo",
|
"SSE.Views.ChartSettings.textType": "Tipo",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Ancho",
|
"SSE.Views.ChartSettings.textWidth": "Ancho",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Ganancia/pérdida",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "¡ERROR! El máximo",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "¡ERROR! El máximo",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "¡ERROR! El número máximo de series de datos por gráfico es 225",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "¡ERROR! El número máximo de series de datos por gráfico es 225",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Orden de las filas incorrecto. Para compilar un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:<br> precio de apertura, precio máximo, precio mínimo, precio de cierre.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Orden de las filas incorrecto. Para compilar un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:<br> precio de apertura, precio máximo, precio mínimo, precio de cierre.",
|
||||||
|
@ -1182,14 +1183,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Descripción",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Descripción",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfico o tabla.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfico o tabla.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Título",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Título",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Gráfico de área",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automático para cada",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automático para cada",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Intersección con eje",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Intersección con eje",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Parámetros de eje",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Parámetros de eje",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Posición de eje",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Posición de eje",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Ajustes de eje",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Ajustes de eje",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Gráfico de barras",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre marcas de graduación",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre marcas de graduación",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Millardos",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Millardos",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Abajo ",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Abajo ",
|
||||||
|
@ -1197,8 +1196,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Al centro",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Al centro",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementos de gráfico y <br/>leyenda de gráfico",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementos de gráfico y <br/>leyenda de gráfico",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Título de gráfico",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Título de gráfico",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Gráfico de columnas",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Histograma",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Intersección",
|
"SSE.Views.ChartSettingsDlg.textCross": "Intersección",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Personalizado",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Personalizado",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "en columnas",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "en columnas",
|
||||||
|
@ -1239,9 +1236,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Leyenda",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Leyenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Derecho",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Derecho",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Superior",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Superior",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Gráfico de líneas",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Líneas",
|
"SSE.Views.ChartSettingsDlg.textLines": "Líneas",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Línea",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Rango de ubicación",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Rango de ubicación",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Bajo",
|
"SSE.Views.ChartSettingsDlg.textLow": "Bajo",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Principal",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Principal",
|
||||||
|
@ -1262,8 +1257,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Fuera",
|
"SSE.Views.ChartSettingsDlg.textOut": "Fuera",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Arriba en el exterior",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Arriba en el exterior",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Superposición",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Superposición",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Gráfico circular",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "XY (Dispersión)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Valores en orden inverso",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Valores en orden inverso",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Orden inverso",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Orden inverso",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Derecho",
|
"SSE.Views.ChartSettingsDlg.textRight": "Derecho",
|
||||||
|
@ -1284,10 +1277,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Sparkline único",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Sparkline único",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Suave",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Suave",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Rangos de Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Rangos de Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "De cotizaciones",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Recto",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Recto",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Estilo",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Estilo",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Superficie",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Miles",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Miles",
|
||||||
|
@ -1304,7 +1295,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Eje vertical",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Eje vertical",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Líneas de cuadrícula verticales",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Líneas de cuadrícula verticales",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Título de eje vertical",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Título de eje vertical",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Ganancia/pérdida",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Título del eje X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Título del eje X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Título del eje Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Título del eje Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Cero",
|
"SSE.Views.ChartSettingsDlg.textZero": "Cero",
|
||||||
|
@ -2127,19 +2117,14 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Alinear a la derecha",
|
"SSE.Views.Toolbar.textAlignRight": "Alinear a la derecha",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Alinear arriba",
|
"SSE.Views.Toolbar.textAlignTop": "Alinear arriba",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Todos los bordes",
|
"SSE.Views.Toolbar.textAllBorders": "Todos los bordes",
|
||||||
"SSE.Views.Toolbar.textArea": "Área",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Gráfico de barras",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Negrita",
|
"SSE.Views.Toolbar.textBold": "Negrita",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Color de borde",
|
"SSE.Views.Toolbar.textBordersColor": "Color de borde",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Estilo de borde",
|
"SSE.Views.Toolbar.textBordersStyle": "Estilo de borde",
|
||||||
"SSE.Views.Toolbar.textBottom": "Inferior: ",
|
"SSE.Views.Toolbar.textBottom": "Inferior: ",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Bordes inferiores",
|
"SSE.Views.Toolbar.textBottomBorders": "Bordes inferiores",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Bordes verticales internos",
|
"SSE.Views.Toolbar.textCenterBorders": "Bordes verticales internos",
|
||||||
"SSE.Views.Toolbar.textCharts": "Gráficos",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "Vaciar área de impresión",
|
"SSE.Views.Toolbar.textClearPrintArea": "Vaciar área de impresión",
|
||||||
"SSE.Views.Toolbar.textClockwise": "En la dirección de manecillas de reloj",
|
"SSE.Views.Toolbar.textClockwise": "En la dirección de manecillas de reloj",
|
||||||
"SSE.Views.Toolbar.textColumn": "Histograma",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Histograma",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "En el sentido antihorario",
|
"SSE.Views.Toolbar.textCounterCw": "En el sentido antihorario",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Desplazar celdas a la izquierda",
|
"SSE.Views.Toolbar.textDelLeft": "Desplazar celdas a la izquierda",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Desplazar celdas hacia arriba",
|
"SSE.Views.Toolbar.textDelUp": "Desplazar celdas hacia arriba",
|
||||||
|
@ -2155,8 +2140,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "Horizontal",
|
"SSE.Views.Toolbar.textLandscape": "Horizontal",
|
||||||
"SSE.Views.Toolbar.textLeft": "Izquierdo: ",
|
"SSE.Views.Toolbar.textLeft": "Izquierdo: ",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Bordes izquierdos",
|
"SSE.Views.Toolbar.textLeftBorders": "Bordes izquierdos",
|
||||||
"SSE.Views.Toolbar.textLine": "Línea",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Línea",
|
|
||||||
"SSE.Views.Toolbar.textMarginsLast": "Último personalizado",
|
"SSE.Views.Toolbar.textMarginsLast": "Último personalizado",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "Estrecho",
|
"SSE.Views.Toolbar.textMarginsNarrow": "Estrecho",
|
||||||
"SSE.Views.Toolbar.textMarginsNormal": "Normal",
|
"SSE.Views.Toolbar.textMarginsNormal": "Normal",
|
||||||
|
@ -2167,8 +2150,6 @@
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Sin bordes",
|
"SSE.Views.Toolbar.textNoBorders": "Sin bordes",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Bordes externos",
|
"SSE.Views.Toolbar.textOutBorders": "Bordes externos",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Márgenes personalizados",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Márgenes personalizados",
|
||||||
"SSE.Views.Toolbar.textPie": "Gráfico circular",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (Dispersión)",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "Vertical",
|
"SSE.Views.Toolbar.textPortrait": "Vertical",
|
||||||
"SSE.Views.Toolbar.textPrint": "Imprimir",
|
"SSE.Views.Toolbar.textPrint": "Imprimir",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Opciones de impresión",
|
"SSE.Views.Toolbar.textPrintOptions": "Opciones de impresión",
|
||||||
|
@ -2177,13 +2158,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Girar texto hacia abajo",
|
"SSE.Views.Toolbar.textRotateDown": "Girar texto hacia abajo",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Girar texto hacia arriba",
|
"SSE.Views.Toolbar.textRotateUp": "Girar texto hacia arriba",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "Establecer área de impresión",
|
"SSE.Views.Toolbar.textSetPrintArea": "Establecer área de impresión",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"SSE.Views.Toolbar.textStock": "De cotizaciones",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Tachado",
|
"SSE.Views.Toolbar.textStrikeout": "Tachado",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Subíndice",
|
"SSE.Views.Toolbar.textSubscript": "Subíndice",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Subíndice/superíndice",
|
"SSE.Views.Toolbar.textSubSuperscript": "Subíndice/superíndice",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Sobreíndice",
|
"SSE.Views.Toolbar.textSuperscript": "Sobreíndice",
|
||||||
"SSE.Views.Toolbar.textSurface": "Superficie",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Colaboración",
|
"SSE.Views.Toolbar.textTabCollaboration": "Colaboración",
|
||||||
"SSE.Views.Toolbar.textTabData": "Datos",
|
"SSE.Views.Toolbar.textTabData": "Datos",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Archivo",
|
"SSE.Views.Toolbar.textTabFile": "Archivo",
|
||||||
|
@ -2195,7 +2173,6 @@
|
||||||
"SSE.Views.Toolbar.textTop": "Superior:",
|
"SSE.Views.Toolbar.textTop": "Superior:",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Bordes superiores",
|
"SSE.Views.Toolbar.textTopBorders": "Bordes superiores",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Subrayar",
|
"SSE.Views.Toolbar.textUnderline": "Subrayar",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Ganancia/pérdida",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoom",
|
"SSE.Views.Toolbar.textZoom": "Zoom",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Alinear en la parte inferior",
|
"SSE.Views.Toolbar.tipAlignBottom": "Alinear en la parte inferior",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Alinear al centro",
|
"SSE.Views.Toolbar.tipAlignCenter": "Alinear al centro",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Annuler",
|
"cancelButtonText": "Annuler",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Avertissement",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Avertissement",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Entrez votre message ici",
|
"Common.Controllers.Chat.textEnterMessage": "Entrez votre message ici",
|
||||||
|
"Common.define.chartData.textArea": "En aires",
|
||||||
|
"Common.define.chartData.textBar": "En barre",
|
||||||
|
"Common.define.chartData.textColumn": "Colonne",
|
||||||
|
"Common.define.chartData.textLine": "Graphique en ligne",
|
||||||
|
"Common.define.chartData.textPie": "Graphiques à secteurs",
|
||||||
|
"Common.define.chartData.textPoint": "Nuages de points (XY)",
|
||||||
|
"Common.define.chartData.textStock": "Boursier",
|
||||||
|
"Common.define.chartData.textSurface": "Surface",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Histogramme",
|
||||||
|
"Common.define.chartData.textLineSpark": "Ligne",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Positif/Négatif",
|
||||||
|
"Common.define.chartData.textSparks": "Graphiques sparkline",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
|
"Common.UI.ComboDataView.emptyComboText": "Aucun style",
|
||||||
|
@ -1171,36 +1183,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Couleur",
|
"SSE.Views.ChartSettings.strSparkColor": "Couleur",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Modèle",
|
"SSE.Views.ChartSettings.strTemplate": "Modèle",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
"SSE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
||||||
"SSE.Views.ChartSettings.textArea": "En aires",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "À barres",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "La valeur saisie est incorrecte. <br>Entrez une valeur de 0 à 1584 points.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "La valeur saisie est incorrecte. <br>Entrez une valeur de 0 à 1584 points.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Modifier le type de graphique",
|
"SSE.Views.ChartSettings.textChartType": "Modifier le type de graphique",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Histogramme",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Histogramme",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Modifier les données et l'emplacement",
|
"SSE.Views.ChartSettings.textEditData": "Modifier les données et l'emplacement",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Premier point",
|
"SSE.Views.ChartSettings.textFirstPoint": "Premier point",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Hauteur",
|
"SSE.Views.ChartSettings.textHeight": "Hauteur",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Point élevé",
|
"SSE.Views.ChartSettings.textHighPoint": "Point élevé",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Proportions constantes",
|
"SSE.Views.ChartSettings.textKeepRatio": "Proportions constantes",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Dernier point",
|
"SSE.Views.ChartSettings.textLastPoint": "Dernier point",
|
||||||
"SSE.Views.ChartSettings.textLine": "Ligne",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Ligne",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Point bas",
|
"SSE.Views.ChartSettings.textLowPoint": "Point bas",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Marqueurs",
|
"SSE.Views.ChartSettings.textMarkers": "Marqueurs",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Point négatif",
|
"SSE.Views.ChartSettings.textNegativePoint": "Point négatif",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Couleur personnalisée",
|
"SSE.Views.ChartSettings.textNewColor": "Couleur personnalisée",
|
||||||
"SSE.Views.ChartSettings.textPie": "À secteurs",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Nuages de points (XY)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Plage de données",
|
"SSE.Views.ChartSettings.textRanges": "Plage de données",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Sélectionner des données",
|
"SSE.Views.ChartSettings.textSelectData": "Sélectionner des données",
|
||||||
"SSE.Views.ChartSettings.textShow": "Afficher",
|
"SSE.Views.ChartSettings.textShow": "Afficher",
|
||||||
"SSE.Views.ChartSettings.textSize": "Taille",
|
"SSE.Views.ChartSettings.textSize": "Taille",
|
||||||
"SSE.Views.ChartSettings.textStock": "Boursier",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Style",
|
"SSE.Views.ChartSettings.textStyle": "Style",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Surface",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Type",
|
"SSE.Views.ChartSettings.textType": "Type",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Largeur",
|
"SSE.Views.ChartSettings.textWidth": "Largeur",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Positif/Négatif",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERREUR! Maximum de 4096 points en série par graphique.",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERREUR! Maximum de 4096 points en série par graphique.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERREUR! Maximum de 255 séries de données par graphique.",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERREUR! Maximum de 255 séries de données par graphique.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:<br> cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:<br> cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.",
|
||||||
|
@ -1208,14 +1209,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Description",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Description",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titre",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titre",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "En aires",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automatique pour chaque",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automatique pour chaque",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Intersection de l'axe",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Intersection de l'axe",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Options d'axe",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Options d'axe",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Position de l'axe",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Position de l'axe",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Paramètres de l’axe",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Paramètres de l’axe",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Diagramme à barres",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre graduations",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre graduations",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Milliards",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Milliards",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "En bas",
|
"SSE.Views.ChartSettingsDlg.textBottom": "En bas",
|
||||||
|
@ -1223,8 +1222,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Au centre",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Au centre",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Éléments de graphique,<br/>légende de graphique",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Éléments de graphique,<br/>légende de graphique",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Titre du graphique",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Titre du graphique",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Histogramme",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Histogramme",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Sur l'axe",
|
"SSE.Views.ChartSettingsDlg.textCross": "Sur l'axe",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Personnalisé",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Personnalisé",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "en colonnes",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "en colonnes",
|
||||||
|
@ -1265,9 +1262,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Légende",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Légende",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "A droite",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "A droite",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "En haut",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "En haut",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Graphique en ligne",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Lignes",
|
"SSE.Views.ChartSettingsDlg.textLines": "Lignes",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Ligne",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Plage d’emplacements",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Plage d’emplacements",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "En bas",
|
"SSE.Views.ChartSettingsDlg.textLow": "En bas",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Principaux",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Principaux",
|
||||||
|
@ -1288,8 +1283,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "A l'extérieur",
|
"SSE.Views.ChartSettingsDlg.textOut": "A l'extérieur",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "En haut à l'extérieur",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "En haut à l'extérieur",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Superposition",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Superposition",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Graphiques à secteurs",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Nuages de points (XY)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Valeurs en ordre inverse",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Valeurs en ordre inverse",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Inverser l’ordre",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Inverser l’ordre",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "A droite",
|
"SSE.Views.ChartSettingsDlg.textRight": "A droite",
|
||||||
|
@ -1310,10 +1303,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Sparkline unique",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Sparkline unique",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Lisse",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Lisse",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Plage de graphiques sparklines",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Plage de graphiques sparklines",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Boursier",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Droit",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Droit",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Surface",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Milliers",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Milliers",
|
||||||
|
@ -1330,7 +1321,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Axe vertical",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Axe vertical",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Quadrillage vertical",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Quadrillage vertical",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titre de l'axe vertical",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titre de l'axe vertical",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Positif/Négatif",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titre de l'axe X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titre de l'axe X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titre de l'axe Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titre de l'axe Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Valeur nulle",
|
"SSE.Views.ChartSettingsDlg.textZero": "Valeur nulle",
|
||||||
|
@ -2198,19 +2188,14 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Aligner à droite",
|
"SSE.Views.Toolbar.textAlignRight": "Aligner à droite",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Aligner en haut",
|
"SSE.Views.Toolbar.textAlignTop": "Aligner en haut",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Toutes les bordures",
|
"SSE.Views.Toolbar.textAllBorders": "Toutes les bordures",
|
||||||
"SSE.Views.Toolbar.textArea": "En aires",
|
|
||||||
"SSE.Views.Toolbar.textBar": "À barres",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Gras",
|
"SSE.Views.Toolbar.textBold": "Gras",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Couleur de la bordure",
|
"SSE.Views.Toolbar.textBordersColor": "Couleur de la bordure",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Style de la bordure",
|
"SSE.Views.Toolbar.textBordersStyle": "Style de la bordure",
|
||||||
"SSE.Views.Toolbar.textBottom": "Bas: ",
|
"SSE.Views.Toolbar.textBottom": "Bas: ",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Bordures inférieures",
|
"SSE.Views.Toolbar.textBottomBorders": "Bordures inférieures",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Bordures intérieures verticales",
|
"SSE.Views.Toolbar.textCenterBorders": "Bordures intérieures verticales",
|
||||||
"SSE.Views.Toolbar.textCharts": "Graphiques",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "Vider la zone d'impression",
|
"SSE.Views.Toolbar.textClearPrintArea": "Vider la zone d'impression",
|
||||||
"SSE.Views.Toolbar.textClockwise": "Rotation dans le sens des aiguilles d'une montre",
|
"SSE.Views.Toolbar.textClockwise": "Rotation dans le sens des aiguilles d'une montre",
|
||||||
"SSE.Views.Toolbar.textColumn": "Histogramme",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Histogramme",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Rotation dans le sens inverse des aiguilles d'une montre",
|
"SSE.Views.Toolbar.textCounterCw": "Rotation dans le sens inverse des aiguilles d'une montre",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Décaler les cellules vers la gauche",
|
"SSE.Views.Toolbar.textDelLeft": "Décaler les cellules vers la gauche",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Décaler les cellules vers le haut",
|
"SSE.Views.Toolbar.textDelUp": "Décaler les cellules vers le haut",
|
||||||
|
@ -2226,8 +2211,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "Paysage",
|
"SSE.Views.Toolbar.textLandscape": "Paysage",
|
||||||
"SSE.Views.Toolbar.textLeft": "À gauche:",
|
"SSE.Views.Toolbar.textLeft": "À gauche:",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Bordures gauches",
|
"SSE.Views.Toolbar.textLeftBorders": "Bordures gauches",
|
||||||
"SSE.Views.Toolbar.textLine": "Ligne",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Ligne",
|
|
||||||
"SSE.Views.Toolbar.textMarginsLast": "Dernière mesure",
|
"SSE.Views.Toolbar.textMarginsLast": "Dernière mesure",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "Étroit",
|
"SSE.Views.Toolbar.textMarginsNarrow": "Étroit",
|
||||||
"SSE.Views.Toolbar.textMarginsNormal": "Normal",
|
"SSE.Views.Toolbar.textMarginsNormal": "Normal",
|
||||||
|
@ -2238,8 +2221,6 @@
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Pas de bordures",
|
"SSE.Views.Toolbar.textNoBorders": "Pas de bordures",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Bordures extérieures",
|
"SSE.Views.Toolbar.textOutBorders": "Bordures extérieures",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées",
|
||||||
"SSE.Views.Toolbar.textPie": "À secteurs",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "Nuages de points (XY)",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "Portrait",
|
"SSE.Views.Toolbar.textPortrait": "Portrait",
|
||||||
"SSE.Views.Toolbar.textPrint": "Imprimer",
|
"SSE.Views.Toolbar.textPrint": "Imprimer",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Paramètres d'impression",
|
"SSE.Views.Toolbar.textPrintOptions": "Paramètres d'impression",
|
||||||
|
@ -2248,13 +2229,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Rotation du texte vers le bas",
|
"SSE.Views.Toolbar.textRotateDown": "Rotation du texte vers le bas",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Rotation du texte vers le haut",
|
"SSE.Views.Toolbar.textRotateUp": "Rotation du texte vers le haut",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "Selectionner la zone d'impression",
|
"SSE.Views.Toolbar.textSetPrintArea": "Selectionner la zone d'impression",
|
||||||
"SSE.Views.Toolbar.textSparks": "Graphiques sparkline",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Boursier",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Barré",
|
"SSE.Views.Toolbar.textStrikeout": "Barré",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Indice",
|
"SSE.Views.Toolbar.textSubscript": "Indice",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Indice/Exposant",
|
"SSE.Views.Toolbar.textSubSuperscript": "Indice/Exposant",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Exposant",
|
"SSE.Views.Toolbar.textSuperscript": "Exposant",
|
||||||
"SSE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
"SSE.Views.Toolbar.textTabCollaboration": "Collaboration",
|
||||||
"SSE.Views.Toolbar.textTabData": "Données",
|
"SSE.Views.Toolbar.textTabData": "Données",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Fichier",
|
"SSE.Views.Toolbar.textTabFile": "Fichier",
|
||||||
|
@ -2266,7 +2244,6 @@
|
||||||
"SSE.Views.Toolbar.textTop": "En haut: ",
|
"SSE.Views.Toolbar.textTop": "En haut: ",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Bordures supérieures",
|
"SSE.Views.Toolbar.textTopBorders": "Bordures supérieures",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Souligné",
|
"SSE.Views.Toolbar.textUnderline": "Souligné",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Positif/Négatif",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoom",
|
"SSE.Views.Toolbar.textZoom": "Zoom",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Aligner en bas",
|
"SSE.Views.Toolbar.tipAlignBottom": "Aligner en bas",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Aligner au centre",
|
"SSE.Views.Toolbar.tipAlignCenter": "Aligner au centre",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Mégse",
|
"cancelButtonText": "Mégse",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Figyelmeztetés",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Figyelmeztetés",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Írja be ide az üzenetet",
|
"Common.Controllers.Chat.textEnterMessage": "Írja be ide az üzenetet",
|
||||||
|
"Common.define.chartData.textArea": "Terület",
|
||||||
|
"Common.define.chartData.textBar": "Sáv",
|
||||||
|
"Common.define.chartData.textColumn": "Oszlop",
|
||||||
|
"Common.define.chartData.textLine": "Vonal",
|
||||||
|
"Common.define.chartData.textPie": "Kör",
|
||||||
|
"Common.define.chartData.textPoint": "Pont",
|
||||||
|
"Common.define.chartData.textStock": "Részvény",
|
||||||
|
"Common.define.chartData.textSurface": "Felület",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Oszlop",
|
||||||
|
"Common.define.chartData.textLineSpark": "Vonal",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Nyereség/veszteség",
|
||||||
|
"Common.define.chartData.textSparks": "Értékgörbék",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nincsenek szegélyek",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
"Common.UI.ComboDataView.emptyComboText": "Nincsenek stílusok",
|
||||||
|
@ -1065,36 +1077,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Szín",
|
"SSE.Views.ChartSettings.strSparkColor": "Szín",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Sablon",
|
"SSE.Views.ChartSettings.strTemplate": "Sablon",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése",
|
"SSE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése",
|
||||||
"SSE.Views.ChartSettings.textArea": "Terület",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Sáv",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "A megadott érték helytelen.<br>Kérjük, adjon meg egy számértéket 0 és 1584 között",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "A megadott érték helytelen.<br>Kérjük, adjon meg egy számértéket 0 és 1584 között",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Diagramtípus módosítása",
|
"SSE.Views.ChartSettings.textChartType": "Diagramtípus módosítása",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Oszlop",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Oszlop",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Adatok és hely szerkesztése",
|
"SSE.Views.ChartSettings.textEditData": "Adatok és hely szerkesztése",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Első pont",
|
"SSE.Views.ChartSettings.textFirstPoint": "Első pont",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Magasság",
|
"SSE.Views.ChartSettings.textHeight": "Magasság",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Csúcspont",
|
"SSE.Views.ChartSettings.textHighPoint": "Csúcspont",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Állandó arányok",
|
"SSE.Views.ChartSettings.textKeepRatio": "Állandó arányok",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Utolsó pont",
|
"SSE.Views.ChartSettings.textLastPoint": "Utolsó pont",
|
||||||
"SSE.Views.ChartSettings.textLine": "Vonal",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Vonal",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Alacsony pont",
|
"SSE.Views.ChartSettings.textLowPoint": "Alacsony pont",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Jelölők",
|
"SSE.Views.ChartSettings.textMarkers": "Jelölők",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Negatív pont",
|
"SSE.Views.ChartSettings.textNegativePoint": "Negatív pont",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Új egyedi szín hozzáadása",
|
"SSE.Views.ChartSettings.textNewColor": "Új egyedi szín hozzáadása",
|
||||||
"SSE.Views.ChartSettings.textPie": "Kördiagram",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Pont",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Adattartomány",
|
"SSE.Views.ChartSettings.textRanges": "Adattartomány",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Adatok kiválasztása",
|
"SSE.Views.ChartSettings.textSelectData": "Adatok kiválasztása",
|
||||||
"SSE.Views.ChartSettings.textShow": "Mutat",
|
"SSE.Views.ChartSettings.textShow": "Mutat",
|
||||||
"SSE.Views.ChartSettings.textSize": "Méret",
|
"SSE.Views.ChartSettings.textSize": "Méret",
|
||||||
"SSE.Views.ChartSettings.textStock": "Részvény",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Stílus",
|
"SSE.Views.ChartSettings.textStyle": "Stílus",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Felület",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Típus",
|
"SSE.Views.ChartSettings.textType": "Típus",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Szélesség",
|
"SSE.Views.ChartSettings.textWidth": "Szélesség",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Nyereség/veszteség",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "HIBA! A soronkénti maximális pontszám a diagramon 4096.",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "HIBA! A soronkénti maximális pontszám a diagramon 4096.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "HIBA! Az adatsorok maximális száma diagramonként 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "HIBA! Az adatsorok maximális száma diagramonként 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Helytelen sor sorrend. Részvénydiagram létrehozásához az adatokat az alábbi sorrendben vigye fel:<br>nyitó ár, maximum ár, minimum ár, záró ár.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Helytelen sor sorrend. Részvénydiagram létrehozásához az adatokat az alábbi sorrendben vigye fel:<br>nyitó ár, maximum ár, minimum ár, záró ár.",
|
||||||
|
@ -1102,14 +1103,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Leírás",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Leírás",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "A vizuális objektumok alternatív szövegalapú ábrázolása, amely a látás vagy kognitív károsodottak számára is olvasható, hogy segítsen nekik jobban megérteni, hogy milyen információ, alakzat, diagram vagy táblázat látható.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "A vizuális objektumok alternatív szövegalapú ábrázolása, amely a látás vagy kognitív károsodottak számára is olvasható, hogy segítsen nekik jobban megérteni, hogy milyen információ, alakzat, diagram vagy táblázat látható.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Cím",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Cím",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Terület",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Mind automatikus",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Mind automatikus",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Tengelykeresztek",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Tengelykeresztek",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Tengely beállítások",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Tengely beállítások",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Tengely pozíció",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Tengely pozíció",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Tengely beállítások",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Tengely beállítások",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Sáv",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tengely osztások között",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tengely osztások között",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Milliárdok",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Milliárdok",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Alsó",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Alsó",
|
||||||
|
@ -1117,8 +1116,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Közép",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Közép",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Diagramelemek és<br/>Diagrammagyarázat",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Diagramelemek és<br/>Diagrammagyarázat",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Diagram címe",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Diagram címe",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Oszlop",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Oszlop",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Kereszt",
|
"SSE.Views.ChartSettingsDlg.textCross": "Kereszt",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Egyéni",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Egyéni",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "oszlopokban",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "oszlopokban",
|
||||||
|
@ -1159,9 +1156,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Jelmagyarázat",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Jelmagyarázat",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Jobb",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Jobb",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Felső",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Felső",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Vonal",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Vonalak",
|
"SSE.Views.ChartSettingsDlg.textLines": "Vonalak",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Vonal",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Pozíció tartomány",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Pozíció tartomány",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Alacsony",
|
"SSE.Views.ChartSettingsDlg.textLow": "Alacsony",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Jelentősebb",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Jelentősebb",
|
||||||
|
@ -1182,8 +1177,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Ki",
|
"SSE.Views.ChartSettingsDlg.textOut": "Ki",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Kívül fent",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Kívül fent",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Átfedés",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Átfedés",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Kör",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Pont",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Értékek fordított sorrendben",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Értékek fordított sorrendben",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Fordított sorrend",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Fordított sorrend",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Jobb",
|
"SSE.Views.ChartSettingsDlg.textRight": "Jobb",
|
||||||
|
@ -1204,10 +1197,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Egyedi értékgörbe",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Egyedi értékgörbe",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Sima",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Sima",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Értékgörbe tartományok",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Értékgörbe tartományok",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Részvény",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Egyenes",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Egyenes",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Stílus",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Stílus",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Felület",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Ezrek",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Ezrek",
|
||||||
|
@ -1224,7 +1215,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Függőleges tengely",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Függőleges tengely",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Függőleges rácsvonalak",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Függőleges rácsvonalak",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Függőleges tengely címe",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Függőleges tengely címe",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Nyereség/veszteség",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X tengely címe",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X tengely címe",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y tengely címe",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y tengely címe",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Nulla",
|
"SSE.Views.ChartSettingsDlg.textZero": "Nulla",
|
||||||
|
@ -1978,19 +1968,14 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Jobbra rendez",
|
"SSE.Views.Toolbar.textAlignRight": "Jobbra rendez",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Felfelé rendez",
|
"SSE.Views.Toolbar.textAlignTop": "Felfelé rendez",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Jobb szegély",
|
"SSE.Views.Toolbar.textAllBorders": "Jobb szegély",
|
||||||
"SSE.Views.Toolbar.textArea": "Terület",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Sáv",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Félkövér",
|
"SSE.Views.Toolbar.textBold": "Félkövér",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Szegély színe",
|
"SSE.Views.Toolbar.textBordersColor": "Szegély színe",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Szegély stílus",
|
"SSE.Views.Toolbar.textBordersStyle": "Szegély stílus",
|
||||||
"SSE.Views.Toolbar.textBottom": "Alsó:",
|
"SSE.Views.Toolbar.textBottom": "Alsó:",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Alsó szegélyek",
|
"SSE.Views.Toolbar.textBottomBorders": "Alsó szegélyek",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Belső függőleges szegélyek",
|
"SSE.Views.Toolbar.textCenterBorders": "Belső függőleges szegélyek",
|
||||||
"SSE.Views.Toolbar.textCharts": "Diagramok",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "Nyomtatási terület törlése",
|
"SSE.Views.Toolbar.textClearPrintArea": "Nyomtatási terület törlése",
|
||||||
"SSE.Views.Toolbar.textClockwise": "Lejtő szöveg",
|
"SSE.Views.Toolbar.textClockwise": "Lejtő szöveg",
|
||||||
"SSE.Views.Toolbar.textColumn": "Oszlop",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Oszlop",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Emelkedő szöveg",
|
"SSE.Views.Toolbar.textCounterCw": "Emelkedő szöveg",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Cella helyettesítése jobbról",
|
"SSE.Views.Toolbar.textDelLeft": "Cella helyettesítése jobbról",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Cella helyettesítése lentről",
|
"SSE.Views.Toolbar.textDelUp": "Cella helyettesítése lentről",
|
||||||
|
@ -2006,8 +1991,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "Tájkép",
|
"SSE.Views.Toolbar.textLandscape": "Tájkép",
|
||||||
"SSE.Views.Toolbar.textLeft": "Bal:",
|
"SSE.Views.Toolbar.textLeft": "Bal:",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Bal szegélyek",
|
"SSE.Views.Toolbar.textLeftBorders": "Bal szegélyek",
|
||||||
"SSE.Views.Toolbar.textLine": "Vonal",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Vonal",
|
|
||||||
"SSE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások",
|
"SSE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "Keskeny",
|
"SSE.Views.Toolbar.textMarginsNarrow": "Keskeny",
|
||||||
"SSE.Views.Toolbar.textMarginsNormal": "Normál",
|
"SSE.Views.Toolbar.textMarginsNormal": "Normál",
|
||||||
|
@ -2018,8 +2001,6 @@
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Nincsenek szegélyek",
|
"SSE.Views.Toolbar.textNoBorders": "Nincsenek szegélyek",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Külső szegélyek",
|
"SSE.Views.Toolbar.textOutBorders": "Külső szegélyek",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Egyéni margók",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Egyéni margók",
|
||||||
"SSE.Views.Toolbar.textPie": "Kördiagram",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "Pont",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "Portré",
|
"SSE.Views.Toolbar.textPortrait": "Portré",
|
||||||
"SSE.Views.Toolbar.textPrint": "Nyomtat",
|
"SSE.Views.Toolbar.textPrint": "Nyomtat",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Nyomtatási beállítások",
|
"SSE.Views.Toolbar.textPrintOptions": "Nyomtatási beállítások",
|
||||||
|
@ -2028,13 +2009,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Szöveg elforgatása lefelé",
|
"SSE.Views.Toolbar.textRotateDown": "Szöveg elforgatása lefelé",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Szöveg elforgatása felfelé",
|
"SSE.Views.Toolbar.textRotateUp": "Szöveg elforgatása felfelé",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "Nyomtatási terület beállítása",
|
"SSE.Views.Toolbar.textSetPrintArea": "Nyomtatási terület beállítása",
|
||||||
"SSE.Views.Toolbar.textSparks": "Értékgörbék",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Részvény",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "áthúzás",
|
"SSE.Views.Toolbar.textStrikeout": "áthúzás",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Alsó index",
|
"SSE.Views.Toolbar.textSubscript": "Alsó index",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Alsó/felső index",
|
"SSE.Views.Toolbar.textSubSuperscript": "Alsó/felső index",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Felső index",
|
"SSE.Views.Toolbar.textSuperscript": "Felső index",
|
||||||
"SSE.Views.Toolbar.textSurface": "Felület",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Együttműködés",
|
"SSE.Views.Toolbar.textTabCollaboration": "Együttműködés",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Fájl",
|
"SSE.Views.Toolbar.textTabFile": "Fájl",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Kezdőlap",
|
"SSE.Views.Toolbar.textTabHome": "Kezdőlap",
|
||||||
|
@ -2044,7 +2022,6 @@
|
||||||
"SSE.Views.Toolbar.textTop": "Felső:",
|
"SSE.Views.Toolbar.textTop": "Felső:",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Felső szegélyek",
|
"SSE.Views.Toolbar.textTopBorders": "Felső szegélyek",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Aláhúzott",
|
"SSE.Views.Toolbar.textUnderline": "Aláhúzott",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Nyereség/veszteség",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoom",
|
"SSE.Views.Toolbar.textZoom": "Zoom",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Alulra rendez",
|
"SSE.Views.Toolbar.tipAlignBottom": "Alulra rendez",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Középre rendez",
|
"SSE.Views.Toolbar.tipAlignCenter": "Középre rendez",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Annulla",
|
"cancelButtonText": "Annulla",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Avviso",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Avviso",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Scrivi il tuo messaggio qui",
|
"Common.Controllers.Chat.textEnterMessage": "Scrivi il tuo messaggio qui",
|
||||||
|
"Common.define.chartData.textArea": "Aerogramma",
|
||||||
|
"Common.define.chartData.textBar": "A barre",
|
||||||
|
"Common.define.chartData.textColumn": "Istogramma",
|
||||||
|
"Common.define.chartData.textLine": "A linee",
|
||||||
|
"Common.define.chartData.textPie": "A torta",
|
||||||
|
"Common.define.chartData.textPoint": "XY (A dispersione)",
|
||||||
|
"Common.define.chartData.textStock": "Azionario",
|
||||||
|
"Common.define.chartData.textSurface": "Superficie",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Colonna",
|
||||||
|
"Common.define.chartData.textLineSpark": "Linea",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Vinci/Perdi",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
"Common.UI.ComboDataView.emptyComboText": "Nessuno stile",
|
||||||
|
@ -1172,36 +1184,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Colore",
|
"SSE.Views.ChartSettings.strSparkColor": "Colore",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Modello",
|
"SSE.Views.ChartSettings.strTemplate": "Modello",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
"SSE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate",
|
||||||
"SSE.Views.ChartSettings.textArea": "Area",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Barra",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Il valore inserito non è corretto.<br>Inserisci un valore tra 0 pt e 1584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Il valore inserito non è corretto.<br>Inserisci un valore tra 0 pt e 1584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Cambia tipo di grafico",
|
"SSE.Views.ChartSettings.textChartType": "Cambia tipo di grafico",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Colonna",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Colonna",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Modifica Dati e Posizione",
|
"SSE.Views.ChartSettings.textEditData": "Modifica Dati e Posizione",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Primo punto",
|
"SSE.Views.ChartSettings.textFirstPoint": "Primo punto",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Altezza",
|
"SSE.Views.ChartSettings.textHeight": "Altezza",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Punto alto",
|
"SSE.Views.ChartSettings.textHighPoint": "Punto alto",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Proporzioni costanti",
|
"SSE.Views.ChartSettings.textKeepRatio": "Proporzioni costanti",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Ultimo punto",
|
"SSE.Views.ChartSettings.textLastPoint": "Ultimo punto",
|
||||||
"SSE.Views.ChartSettings.textLine": "Linea",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Linea",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Punto basso",
|
"SSE.Views.ChartSettings.textLowPoint": "Punto basso",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Indicatori",
|
"SSE.Views.ChartSettings.textMarkers": "Indicatori",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Punto negativo",
|
"SSE.Views.ChartSettings.textNegativePoint": "Punto negativo",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Colore personalizzato",
|
"SSE.Views.ChartSettings.textNewColor": "Colore personalizzato",
|
||||||
"SSE.Views.ChartSettings.textPie": "A torta",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "XY (A dispersione)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Intervallo di dati",
|
"SSE.Views.ChartSettings.textRanges": "Intervallo di dati",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Seleziona dati",
|
"SSE.Views.ChartSettings.textSelectData": "Seleziona dati",
|
||||||
"SSE.Views.ChartSettings.textShow": "Mostra",
|
"SSE.Views.ChartSettings.textShow": "Mostra",
|
||||||
"SSE.Views.ChartSettings.textSize": "Dimensione",
|
"SSE.Views.ChartSettings.textSize": "Dimensione",
|
||||||
"SSE.Views.ChartSettings.textStock": "Stock",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Stile",
|
"SSE.Views.ChartSettings.textStyle": "Stile",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Superficie",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Tipo",
|
"SSE.Views.ChartSettings.textType": "Tipo",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Larghezza",
|
"SSE.Views.ChartSettings.textWidth": "Larghezza",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Vinci/Perdi",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERRORE! Il numero massimo di punti in serie per grafico è 4096.",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERRORE! Il numero massimo di punti in serie per grafico è 4096.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERRORE! Il numero massimo di serie di dati per grafico è 255.",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERRORE! Il numero massimo di serie di dati per grafico è 255.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Ordine di righe scorretto. Per creare o grafico in pila posiziona i dati nel foglio nel seguente ordine:<br> prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Ordine di righe scorretto. Per creare o grafico in pila posiziona i dati nel foglio nel seguente ordine:<br> prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.",
|
||||||
|
@ -1210,14 +1211,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Descrizione",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Descrizione",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "La rappresentazione alternativa del testo delle informazioni riguardanti gli oggetti visivi, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "La rappresentazione alternativa del testo delle informazioni riguardanti gli oggetti visivi, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titolo",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titolo",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Ad area",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Adatta per ognuno",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Adatta per ognuno",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Intersezione asse",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Intersezione asse",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Opzioni assi",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Opzioni assi",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Posizione asse",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Posizione asse",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "A barre",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tra segni di graduazione",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tra segni di graduazione",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardi",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardi",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "In basso",
|
"SSE.Views.ChartSettingsDlg.textBottom": "In basso",
|
||||||
|
@ -1225,8 +1224,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Al centro",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Al centro",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementi di grafico e<br/>legenda di grafico",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementi di grafico e<br/>legenda di grafico",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Titolo di grafico",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Titolo di grafico",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Istogramma",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Colonna",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Interseca",
|
"SSE.Views.ChartSettingsDlg.textCross": "Interseca",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Personalizzato",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Personalizzato",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "in colonne",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "in colonne",
|
||||||
|
@ -1267,9 +1264,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "A destra",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "A destra",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "In alto",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "In alto",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "A linee",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Linee",
|
"SSE.Views.ChartSettingsDlg.textLines": "Linee",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Linea",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Campo di ubicazione",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Campo di ubicazione",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "In basso",
|
"SSE.Views.ChartSettingsDlg.textLow": "In basso",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Principali",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Principali",
|
||||||
|
@ -1291,8 +1286,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "All'esterno",
|
"SSE.Views.ChartSettingsDlg.textOut": "All'esterno",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Alto esterno",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Alto esterno",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Sovrapposizione",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Sovrapposizione",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "A torta",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "XY (A dispersione)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Valori in ordine inverso",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Valori in ordine inverso",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "ordine inverso",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "ordine inverso",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "A destra",
|
"SSE.Views.ChartSettingsDlg.textRight": "A destra",
|
||||||
|
@ -1314,10 +1307,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Sfumate",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Sfumate",
|
||||||
"SSE.Views.ChartSettingsDlg.textSnap": "Aggancia celle",
|
"SSE.Views.ChartSettingsDlg.textSnap": "Aggancia celle",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Intervalli di Sparkline ",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Intervalli di Sparkline ",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Azionario",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Rette",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Rette",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Stile",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Stile",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Superficie",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Migliaia",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Migliaia",
|
||||||
|
@ -1335,7 +1326,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Asse verticale",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Asse verticale",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Linee verticali della griglia",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Linee verticali della griglia",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titolo asse verticale",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titolo asse verticale",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Vinci/Perdi",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titolo di asse X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titolo di asse X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titolo di asse Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titolo di asse Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
||||||
|
@ -2220,19 +2210,14 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Allinea a destra",
|
"SSE.Views.Toolbar.textAlignRight": "Allinea a destra",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Allinea in alto",
|
"SSE.Views.Toolbar.textAlignTop": "Allinea in alto",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Tutti i bordi",
|
"SSE.Views.Toolbar.textAllBorders": "Tutti i bordi",
|
||||||
"SSE.Views.Toolbar.textArea": "Ad area",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Barra",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Grassetto",
|
"SSE.Views.Toolbar.textBold": "Grassetto",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Colore bordo",
|
"SSE.Views.Toolbar.textBordersColor": "Colore bordo",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Stile bordo",
|
"SSE.Views.Toolbar.textBordersStyle": "Stile bordo",
|
||||||
"SSE.Views.Toolbar.textBottom": "In basso: ",
|
"SSE.Views.Toolbar.textBottom": "In basso: ",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Bordi inferiori",
|
"SSE.Views.Toolbar.textBottomBorders": "Bordi inferiori",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Bordi verticali interni",
|
"SSE.Views.Toolbar.textCenterBorders": "Bordi verticali interni",
|
||||||
"SSE.Views.Toolbar.textCharts": "Grafici",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "Pulisci area di stampa",
|
"SSE.Views.Toolbar.textClearPrintArea": "Pulisci area di stampa",
|
||||||
"SSE.Views.Toolbar.textClockwise": "Angolo in senso orario",
|
"SSE.Views.Toolbar.textClockwise": "Angolo in senso orario",
|
||||||
"SSE.Views.Toolbar.textColumn": "Colonna",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Colonna",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Angolo in senso antiorario",
|
"SSE.Views.Toolbar.textCounterCw": "Angolo in senso antiorario",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Sposta celle a sinistra",
|
"SSE.Views.Toolbar.textDelLeft": "Sposta celle a sinistra",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Sposta celle in alto",
|
"SSE.Views.Toolbar.textDelUp": "Sposta celle in alto",
|
||||||
|
@ -2248,8 +2233,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "Orizzontale",
|
"SSE.Views.Toolbar.textLandscape": "Orizzontale",
|
||||||
"SSE.Views.Toolbar.textLeft": "Sinistra:",
|
"SSE.Views.Toolbar.textLeft": "Sinistra:",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Bordi sinistri",
|
"SSE.Views.Toolbar.textLeftBorders": "Bordi sinistri",
|
||||||
"SSE.Views.Toolbar.textLine": "Linea",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Linea",
|
|
||||||
"SSE.Views.Toolbar.textMarginsLast": "Ultima personalizzazione",
|
"SSE.Views.Toolbar.textMarginsLast": "Ultima personalizzazione",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "Stretto",
|
"SSE.Views.Toolbar.textMarginsNarrow": "Stretto",
|
||||||
"SSE.Views.Toolbar.textMarginsNormal": "Normale",
|
"SSE.Views.Toolbar.textMarginsNormal": "Normale",
|
||||||
|
@ -2260,8 +2243,6 @@
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Nessun bordo",
|
"SSE.Views.Toolbar.textNoBorders": "Nessun bordo",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Bordi esterni",
|
"SSE.Views.Toolbar.textOutBorders": "Bordi esterni",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Margini personalizzati",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Margini personalizzati",
|
||||||
"SSE.Views.Toolbar.textPie": "A torta",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (A dispersione)",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "Verticale",
|
"SSE.Views.Toolbar.textPortrait": "Verticale",
|
||||||
"SSE.Views.Toolbar.textPrint": "Stampa",
|
"SSE.Views.Toolbar.textPrint": "Stampa",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Impostazioni stampa",
|
"SSE.Views.Toolbar.textPrintOptions": "Impostazioni stampa",
|
||||||
|
@ -2270,13 +2251,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Ruota testo verso il basso",
|
"SSE.Views.Toolbar.textRotateDown": "Ruota testo verso il basso",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Ruota testo verso l'alto",
|
"SSE.Views.Toolbar.textRotateUp": "Ruota testo verso l'alto",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "Imposta area di stampa",
|
"SSE.Views.Toolbar.textSetPrintArea": "Imposta area di stampa",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Azionario",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Barrato",
|
"SSE.Views.Toolbar.textStrikeout": "Barrato",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Pedice",
|
"SSE.Views.Toolbar.textSubscript": "Pedice",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Pedice/Apice",
|
"SSE.Views.Toolbar.textSubSuperscript": "Pedice/Apice",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Apice",
|
"SSE.Views.Toolbar.textSuperscript": "Apice",
|
||||||
"SSE.Views.Toolbar.textSurface": "Superficie",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Collaborazione",
|
"SSE.Views.Toolbar.textTabCollaboration": "Collaborazione",
|
||||||
"SSE.Views.Toolbar.textTabData": "Dati",
|
"SSE.Views.Toolbar.textTabData": "Dati",
|
||||||
"SSE.Views.Toolbar.textTabFile": "File",
|
"SSE.Views.Toolbar.textTabFile": "File",
|
||||||
|
@ -2288,7 +2266,6 @@
|
||||||
"SSE.Views.Toolbar.textTop": "in alto:",
|
"SSE.Views.Toolbar.textTop": "in alto:",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Bordi superiori",
|
"SSE.Views.Toolbar.textTopBorders": "Bordi superiori",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Sottolineato",
|
"SSE.Views.Toolbar.textUnderline": "Sottolineato",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Vinci/Perdi",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoom",
|
"SSE.Views.Toolbar.textZoom": "Zoom",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Allinea in basso",
|
"SSE.Views.Toolbar.tipAlignBottom": "Allinea in basso",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Allinea al centro",
|
"SSE.Views.Toolbar.tipAlignCenter": "Allinea al centro",
|
||||||
|
|
|
@ -2,6 +2,13 @@
|
||||||
"cancelButtonText": "キャンセル",
|
"cancelButtonText": "キャンセル",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "ここでメッセージを挿入してください。",
|
"Common.Controllers.Chat.textEnterMessage": "ここでメッセージを挿入してください。",
|
||||||
|
"Common.define.chartData.textArea": "面グラフ",
|
||||||
|
"Common.define.chartData.textBar": "横棒グラフ",
|
||||||
|
"Common.define.chartData.textColumn": "縦棒グラフ",
|
||||||
|
"Common.define.chartData.textLine": "折れ線グラフ",
|
||||||
|
"Common.define.chartData.textPie": "円グラフ",
|
||||||
|
"Common.define.chartData.textPoint": "点グラフ",
|
||||||
|
"Common.define.chartData.textStock": "株価チャート",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "枠線なし",
|
"Common.UI.ComboBorderSize.txtNoBorders": "枠線なし",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "枠線なし",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "枠線なし",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
|
"Common.UI.ComboDataView.emptyComboText": "スタイルなし",
|
||||||
|
@ -261,36 +268,26 @@
|
||||||
"SSE.Views.CellRangeDialog.txtInvalidRange": "エラー!セルの範囲が正しくありません。",
|
"SSE.Views.CellRangeDialog.txtInvalidRange": "エラー!セルの範囲が正しくありません。",
|
||||||
"SSE.Views.CellRangeDialog.txtTitle": "データ範囲の選択",
|
"SSE.Views.CellRangeDialog.txtTitle": "データ範囲の選択",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "詳細設定の表示",
|
"SSE.Views.ChartSettings.textAdvanced": "詳細設定の表示",
|
||||||
"SSE.Views.ChartSettings.textArea": "面グラフ",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "横棒グラフ",
|
|
||||||
"SSE.Views.ChartSettings.textChartType": "グラフの種類の変更",
|
"SSE.Views.ChartSettings.textChartType": "グラフの種類の変更",
|
||||||
"SSE.Views.ChartSettings.textColumn": "縦棒グラフ",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "データの編集",
|
"SSE.Views.ChartSettings.textEditData": "データの編集",
|
||||||
"SSE.Views.ChartSettings.textHeight": "高さ",
|
"SSE.Views.ChartSettings.textHeight": "高さ",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "比例の定数",
|
"SSE.Views.ChartSettings.textKeepRatio": "比例の定数",
|
||||||
"SSE.Views.ChartSettings.textLine": "折れ線グラフ",
|
|
||||||
"SSE.Views.ChartSettings.textPie": "円グラフ",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "点グラフ",
|
|
||||||
"SSE.Views.ChartSettings.textSize": "サイズ",
|
"SSE.Views.ChartSettings.textSize": "サイズ",
|
||||||
"SSE.Views.ChartSettings.textStock": "株価チャート",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "スタイル",
|
"SSE.Views.ChartSettings.textStyle": "スタイル",
|
||||||
"SSE.Views.ChartSettings.textWidth": "幅",
|
"SSE.Views.ChartSettings.textWidth": "幅",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "エラー!使用可能なデータ系列の数は、1グラフあたり最大255個です。",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "エラー!使用可能なデータ系列の数は、1グラフあたり最大255個です。",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、<br>始値、高値、安値、終値の順でシートのデータを配置してください。",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、<br>始値、高値、安値、終値の順でシートのデータを配置してください。",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "面グラフ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "自動",
|
"SSE.Views.ChartSettingsDlg.textAuto": "自動",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "軸との交点",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "軸との交点",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "軸のオプション",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "軸のオプション",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "軸位置",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "軸位置",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "軸の設定",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "軸の設定",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "横棒グラフ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "目盛りの間",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "目盛りの間",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "十億",
|
"SSE.Views.ChartSettingsDlg.textBillions": "十億",
|
||||||
"SSE.Views.ChartSettingsDlg.textCategoryName": "カテゴリ名",
|
"SSE.Views.ChartSettingsDlg.textCategoryName": "カテゴリ名",
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "中央揃え",
|
"SSE.Views.ChartSettingsDlg.textCenter": "中央揃え",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "グラフ要素&<br/>グラフの凡例",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "グラフ要素&<br/>グラフの凡例",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "グラフのタイトル",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "グラフのタイトル",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "縦棒グラフ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "十字形",
|
"SSE.Views.ChartSettingsDlg.textCross": "十字形",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "カスタム",
|
"SSE.Views.ChartSettingsDlg.textCustom": "カスタム",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "列に",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "列に",
|
||||||
|
@ -325,7 +322,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "凡例",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "凡例",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "右に",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "右に",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "トップ",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "トップ",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "折れ線グラフ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "行",
|
"SSE.Views.ChartSettingsDlg.textLines": "行",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "ロー",
|
"SSE.Views.ChartSettingsDlg.textLow": "ロー",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "メジャー",
|
"SSE.Views.ChartSettingsDlg.textMajor": "メジャー",
|
||||||
|
@ -346,8 +342,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "外",
|
"SSE.Views.ChartSettingsDlg.textOut": "外",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "外トップ",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "外トップ",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "オーバーレイ",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "オーバーレイ",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "円グラフ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "点グラフ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "軸を反転する",
|
"SSE.Views.ChartSettingsDlg.textReverse": "軸を反転する",
|
||||||
"SSE.Views.ChartSettingsDlg.textRightOverlay": "右オーバーレイ",
|
"SSE.Views.ChartSettingsDlg.textRightOverlay": "右オーバーレイ",
|
||||||
"SSE.Views.ChartSettingsDlg.textRotated": "回転",
|
"SSE.Views.ChartSettingsDlg.textRotated": "回転",
|
||||||
|
@ -360,7 +354,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textShowGrid": "グリッド線",
|
"SSE.Views.ChartSettingsDlg.textShowGrid": "グリッド線",
|
||||||
"SSE.Views.ChartSettingsDlg.textShowValues": "グラフ値の表示",
|
"SSE.Views.ChartSettingsDlg.textShowValues": "グラフ値の表示",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "スムーズ",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "スムーズ",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "株価チャート",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "直線",
|
"SSE.Views.ChartSettingsDlg.textStraight": "直線",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "スタイル",
|
"SSE.Views.ChartSettingsDlg.textStyle": "スタイル",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
|
|
|
@ -879,36 +879,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Color",
|
"SSE.Views.ChartSettings.strSparkColor": "Color",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "템플릿",
|
"SSE.Views.ChartSettings.strTemplate": "템플릿",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
"SSE.Views.ChartSettings.textAdvanced": "고급 설정 표시",
|
||||||
"SSE.Views.ChartSettings.textArea": "Area",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Bar",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다. <br> 0pt ~ 1584pt 사이의 값을 입력하십시오.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "입력 한 값이 잘못되었습니다. <br> 0pt ~ 1584pt 사이의 값을 입력하십시오.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "차트 유형 변경",
|
"SSE.Views.ChartSettings.textChartType": "차트 유형 변경",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Column",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "열",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "데이터 및 위치 편집",
|
"SSE.Views.ChartSettings.textEditData": "데이터 및 위치 편집",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "첫 번째 지점",
|
"SSE.Views.ChartSettings.textFirstPoint": "첫 번째 지점",
|
||||||
"SSE.Views.ChartSettings.textHeight": "높이",
|
"SSE.Views.ChartSettings.textHeight": "높이",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "높은 점수",
|
"SSE.Views.ChartSettings.textHighPoint": "높은 점수",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "상수 비율",
|
"SSE.Views.ChartSettings.textKeepRatio": "상수 비율",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "마지막 지점",
|
"SSE.Views.ChartSettings.textLastPoint": "마지막 지점",
|
||||||
"SSE.Views.ChartSettings.textLine": "Line",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Line",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Low Point",
|
"SSE.Views.ChartSettings.textLowPoint": "Low Point",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "마커",
|
"SSE.Views.ChartSettings.textMarkers": "마커",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Negative Point",
|
"SSE.Views.ChartSettings.textNegativePoint": "Negative Point",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "새 사용자 지정 색 추가",
|
"SSE.Views.ChartSettings.textNewColor": "새 사용자 지정 색 추가",
|
||||||
"SSE.Views.ChartSettings.textPie": "파이",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "XY (Scatter)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "데이터 범위",
|
"SSE.Views.ChartSettings.textRanges": "데이터 범위",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "데이터 선택",
|
"SSE.Views.ChartSettings.textSelectData": "데이터 선택",
|
||||||
"SSE.Views.ChartSettings.textShow": "표시",
|
"SSE.Views.ChartSettings.textShow": "표시",
|
||||||
"SSE.Views.ChartSettings.textSize": "크기",
|
"SSE.Views.ChartSettings.textSize": "크기",
|
||||||
"SSE.Views.ChartSettings.textStock": "Stock",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "스타일",
|
"SSE.Views.ChartSettings.textStyle": "스타일",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Surface",
|
|
||||||
"SSE.Views.ChartSettings.textType": "유형",
|
"SSE.Views.ChartSettings.textType": "유형",
|
||||||
"SSE.Views.ChartSettings.textWidth": "너비",
|
"SSE.Views.ChartSettings.textWidth": "너비",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Win / Loss",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "문제발생! 차트당 시리즈내 포인트의 최대값은 4096임",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "문제발생! 차트당 시리즈내 포인트의 최대값은 4096임",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "오류! 차트 당 최대 데이터 시리즈 수는 255입니다.",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "오류! 차트 당 최대 데이터 시리즈 수는 255입니다.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트의 데이터를 다음 순서로 배치하십시오 : <br> 개시 가격, 최대 가격, 최소 가격, 마감 가격.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트의 데이터를 다음 순서로 배치하십시오 : <br> 개시 가격, 최대 가격, 최소 가격, 마감 가격.",
|
||||||
|
@ -916,14 +905,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "설명",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "설명",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "시력이나인지 장애가있는 사람들에게 읽혀지는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에 어떤 정보가 있는지 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "시력이나인지 장애가있는 사람들에게 읽혀지는 시각적 객체 정보의 대체 텍스트 기반 표현으로 이미지에 어떤 정보가 있는지 더 잘 이해할 수 있도록 도와줍니다. 차트 또는 표. ",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "제목",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "제목",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Area",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "각자 자동",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "각자 자동",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "축 옵션",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "축 옵션",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "축 위치",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "축 위치",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "축 설정",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "축 설정",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Bar",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "눈금 사이",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "눈금 사이",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "10 억",
|
"SSE.Views.ChartSettingsDlg.textBillions": "10 억",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Bottom",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Bottom",
|
||||||
|
@ -931,8 +918,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Center",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Center",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "차트 요소 & 차트 범례",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "차트 요소 & 차트 범례",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "차트 제목",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "차트 제목",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Column",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "열",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Cross",
|
"SSE.Views.ChartSettingsDlg.textCross": "Cross",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "사용자 지정",
|
"SSE.Views.ChartSettingsDlg.textCustom": "사용자 지정",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "열에 있음",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "열에 있음",
|
||||||
|
@ -973,9 +958,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "범례",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "범례",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "오른쪽",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "오른쪽",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Top",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Top",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "꺾은 선형 차트",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Lines",
|
"SSE.Views.ChartSettingsDlg.textLines": "Lines",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Line",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "위치 범위",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "위치 범위",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "낮음",
|
"SSE.Views.ChartSettingsDlg.textLow": "낮음",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
|
||||||
|
@ -996,8 +979,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Out",
|
"SSE.Views.ChartSettingsDlg.textOut": "Out",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "외부 상단",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "외부 상단",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "오버레이",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "오버레이",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "파이",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "XY (Scatter)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "역순으로 값",
|
"SSE.Views.ChartSettingsDlg.textReverse": "역순으로 값",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "역순",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "역순",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "오른쪽",
|
"SSE.Views.ChartSettingsDlg.textRight": "오른쪽",
|
||||||
|
@ -1018,10 +999,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "단일 스파크 라인",
|
"SSE.Views.ChartSettingsDlg.textSingle": "단일 스파크 라인",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "부드럽게",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "부드럽게",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "스파크 라인 범위",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "스파크 라인 범위",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Stock",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "직선",
|
"SSE.Views.ChartSettingsDlg.textStraight": "직선",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "스타일",
|
"SSE.Views.ChartSettingsDlg.textStyle": "스타일",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Surface",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "수천",
|
"SSE.Views.ChartSettingsDlg.textThousands": "수천",
|
||||||
|
@ -1038,7 +1017,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "세로 축",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "세로 축",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "수직 눈금 선",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "수직 눈금 선",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "세로 축 제목",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "세로 축 제목",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Win / Loss",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X 축 제목",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X 축 제목",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y 축 제목",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y 축 제목",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
||||||
|
@ -1724,17 +1702,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "오른쪽 정렬",
|
"SSE.Views.Toolbar.textAlignRight": "오른쪽 정렬",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Align Top",
|
"SSE.Views.Toolbar.textAlignTop": "Align Top",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "모든 테두리",
|
"SSE.Views.Toolbar.textAllBorders": "모든 테두리",
|
||||||
"SSE.Views.Toolbar.textArea": "Area",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Bar",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Bold",
|
"SSE.Views.Toolbar.textBold": "Bold",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "테두리 색상",
|
"SSE.Views.Toolbar.textBordersColor": "테두리 색상",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "테두리 스타일",
|
"SSE.Views.Toolbar.textBordersStyle": "테두리 스타일",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Bottom Borders",
|
"SSE.Views.Toolbar.textBottomBorders": "Bottom Borders",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "내부 세로 테두리",
|
"SSE.Views.Toolbar.textCenterBorders": "내부 세로 테두리",
|
||||||
"SSE.Views.Toolbar.textCharts": "차트",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "시계 방향으로 각도",
|
"SSE.Views.Toolbar.textClockwise": "시계 방향으로 각도",
|
||||||
"SSE.Views.Toolbar.textColumn": "Column",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Column",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "시계 반대 방향 각도",
|
"SSE.Views.Toolbar.textCounterCw": "시계 반대 방향 각도",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "셀 왼쪽으로 시프트",
|
"SSE.Views.Toolbar.textDelLeft": "셀 왼쪽으로 시프트",
|
||||||
"SSE.Views.Toolbar.textDelUp": "셀 이동",
|
"SSE.Views.Toolbar.textDelUp": "셀 이동",
|
||||||
|
@ -1748,27 +1721,20 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "셀 오른쪽으로 이동",
|
"SSE.Views.Toolbar.textInsRight": "셀 오른쪽으로 이동",
|
||||||
"SSE.Views.Toolbar.textItalic": "Italic",
|
"SSE.Views.Toolbar.textItalic": "Italic",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "왼쪽 테두리",
|
"SSE.Views.Toolbar.textLeftBorders": "왼쪽 테두리",
|
||||||
"SSE.Views.Toolbar.textLine": "Line",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Line",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "내부 수평 테두리",
|
"SSE.Views.Toolbar.textMiddleBorders": "내부 수평 테두리",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "기타 형식",
|
"SSE.Views.Toolbar.textMoreFormats": "기타 형식",
|
||||||
"SSE.Views.Toolbar.textNewColor": "새 사용자 지정 색 추가",
|
"SSE.Views.Toolbar.textNewColor": "새 사용자 지정 색 추가",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "테두리 없음",
|
"SSE.Views.Toolbar.textNoBorders": "테두리 없음",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "테두리 밖",
|
"SSE.Views.Toolbar.textOutBorders": "테두리 밖",
|
||||||
"SSE.Views.Toolbar.textPie": "파이",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (Scatter)",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "인쇄",
|
"SSE.Views.Toolbar.textPrint": "인쇄",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "인쇄 설정",
|
"SSE.Views.Toolbar.textPrintOptions": "인쇄 설정",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "오른쪽 테두리",
|
"SSE.Views.Toolbar.textRightBorders": "오른쪽 테두리",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "텍스트 아래로 회전",
|
"SSE.Views.Toolbar.textRotateDown": "텍스트 아래로 회전",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "텍스트 회전",
|
"SSE.Views.Toolbar.textRotateUp": "텍스트 회전",
|
||||||
"SSE.Views.Toolbar.textSparks": "스파크 라인",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Stock",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "줄긋기",
|
"SSE.Views.Toolbar.textStrikeout": "줄긋기",
|
||||||
"SSE.Views.Toolbar.textSubscript": "첨자",
|
"SSE.Views.Toolbar.textSubscript": "첨자",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "첨자/위에 쓴",
|
"SSE.Views.Toolbar.textSubSuperscript": "첨자/위에 쓴",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "위에 쓴",
|
"SSE.Views.Toolbar.textSuperscript": "위에 쓴",
|
||||||
"SSE.Views.Toolbar.textSurface": "Surface",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "합치기",
|
"SSE.Views.Toolbar.textTabCollaboration": "합치기",
|
||||||
"SSE.Views.Toolbar.textTabFile": "파일",
|
"SSE.Views.Toolbar.textTabFile": "파일",
|
||||||
"SSE.Views.Toolbar.textTabHome": "집",
|
"SSE.Views.Toolbar.textTabHome": "집",
|
||||||
|
@ -1776,7 +1742,6 @@
|
||||||
"SSE.Views.Toolbar.textTabProtect": "보호",
|
"SSE.Views.Toolbar.textTabProtect": "보호",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "위쪽 테두리",
|
"SSE.Views.Toolbar.textTopBorders": "위쪽 테두리",
|
||||||
"SSE.Views.Toolbar.textUnderline": "밑줄",
|
"SSE.Views.Toolbar.textUnderline": "밑줄",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Win / Loss",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "확대 / 축소",
|
"SSE.Views.Toolbar.textZoom": "확대 / 축소",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "아래쪽 정렬",
|
"SSE.Views.Toolbar.tipAlignBottom": "아래쪽 정렬",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "정렬 센터",
|
"SSE.Views.Toolbar.tipAlignCenter": "정렬 센터",
|
||||||
|
|
|
@ -872,36 +872,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Krāsa",
|
"SSE.Views.ChartSettings.strSparkColor": "Krāsa",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Veidne",
|
"SSE.Views.ChartSettings.strTemplate": "Veidne",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
"SSE.Views.ChartSettings.textAdvanced": "Show advanced settings",
|
||||||
"SSE.Views.ChartSettings.textArea": "Apgabals",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Josla",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Ievadītā vērtība nav pareiza.<br>Lūdzu, ievadiet vērtību starp 0 pt un 1584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Ievadītā vērtība nav pareiza.<br>Lūdzu, ievadiet vērtību starp 0 pt un 1584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Izmainīt diagrammas veidu",
|
"SSE.Views.ChartSettings.textChartType": "Izmainīt diagrammas veidu",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Kolonna",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Kolonna",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Edit Data",
|
"SSE.Views.ChartSettings.textEditData": "Edit Data",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Pirmais punkts",
|
"SSE.Views.ChartSettings.textFirstPoint": "Pirmais punkts",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Height",
|
"SSE.Views.ChartSettings.textHeight": "Height",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Augstais punkts",
|
"SSE.Views.ChartSettings.textHighPoint": "Augstais punkts",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Constant Proportions",
|
"SSE.Views.ChartSettings.textKeepRatio": "Constant Proportions",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Pēdējais punkts",
|
"SSE.Views.ChartSettings.textLastPoint": "Pēdējais punkts",
|
||||||
"SSE.Views.ChartSettings.textLine": "Līnija",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Līnija",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Minimālais punkts",
|
"SSE.Views.ChartSettings.textLowPoint": "Minimālais punkts",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Marķieri",
|
"SSE.Views.ChartSettings.textMarkers": "Marķieri",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Negatīvais punkts",
|
"SSE.Views.ChartSettings.textNegativePoint": "Negatīvais punkts",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Pievienot jaunu krāsu",
|
"SSE.Views.ChartSettings.textNewColor": "Pievienot jaunu krāsu",
|
||||||
"SSE.Views.ChartSettings.textPie": "Sektoru diagramma",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Punkts",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Datu diapazons",
|
"SSE.Views.ChartSettings.textRanges": "Datu diapazons",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Izvēlēties datus",
|
"SSE.Views.ChartSettings.textSelectData": "Izvēlēties datus",
|
||||||
"SSE.Views.ChartSettings.textShow": "Rādīt",
|
"SSE.Views.ChartSettings.textShow": "Rādīt",
|
||||||
"SSE.Views.ChartSettings.textSize": "Size",
|
"SSE.Views.ChartSettings.textSize": "Size",
|
||||||
"SSE.Views.ChartSettings.textStock": "Akcijas",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Style",
|
"SSE.Views.ChartSettings.textStyle": "Style",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Virsma",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Veids",
|
"SSE.Views.ChartSettings.textType": "Veids",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Width",
|
"SSE.Views.ChartSettings.textWidth": "Width",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Ieguvums/zaudējums",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "KĻŪDA! Kopējais maksimālais sērijas punktu skaits diagrammā ir 4096.",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "KĻŪDA! Kopējais maksimālais sērijas punktu skaits diagrammā ir 4096.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nederīga rindu kārtība. Lai izveidotu akciju diagrammu novietojiet datus lapā šādā secībā:<br> Sākumcena, maksimālā cena, minimālā cena, slēgšanas cena.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nederīga rindu kārtība. Lai izveidotu akciju diagrammu novietojiet datus lapā šādā secībā:<br> Sākumcena, maksimālā cena, minimālā cena, slēgšanas cena.",
|
||||||
|
@ -909,14 +898,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Apraksts",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Apraksts",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redze vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, automātiskajā figūrā, diagrammā vai tabulā.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Vizuālās objekta informācijas attainojums alternatīvā teksta veidā, kuru lasīs cilvēki ar redze vai uztveres traucējumiem un kuriem tas labāk palīdzēs izprast, kāda informācija ir ietverta tekstā, automātiskajā figūrā, diagrammā vai tabulā.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Nosaukums",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Nosaukums",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Apgabals",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Auto",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automātiski katram",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automātiski katram",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Josla",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Billions",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Billions",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Apakšā",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Apakšā",
|
||||||
|
@ -924,8 +911,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Center",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Center",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &<br/>Chart Legend",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &<br/>Chart Legend",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Grafika nosaukums",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Grafika nosaukums",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Kolonna",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Kolonna",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Cross",
|
"SSE.Views.ChartSettingsDlg.textCross": "Cross",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Custom",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Custom",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "Datu sērijas kolonnās",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "Datu sērijas kolonnās",
|
||||||
|
@ -966,9 +951,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legend",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legend",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Pa labi",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Pa labi",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Augšā",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Augšā",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Līnija",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Lines ",
|
"SSE.Views.ChartSettingsDlg.textLines": "Lines ",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Rinda",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Atrašanās vietas diapazons",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Atrašanās vietas diapazons",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Low",
|
"SSE.Views.ChartSettingsDlg.textLow": "Low",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
|
||||||
|
@ -989,8 +972,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Out",
|
"SSE.Views.ChartSettingsDlg.textOut": "Out",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Overlay",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Overlay",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Sektoru diagramma",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Punkts",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Apgrieztā secībā",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Apgrieztā secībā",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Pa labi",
|
"SSE.Views.ChartSettingsDlg.textRight": "Pa labi",
|
||||||
|
@ -1011,10 +992,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Atsevišķs spārklains",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Atsevišķs spārklains",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Smooth",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Smooth",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Spārklainu diapazoni",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Spārklainu diapazoni",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Akcijas",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Straight",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Straight",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Virsma",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Thousands",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Thousands",
|
||||||
|
@ -1031,7 +1010,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Vertical Gridlines",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Vertical Gridlines",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Vertical Axis Title",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Vertical Axis Title",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Ieguvums/zaudējums",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X ass virsraksts",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X ass virsraksts",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y ass virsraksts",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y ass virsraksts",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Nulle",
|
"SSE.Views.ChartSettingsDlg.textZero": "Nulle",
|
||||||
|
@ -1720,17 +1698,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Līdzināt pa labi",
|
"SSE.Views.Toolbar.textAlignRight": "Līdzināt pa labi",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Līdzināt uz augšu",
|
"SSE.Views.Toolbar.textAlignTop": "Līdzināt uz augšu",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Visas Apmales",
|
"SSE.Views.Toolbar.textAllBorders": "Visas Apmales",
|
||||||
"SSE.Views.Toolbar.textArea": "Apgabals",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Josla",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Treknraksts",
|
"SSE.Views.Toolbar.textBold": "Treknraksts",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Apmales krāsa",
|
"SSE.Views.Toolbar.textBordersColor": "Apmales krāsa",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Robežas stils",
|
"SSE.Views.Toolbar.textBordersStyle": "Robežas stils",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Apakšējās Apmales",
|
"SSE.Views.Toolbar.textBottomBorders": "Apakšējās Apmales",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Iekšējās Vertikālās Apmales",
|
"SSE.Views.Toolbar.textCenterBorders": "Iekšējās Vertikālās Apmales",
|
||||||
"SSE.Views.Toolbar.textCharts": "Diagrammas",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Angle Clockwise",
|
"SSE.Views.Toolbar.textClockwise": "Angle Clockwise",
|
||||||
"SSE.Views.Toolbar.textColumn": "Kolonna",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Kolonna",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise",
|
"SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Shift Cells Left",
|
"SSE.Views.Toolbar.textDelLeft": "Shift Cells Left",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Shift Cells Up",
|
"SSE.Views.Toolbar.textDelUp": "Shift Cells Up",
|
||||||
|
@ -1744,27 +1717,20 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Shift Cells Right",
|
"SSE.Views.Toolbar.textInsRight": "Shift Cells Right",
|
||||||
"SSE.Views.Toolbar.textItalic": "Kursīvs",
|
"SSE.Views.Toolbar.textItalic": "Kursīvs",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Kreisās Apmales",
|
"SSE.Views.Toolbar.textLeftBorders": "Kreisās Apmales",
|
||||||
"SSE.Views.Toolbar.textLine": "Līnija",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Līnija",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Iekšējās Horizontālās Apmales",
|
"SSE.Views.Toolbar.textMiddleBorders": "Iekšējās Horizontālās Apmales",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Vairāk formātu",
|
"SSE.Views.Toolbar.textMoreFormats": "Vairāk formātu",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Pievienot jauno krāsu",
|
"SSE.Views.Toolbar.textNewColor": "Pievienot jauno krāsu",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Nav apmales",
|
"SSE.Views.Toolbar.textNoBorders": "Nav apmales",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Ārējās Apmales",
|
"SSE.Views.Toolbar.textOutBorders": "Ārējās Apmales",
|
||||||
"SSE.Views.Toolbar.textPie": "Sektoru diagramma",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "Punkts (XY)",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "Drukāt",
|
"SSE.Views.Toolbar.textPrint": "Drukāt",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Drukāšanas opcijas",
|
"SSE.Views.Toolbar.textPrintOptions": "Drukāšanas opcijas",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Labās Apmales",
|
"SSE.Views.Toolbar.textRightBorders": "Labās Apmales",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Rotate Text Down",
|
"SSE.Views.Toolbar.textRotateDown": "Rotate Text Down",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Rotate Text Up",
|
"SSE.Views.Toolbar.textRotateUp": "Rotate Text Up",
|
||||||
"SSE.Views.Toolbar.textSparks": "Spārklaini",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Akcijas",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Izsvītrošana",
|
"SSE.Views.Toolbar.textStrikeout": "Izsvītrošana",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Apakšteksts",
|
"SSE.Views.Toolbar.textSubscript": "Apakšteksts",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Apakšraksts/augšraksts",
|
"SSE.Views.Toolbar.textSubSuperscript": "Apakšraksts/augšraksts",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Augšraksts",
|
"SSE.Views.Toolbar.textSuperscript": "Augšraksts",
|
||||||
"SSE.Views.Toolbar.textSurface": "Virsma",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Sadarbība",
|
"SSE.Views.Toolbar.textTabCollaboration": "Sadarbība",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Fails",
|
"SSE.Views.Toolbar.textTabFile": "Fails",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Sākums",
|
"SSE.Views.Toolbar.textTabHome": "Sākums",
|
||||||
|
@ -1772,7 +1738,6 @@
|
||||||
"SSE.Views.Toolbar.textTabProtect": "Aizsardzība",
|
"SSE.Views.Toolbar.textTabProtect": "Aizsardzība",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Augšējās Apmales",
|
"SSE.Views.Toolbar.textTopBorders": "Augšējās Apmales",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Pasvītrots",
|
"SSE.Views.Toolbar.textUnderline": "Pasvītrots",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Ieguvums/zaudējums",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoom",
|
"SSE.Views.Toolbar.textZoom": "Zoom",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Align Bottom",
|
"SSE.Views.Toolbar.tipAlignBottom": "Align Bottom",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Align Center",
|
"SSE.Views.Toolbar.tipAlignCenter": "Align Center",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Annuleren",
|
"cancelButtonText": "Annuleren",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Waarschuwing",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Waarschuwing",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Voer hier uw bericht in",
|
"Common.Controllers.Chat.textEnterMessage": "Voer hier uw bericht in",
|
||||||
|
"Common.define.chartData.textArea": "Vlak",
|
||||||
|
"Common.define.chartData.textBar": "Staaf",
|
||||||
|
"Common.define.chartData.textColumn": "Kolom",
|
||||||
|
"Common.define.chartData.textLine": "Lijn",
|
||||||
|
"Common.define.chartData.textPie": "Cirkel",
|
||||||
|
"Common.define.chartData.textPoint": "Spreiding",
|
||||||
|
"Common.define.chartData.textStock": "Voorraad",
|
||||||
|
"Common.define.chartData.textSurface": "Oppervlak",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Kolom",
|
||||||
|
"Common.define.chartData.textLineSpark": "Lijn",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Winst/verlies",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Geen randen",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Geen randen",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
|
"Common.UI.ComboDataView.emptyComboText": "Geen stijlen",
|
||||||
|
@ -879,36 +891,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Kleur",
|
"SSE.Views.ChartSettings.strSparkColor": "Kleur",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Sjabloon",
|
"SSE.Views.ChartSettings.strTemplate": "Sjabloon",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
"SSE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen",
|
||||||
"SSE.Views.ChartSettings.textArea": "Vlak",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Staaf",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "De ingevoerde waarde is onjuist.<br>Voer een waarde tussen 0 pt en 1584 pt in.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "De ingevoerde waarde is onjuist.<br>Voer een waarde tussen 0 pt en 1584 pt in.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Grafiektype wijzigen",
|
"SSE.Views.ChartSettings.textChartType": "Grafiektype wijzigen",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Kolom",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Kolom",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Gegevens en locatie bewerken",
|
"SSE.Views.ChartSettings.textEditData": "Gegevens en locatie bewerken",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Eerste punt",
|
"SSE.Views.ChartSettings.textFirstPoint": "Eerste punt",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Hoogte",
|
"SSE.Views.ChartSettings.textHeight": "Hoogte",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Hoogste punt",
|
"SSE.Views.ChartSettings.textHighPoint": "Hoogste punt",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Constante verhoudingen",
|
"SSE.Views.ChartSettings.textKeepRatio": "Constante verhoudingen",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Laatste punt",
|
"SSE.Views.ChartSettings.textLastPoint": "Laatste punt",
|
||||||
"SSE.Views.ChartSettings.textLine": "Lijn",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Lijn",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Laagste punt",
|
"SSE.Views.ChartSettings.textLowPoint": "Laagste punt",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Markeringen",
|
"SSE.Views.ChartSettings.textMarkers": "Markeringen",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Negatief punt",
|
"SSE.Views.ChartSettings.textNegativePoint": "Negatief punt",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
"SSE.Views.ChartSettings.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
||||||
"SSE.Views.ChartSettings.textPie": "Cirkel",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Spreiding",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Gegevensbereik",
|
"SSE.Views.ChartSettings.textRanges": "Gegevensbereik",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Gegevens selecteren",
|
"SSE.Views.ChartSettings.textSelectData": "Gegevens selecteren",
|
||||||
"SSE.Views.ChartSettings.textShow": "Tonen",
|
"SSE.Views.ChartSettings.textShow": "Tonen",
|
||||||
"SSE.Views.ChartSettings.textSize": "Grootte",
|
"SSE.Views.ChartSettings.textSize": "Grootte",
|
||||||
"SSE.Views.ChartSettings.textStock": "Voorraad",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Stijl",
|
"SSE.Views.ChartSettings.textStyle": "Stijl",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Oppervlak",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Type",
|
"SSE.Views.ChartSettings.textType": "Type",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Breedte",
|
"SSE.Views.ChartSettings.textWidth": "Breedte",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Winst/verlies",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "Fout! Het maximaal aantal punten in een serie per grafiek is 4096",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "Fout! Het maximaal aantal punten in een serie per grafiek is 4096",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "FOUT! Het maximumaantal gegevensreeksen per grafiek is 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "FOUT! Het maximumaantal gegevensreeksen per grafiek is 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:<br> beginkoers, hoogste koers, laagste koers, slotkoers.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:<br> beginkoers, hoogste koers, laagste koers, slotkoers.",
|
||||||
|
@ -916,14 +917,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Beschrijving",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Beschrijving",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titel",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Titel",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Vlak",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Automatisch",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Automatisch",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automatisch voor elk",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automatisch voor elk",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Snijpunten assen",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Snijpunten assen",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Asopties",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Asopties",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Aspositie",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Aspositie",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Asinstellingen",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Asinstellingen",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Staaf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tussen maatstreepjes",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tussen maatstreepjes",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Miljarden",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Miljarden",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Onder",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Onder",
|
||||||
|
@ -931,8 +930,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Centreren",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Centreren",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Grafiekelementen en<br/>grafieklegenda",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Grafiekelementen en<br/>grafieklegenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Grafiektitel",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Grafiektitel",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Kolom",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Kolom",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Snijpunt",
|
"SSE.Views.ChartSettingsDlg.textCross": "Snijpunt",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Aangepast",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Aangepast",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "in kolommen",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "in kolommen",
|
||||||
|
@ -973,9 +970,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Rechts",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Rechts",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Boven",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Boven",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Lijngrafiek",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Lijnen",
|
"SSE.Views.ChartSettingsDlg.textLines": "Lijnen",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Lijn",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Locatiebereik",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Locatiebereik",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Laag",
|
"SSE.Views.ChartSettingsDlg.textLow": "Laag",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Primair",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Primair",
|
||||||
|
@ -996,8 +991,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Buiten",
|
"SSE.Views.ChartSettingsDlg.textOut": "Buiten",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Buiten boven",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Buiten boven",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Overlay",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Overlay",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Cirkel",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Spreiding",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Waarden in omgekeerde volgorde",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Waarden in omgekeerde volgorde",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Volgorde omkeren",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Volgorde omkeren",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Rechts",
|
"SSE.Views.ChartSettingsDlg.textRight": "Rechts",
|
||||||
|
@ -1018,10 +1011,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Enkele sparkline",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Enkele sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Glad",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Glad",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Bereiken sparkline",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Bereiken sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Voorraad",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Recht",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Recht",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Stijl",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Stijl",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Oppervlak",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Duizenden",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Duizenden",
|
||||||
|
@ -1038,7 +1029,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Verticale as",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Verticale as",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Verticale rasterlijnen",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Verticale rasterlijnen",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titel verticale as",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Titel verticale as",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Winst/verlies",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titel x-as",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Titel x-as",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titel Y-as",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Titel Y-as",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Nul",
|
"SSE.Views.ChartSettingsDlg.textZero": "Nul",
|
||||||
|
@ -1730,17 +1720,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Rechts uitlijnen",
|
"SSE.Views.Toolbar.textAlignRight": "Rechts uitlijnen",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Boven uitlijnen",
|
"SSE.Views.Toolbar.textAlignTop": "Boven uitlijnen",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Alle randen",
|
"SSE.Views.Toolbar.textAllBorders": "Alle randen",
|
||||||
"SSE.Views.Toolbar.textArea": "Vlak",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Staaf",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Vet",
|
"SSE.Views.Toolbar.textBold": "Vet",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Randkleur",
|
"SSE.Views.Toolbar.textBordersColor": "Randkleur",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Stijl rand",
|
"SSE.Views.Toolbar.textBordersStyle": "Stijl rand",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Onderranden",
|
"SSE.Views.Toolbar.textBottomBorders": "Onderranden",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Verticale binnenranden",
|
"SSE.Views.Toolbar.textCenterBorders": "Verticale binnenranden",
|
||||||
"SSE.Views.Toolbar.textCharts": "Grafieken",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Rechtsom draaien",
|
"SSE.Views.Toolbar.textClockwise": "Rechtsom draaien",
|
||||||
"SSE.Views.Toolbar.textColumn": "Kolom",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Kolom",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Linksom draaien",
|
"SSE.Views.Toolbar.textCounterCw": "Linksom draaien",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Cellen naar links verplaatsen",
|
"SSE.Views.Toolbar.textDelLeft": "Cellen naar links verplaatsen",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Cellen naar boven verplaatsen",
|
"SSE.Views.Toolbar.textDelUp": "Cellen naar boven verplaatsen",
|
||||||
|
@ -1754,27 +1739,20 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Cellen naar rechts verplaatsen",
|
"SSE.Views.Toolbar.textInsRight": "Cellen naar rechts verplaatsen",
|
||||||
"SSE.Views.Toolbar.textItalic": "Cursief",
|
"SSE.Views.Toolbar.textItalic": "Cursief",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Linkerranden",
|
"SSE.Views.Toolbar.textLeftBorders": "Linkerranden",
|
||||||
"SSE.Views.Toolbar.textLine": "Lijn",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Lijn",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Horizontale binnenranden",
|
"SSE.Views.Toolbar.textMiddleBorders": "Horizontale binnenranden",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Meer indelingen",
|
"SSE.Views.Toolbar.textMoreFormats": "Meer indelingen",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
"SSE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Geen randen",
|
"SSE.Views.Toolbar.textNoBorders": "Geen randen",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Buitenranden",
|
"SSE.Views.Toolbar.textOutBorders": "Buitenranden",
|
||||||
"SSE.Views.Toolbar.textPie": "Cirkel",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "Spreiding",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "Afdrukken",
|
"SSE.Views.Toolbar.textPrint": "Afdrukken",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Afdrukinstellingen",
|
"SSE.Views.Toolbar.textPrintOptions": "Afdrukinstellingen",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Rechterranden",
|
"SSE.Views.Toolbar.textRightBorders": "Rechterranden",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Tekst omlaag draaien",
|
"SSE.Views.Toolbar.textRotateDown": "Tekst omlaag draaien",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Tekst omhoog draaien",
|
"SSE.Views.Toolbar.textRotateUp": "Tekst omhoog draaien",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Voorraad",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Doorhalen",
|
"SSE.Views.Toolbar.textStrikeout": "Doorhalen",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Subscript",
|
"SSE.Views.Toolbar.textSubscript": "Subscript",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript",
|
"SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Superscript",
|
"SSE.Views.Toolbar.textSuperscript": "Superscript",
|
||||||
"SSE.Views.Toolbar.textSurface": "Oppervlak",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Samenwerking",
|
"SSE.Views.Toolbar.textTabCollaboration": "Samenwerking",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Bestand",
|
"SSE.Views.Toolbar.textTabFile": "Bestand",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Home",
|
"SSE.Views.Toolbar.textTabHome": "Home",
|
||||||
|
@ -1782,7 +1760,6 @@
|
||||||
"SSE.Views.Toolbar.textTabProtect": "Beveiliging",
|
"SSE.Views.Toolbar.textTabProtect": "Beveiliging",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Bovenranden",
|
"SSE.Views.Toolbar.textTopBorders": "Bovenranden",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Onderstrepen",
|
"SSE.Views.Toolbar.textUnderline": "Onderstrepen",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Winst/verlies",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoomen",
|
"SSE.Views.Toolbar.textZoom": "Zoomen",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Onder uitlijnen",
|
"SSE.Views.Toolbar.tipAlignBottom": "Onder uitlijnen",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Midden uitlijnen",
|
"SSE.Views.Toolbar.tipAlignCenter": "Midden uitlijnen",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Anuluj",
|
"cancelButtonText": "Anuluj",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Ostrzeżenie",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Ostrzeżenie",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Wprowadź swoją wiadomość tutaj",
|
"Common.Controllers.Chat.textEnterMessage": "Wprowadź swoją wiadomość tutaj",
|
||||||
|
"Common.define.chartData.textArea": "Obszar",
|
||||||
|
"Common.define.chartData.textBar": "Pasek",
|
||||||
|
"Common.define.chartData.textColumn": "Kolumna",
|
||||||
|
"Common.define.chartData.textLine": "Liniowy",
|
||||||
|
"Common.define.chartData.textPie": "Kołowe",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Punktowy)",
|
||||||
|
"Common.define.chartData.textStock": "Zbiory",
|
||||||
|
"Common.define.chartData.textSurface": "Powierzchnia",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Kolumna",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Wygrana/przegrana",
|
||||||
|
"Common.define.chartData.textLineSpark": "Wiersz",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
|
"Common.UI.ComboDataView.emptyComboText": "Brak styli",
|
||||||
|
@ -793,50 +805,37 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Kolor",
|
"SSE.Views.ChartSettings.strSparkColor": "Kolor",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Szablon",
|
"SSE.Views.ChartSettings.strTemplate": "Szablon",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane",
|
"SSE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane",
|
||||||
"SSE.Views.ChartSettings.textArea": "Obszar",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Paskowy",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.<br>Wprowadź wartość w zakresie od 0 do 1584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.<br>Wprowadź wartość w zakresie od 0 do 1584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Zmień typ wykresu",
|
"SSE.Views.ChartSettings.textChartType": "Zmień typ wykresu",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Kolumna",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Kolumna",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Edytuj datę i lokalizację",
|
"SSE.Views.ChartSettings.textEditData": "Edytuj datę i lokalizację",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Pierwszy punkt",
|
"SSE.Views.ChartSettings.textFirstPoint": "Pierwszy punkt",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Wysokość",
|
"SSE.Views.ChartSettings.textHeight": "Wysokość",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Punkt wysokości",
|
"SSE.Views.ChartSettings.textHighPoint": "Punkt wysokości",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Stałe proporcje",
|
"SSE.Views.ChartSettings.textKeepRatio": "Stałe proporcje",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Punkt końcowy",
|
"SSE.Views.ChartSettings.textLastPoint": "Punkt końcowy",
|
||||||
"SSE.Views.ChartSettings.textLine": "Wiersz",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Wiersz",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Najniższy punkt",
|
"SSE.Views.ChartSettings.textLowPoint": "Najniższy punkt",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Znaczniki",
|
"SSE.Views.ChartSettings.textMarkers": "Znaczniki",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Punkt negatywny",
|
"SSE.Views.ChartSettings.textNegativePoint": "Punkt negatywny",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Nowy niestandardowy kolor",
|
"SSE.Views.ChartSettings.textNewColor": "Nowy niestandardowy kolor",
|
||||||
"SSE.Views.ChartSettings.textPie": "Kołowe",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "XY (Punktowy)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Zakres danych",
|
"SSE.Views.ChartSettings.textRanges": "Zakres danych",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Wybierz dane",
|
"SSE.Views.ChartSettings.textSelectData": "Wybierz dane",
|
||||||
"SSE.Views.ChartSettings.textShow": "Pokaż",
|
"SSE.Views.ChartSettings.textShow": "Pokaż",
|
||||||
"SSE.Views.ChartSettings.textSize": "Rozmiar",
|
"SSE.Views.ChartSettings.textSize": "Rozmiar",
|
||||||
"SSE.Views.ChartSettings.textStock": "Zbiory",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Styl",
|
"SSE.Views.ChartSettings.textStyle": "Styl",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Powierzchnia",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Typ",
|
"SSE.Views.ChartSettings.textType": "Typ",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Szerokość",
|
"SSE.Views.ChartSettings.textWidth": "Szerokość",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Wygrana/przegrana",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "BŁĄD! Maksymalna liczba serii danych na wykresie wynosi 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "BŁĄD! Maksymalna liczba serii danych na wykresie wynosi 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:<br> cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:<br> cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAlt": "Tekst alternatywny",
|
"SSE.Views.ChartSettingsDlg.textAlt": "Tekst alternatywny",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Opis",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Opis",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Alternatywna prezentacja wizualnych informacji o obiektach, które będą czytane osobom z wadami wzroku lub zmysłu poznawczego, aby lepiej zrozumieć, jakie informacje znajdują się na obrazie, kształtach, wykresie lub tabeli.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Alternatywna prezentacja wizualnych informacji o obiektach, które będą czytane osobom z wadami wzroku lub zmysłu poznawczego, aby lepiej zrozumieć, jakie informacje znajdują się na obrazie, kształtach, wykresie lub tabeli.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Tytuł",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Tytuł",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Obszar",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Automatyczny",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Automatyczny",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automatycznie dla każdego",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automatycznie dla każdego",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Krzywe osie",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Krzywe osie",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Opcje osi",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Opcje osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Pozycja osi",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Pozycja osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Ustawienia osi",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Ustawienia osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Paskowy",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Pomiędzy znakami Tick",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Pomiędzy znakami Tick",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardy",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardy",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Dół",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Dół",
|
||||||
|
@ -844,8 +843,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Środek",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Środek",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementy wykresu",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementy wykresu",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Tytuł wykresu",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Tytuł wykresu",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Kolumna",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Kolumna",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Na skrzyżowaniu",
|
"SSE.Views.ChartSettingsDlg.textCross": "Na skrzyżowaniu",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Niestandardowy",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Niestandardowy",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "w kolumnach",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "w kolumnach",
|
||||||
|
@ -886,9 +883,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Prawy",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Prawy",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Góra",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Góra",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Wykres liniowy",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Linie",
|
"SSE.Views.ChartSettingsDlg.textLines": "Linie",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Wiersz",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Zakres lokalizacji",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Zakres lokalizacji",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Niski",
|
"SSE.Views.ChartSettingsDlg.textLow": "Niski",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Główny",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Główny",
|
||||||
|
@ -909,8 +904,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Wyjście",
|
"SSE.Views.ChartSettingsDlg.textOut": "Wyjście",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Wierzchołek zewnętrzny",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Wierzchołek zewnętrzny",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Nałożenie",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Nałożenie",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Kołowe",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "XY (Punktowy)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Wartości w odwrotnej kolejności",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Wartości w odwrotnej kolejności",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Odwrotna kolejność",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Odwrotna kolejność",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Prawy",
|
"SSE.Views.ChartSettingsDlg.textRight": "Prawy",
|
||||||
|
@ -931,10 +924,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Pojedynczy Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Pojedynczy Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Gładki",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Gładki",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Zbiory",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Prosty",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Prosty",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Styl",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Styl",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Powierzchnia",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Tysiące",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Tysiące",
|
||||||
|
@ -951,7 +942,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Oś pionowa",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Oś pionowa",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Pionowe linie siatki",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Pionowe linie siatki",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Tytuł osi pionowej",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Tytuł osi pionowej",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Wygrana/przegrana",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Tytuł osi X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Tytuł osi X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Tytuł osi Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Tytuł osi Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
||||||
|
@ -1538,17 +1528,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Wyrównaj do prawej",
|
"SSE.Views.Toolbar.textAlignRight": "Wyrównaj do prawej",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Wyrównaj do góry",
|
"SSE.Views.Toolbar.textAlignTop": "Wyrównaj do góry",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Wszystkie krawędzie",
|
"SSE.Views.Toolbar.textAllBorders": "Wszystkie krawędzie",
|
||||||
"SSE.Views.Toolbar.textArea": "Obszar",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Pasek",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Pogrubienie",
|
"SSE.Views.Toolbar.textBold": "Pogrubienie",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Kolor obramowania",
|
"SSE.Views.Toolbar.textBordersColor": "Kolor obramowania",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Styl obramowania",
|
"SSE.Views.Toolbar.textBordersStyle": "Styl obramowania",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Dolne krawędzie",
|
"SSE.Views.Toolbar.textBottomBorders": "Dolne krawędzie",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Wewnątrz pionowych granic",
|
"SSE.Views.Toolbar.textCenterBorders": "Wewnątrz pionowych granic",
|
||||||
"SSE.Views.Toolbar.textCharts": "Wykresy",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Kąt w prawo",
|
"SSE.Views.Toolbar.textClockwise": "Kąt w prawo",
|
||||||
"SSE.Views.Toolbar.textColumn": "Kolumna",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Kolumna",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Kąt w lewo",
|
"SSE.Views.Toolbar.textCounterCw": "Kąt w lewo",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Przesuń komórki w lewo",
|
"SSE.Views.Toolbar.textDelLeft": "Przesuń komórki w lewo",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Przesuń komórki w górę",
|
"SSE.Views.Toolbar.textDelUp": "Przesuń komórki w górę",
|
||||||
|
@ -1562,23 +1547,16 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Przesuń komórki w prawo",
|
"SSE.Views.Toolbar.textInsRight": "Przesuń komórki w prawo",
|
||||||
"SSE.Views.Toolbar.textItalic": "Kursywa",
|
"SSE.Views.Toolbar.textItalic": "Kursywa",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Lewe krawędzie",
|
"SSE.Views.Toolbar.textLeftBorders": "Lewe krawędzie",
|
||||||
"SSE.Views.Toolbar.textLine": "Wiersz",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Wiersz",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Wewnątrz poziomych granic",
|
"SSE.Views.Toolbar.textMiddleBorders": "Wewnątrz poziomych granic",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Więcej formatów",
|
"SSE.Views.Toolbar.textMoreFormats": "Więcej formatów",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Nowy niestandardowy kolor",
|
"SSE.Views.Toolbar.textNewColor": "Nowy niestandardowy kolor",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Bez krawędzi",
|
"SSE.Views.Toolbar.textNoBorders": "Bez krawędzi",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Krawędzie zewnętrzne",
|
"SSE.Views.Toolbar.textOutBorders": "Krawędzie zewnętrzne",
|
||||||
"SSE.Views.Toolbar.textPie": "Kołowe",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (Punktowy)",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "Drukuj",
|
"SSE.Views.Toolbar.textPrint": "Drukuj",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Ustawienia drukowania",
|
"SSE.Views.Toolbar.textPrintOptions": "Ustawienia drukowania",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Prawe krawędzie",
|
"SSE.Views.Toolbar.textRightBorders": "Prawe krawędzie",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Obróć tekst w dół",
|
"SSE.Views.Toolbar.textRotateDown": "Obróć tekst w dół",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Obróć tekst w górę",
|
"SSE.Views.Toolbar.textRotateUp": "Obróć tekst w górę",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Zbiory",
|
|
||||||
"SSE.Views.Toolbar.textSurface": "Powierzchnia",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Współpraca",
|
"SSE.Views.Toolbar.textTabCollaboration": "Współpraca",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Plik",
|
"SSE.Views.Toolbar.textTabFile": "Plik",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Narzędzia główne",
|
"SSE.Views.Toolbar.textTabHome": "Narzędzia główne",
|
||||||
|
@ -1586,7 +1564,6 @@
|
||||||
"SSE.Views.Toolbar.textTabLayout": "Układ",
|
"SSE.Views.Toolbar.textTabLayout": "Układ",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Górne krawędzie",
|
"SSE.Views.Toolbar.textTopBorders": "Górne krawędzie",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Podkreśl",
|
"SSE.Views.Toolbar.textUnderline": "Podkreśl",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Wygrana/przegrana",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Powiększenie",
|
"SSE.Views.Toolbar.textZoom": "Powiększenie",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Wyrównaj do dołu",
|
"SSE.Views.Toolbar.tipAlignBottom": "Wyrównaj do dołu",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Wyrównaj do środka",
|
"SSE.Views.Toolbar.tipAlignCenter": "Wyrównaj do środka",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Cancelar",
|
"cancelButtonText": "Cancelar",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Aviso",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Inserir sua mensagem aqui",
|
"Common.Controllers.Chat.textEnterMessage": "Inserir sua mensagem aqui",
|
||||||
|
"Common.define.chartData.textArea": "Área",
|
||||||
|
"Common.define.chartData.textBar": "Barra",
|
||||||
|
"Common.define.chartData.textColumn": "Coluna",
|
||||||
|
"Common.define.chartData.textLine": "Linha",
|
||||||
|
"Common.define.chartData.textPie": "Gráfico de pizza",
|
||||||
|
"Common.define.chartData.textPoint": "Gráfico de pontos",
|
||||||
|
"Common.define.chartData.textStock": "Gráfico de ações",
|
||||||
|
"Common.define.chartData.textSurface": "Superfície",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Coluna",
|
||||||
|
"Common.define.chartData.textLineSpark": "Linha",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Ganhos/Perdas",
|
||||||
|
"Common.define.chartData.textSparks": "Minigráficos",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
|
"Common.UI.ComboDataView.emptyComboText": "Sem estilos",
|
||||||
|
@ -777,50 +789,37 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Cor",
|
"SSE.Views.ChartSettings.strSparkColor": "Cor",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Modelo",
|
"SSE.Views.ChartSettings.strTemplate": "Modelo",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas",
|
"SSE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas",
|
||||||
"SSE.Views.ChartSettings.textArea": "Gráfico de área",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Gráfico de Barras",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "O valor inserido está incorreto.<br>Insira um valor entre 0 pt e 1.584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "O valor inserido está incorreto.<br>Insira um valor entre 0 pt e 1.584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico",
|
"SSE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Gráfico de coluna",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Coluna",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Editar dados",
|
"SSE.Views.ChartSettings.textEditData": "Editar dados",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Primeiro ponto",
|
"SSE.Views.ChartSettings.textFirstPoint": "Primeiro ponto",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Altura",
|
"SSE.Views.ChartSettings.textHeight": "Altura",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Ponto alto",
|
"SSE.Views.ChartSettings.textHighPoint": "Ponto alto",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Proporções constantes",
|
"SSE.Views.ChartSettings.textKeepRatio": "Proporções constantes",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Último ponto",
|
"SSE.Views.ChartSettings.textLastPoint": "Último ponto",
|
||||||
"SSE.Views.ChartSettings.textLine": "Gráfico de linha",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Linha",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Ponto baixo",
|
"SSE.Views.ChartSettings.textLowPoint": "Ponto baixo",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Marcadores",
|
"SSE.Views.ChartSettings.textMarkers": "Marcadores",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Ponto negativo",
|
"SSE.Views.ChartSettings.textNegativePoint": "Ponto negativo",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Adicionar nova cor personalizada",
|
"SSE.Views.ChartSettings.textNewColor": "Adicionar nova cor personalizada",
|
||||||
"SSE.Views.ChartSettings.textPie": "Gráfico de pizza",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Gráfico de pontos",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Intervalo de dados",
|
"SSE.Views.ChartSettings.textRanges": "Intervalo de dados",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Selecionar dados",
|
"SSE.Views.ChartSettings.textSelectData": "Selecionar dados",
|
||||||
"SSE.Views.ChartSettings.textShow": "Exibir",
|
"SSE.Views.ChartSettings.textShow": "Exibir",
|
||||||
"SSE.Views.ChartSettings.textSize": "Tamanho",
|
"SSE.Views.ChartSettings.textSize": "Tamanho",
|
||||||
"SSE.Views.ChartSettings.textStock": "Gráfico de ações",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Estilo",
|
"SSE.Views.ChartSettings.textStyle": "Estilo",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Superfície",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Tipo",
|
"SSE.Views.ChartSettings.textType": "Tipo",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Largura",
|
"SSE.Views.ChartSettings.textWidth": "Largura",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Ganhos/Perdas",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERRO! O número máximo de séries de dado por gráfico é 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ERRO! O número máximo de séries de dado por gráfico é 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:<br>preço de abertura, preço máx., preço mín., preço de fechamento.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:<br>preço de abertura, preço máx., preço mín., preço de fechamento.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAlt": "Texto Alternativo",
|
"SSE.Views.ChartSettingsDlg.textAlt": "Texto Alternativo",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Descrição",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Descrição",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Título",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Título",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Gráfico de área",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Automático",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Automático",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Auto para cada",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Auto para cada",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Eixos cruzam",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Eixos cruzam",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Opções de eixo",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Opções de eixo",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Posição de eixos",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Posição de eixos",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Gráfico de Barras",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre marcas de escala",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre marcas de escala",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Bilhões",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Bilhões",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Inferior",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Inferior",
|
||||||
|
@ -828,8 +827,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Centro",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Centro",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementos do gráfico e<br/>Legenda do gráfico",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementos do gráfico e<br/>Legenda do gráfico",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Título do gráfico",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Título do gráfico",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Gráfico de coluna",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Coluna",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Cruz",
|
"SSE.Views.ChartSettingsDlg.textCross": "Cruz",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Personalizar",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Personalizar",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "em colunas",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "em colunas",
|
||||||
|
@ -870,9 +867,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Direita",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Direita",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Parte superior",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Parte superior",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Gráfico de linha",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Linhas",
|
"SSE.Views.ChartSettingsDlg.textLines": "Linhas",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Linha",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Intervalo de localização",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Intervalo de localização",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Baixo",
|
"SSE.Views.ChartSettingsDlg.textLow": "Baixo",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Maior",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Maior",
|
||||||
|
@ -893,8 +888,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Fora",
|
"SSE.Views.ChartSettingsDlg.textOut": "Fora",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Fora do topo",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Fora do topo",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Sobreposição",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Sobreposição",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Gráfico de pizza",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Gráfico de pontos",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Valores na ordem reversa",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Valores na ordem reversa",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Ordem reversa",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Ordem reversa",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Direita",
|
"SSE.Views.ChartSettingsDlg.textRight": "Direita",
|
||||||
|
@ -915,10 +908,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Minigráfico único",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Minigráfico único",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Suave",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Suave",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Variedade de minigráficos",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Variedade de minigráficos",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Gráfico de ações",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Reto",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Reto",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Estilo",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Estilo",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Superfície",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10.000.000 ",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10.000.000 ",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10.000 ",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10.000 ",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Milhares",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Milhares",
|
||||||
|
@ -935,7 +926,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Eixo vertical",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Eixo vertical",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Linhas de grade verticais",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Linhas de grade verticais",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Título do eixo vertical",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Título do eixo vertical",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Ganhos/Perdas",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Título do eixo X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Título do eixo X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Título do eixo Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Título do eixo Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
|
||||||
|
@ -1518,17 +1508,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Alinhar à direita",
|
"SSE.Views.Toolbar.textAlignRight": "Alinhar à direita",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Alinhar à parte superior",
|
"SSE.Views.Toolbar.textAlignTop": "Alinhar à parte superior",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Todas as bordas",
|
"SSE.Views.Toolbar.textAllBorders": "Todas as bordas",
|
||||||
"SSE.Views.Toolbar.textArea": "Área",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Barra",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Negrito",
|
"SSE.Views.Toolbar.textBold": "Negrito",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Cor da borda",
|
"SSE.Views.Toolbar.textBordersColor": "Cor da borda",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Estilo de borda",
|
"SSE.Views.Toolbar.textBordersStyle": "Estilo de borda",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Bordas inferiores",
|
"SSE.Views.Toolbar.textBottomBorders": "Bordas inferiores",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Bordas verticais interiores",
|
"SSE.Views.Toolbar.textCenterBorders": "Bordas verticais interiores",
|
||||||
"SSE.Views.Toolbar.textCharts": "Gráficos",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Ângulo no sentido horário",
|
"SSE.Views.Toolbar.textClockwise": "Ângulo no sentido horário",
|
||||||
"SSE.Views.Toolbar.textColumn": "Coluna",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Coluna",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Ângulo no sentido antihorário",
|
"SSE.Views.Toolbar.textCounterCw": "Ângulo no sentido antihorário",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Deslocar células para a esquerda",
|
"SSE.Views.Toolbar.textDelLeft": "Deslocar células para a esquerda",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Deslocar células para cima",
|
"SSE.Views.Toolbar.textDelUp": "Deslocar células para cima",
|
||||||
|
@ -1542,29 +1527,21 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Deslocar células para a direita",
|
"SSE.Views.Toolbar.textInsRight": "Deslocar células para a direita",
|
||||||
"SSE.Views.Toolbar.textItalic": "Itálico",
|
"SSE.Views.Toolbar.textItalic": "Itálico",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Bordas esquerdas",
|
"SSE.Views.Toolbar.textLeftBorders": "Bordas esquerdas",
|
||||||
"SSE.Views.Toolbar.textLine": "Linha",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Linha",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Bordas horizontais interiores",
|
"SSE.Views.Toolbar.textMiddleBorders": "Bordas horizontais interiores",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Mais formatos",
|
"SSE.Views.Toolbar.textMoreFormats": "Mais formatos",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Adicionar nova cor personalizada",
|
"SSE.Views.Toolbar.textNewColor": "Adicionar nova cor personalizada",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Sem bordas",
|
"SSE.Views.Toolbar.textNoBorders": "Sem bordas",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Bordas externas",
|
"SSE.Views.Toolbar.textOutBorders": "Bordas externas",
|
||||||
"SSE.Views.Toolbar.textPie": "Gráfico de pizza",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (Dispersão)",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "Imprimir",
|
"SSE.Views.Toolbar.textPrint": "Imprimir",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Configurações de impressão",
|
"SSE.Views.Toolbar.textPrintOptions": "Configurações de impressão",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Bordas direitas",
|
"SSE.Views.Toolbar.textRightBorders": "Bordas direitas",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Girar Texto para Baixo",
|
"SSE.Views.Toolbar.textRotateDown": "Girar Texto para Baixo",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Girar Texto para Cima",
|
"SSE.Views.Toolbar.textRotateUp": "Girar Texto para Cima",
|
||||||
"SSE.Views.Toolbar.textSparks": "Minigráficos",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Ações",
|
|
||||||
"SSE.Views.Toolbar.textSurface": "Superfície",
|
|
||||||
"SSE.Views.Toolbar.textTabFile": "Arquivo",
|
"SSE.Views.Toolbar.textTabFile": "Arquivo",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Página Inicial",
|
"SSE.Views.Toolbar.textTabHome": "Página Inicial",
|
||||||
"SSE.Views.Toolbar.textTabInsert": "Inserir",
|
"SSE.Views.Toolbar.textTabInsert": "Inserir",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Bordas superiores",
|
"SSE.Views.Toolbar.textTopBorders": "Bordas superiores",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Sublinhado",
|
"SSE.Views.Toolbar.textUnderline": "Sublinhado",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Ganhos/Perdas",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zoom",
|
"SSE.Views.Toolbar.textZoom": "Zoom",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Alinhar à parte inferior",
|
"SSE.Views.Toolbar.tipAlignBottom": "Alinhar à parte inferior",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Alinhar ao centro",
|
"SSE.Views.Toolbar.tipAlignCenter": "Alinhar ao centro",
|
||||||
|
|
|
@ -6,14 +6,14 @@
|
||||||
"Common.define.chartData.textBar": "Линейчатая",
|
"Common.define.chartData.textBar": "Линейчатая",
|
||||||
"Common.define.chartData.textCharts": "Диаграммы",
|
"Common.define.chartData.textCharts": "Диаграммы",
|
||||||
"Common.define.chartData.textColumn": "Гистограмма",
|
"Common.define.chartData.textColumn": "Гистограмма",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Гистограмма",
|
||||||
"Common.define.chartData.textLine": "График",
|
"Common.define.chartData.textLine": "График",
|
||||||
|
"Common.define.chartData.textLineSpark": "График",
|
||||||
"Common.define.chartData.textPie": "Круговая",
|
"Common.define.chartData.textPie": "Круговая",
|
||||||
"Common.define.chartData.textPoint": "Точечная",
|
"Common.define.chartData.textPoint": "Точечная",
|
||||||
|
"Common.define.chartData.textSparks": "Спарклайны",
|
||||||
"Common.define.chartData.textStock": "Биржевая",
|
"Common.define.chartData.textStock": "Биржевая",
|
||||||
"Common.define.chartData.textSurface": "Поверхность",
|
"Common.define.chartData.textSurface": "Поверхность",
|
||||||
"Common.define.chartData.textSparks": "Спарклайны",
|
|
||||||
"Common.define.chartData.textColumnSpark": "Гистограмма",
|
|
||||||
"Common.define.chartData.textLineSpark": "График",
|
|
||||||
"Common.define.chartData.textWinLossSpark": "Выигрыш/проигрыш",
|
"Common.define.chartData.textWinLossSpark": "Выигрыш/проигрыш",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Без границ",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Без границ",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без границ",
|
||||||
|
@ -159,6 +159,8 @@
|
||||||
"Common.Views.ReviewChanges.strStrictDesc": "Используйте кнопку 'Сохранить' для синхронизации изменений, вносимых вами и другими пользователями.",
|
"Common.Views.ReviewChanges.strStrictDesc": "Используйте кнопку 'Сохранить' для синхронизации изменений, вносимых вами и другими пользователями.",
|
||||||
"Common.Views.ReviewChanges.tipAcceptCurrent": "Принять текущее изменение",
|
"Common.Views.ReviewChanges.tipAcceptCurrent": "Принять текущее изменение",
|
||||||
"Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования",
|
"Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRem": "Удалить комментарии",
|
||||||
|
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Удалить текущие комментарии",
|
||||||
"Common.Views.ReviewChanges.tipHistory": "Показать историю версий",
|
"Common.Views.ReviewChanges.tipHistory": "Показать историю версий",
|
||||||
"Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение",
|
"Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение",
|
||||||
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
|
"Common.Views.ReviewChanges.tipReview": "Отслеживать изменения",
|
||||||
|
@ -173,6 +175,11 @@
|
||||||
"Common.Views.ReviewChanges.txtChat": "Чат",
|
"Common.Views.ReviewChanges.txtChat": "Чат",
|
||||||
"Common.Views.ReviewChanges.txtClose": "Закрыть",
|
"Common.Views.ReviewChanges.txtClose": "Закрыть",
|
||||||
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим совместного редактирования",
|
"Common.Views.ReviewChanges.txtCoAuthMode": "Режим совместного редактирования",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemAll": "Удалить все комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Удалить текущие комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMy": "Удалить мои комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Удалить мои текущие комментарии",
|
||||||
|
"Common.Views.ReviewChanges.txtCommentRemove": "Удалить",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Язык",
|
"Common.Views.ReviewChanges.txtDocLang": "Язык",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)",
|
"Common.Views.ReviewChanges.txtFinal": "Все изменения приняты (просмотр)",
|
||||||
"Common.Views.ReviewChanges.txtFinalCap": "Измененный документ",
|
"Common.Views.ReviewChanges.txtFinalCap": "Измененный документ",
|
||||||
|
@ -227,6 +234,11 @@
|
||||||
"Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи",
|
"Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи",
|
||||||
"Common.Views.SignSettingsDialog.textTitle": "Настройка подписи",
|
"Common.Views.SignSettingsDialog.textTitle": "Настройка подписи",
|
||||||
"Common.Views.SignSettingsDialog.txtEmpty": "Это поле необходимо заполнить",
|
"Common.Views.SignSettingsDialog.txtEmpty": "Это поле необходимо заполнить",
|
||||||
|
"Common.Views.SymbolTableDialog.textCode": "Код знака из Юникод (шестн.)",
|
||||||
|
"Common.Views.SymbolTableDialog.textFont": "Шрифт",
|
||||||
|
"Common.Views.SymbolTableDialog.textRange": "Набор",
|
||||||
|
"Common.Views.SymbolTableDialog.textRecent": "Ранее использовавшиеся символы",
|
||||||
|
"Common.Views.SymbolTableDialog.textTitle": "Символ",
|
||||||
"SSE.Controllers.DataTab.textWizard": "Текст по столбцам",
|
"SSE.Controllers.DataTab.textWizard": "Текст по столбцам",
|
||||||
"SSE.Controllers.DocumentHolder.alignmentText": "Выравнивание",
|
"SSE.Controllers.DocumentHolder.alignmentText": "Выравнивание",
|
||||||
"SSE.Controllers.DocumentHolder.centerText": "По центру",
|
"SSE.Controllers.DocumentHolder.centerText": "По центру",
|
||||||
|
@ -470,6 +482,7 @@
|
||||||
"SSE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"SSE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"SSE.Controllers.Main.errorUnexpectedGuid": "Внешняя ошибка.<br>Непредвиденный идентификатор GUID. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
|
"SSE.Controllers.Main.errorUnexpectedGuid": "Внешняя ошибка.<br>Непредвиденный идентификатор GUID. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
|
||||||
"SSE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
"SSE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
||||||
|
"SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.<br>Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.",
|
||||||
"SSE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
"SSE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"SSE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
|
"SSE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
|
||||||
"SSE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.",
|
"SSE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.",
|
||||||
|
@ -773,6 +786,7 @@
|
||||||
"SSE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.<br>Введите числовое значение от 1 до 409",
|
"SSE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.<br>Введите числовое значение от 1 до 409",
|
||||||
"SSE.Controllers.Toolbar.textFraction": "Дроби",
|
"SSE.Controllers.Toolbar.textFraction": "Дроби",
|
||||||
"SSE.Controllers.Toolbar.textFunction": "Функции",
|
"SSE.Controllers.Toolbar.textFunction": "Функции",
|
||||||
|
"SSE.Controllers.Toolbar.textInsert": "Вставить",
|
||||||
"SSE.Controllers.Toolbar.textIntegral": "Интегралы",
|
"SSE.Controllers.Toolbar.textIntegral": "Интегралы",
|
||||||
"SSE.Controllers.Toolbar.textLargeOperator": "Крупные операторы",
|
"SSE.Controllers.Toolbar.textLargeOperator": "Крупные операторы",
|
||||||
"SSE.Controllers.Toolbar.textLimitAndLog": "Пределы и логарифмы",
|
"SSE.Controllers.Toolbar.textLimitAndLog": "Пределы и логарифмы",
|
||||||
|
@ -1191,36 +1205,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Цвет",
|
"SSE.Views.ChartSettings.strSparkColor": "Цвет",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Шаблон",
|
"SSE.Views.ChartSettings.strTemplate": "Шаблон",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
"SSE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
||||||
"SSE.Views.ChartSettings.textArea": "С областями",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Линейчатая",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Введено некорректное значение.<br>Пожалуйста, введите значение от 0 до 1584 пунктов.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Введено некорректное значение.<br>Пожалуйста, введите значение от 0 до 1584 пунктов.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Изменить тип диаграммы",
|
"SSE.Views.ChartSettings.textChartType": "Изменить тип диаграммы",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Гистограмма",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Гистограмма",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Изменить данные и место",
|
"SSE.Views.ChartSettings.textEditData": "Изменить данные и место",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Первая точка",
|
"SSE.Views.ChartSettings.textFirstPoint": "Первая точка",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Высота",
|
"SSE.Views.ChartSettings.textHeight": "Высота",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Максимальная точка",
|
"SSE.Views.ChartSettings.textHighPoint": "Максимальная точка",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Сохранять пропорции",
|
"SSE.Views.ChartSettings.textKeepRatio": "Сохранять пропорции",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Последняя точка",
|
"SSE.Views.ChartSettings.textLastPoint": "Последняя точка",
|
||||||
"SSE.Views.ChartSettings.textLine": "График",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "График",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Минимальная точка",
|
"SSE.Views.ChartSettings.textLowPoint": "Минимальная точка",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Маркеры",
|
"SSE.Views.ChartSettings.textMarkers": "Маркеры",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Отрицательная точка",
|
"SSE.Views.ChartSettings.textNegativePoint": "Отрицательная точка",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Пользовательский цвет",
|
"SSE.Views.ChartSettings.textNewColor": "Пользовательский цвет",
|
||||||
"SSE.Views.ChartSettings.textPie": "Круговая",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Точечная",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Диапазон данных",
|
"SSE.Views.ChartSettings.textRanges": "Диапазон данных",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Выбор данных",
|
"SSE.Views.ChartSettings.textSelectData": "Выбор данных",
|
||||||
"SSE.Views.ChartSettings.textShow": "Показать",
|
"SSE.Views.ChartSettings.textShow": "Показать",
|
||||||
"SSE.Views.ChartSettings.textSize": "Размер",
|
"SSE.Views.ChartSettings.textSize": "Размер",
|
||||||
"SSE.Views.ChartSettings.textStock": "Биржевая",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Стиль",
|
"SSE.Views.ChartSettings.textStyle": "Стиль",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Поверхность",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Тип",
|
"SSE.Views.ChartSettings.textType": "Тип",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Ширина",
|
"SSE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Выигрыш/проигрыш",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ОШИБКА! Максимальное число точек в серии для диаграммы составляет 4096.",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "ОШИБКА! Максимальное число точек в серии для диаграммы составляет 4096.",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ОШИБКА! Максимальное число рядов данных для одной диаграммы - 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ОШИБКА! Максимальное число рядов данных для одной диаграммы - 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:<br> цена открытия, максимальная цена, минимальная цена, цена закрытия.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:<br> цена открытия, максимальная цена, минимальная цена, цена закрытия.",
|
||||||
|
@ -1229,14 +1232,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Описание",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Описание",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Заголовок",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Заголовок",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "С областями",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Авто",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Авто",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Автоматическое для каждого",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Автоматическое для каждого",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Пересечение с осью",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Пересечение с осью",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Параметры оси",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Параметры оси",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Положение оси",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Положение оси",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Параметры оси",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Параметры оси",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Линейчатая",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Между делениями",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Между делениями",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Миллиарды",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Миллиарды",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Снизу",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Снизу",
|
||||||
|
@ -1244,8 +1245,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "По центру",
|
"SSE.Views.ChartSettingsDlg.textCenter": "По центру",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Элементы диаграммы и<br/>легенда диаграммы",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Элементы диаграммы и<br/>легенда диаграммы",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Заголовок диаграммы",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Заголовок диаграммы",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Гистограмма",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Гистограмма",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "На пересечении",
|
"SSE.Views.ChartSettingsDlg.textCross": "На пересечении",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Пользовательский",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Пользовательский",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "в столбцах",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "в столбцах",
|
||||||
|
@ -1286,9 +1285,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Условные обозначения",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Условные обозначения",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Справа",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Справа",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Сверху",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Сверху",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "График",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Линии",
|
"SSE.Views.ChartSettingsDlg.textLines": "Линии",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "График",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Диапазон расположения:",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Диапазон расположения:",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Ниже",
|
"SSE.Views.ChartSettingsDlg.textLow": "Ниже",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Основные",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Основные",
|
||||||
|
@ -1310,8 +1307,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Снаружи",
|
"SSE.Views.ChartSettingsDlg.textOut": "Снаружи",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Снаружи сверху",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Снаружи сверху",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Наложение",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Наложение",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Круговая",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Точечная",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Значения в обратном порядке",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Значения в обратном порядке",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "В обратном порядке",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "В обратном порядке",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Справа",
|
"SSE.Views.ChartSettingsDlg.textRight": "Справа",
|
||||||
|
@ -1333,10 +1328,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Сглаженные",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Сглаженные",
|
||||||
"SSE.Views.ChartSettingsDlg.textSnap": "Привязка ячейки",
|
"SSE.Views.ChartSettingsDlg.textSnap": "Привязка ячейки",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Диапазоны спарклайнов",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Диапазоны спарклайнов",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Биржевая",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Прямые",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Прямые",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Стиль",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Стиль",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Поверхность",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Тысячи",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Тысячи",
|
||||||
|
@ -1354,7 +1347,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Вертикальная ось",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Вертикальная ось",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Вертикальные линии",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Вертикальные линии",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Название вертикальной оси",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Название вертикальной оси",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Выигрыш/проигрыш",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Название оси X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Название оси X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Название оси Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Название оси Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Нулевые значения",
|
"SSE.Views.ChartSettingsDlg.textZero": "Нулевые значения",
|
||||||
|
@ -2212,8 +2204,10 @@
|
||||||
"SSE.Views.TextArtSettings.txtNoBorders": "Без обводки",
|
"SSE.Views.TextArtSettings.txtNoBorders": "Без обводки",
|
||||||
"SSE.Views.TextArtSettings.txtPapyrus": "Папирус",
|
"SSE.Views.TextArtSettings.txtPapyrus": "Папирус",
|
||||||
"SSE.Views.TextArtSettings.txtWood": "Дерево",
|
"SSE.Views.TextArtSettings.txtWood": "Дерево",
|
||||||
|
"SSE.Views.Toolbar.capBtnAddComment": "Добавить комментарий",
|
||||||
"SSE.Views.Toolbar.capBtnComment": "Комментарий",
|
"SSE.Views.Toolbar.capBtnComment": "Комментарий",
|
||||||
"SSE.Views.Toolbar.capBtnInsHeader": "Колонтитулы",
|
"SSE.Views.Toolbar.capBtnInsHeader": "Колонтитулы",
|
||||||
|
"SSE.Views.Toolbar.capBtnInsSymbol": "Символ",
|
||||||
"SSE.Views.Toolbar.capBtnMargins": "Поля",
|
"SSE.Views.Toolbar.capBtnMargins": "Поля",
|
||||||
"SSE.Views.Toolbar.capBtnPageOrient": "Ориентация",
|
"SSE.Views.Toolbar.capBtnPageOrient": "Ориентация",
|
||||||
"SSE.Views.Toolbar.capBtnPageSize": "Размер",
|
"SSE.Views.Toolbar.capBtnPageSize": "Размер",
|
||||||
|
@ -2242,20 +2236,15 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "По правому краю",
|
"SSE.Views.Toolbar.textAlignRight": "По правому краю",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "По верхнему краю",
|
"SSE.Views.Toolbar.textAlignTop": "По верхнему краю",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Все границы",
|
"SSE.Views.Toolbar.textAllBorders": "Все границы",
|
||||||
"SSE.Views.Toolbar.textArea": "С областями",
|
|
||||||
"SSE.Views.Toolbar.textAuto": "Авто",
|
"SSE.Views.Toolbar.textAuto": "Авто",
|
||||||
"SSE.Views.Toolbar.textBar": "Линейчатая",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Полужирный",
|
"SSE.Views.Toolbar.textBold": "Полужирный",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Цвет границ",
|
"SSE.Views.Toolbar.textBordersColor": "Цвет границ",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Стиль границ",
|
"SSE.Views.Toolbar.textBordersStyle": "Стиль границ",
|
||||||
"SSE.Views.Toolbar.textBottom": "Нижнее: ",
|
"SSE.Views.Toolbar.textBottom": "Нижнее: ",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Нижние границы",
|
"SSE.Views.Toolbar.textBottomBorders": "Нижние границы",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Внутренние вертикальные границы",
|
"SSE.Views.Toolbar.textCenterBorders": "Внутренние вертикальные границы",
|
||||||
"SSE.Views.Toolbar.textCharts": "Диаграммы",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "Очистить область печати",
|
"SSE.Views.Toolbar.textClearPrintArea": "Очистить область печати",
|
||||||
"SSE.Views.Toolbar.textClockwise": "Текст по часовой стрелке",
|
"SSE.Views.Toolbar.textClockwise": "Текст по часовой стрелке",
|
||||||
"SSE.Views.Toolbar.textColumn": "Гистограмма",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Гистограмма",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Текст против часовой стрелки",
|
"SSE.Views.Toolbar.textCounterCw": "Текст против часовой стрелки",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Ячейки со сдвигом влево",
|
"SSE.Views.Toolbar.textDelLeft": "Ячейки со сдвигом влево",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Ячейки со сдвигом вверх",
|
"SSE.Views.Toolbar.textDelUp": "Ячейки со сдвигом вверх",
|
||||||
|
@ -2273,8 +2262,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "Альбомная",
|
"SSE.Views.Toolbar.textLandscape": "Альбомная",
|
||||||
"SSE.Views.Toolbar.textLeft": "Левое: ",
|
"SSE.Views.Toolbar.textLeft": "Левое: ",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Левые границы",
|
"SSE.Views.Toolbar.textLeftBorders": "Левые границы",
|
||||||
"SSE.Views.Toolbar.textLine": "График",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "График",
|
|
||||||
"SSE.Views.Toolbar.textManyPages": "страниц",
|
"SSE.Views.Toolbar.textManyPages": "страниц",
|
||||||
"SSE.Views.Toolbar.textMarginsLast": "Последние настраиваемые",
|
"SSE.Views.Toolbar.textMarginsLast": "Последние настраиваемые",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "Узкие",
|
"SSE.Views.Toolbar.textMarginsNarrow": "Узкие",
|
||||||
|
@ -2288,8 +2275,6 @@
|
||||||
"SSE.Views.Toolbar.textOnePage": "страница",
|
"SSE.Views.Toolbar.textOnePage": "страница",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Внешние границы",
|
"SSE.Views.Toolbar.textOutBorders": "Внешние границы",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Настраиваемые поля",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Настраиваемые поля",
|
||||||
"SSE.Views.Toolbar.textPie": "Круговая",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "Точечная",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "Книжная",
|
"SSE.Views.Toolbar.textPortrait": "Книжная",
|
||||||
"SSE.Views.Toolbar.textPrint": "Печать",
|
"SSE.Views.Toolbar.textPrint": "Печать",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Параметры печати",
|
"SSE.Views.Toolbar.textPrintOptions": "Параметры печати",
|
||||||
|
@ -2298,13 +2283,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Повернуть текст вниз",
|
"SSE.Views.Toolbar.textRotateDown": "Повернуть текст вниз",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Повернуть текст вверх",
|
"SSE.Views.Toolbar.textRotateUp": "Повернуть текст вверх",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "Задать область печати",
|
"SSE.Views.Toolbar.textSetPrintArea": "Задать область печати",
|
||||||
"SSE.Views.Toolbar.textSparks": "Спарклайны",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Биржевая",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "Зачеркнутый",
|
"SSE.Views.Toolbar.textStrikeout": "Зачеркнутый",
|
||||||
"SSE.Views.Toolbar.textSubscript": "Подстрочные знаки",
|
"SSE.Views.Toolbar.textSubscript": "Подстрочные знаки",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "Подстрочные/надстрочные знаки",
|
"SSE.Views.Toolbar.textSubSuperscript": "Подстрочные/надстрочные знаки",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
|
"SSE.Views.Toolbar.textSuperscript": "Надстрочные знаки",
|
||||||
"SSE.Views.Toolbar.textSurface": "Поверхность",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Совместная работа",
|
"SSE.Views.Toolbar.textTabCollaboration": "Совместная работа",
|
||||||
"SSE.Views.Toolbar.textTabData": "Данные",
|
"SSE.Views.Toolbar.textTabData": "Данные",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Файл",
|
"SSE.Views.Toolbar.textTabFile": "Файл",
|
||||||
|
@ -2317,7 +2299,6 @@
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Верхние границы",
|
"SSE.Views.Toolbar.textTopBorders": "Верхние границы",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Подчеркнутый",
|
"SSE.Views.Toolbar.textUnderline": "Подчеркнутый",
|
||||||
"SSE.Views.Toolbar.textWidth": "Ширина",
|
"SSE.Views.Toolbar.textWidth": "Ширина",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Выигрыш/проигрыш",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Масштаб",
|
"SSE.Views.Toolbar.textZoom": "Масштаб",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Выровнять по нижнему краю",
|
"SSE.Views.Toolbar.tipAlignBottom": "Выровнять по нижнему краю",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Выровнять по центру",
|
"SSE.Views.Toolbar.tipAlignCenter": "Выровнять по центру",
|
||||||
|
@ -2358,6 +2339,7 @@
|
||||||
"SSE.Views.Toolbar.tipInsertImage": "Вставить изображение",
|
"SSE.Views.Toolbar.tipInsertImage": "Вставить изображение",
|
||||||
"SSE.Views.Toolbar.tipInsertOpt": "Вставить ячейки",
|
"SSE.Views.Toolbar.tipInsertOpt": "Вставить ячейки",
|
||||||
"SSE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
|
"SSE.Views.Toolbar.tipInsertShape": "Вставить автофигуру",
|
||||||
|
"SSE.Views.Toolbar.tipInsertSymbol": "Вставить символ",
|
||||||
"SSE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
|
"SSE.Views.Toolbar.tipInsertTable": "Вставить таблицу",
|
||||||
"SSE.Views.Toolbar.tipInsertText": "Вставить надпись",
|
"SSE.Views.Toolbar.tipInsertText": "Вставить надпись",
|
||||||
"SSE.Views.Toolbar.tipInsertTextart": "Вставить объект Text Art",
|
"SSE.Views.Toolbar.tipInsertTextart": "Вставить объект Text Art",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Zrušiť",
|
"cancelButtonText": "Zrušiť",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu",
|
"Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu",
|
||||||
|
"Common.define.chartData.textArea": "Plošný graf",
|
||||||
|
"Common.define.chartData.textBar": "Pruhový graf",
|
||||||
|
"Common.define.chartData.textColumn": "Stĺpec",
|
||||||
|
"Common.define.chartData.textLine": "Čiara/líniový graf",
|
||||||
|
"Common.define.chartData.textPie": "Koláčový graf",
|
||||||
|
"Common.define.chartData.textPoint": "Bodový graf",
|
||||||
|
"Common.define.chartData.textStock": "Akcie/burzový graf",
|
||||||
|
"Common.define.chartData.textSurface": "Povrch",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Stĺpec",
|
||||||
|
"Common.define.chartData.textLineSpark": "Čiara",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Zisk/strata",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
|
"Common.UI.ComboDataView.emptyComboText": "Žiadne štýly",
|
||||||
|
@ -797,50 +809,37 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Farba",
|
"SSE.Views.ChartSettings.strSparkColor": "Farba",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Šablóna",
|
"SSE.Views.ChartSettings.strTemplate": "Šablóna",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
|
"SSE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia",
|
||||||
"SSE.Views.ChartSettings.textArea": "Plošný graf",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Pruhový graf",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Zmeniť typ grafu",
|
"SSE.Views.ChartSettings.textChartType": "Zmeniť typ grafu",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Stĺpec",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Stĺpec",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Upraviť údaje a umiestnenie",
|
"SSE.Views.ChartSettings.textEditData": "Upraviť údaje a umiestnenie",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Prvý bod",
|
"SSE.Views.ChartSettings.textFirstPoint": "Prvý bod",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Výška",
|
"SSE.Views.ChartSettings.textHeight": "Výška",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Vysoký bod",
|
"SSE.Views.ChartSettings.textHighPoint": "Vysoký bod",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Konštantné rozmery",
|
"SSE.Views.ChartSettings.textKeepRatio": "Konštantné rozmery",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Posledný bod",
|
"SSE.Views.ChartSettings.textLastPoint": "Posledný bod",
|
||||||
"SSE.Views.ChartSettings.textLine": "Čiara",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Čiara",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Nízky bod",
|
"SSE.Views.ChartSettings.textLowPoint": "Nízky bod",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Značky",
|
"SSE.Views.ChartSettings.textMarkers": "Značky",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Záporný bod",
|
"SSE.Views.ChartSettings.textNegativePoint": "Záporný bod",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Pridať novú vlastnú farbu",
|
"SSE.Views.ChartSettings.textNewColor": "Pridať novú vlastnú farbu",
|
||||||
"SSE.Views.ChartSettings.textPie": "Koláčový graf",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Bodový graf",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Rozsah údajov",
|
"SSE.Views.ChartSettings.textRanges": "Rozsah údajov",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Vybrať údaje",
|
"SSE.Views.ChartSettings.textSelectData": "Vybrať údaje",
|
||||||
"SSE.Views.ChartSettings.textShow": "Zobraziť",
|
"SSE.Views.ChartSettings.textShow": "Zobraziť",
|
||||||
"SSE.Views.ChartSettings.textSize": "Veľkosť",
|
"SSE.Views.ChartSettings.textSize": "Veľkosť",
|
||||||
"SSE.Views.ChartSettings.textStock": "Akcie/burzový graf",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Štýl",
|
"SSE.Views.ChartSettings.textStyle": "Štýl",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Povrch",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Typ",
|
"SSE.Views.ChartSettings.textType": "Typ",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Šírka",
|
"SSE.Views.ChartSettings.textWidth": "Šírka",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Zisk/strata",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> začiatočná cena, max cena, min cena, konečná cena.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:<br> začiatočná cena, max cena, min cena, konečná cena.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAlt": "Alternatívny text",
|
"SSE.Views.ChartSettingsDlg.textAlt": "Alternatívny text",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Popis",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Popis",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Názov",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Názov",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Plošný graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Automaticky",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Automaticky",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automaticky pre každé",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Automaticky pre každé",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Kríženie os",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Kríženie os",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti osi",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Umiestnenie osi",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Umiestnenie osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Nastavenia osi",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Nastavenia osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Vodorovná čiarka",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Medzi značkami rozsahu",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Medzi značkami rozsahu",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardy",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Miliardy",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Dole",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Dole",
|
||||||
|
@ -848,8 +847,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Stred",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Stred",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementy grafu &<br/>Legenda grafu",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementy grafu &<br/>Legenda grafu",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Názov grafu",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Názov grafu",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Stĺpec",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Stĺpec",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Pretínať",
|
"SSE.Views.ChartSettingsDlg.textCross": "Pretínať",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Vlastný",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Vlastný",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "V stĺpcoch",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "V stĺpcoch",
|
||||||
|
@ -890,9 +887,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Vpravo",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Vpravo",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Hore",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Hore",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Čiarový graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Čiary",
|
"SSE.Views.ChartSettingsDlg.textLines": "Čiary",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Čiara",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Rozsah umiestnenia",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Rozsah umiestnenia",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Nízko",
|
"SSE.Views.ChartSettingsDlg.textLow": "Nízko",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Hlavný",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Hlavný",
|
||||||
|
@ -913,8 +908,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Von",
|
"SSE.Views.ChartSettingsDlg.textOut": "Von",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Mimo hore",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Mimo hore",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Prekrytie",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Prekrytie",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Koláčový graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Bodový graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Hodnoty v opačnom poradí",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Hodnoty v opačnom poradí",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Obrátené poradie",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Obrátené poradie",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Vpravo",
|
"SSE.Views.ChartSettingsDlg.textRight": "Vpravo",
|
||||||
|
@ -935,10 +928,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Jednoduchý Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Jednoduchý Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Plynulý",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Plynulý",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline - Rozsahy",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline - Rozsahy",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Akcie/burzový graf",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Priamy/rovný",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Priamy/rovný",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Štýl",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Štýl",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Povrch",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Tisíce",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Tisíce",
|
||||||
|
@ -955,7 +946,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertikálna os",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertikálna os",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Vertikálne mriežky",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Vertikálne mriežky",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Názov vertikálnej osi",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Názov vertikálnej osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Zisk/strata",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Názov osi X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Názov osi X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Názov osi Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Názov osi Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Nula",
|
"SSE.Views.ChartSettingsDlg.textZero": "Nula",
|
||||||
|
@ -1548,17 +1538,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Zarovnať doprava",
|
"SSE.Views.Toolbar.textAlignRight": "Zarovnať doprava",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Zarovnať nahor",
|
"SSE.Views.Toolbar.textAlignTop": "Zarovnať nahor",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Všetky orámovania",
|
"SSE.Views.Toolbar.textAllBorders": "Všetky orámovania",
|
||||||
"SSE.Views.Toolbar.textArea": "Plošný graf",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Pruhový graf",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Tučné",
|
"SSE.Views.Toolbar.textBold": "Tučné",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Farba orámovania",
|
"SSE.Views.Toolbar.textBordersColor": "Farba orámovania",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Štýl orámovania",
|
"SSE.Views.Toolbar.textBordersStyle": "Štýl orámovania",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Spodné orámovanie",
|
"SSE.Views.Toolbar.textBottomBorders": "Spodné orámovanie",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Vnútorné vertikálne orámovanie",
|
"SSE.Views.Toolbar.textCenterBorders": "Vnútorné vertikálne orámovanie",
|
||||||
"SSE.Views.Toolbar.textCharts": "Grafy",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Otočiť v smere hodinových ručičiek",
|
"SSE.Views.Toolbar.textClockwise": "Otočiť v smere hodinových ručičiek",
|
||||||
"SSE.Views.Toolbar.textColumn": "Stĺpec",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Stĺpec",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Otočiť proti smeru hodinových ručičiek",
|
"SSE.Views.Toolbar.textCounterCw": "Otočiť proti smeru hodinových ručičiek",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Posunúť bunky vľavo",
|
"SSE.Views.Toolbar.textDelLeft": "Posunúť bunky vľavo",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Posunúť bunky hore",
|
"SSE.Views.Toolbar.textDelUp": "Posunúť bunky hore",
|
||||||
|
@ -1572,31 +1557,23 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Posunúť bunky vpravo",
|
"SSE.Views.Toolbar.textInsRight": "Posunúť bunky vpravo",
|
||||||
"SSE.Views.Toolbar.textItalic": "Kurzíva",
|
"SSE.Views.Toolbar.textItalic": "Kurzíva",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Orámovanie vľavo",
|
"SSE.Views.Toolbar.textLeftBorders": "Orámovanie vľavo",
|
||||||
"SSE.Views.Toolbar.textLine": "Čiara",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Čiara",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Vnútorné horizontálne orámovanie",
|
"SSE.Views.Toolbar.textMiddleBorders": "Vnútorné horizontálne orámovanie",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Ďalšie formáty",
|
"SSE.Views.Toolbar.textMoreFormats": "Ďalšie formáty",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu",
|
"SSE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Bez orámovania",
|
"SSE.Views.Toolbar.textNoBorders": "Bez orámovania",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Vonkajšie orámovanie",
|
"SSE.Views.Toolbar.textOutBorders": "Vonkajšie orámovanie",
|
||||||
"SSE.Views.Toolbar.textPie": "Koláčový graf",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "Bodový graf",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "Tlačiť",
|
"SSE.Views.Toolbar.textPrint": "Tlačiť",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Nastavenia tlače",
|
"SSE.Views.Toolbar.textPrintOptions": "Nastavenia tlače",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Orámovanie vpravo",
|
"SSE.Views.Toolbar.textRightBorders": "Orámovanie vpravo",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Otočiť text nadol",
|
"SSE.Views.Toolbar.textRotateDown": "Otočiť text nadol",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Otočiť text nahor",
|
"SSE.Views.Toolbar.textRotateUp": "Otočiť text nahor",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Akcie/burzový graf",
|
|
||||||
"SSE.Views.Toolbar.textSubscript": "Dolný index",
|
"SSE.Views.Toolbar.textSubscript": "Dolný index",
|
||||||
"SSE.Views.Toolbar.textSurface": "Povrch",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Spolupráca",
|
"SSE.Views.Toolbar.textTabCollaboration": "Spolupráca",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Súbor",
|
"SSE.Views.Toolbar.textTabFile": "Súbor",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Hlavná stránka",
|
"SSE.Views.Toolbar.textTabHome": "Hlavná stránka",
|
||||||
"SSE.Views.Toolbar.textTabInsert": "Vložiť",
|
"SSE.Views.Toolbar.textTabInsert": "Vložiť",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Horné orámovanie",
|
"SSE.Views.Toolbar.textTopBorders": "Horné orámovanie",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Podčiarknuť",
|
"SSE.Views.Toolbar.textUnderline": "Podčiarknuť",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Zisk/strata",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Priblíženie",
|
"SSE.Views.Toolbar.textZoom": "Priblíženie",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Zarovnať dole",
|
"SSE.Views.Toolbar.tipAlignBottom": "Zarovnať dole",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Centrovať",
|
"SSE.Views.Toolbar.tipAlignCenter": "Centrovať",
|
||||||
|
|
|
@ -2,6 +2,13 @@
|
||||||
"cancelButtonText": "Prekliči",
|
"cancelButtonText": "Prekliči",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Opozorilo",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Opozorilo",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Svoje sporočilo vnesite tu",
|
"Common.Controllers.Chat.textEnterMessage": "Svoje sporočilo vnesite tu",
|
||||||
|
"Common.define.chartData.textArea": "Ploščinski grafikon",
|
||||||
|
"Common.define.chartData.textBar": "Stolpični grafikon",
|
||||||
|
"Common.define.chartData.textColumn": "Stolpični grafikon",
|
||||||
|
"Common.define.chartData.textLine": "Vrstični grafikon",
|
||||||
|
"Common.define.chartData.textPie": "Tortni grafikon",
|
||||||
|
"Common.define.chartData.textPoint": "Točkovni grafikon",
|
||||||
|
"Common.define.chartData.textStock": "Založni grafikon",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Ni mej",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Ni mej",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
|
"Common.UI.ComboDataView.emptyComboText": "Ni slogov",
|
||||||
|
@ -227,36 +234,26 @@
|
||||||
"SSE.Views.CellRangeDialog.txtInvalidRange": "NAPAKA! Neveljaven razpon celic",
|
"SSE.Views.CellRangeDialog.txtInvalidRange": "NAPAKA! Neveljaven razpon celic",
|
||||||
"SSE.Views.CellRangeDialog.txtTitle": "Izberi območje podatkov",
|
"SSE.Views.CellRangeDialog.txtTitle": "Izberi območje podatkov",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Prikaži napredne nastavitve",
|
"SSE.Views.ChartSettings.textAdvanced": "Prikaži napredne nastavitve",
|
||||||
"SSE.Views.ChartSettings.textArea": "Ploščinski grafikon",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Stolpični grafikon",
|
|
||||||
"SSE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice",
|
"SSE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Stolpični grafikon",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Uredi podatke",
|
"SSE.Views.ChartSettings.textEditData": "Uredi podatke",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Višina",
|
"SSE.Views.ChartSettings.textHeight": "Višina",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Nenehna razmerja",
|
"SSE.Views.ChartSettings.textKeepRatio": "Nenehna razmerja",
|
||||||
"SSE.Views.ChartSettings.textLine": "Vrstični grafikon",
|
|
||||||
"SSE.Views.ChartSettings.textPie": "Tortni grafikon",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Točkovni grafikon",
|
|
||||||
"SSE.Views.ChartSettings.textSize": "Velikost",
|
"SSE.Views.ChartSettings.textSize": "Velikost",
|
||||||
"SSE.Views.ChartSettings.textStock": "Založni grafikon",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Slog",
|
"SSE.Views.ChartSettings.textStyle": "Slog",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Širina",
|
"SSE.Views.ChartSettings.textWidth": "Širina",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "NAPAKA! Maksimalno število podatkovnih serij na grafikon je 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "NAPAKA! Maksimalno število podatkovnih serij na grafikon je 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:<br>otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:<br>otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Ploščinski grafikon",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Samodejno",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Samodejno",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Križi osi",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Križi osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti osi",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Položaj osi",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Položaj osi",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Stolpični grafikon",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Med obkljukanimi oznakami",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Med obkljukanimi oznakami",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Milijarde",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Milijarde",
|
||||||
"SSE.Views.ChartSettingsDlg.textCategoryName": "Ime kategorije",
|
"SSE.Views.ChartSettingsDlg.textCategoryName": "Ime kategorije",
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Središče",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Središče",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementi grafa &<br/>Legenda grafa",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementi grafa &<br/>Legenda grafa",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Naslov grafa",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Naslov grafa",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Stolpični grafikon",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Križ",
|
"SSE.Views.ChartSettingsDlg.textCross": "Križ",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Po meri",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Po meri",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "v stolpcih",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "v stolpcih",
|
||||||
|
@ -291,7 +288,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Desno",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Desno",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Vrh",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Vrh",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Vrstični grafikon",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Vrste",
|
"SSE.Views.ChartSettingsDlg.textLines": "Vrste",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Nizko",
|
"SSE.Views.ChartSettingsDlg.textLow": "Nizko",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Velik",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Velik",
|
||||||
|
@ -312,8 +308,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Ven",
|
"SSE.Views.ChartSettingsDlg.textOut": "Ven",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Zunanji vrh",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Zunanji vrh",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Prekrij",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Prekrij",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Tortni grafikon",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Točkovni grafikon",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Vrednosti v obratnem vrstnem redu",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Vrednosti v obratnem vrstnem redu",
|
||||||
"SSE.Views.ChartSettingsDlg.textRightOverlay": "Desno prekrivanje",
|
"SSE.Views.ChartSettingsDlg.textRightOverlay": "Desno prekrivanje",
|
||||||
"SSE.Views.ChartSettingsDlg.textRotated": "Zavrteno",
|
"SSE.Views.ChartSettingsDlg.textRotated": "Zavrteno",
|
||||||
|
@ -326,7 +320,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textShowGrid": "Mrežne črte",
|
"SSE.Views.ChartSettingsDlg.textShowGrid": "Mrežne črte",
|
||||||
"SSE.Views.ChartSettingsDlg.textShowValues": "Prikaži vrednosti grafikona",
|
"SSE.Views.ChartSettingsDlg.textShowValues": "Prikaži vrednosti grafikona",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Gladek",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Gladek",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Založni grafikon",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Raven",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Raven",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Slog",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Slog",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
|
|
|
@ -2,6 +2,14 @@
|
||||||
"cancelButtonText": "İptal Et",
|
"cancelButtonText": "İptal Et",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Dikkat",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Dikkat",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Mesajınızı buraya giriniz",
|
"Common.Controllers.Chat.textEnterMessage": "Mesajınızı buraya giriniz",
|
||||||
|
"Common.define.chartData.textArea": "Bölge Grafiği",
|
||||||
|
"Common.define.chartData.textBar": "Çubuk grafik",
|
||||||
|
"Common.define.chartData.textColumn": "Sütun grafik",
|
||||||
|
"Common.define.chartData.textLine": "Çizgi grafiği",
|
||||||
|
"Common.define.chartData.textPie": "Dilim grafik",
|
||||||
|
"Common.define.chartData.textPoint": "Nokta grafiği",
|
||||||
|
"Common.define.chartData.textStock": "Stok Grafiği",
|
||||||
|
"Common.define.chartData.textSurface": "Yüzey",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Sınır yok",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Sınır yok",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sınır yok",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
|
"Common.UI.ComboDataView.emptyComboText": "Stil yok",
|
||||||
|
@ -777,50 +785,37 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Renk",
|
"SSE.Views.ChartSettings.strSparkColor": "Renk",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Şablon",
|
"SSE.Views.ChartSettings.strTemplate": "Şablon",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Gelişmiş ayarları göster",
|
"SSE.Views.ChartSettings.textAdvanced": "Gelişmiş ayarları göster",
|
||||||
"SSE.Views.ChartSettings.textArea": "Bölge Grafiği",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Çubuk grafik",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Girilen değer yanlış.<br>Lütfen 0 ile 1584 pt arasında değer giriniz.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Girilen değer yanlış.<br>Lütfen 0 ile 1584 pt arasında değer giriniz.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir",
|
"SSE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Sütun grafik",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Sütun",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Veri düzenle",
|
"SSE.Views.ChartSettings.textEditData": "Veri düzenle",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "İlk Nokta",
|
"SSE.Views.ChartSettings.textFirstPoint": "İlk Nokta",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Yükseklik",
|
"SSE.Views.ChartSettings.textHeight": "Yükseklik",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Yüksek Nokta",
|
"SSE.Views.ChartSettings.textHighPoint": "Yüksek Nokta",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Sabit Orantılar",
|
"SSE.Views.ChartSettings.textKeepRatio": "Sabit Orantılar",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Son Nokta",
|
"SSE.Views.ChartSettings.textLastPoint": "Son Nokta",
|
||||||
"SSE.Views.ChartSettings.textLine": "Çizgi grafiği",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Çizgi Grafiği",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Düşük Nokta",
|
"SSE.Views.ChartSettings.textLowPoint": "Düşük Nokta",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "İşaretler",
|
"SSE.Views.ChartSettings.textMarkers": "İşaretler",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Negatif Nokta",
|
"SSE.Views.ChartSettings.textNegativePoint": "Negatif Nokta",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Yeni Özel Renk Ekle",
|
"SSE.Views.ChartSettings.textNewColor": "Yeni Özel Renk Ekle",
|
||||||
"SSE.Views.ChartSettings.textPie": "Dilim grafik",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "Nokta grafiği",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Veri Aralığı",
|
"SSE.Views.ChartSettings.textRanges": "Veri Aralığı",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Veriyi Seç",
|
"SSE.Views.ChartSettings.textSelectData": "Veriyi Seç",
|
||||||
"SSE.Views.ChartSettings.textShow": "Göster",
|
"SSE.Views.ChartSettings.textShow": "Göster",
|
||||||
"SSE.Views.ChartSettings.textSize": "Boyut",
|
"SSE.Views.ChartSettings.textSize": "Boyut",
|
||||||
"SSE.Views.ChartSettings.textStock": "Stok Grafiği",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Stil",
|
"SSE.Views.ChartSettings.textStyle": "Stil",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Yüzey",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Tip",
|
"SSE.Views.ChartSettings.textType": "Tip",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Genişlik",
|
"SSE.Views.ChartSettings.textWidth": "Genişlik",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Kazanç/Kayıp",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "HATA! Her grafik için maksimum veri serileri sayısı 255'tir",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "HATA! Her grafik için maksimum veri serileri sayısı 255'tir",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:<br> açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:<br> açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ",
|
||||||
"SSE.Views.ChartSettingsDlg.textAlt": "Alternatif Metin",
|
"SSE.Views.ChartSettingsDlg.textAlt": "Alternatif Metin",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Açıklama",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Açıklama",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Başlık",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Başlık",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Bölge Grafiği",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Otomatik",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Otomatik",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Her Biri için Otomatik",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Her Biri için Otomatik",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Eksen kesişmeleri",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Eksen kesişmeleri",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Eksen Seçenekleri",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Eksen Seçenekleri",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Eksen Pozisyonu",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Eksen Pozisyonu",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Çubuk grafik",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tik İşaretleri Arasında",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tik İşaretleri Arasında",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Milyar",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Milyar",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Alt",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Alt",
|
||||||
|
@ -828,8 +823,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Orta",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Orta",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Grafik Elementleri &<br/>Grafik Göstergesi",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Grafik Elementleri &<br/>Grafik Göstergesi",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Grafik başlığı",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Grafik başlığı",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Sütun grafik",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Sütun",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Kesişme",
|
"SSE.Views.ChartSettingsDlg.textCross": "Kesişme",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Özel",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Özel",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "sütunlarda",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "sütunlarda",
|
||||||
|
@ -870,9 +863,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Gösterge",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Gösterge",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Sağ",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Sağ",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Üst",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Üst",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Çizgi grafiği",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Satırlar",
|
"SSE.Views.ChartSettingsDlg.textLines": "Satırlar",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Çizgi Grafiği",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Konum Aralığı",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Konum Aralığı",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Düşük",
|
"SSE.Views.ChartSettingsDlg.textLow": "Düşük",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Majör",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Majör",
|
||||||
|
@ -893,8 +884,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Dışarı",
|
"SSE.Views.ChartSettingsDlg.textOut": "Dışarı",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Dış Üst",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Dış Üst",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Bindirme",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Bindirme",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Dilim grafik",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "Nokta grafiği",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Ters sıralanmış değerler",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Ters sıralanmış değerler",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Sırayı tersine çevir",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Sırayı tersine çevir",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Sağ",
|
"SSE.Views.ChartSettingsDlg.textRight": "Sağ",
|
||||||
|
@ -915,10 +904,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Tek Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Tek Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Düz",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Düz",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Aralıkları",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Aralıkları",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Stok Grafiği",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Düz",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Düz",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Stil",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Stil",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Yüzey",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Binlerce",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Binlerce",
|
||||||
|
@ -935,7 +922,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Dikey Eksen",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Dikey Eksen",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Dikey Çizgi Kılavuzları",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Dikey Çizgi Kılavuzları",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Dikey Eksen Başlığı",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Dikey Eksen Başlığı",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Kazanç/Kayıp",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Eksen Başlığı",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Eksen Başlığı",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y eksen başlığı",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y eksen başlığı",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Sıfır",
|
"SSE.Views.ChartSettingsDlg.textZero": "Sıfır",
|
||||||
|
@ -1518,17 +1504,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Sağa Hizala",
|
"SSE.Views.Toolbar.textAlignRight": "Sağa Hizala",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Üste Hizala",
|
"SSE.Views.Toolbar.textAlignTop": "Üste Hizala",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Tüm Sınırlar",
|
"SSE.Views.Toolbar.textAllBorders": "Tüm Sınırlar",
|
||||||
"SSE.Views.Toolbar.textArea": "Bölge Grafiği",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Çubuk grafik",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Kalın",
|
"SSE.Views.Toolbar.textBold": "Kalın",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Sınır Rengi",
|
"SSE.Views.Toolbar.textBordersColor": "Sınır Rengi",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Sınır Stili",
|
"SSE.Views.Toolbar.textBordersStyle": "Sınır Stili",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Alt Sınırlar",
|
"SSE.Views.Toolbar.textBottomBorders": "Alt Sınırlar",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Dikey İç Sınırlar",
|
"SSE.Views.Toolbar.textCenterBorders": "Dikey İç Sınırlar",
|
||||||
"SSE.Views.Toolbar.textCharts": "Grafikler",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Saat yönünde açı",
|
"SSE.Views.Toolbar.textClockwise": "Saat yönünde açı",
|
||||||
"SSE.Views.Toolbar.textColumn": "Sütun",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Sütun",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Saat yönü tersi açı",
|
"SSE.Views.Toolbar.textCounterCw": "Saat yönü tersi açı",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Hücreleri sola kaydır",
|
"SSE.Views.Toolbar.textDelLeft": "Hücreleri sola kaydır",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Hücreleri yukarı kaydır",
|
"SSE.Views.Toolbar.textDelUp": "Hücreleri yukarı kaydır",
|
||||||
|
@ -1542,29 +1523,21 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Hücreleri sağa kaydır",
|
"SSE.Views.Toolbar.textInsRight": "Hücreleri sağa kaydır",
|
||||||
"SSE.Views.Toolbar.textItalic": "İtalik",
|
"SSE.Views.Toolbar.textItalic": "İtalik",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Sol Sınırlar",
|
"SSE.Views.Toolbar.textLeftBorders": "Sol Sınırlar",
|
||||||
"SSE.Views.Toolbar.textLine": "Çizgi Grafiği",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Çizgi Grafiği",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Yatay İç Sınırlar",
|
"SSE.Views.Toolbar.textMiddleBorders": "Yatay İç Sınırlar",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Daha fazla format",
|
"SSE.Views.Toolbar.textMoreFormats": "Daha fazla format",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Yeni Özel Renk Ekle",
|
"SSE.Views.Toolbar.textNewColor": "Yeni Özel Renk Ekle",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Sınır yok",
|
"SSE.Views.Toolbar.textNoBorders": "Sınır yok",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Dış Sınırlar",
|
"SSE.Views.Toolbar.textOutBorders": "Dış Sınırlar",
|
||||||
"SSE.Views.Toolbar.textPie": "Dilim",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (Noktalı)",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "Yazdır",
|
"SSE.Views.Toolbar.textPrint": "Yazdır",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Yazdırma Ayarları",
|
"SSE.Views.Toolbar.textPrintOptions": "Yazdırma Ayarları",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Sağ Sınırlar",
|
"SSE.Views.Toolbar.textRightBorders": "Sağ Sınırlar",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Metini Aşağı Döndür",
|
"SSE.Views.Toolbar.textRotateDown": "Metini Aşağı Döndür",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Metini Yukarı Döndür",
|
"SSE.Views.Toolbar.textRotateUp": "Metini Yukarı Döndür",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklinelar",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Stok Grafiği",
|
|
||||||
"SSE.Views.Toolbar.textSurface": "Yüzey",
|
|
||||||
"SSE.Views.Toolbar.textTabFile": "Dosya",
|
"SSE.Views.Toolbar.textTabFile": "Dosya",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Ana Sayfa",
|
"SSE.Views.Toolbar.textTabHome": "Ana Sayfa",
|
||||||
"SSE.Views.Toolbar.textTabInsert": "Ekle",
|
"SSE.Views.Toolbar.textTabInsert": "Ekle",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Üst Sınırlar",
|
"SSE.Views.Toolbar.textTopBorders": "Üst Sınırlar",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Altı çizili",
|
"SSE.Views.Toolbar.textUnderline": "Altı çizili",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Kazanç/Kayıp",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Zum",
|
"SSE.Views.Toolbar.textZoom": "Zum",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Alta Hizala",
|
"SSE.Views.Toolbar.tipAlignBottom": "Alta Hizala",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Ortaya Hizala",
|
"SSE.Views.Toolbar.tipAlignCenter": "Ortaya Hizala",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Скасувати",
|
"cancelButtonText": "Скасувати",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Застереження",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Застереження",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут",
|
"Common.Controllers.Chat.textEnterMessage": "ВВедіть своє повідомлення тут",
|
||||||
|
"Common.define.chartData.textArea": "Площа",
|
||||||
|
"Common.define.chartData.textBar": "Вставити",
|
||||||
|
"Common.define.chartData.textColumn": "Колона",
|
||||||
|
"Common.define.chartData.textLine": "Лінія",
|
||||||
|
"Common.define.chartData.textPie": "Пиріг",
|
||||||
|
"Common.define.chartData.textPoint": "XY (розсіювання)",
|
||||||
|
"Common.define.chartData.textStock": "Запас",
|
||||||
|
"Common.define.chartData.textSurface": "Поверхня",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Колона",
|
||||||
|
"Common.define.chartData.textLineSpark": "Лінія",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Win / Loss",
|
||||||
|
"Common.define.chartData.textSparks": "Міні-діграми",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
|
"Common.UI.ComboDataView.emptyComboText": "Немає стилів",
|
||||||
|
@ -782,50 +794,37 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Колір",
|
"SSE.Views.ChartSettings.strSparkColor": "Колір",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Шаблон",
|
"SSE.Views.ChartSettings.strTemplate": "Шаблон",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування",
|
"SSE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування",
|
||||||
"SSE.Views.ChartSettings.textArea": "Площа",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Вставити",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Введене значення невірно. <br> Будь ласка, введіть значення від 0 pt до 1584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Введене значення невірно. <br> Будь ласка, введіть значення від 0 pt до 1584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Змінити тип діаграми",
|
"SSE.Views.ChartSettings.textChartType": "Змінити тип діаграми",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Колона",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Колона",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Редагувати дату і місцезнаходження",
|
"SSE.Views.ChartSettings.textEditData": "Редагувати дату і місцезнаходження",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Перша точка",
|
"SSE.Views.ChartSettings.textFirstPoint": "Перша точка",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Висота",
|
"SSE.Views.ChartSettings.textHeight": "Висота",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Висока точка",
|
"SSE.Views.ChartSettings.textHighPoint": "Висока точка",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Сталі пропорції",
|
"SSE.Views.ChartSettings.textKeepRatio": "Сталі пропорції",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "останній пункт",
|
"SSE.Views.ChartSettings.textLastPoint": "останній пункт",
|
||||||
"SSE.Views.ChartSettings.textLine": "Лінія",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Лінія",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Низька точка",
|
"SSE.Views.ChartSettings.textLowPoint": "Низька точка",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Маркери",
|
"SSE.Views.ChartSettings.textMarkers": "Маркери",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Негативний момент",
|
"SSE.Views.ChartSettings.textNegativePoint": "Негативний момент",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Додати новий спеціальний колір",
|
"SSE.Views.ChartSettings.textNewColor": "Додати новий спеціальний колір",
|
||||||
"SSE.Views.ChartSettings.textPie": "Пиріг",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "XY (розсіювання)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Діапазон даних",
|
"SSE.Views.ChartSettings.textRanges": "Діапазон даних",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Вибрати дату",
|
"SSE.Views.ChartSettings.textSelectData": "Вибрати дату",
|
||||||
"SSE.Views.ChartSettings.textShow": "Відобразити",
|
"SSE.Views.ChartSettings.textShow": "Відобразити",
|
||||||
"SSE.Views.ChartSettings.textSize": "Розмір",
|
"SSE.Views.ChartSettings.textSize": "Розмір",
|
||||||
"SSE.Views.ChartSettings.textStock": "Запас",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Стиль",
|
"SSE.Views.ChartSettings.textStyle": "Стиль",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Поверхня",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Тип",
|
"SSE.Views.ChartSettings.textType": "Тип",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Ширина",
|
"SSE.Views.ChartSettings.textWidth": "Ширина",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Win / Loss",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ПОМИЛКА! Максимальна кількість даних на кожну діаграму становить 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "ПОМИЛКА! Максимальна кількість даних на кожну діаграму становить 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAlt": "Альтернативний текст",
|
"SSE.Views.ChartSettingsDlg.textAlt": "Альтернативний текст",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Опис угоди",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Опис угоди",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Назва",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Назва",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Площа",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Авто",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Авто",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Авто для кожного",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Авто для кожного",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Осі Хрести",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Осі Хрести",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Параметри осей",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Параметри осей",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Позиція осі",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Позиція осі",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Налаштування осі",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Налаштування осі",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Риска",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Між відмітками",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Між відмітками",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Мільярди",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Мільярди",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Внизу",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Внизу",
|
||||||
|
@ -833,8 +832,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Центр",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Центр",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Графічні елементи та <br/> Графічна легенда",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Графічні елементи та <br/> Графічна легенда",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Назва діграми",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Назва діграми",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Колона",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Колона",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Перетинати",
|
"SSE.Views.ChartSettingsDlg.textCross": "Перетинати",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Користувальницький",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Користувальницький",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "в колонках",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "в колонках",
|
||||||
|
@ -875,9 +872,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Підпис",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Підпис",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Право",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Право",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Верх",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Верх",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Лінійна діаграма",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Рядки",
|
"SSE.Views.ChartSettingsDlg.textLines": "Рядки",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Лінія",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Діапазон місць",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Діапазон місць",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Низький",
|
"SSE.Views.ChartSettingsDlg.textLow": "Низький",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Мажор",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Мажор",
|
||||||
|
@ -898,8 +893,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "з",
|
"SSE.Views.ChartSettingsDlg.textOut": "з",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Зовнішній зверху",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Зовнішній зверху",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Накладання",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Накладання",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Пиріг",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "XY (розсіювання)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Значення у зворотному порядку",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Значення у зворотному порядку",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Зворотний порядок",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Зворотний порядок",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Право",
|
"SSE.Views.ChartSettingsDlg.textRight": "Право",
|
||||||
|
@ -920,10 +913,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Єдина міні-діаграма",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Єдина міні-діаграма",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Гладкий",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Гладкий",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Діапазони міні-діаграм",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Діапазони міні-діаграм",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Запас",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Строгий",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Строгий",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Стиль",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Стиль",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Поверхня",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Тисячі",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Тисячі",
|
||||||
|
@ -940,7 +931,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Вертикальні вісі",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Вертикальні вісі",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Вертикальні сітки",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Вертикальні сітки",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Назва вертикальної вісі",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Назва вертикальної вісі",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Win / Loss",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Назва осі X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Назва осі X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Назва осі Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Назва осі Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "Нуль",
|
"SSE.Views.ChartSettingsDlg.textZero": "Нуль",
|
||||||
|
@ -1535,17 +1525,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Вирівняти справа",
|
"SSE.Views.Toolbar.textAlignRight": "Вирівняти справа",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Вирівняти догори",
|
"SSE.Views.Toolbar.textAlignTop": "Вирівняти догори",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Всі кордони",
|
"SSE.Views.Toolbar.textAllBorders": "Всі кордони",
|
||||||
"SSE.Views.Toolbar.textArea": "Площа",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Риска",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Жирний",
|
"SSE.Views.Toolbar.textBold": "Жирний",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Колір кордону",
|
"SSE.Views.Toolbar.textBordersColor": "Колір кордону",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Стиль межі",
|
"SSE.Views.Toolbar.textBordersStyle": "Стиль межі",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Нижні межі",
|
"SSE.Views.Toolbar.textBottomBorders": "Нижні межі",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Всередині вертикальних кордонів",
|
"SSE.Views.Toolbar.textCenterBorders": "Всередині вертикальних кордонів",
|
||||||
"SSE.Views.Toolbar.textCharts": "Діаграми",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Кут за годинниковою стрілкою",
|
"SSE.Views.Toolbar.textClockwise": "Кут за годинниковою стрілкою",
|
||||||
"SSE.Views.Toolbar.textColumn": "Колона",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Колона",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Кут за годинниковою стрілкою",
|
"SSE.Views.Toolbar.textCounterCw": "Кут за годинниковою стрілкою",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Перемістити клітини вліво",
|
"SSE.Views.Toolbar.textDelLeft": "Перемістити клітини вліво",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Перемістити клітини вгору",
|
"SSE.Views.Toolbar.textDelUp": "Перемістити клітини вгору",
|
||||||
|
@ -1559,24 +1544,17 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Перемістити клітини вправо",
|
"SSE.Views.Toolbar.textInsRight": "Перемістити клітини вправо",
|
||||||
"SSE.Views.Toolbar.textItalic": "Курсив",
|
"SSE.Views.Toolbar.textItalic": "Курсив",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Ліві кордони",
|
"SSE.Views.Toolbar.textLeftBorders": "Ліві кордони",
|
||||||
"SSE.Views.Toolbar.textLine": "Лінія",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Лінія",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Внутрішні горизонтальні межі",
|
"SSE.Views.Toolbar.textMiddleBorders": "Внутрішні горизонтальні межі",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Більше форматів",
|
"SSE.Views.Toolbar.textMoreFormats": "Більше форматів",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Додати новий спеціальний колір",
|
"SSE.Views.Toolbar.textNewColor": "Додати новий спеціальний колір",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Немає кордонів",
|
"SSE.Views.Toolbar.textNoBorders": "Немає кордонів",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "За межами кордонів",
|
"SSE.Views.Toolbar.textOutBorders": "За межами кордонів",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "Користувацькі поля",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "Користувацькі поля",
|
||||||
"SSE.Views.Toolbar.textPie": "Пиріг",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (розсіювання)",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "Роздрукувати",
|
"SSE.Views.Toolbar.textPrint": "Роздрукувати",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Налаштування друку",
|
"SSE.Views.Toolbar.textPrintOptions": "Налаштування друку",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Праві кордони",
|
"SSE.Views.Toolbar.textRightBorders": "Праві кордони",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Повернути текст вниз",
|
"SSE.Views.Toolbar.textRotateDown": "Повернути текст вниз",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Повернути текст вгору",
|
"SSE.Views.Toolbar.textRotateUp": "Повернути текст вгору",
|
||||||
"SSE.Views.Toolbar.textSparks": "Міні-діграми",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Запас",
|
|
||||||
"SSE.Views.Toolbar.textSurface": "Поверхня",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "Співпраця",
|
"SSE.Views.Toolbar.textTabCollaboration": "Співпраця",
|
||||||
"SSE.Views.Toolbar.textTabData": "Дані",
|
"SSE.Views.Toolbar.textTabData": "Дані",
|
||||||
"SSE.Views.Toolbar.textTabFile": "Файл",
|
"SSE.Views.Toolbar.textTabFile": "Файл",
|
||||||
|
@ -1586,7 +1564,6 @@
|
||||||
"SSE.Views.Toolbar.textTabLayout": "Розмітка",
|
"SSE.Views.Toolbar.textTabLayout": "Розмітка",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Межі угорі",
|
"SSE.Views.Toolbar.textTopBorders": "Межі угорі",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Підкреслений",
|
"SSE.Views.Toolbar.textUnderline": "Підкреслений",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Win / Loss",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Збільшити",
|
"SSE.Views.Toolbar.textZoom": "Збільшити",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Вирівняти знизу",
|
"SSE.Views.Toolbar.tipAlignBottom": "Вирівняти знизу",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Вирівняти центр",
|
"SSE.Views.Toolbar.tipAlignCenter": "Вирівняти центр",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "Hủy",
|
"cancelButtonText": "Hủy",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "Cảnh báo",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "Cảnh báo",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "Nhập tin nhắn của bạn ở đây",
|
"Common.Controllers.Chat.textEnterMessage": "Nhập tin nhắn của bạn ở đây",
|
||||||
|
"Common.define.chartData.textArea": "Vùng",
|
||||||
|
"Common.define.chartData.textBar": "Gạch",
|
||||||
|
"Common.define.chartData.textColumn": "Cột",
|
||||||
|
"Common.define.chartData.textLine": "Đường kẻ",
|
||||||
|
"Common.define.chartData.textPie": "Hình bánh",
|
||||||
|
"Common.define.chartData.textPoint": "XY (Phân tán)",
|
||||||
|
"Common.define.chartData.textStock": "Cổ phiếu",
|
||||||
|
"Common.define.chartData.textSurface": "Bề mặt",
|
||||||
|
"Common.define.chartData.textColumnSpark": "Cột",
|
||||||
|
"Common.define.chartData.textLineSpark": "Đường kẻ",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "Win/Loss",
|
||||||
|
"Common.define.chartData.textSparks": "Sparklines",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "Không viền",
|
"Common.UI.ComboBorderSize.txtNoBorders": "Không viền",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
|
"Common.UI.ComboDataView.emptyComboText": "Không có kiểu",
|
||||||
|
@ -776,50 +788,37 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "Màu sắc",
|
"SSE.Views.ChartSettings.strSparkColor": "Màu sắc",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "Template",
|
"SSE.Views.ChartSettings.strTemplate": "Template",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "Hiển thị Cài đặt Nâng cao",
|
"SSE.Views.ChartSettings.textAdvanced": "Hiển thị Cài đặt Nâng cao",
|
||||||
"SSE.Views.ChartSettings.textArea": "Vùng",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "Cột",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "Giá trị đã nhập không chính xác.<br>Nhập một giá trị từ thuộc từ 0 pt đến 1584 pt.",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "Giá trị đã nhập không chính xác.<br>Nhập một giá trị từ thuộc từ 0 pt đến 1584 pt.",
|
||||||
"SSE.Views.ChartSettings.textChartType": "Thay đổi Loại biểu đồ",
|
"SSE.Views.ChartSettings.textChartType": "Thay đổi Loại biểu đồ",
|
||||||
"SSE.Views.ChartSettings.textColumn": "Cột",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "Cột",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "Chỉnh sửa Dữ liệu và Vị trí",
|
"SSE.Views.ChartSettings.textEditData": "Chỉnh sửa Dữ liệu và Vị trí",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "Điểm đầu tiên",
|
"SSE.Views.ChartSettings.textFirstPoint": "Điểm đầu tiên",
|
||||||
"SSE.Views.ChartSettings.textHeight": "Chiều cao",
|
"SSE.Views.ChartSettings.textHeight": "Chiều cao",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "Điểm cao",
|
"SSE.Views.ChartSettings.textHighPoint": "Điểm cao",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "Tỷ lệ không đổi",
|
"SSE.Views.ChartSettings.textKeepRatio": "Tỷ lệ không đổi",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "Điểm cuối",
|
"SSE.Views.ChartSettings.textLastPoint": "Điểm cuối",
|
||||||
"SSE.Views.ChartSettings.textLine": "Đường kẻ",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "Đường kẻ",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "Điểm thấp",
|
"SSE.Views.ChartSettings.textLowPoint": "Điểm thấp",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "Đánh dấu",
|
"SSE.Views.ChartSettings.textMarkers": "Đánh dấu",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "Điểm âm",
|
"SSE.Views.ChartSettings.textNegativePoint": "Điểm âm",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "Thêm màu tùy chỉnh mới",
|
"SSE.Views.ChartSettings.textNewColor": "Thêm màu tùy chỉnh mới",
|
||||||
"SSE.Views.ChartSettings.textPie": "Hình bánh",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "XY (Phân tán)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "Phạm vi dữ liệu",
|
"SSE.Views.ChartSettings.textRanges": "Phạm vi dữ liệu",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "Chọn dữ liệu",
|
"SSE.Views.ChartSettings.textSelectData": "Chọn dữ liệu",
|
||||||
"SSE.Views.ChartSettings.textShow": "Hiển thị",
|
"SSE.Views.ChartSettings.textShow": "Hiển thị",
|
||||||
"SSE.Views.ChartSettings.textSize": "Kích thước",
|
"SSE.Views.ChartSettings.textSize": "Kích thước",
|
||||||
"SSE.Views.ChartSettings.textStock": "Cổ phiếu",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "Kiểu",
|
"SSE.Views.ChartSettings.textStyle": "Kiểu",
|
||||||
"SSE.Views.ChartSettings.textSurface": "Bề mặt",
|
|
||||||
"SSE.Views.ChartSettings.textType": "Loại",
|
"SSE.Views.ChartSettings.textType": "Loại",
|
||||||
"SSE.Views.ChartSettings.textWidth": "Chiều rộng",
|
"SSE.Views.ChartSettings.textWidth": "Chiều rộng",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "Win/Loss",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "LỖI! Số chuỗi dữ liệu tối đa cho mỗi biểu đồ là 255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "LỖI! Số chuỗi dữ liệu tối đa cho mỗi biểu đồ là 255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "Thứ tự hàng không chính xác. Để xây dựng một biểu đồ chứng khoán đặt dữ liệu trên giấy theo thứ tự sau:<br>giá mở phiên, giá cao nhất, giá thấp nhất, giá đóng phiên.",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "Thứ tự hàng không chính xác. Để xây dựng một biểu đồ chứng khoán đặt dữ liệu trên giấy theo thứ tự sau:<br>giá mở phiên, giá cao nhất, giá thấp nhất, giá đóng phiên.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAlt": "Văn bản thay thế",
|
"SSE.Views.ChartSettingsDlg.textAlt": "Văn bản thay thế",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "Mô tả",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "Mô tả",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "Miêu tả thay thế dưới dạng văn bản thông tin đối tượng trực quan, sẽ được đọc cho những người bị suy giảm thị lực hoặc nhận thức để giúp họ hiểu rõ hơn về những thông tin có trong hình ảnh, autoshape, biểu đồ hoặc bảng.",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "Miêu tả thay thế dưới dạng văn bản thông tin đối tượng trực quan, sẽ được đọc cho những người bị suy giảm thị lực hoặc nhận thức để giúp họ hiểu rõ hơn về những thông tin có trong hình ảnh, autoshape, biểu đồ hoặc bảng.",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "Tiêu đề",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "Tiêu đề",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "Vùng",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "Tự động",
|
"SSE.Views.ChartSettingsDlg.textAuto": "Tự động",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "Tự động cho từng",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "Tự động cho từng",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Trục giao nhau",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Trục giao nhau",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Tùy chọn trục",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Tùy chọn trục",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "Vị trí trục",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "Vị trí trục",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Thiết lập trục",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Thiết lập trục",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "Cột",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Giữa các dấu kiểm",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Giữa các dấu kiểm",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "Hàng tỷ",
|
"SSE.Views.ChartSettingsDlg.textBillions": "Hàng tỷ",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "Dưới cùng",
|
"SSE.Views.ChartSettingsDlg.textBottom": "Dưới cùng",
|
||||||
|
@ -827,8 +826,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "Trung tâm",
|
"SSE.Views.ChartSettingsDlg.textCenter": "Trung tâm",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chi tiết Biểu đồ &<br/>Chú thích",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chi tiết Biểu đồ &<br/>Chú thích",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "Tiêu đề biểu đồ",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "Tiêu đề biểu đồ",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "Cột",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "Cột",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "Chéo",
|
"SSE.Views.ChartSettingsDlg.textCross": "Chéo",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "Tuỳ chỉnh",
|
"SSE.Views.ChartSettingsDlg.textCustom": "Tuỳ chỉnh",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "trong cột",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "trong cột",
|
||||||
|
@ -869,9 +866,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "Chú thích",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "Chú thích",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "Bên phải",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "Bên phải",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "Trên cùng",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "Trên cùng",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "Biểu đồ đường kẻ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "Đường kẻ",
|
"SSE.Views.ChartSettingsDlg.textLines": "Đường kẻ",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "Đường kẻ",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "Phạm vi địa điểm",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "Phạm vi địa điểm",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "Thấp",
|
"SSE.Views.ChartSettingsDlg.textLow": "Thấp",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "Chính",
|
"SSE.Views.ChartSettingsDlg.textMajor": "Chính",
|
||||||
|
@ -892,8 +887,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "Ngoài",
|
"SSE.Views.ChartSettingsDlg.textOut": "Ngoài",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "Trên cùng bên ngoài",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "Trên cùng bên ngoài",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "Xếp chồng",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "Xếp chồng",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "Hình bánh",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "XY (Phân tán)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "Giá trị theo thứ tự ngược",
|
"SSE.Views.ChartSettingsDlg.textReverse": "Giá trị theo thứ tự ngược",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Trật tự đảo ngược",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Trật tự đảo ngược",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "Bên phải",
|
"SSE.Views.ChartSettingsDlg.textRight": "Bên phải",
|
||||||
|
@ -914,10 +907,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "Sparkline đơn",
|
"SSE.Views.ChartSettingsDlg.textSingle": "Sparkline đơn",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "Trơn",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "Trơn",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Phạm vi Sparkline",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Phạm vi Sparkline",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "Cổ phiếu",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "Thẳng",
|
"SSE.Views.ChartSettingsDlg.textStraight": "Thẳng",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "Kiểu",
|
"SSE.Views.ChartSettingsDlg.textStyle": "Kiểu",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "Bề mặt",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "Hàng nghìn",
|
"SSE.Views.ChartSettingsDlg.textThousands": "Hàng nghìn",
|
||||||
|
@ -934,7 +925,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "Trục đứng",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "Trục đứng",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "Đường lưới dọc",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "Đường lưới dọc",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "Tiêu đề trục đứng",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "Tiêu đề trục đứng",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "Win/Loss",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Tiêu đề Trục X",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "Tiêu đề Trục X",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Tiêu đề Trục Y",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Tiêu đề Trục Y",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "0",
|
"SSE.Views.ChartSettingsDlg.textZero": "0",
|
||||||
|
@ -1516,17 +1506,12 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "Căn phải",
|
"SSE.Views.Toolbar.textAlignRight": "Căn phải",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "Căn trên cùng",
|
"SSE.Views.Toolbar.textAlignTop": "Căn trên cùng",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "Tất cả viền",
|
"SSE.Views.Toolbar.textAllBorders": "Tất cả viền",
|
||||||
"SSE.Views.Toolbar.textArea": "Vùng",
|
|
||||||
"SSE.Views.Toolbar.textBar": "Cột",
|
|
||||||
"SSE.Views.Toolbar.textBold": "Đậm",
|
"SSE.Views.Toolbar.textBold": "Đậm",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "Màu đường viền",
|
"SSE.Views.Toolbar.textBordersColor": "Màu đường viền",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "Kiểu đường viền",
|
"SSE.Views.Toolbar.textBordersStyle": "Kiểu đường viền",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "Đường viền dưới cùng",
|
"SSE.Views.Toolbar.textBottomBorders": "Đường viền dưới cùng",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "Đường viền dọc bên trong",
|
"SSE.Views.Toolbar.textCenterBorders": "Đường viền dọc bên trong",
|
||||||
"SSE.Views.Toolbar.textCharts": "Biểu đồ",
|
|
||||||
"SSE.Views.Toolbar.textClockwise": "Góc theo chiều kim đồng hồ",
|
"SSE.Views.Toolbar.textClockwise": "Góc theo chiều kim đồng hồ",
|
||||||
"SSE.Views.Toolbar.textColumn": "Cột",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "Cột",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "Góc ngược chiều kim đồng hồ",
|
"SSE.Views.Toolbar.textCounterCw": "Góc ngược chiều kim đồng hồ",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "Chuyển ô sang trái",
|
"SSE.Views.Toolbar.textDelLeft": "Chuyển ô sang trái",
|
||||||
"SSE.Views.Toolbar.textDelUp": "Chuyển ô lên trên",
|
"SSE.Views.Toolbar.textDelUp": "Chuyển ô lên trên",
|
||||||
|
@ -1540,29 +1525,21 @@
|
||||||
"SSE.Views.Toolbar.textInsRight": "Chuyển ô sang phải",
|
"SSE.Views.Toolbar.textInsRight": "Chuyển ô sang phải",
|
||||||
"SSE.Views.Toolbar.textItalic": "Nghiêng",
|
"SSE.Views.Toolbar.textItalic": "Nghiêng",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "Đường viền bên trái",
|
"SSE.Views.Toolbar.textLeftBorders": "Đường viền bên trái",
|
||||||
"SSE.Views.Toolbar.textLine": "Đường kẻ",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "Đường kẻ",
|
|
||||||
"SSE.Views.Toolbar.textMiddleBorders": "Đường viền ngang bên trong",
|
"SSE.Views.Toolbar.textMiddleBorders": "Đường viền ngang bên trong",
|
||||||
"SSE.Views.Toolbar.textMoreFormats": "Thêm định dạng",
|
"SSE.Views.Toolbar.textMoreFormats": "Thêm định dạng",
|
||||||
"SSE.Views.Toolbar.textNewColor": "Thêm màu tùy chỉnh mới",
|
"SSE.Views.Toolbar.textNewColor": "Thêm màu tùy chỉnh mới",
|
||||||
"SSE.Views.Toolbar.textNoBorders": "Không viền",
|
"SSE.Views.Toolbar.textNoBorders": "Không viền",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "Đường viền ngoài",
|
"SSE.Views.Toolbar.textOutBorders": "Đường viền ngoài",
|
||||||
"SSE.Views.Toolbar.textPie": "Hình bánh",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY (Phân tán)",
|
|
||||||
"SSE.Views.Toolbar.textPrint": "In",
|
"SSE.Views.Toolbar.textPrint": "In",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "Cài đặt In",
|
"SSE.Views.Toolbar.textPrintOptions": "Cài đặt In",
|
||||||
"SSE.Views.Toolbar.textRightBorders": "Đường viền phải",
|
"SSE.Views.Toolbar.textRightBorders": "Đường viền phải",
|
||||||
"SSE.Views.Toolbar.textRotateDown": "Xoay văn bản xuống",
|
"SSE.Views.Toolbar.textRotateDown": "Xoay văn bản xuống",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "Xoay văn bản lên",
|
"SSE.Views.Toolbar.textRotateUp": "Xoay văn bản lên",
|
||||||
"SSE.Views.Toolbar.textSparks": "Sparklines",
|
|
||||||
"SSE.Views.Toolbar.textStock": "Cổ phiếu",
|
|
||||||
"SSE.Views.Toolbar.textSurface": "Bề mặt",
|
|
||||||
"SSE.Views.Toolbar.textTabFile": "File",
|
"SSE.Views.Toolbar.textTabFile": "File",
|
||||||
"SSE.Views.Toolbar.textTabHome": "Trang chủ",
|
"SSE.Views.Toolbar.textTabHome": "Trang chủ",
|
||||||
"SSE.Views.Toolbar.textTabInsert": "Chèn",
|
"SSE.Views.Toolbar.textTabInsert": "Chèn",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "Đường viền trên cùng",
|
"SSE.Views.Toolbar.textTopBorders": "Đường viền trên cùng",
|
||||||
"SSE.Views.Toolbar.textUnderline": "Gạch chân",
|
"SSE.Views.Toolbar.textUnderline": "Gạch chân",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "Win/Loss",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "Thu phóng",
|
"SSE.Views.Toolbar.textZoom": "Thu phóng",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "Căn dưới cùng",
|
"SSE.Views.Toolbar.tipAlignBottom": "Căn dưới cùng",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "Căn trung tâm",
|
"SSE.Views.Toolbar.tipAlignCenter": "Căn trung tâm",
|
||||||
|
|
|
@ -2,6 +2,18 @@
|
||||||
"cancelButtonText": "取消",
|
"cancelButtonText": "取消",
|
||||||
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
|
"Common.Controllers.Chat.notcriticalErrorTitle": "警告",
|
||||||
"Common.Controllers.Chat.textEnterMessage": "在这里输入你的信息",
|
"Common.Controllers.Chat.textEnterMessage": "在这里输入你的信息",
|
||||||
|
"Common.define.chartData.textArea": "区域",
|
||||||
|
"Common.define.chartData.textBar": "条",
|
||||||
|
"Common.define.chartData.textColumn": "列",
|
||||||
|
"Common.define.chartData.textLine": "线",
|
||||||
|
"Common.define.chartData.textPie": "派",
|
||||||
|
"Common.define.chartData.textPoint": "XY(散射)",
|
||||||
|
"Common.define.chartData.textStock": "股票",
|
||||||
|
"Common.define.chartData.textSurface": "平面",
|
||||||
|
"Common.define.chartData.textColumnSpark": "列",
|
||||||
|
"Common.define.chartData.textLineSpark": "线",
|
||||||
|
"Common.define.chartData.textWinLossSpark": "赢/输",
|
||||||
|
"Common.define.chartData.textSparks": "迷你",
|
||||||
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
|
"Common.UI.ComboBorderSize.txtNoBorders": "没有边框",
|
||||||
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "没有边框",
|
||||||
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
"Common.UI.ComboDataView.emptyComboText": "没有风格",
|
||||||
|
@ -1128,36 +1140,25 @@
|
||||||
"SSE.Views.ChartSettings.strSparkColor": "颜色",
|
"SSE.Views.ChartSettings.strSparkColor": "颜色",
|
||||||
"SSE.Views.ChartSettings.strTemplate": "模板",
|
"SSE.Views.ChartSettings.strTemplate": "模板",
|
||||||
"SSE.Views.ChartSettings.textAdvanced": "显示高级设置",
|
"SSE.Views.ChartSettings.textAdvanced": "显示高级设置",
|
||||||
"SSE.Views.ChartSettings.textArea": "区域",
|
|
||||||
"SSE.Views.ChartSettings.textBar": "条",
|
|
||||||
"SSE.Views.ChartSettings.textBorderSizeErr": "输入的值不正确。<br>请输入介于0 pt和1584 pt之间的值。",
|
"SSE.Views.ChartSettings.textBorderSizeErr": "输入的值不正确。<br>请输入介于0 pt和1584 pt之间的值。",
|
||||||
"SSE.Views.ChartSettings.textChartType": "更改图表类型",
|
"SSE.Views.ChartSettings.textChartType": "更改图表类型",
|
||||||
"SSE.Views.ChartSettings.textColumn": "列",
|
|
||||||
"SSE.Views.ChartSettings.textColumnSpark": "列",
|
|
||||||
"SSE.Views.ChartSettings.textEditData": "编辑数据和位置",
|
"SSE.Views.ChartSettings.textEditData": "编辑数据和位置",
|
||||||
"SSE.Views.ChartSettings.textFirstPoint": "第一点",
|
"SSE.Views.ChartSettings.textFirstPoint": "第一点",
|
||||||
"SSE.Views.ChartSettings.textHeight": "高低",
|
"SSE.Views.ChartSettings.textHeight": "高低",
|
||||||
"SSE.Views.ChartSettings.textHighPoint": "高点",
|
"SSE.Views.ChartSettings.textHighPoint": "高点",
|
||||||
"SSE.Views.ChartSettings.textKeepRatio": "不变比例",
|
"SSE.Views.ChartSettings.textKeepRatio": "不变比例",
|
||||||
"SSE.Views.ChartSettings.textLastPoint": "最后一点",
|
"SSE.Views.ChartSettings.textLastPoint": "最后一点",
|
||||||
"SSE.Views.ChartSettings.textLine": "线",
|
|
||||||
"SSE.Views.ChartSettings.textLineSpark": "线",
|
|
||||||
"SSE.Views.ChartSettings.textLowPoint": "低点",
|
"SSE.Views.ChartSettings.textLowPoint": "低点",
|
||||||
"SSE.Views.ChartSettings.textMarkers": "标记",
|
"SSE.Views.ChartSettings.textMarkers": "标记",
|
||||||
"SSE.Views.ChartSettings.textNegativePoint": "负点",
|
"SSE.Views.ChartSettings.textNegativePoint": "负点",
|
||||||
"SSE.Views.ChartSettings.textNewColor": "添加新的自定义颜色",
|
"SSE.Views.ChartSettings.textNewColor": "添加新的自定义颜色",
|
||||||
"SSE.Views.ChartSettings.textPie": "派",
|
|
||||||
"SSE.Views.ChartSettings.textPoint": "XY(散射)",
|
|
||||||
"SSE.Views.ChartSettings.textRanges": "数据范围",
|
"SSE.Views.ChartSettings.textRanges": "数据范围",
|
||||||
"SSE.Views.ChartSettings.textSelectData": "选择数据",
|
"SSE.Views.ChartSettings.textSelectData": "选择数据",
|
||||||
"SSE.Views.ChartSettings.textShow": "显示",
|
"SSE.Views.ChartSettings.textShow": "显示",
|
||||||
"SSE.Views.ChartSettings.textSize": "大小",
|
"SSE.Views.ChartSettings.textSize": "大小",
|
||||||
"SSE.Views.ChartSettings.textStock": "股票",
|
|
||||||
"SSE.Views.ChartSettings.textStyle": "类型",
|
"SSE.Views.ChartSettings.textStyle": "类型",
|
||||||
"SSE.Views.ChartSettings.textSurface": "平面",
|
|
||||||
"SSE.Views.ChartSettings.textType": "类型",
|
"SSE.Views.ChartSettings.textType": "类型",
|
||||||
"SSE.Views.ChartSettings.textWidth": "宽度",
|
"SSE.Views.ChartSettings.textWidth": "宽度",
|
||||||
"SSE.Views.ChartSettings.textWinLossSpark": "赢/输",
|
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "错误!每个图表序列的最大点值为4096。",
|
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "错误!每个图表序列的最大点值为4096。",
|
||||||
"SSE.Views.ChartSettingsDlg.errorMaxRows": "错误!每个图表的最大数据系列数为255",
|
"SSE.Views.ChartSettingsDlg.errorMaxRows": "错误!每个图表的最大数据系列数为255",
|
||||||
"SSE.Views.ChartSettingsDlg.errorStockChart": "行顺序不正确。建立股票图表将数据按照以下顺序放置在表格上:<br>开盘价,最高价格,最低价格,收盘价。",
|
"SSE.Views.ChartSettingsDlg.errorStockChart": "行顺序不正确。建立股票图表将数据按照以下顺序放置在表格上:<br>开盘价,最高价格,最低价格,收盘价。",
|
||||||
|
@ -1165,14 +1166,12 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textAltDescription": "描述",
|
"SSE.Views.ChartSettingsDlg.textAltDescription": "描述",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。",
|
"SSE.Views.ChartSettingsDlg.textAltTip": "视觉对象信息的替代的基于文本的表示,将被视为具有视觉或认知障碍的人阅读,以帮助他们更好地了解图像,自动图像,图表或表中的哪些信息。",
|
||||||
"SSE.Views.ChartSettingsDlg.textAltTitle": "标题",
|
"SSE.Views.ChartSettingsDlg.textAltTitle": "标题",
|
||||||
"SSE.Views.ChartSettingsDlg.textArea": "区域",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textAuto": "自动",
|
"SSE.Views.ChartSettingsDlg.textAuto": "自动",
|
||||||
"SSE.Views.ChartSettingsDlg.textAutoEach": "自动调整",
|
"SSE.Views.ChartSettingsDlg.textAutoEach": "自动调整",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "轴十字架",
|
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "轴十字架",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisOptions": "轴的选择",
|
"SSE.Views.ChartSettingsDlg.textAxisOptions": "轴的选择",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisPos": "轴的位置",
|
"SSE.Views.ChartSettingsDlg.textAxisPos": "轴的位置",
|
||||||
"SSE.Views.ChartSettingsDlg.textAxisSettings": "轴设置",
|
"SSE.Views.ChartSettingsDlg.textAxisSettings": "轴设置",
|
||||||
"SSE.Views.ChartSettingsDlg.textBar": "条",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "刻度线之间",
|
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "刻度线之间",
|
||||||
"SSE.Views.ChartSettingsDlg.textBillions": "十亿",
|
"SSE.Views.ChartSettingsDlg.textBillions": "十亿",
|
||||||
"SSE.Views.ChartSettingsDlg.textBottom": "底部",
|
"SSE.Views.ChartSettingsDlg.textBottom": "底部",
|
||||||
|
@ -1180,8 +1179,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textCenter": "中心",
|
"SSE.Views.ChartSettingsDlg.textCenter": "中心",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "图表元素&图表图例",
|
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "图表元素&图表图例",
|
||||||
"SSE.Views.ChartSettingsDlg.textChartTitle": "图表标题",
|
"SSE.Views.ChartSettingsDlg.textChartTitle": "图表标题",
|
||||||
"SSE.Views.ChartSettingsDlg.textColumn": "列",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textColumnSpark": "列",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textCross": "交叉",
|
"SSE.Views.ChartSettingsDlg.textCross": "交叉",
|
||||||
"SSE.Views.ChartSettingsDlg.textCustom": "自定义",
|
"SSE.Views.ChartSettingsDlg.textCustom": "自定义",
|
||||||
"SSE.Views.ChartSettingsDlg.textDataColumns": "在列中",
|
"SSE.Views.ChartSettingsDlg.textDataColumns": "在列中",
|
||||||
|
@ -1222,9 +1219,7 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendPos": "传说",
|
"SSE.Views.ChartSettingsDlg.textLegendPos": "传说",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendRight": "右",
|
"SSE.Views.ChartSettingsDlg.textLegendRight": "右",
|
||||||
"SSE.Views.ChartSettingsDlg.textLegendTop": "顶部",
|
"SSE.Views.ChartSettingsDlg.textLegendTop": "顶部",
|
||||||
"SSE.Views.ChartSettingsDlg.textLine": "折线图",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLines": "行 ",
|
"SSE.Views.ChartSettingsDlg.textLines": "行 ",
|
||||||
"SSE.Views.ChartSettingsDlg.textLineSpark": "线",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textLocationRange": "位置范围",
|
"SSE.Views.ChartSettingsDlg.textLocationRange": "位置范围",
|
||||||
"SSE.Views.ChartSettingsDlg.textLow": "低",
|
"SSE.Views.ChartSettingsDlg.textLow": "低",
|
||||||
"SSE.Views.ChartSettingsDlg.textMajor": "主要",
|
"SSE.Views.ChartSettingsDlg.textMajor": "主要",
|
||||||
|
@ -1245,8 +1240,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textOut": "向外",
|
"SSE.Views.ChartSettingsDlg.textOut": "向外",
|
||||||
"SSE.Views.ChartSettingsDlg.textOuterTop": "外顶",
|
"SSE.Views.ChartSettingsDlg.textOuterTop": "外顶",
|
||||||
"SSE.Views.ChartSettingsDlg.textOverlay": "覆盖",
|
"SSE.Views.ChartSettingsDlg.textOverlay": "覆盖",
|
||||||
"SSE.Views.ChartSettingsDlg.textPie": "派",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textPoint": "XY(散射)",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textReverse": "值相反的顺序",
|
"SSE.Views.ChartSettingsDlg.textReverse": "值相反的顺序",
|
||||||
"SSE.Views.ChartSettingsDlg.textReverseOrder": "相反的顺序",
|
"SSE.Views.ChartSettingsDlg.textReverseOrder": "相反的顺序",
|
||||||
"SSE.Views.ChartSettingsDlg.textRight": "右",
|
"SSE.Views.ChartSettingsDlg.textRight": "右",
|
||||||
|
@ -1267,10 +1260,8 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textSingle": "单一的迷你图",
|
"SSE.Views.ChartSettingsDlg.textSingle": "单一的迷你图",
|
||||||
"SSE.Views.ChartSettingsDlg.textSmooth": "光滑",
|
"SSE.Views.ChartSettingsDlg.textSmooth": "光滑",
|
||||||
"SSE.Views.ChartSettingsDlg.textSparkRanges": "迷你图范围",
|
"SSE.Views.ChartSettingsDlg.textSparkRanges": "迷你图范围",
|
||||||
"SSE.Views.ChartSettingsDlg.textStock": "股票",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textStraight": "直行",
|
"SSE.Views.ChartSettingsDlg.textStraight": "直行",
|
||||||
"SSE.Views.ChartSettingsDlg.textStyle": "类型",
|
"SSE.Views.ChartSettingsDlg.textStyle": "类型",
|
||||||
"SSE.Views.ChartSettingsDlg.textSurface": "平面",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
"SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
"SSE.Views.ChartSettingsDlg.textTenThousands": "10 000",
|
||||||
"SSE.Views.ChartSettingsDlg.textThousands": "成千上万",
|
"SSE.Views.ChartSettingsDlg.textThousands": "成千上万",
|
||||||
|
@ -1287,7 +1278,6 @@
|
||||||
"SSE.Views.ChartSettingsDlg.textVertAxis": "垂直轴",
|
"SSE.Views.ChartSettingsDlg.textVertAxis": "垂直轴",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertGrid": "垂直网格线",
|
"SSE.Views.ChartSettingsDlg.textVertGrid": "垂直网格线",
|
||||||
"SSE.Views.ChartSettingsDlg.textVertTitle": "垂直轴标题",
|
"SSE.Views.ChartSettingsDlg.textVertTitle": "垂直轴标题",
|
||||||
"SSE.Views.ChartSettingsDlg.textWinLossSpark": "赢/输",
|
|
||||||
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X轴标题",
|
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X轴标题",
|
||||||
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y轴标题",
|
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y轴标题",
|
||||||
"SSE.Views.ChartSettingsDlg.textZero": "零",
|
"SSE.Views.ChartSettingsDlg.textZero": "零",
|
||||||
|
@ -2050,19 +2040,14 @@
|
||||||
"SSE.Views.Toolbar.textAlignRight": "右对齐",
|
"SSE.Views.Toolbar.textAlignRight": "右对齐",
|
||||||
"SSE.Views.Toolbar.textAlignTop": "顶端对齐",
|
"SSE.Views.Toolbar.textAlignTop": "顶端对齐",
|
||||||
"SSE.Views.Toolbar.textAllBorders": "所有边框",
|
"SSE.Views.Toolbar.textAllBorders": "所有边框",
|
||||||
"SSE.Views.Toolbar.textArea": "区域",
|
|
||||||
"SSE.Views.Toolbar.textBar": "条",
|
|
||||||
"SSE.Views.Toolbar.textBold": "加粗",
|
"SSE.Views.Toolbar.textBold": "加粗",
|
||||||
"SSE.Views.Toolbar.textBordersColor": "边框颜色",
|
"SSE.Views.Toolbar.textBordersColor": "边框颜色",
|
||||||
"SSE.Views.Toolbar.textBordersStyle": "边框风格",
|
"SSE.Views.Toolbar.textBordersStyle": "边框风格",
|
||||||
"SSE.Views.Toolbar.textBottom": "底部: ",
|
"SSE.Views.Toolbar.textBottom": "底部: ",
|
||||||
"SSE.Views.Toolbar.textBottomBorders": "底部边界",
|
"SSE.Views.Toolbar.textBottomBorders": "底部边界",
|
||||||
"SSE.Views.Toolbar.textCenterBorders": "内部垂直边界",
|
"SSE.Views.Toolbar.textCenterBorders": "内部垂直边界",
|
||||||
"SSE.Views.Toolbar.textCharts": "图表",
|
|
||||||
"SSE.Views.Toolbar.textClearPrintArea": "清除打印区域",
|
"SSE.Views.Toolbar.textClearPrintArea": "清除打印区域",
|
||||||
"SSE.Views.Toolbar.textClockwise": "顺时针方向角",
|
"SSE.Views.Toolbar.textClockwise": "顺时针方向角",
|
||||||
"SSE.Views.Toolbar.textColumn": "列",
|
|
||||||
"SSE.Views.Toolbar.textColumnSpark": "列",
|
|
||||||
"SSE.Views.Toolbar.textCounterCw": "角逆时针",
|
"SSE.Views.Toolbar.textCounterCw": "角逆时针",
|
||||||
"SSE.Views.Toolbar.textDelLeft": "移动单元格",
|
"SSE.Views.Toolbar.textDelLeft": "移动单元格",
|
||||||
"SSE.Views.Toolbar.textDelUp": "向上移动单元格",
|
"SSE.Views.Toolbar.textDelUp": "向上移动单元格",
|
||||||
|
@ -2078,8 +2063,6 @@
|
||||||
"SSE.Views.Toolbar.textLandscape": "横向",
|
"SSE.Views.Toolbar.textLandscape": "横向",
|
||||||
"SSE.Views.Toolbar.textLeft": "左: ",
|
"SSE.Views.Toolbar.textLeft": "左: ",
|
||||||
"SSE.Views.Toolbar.textLeftBorders": "左边界",
|
"SSE.Views.Toolbar.textLeftBorders": "左边界",
|
||||||
"SSE.Views.Toolbar.textLine": "线",
|
|
||||||
"SSE.Views.Toolbar.textLineSpark": "线",
|
|
||||||
"SSE.Views.Toolbar.textMarginsLast": "最后自定义",
|
"SSE.Views.Toolbar.textMarginsLast": "最后自定义",
|
||||||
"SSE.Views.Toolbar.textMarginsNarrow": "缩小",
|
"SSE.Views.Toolbar.textMarginsNarrow": "缩小",
|
||||||
"SSE.Views.Toolbar.textMarginsNormal": "正常",
|
"SSE.Views.Toolbar.textMarginsNormal": "正常",
|
||||||
|
@ -2090,8 +2073,6 @@
|
||||||
"SSE.Views.Toolbar.textNoBorders": "没有边框",
|
"SSE.Views.Toolbar.textNoBorders": "没有边框",
|
||||||
"SSE.Views.Toolbar.textOutBorders": "境外",
|
"SSE.Views.Toolbar.textOutBorders": "境外",
|
||||||
"SSE.Views.Toolbar.textPageMarginsCustom": "自定义边距",
|
"SSE.Views.Toolbar.textPageMarginsCustom": "自定义边距",
|
||||||
"SSE.Views.Toolbar.textPie": "派",
|
|
||||||
"SSE.Views.Toolbar.textPoint": "XY(散射)",
|
|
||||||
"SSE.Views.Toolbar.textPortrait": "肖像",
|
"SSE.Views.Toolbar.textPortrait": "肖像",
|
||||||
"SSE.Views.Toolbar.textPrint": "打印",
|
"SSE.Views.Toolbar.textPrint": "打印",
|
||||||
"SSE.Views.Toolbar.textPrintOptions": "打印设置",
|
"SSE.Views.Toolbar.textPrintOptions": "打印设置",
|
||||||
|
@ -2100,13 +2081,10 @@
|
||||||
"SSE.Views.Toolbar.textRotateDown": "旋转90°",
|
"SSE.Views.Toolbar.textRotateDown": "旋转90°",
|
||||||
"SSE.Views.Toolbar.textRotateUp": "旋转270°",
|
"SSE.Views.Toolbar.textRotateUp": "旋转270°",
|
||||||
"SSE.Views.Toolbar.textSetPrintArea": "设置打印区域",
|
"SSE.Views.Toolbar.textSetPrintArea": "设置打印区域",
|
||||||
"SSE.Views.Toolbar.textSparks": "迷你",
|
|
||||||
"SSE.Views.Toolbar.textStock": "股票",
|
|
||||||
"SSE.Views.Toolbar.textStrikeout": "删除线",
|
"SSE.Views.Toolbar.textStrikeout": "删除线",
|
||||||
"SSE.Views.Toolbar.textSubscript": "下标",
|
"SSE.Views.Toolbar.textSubscript": "下标",
|
||||||
"SSE.Views.Toolbar.textSubSuperscript": "下标/上标",
|
"SSE.Views.Toolbar.textSubSuperscript": "下标/上标",
|
||||||
"SSE.Views.Toolbar.textSuperscript": "上标",
|
"SSE.Views.Toolbar.textSuperscript": "上标",
|
||||||
"SSE.Views.Toolbar.textSurface": "平面",
|
|
||||||
"SSE.Views.Toolbar.textTabCollaboration": "协作",
|
"SSE.Views.Toolbar.textTabCollaboration": "协作",
|
||||||
"SSE.Views.Toolbar.textTabFile": "文件",
|
"SSE.Views.Toolbar.textTabFile": "文件",
|
||||||
"SSE.Views.Toolbar.textTabHome": "主页",
|
"SSE.Views.Toolbar.textTabHome": "主页",
|
||||||
|
@ -2116,7 +2094,6 @@
|
||||||
"SSE.Views.Toolbar.textTop": "顶边: ",
|
"SSE.Views.Toolbar.textTop": "顶边: ",
|
||||||
"SSE.Views.Toolbar.textTopBorders": "顶部边界",
|
"SSE.Views.Toolbar.textTopBorders": "顶部边界",
|
||||||
"SSE.Views.Toolbar.textUnderline": "下划线",
|
"SSE.Views.Toolbar.textUnderline": "下划线",
|
||||||
"SSE.Views.Toolbar.textWinLossSpark": "赢/输",
|
|
||||||
"SSE.Views.Toolbar.textZoom": "放大",
|
"SSE.Views.Toolbar.textZoom": "放大",
|
||||||
"SSE.Views.Toolbar.tipAlignBottom": "底部对齐",
|
"SSE.Views.Toolbar.tipAlignBottom": "底部对齐",
|
||||||
"SSE.Views.Toolbar.tipAlignCenter": "居中对齐",
|
"SSE.Views.Toolbar.tipAlignCenter": "居中对齐",
|
||||||
|
|
|
@ -20,6 +20,7 @@ var sdk_dev_scrpipts = [
|
||||||
"../../../../sdkjs/cell/view/HandlerList.js",
|
"../../../../sdkjs/cell/view/HandlerList.js",
|
||||||
"../../../../sdkjs/cell/model/CollaborativeEditing.js",
|
"../../../../sdkjs/cell/model/CollaborativeEditing.js",
|
||||||
"../../../../sdkjs/common/apiBase.js",
|
"../../../../sdkjs/common/apiBase.js",
|
||||||
|
"../../../../sdkjs/common/apiBase_plugins.js",
|
||||||
"../../../../sdkjs/word/apiCommon.js",
|
"../../../../sdkjs/word/apiCommon.js",
|
||||||
"../../../../sdkjs/cell/api.js",
|
"../../../../sdkjs/cell/api.js",
|
||||||
"../../../../sdkjs/common/downloaderfiles.js",
|
"../../../../sdkjs/common/downloaderfiles.js",
|
||||||
|
@ -111,6 +112,7 @@ var sdk_dev_scrpipts = [
|
||||||
"../../../../sdkjs/cell/model/Serialize.js",
|
"../../../../sdkjs/cell/model/Serialize.js",
|
||||||
"../../../../sdkjs/cell/model/ConditionalFormatting.js",
|
"../../../../sdkjs/cell/model/ConditionalFormatting.js",
|
||||||
"../../../../sdkjs/cell/model/DataValidation.js",
|
"../../../../sdkjs/cell/model/DataValidation.js",
|
||||||
|
"../../../../sdkjs/cell/model/HeaderFooter.js",
|
||||||
"../../../../sdkjs/cell/model/CellInfo.js",
|
"../../../../sdkjs/cell/model/CellInfo.js",
|
||||||
"../../../../sdkjs/cell/view/mobileTouch.js",
|
"../../../../sdkjs/cell/view/mobileTouch.js",
|
||||||
"../../../../sdkjs/cell/view/StringRender.js",
|
"../../../../sdkjs/cell/view/StringRender.js",
|
||||||
|
|
Loading…
Reference in a new issue