Merge branch 'develop' into feature/resize-toolbar

This commit is contained in:
Julia Radzhabova 2021-12-21 12:15:00 +03:00
commit fca5aa3e6a
400 changed files with 6699 additions and 1442 deletions

View file

@ -371,36 +371,6 @@
}
};
var _callLocalStorage = function(data) {
if (data.cmd == 'get') {
if (data.keys && data.keys.length) {
var af = data.keys.split(','), re = af[0];
for (i = 0; ++i < af.length;)
re += '|' + af[i];
re = new RegExp(re); k = {};
for (i in localStorage)
if (re.test(i)) k[i] = localStorage[i];
} else {
k = localStorage;
}
_sendCommand({
command: 'internalCommand',
data: {
type: 'localstorage',
keys: k
}
});
} else
if (data.cmd == 'set') {
var k = data.keys, i;
for (i in k) {
localStorage.setItem(i, k[i]);
}
}
};
var _onMessage = function(msg) {
if ( msg ) {
if ( msg.type === "onExternalPluginMessage" ) {
@ -415,8 +385,6 @@
if (msg.event === 'onRequestEditRights' && !handler) {
_applyEditRights(false, 'handler isn\'t defined');
} else if (msg.event === 'onInternalMessage' && msg.data && msg.data.type == 'localstorage') {
_callLocalStorage(msg.data.data);
} else {
if (msg.event === 'onAppReady') {
_onAppReady();

View file

@ -456,6 +456,14 @@
background-position: -@icon-width*4 0;
background-position: -@icon-width*4 @icon-normal-top;
}
&.zoom-in {
background-position: -@icon-width*5 0;
background-position: -@icon-width*5 @icon-normal-top;
}
&.zoom-out {
background-position: -@icon-width*6 0;
background-position: -@icon-width*6 @icon-normal-top;
}
&.zoom-up {
background-position: -@icon-width*5 -@icon-height;
}
@ -624,6 +632,32 @@
font-size: 11px;
}
.menu-zoom {
line-height: @line-height-base;
.title {
padding: 5px 5px 5px 28px;
float: left;
font-weight: normal;
font-size: 11px;
margin: 0px;
text-overflow: ellipsis;
}
.zoom {
padding: 5px 3px;
float: right;
min-width: 40px;
text-align: center;
font-weight: normal;
font-size: 11px;
padding-bottom: 0px;
}
.mi-icon {
margin: 0;
}
}
.font-size-small {
.fontsize(@font-size-small);
}

View file

@ -395,8 +395,15 @@ define([
rec.set({selected: false});
});
if (record)
record.set({selected: true});
if (record) {
if (Common.Utils.isSafari) {
setTimeout(function () {
record.set({selected: true});
}, 200);
} else {
record.set({selected: true});
}
}
} else {
if (record)
record.set({selected: !record.get('selected')});
@ -449,13 +456,24 @@ define([
}
}
var idx = _.indexOf(this.store.models, record);
if (innerEl) {
if (opts && opts.at == 0)
innerEl.prepend(view.render().el); else
if (opts && (typeof opts.at==='number') && opts.at >= 0) {
if (opts.at == 0) {
innerEl.prepend(view.render().el);
} else if (!(this.groups && this.groups.length > 0)) { // for dataview without groups
var innerDivs = innerEl.find('> div');
if (idx > 0)
$(innerDivs.get(idx - 1)).after(view.render().el);
else {
(innerDivs.length > 0) ? $(innerDivs[idx]).before(view.render().el) : innerEl.append(view.render().el);
}
} else
innerEl.append(view.render().el);
} else
innerEl.append(view.render().el);
(this.dataViewItems.length<1) && innerEl.find('.empty-text').remove();
var idx = _.indexOf(this.store.models, record);
this.dataViewItems = this.dataViewItems.slice(0, idx).concat(view).concat(this.dataViewItems.slice(idx));
var me = this,

View file

@ -50,7 +50,7 @@ define([
},
template: _.template([
'<div class="synch-tip-root <% if (!!scope.options.extCls) {print(scope.options.extCls + \" \");} %><%= scope.placement %>">',
'<div class="synch-tip-root <% if (!!scope.options.extCls) {print(scope.options.extCls + \" \");} %><%= scope.placement %>" style="<%= scope.style %>">',
'<div class="asc-synchronizetip">',
'<div class="tip-arrow <%= scope.placement %>"></div>',
'<div>',
@ -82,6 +82,7 @@ define([
this.closable = this.options.closable;
this.textButton = this.options.textButton || '';
this.position = this.options.position; // show in the position relative to target
this.style = this.options.style || '';
},
render: function() {

View file

@ -116,7 +116,8 @@ Common.UI.HintManager = new(function() {
_isLockedKeyEvents = false,
_inputTimer,
_isDocReady = false,
_isEditDiagram = false;
_isEditDiagram = false,
_usedTitles = [];
var _api;
@ -195,10 +196,21 @@ Common.UI.HintManager = new(function() {
};
var _getLetters = function(countButtons) {
var arr = _arrAlphabet.slice();
arr[0] = _arrAlphabet[0] + _arrAlphabet[0];
for (var i = 1; arr.length < countButtons; i++) {
arr.push(_arrAlphabet[0] + _arrAlphabet[i]);
var arr = _arrAlphabet.slice(),
firstFreeLetter,
ind;
for (var i = 0; i < _arrAlphabet.length, !firstFreeLetter; i++) {
if (_usedTitles.indexOf(_arrAlphabet[i]) === -1) {
firstFreeLetter = _arrAlphabet[i];
ind = i;
}
}
arr[ind] = firstFreeLetter + _arrAlphabet[0];
for (var i = 0; arr.length < countButtons; i++) {
var addTip = firstFreeLetter + _arrAlphabet[i];
if (addTip !== arr[ind]) {
arr.push(firstFreeLetter + _arrAlphabet[i]);
}
}
return arr;
};
@ -209,6 +221,7 @@ Common.UI.HintManager = new(function() {
var _getControls = function() {
_currentControls = [];
_usedTitles = [];
var arr = [],
arrItemsWithTitle = [];
if (_.isArray(_currentSection)) {
@ -249,6 +262,14 @@ Common.UI.HintManager = new(function() {
}
var _arrLetters = [];
if (visibleItems.length > _arrAlphabet.length) {
visibleItemsWithTitle.forEach(function (item) {
var t = $(item).data('hint-title').toLowerCase();
if (_arrAlphabet.indexOf(t) === -1) {
var ind = _arrEnAlphabet.indexOf(t);
t = _arrAlphabet[ind];
}
_usedTitles.push(t);
});
_arrLetters = _getLetters(visibleItems.length);
} else {
_arrLetters = _arrAlphabet.slice();
@ -567,9 +588,9 @@ Common.UI.HintManager = new(function() {
}
}
var isAlt = e.keyCode == Common.UI.Keys.ALT;
var isAlt = e.altKey;
_needShow = (isAlt && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0);
if (isAlt) {
if (isAlt && e.keyCode !== 115) {
e.preventDefault();
}
});

View file

@ -597,4 +597,705 @@ define(function(){ 'use strict';
textValue: 'Value is'
}
})(), Common.define.conditionalData || {});
});
Common.define.effectData = _.extend(new (function () {
return {
textEntrance: 'Entrance Effect',
textEmphasis: 'Emphasis Effect',
textExit: 'Exit Effect',
textPath: 'Motion Path',
textAppear: 'Appear',
textFade: 'Fade',
textFlyIn: 'Fly in',
textFloatIn: 'Float In',
textSplit: 'Split',
textWipe: 'Wipe',
textShape: 'Shape',
textWheel: 'Wheel',
textRandomBars: 'Random Bars ',
textGrowTurn: 'Grow & Turn',
textZoom: 'Zoom',
textSwivel: 'Swivel',
textBounce: 'Bounce',
textPulse: 'Pulse',
textColorPulse: 'Color Pulse',
textTeeter: 'Teeter',
textSpin: 'Spin',
textGrowShrink: 'Grow/Shrink',
textShrinkTurn: 'Shrink & Turn',
textDesaturate: 'Desaturate',
textDarken: 'Darken',
textLighten: 'Lighten',
textTransparency: 'Transparency',
textObjectColor: 'Object Color',
textComplementaryColor: 'Complementary Color',
textComplementaryColor2: 'Complementary Color 2',
textLineColor: 'Line Color',
textFillColor: 'Fill Color',
textBrushColor: 'Brush Color',
textFontColor: 'Font Color',
textUnderline: 'Underline',
textBoldFlash: 'Bold Flash',
textBoldReveal: 'Bold Reveal',
textWave: 'Wave',
textDisappear: 'Disappear',
textFlyOut: 'Fly Out',
textFloatOut: 'Float Out',
textBasic: 'Basic',
textSubtle: 'Subtle',
textModerate: 'Moderate',
textExciting: 'Exciting',
textLinesCurves: 'Lines Curves',
textSpecial: 'Special',
textBox: 'Box',
textCircle: 'Circle',
textPlus: 'Plus',
textDiamond: 'Diamond',
textDissolveIn: 'Dissolve In',
textBlinds: 'Blinds',
textCheckerboard: 'Checkerboard',
textPeekIn: 'Peek In',
textStrips: 'Strips',
textExpand: 'Expand',
textBasicZoom: 'Basic Zoom',
textCompress: 'Compress',
textFloatUp: 'Float Up',
textRiseUp: 'Rise Up',
textStretch: 'Stretch',
textCenterRevolve: 'Center Revolve',
textFloatDown: 'Float Down',
textSpinner: 'Spinner',
textBasicSwivel: 'Basic Swivel',
textBoomerang: 'Boomerang',
textCredits: 'Credits',
textCuverUp: 'Cuver Up',
textDrop: 'Drop',
textFloat: 'Float',
textPinwheel: 'Pinwheel',
textSpiralIn: 'Spiral In',
textWhip: 'Whip',
textGrowWithColor: 'Grow With Color',
textShimmer: 'Shimmer',
textBlink: 'Blink',
textDissolveOut: 'Dissolve Out',
textPeekOut: 'Peek Out',
textContrast: 'Contrast',
textCollapse: 'Collapse',
textSinkDown: 'Sink Down',
textCurveDown: 'CurveDown',
textSpiralOut: 'Spiral Out',
textContrastingColor: 'Contrasting Color',
textPointStar4: '4 Point Star',
textPointStar5: '5 Point Star',
textPointStar6: '6 Point Star',
textPointStar8: '8 Point Star',
textCrescentMoon: 'Crescent Moon',
textEqualTriangle: 'Equal Triangle',
textFootball: 'Football',
textHeart: 'Heart',
textHexagon: 'Hexagon',
textOctagon: 'Octagon',
textParallelogram: 'Parallelogram',
textPentagon: 'Pentagon',
textSquare: 'Square',
textTeardrop: 'Teardrop',
textTrapezoid: 'Trapezoid',
textArcDown: 'Arc Down',
textArcLeft: 'Arc Left',
textArcRight: 'Arc Right',
textArcUp: 'Arc Up',
textBounceLeft: 'Bounce Left',
textBounceRight: 'Bounce Right',
textCurvyLeft: 'Curvy Left',
textCurvyRight: 'Curvy Right',
textDecayingWave: 'Decaying Wave',
textDiagonalDownRight: 'Diagonal Down Right',
textDiagonalUpRight: 'Diagonal Up Right',
textDown: 'Down',
textFunnel: 'Funnel',
textHeartbeat: 'Heartbeat',
textLeft: 'Left',
textRight: 'Right',
textSCurve1: 'S Curve 1',
textSCurve2: 'S Curve 2',
textSineWave: 'Sine Wave',
textSpiralLeft: 'Spiral Left',
textSpiralRight: 'Spiral Right',
textSpring: 'Spring:',
textStairsDown: 'Stairs Down',
textTurnDown: 'Turn Down',
textTurnDownRight: 'Turn Down Right',
textTurnUp: 'Turn Up',
textTurnUpRight: 'Turn Up Right',
textUp: 'Up',
textZigzag: 'Zigzag',
textBean: 'Bean',
textCurvedSquare: 'CurvedSquare',
textCurvedX: 'Curved X',
textCurvyStar: 'Curvy Star',
textFigureFour: 'Figure 8 Four',
textHorizontalFigure: 'Horizontal Figure 8',
textInvertedSquare: 'Inverted Square',
textInvertedTriangle: 'Inverted Triangle',
textLoopDeLoop: 'Loop de Loop',
textNeutron: 'Neutron',
textPeanut: 'Peanut',
textPointStar: 'Point Star',
textSwoosh: 'Swoosh',
textVerticalFigure: 'Vertical Figure 8',
textRightTriangle: 'Right Triangle',
textAcross: 'Across',
textFromBottom: 'From Bottom',
textFromBottomLeft: 'From Bottom-Left',
textFromLeft: 'From Left',
textFromTopLeft: 'From Top-Left',
textFromTop: 'From Top',
textFromTopRight: 'From Top-Right',
textFromRight: 'From Right',
textFromBottomRight: 'From Bottom-Right',
textLeftDown: ' Left Down',
textLeftUp: ' Left Up',
textRightDown: ' Right Down',
textRightUp: ' Right Up',
textObjectCenter: 'Object Center',
textSlideCenter: 'Slide Center',
textInFromScreenCenter: 'In From Screen Center',
textInToScreenCenter: 'In To Screen Center',
textInSlightly: 'In Slightly',
textOutFromScreenBottom: 'Out From Screen Bottom',
textToFromScreenBottom: 'Out To Screen Bottom',
textOutSlightly: 'Out Slightly',
textToBottom: 'To Bottom',
textToBottomLeft: 'To Bottom-Left',
textToLeft: 'To Left',
textToTopLeft: 'To Top-Left',
textToTop: 'To Top',
textToTopRight: 'To Top-Right',
textToRight: 'To Right',
textToBottomRight: 'To Bottom-Right',
textSpoke1: '1 Spoke',
textSpoke2: '2 Spoke',
textSpoke3: '3 Spoke',
textSpoke4: '4 Spoke',
textSpoke8: '8 Spoke',
textCustomPath: 'Custom Path',
textHorizontalIn: 'Horizontal In',
textHorizontalOut: 'Horizontal Out',
textVerticalIn: 'Vertical In',
textVerticalOut: 'Vertical Out',
textVertical: 'Vertical',
textHorizontal: 'Horizontal',
textIn: 'In',
textOut: 'Out',
textWedge: 'Wedge',
textFlip: 'Flip',
getEffectGroupData: function () {
return [
{id: 'menu-effect-group-entrance', value: AscFormat.PRESET_CLASS_ENTR, caption: this.textEntrance},
{id: 'menu-effect-group-emphasis', value: AscFormat.PRESET_CLASS_EMPH, caption: this.textEmphasis},
{id: 'menu-effect-group-exit', value: AscFormat.PRESET_CLASS_EXIT, caption: this.textExit},
{id: 'menu-effect-group-path', value: AscFormat.PRESET_CLASS_PATH, caption: this.textPath}
];
},
getEffectData: function () {
return [
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_APPEAR, iconCls: 'animation-entrance-appear', displayValue: this.textAppear},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FADE, iconCls: 'animation-entrance-fade', displayValue: this.textFade},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLY_IN_FROM, iconCls: 'animation-entrance-fly_in', displayValue: this.textFlyIn},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLOAT, iconCls: 'animation-entrance-float_in', displayValue: this.textFloatIn},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SPLIT, iconCls: 'animation-entrance-split', displayValue: this.textSplit},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WIPE_FROM, iconCls: 'animation-entrance-wipe', displayValue: this.textWipe},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOX, iconCls: 'animation-entrance-shape', displayValue: this.textBox},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_CIRCLE, iconCls: 'animation-entrance-shape', displayValue: this.textCircle},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_PLUS, iconCls: 'animation-entrance-shape', displayValue: this.textPlus},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_DIAMOND, iconCls: 'animation-entrance-shape', displayValue: this.textDiamond},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WHEEL, iconCls: 'animation-entrance-wheel', displayValue: this.textWheel},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_RANDOM_BARS, iconCls: 'animation-entrance-random_bars', displayValue: this.textRandomBars},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_GROW_AND_TURN, iconCls: 'animation-entrance-grow_turn', displayValue: this.textGrowTurn},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_ZOOM, iconCls: 'animation-entrance-zoom', displayValue: this.textZoom},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SWIVEL, iconCls: 'animation-entrance-swivel', displayValue: this.textSwivel},
{group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOUNCE, iconCls: 'animation-entrance-bounce', displayValue: this.textBounce},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_PULSE, iconCls: 'animation-emphasis-pulse', displayValue: this.textPulse},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_COLOR_PULSE, iconCls: 'animation-emphasis-color_pulse', displayValue: this.textColorPulse},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_TEETER, iconCls: 'animation-emphasis-teeter', displayValue: this.textTeeter},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_SPIN, iconCls: 'animation-emphasis-spin', displayValue: this.textSpin},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_GROW_SHRINK, iconCls: 'animation-emphasis-grow_or_Shrink', displayValue: this.textGrowShrink},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_DESATURATE, iconCls: 'animation-emphasis-desaturate', displayValue: this.textDesaturate},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_CONTRASTING_DARKEN, iconCls: 'animation-emphasis-darken', displayValue: this.textDarken},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_LIGHTEN, iconCls: 'animation-emphasis-lighten', displayValue: this.textLighten},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_TRANSPARENCY, iconCls: 'animation-emphasis-transparency', displayValue: this.textTransparency},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_OBJECT_COLOR, iconCls: 'animation-emphasis-object_color', displayValue: this.textObjectColor},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR, iconCls: 'animation-emphasis-complementary_color', displayValue: this.textComplementaryColor},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_LINE_COLOR, iconCls: 'animation-emphasis-line_color', displayValue: this.textLineColor},
{group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_FILL_COLOR, iconCls: 'animation-emphasis-fill_color', displayValue: this.textFillColor},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_DISAPPEAR, iconCls: 'animation-exit-Disappear', displayValue: this.textDisappear},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_FADE, iconCls: 'animation-exit-fade', displayValue: this.textFade},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLY_OUT_TO, iconCls: 'animation-exit-fly_out', displayValue: this.textFlyOut},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLOAT, iconCls: 'animation-exit-float_out', displayValue: this.textFloatOut},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_SPLIT, iconCls: 'animation-exit-split', displayValue: this.textSplit},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_WIPE_FROM, iconCls: 'animation-exit-wipe', displayValue: this.textWipe},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOX, iconCls: 'animation-exit-shape', displayValue: this.textBox},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_CIRCLE, iconCls: 'animation-exit-shape', displayValue: this.textCircle},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_PLUS, iconCls: 'animation-exit-shape', displayValue: this.textPlus},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_DIAMOND, iconCls: 'animation-exit-shape', displayValue: this.textDiamond},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_WHEEL, iconCls: 'animation-exit-wheel', displayValue: this.textWheel},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_RANDOM_BARS, iconCls: 'animation-exit-random_bars', displayValue: this.textRandomBars},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_SHRINK_AND_TURN, iconCls: 'animation-exit-shrink_turn', displayValue: this.textShrinkTurn},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_ZOOM, iconCls: 'animation-exit-zoom', displayValue: this.textZoom},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_BASIC_SWIVEL, iconCls: 'animation-exit-swivel', displayValue: this.textSwivel},
{group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOUNCE, iconCls: 'animation-exit-bounce', displayValue: this.textBounce},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_DOWN, iconCls: 'animation-motion_paths-lines', displayValue: this.textDown},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_LEFT, iconCls: 'animation-motion_paths-lines', displayValue: this.textLeft},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_RIGHT, iconCls: 'animation-motion_paths-lines', displayValue: this.textRight},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_UP, iconCls: 'animation-motion_paths-lines', displayValue: this.textUp},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcDown},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_LEFT, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcLeft},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_RIGHT, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcRight},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_UP, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcUp},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnDown},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN_RIGHT, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnDownRight},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_UP, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnUp},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_UP_RIGHT, iconCls: 'animation-motion_paths-turns', displayValue: this.textTurnUpRight},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_CIRCLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textCircle},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_DIAMOND, iconCls: 'animation-motion_paths-shapes', displayValue: this.textDiamond},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_EQUAL_TRIANGLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textEqualTriangle},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_HEXAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textHexagon},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_OCTAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textOctagon},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_PARALLELOGRAM, iconCls: 'animation-motion_paths-shapes', displayValue: this.textParallelogram},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_PENTAGON, iconCls: 'animation-motion_paths-shapes', displayValue: this.textPentagon},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_RIGHT_TRIANGLE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textRightTriangle},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_SQUARE, iconCls: 'animation-motion_paths-shapes', displayValue: this.textSquare},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_TRAPEZOID, iconCls: 'animation-motion_paths-shapes', displayValue: this.textTrapezoid},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion_paths-loops', displayValue: this.textHorizontalFigure},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_VERTICAL_FIGURE_8, iconCls: 'animation-motion_paths-loops', displayValue: this.textVerticalFigure},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_LOOP_DE_LOOP, iconCls: 'animation-motion_paths-loops', displayValue: this.textLoopDeLoop},
{group: 'menu-effect-group-path', value: AscFormat.MOTION_CUSTOM_PATH, iconCls: 'animation-motion_paths-custom_path', displayValue: this.textCustomPath}
];
},
getLevelEffect: function (isPath) {
if (!isPath)
return [
{id: 'menu-effect-level-basic', displayValue: this.textBasic},
{id: 'menu-effect-level-subtle', displayValue: this.textSubtle},
{id: 'menu-effect-level-moderate', displayValue: this.textModerate},
{id: 'menu-effect-level-exciting', displayValue: this.textExciting}
];
else
return [
{id: 'menu-effect-level-basic', displayValue: this.textBasic},
{id: 'menu-effect-level-lines_curves', displayValue: this.textSubtle},
{id: 'menu-effect-level-special', displayValue: this.textModerate}
];
},
getEffectFullData: function () {
return [
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_APPEAR, displayValue: this.textAppear},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BLINDS, displayValue: this.textBlinds},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CHECKERBOARD, displayValue: this.textCheckerboard},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DISSOLVE_IN, displayValue: this.textDissolveIn},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_FLY_IN_FROM, displayValue: this.textFlyIn},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PEEK_IN_FROM, displayValue: this.textPeekIn},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_RANDOM_BARS, displayValue: this.textRandomBars},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_SPLIT, displayValue: this.textSplit},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_STRIPS, displayValue: this.textStrips},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WEDGE, displayValue: this.textWedge},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WHEEL, displayValue: this.textWheel},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WIPE_FROM, displayValue: this.textWipe},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_EXPAND, displayValue: this.textExpand},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_FADE, displayValue: this.textFade},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_SWIVEL, displayValue: this.textSwivel},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_ZOOM, displayValue: this.textZoom},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_BASIC_ZOOM, displayValue: this.textBasicZoom},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_CENTER_REVOLVE, displayValue: this.textCenterRevolve},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_CENTER_COMPRESS, displayValue: this.textCompress},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_DOWN, displayValue: this.textFloatDown},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_UP, displayValue: this.textFloatUp},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_GROW_AND_TURN, displayValue: this.textGrowTurn},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_RISE_UP, displayValue: this.textRiseUp},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_SPINNER, displayValue: this.textSpinner},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_STRETCH, displayValue: this.textStretch},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BASIC_SWIVEL, displayValue: this.textBasicSwivel},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BOOMERANG, displayValue: this.textBoomerang},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BOUNCE, displayValue: this.textBounce},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_CREDITS, displayValue: this.textCredits},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_CURVE_UP, displayValue: this.textCuverUp},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_DROP, displayValue: this.textDrop},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_FLIP, displayValue: this.textFlip},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_FLOAT, displayValue: this.textFloat},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_PINWHEEL, displayValue: this.textPinwheel},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_SPIRAL_IN, displayValue: this.textSpiralIn},
{group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_WHIP, displayValue: this.textWhip},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_FILL_COLOR, displayValue: this.textFillColor},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_GROW_SHRINK, displayValue: this.textGrowShrink},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_LINE_COLOR, displayValue: this.textLineColor},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_SPIN, displayValue: this.textSpin},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_TRANSPARENCY, displayValue: this.textTransparency},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR, displayValue: this.textComplementaryColor},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR_2, displayValue: this.textComplementaryColor2},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_CONTRASTING_COLOR, displayValue: this.textContrastingColor},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_CONTRASTING_DARKEN, displayValue: this.textDarken},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_DESATURAT, displayValue: this.textDesaturate},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_LIGHTEN, displayValue: this.textLighten},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_OBJECT_COLOR, displayValue: this.textObjectColor},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_PULSE, displayValue: this.textPulse},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_COLOR_PULSE, displayValue: this.textColorPulse},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_GROW_WITH_COLOR, displayValue: this.textGrowWithColor},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_SHIMMER, displayValue: this.textShimmer},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_TEETER, displayValue: this.textTeeter},
{group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_BLINK, displayValue: this.textBlink},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BLINDS, displayValue: this.textBlinds},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BOX, displayValue: this.textBox},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CHECKERBOARD, displayValue: this.textCheckerboard},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CIRCLE, displayValue: this.textCircle},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DIAMOND, displayValue: this.textDiamond},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISAPPEAR, displayValue: this.textDisappear},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISSOLVE_OUT, displayValue: this.textDissolveOut},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_FLY_OUT_TO, displayValue: this.textFlyOut},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PEEK_OUT_TO, displayValue: this.textPeekOut},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PLUS, displayValue: this.textPlus},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_RANDOM_BARS, displayValue: this.textRandomBars},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_SPLIT, displayValue: this.textSplit},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_STRIPS, displayValue: this.textStrips},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WEDGE, displayValue: this.textWedge},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WHEEL, displayValue: this.textWheel},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WIPE_FROM, displayValue: this.textWipe},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_CONTRACT, displayValue: this.textContrast},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_FADE, displayValue: this.textFade},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_SWIVEL, displayValue: this.textSwivel},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_ZOOM, displayValue: this.textZoom},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_BASIC_ZOOM, displayValue: this.textBasicZoom},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_CENTER_REVOLVE, displayValue: this.textCenterRevolve},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_COLLAPSE, displayValue: this.textCollapse},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_DOWN, displayValue: this.textFloatDown},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_UP, displayValue: this.textFloatUp},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SHRINK_AND_TURN, displayValue: this.textShrinkTurn},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SINK_DOWN, displayValue: this.textSinkDown}, //sink down- EXIT_SHRINK_DOWN?
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SPINNER, displayValue: this.textSpinner},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_STRETCHY, displayValue: this.textStretch},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BASIC_SWIVEL, displayValue: this.textBasicSwivel},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BOOMERANG, displayValue: this.textBoomerang},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BOUNCE, displayValue: this.textBounce},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_CREDITS, displayValue: this.textCredits},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_CURVE_DOWN, displayValue: this.textCurveDown},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_DROP, displayValue: this.textDrop},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_FLIP, displayValue: this.textFlip},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_FLOAT, displayValue: this.textFloat},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_PINWHEEL, displayValue: this.textPinwheel},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_SPIRAL_OUT, displayValue: this.textSpiralOut},
{group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_WHIP, displayValue: this.textWhip},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_4_POINT_STAR, displayValue: this.textPointStar4},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_5_POINT_STAR, displayValue: this.textPointStar5},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_6_POINT_STAR, displayValue: this.textPointStar6},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_8_POINT_STAR, displayValue: this.textPointStar8},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CIRCLE, displayValue: this.textCircle},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CRESCENT_MOON, displayValue: this.textCrescentMoon},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_DIAMOND, displayValue: this.textDiamond},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_EQUAL_TRIANGLE, displayValue: this.textEqualTriangle},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_FOOTBALL, displayValue: this.textFootball},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEART, displayValue: this.textHeart},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEXAGON, displayValue: this.textHexagon},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_OCTAGON, displayValue: this.textOctagon},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PARALLELOGRAM, displayValue: this.textParallelogram},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PENTAGON, displayValue: this.textPentagon},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_RIGHT_TRIANGLE, displayValue: this.textRightTriangle},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_SQUARE, displayValue: this.textSquare},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TEARDROP, displayValue: this.textTeardrop},
{group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TRAPEZOID, displayValue: this.textTrapezoid},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_DOWN, displayValue: this.textArcDown},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_LEFT, displayValue: this.textArcLeft},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_RIGHT, displayValue: this.textArcRight},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_UP, displayValue: this.textArcUp},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_LEFT, displayValue: this.textBounceLeft},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_RIGHT, displayValue: this.textBounceRight},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_CURVY_LEFT, displayValue: this.textCurvyLeft},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_CURVY_RIGHT, displayValue: this.textCurvyRight},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DECAYING_WAVE, displayValue: this.textDecayingWave},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_DOWN_RIGHT, displayValue: this.textDiagonalDownRight},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_UP_RIGHT, displayValue: this.textDiagonalUpRight},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DOWN, displayValue: this.textDown},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_FUNNEL, displayValue: this.textFunnel},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_HEARTBEAT, displayValue: this.textHeartbeat},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_LEFT, displayValue: this.textLeft},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_1, displayValue: this.textSCurve1},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_2, displayValue: this.textSCurve2},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_WAVE, displayValue: this.textSineWave},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_SPIRAL_LEFT, displayValue: this.textSpiralLeft},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_SPIRAL_RIGHT, displayValue: this.textSpiralRight},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SPRING, displayValue: this.textSpring},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_STAIRS_DOWN, displayValue: this.textStairsDown},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN, displayValue: this.textTurnDown},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN_RIGHT, displayValue: this.textTurnDownRight},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP, displayValue: this.textTurnUp},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP_RIGHT, displayValue: this.textTurnUpRight},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_UP, displayValue: this.textUp},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_WAVE, displayValue: this.textWave},
{group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ZIGZAG, displayValue: this.textZigzag},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_BEAN, displayValue: this.textBean},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVED_SQUARE, displayValue: this.textCurvedSquare},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVED_X, displayValue: this.textCurvedX},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVY_STAR, displayValue: this.textCurvyStar},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_FIGURE_8_FOUR, displayValue: this.textFigureFour},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, displayValue: this.textHorizontalFigure},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_SQUARE, displayValue: this.textInvertedSquare},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_TRIANGLE, displayValue: this.textInvertedTriangle},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_LOOP_DE_LOOP, displayValue: this.textLoopDeLoop},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_NEUTRON, displayValue: this.textNeutron},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_PEANUT, displayValue: this.textPeanut},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_POINTY_STAR, displayValue: this.textPointStar},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_SWOOSH, displayValue: this.textSwoosh},
{group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure}
];
},
getEffectOptionsData: function (group, type) {
switch (group) {
case 'menu-effect-group-entrance':
switch (type) {
case AscFormat.ENTRANCE_BLINDS:
return [
{value: AscFormat.ENTRANCE_BLINDS_HORIZONTAL, caption: this.textHorizontal},
{value: AscFormat.ENTRANCE_BLINDS_VERTICAL, caption: this.textVertical}
];
case AscFormat.ENTRANCE_BOX:
return [
{value: AscFormat.ENTRANCE_BOX_IN, caption: this.textIn},
{value: AscFormat.ENTRANCE_BOX_OUT, caption: this.textOut}
];
case AscFormat.ENTRANCE_CHECKERBOARD:
return [
{value: AscFormat.ENTRANCE_CHECKERBOARD_ACROSS, caption: this.textAcross},
{value: AscFormat.ENTRANCE_CHECKERBOARD_DOWN, caption: this.textDown}
];
case AscFormat.ENTRANCE_CIRCLE:
return [
{value: AscFormat.ENTRANCE_CIRCLE_IN, caption: this.textIn},
{value: AscFormat.ENTRANCE_CIRCLE_OUT, caption: this.textOut}
];
case AscFormat.ENTRANCE_DIAMOND:
return [
{value: AscFormat.ENTRANCE_DIAMOND_IN, caption: this.textIn},
{value: AscFormat.ENTRANCE_DIAMOND_OUT, caption: this.textOut}
];
case AscFormat.ENTRANCE_FLY_IN_FROM:
return [
{value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM, caption: this.textFromBottom},
{value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM_LEFT, caption: this.textFromBottomLeft},
{value: AscFormat.ENTRANCE_FLY_IN_FROM_LEFT, caption: this.textFromLeft},
{value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP_LEFT, caption: this.textFromTopLeft},
{value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP, caption: this.textFromTop},
{value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP_RIGHT, caption: this.textFromTopRight},
{value: AscFormat.ENTRANCE_FLY_IN_FROM_RIGHT, caption: this.textFromRight},
{value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM_RIGHT, caption: this.textFromBottomRight}
];
case AscFormat.ENTRANCE_PEEK_IN_FROM:
return [
{value: AscFormat.ENTRANCE_PEEK_IN_FROM_BOTTOM, caption: this.textFromBottom},
{value: AscFormat.ENTRANCE_PEEK_IN_FROM_LEFT, caption: this.textFromLeft},
{value: AscFormat.ENTRANCE_PEEK_IN_FROM_RIGHT, caption: this.textFromRight},
{value: AscFormat.ENTRANCE_PEEK_IN_FROM_TOP, caption: this.textFromTop}
];
case AscFormat.ENTRANCE_PLUS:
return [
{value: AscFormat.ENTRANCE_PLUS_IN, caption: this.textIn},
{value: AscFormat.ENTRANCE_PLUS_OUT, caption: this.textOut}
];
case AscFormat.ENTRANCE_RANDOM_BARS:
return [
{value: AscFormat.ENTRANCE_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal},
{value: AscFormat.ENTRANCE_RANDOM_BARS_VERTICAL, caption: this.textVertical}
];
case AscFormat.ENTRANCE_SPLIT:
return [
{value: AscFormat.ENTRANCE_SPLIT_HORIZONTAL_IN, caption: this.textHorizontalIn},
{value: AscFormat.ENTRANCE_SPLIT_HORIZONTAL_OUT, caption: this.textHorizontalOut},
{value: AscFormat.ENTRANCE_SPLIT_VERTICAL_IN, caption: this.textVerticalIn},
{value: AscFormat.ENTRANCE_SPLIT_VERTICAL_OUT, caption: this.textVerticalOut}
];
case AscFormat.ENTRANCE_STRIPS:
return [
{value: AscFormat.ENTRANCE_STRIPS_LEFT_DOWN, caption: this.textLeftDown},
{value: AscFormat.ENTRANCE_STRIPS_LEFT_UP, caption: this.textLeftUp},
{value: AscFormat.ENTRANCE_STRIPS_RIGHT_DOWN, caption: this.textRightDown},
{value: AscFormat.ENTRANCE_STRIPS_RIGHT_UP, caption: this.textRightUp}
];
case AscFormat.ENTRANCE_WHEEL:
return [
{value: AscFormat.ENTRANCE_WHEEL_1_SPOKE, caption: this.textSpoke1},
{value: AscFormat.ENTRANCE_WHEEL_2_SPOKE, caption: this.textSpoke2},
{value: AscFormat.ENTRANCE_WHEEL_3_SPOKE, caption: this.textSpoke3},
{value: AscFormat.ENTRANCE_WHEEL_4_SPOKE, caption: this.textSpoke4},
{value: AscFormat.ENTRANCE_WHEEL_8_SPOKE, caption: this.textSpoke8}
];
case AscFormat.ENTRANCE_WIPE_FROM:
return [
{value: AscFormat.ENTRANCE_WIPE_FROM_BOTTOM, caption: this.textFromBottom},
{value: AscFormat.ENTRANCE_WIPE_FROM_LEFT, caption: this.textFromLeft},
{value: AscFormat.ENTRANCE_WIPE_FROM_RIGHT, caption: this.textFromRight},
{value: AscFormat.ENTRANCE_WIPE_FROM_FROM_TOP, caption: this.textFromTop}
];
case AscFormat.ENTRANCE_ZOOM:
return [
{value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter},
{value: AscFormat.ENTRANCE_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter}
];
case AscFormat.ENTRANCE_BASIC_ZOOM:
return [
{value: AscFormat.ENTRANCE_BASIC_ZOOM_IN, caption: this.textIn},
{value: AscFormat.ENTRANCE_BASIC_ZOOM_IN_FROM_SCREEN_CENTER, caption: this.textInFromScreenCenter},
{value: AscFormat.ENTRANCE_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly},
{value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT, caption: this.textOut},
{value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT_FROM_SCREEN_BOTTOM, caption: this.textOutFromScreenBottom},
{value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly}
];
case AscFormat.ENTRANCE_STRETCH:
return [
{value: AscFormat.ENTRANCE_STRETCH_ACROSS, caption: this.textAcross},
{value: AscFormat.ENTRANCE_STRETCH_FROM_BOTTOM, caption: this.textFromBottom},
{value: AscFormat.ENTRANCE_STRETCH_FROM_LEFT, caption: this.textFromLeft},
{value: AscFormat.ENTRANCE_STRETCH_FROM_RIGHT, caption: this.textFromRight},
{value: AscFormat.ENTRANCE_STRETCH_FROM_TOP, caption: this.textFromTop}
];
case AscFormat.ENTRANCE_BASIC_SWIVEL:
return [
{value: AscFormat.ENTRANCE_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal},
{value: AscFormat.ENTRANCE_BASIC_SWIVEL_VERTICAL, caption: this.textVertical}
];
default:
return undefined;
}
break;
case 'menu-effect-group-exit':
switch (type){
case AscFormat.EXIT_BLINDS:
return [
{value: AscFormat.EXIT_BLINDS_HORIZONTAL, caption: this.textHorizontal},
{value: AscFormat.EXIT_BLINDS_VERTICAL, caption: this.textVertical}
];
case AscFormat.EXIT_BOX:
return [
{value: AscFormat.EXIT_BOX_IN, caption: this.textIn},
{value: AscFormat.EXIT_BOX_OUT, caption: this.textOut}
];
case AscFormat.EXIT_CHECKERBOARD:
return [
{value: AscFormat.EXIT_CHECKERBOARD_ACROSS, caption: this.textAcross},
{value: AscFormat.EXIT_CIRCLE_OUT, caption: this.textUp}
];
case AscFormat.EXIT_CIRCLE:
return [
{value: AscFormat.EXIT_CIRCLE_IN, caption: this.textIn},
{value: AscFormat.EXIT_BOX_OUT, caption: this.textOut}
];
case AscFormat.EXIT_DIAMOND:
return [
{value: AscFormat.EXIT_DIAMOND_IN, caption: this.textIn},
{value: AscFormat.EXIT_DIAMOND_IN, caption: this.textOut}
];
case AscFormat.EXIT_FLY_OUT_TO:
return [
{value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM, caption: this.textToBottom},
{value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM_LEFT, caption: this.textToBottomLeft},
{value: AscFormat.EXIT_FLY_OUT_TO_LEFT, caption: this.textToLeft},
{value: AscFormat.EXIT_FLY_OUT_TO_TOP_LEFT, caption: this.textToTopLeft},
{value: AscFormat.EXIT_FLY_OUT_TO_TOP, caption: this.textToTop},
{value: AscFormat.EXIT_FLY_OUT_TO_TOP_RIGHT, caption: this.textToTopRight},
{value: AscFormat.EXIT_FLY_OUT_TO_RIGHT, caption: this.textToRight},
{value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM_RIGHT, caption: this.textToBottomRight}
];
case AscFormat.EXIT_PEEK_OUT_TO:
return [
{value: AscFormat.EXIT_PEEK_OUT_TO_BOTTOM, caption: this.textToBottom},
{value: AscFormat.EXIT_PEEK_OUT_TO_LEFT, caption: this.textToLeft},
{value: AscFormat.EXIT_PEEK_OUT_TO_RIGHT, caption: this.textToRight},
{value: AscFormat.EXIT_PEEK_OUT_TO_TOP, caption: this.textToTop}
];
case AscFormat.EXIT_PLUS:
return [
{value: AscFormat.EXIT_PLUS_IN, caption: this.textIn},
{value: AscFormat.EXIT_PLUS_OUT, caption: this.textOut}
];
case AscFormat.EXIT_RANDOM_BARS:
return [
{value: AscFormat.EXIT_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal},
{value: AscFormat.EXIT_RANDOM_BARS_VERTICAL, caption: this.textVertical}
];
case AscFormat.EXIT_SPLIT:
return [
{value: AscFormat.EXIT_SPLIT_HORIZONTAL_IN, caption: this.textHorizontalIn},
{value: AscFormat.EXIT_SPLIT_HORIZONTAL_OUT, caption: this.textHorizontalOut},
{value: AscFormat.EXIT_SPLIT_VERTICAL_IN, caption: this.textVerticalIn},
{value: AscFormat.EXIT_SPLIT_VERTICAL_OUT, caption: this.textVerticalOut}
];
case AscFormat.EXIT_STRIPS:
return [
{value: AscFormat.EXIT_STRIPS_LEFT_DOWN, caption: this.textLeftDown},
{value: AscFormat.EXIT_STRIPS_LEFT_UP, caption: this.textLeftUp},
{value: AscFormat.EXIT_STRIPS_RIGHT_DOWN, caption: this.textRightDown},
{value: AscFormat.EXIT_STRIPS_RIGHT_UP, caption: this.textRightUp}
];
case AscFormat.EXIT_WHEEL:
return [
{value: AscFormat.EXIT_WHEEL_1_SPOKE, caption: this.textSpoke1},
{value: AscFormat.EXIT_WHEEL_2_SPOKE, caption: this.textSpoke2},
{value: AscFormat.EXIT_WHEEL_3_SPOKE, caption: this.textSpoke3},
{value: AscFormat.EXIT_WHEEL_4_SPOKE, caption: this.textSpoke4},
{value: AscFormat.EXIT_WHEEL_8_SPOKE, caption: this.textSpoke8}
];
case AscFormat.EXIT_WIPE_FROM:
return [
{value: AscFormat.EXIT_WIPE_FROM_BOTTOM, caption: this.textFromBottom},
{value: AscFormat.EXIT_WIPE_FROM_LEFT, caption: this.textFromLeft},
{value: AscFormat.EXIT_WIPE_FROM_RIGHT, caption: this.textFromRight},
{value: AscFormat.EXIT_WIPE_FROM_TOP, caption: this.textFromTop}
];
case AscFormat.EXIT_ZOOM:
return [
{value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter},
{value: AscFormat.ENTRANCE_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter}
];
case AscFormat.EXIT_BASIC_ZOOM:
return [
{value: AscFormat.EXIT_BASIC_ZOOM_IN, caption: this.textIn},
{value: AscFormat.EXIT_BASIC_ZOOM_IN_TO_SCREEN_BOTTOM, caption: this.textInToScreenCenter},
{value: AscFormat.EXIT_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly},
{value: AscFormat.EXIT_BASIC_ZOOM_OUT, caption: this.textOut},
{value: AscFormat.EXIT_BASIC_ZOOM_OUT_TO_SCREEN_CENTER, caption: this.textOutToScreenBottom},
{value: AscFormat.EXIT_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly}
];
case AscFormat.EXIT_COLLAPSE:
return [
{value: AscFormat.EXIT_COLLAPSE_ACROSS, caption: this.textAcross},
{value: AscFormat.EXIT_COLLAPSE_TO_BOTTOM, caption: this.textToBottom},
{value: AscFormat.EXIT_COLLAPSE_TO_LEFT, caption: this.textToLeft},
{value: AscFormat.EXIT_COLLAPSE_TO_RIGHT, caption: this.textToRight},
{value: AscFormat.EXIT_COLLAPSE_TO_TOP, caption: this.textToTop}
];
case AscFormat.EXIT_BASIC_SWIVEL:
return [
{value: AscFormat.EXIT_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal},
{value: AscFormat.EXIT_BASIC_SWIVEL_VERTICAL, caption: this.textVertical}
];
default:
return undefined;
}
break;
default:
return undefined;
}
}
}
})(), Common.define.effectData || {});
});

View file

@ -385,6 +385,19 @@
}
.menu-picker-container {
.group-description {
padding: 3px 0 3px 10px;
font-weight: bold;
}
.group-items-container .item {
box-shadow: none;
margin: @scaled-two-px-value 0 0 @scaled-two-px-value;
&:last-child {
margin-bottom: @combo-dataview-item-margins;
}
}
.last-item {
margin-bottom: @combo-dataview-item-margins;
}
@ -397,5 +410,31 @@
}
}
}
}
.combo-transitions, .menu-animation {
.btn_item {
color: @text-normal-ie;
color: @text-normal;
display: inline-flex;
flex-direction: column;
align-items: center;
.icon:not(svg) {
width: @x-huge-btn-icon-size;
height: @x-huge-btn-icon-size;
min-width: 0;
margin-top: -2px;
}
.caption{
line-height: 18px;
font-size: 11px;
text-overflow: ellipsis;
overflow: hidden;
width: 100%;
text-align: center;
padding: 0 2px;
}
}
}

View file

@ -0,0 +1,50 @@
{
"common.view.modals.txtCopy": "Buferə kopyalayın",
"common.view.modals.txtEmbed": "Daxil et",
"common.view.modals.txtHeight": "Hündürlük",
"common.view.modals.txtShare": "Link paylaşın",
"common.view.modals.txtWidth": "En",
"DE.ApplicationController.convertationErrorText": "Çevrilmə alınmadı.",
"DE.ApplicationController.convertationTimeoutText": "Çevrilmə vaxtı maksimumu keçdi.",
"DE.ApplicationController.criticalErrorTitle": "Xəta",
"DE.ApplicationController.downloadErrorText": "Endirmə prosesi uğursuz oldu.",
"DE.ApplicationController.downloadTextText": "Sənəd endirilir...",
"DE.ApplicationController.errorAccessDeny": "Hüquqlarınız olmayan əməliyyatı yerinə yetirməyə çalışırsınız.<br>Sənəd Serveri inzibatçınızla əlaqə saxlayın.",
"DE.ApplicationController.errorDefaultMessage": "Xəta kodu: %1",
"DE.ApplicationController.errorEditingDownloadas": "Sənədlə işləyərkən xəta baş verdi. <br> Faylın ehtiyat nüsxəsini kompüterinizin sərtt diskində saxlamaq üçün \"... Kimi Endirin...\" seçimindən istifadə edin.",
"DE.ApplicationController.errorFilePassProtect": "Fayl parolla qorunur və onu açmaq mümkün deyil.",
"DE.ApplicationController.errorFileSizeExceed": "Faylın ölçüsü serveriniz üçün təyin edilmiş məhdudiyyəti keçir.<br>Təfərrüatlar üçün Sənəd Serveri inzibatçınızla əlaqə saxlayın.",
"DE.ApplicationController.errorForceSave": "Faylı saxlayarkən xəta baş verdi. Zəhmət olmasa, faylı kompüterinizin sərtt diskində saxlamaq üçün “... kimi endir” seçimindən istifadə edin və ya sonra yenidən cəhd edin.",
"DE.ApplicationController.errorLoadingFont": "Şriftlər yüklənməyib.<br> Sənəd Serveri administratorunuzla əlaqə saxlayın.",
"DE.ApplicationController.errorSubmit": "Göndərmə alındı.",
"DE.ApplicationController.errorTokenExpire": "Sənədin təhlükəsizlik nişanının vaxtı bitib.<br>Sənəd Server inzibatçısı ilə əlaqə saxlayın.",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "İnternet bağlantısı bərpa edildi və fayl versiyası dəyişdirildi.<br>İşə davam etməzdən əvvəl heç nəyin itirilmədiyindən əmin olmaq üçün faylı endirməli və ya onun məzmununu kopyalamalı, sonra bu səhifəni yenidən yükləməlisiniz.",
"DE.ApplicationController.errorUserDrop": "Fayla hazırda daxil olmaq mümkün deyil.",
"DE.ApplicationController.notcriticalErrorTitle": "Xəbərdarlıq",
"DE.ApplicationController.openErrorText": "Faylı açan zaman xəta baş verdi.",
"DE.ApplicationController.scriptLoadError": "Bağlantı çox yavaşdır, bəzi komponentləri yükləmək mümkün deyil. Səhifəni yenidən yükləyin.",
"DE.ApplicationController.textAnonymous": "Anonim",
"DE.ApplicationController.textClear": "Bütün Sahələri Təmizləyin",
"DE.ApplicationController.textGotIt": "Analdım",
"DE.ApplicationController.textGuest": "Qonaq",
"DE.ApplicationController.textLoadingDocument": "Sənəd yüklənir",
"DE.ApplicationController.textNext": "Növbəti Sahə",
"DE.ApplicationController.textOf": "/",
"DE.ApplicationController.textRequired": "Tələb olunan bütün sahələri doldurub formanı göndərin.",
"DE.ApplicationController.textSubmit": "Göndər",
"DE.ApplicationController.textSubmited": "<b> Forma uğurla təqdim edildi </b> <br> İpucunu bağlamaq üçün bura klikləyin",
"DE.ApplicationController.txtClose": "Bağla",
"DE.ApplicationController.txtEmpty": "(Boşdur)",
"DE.ApplicationController.txtPressLink": "Ctrl düyməsinə basıb linkə klikləyin",
"DE.ApplicationController.unknownErrorText": "Naməlum xəta.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Brauzeriniz dəstəklənmir.",
"DE.ApplicationController.waitText": "Zəhmət olmasa, gözləyin...",
"DE.ApplicationView.txtDownload": "Endir",
"DE.ApplicationView.txtDownloadDocx": "docx kimi endirin",
"DE.ApplicationView.txtDownloadPdf": "Pdf kimi yükləyin",
"DE.ApplicationView.txtEmbed": "Daxil et",
"DE.ApplicationView.txtFileLocation": "Fayl yerini açın",
"DE.ApplicationView.txtFullScreen": "Tam ekran",
"DE.ApplicationView.txtPrint": "Çap",
"DE.ApplicationView.txtShare": "Paylaş"
}

View file

@ -11,20 +11,39 @@
"DE.ApplicationController.downloadTextText": "Hent dokument...",
"DE.ApplicationController.errorAccessDeny": "Du prøver at foretage en handling, som du ikke har rettighederne til.<br>venligst kontakt din administrator for hjælp.",
"DE.ApplicationController.errorDefaultMessage": "Fejlkode: %1",
"DE.ApplicationController.errorEditingDownloadas": "Der opstod en fejl under arbejdet med dokumentet. <br> Brug \"download som...\" valgmuligheden for at gemme en sikkerhedsversion til din computers harddisk.",
"DE.ApplicationController.errorFilePassProtect": "Dokumentet er beskyttet af et kodeord og kunne ikke åbnes.",
"DE.ApplicationController.errorFileSizeExceed": "Filens størrelse overstiger grænsen, som er sat for din server.<br>Kontakt venligst din administrator for hjælp.",
"DE.ApplicationController.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.",
"DE.ApplicationController.errorLoadingFont": "Skrifttyper er ikke indlæst.<br>Kontakt din dokument server administrator.",
"DE.ApplicationController.errorSubmit": "Send mislykkedes.",
"DE.ApplicationController.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.<br>Kontakt venligst din Document Server administrator. ",
"DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.<br>Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.",
"DE.ApplicationController.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ",
"DE.ApplicationController.notcriticalErrorTitle": "Advarsel",
"DE.ApplicationController.openErrorText": "Der skete en fejl under åbningen af filen",
"DE.ApplicationController.scriptLoadError": "Forbindelsen er for langsom, og nogle komponenter kunne ikke indlæses. Indlæs siden igen.",
"DE.ApplicationController.textAnonymous": "Anonym",
"DE.ApplicationController.textClear": "Ryd alle felter",
"DE.ApplicationController.textGotIt": "Forstået",
"DE.ApplicationController.textGuest": "Gæst",
"DE.ApplicationController.textLoadingDocument": "Indlæser dokument",
"DE.ApplicationController.textNext": "Næste felt",
"DE.ApplicationController.textOf": "af",
"DE.ApplicationController.textRequired": "Udfyld alle obligatoriske felter for at sende formularen.",
"DE.ApplicationController.textSubmit": "Send",
"DE.ApplicationController.textSubmited": "\n<b>Formularen blev indsendt</b><br>Klik for at lukke tippet",
"DE.ApplicationController.txtClose": "Luk",
"DE.ApplicationController.txtEmpty": "(Tom)",
"DE.ApplicationController.txtPressLink": "Tryk CTRL og klik på linket",
"DE.ApplicationController.unknownErrorText": "Ukendt fejl.",
"DE.ApplicationController.unsupportedBrowserErrorText": "Din browser understøttes ikke.",
"DE.ApplicationController.waitText": "Vent venligst...",
"DE.ApplicationView.txtDownload": "Hent",
"DE.ApplicationView.txtDownloadDocx": "Download som docx",
"DE.ApplicationView.txtDownloadPdf": "Download som pdf",
"DE.ApplicationView.txtEmbed": "Indlejre",
"DE.ApplicationView.txtFileLocation": "Åben filplacering",
"DE.ApplicationView.txtFullScreen": "Fuld skærm",
"DE.ApplicationView.txtPrint": "Udskriv",
"DE.ApplicationView.txtShare": "Del"

View file

@ -103,6 +103,7 @@ define([
this.api.asc_registerCallback('asc_onCountPages', this.onCountPages.bind(this));
this.api.asc_registerCallback('asc_onCurrentPage', this.onCurrentPage.bind(this));
this.api.asc_registerCallback('asc_onDocumentModifiedChanged', _.bind(this.onDocumentModifiedChanged, this));
this.api.asc_registerCallback('asc_onZoomChange', this.onApiZoomChange.bind(this));
// Initialize api gateway
Common.Gateway.on('init', this.loadConfig.bind(this));
@ -1392,6 +1393,30 @@ define([
onThemeClick: function(menu, item) {
(item.value!==null) && Common.UI.Themes.setTheme(item.value);
},
onApiZoomChange: function(percent, type) {
this.view.mnuZoom.items[0].setChecked(type == 2, true);
this.view.mnuZoom.items[1].setChecked(type == 1, true);
this.view.mnuZoom.options.value = percent;
if ( this.view.mnuZoom.$el )
$('.menu-zoom label.zoom', this.view.mnuZoom.$el).html(percent + '%');
},
onMenuZoomClick: function(menu, item, e){
switch ( item.value ) {
case 'zoom:page':
item.isChecked() ? this.api.zoomFitToPage() : this.api.zoomCustomMode();
break;
case 'zoom:width':
item.isChecked() ? this.api.zoomFitToWidth() : this.api.zoomCustomMode();
break;
}
},
onBtnZoom: function (btn, e) {
btn == 'up' ? this.api.zoomIn() : this.api.zoomOut();
e.stopPropagation();
},
onDarkModeClick: function(item) {
Common.UI.Themes.toggleContentTheme();
@ -1438,20 +1463,20 @@ define([
else
last = menuItems[5];
// theme
if (!menuItems[6].isVisible())
menuItems[7].setVisible(false);
// theme and zoom
if (!menuItems[6].isVisible() && !menuItems[7].isVisible())
menuItems[8].setVisible(false);
else
last = menuItems[7];
last = menuItems[8];
// share, location
if (!menuItems[8].isVisible() && !menuItems[9].isVisible())
menuItems[10].setVisible(false);
if (!menuItems[9].isVisible() && !menuItems[10].isVisible())
menuItems[11].setVisible(false);
else
last = menuItems[10];
last = menuItems[11];
// embed, fullscreen
if (!menuItems[11].isVisible() && !menuItems[12].isVisible())
if (!menuItems[12].isVisible() && !menuItems[13].isVisible())
last && last.setVisible(false);
menu.off('show:after', initMenu);
@ -1504,22 +1529,22 @@ define([
}
if ( !this.embedConfig.shareUrl || this.appOptions.isOFORM) {
menuItems[8].setVisible(false);
itemsCount--;
}
if (!this.appOptions.canBackToFolder) {
menuItems[9].setVisible(false);
itemsCount--;
}
if (!this.appOptions.canBackToFolder) {
menuItems[10].setVisible(false);
itemsCount--;
}
if ( !this.embedConfig.embedUrl || this.appOptions.isOFORM) {
menuItems[11].setVisible(false);
menuItems[12].setVisible(false);
itemsCount--;
}
if ( !this.embedConfig.fullscreenUrl || this.appOptions.isOFORM) {
menuItems[12].setVisible(false);
menuItems[13].setVisible(false);
itemsCount--;
}
if (itemsCount<1)
@ -1546,7 +1571,11 @@ define([
// zoom
$('#id-btn-zoom-in').on('click', this.api.zoomIn.bind(this.api));
$('#id-btn-zoom-out').on('click', this.api.zoomOut.bind(this.api));
$('#id-menu-zoom-in').on('click', _.bind(this.onBtnZoom, this,'up'));
$('#id-menu-zoom-out').on('click', _.bind(this.onBtnZoom, this,'down'));
this.view.btnOptions.menu.on('item:click', _.bind(this.onOptionsClick, this));
this.view.mnuZoom.on('item:click', _.bind(this.onMenuZoomClick, this));
// pages
var $pagenum = this.view.txtGoToPage._input;

View file

@ -31,6 +31,31 @@ define([
items: []
})
},
{caption: this.textZoom, value: 'zoomn', conCls: 'mi-icon' ,
menu : this.mnuZoom = new Common.UI.Menu({
cls: 'shifted-right',
menuAlign: 'tl-tr',
items: [
{caption: this.textFitToPage, value: 'zoom:page', toggleGroup: 'view-zoom', checkable: true},
{caption: this.textFitToWidth, value: 'zoom:width', toggleGroup: 'view-zoom', checkable: true},
(new Common.UI.MenuItem({
template: _.template([
'<div id="id-menu-zoom" class="menu-zoom" style="height: 26px;" ',
'<% if(!_.isUndefined(options.stopPropagation)) { %>',
'data-stopPropagation="true"',
'<% } %>', '>',
'<label class="title">' + this.textZoom + '</label>',
'<button id="id-menu-zoom-in" type="button" style="float:right; margin: 2px 5px 0 0;" class="btn btn-toolbar"><i class="mi-icon svg-icon zoom-in">&nbsp;</i></button>',
'<label class="zoom"><%= options.value %>%</label>',
'<button id="id-menu-zoom-out" type="button" style="float:right; margin-top: 2px;" class="btn btn-toolbar"><i class="mi-icon svg-icon zoom-out">&nbsp;</i></button>',
'</div>'
].join('')),
stopPropagation: true,
value: 30
}))
]
})
},
{caption: '--'},
{caption: this.txtShare, value: 'share', iconCls: 'mi-icon svg-icon share'},
{caption: this.txtFileLocation, value: 'close', iconCls: 'mi-icon svg-icon go-to-location'},
@ -42,6 +67,7 @@ define([
});
this.btnOptions.render($('#box-tools'));
this.btnClear = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon clear-style',
@ -119,7 +145,10 @@ define([
textPrintSel: 'Print Selection',
txtDarkMode: 'Dark mode',
textUndo: 'Undo',
textRedo: 'Redo'
textRedo: 'Redo',
textZoom: 'Zoom',
textFitToPage: 'Fit to Page',
textFitToWidth: 'Fit to Width'
}, DE.Views.ApplicationView || {}));
});

View file

@ -0,0 +1,166 @@
{
"Common.UI.Calendar.textApril": "aprel",
"Common.UI.Calendar.textAugust": "avqust",
"Common.UI.Calendar.textDecember": "dekabr",
"Common.UI.Calendar.textFebruary": "Fevral",
"Common.UI.Calendar.textJanuary": "Yanvar",
"Common.UI.Calendar.textJuly": "İyul",
"Common.UI.Calendar.textJune": "İyun",
"Common.UI.Calendar.textMarch": "Mart",
"Common.UI.Calendar.textMay": "May",
"Common.UI.Calendar.textMonths": "Aylar",
"Common.UI.Calendar.textNovember": "Noyabr",
"Common.UI.Calendar.textOctober": "Oktyabr",
"Common.UI.Calendar.textSeptember": "Sentyabr",
"Common.UI.Calendar.textShortApril": "Apr",
"Common.UI.Calendar.textShortAugust": "Avq",
"Common.UI.Calendar.textShortDecember": "Dek",
"Common.UI.Calendar.textShortFebruary": "Fev",
"Common.UI.Calendar.textShortFriday": "Fr",
"Common.UI.Calendar.textShortJanuary": "\nYan",
"Common.UI.Calendar.textShortJuly": "İyul",
"Common.UI.Calendar.textShortJune": "İyun",
"Common.UI.Calendar.textShortMarch": "Mart",
"Common.UI.Calendar.textShortMay": "May",
"Common.UI.Calendar.textShortMonday": "Mo",
"Common.UI.Calendar.textShortNovember": "Noyabr",
"Common.UI.Calendar.textShortOctober": "Oktyabr",
"Common.UI.Calendar.textShortSaturday": "Sa",
"Common.UI.Calendar.textShortSeptember": "Sentyabr",
"Common.UI.Calendar.textShortSunday": "Su",
"Common.UI.Calendar.textShortThursday": "Th",
"Common.UI.Calendar.textShortTuesday": "Tu",
"Common.UI.Calendar.textShortWednesday": "We",
"Common.UI.Calendar.textYears": "İllər",
"Common.UI.Themes.txtThemeClassicLight": "Klassik İşıq",
"Common.UI.Themes.txtThemeDark": "Tünd",
"Common.UI.Themes.txtThemeLight": "Açıq",
"Common.UI.Window.cancelButtonText": "Ləğv et",
"Common.UI.Window.closeButtonText": "Bağla",
"Common.UI.Window.noButtonText": "Xeyr",
"Common.UI.Window.okButtonText": "OK",
"Common.UI.Window.textConfirmation": "Təsdiq",
"Common.UI.Window.textDontShow": "Bu mesajı bir daha göstərmə",
"Common.UI.Window.textError": "Xəta",
"Common.UI.Window.textInformation": "İnformasiya",
"Common.UI.Window.textWarning": "Xəbərdarlıq",
"Common.UI.Window.yesButtonText": "Bəli",
"Common.Views.CopyWarningDialog.textDontShow": "Bu mesajı bir daha göstərmə",
"Common.Views.CopyWarningDialog.textMsg": "Kopyalama, kəsmə və yapışdırmaq funksiyaları kontekst menyusu əmrləri ilə yalnız bu redaktor tabında yerinə yetirilə bilər. <br> <br> Redaktor nişanı xaricində olan proqramlara köçürmək və ya yapışdırmaq üçün redaktor aşağıdakı klaviatura qısa yollarından istifadə edin:",
"Common.Views.CopyWarningDialog.textTitle": "Kopyalama, Kəsmə və Yapışdırma Əməliyyatları",
"Common.Views.CopyWarningDialog.textToCopy": "Kopyalama üçün",
"Common.Views.CopyWarningDialog.textToCut": "Kəsmək üçün",
"Common.Views.CopyWarningDialog.textToPaste": "Yerləşdirmək üçün",
"Common.Views.EmbedDialog.textHeight": "Hündürlük",
"Common.Views.EmbedDialog.textTitle": "Daxil et",
"Common.Views.EmbedDialog.textWidth": "En",
"Common.Views.EmbedDialog.txtCopy": "Buferə kopyalayın",
"Common.Views.EmbedDialog.warnCopy": "Brauzer xətası! [Ctrl] + [C] klaviatura qısa yolundan istifadə edin.",
"Common.Views.ImageFromUrlDialog.textUrl": "Təsvir URL-ni yerləşdirin:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Bu sahə tələb olunur",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Bu sahə \"http://www.example.com\" formatında URL olmalıdır",
"Common.Views.OpenDialog.closeButtonText": "Faylı Bağla",
"Common.Views.OpenDialog.txtEncoding": "Kodlaşdırma",
"Common.Views.OpenDialog.txtIncorrectPwd": "Parol səhvdir.",
"Common.Views.OpenDialog.txtOpenFile": "Faylı açmaq üçün parol daxil edin",
"Common.Views.OpenDialog.txtPassword": "Parol",
"Common.Views.OpenDialog.txtPreview": "Önbaxış",
"Common.Views.OpenDialog.txtProtected": "Şifrəni daxil edib faylı açdıqdan sonra faylın cari parolu sıfırlanacaq.",
"Common.Views.OpenDialog.txtTitle": "Seçimlərin %1-ni seçin",
"Common.Views.OpenDialog.txtTitleProtected": "Qorunan Fayl",
"Common.Views.SaveAsDlg.textLoading": "Yüklənir",
"Common.Views.SaveAsDlg.textTitle": "Yadda saxlama üçün qovluq",
"Common.Views.SelectFileDlg.textLoading": "Yüklənir",
"Common.Views.SelectFileDlg.textTitle": "Verilənlər mənbəyini seçin",
"Common.Views.ShareDialog.textTitle": "Link paylaşın",
"Common.Views.ShareDialog.txtCopy": "Buferə kopyalayın",
"Common.Views.ShareDialog.warnCopy": "Brauzer xətası! [Ctrl] + [C] klaviatura qısa yolundan istifadə edin.",
"DE.Controllers.ApplicationController.convertationErrorText": "Çevrilmə alınmadı.",
"DE.Controllers.ApplicationController.convertationTimeoutText": "Çevrilmə vaxtı maksimumu keçdi.",
"DE.Controllers.ApplicationController.criticalErrorTitle": "Xəta",
"DE.Controllers.ApplicationController.downloadErrorText": "Endirmə prosesi uğursuz oldu.",
"DE.Controllers.ApplicationController.downloadTextText": "Sənəd endirilir...",
"DE.Controllers.ApplicationController.errorAccessDeny": "Hüquqlarınız olmayan əməliyyatı yerinə yetirməyə çalışırsınız.<br>Sənəd Serveri inzibatçınızla əlaqə saxlayın.",
"DE.Controllers.ApplicationController.errorBadImageUrl": "Təsvir URL-i yanlışdır",
"DE.Controllers.ApplicationController.errorConnectToServer": "Sənədi saxlamaq mümkün olmadı. Lütfən, əlaqə parametrlərini yoxlayın və ya inzibatçınızla əlaqə saxlayın.<br>'OK' düyməsini kliklədiyiniz zaman sizdən sənədi endirmək təklif olunacaq.",
"DE.Controllers.ApplicationController.errorDataEncrypted": "Şifrələnmiş dəyişikliklər qəbul edildi, onları deşifrə etmək mümkün deyil.",
"DE.Controllers.ApplicationController.errorDefaultMessage": "Xəta kodu: %1",
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Sənədlə işləyərkən xəta baş verdi. <br> Faylın ehtiyat nüsxəsini kompüterinizin sərtt diskində saxlamaq üçün \"... Kimi Endirin...\" seçimindən istifadə edin.",
"DE.Controllers.ApplicationController.errorEditingSaveas": "Sənədlə işləyərkən xəta baş verdi. <br> Yedək nüsxəsini kompüterinizin sərt diskində saxlamaq üçün \"... kimi yadda saxla\" seçimindən istifadə edin.",
"DE.Controllers.ApplicationController.errorFilePassProtect": "Fayl parolla qorunur və onu açmaq mümkün deyil.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Faylın ölçüsü serveriniz üçün təyin edilmiş məhdudiyyəti keçir.<br>Təfərrüatlar üçün Sənəd Serveri inzibatçınızla əlaqə saxlayın.",
"DE.Controllers.ApplicationController.errorForceSave": "Faylı saxlayarkən xəta baş verdi. Zəhmət olmasa, faylı kompüterinizin sərtt diskində saxlamaq üçün “... kimi endir” seçimindən istifadə edin və ya sonra yenidən cəhd edin.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Şriftlər yüklənməyib.<br> Sənəd Serveri administratorunuzla əlaqə saxlayın.",
"DE.Controllers.ApplicationController.errorServerVersion": "Redaktor versiyası yeniləndi. Dəyişiklikləri tətbiq etmək üçün səhifə yenidən yüklənəcək.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Sənədin redaktə sessiyasının vaxtı bitdi. Səhifəni yenidən yükləyin.",
"DE.Controllers.ApplicationController.errorSessionIdle": "Sənəd uzun müddətdir ki, redaktə olunmayıb. Səhifəni yenidən yükləyin.",
"DE.Controllers.ApplicationController.errorSessionToken": "Server ilə əlaqə kəsildi. Səhifəni yenidən yükləyin.",
"DE.Controllers.ApplicationController.errorSubmit": "Göndərmə alındı.",
"DE.Controllers.ApplicationController.errorToken": "Sənədin təhlükəsizlik nişanı düzgün formalaşmayıb.<br>Sənəd Server inzibatçısı ilə əlaqə saxlayın.",
"DE.Controllers.ApplicationController.errorTokenExpire": "Sənədin təhlükəsizlik nişanının vaxtı bitib.<br>Sənəd Server inzibatçısı ilə əlaqə saxlayın.",
"DE.Controllers.ApplicationController.errorUpdateVersion": "Fayl versiyası dəyişdirilib. Səhifə yenidən yüklənəcək.",
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "İnternet bağlantısı bərpa edildi və fayl versiyası dəyişdirildi.<br>İşə davam etməzdən əvvəl heç nəyin itirilmədiyindən əmin olmaq üçün faylı endirməli və ya onun məzmununu kopyalamalı, sonra bu səhifəni yenidən yükləməlisiniz.",
"DE.Controllers.ApplicationController.errorUserDrop": "Fayla hazırda daxil olmaq mümkün deyil.",
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Bağlantı kəsildi. Siz hələ də sənədə baxa bilərsiniz, lakin əlaqə yenidən qurulana və səhifə təzələnənə qədər onu endirə və ya çap edə bilməzsiniz.",
"DE.Controllers.ApplicationController.mniImageFromFile": "Fayldan Təsvir",
"DE.Controllers.ApplicationController.mniImageFromStorage": "Yaddaşdan Təsvir",
"DE.Controllers.ApplicationController.mniImageFromUrl": "URL-dən Təsvir",
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Xəbərdarlıq",
"DE.Controllers.ApplicationController.openErrorText": "Faylı açan zaman xəta baş verdi.",
"DE.Controllers.ApplicationController.saveErrorText": "Faylı yadda saxlayarkən xəta baş verdi.",
"DE.Controllers.ApplicationController.saveErrorTextDesktop": "Bu faylı saxlamaq və ya yaratmaq mümkün deyil.<br>Mümkün səbəblər: <br>1. Fayl yalnız oxumaq üçündür. <br>2. Fayl digər istifadəçilər tərəfindən redaktə olunur. <br>3. Disk doludur və ya xarabdır.",
"DE.Controllers.ApplicationController.scriptLoadError": "Bağlantı çox yavaşdır, bəzi komponentləri yükləmək mümkün deyil. Səhifəni yenidən yükləyin.",
"DE.Controllers.ApplicationController.textAnonymous": "Anonim",
"DE.Controllers.ApplicationController.textBuyNow": "Veb sayta daxil olun",
"DE.Controllers.ApplicationController.textCloseTip": "İpucunu bağlamaq üçün klikləyin.",
"DE.Controllers.ApplicationController.textContactUs": "Satışlarla əlaqə",
"DE.Controllers.ApplicationController.textGotIt": "Anladım",
"DE.Controllers.ApplicationController.textGuest": "Qonaq",
"DE.Controllers.ApplicationController.textLoadingDocument": "Sənəd yüklənir",
"DE.Controllers.ApplicationController.textNoLicenseTitle": "Lisenziya limitinə çatdı",
"DE.Controllers.ApplicationController.textOf": "/",
"DE.Controllers.ApplicationController.textRequired": "Tələb olunan bütün sahələri doldurub formanı göndərin.",
"DE.Controllers.ApplicationController.textSaveAs": "PDF kimi yadda saxlayın",
"DE.Controllers.ApplicationController.textSaveAsDesktop": "... kimi yadda saxlayın",
"DE.Controllers.ApplicationController.textSubmited": "<b> Forma uğurla təqdim edildi </b> <br> İpucunu bağlamaq üçün bura klikləyin",
"DE.Controllers.ApplicationController.titleServerVersion": "Redaktor yeniləndi",
"DE.Controllers.ApplicationController.titleUpdateVersion": "Versiya dəyişdirildi",
"DE.Controllers.ApplicationController.txtArt": "Mətniniz buradadır",
"DE.Controllers.ApplicationController.txtChoose": "Element seçin",
"DE.Controllers.ApplicationController.txtClickToLoad": "Şəkli yükləmək üçün klikləyin",
"DE.Controllers.ApplicationController.txtClose": "Bağla",
"DE.Controllers.ApplicationController.txtEmpty": "(Boşdur)",
"DE.Controllers.ApplicationController.txtEnterDate": "Tarixi daxil edin",
"DE.Controllers.ApplicationController.txtPressLink": "Ctrl düyməsinə basıb linkə klikləyin",
"DE.Controllers.ApplicationController.txtUntitled": "Başlıqsız",
"DE.Controllers.ApplicationController.unknownErrorText": "Naməlum xəta.",
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Brauzeriniz dəstəklənmir.",
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Naməlum təsvir formatı.",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.",
"DE.Controllers.ApplicationController.waitText": "Zəhmət olmasa, gözləyin...",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "Siz %1 redaktorlarına eyni vaxtda qoşulma limitinə çatdınız. Bu sənəd yalnız baxmaq üçün açılacaq.<br>Ətraflı məlumat üçün inzibatçınızla əlaqə saxlayın.",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Lisenziyanın müddəti bitdi.<br>Sənəd redaktə funksiyasına girişiniz yoxdur.<br>Lütfən, inzibatçınızla əlaqə saxlayın.",
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Lisenziya yenilənməlidir.<br>Sənəd redaktə funksiyasına məhdud girişiniz var.<br>Tam giriş əldə etmək üçün inzibatçınızla əlaqə saxlayın.",
"DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "%1 redaktor üçün istifadəçi limitinə çatdınız. Ətraflı öyrənmək üçün admininizlə əlaqə saxlayın.",
"DE.Controllers.ApplicationController.warnNoLicense": "Siz %1 redaktorlarına eyni vaxtda qoşulma limitinə çatdınız. Bu sənəd yalnız baxmaq üçün açılacaq.<br>Şəxsi təkmilləşdirmə şərtləri üçün %1 satış komandası ilə əlaqə saxlayın.",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "%1 redaktor üçün istifadəçi limitinə çatdınız. Şəxsi təkmilləşdirmə şərtləri üçün %1 satış komandası ilə əlaqə saxlayın.",
"DE.Views.ApplicationView.textClear": "Bütün Sahələri Təmizləyin",
"DE.Views.ApplicationView.textCopy": "Kopyala",
"DE.Views.ApplicationView.textCut": "Kəs",
"DE.Views.ApplicationView.textNext": "Növbəti Sahə",
"DE.Views.ApplicationView.textPaste": "Yapışdır",
"DE.Views.ApplicationView.textPrintSel": "Seçimi çap edin",
"DE.Views.ApplicationView.textRedo": "Təkrar edin",
"DE.Views.ApplicationView.textSubmit": "Göndər",
"DE.Views.ApplicationView.textUndo": "Geri qaytar",
"DE.Views.ApplicationView.txtDarkMode": "Qaranlıq rejimi",
"DE.Views.ApplicationView.txtDownload": "Endir",
"DE.Views.ApplicationView.txtDownloadDocx": "docx kimi endirin",
"DE.Views.ApplicationView.txtDownloadPdf": "Pdf kimi yükləyin",
"DE.Views.ApplicationView.txtEmbed": "Daxil et",
"DE.Views.ApplicationView.txtFileLocation": "Fayl yerini açın",
"DE.Views.ApplicationView.txtFullScreen": "Tam ekran",
"DE.Views.ApplicationView.txtPrint": "Çap",
"DE.Views.ApplicationView.txtShare": "Paylaş",
"DE.Views.ApplicationView.txtTheme": "İnterfeys mövzusu"
}

View file

@ -1,26 +1,166 @@
{
"Common.UI.Calendar.textApril": "April",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textDecember": "December",
"Common.UI.Calendar.textFebruary": "Februar",
"Common.UI.Calendar.textJanuary": "Januar",
"Common.UI.Calendar.textJuly": "Juli",
"Common.UI.Calendar.textJune": "Juni",
"Common.UI.Calendar.textMarch": "Marts",
"Common.UI.Calendar.textMay": "Maj",
"Common.UI.Calendar.textMonths": "måneder",
"Common.UI.Calendar.textNovember": "November",
"Common.UI.Calendar.textOctober": "Oktober",
"Common.UI.Calendar.textSeptember": "September",
"Common.UI.Calendar.textShortApril": "Apr",
"Common.UI.Calendar.textShortAugust": "Aug",
"Common.UI.Calendar.textShortDecember": "Dec",
"Common.UI.Calendar.textShortFebruary": "Feb",
"Common.UI.Calendar.textShortFriday": "Fre",
"Common.UI.Calendar.textShortJanuary": "Jan",
"Common.UI.Calendar.textShortJuly": "Jul",
"Common.UI.Calendar.textShortJune": "Jun",
"Common.UI.Calendar.textShortMarch": "Mar",
"Common.UI.Calendar.textShortMay": "Maj",
"Common.UI.Calendar.textShortMonday": "Ma",
"Common.UI.Calendar.textShortNovember": "Nov",
"Common.UI.Calendar.textShortOctober": "Okt",
"Common.UI.Calendar.textShortSaturday": "Lø",
"Common.UI.Calendar.textShortSeptember": "Sep",
"Common.UI.Calendar.textShortSunday": "Sø",
"Common.UI.Calendar.textShortThursday": "To",
"Common.UI.Calendar.textShortTuesday": "Ti",
"Common.UI.Calendar.textShortWednesday": "Ons",
"Common.UI.Calendar.textYears": "år",
"Common.UI.Themes.txtThemeClassicLight": "Klassisk lys",
"Common.UI.Themes.txtThemeDark": "Mørk",
"Common.UI.Themes.txtThemeLight": "Lys",
"Common.UI.Window.cancelButtonText": "Annuller",
"Common.UI.Window.closeButtonText": "Luk",
"Common.UI.Window.noButtonText": "Nej",
"Common.UI.Window.okButtonText": "Ok",
"Common.UI.Window.textConfirmation": "Bekræftelse",
"Common.UI.Window.textDontShow": "Vis ikke denne meddelelse igen",
"Common.UI.Window.textError": "Fejl",
"Common.UI.Window.textInformation": "Oplysninger",
"Common.UI.Window.textWarning": "Advarsel",
"Common.UI.Window.yesButtonText": "Ja",
"Common.Views.CopyWarningDialog.textDontShow": "Vis ikke denne meddelelse igen",
"Common.Views.CopyWarningDialog.textMsg": "Kopier, klip og indsæt handlinger ved hjælp af kontekstmenuhandlinger udføres kun på denne redigeringsfane.<br><br>For at kopiere eller indsætte til eller fra programmer uden for redigeringsfanen skal du bruge følgende tastaturkombinationer:",
"Common.Views.CopyWarningDialog.textTitle": "Kopier, Klip og Indsæt handlinger",
"Common.Views.CopyWarningDialog.textToCopy": "til kopiering",
"Common.Views.CopyWarningDialog.textToCut": "For klipning",
"Common.Views.CopyWarningDialog.textToPaste": "for sæt ind",
"Common.Views.EmbedDialog.textHeight": "Højde",
"Common.Views.EmbedDialog.textTitle": "Indlejre",
"Common.Views.EmbedDialog.textWidth": "Bredde",
"Common.Views.EmbedDialog.txtCopy": "Kopier til udklipsholder",
"Common.Views.EmbedDialog.warnCopy": "Browserfejl! Brug tastaturgenvej [Ctrl] + [C]",
"Common.Views.ImageFromUrlDialog.textUrl": "Indsæt et billede URL: ",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dette felt er påkrævet",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Feltet skal være en URL i \"http://www.example.com\" formatet",
"Common.Views.OpenDialog.closeButtonText": "Luk Fil",
"Common.Views.OpenDialog.txtEncoding": "Indkodning",
"Common.Views.OpenDialog.txtIncorrectPwd": "Kodeordet er forkert",
"Common.Views.OpenDialog.txtOpenFile": "Angiv en adgangskode for at åbne filen",
"Common.Views.OpenDialog.txtPassword": "Kodeord",
"Common.Views.OpenDialog.txtPreview": "Forhåndvisning",
"Common.Views.OpenDialog.txtProtected": "Når du først indtaster adgangskoden og åbner filen, nulstilles den aktuelle adgangskode til filen.",
"Common.Views.OpenDialog.txtTitle": "Vælg %1 indstillinger",
"Common.Views.OpenDialog.txtTitleProtected": "Beskyttet fil",
"Common.Views.SaveAsDlg.textLoading": "Indlæser",
"Common.Views.SaveAsDlg.textTitle": "Mappe til at gemme",
"Common.Views.SelectFileDlg.textLoading": "Indlæser",
"Common.Views.SelectFileDlg.textTitle": "Vælg datakilde",
"Common.Views.ShareDialog.textTitle": "Del link",
"Common.Views.ShareDialog.txtCopy": "Kopier til udklipsholder",
"Common.Views.ShareDialog.warnCopy": "Browserfejl! Brug tastaturgenvej [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Konvertering fejlede.",
"DE.Controllers.ApplicationController.convertationTimeoutText": "Konverteringstidsfrist er overskredet",
"DE.Controllers.ApplicationController.criticalErrorTitle": "Fejl",
"DE.Controllers.ApplicationController.downloadErrorText": "Download fejlet.",
"DE.Controllers.ApplicationController.downloadTextText": "Hent dokument...",
"DE.Controllers.ApplicationController.errorAccessDeny": "Du prøver at foretage en handling, som du ikke har rettighederne til.<br>venligst kontakt din administrator for hjælp.",
"DE.Controllers.ApplicationController.errorBadImageUrl": "Billed-URL er forkert",
"DE.Controllers.ApplicationController.errorConnectToServer": "Dokumentet kunne ikke gemmes. Check venligst din netværksforbindelse eller kontakt din administrator.<br>Når du klikker på 'OK' knappen, vil du blive bedt om at downloade dokumentet.",
"DE.Controllers.ApplicationController.errorDataEncrypted": "Krypterede ændringer er blevet modtaget, men de kan ikke dekrypteres. ",
"DE.Controllers.ApplicationController.errorDefaultMessage": "Fejlkode: %1",
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Der opstod en fejl under arbejdet med dokumentet.<br>Brug muligheden 'Download som...' til at gemme sikkerhedskopien af filen på din computers harddisk.",
"DE.Controllers.ApplicationController.errorEditingSaveas": "Der opstod en fejl under arbejdet med dokumentet. <br> Brug \"gem som...\" valgmuligheden for at gemme en sikkerhedsversion til din computers harddisk.",
"DE.Controllers.ApplicationController.errorFilePassProtect": "Dokumentet er beskyttet af et kodeord og kunne ikke åbnes.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Filens størrelse overstiger grænsen, som er sat for din server.<br>Kontakt venligst din administrator for hjælp.",
"DE.Controllers.ApplicationController.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.",
"DE.Controllers.ApplicationController.errorLoadingFont": "Skrifttyper er ikke indlæst.<br>Kontakt din dokument server administrator.",
"DE.Controllers.ApplicationController.errorServerVersion": "Programmet er blevet opdateret. Siden vil blive genindlæst for at aktivere ændringerne. ",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "Sessionen for dokumentredigering er udløbet. Genindlæs venligst siden. ",
"DE.Controllers.ApplicationController.errorSessionIdle": "Dokumentet er ikke blevet redigeret i et stykke tid. Genindlæs venligst siden.",
"DE.Controllers.ApplicationController.errorSessionToken": "Forbindelsen til serveren er blevet afbrudt. Venligst genindlæs siden.",
"DE.Controllers.ApplicationController.errorSubmit": "Send mislykkedes.",
"DE.Controllers.ApplicationController.errorToken": "Dokumentets sikkerhedstoken er ikke oprettet korrekt.<br> Kontakt venligst din administrator for Document Server.",
"DE.Controllers.ApplicationController.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.<br>Kontakt venligst din Document Server administrator. ",
"DE.Controllers.ApplicationController.errorUpdateVersion": "Filversionen er blevet ændret. Siden genindlæses.",
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.<br>Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.",
"DE.Controllers.ApplicationController.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ",
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Forbindesen er tabt. Du kan stadig se dokumentet, <br> men du vil ikke være i stand til at hente eller udskrive det, før forbindelsen er genetableret. ",
"DE.Controllers.ApplicationController.mniImageFromFile": "Billede fra fil",
"DE.Controllers.ApplicationController.mniImageFromStorage": "Billede fra filarkiv",
"DE.Controllers.ApplicationController.mniImageFromUrl": "Billede fra URL",
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Advarsel",
"DE.Controllers.ApplicationController.openErrorText": "Der opstod en fejl under åbning af filen.",
"DE.Controllers.ApplicationController.saveErrorText": "Der opstod en fejl under lagring af filen.",
"DE.Controllers.ApplicationController.saveErrorTextDesktop": "Filen kan ikke gemmes eller oprettes.<br>Mulige årsager kan være:<br>1. Filen er read-only. <br>2. Filen redigeres and en anden bruger.<br>3. Disken er fuld eller beskadiget.",
"DE.Controllers.ApplicationController.scriptLoadError": "Forbindelsen er for langsom, og nogle komponenter kunne ikke indlæses. Indlæs siden igen.",
"DE.Controllers.ApplicationController.textAnonymous": "Anonym",
"DE.Controllers.ApplicationController.textBuyNow": "Besøg hjemmeside",
"DE.Controllers.ApplicationController.textCloseTip": "Klik for at lukke tip.",
"DE.Controllers.ApplicationController.textContactUs": "Kontakt salg",
"DE.Controllers.ApplicationController.textGotIt": "Forstået",
"DE.Controllers.ApplicationController.textGuest": "Gæst",
"DE.Controllers.ApplicationController.textLoadingDocument": "Indlæser dokument",
"DE.Controllers.ApplicationController.textNoLicenseTitle": "Licensbegrænsning nået",
"DE.Controllers.ApplicationController.textOf": "af",
"DE.Controllers.ApplicationController.textRequired": "Udfyld alle obligatoriske felter for at sende formularen.",
"DE.Controllers.ApplicationController.textSaveAs": "Gem som PDF",
"DE.Controllers.ApplicationController.textSaveAsDesktop": "Gem som...",
"DE.Controllers.ApplicationController.textSubmited": "<b>Formularen blev indsendt</b><br>Klik for at lukke tippet",
"DE.Controllers.ApplicationController.titleServerVersion": "Redigeringsværktøj opdateret",
"DE.Controllers.ApplicationController.titleUpdateVersion": "Version ændret",
"DE.Controllers.ApplicationController.txtArt": "Din tekst her",
"DE.Controllers.ApplicationController.txtChoose": "Vælg en enhed",
"DE.Controllers.ApplicationController.txtClickToLoad": "Klik for at hente billede",
"DE.Controllers.ApplicationController.txtClose": "Luk",
"DE.Controllers.ApplicationController.txtEmpty": "(Tom)",
"DE.Controllers.ApplicationController.txtEnterDate": "Indtast en dato",
"DE.Controllers.ApplicationController.txtPressLink": "Tryk CTRL og klik på linket",
"DE.Controllers.ApplicationController.txtUntitled": "Unavngivet",
"DE.Controllers.ApplicationController.unknownErrorText": "Ukendt fejl.",
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Din browser understøttes ikke.",
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Ukendt billedformat.",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "Billedet er for stort. Den maksimale størrelse er 25 MB.",
"DE.Controllers.ApplicationController.waitText": "Vent venligst...",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "Antallet af samtidige forbindelser til serveren overstiger det tilladte antal, og dokumentet åbnes i visningstilstand.<br>Kontakt venligst din administrator for mere information.",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licens udløbet. <br>Du har ikke adgang til at redigere. <br>Kontakt venligst din administrator.",
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Licens skal fornyes.<br>Du har begrænset adgang til at redigere dokumenter.<br>Kontakt venligst din administrator for at få fuld adgang.",
"DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Det tilladte antal af samtidige brugere er oversteget, og dokumentet vil blive åbnet i visningstilstand.<br>Kontakt venligst din administrator for mere information. ",
"DE.Controllers.ApplicationController.warnNoLicense": "Du har nået grænsen for antal samtidige forbindelser til %1 værktøjer. Dokumentet åbnes for læsning.<br>Kontakt %1 salgsteamet for betingelser for opgradering.",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "Denne version af %1 redigeringsværktøj har bestemte begrænsninger for samtidige brugere.<br>Overvej venligst at købe en kommerciel licens hvis du har brug for flere.",
"DE.Views.ApplicationView.textClear": "Ryd alle felter",
"DE.Views.ApplicationView.textCopy": "Kopier",
"DE.Views.ApplicationView.textCut": "Klip",
"DE.Views.ApplicationView.textNext": "Næste felt",
"DE.Views.ApplicationView.textPaste": "Indsæt",
"DE.Views.ApplicationView.textPrintSel": "Printer-valg",
"DE.Views.ApplicationView.textRedo": "Fortryd",
"DE.Views.ApplicationView.textSubmit": "Send",
"DE.Views.ApplicationView.textUndo": "Fortryd",
"DE.Views.ApplicationView.txtDarkMode": "Mørk tilstand",
"DE.Views.ApplicationView.txtDownload": "Hent",
"DE.Views.ApplicationView.txtDownloadDocx": "Download som docx",
"DE.Views.ApplicationView.txtDownloadPdf": "Download som pdf",
"DE.Views.ApplicationView.txtEmbed": "Indlejre",
"DE.Views.ApplicationView.txtFileLocation": "Åben filplacering",
"DE.Views.ApplicationView.txtFullScreen": "Fuld skærm",
"DE.Views.ApplicationView.txtPrint": "Udskriv",
"DE.Views.ApplicationView.txtShare": "Del"
"DE.Views.ApplicationView.txtShare": "Del",
"DE.Views.ApplicationView.txtTheme": "Tema"
}

View file

@ -1,12 +1,69 @@
{
"Common.UI.Calendar.textApril": "Απρίλιος",
"Common.UI.Calendar.textAugust": "Αύγουστος",
"Common.UI.Calendar.textDecember": "Δεκέμβριος",
"Common.UI.Calendar.textFebruary": "Φεβρουάριος",
"Common.UI.Calendar.textJanuary": "Ιανουάριος",
"Common.UI.Calendar.textJuly": "Ιούλιος",
"Common.UI.Calendar.textJune": "Ιούνιος",
"Common.UI.Calendar.textMarch": "Μάρτιος",
"Common.UI.Calendar.textMay": "Μάι",
"Common.UI.Calendar.textMonths": "Μήνες",
"Common.UI.Calendar.textNovember": "Νοέμβριος",
"Common.UI.Calendar.textOctober": "Οκτώβριος",
"Common.UI.Calendar.textShortApril": "Απρ",
"Common.UI.Calendar.textShortAugust": "Αυγ",
"Common.UI.Calendar.textShortDecember": "Δεκ",
"Common.UI.Calendar.textShortFebruary": "Φεβ",
"Common.UI.Calendar.textShortFriday": "Παρ",
"Common.UI.Calendar.textShortJanuary": "Ιάν",
"Common.UI.Calendar.textShortJuly": "Ιουλ",
"Common.UI.Calendar.textShortJune": "Ιουν",
"Common.UI.Calendar.textShortMarch": "Μαρ",
"Common.UI.Calendar.textShortMay": "Μάιος",
"Common.UI.Calendar.textShortMonday": "Δευ",
"Common.UI.Calendar.textShortNovember": "Νοέ",
"Common.UI.Calendar.textShortOctober": "Οκτ",
"Common.UI.Themes.txtThemeClassicLight": "Κλασικό Ανοιχτό",
"Common.UI.Themes.txtThemeDark": "Σκούρο",
"Common.UI.Themes.txtThemeLight": "Ανοιχτό",
"Common.UI.Window.cancelButtonText": "Ακύρωση",
"Common.UI.Window.closeButtonText": "Κλείσιμο",
"Common.UI.Window.noButtonText": "Όχι",
"Common.UI.Window.textConfirmation": "Επιβεβαίωση",
"Common.UI.Window.textDontShow": "Να μην εμφανιστεί ξανά αυτό το μήνυμα",
"Common.UI.Window.textError": "Σφάλμα",
"Common.UI.Window.textInformation": "Πληροφορίες",
"Common.Views.CopyWarningDialog.textDontShow": "Να μην εμφανιστεί ξανά αυτό το μήνυμα",
"Common.Views.CopyWarningDialog.textMsg": "Ενέργειες αντιγραφής, αποκοπής και επικόλλησης με χρήση ενεργειών μενού θα γίνονται εντός της παρούσας καρτέλας συντάκτη μόνο.<br><br>Για αντιγραφή ή επικόλληση σε ή από εφαρμογές εκτός της καρτέλας συντάκτη χρησιμοποιήστε τους ακόλουθους συνδυασμούς πλήκτρων:",
"Common.Views.CopyWarningDialog.textTitle": "Ενέργειες Αντιγραφής, Αποκοπής και Επικόλλησης",
"Common.Views.CopyWarningDialog.textToCopy": "για Αντιγραφή",
"Common.Views.CopyWarningDialog.textToCut": "για Αποκοπή",
"Common.Views.CopyWarningDialog.textToPaste": "για Επικόλληση",
"Common.Views.EmbedDialog.textHeight": "Ύψος",
"Common.Views.EmbedDialog.textTitle": "Ενσωμάτωση",
"Common.Views.EmbedDialog.txtCopy": "Αντιγραφή στο πρόχειρο",
"Common.Views.EmbedDialog.warnCopy": "Σφάλμα φυλλομετρητή! Χρησιμοποιείστε τη συντόμευση [Ctrl]+[C]",
"Common.Views.OpenDialog.closeButtonText": "Κλείσιμο Αρχείου",
"Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση",
"Common.Views.OpenDialog.txtOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο",
"Common.Views.OpenDialog.txtTitle": "Διαλέξτε %1 επιλογές",
"Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση",
"Common.Views.SaveAsDlg.textTitle": "Φάκελος για αποθήκευση",
"Common.Views.SelectFileDlg.textLoading": "Γίνεται φόρτωση",
"Common.Views.ShareDialog.txtCopy": "Αντιγραφή στο πρόχειρο",
"Common.Views.ShareDialog.warnCopy": "Σφάλμα φυλλομετρητή! Χρησιμοποιείστε τη συντόμευση [Ctrl]+[C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Αποτυχία μετατροπής.",
"DE.Controllers.ApplicationController.convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.",
"DE.Controllers.ApplicationController.criticalErrorTitle": "Σφάλμα",
"DE.Controllers.ApplicationController.downloadErrorText": "Αποτυχία λήψης.",
"DE.Controllers.ApplicationController.downloadTextText": "Γίνεται λήψη εγγράφου...",
"DE.Controllers.ApplicationController.errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.<br>Παρακαλούμε να επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων.",
"DE.Controllers.ApplicationController.errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας",
"DE.Controllers.ApplicationController.errorDataEncrypted": "Ελήφθησαν κρυπτογραφημένες αλλαγές, δεν μπορούν να αποκρυπτογραφηθούν.",
"DE.Controllers.ApplicationController.errorDefaultMessage": "Κωδικός σφάλματος: %1",
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.<br>Χρησιμοποιήστε την επιλογή «Λήψη ως...» για να αποθηκεύσετε το αντίγραφο ασφαλείας στον σκληρό δίσκο του υπολογιστή σας.",
"DE.Controllers.ApplicationController.errorEditingSaveas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.<br>Χρησιμοποιήστε την επιλογή «Αποθήκευση ως...» για να αποθηκεύσετε το αντίγραφο ασφαλείας στον σκληρό δίσκο του υπολογιστή σας.",
"DE.Controllers.ApplicationController.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.",
"DE.Controllers.ApplicationController.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.",
@ -14,21 +71,41 @@
"DE.Controllers.ApplicationController.errorSubmit": "Η υποβολή απέτυχε.",
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.<br>Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.",
"DE.Controllers.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.",
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Η σύνδεση χάθηκε. Μπορείτε να συνεχίσετε να βλέπετε το έγγραφο,<br>αλλά δεν θα μπορείτε να το λάβετε ή να το εκτυπώσετε έως ότου αποκατασταθεί η σύνδεση και ανανεωθεί η σελίδα.",
"DE.Controllers.ApplicationController.mniImageFromFile": "Εικόνα από Αρχείο",
"DE.Controllers.ApplicationController.mniImageFromStorage": "Εικόνα από Αποθηκευτικό Χώρο",
"DE.Controllers.ApplicationController.mniImageFromUrl": "Εικόνα από διεύθυνση URL",
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση",
"DE.Controllers.ApplicationController.openErrorText": "Παρουσιάστηκε σφάλμα κατά το άνοιγμα του αρχείου.",
"DE.Controllers.ApplicationController.saveErrorText": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου.",
"DE.Controllers.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.",
"DE.Controllers.ApplicationController.textAnonymous": "Ανώνυμος",
"DE.Controllers.ApplicationController.textCloseTip": "Κάντε κλικ να κλείσετε τη συμβουλή.",
"DE.Controllers.ApplicationController.textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων",
"DE.Controllers.ApplicationController.textGotIt": "Ελήφθη",
"DE.Controllers.ApplicationController.textGuest": "Επισκέπτης",
"DE.Controllers.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου",
"DE.Controllers.ApplicationController.textNoLicenseTitle": "Το όριο της άδειας προσεγγίσθηκε",
"DE.Controllers.ApplicationController.textOf": "του",
"DE.Controllers.ApplicationController.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.",
"DE.Controllers.ApplicationController.textSubmited": "<b>Η φόρμα υποβλήθηκε με επιτυχία</b><br>Κάντε κλικ για να κλείσετε τη συμβουλή ",
"DE.Controllers.ApplicationController.titleServerVersion": "Ο συντάκτης ενημερώθηκε",
"DE.Controllers.ApplicationController.txtChoose": "Επιλέξτε ένα αντικείμενο",
"DE.Controllers.ApplicationController.txtClickToLoad": "Κάντε κλικ για φόρτωση εικόνας",
"DE.Controllers.ApplicationController.txtClose": "Κλείσιμο",
"DE.Controllers.ApplicationController.txtEmpty": "(Κενό)",
"DE.Controllers.ApplicationController.txtEnterDate": "Εισάγετε μια ημερομηνία",
"DE.Controllers.ApplicationController.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο",
"DE.Controllers.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.",
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.",
"DE.Controllers.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Η άδεια έληξε.<br>Δεν έχετε πρόσβαση στη δυνατότητα επεξεργασίας εγγράφων.<br>Επικοινωνήστε με τον διαχειριστή σας.",
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί.<br>Έχετε περιορισμένη πρόσβαση στη λειτουργία επεξεργασίας εγγράφων.<br>Επικοινωνήστε με τον διαχειριστή σας για πλήρη πρόσβαση",
"DE.Views.ApplicationView.textClear": "Εκκαθάριση Όλων των Πεδίων",
"DE.Views.ApplicationView.textCopy": "Αντιγραφή",
"DE.Views.ApplicationView.textCut": "Αποκοπή",
"DE.Views.ApplicationView.textNext": "Επόμενο Πεδίο",
"DE.Views.ApplicationView.txtDarkMode": "Σκούρο θέμα",
"DE.Views.ApplicationView.txtDownload": "Λήψη",
"DE.Views.ApplicationView.txtDownloadDocx": "Λήψη ως docx",
"DE.Views.ApplicationView.txtDownloadPdf": "Λήψη ως pdf",
@ -36,5 +113,6 @@
"DE.Views.ApplicationView.txtFileLocation": "Άνοιγμα τοποθεσίας αρχείου",
"DE.Views.ApplicationView.txtFullScreen": "Πλήρης οθόνη",
"DE.Views.ApplicationView.txtPrint": "Εκτύπωση",
"DE.Views.ApplicationView.txtShare": "Διαμοιρασμός"
"DE.Views.ApplicationView.txtShare": "Διαμοιρασμός",
"DE.Views.ApplicationView.txtTheme": "Θέμα διεπαφής"
}

View file

@ -162,5 +162,8 @@
"DE.Views.ApplicationView.txtFullScreen": "Full Screen",
"DE.Views.ApplicationView.txtPrint": "Print",
"DE.Views.ApplicationView.txtShare": "Share",
"DE.Views.ApplicationView.txtTheme": "Interface theme"
"DE.Views.ApplicationView.txtTheme": "Interface theme",
"DE.Views.ApplicationView.textZoom": "Zoom",
"DE.Views.ApplicationView.textFitToPage": "Fit to Page",
"DE.Views.ApplicationView.textFitToWidth": "Fit to Width"
}

View file

@ -1,22 +1,114 @@
{
"Common.UI.Calendar.textApril": "aprile",
"Common.UI.Calendar.textAugust": "agosto",
"Common.UI.Calendar.textDecember": "dicembre",
"Common.UI.Calendar.textFebruary": "febbraio",
"Common.UI.Calendar.textJanuary": "gennaio",
"Common.UI.Calendar.textJuly": "luglio",
"Common.UI.Calendar.textJune": "giugno",
"Common.UI.Calendar.textMarch": "marzo",
"Common.UI.Calendar.textMay": "maggio",
"Common.UI.Calendar.textMonths": "mesi",
"Common.UI.Calendar.textNovember": "novembre",
"Common.UI.Calendar.textOctober": "ottobre",
"Common.UI.Calendar.textSeptember": "settembre",
"Common.UI.Calendar.textShortApril": "Apr",
"Common.UI.Calendar.textShortAugust": "Ago",
"Common.UI.Calendar.textShortDecember": "Dic",
"Common.UI.Calendar.textShortFebruary": "Feb",
"Common.UI.Calendar.textShortFriday": "Ven",
"Common.UI.Calendar.textShortJanuary": "Gen",
"Common.UI.Calendar.textShortJuly": "Lug",
"Common.UI.Calendar.textShortJune": "Giu",
"Common.UI.Calendar.textShortMarch": "Mar",
"Common.UI.Calendar.textShortMay": "maggio",
"Common.UI.Calendar.textShortMonday": "Lun",
"Common.UI.Calendar.textShortNovember": "Novembre",
"Common.UI.Calendar.textShortOctober": "Ott",
"Common.UI.Calendar.textShortSaturday": "Sab",
"Common.UI.Calendar.textShortSeptember": "Set",
"Common.UI.Calendar.textShortSunday": "Dom",
"Common.UI.Calendar.textShortThursday": "Gio",
"Common.UI.Calendar.textShortTuesday": "Mar",
"Common.UI.Calendar.textShortWednesday": "Mer",
"Common.UI.Calendar.textYears": "anni",
"Common.UI.Themes.txtThemeClassicLight": "Classico chiaro",
"Common.UI.Themes.txtThemeDark": "Scuro",
"Common.UI.Themes.txtThemeLight": "Chiaro",
"Common.UI.Window.cancelButtonText": "Annullare",
"Common.UI.Window.closeButtonText": "Chiudere",
"Common.UI.Window.noButtonText": "No",
"Common.UI.Window.okButtonText": "OK",
"Common.UI.Window.textConfirmation": "Conferma",
"Common.UI.Window.textDontShow": "Non mostrare più questo messaggio",
"Common.UI.Window.textError": "Errore",
"Common.UI.Window.textInformation": "Informazione",
"Common.UI.Window.textWarning": "Avvertimento",
"Common.UI.Window.yesButtonText": "Sì",
"Common.Views.CopyWarningDialog.textDontShow": "Non mostrare più questo messaggio",
"Common.Views.CopyWarningDialog.textMsg": "Le azioni di copia, taglia e incolla utilizzando le azioni del menu di scelta rapida verranno eseguite solo all'interno di questa scheda dell'editor.<br><br>Per copiare o incollare in o da applicazioni al di fuori della scheda dell'editor, usa le seguenti combinazioni di tasti:",
"Common.Views.CopyWarningDialog.textTitle": "Funzioni di Copiare, Tagliare e Incollare",
"Common.Views.CopyWarningDialog.textToCopy": "per copiare",
"Common.Views.CopyWarningDialog.textToCut": "per tagliare",
"Common.Views.CopyWarningDialog.textToPaste": "per incollare",
"Common.Views.EmbedDialog.textHeight": "Altezza",
"Common.Views.EmbedDialog.textTitle": "Incorporare",
"Common.Views.EmbedDialog.textWidth": "Larghezza",
"Common.Views.EmbedDialog.txtCopy": "Copiare negli appunti",
"Common.Views.EmbedDialog.warnCopy": "Errore del browser! Usa la scorciatoia da tastiera [Ctrl] + [C]",
"Common.Views.ImageFromUrlDialog.textUrl": "Incollare l'URL dell'immagine:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Questo campo è obbligatorio",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Questo campo dovrebbe essere un URL nel formato \"http://www.example.com\"",
"Common.Views.OpenDialog.closeButtonText": "Chiudere file",
"Common.Views.OpenDialog.txtEncoding": "Codificazione",
"Common.Views.OpenDialog.txtIncorrectPwd": "La password non è corretta.",
"Common.Views.OpenDialog.txtOpenFile": "Inserisci la password per aprire il file",
"Common.Views.OpenDialog.txtPassword": "Password",
"Common.Views.OpenDialog.txtPreview": "Anteprima",
"Common.Views.OpenDialog.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file.",
"Common.Views.OpenDialog.txtTitle": "Selezionare %1 opzioni",
"Common.Views.OpenDialog.txtTitleProtected": "File protetto",
"Common.Views.SaveAsDlg.textLoading": "Caricamento",
"Common.Views.SaveAsDlg.textTitle": "Cartella per salvare",
"Common.Views.SelectFileDlg.textLoading": "Caricamento",
"Common.Views.SelectFileDlg.textTitle": "Selezionare sorgente dati",
"Common.Views.ShareDialog.textTitle": "Condividere link",
"Common.Views.ShareDialog.txtCopy": "Copiare negli appunti",
"Common.Views.ShareDialog.warnCopy": "Errore del browser! Usa la scorciatoia da tastiera [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "Conversione fallita.",
"DE.Controllers.ApplicationController.convertationTimeoutText": "È stato superato il tempo limite della conversione.",
"DE.Controllers.ApplicationController.criticalErrorTitle": "Errore",
"DE.Controllers.ApplicationController.downloadErrorText": "Scaricamento fallito",
"DE.Controllers.ApplicationController.downloadTextText": "Scaricamento del documento in corso...",
"DE.Controllers.ApplicationController.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
"DE.Controllers.ApplicationController.errorBadImageUrl": "URL dell'immagine non è corretto",
"DE.Controllers.ApplicationController.errorConnectToServer": "Impossibile salvare il documento. Ti preghiamo di controllare le impostazioni di connessione o contattare il tuo amministratore.<br>Quando fai clic sul pulsante \"OK\", ti verrà chiesto di scaricare il documento.",
"DE.Controllers.ApplicationController.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
"DE.Controllers.ApplicationController.errorDefaultMessage": "Codice errore: %1",
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.<br>Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.",
"DE.Controllers.ApplicationController.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.<br>Usa l'opzione 'Salvare come ...' per salvare la copia di backup del file sul disco rigido del computer.",
"DE.Controllers.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
"DE.Controllers.ApplicationController.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.",
"DE.Controllers.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.<br>Si prega di contattare il tuo amministratore di Document Server.",
"DE.Controllers.ApplicationController.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "La sessione di modifica del documento è scaduta. Si prega di ricaricare la pagina.",
"DE.Controllers.ApplicationController.errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.",
"DE.Controllers.ApplicationController.errorSessionToken": "La connessione con il server è stata interrotta, è necessario ricaricare la pagina.",
"DE.Controllers.ApplicationController.errorSubmit": "Invio fallito.",
"DE.Controllers.ApplicationController.errorToken": "Il token di sicurezza del documento non è formato correttamente.<br>Si prega di contattare l'amministratore di Document Server.",
"DE.Controllers.ApplicationController.errorTokenExpire": "Il token di sicurezza del documento è scaduto.<br>Si prega di contattare l'amministratore di Document Server.",
"DE.Controllers.ApplicationController.errorUpdateVersion": "La versione del file è stata cambiata. La pagina verrà ricaricata.",
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.<br>Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.",
"DE.Controllers.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
"DE.Controllers.ApplicationController.errorViewerDisconnect": "La connessione è stata persa. È ancora possibile visualizzare il documento, <br> ma non sarà possibile scaricarlo o stamparlo fino a quando la connessione non sarà ripristinata e la pagina sarà ricaricata.",
"DE.Controllers.ApplicationController.mniImageFromFile": "Immagine da file",
"DE.Controllers.ApplicationController.mniImageFromStorage": "Immagine dall'archivio",
"DE.Controllers.ApplicationController.mniImageFromUrl": "Immagine da URL",
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Avviso",
"DE.Controllers.ApplicationController.openErrorText": "Si è verificato un errore durante l'apertura del file.",
"DE.Controllers.ApplicationController.saveErrorText": "Si è verificato un errore durante il salvataggio del file",
"DE.Controllers.ApplicationController.saveErrorTextDesktop": "Questo file non può essere salvato o creato.<br>I possibili motivi sono:<br>1. Il file è di sola lettura.<br>2. Il file è in fase di modifica da parte di altri utenti.<br>3. Il disco è pieno oppure è danneggiato.",
"DE.Controllers.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
"DE.Controllers.ApplicationController.textAnonymous": "Anonimo",
"DE.Controllers.ApplicationController.textBuyNow": "Visita il sito web",
@ -28,14 +120,23 @@
"DE.Controllers.ApplicationController.textNoLicenseTitle": "E' stato raggiunto il limite della licenza",
"DE.Controllers.ApplicationController.textOf": "di",
"DE.Controllers.ApplicationController.textRequired": "Compila tutti i campi richiesti per inviare il modulo.",
"DE.Controllers.ApplicationController.textSaveAs": "Salvare come PDF",
"DE.Controllers.ApplicationController.textSaveAsDesktop": "Salvare come...",
"DE.Controllers.ApplicationController.textSubmited": "<b>Modulo inviato con successo</b><br>Fare click per chiudere la notifica</br>",
"DE.Controllers.ApplicationController.titleServerVersion": "L'editor è stato aggiornato",
"DE.Controllers.ApplicationController.titleUpdateVersion": "La versione è stata cambiata",
"DE.Controllers.ApplicationController.txtArt": "Il tuo testo qui",
"DE.Controllers.ApplicationController.txtChoose": "Scegliere un elemento",
"DE.Controllers.ApplicationController.txtClickToLoad": "Clicca per caricare l'immagine",
"DE.Controllers.ApplicationController.txtClose": "Chiudi",
"DE.Controllers.ApplicationController.txtEmpty": "(Vuoto)",
"DE.Controllers.ApplicationController.txtEnterDate": "Inserire una data",
"DE.Controllers.ApplicationController.txtPressLink": "Premi CTRL e clicca sul collegamento",
"DE.Controllers.ApplicationController.txtUntitled": "Senza titolo",
"DE.Controllers.ApplicationController.unknownErrorText": "Errore sconosciuto.",
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.",
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Formato d'immagine sconosciuto.",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.",
"DE.Controllers.ApplicationController.waitText": "Per favore, attendi...",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "Hai raggiunto il limite delle connessioni simultanee con gli editor %1. Questo documento verrà aperto solo per la visualizzazione.<br>Ti preghiamo di contattare il tuo amministratore per maggior informazioni.",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licenza è scaduta. <br>Non hai accesso alle funzionalità di modifica dei documenti.<br>Ti preghiamo di contattare l'amministratore.",
@ -44,8 +145,15 @@
"DE.Controllers.ApplicationController.warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee con gli editor %1. Questo documento verrà aperto solo per la visualizzazione.<br>Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.",
"DE.Views.ApplicationView.textClear": "Cancellare tutti i campi",
"DE.Views.ApplicationView.textCopy": "Copiare",
"DE.Views.ApplicationView.textCut": "Tagliare",
"DE.Views.ApplicationView.textNext": "Campo successivo",
"DE.Views.ApplicationView.textPaste": "Incollare",
"DE.Views.ApplicationView.textPrintSel": "Stampare selezione",
"DE.Views.ApplicationView.textRedo": "Ripetere",
"DE.Views.ApplicationView.textSubmit": "Invia",
"DE.Views.ApplicationView.textUndo": "Annullare",
"DE.Views.ApplicationView.txtDarkMode": "Modalità scura",
"DE.Views.ApplicationView.txtDownload": "Scarica",
"DE.Views.ApplicationView.txtDownloadDocx": "Scarica come .docx",
"DE.Views.ApplicationView.txtDownloadPdf": "Scarica come .pdf",

View file

@ -56,6 +56,19 @@
"Common.Views.EmbedDialog.textWidth": "Breedte",
"Common.Views.EmbedDialog.txtCopy": "Kopieer naar klembord",
"Common.Views.EmbedDialog.warnCopy": "Browserfout! Gebruik de sneltoets [Ctrl] + [C]. ",
"Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:",
"Common.Views.OpenDialog.closeButtonText": "Bestand sluiten",
"Common.Views.OpenDialog.txtEncoding": "Codering",
"Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is onjuist.",
"Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen",
"Common.Views.OpenDialog.txtPassword": "Wachtwoord",
"Common.Views.OpenDialog.txtPreview": "Voorbeeld",
"Common.Views.OpenDialog.txtProtected": "Nadat u het wachtwoord heeft ingevoerd en het bestand heeft geopend, wordt het huidige wachtwoord voor het bestand gereset.",
"Common.Views.OpenDialog.txtTitle": "Opties voor %1 kiezen",
"Common.Views.OpenDialog.txtTitleProtected": "Beveiligd bestand",
"Common.Views.SaveAsDlg.textLoading": "Laden",
"Common.Views.SaveAsDlg.textTitle": "Map voor opslaan",
"Common.Views.SelectFileDlg.textLoading": "Laden",
"Common.Views.ShareDialog.textTitle": "Link delen",
"Common.Views.ShareDialog.txtCopy": "Kopieer naar klembord",
"Common.Views.ShareDialog.warnCopy": "Browserfout! Gebruik de sneltoets [Ctrl] + [C]. ",
@ -65,7 +78,9 @@
"DE.Controllers.ApplicationController.downloadErrorText": "Download mislukt.",
"DE.Controllers.ApplicationController.downloadTextText": "Document wordt gedownload...",
"DE.Controllers.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.<br>Neem contact op met de beheerder van de documentserver.",
"DE.Controllers.ApplicationController.errorBadImageUrl": "Afbeelding URL is onjuist",
"DE.Controllers.ApplicationController.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.<br>Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.",
"DE.Controllers.ApplicationController.errorDataEncrypted": "Versleutelde aanpassingen zijn ontvangen, deze kunnen niet worden ontsleuteld.",
"DE.Controllers.ApplicationController.errorDefaultMessage": "Foutcode: %1",
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Er is een fout ontstaan tijdens het werken met het document.<br>Gebruik de 'Opslaan als...' optie om het bestand als back-upkopie op te slaan op uw computer.",
"DE.Controllers.ApplicationController.errorEditingSaveas": "Er is een fout ontstaan tijdens het werken met het document.<br>Gebruik de 'Opslaan als...' optie om het bestand als backup op te slaan op uw computer.",
@ -80,6 +95,9 @@
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd. <br>Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.",
"DE.Controllers.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.",
"DE.Controllers.ApplicationController.errorViewerDisconnect": "Verbinding is verbroken. U kunt het document nog wel bekijken,<br>maar u kunt het pas downloaden of afdrukken als de verbinding is hersteld en de pagina opnieuw is geladen.",
"DE.Controllers.ApplicationController.mniImageFromFile": "Afbeelding uit bestand",
"DE.Controllers.ApplicationController.mniImageFromStorage": "Afbeelding uit opslag",
"DE.Controllers.ApplicationController.mniImageFromUrl": "Afbeelding uit URL",
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Waarschuwing",
"DE.Controllers.ApplicationController.openErrorText": "Er is een fout opgetreden bij het openen van het bestand",
"DE.Controllers.ApplicationController.saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand",

View file

@ -56,6 +56,22 @@
"Common.Views.EmbedDialog.textWidth": "Largura",
"Common.Views.EmbedDialog.txtCopy": "Copiar para a área de transferência",
"Common.Views.EmbedDialog.warnCopy": "Erro do navegador! Use o atalho do teclado [Ctrl] + [C]",
"Common.Views.ImageFromUrlDialog.textUrl": "Colar uma URL de imagem:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"",
"Common.Views.OpenDialog.closeButtonText": "Fechar Arquivo",
"Common.Views.OpenDialog.txtEncoding": "Codificação",
"Common.Views.OpenDialog.txtIncorrectPwd": "Senha incorreta.",
"Common.Views.OpenDialog.txtOpenFile": "Inserir a Senha para Abrir o Arquivo",
"Common.Views.OpenDialog.txtPassword": "Senha",
"Common.Views.OpenDialog.txtPreview": "Visualizar",
"Common.Views.OpenDialog.txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.",
"Common.Views.OpenDialog.txtTitle": "Escolher opções %1",
"Common.Views.OpenDialog.txtTitleProtected": "Arquivo protegido",
"Common.Views.SaveAsDlg.textLoading": "Carregando",
"Common.Views.SaveAsDlg.textTitle": "Pasta para salvar",
"Common.Views.SelectFileDlg.textLoading": "Carregando",
"Common.Views.SelectFileDlg.textTitle": "Selecionar Fonte de Dados",
"Common.Views.ShareDialog.textTitle": "Compartilhar link",
"Common.Views.ShareDialog.txtCopy": "Copiar para a área de transferência",
"Common.Views.ShareDialog.warnCopy": "Erro do navegador! Use o atalho do teclado [Ctrl] + [C]",
@ -65,22 +81,34 @@
"DE.Controllers.ApplicationController.downloadErrorText": "Download falhou.",
"DE.Controllers.ApplicationController.downloadTextText": "Baixando documento...",
"DE.Controllers.ApplicationController.errorAccessDeny": "Você está tentando executar uma ação que você não tem direitos. <br> Contate o administrador do Servidor de Documentos.",
"DE.Controllers.ApplicationController.errorBadImageUrl": "URL de imagem está incorreta",
"DE.Controllers.ApplicationController.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
"DE.Controllers.ApplicationController.errorDataEncrypted": "Alteração criptografadas foram recebidas, e não podem ser decifradas.",
"DE.Controllers.ApplicationController.errorDefaultMessage": "Código do erro: %1",
"DE.Controllers.ApplicationController.errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento. <br> Use a opção 'Baixar como ...' para salvar a cópia de backup do arquivo no disco rígido do seu computador.",
"DE.Controllers.ApplicationController.errorEditingSaveas": "Ocorreu um erro. <br> Use a opção \"Salvar Como...\" para salvar uma cópia de backup em seu computador.",
"DE.Controllers.ApplicationController.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor. <br> Por favor, contate seu administrador de Servidor de Documentos para detalhes.",
"DE.Controllers.ApplicationController.errorForceSave": "Ocorreu um erro na gravação. Favor utilizar a opção 'Transferir como' para gravar o arquivo em seu computador ou tente novamente mais tarde.",
"DE.Controllers.ApplicationController.errorLoadingFont": "As fontes não foram carregadas. <br> Entre em contato com o administrador do Document Server.",
"DE.Controllers.ApplicationController.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "A sessão de edição de documentos expirou. Por Favor atualize a página.",
"DE.Controllers.ApplicationController.errorSessionIdle": "O documento ficou sem edição por muito tempo. Por favor atualize a página.",
"DE.Controllers.ApplicationController.errorSessionToken": "A conexão com o servidor foi interrompida. Por favor atualize a página.",
"DE.Controllers.ApplicationController.errorSubmit": "Falha no envio.",
"DE.Controllers.ApplicationController.errorToken": "O token de segurança do documento não foi formado corretamente. <br> Entre em contato com o administrador do Document Server.",
"DE.Controllers.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou. <br> Entre em contato com o administrador do Document Server.",
"DE.Controllers.ApplicationController.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.",
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão com a Internet foi restaurada e a versão do arquivo foi alterada. <br> Antes de continuar a trabalhar, você precisa fazer o download do arquivo ou copiar seu conteúdo para garantir que nada seja perdido e, em seguida, recarregar esta página.",
"DE.Controllers.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.",
"DE.Controllers.ApplicationController.errorViewerDisconnect": "A ligação foi perdida. Você ainda pode ver o documento,<br> mas não pode fazer o download ou imprimir até que a conexão seja restaurada.",
"DE.Controllers.ApplicationController.mniImageFromFile": "Imagem do arquivo",
"DE.Controllers.ApplicationController.mniImageFromStorage": "Imagem do armazenamento",
"DE.Controllers.ApplicationController.mniImageFromUrl": "Imagem da URL",
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "Aviso",
"DE.Controllers.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o arquivo",
"DE.Controllers.ApplicationController.saveErrorText": "Ocorreu um erro ao salvar o arquivo",
"DE.Controllers.ApplicationController.saveErrorTextDesktop": "Este arquivo não pode ser salvo ou criado.<br>Possíveis razões são: <br>1. O arquivo é somente leitura. <br>2. O arquivo está sendo editado por outros usuários. <br>3. O disco está cheio ou corrompido.",
"DE.Controllers.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.",
"DE.Controllers.ApplicationController.textAnonymous": "Anônimo",
"DE.Controllers.ApplicationController.textBuyNow": "Visitar website",
@ -92,6 +120,8 @@
"DE.Controllers.ApplicationController.textNoLicenseTitle": "Limite de licença atingido",
"DE.Controllers.ApplicationController.textOf": "de",
"DE.Controllers.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.",
"DE.Controllers.ApplicationController.textSaveAs": "Salvar como PDF",
"DE.Controllers.ApplicationController.textSaveAsDesktop": "Salvar como...",
"DE.Controllers.ApplicationController.textSubmited": "<b> Formulário enviado com sucesso </b> <br> Clique para fechar a dica",
"DE.Controllers.ApplicationController.titleServerVersion": "Editor atualizado",
"DE.Controllers.ApplicationController.titleUpdateVersion": "Versão alterada",
@ -102,6 +132,7 @@
"DE.Controllers.ApplicationController.txtEmpty": "(Vazio)",
"DE.Controllers.ApplicationController.txtEnterDate": "Insira uma data",
"DE.Controllers.ApplicationController.txtPressLink": "Pressione CTRL e clique no link",
"DE.Controllers.ApplicationController.txtUntitled": "Sem título",
"DE.Controllers.ApplicationController.unknownErrorText": "Erro desconhecido.",
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.",
"DE.Controllers.ApplicationController.uploadImageExtMessage": "Formato de imagem desconhecido.",
@ -119,7 +150,9 @@
"DE.Views.ApplicationView.textNext": "Próximo campo",
"DE.Views.ApplicationView.textPaste": "Colar",
"DE.Views.ApplicationView.textPrintSel": "Imprimir seleção",
"DE.Views.ApplicationView.textRedo": "Refazer",
"DE.Views.ApplicationView.textSubmit": "Enviar",
"DE.Views.ApplicationView.textUndo": "Desfazer",
"DE.Views.ApplicationView.txtDarkMode": "Modo escuro",
"DE.Views.ApplicationView.txtDownload": "Download",
"DE.Views.ApplicationView.txtDownloadDocx": "Baixar como docx",

View file

@ -1,57 +1,164 @@
{
"Common.UI.Calendar.textApril": "四月",
"Common.UI.Calendar.textAugust": "八月",
"Common.UI.Calendar.textDecember": "十二月",
"Common.UI.Calendar.textFebruary": "二月",
"Common.UI.Calendar.textJanuary": "一月",
"Common.UI.Calendar.textJuly": "七月",
"Common.UI.Calendar.textJune": "六月",
"Common.UI.Calendar.textMarch": "三月",
"Common.UI.Calendar.textMay": "五月",
"Common.UI.Calendar.textMonths": "月",
"Common.UI.Calendar.textNovember": "十一月",
"Common.UI.Calendar.textOctober": "十月",
"Common.UI.Calendar.textSeptember": "九月",
"Common.UI.Calendar.textShortApril": "四月",
"Common.UI.Calendar.textShortAugust": "八月",
"Common.UI.Calendar.textShortDecember": "十二月",
"Common.UI.Calendar.textShortFebruary": "二月",
"Common.UI.Calendar.textShortFriday": "周五",
"Common.UI.Calendar.textShortJanuary": "一月",
"Common.UI.Calendar.textShortJuly": "七月",
"Common.UI.Calendar.textShortJune": "六月",
"Common.UI.Calendar.textShortMarch": "三月",
"Common.UI.Calendar.textShortMay": "五月",
"Common.UI.Calendar.textShortMonday": "周一",
"Common.UI.Calendar.textShortNovember": "十一月",
"Common.UI.Calendar.textShortOctober": "十月",
"Common.UI.Calendar.textShortSaturday": "周六",
"Common.UI.Calendar.textShortSeptember": "九月",
"Common.UI.Calendar.textShortSunday": "周日",
"Common.UI.Calendar.textShortThursday": "周四",
"Common.UI.Calendar.textShortTuesday": "周二",
"Common.UI.Calendar.textShortWednesday": "周三",
"Common.UI.Calendar.textYears": "年",
"Common.UI.Themes.txtThemeClassicLight": "经典浅色的",
"Common.UI.Themes.txtThemeDark": "深色的",
"Common.UI.Themes.txtThemeLight": "浅色的",
"Common.UI.Window.cancelButtonText": "取消",
"Common.UI.Window.closeButtonText": "关闭",
"Common.UI.Window.noButtonText": "否",
"Common.UI.Window.okButtonText": "OK",
"Common.UI.Window.textConfirmation": "确认",
"Common.UI.Window.textDontShow": "不要再显示此消息",
"Common.UI.Window.textError": "错误",
"Common.UI.Window.textInformation": "信息",
"Common.UI.Window.textWarning": "警告",
"Common.UI.Window.yesButtonText": "是",
"Common.Views.CopyWarningDialog.textDontShow": "不要再显示此消息",
"Common.Views.CopyWarningDialog.textMsg": "使用上下文菜单中的复制、剪切和粘贴操作,将只在这个编辑器标签页内执行。<br><br> 要复制或粘贴到编辑器标签页以外的应用程序,请使用以下键盘组合:",
"Common.Views.CopyWarningDialog.textTitle": "复制,剪切和粘贴操作",
"Common.Views.CopyWarningDialog.textToCopy": "以供复制",
"Common.Views.CopyWarningDialog.textToCut": "以供剪切",
"Common.Views.CopyWarningDialog.textToPaste": "以供粘贴",
"Common.Views.EmbedDialog.textHeight": "高度",
"Common.Views.EmbedDialog.textTitle": "嵌入",
"Common.Views.EmbedDialog.textWidth": "宽度",
"Common.Views.EmbedDialog.txtCopy": "复制到剪贴板",
"Common.Views.EmbedDialog.warnCopy": "浏览器错误!使用键盘快捷方式 [Ctrl] + [C]",
"Common.Views.ImageFromUrlDialog.textUrl": "粘贴图像网址URL",
"Common.Views.ImageFromUrlDialog.txtEmpty": "此为必填字段",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "该字段应该是 “http://www.example.com” 格式的网址URL。",
"Common.Views.OpenDialog.closeButtonText": "关闭文件",
"Common.Views.OpenDialog.txtEncoding": "编码",
"Common.Views.OpenDialog.txtIncorrectPwd": "密码不正确",
"Common.Views.OpenDialog.txtOpenFile": "输入密码来打开文件",
"Common.Views.OpenDialog.txtPassword": "密码",
"Common.Views.OpenDialog.txtPreview": "预览",
"Common.Views.OpenDialog.txtProtected": "在您输入密码并打开文件后,将重置该文件的当前密码。",
"Common.Views.OpenDialog.txtTitle": "选择 %1 的选项",
"Common.Views.OpenDialog.txtTitleProtected": "受保护的文件",
"Common.Views.SaveAsDlg.textLoading": "载入中",
"Common.Views.SaveAsDlg.textTitle": "保存文件夹",
"Common.Views.SelectFileDlg.textLoading": "载入中",
"Common.Views.SelectFileDlg.textTitle": "选择数据源",
"Common.Views.ShareDialog.textTitle": "分享链接",
"Common.Views.ShareDialog.txtCopy": "复制到剪贴板",
"Common.Views.ShareDialog.warnCopy": "浏览器错误!使用键盘快捷方式 [Ctrl] + [C]",
"DE.Controllers.ApplicationController.convertationErrorText": "转换失败",
"DE.Controllers.ApplicationController.convertationTimeoutText": "转换超时",
"DE.Controllers.ApplicationController.criticalErrorTitle": "错误",
"DE.Controllers.ApplicationController.downloadErrorText": "下载失败",
"DE.Controllers.ApplicationController.downloadTextText": "正在下载文件...",
"DE.Controllers.ApplicationController.errorAccessDeny": "您正在尝试执行您没有权限的操作。<br>请联系您的文档服务器管理员.",
"DE.Controllers.ApplicationController.downloadTextText": "正在下载文档...",
"DE.Controllers.ApplicationController.errorAccessDeny": "您没有执行此操作的权限。<br> 请联系文档服务器管理员.",
"DE.Controllers.ApplicationController.errorBadImageUrl": "图像网址(URL)不正确",
"DE.Controllers.ApplicationController.errorConnectToServer": "这份文件无法保存。请检查连接设置或联系您的管理员。<br> 当您点击“OK”按钮,系统将提示您下载文档。",
"DE.Controllers.ApplicationController.errorDataEncrypted": "加密更改已收到,无法对其解密。",
"DE.Controllers.ApplicationController.errorDefaultMessage": "错误代码:%1",
"DE.Controllers.ApplicationController.errorEditingDownloadas": "在处理文档期间发生错误。<br>使用“下载为…”选项将文件备份复制到您的计算机硬盘中。",
"DE.Controllers.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法被打开。",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "文件大小超出了为服务器设置的限制.<br>有关详细信息,请与文档服务器管理员联系。",
"DE.Controllers.ApplicationController.errorForceSave": "保存文件时发生错误。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。",
"DE.Controllers.ApplicationController.errorLoadingFont": "字体未加载。<br>请联系文档服务器管理员。",
"DE.Controllers.ApplicationController.errorServerVersion": "编辑器版本已完成更新。为应用这些更改,该页将要刷新。",
"DE.Controllers.ApplicationController.errorEditingSaveas": "在处理文档期间发生错误。<br> 使用“另存为…”选项将文件备份复制到计算机硬盘中。",
"DE.Controllers.ApplicationController.errorFilePassProtect": "该文档受密码保护,无法打开。",
"DE.Controllers.ApplicationController.errorFileSizeExceed": "该文件大小超出为服务器设置的限制. <br> 有关详细信息,请联系文档服务器管理员。",
"DE.Controllers.ApplicationController.errorForceSave": "保存文件时出错。请使用“下载为”选项将文件保存到计算机硬盘中或稍后重试。",
"DE.Controllers.ApplicationController.errorLoadingFont": "字体未加载。<br> 请联系文档服务器管理员。",
"DE.Controllers.ApplicationController.errorServerVersion": "编辑器版本已更新。为应用这些更改,该页将重新加载。",
"DE.Controllers.ApplicationController.errorSessionAbsolute": "文档编辑会话已过期。请重新加载页面。",
"DE.Controllers.ApplicationController.errorSessionIdle": "该文件没编辑比较长时间。请重新加载页面。",
"DE.Controllers.ApplicationController.errorSessionToken": "与服务器的连接已中断。请重新加载页面。",
"DE.Controllers.ApplicationController.errorSubmit": "提交失败",
"DE.Controllers.ApplicationController.errorUpdateVersion": "文件版本发生改变。该页将要刷新。",
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后刷新此页。",
"DE.Controllers.ApplicationController.errorToken": "文档安全令牌形成不正确。<br> 请联系文档服务器管理员。",
"DE.Controllers.ApplicationController.errorTokenExpire": "文档安全令牌已过期。<br> 请联系文档服务器管理员。",
"DE.Controllers.ApplicationController.errorUpdateVersion": "\n该文件版本已更改。该页面将重新加载。",
"DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "网络连接已恢复,文件版本已变更。<br>在继续工作之前,需要下载文件或复制其内容以避免丢失数据,然后重新加载此页。",
"DE.Controllers.ApplicationController.errorUserDrop": "该文件现在无法访问。",
"DE.Controllers.ApplicationController.errorViewerDisconnect": "连接已断开。您仍然可以查看文档,<br> 但在连接恢复并页面被重新加载之前无法下载或打印。",
"DE.Controllers.ApplicationController.mniImageFromFile": "来自文件的图像",
"DE.Controllers.ApplicationController.mniImageFromStorage": "来自存储的图像",
"DE.Controllers.ApplicationController.mniImageFromUrl": "来自网络的图像(URL)",
"DE.Controllers.ApplicationController.notcriticalErrorTitle": "警告",
"DE.Controllers.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。",
"DE.Controllers.ApplicationController.textAnonymous": "匿名",
"DE.Controllers.ApplicationController.openErrorText": "打开文件时出错。",
"DE.Controllers.ApplicationController.saveErrorText": "保存文件时出错。",
"DE.Controllers.ApplicationController.saveErrorTextDesktop": "此文件无法保存或创建。<br> 可能的原因是:<br> 1.该文件为只读文件。 <br> 2.此文件正在由其他用户编辑。 <br> 3.磁盘已满或损坏。",
"DE.Controllers.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法加载。请重新加载页面。",
"DE.Controllers.ApplicationController.textAnonymous": "匿名用户",
"DE.Controllers.ApplicationController.textBuyNow": "访问网站",
"DE.Controllers.ApplicationController.textCloseTip": "点按以关闭提示。",
"DE.Controllers.ApplicationController.textCloseTip": "单击以关闭此提示。",
"DE.Controllers.ApplicationController.textContactUs": "联系销售",
"DE.Controllers.ApplicationController.textGotIt": "知道了",
"DE.Controllers.ApplicationController.textGuest": "访客",
"DE.Controllers.ApplicationController.textGuest": "来宾",
"DE.Controllers.ApplicationController.textLoadingDocument": "文件加载中…",
"DE.Controllers.ApplicationController.textNoLicenseTitle": "触碰到许可证数量限制。",
"DE.Controllers.ApplicationController.textNoLicenseTitle": "许可证限制",
"DE.Controllers.ApplicationController.textOf": "的",
"DE.Controllers.ApplicationController.textRequired": "要发送表单,请填写所有必填项目。",
"DE.Controllers.ApplicationController.textRequired": "若要发送表单,请填写所有必填字段。",
"DE.Controllers.ApplicationController.textSaveAs": "另存为PDF",
"DE.Controllers.ApplicationController.textSaveAsDesktop": "另存为...",
"DE.Controllers.ApplicationController.textSubmited": "<b>表单提交成功</b><br>点击以关闭提示",
"DE.Controllers.ApplicationController.titleServerVersion": "编辑器已更新",
"DE.Controllers.ApplicationController.titleUpdateVersion": "版本已变化",
"DE.Controllers.ApplicationController.titleUpdateVersion": "版本已更改",
"DE.Controllers.ApplicationController.txtArt": "在此输入文字",
"DE.Controllers.ApplicationController.txtChoose": "选择一项",
"DE.Controllers.ApplicationController.txtClickToLoad": "单击以加载图片",
"DE.Controllers.ApplicationController.txtClose": "关闭",
"DE.Controllers.ApplicationController.txtEmpty": "(空)",
"DE.Controllers.ApplicationController.txtEnterDate": "输入日期",
"DE.Controllers.ApplicationController.txtPressLink": "按CTRL并单击链接",
"DE.Controllers.ApplicationController.txtUntitled": "无标题",
"DE.Controllers.ApplicationController.unknownErrorText": "未知错误。",
"DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "您的浏览器不受支持",
"DE.Controllers.ApplicationController.uploadImageExtMessage": "未知图像格式。",
"DE.Controllers.ApplicationController.uploadImageSizeMessage": "图片太大了。最大允许的大小为 25 MB.",
"DE.Controllers.ApplicationController.waitText": "请稍候...",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "与文档服务器的并发连接次数已超出限制,文档打开后将仅供查看。<br>请联系您的账户管理员了解详情。",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "授权过期<br>您不具备文件编辑功能的授权<br>请联系管理员。",
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "授权需更新<br>您只有文件编辑功能的部分权限<br>请联系管理员以取得完整权限。",
"DE.Controllers.ApplicationController.warnLicenseExceeded": "您已达到同时连接 %1 编辑器的限制。该文档将打开以查看。<br> 请联系管理员以了解更多。",
"DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "许可证已过期。 <br> 您无法使用文件编辑功能。 <br> 请联系管理员。",
"DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "许可证需更新。<br> 您使用文件编辑功能限制。<br> 请联系管理员以取得完整权限。",
"DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "您已达到%1编辑器的用户数量限制。请联系您的管理员以了解更多。",
"DE.Controllers.ApplicationController.warnNoLicense": "该版本对文档服务器的并发连接有限制。<br>如果需要更多请考虑购买商业许可证。",
"DE.Controllers.ApplicationController.warnNoLicense": "您已达到同时连接 %1 编辑器的限制。该文档将打开以查看。<br>请联系 %1 销售团队以了解个人升级条款。",
"DE.Controllers.ApplicationController.warnNoLicenseUsers": "您已达到%1编辑器的用户限制。请联系%1销售团队以了解个人升级条款。",
"DE.Views.ApplicationView.textClear": "清除所有字段",
"DE.Views.ApplicationView.textNext": "下一填充框",
"DE.Views.ApplicationView.textCopy": "复制",
"DE.Views.ApplicationView.textCut": "剪切",
"DE.Views.ApplicationView.textNext": "下一字段",
"DE.Views.ApplicationView.textPaste": "粘贴",
"DE.Views.ApplicationView.textPrintSel": "打印所选内容",
"DE.Views.ApplicationView.textRedo": "重做",
"DE.Views.ApplicationView.textSubmit": "提交",
"DE.Views.ApplicationView.textUndo": "撤消",
"DE.Views.ApplicationView.txtDarkMode": "深色模式",
"DE.Views.ApplicationView.txtDownload": "下载",
"DE.Views.ApplicationView.txtDownloadDocx": "导出成docx",
"DE.Views.ApplicationView.txtDownloadPdf": "导出成PDF",
"DE.Views.ApplicationView.txtDownloadDocx": "下载为docx",
"DE.Views.ApplicationView.txtDownloadPdf": "下载为pdf",
"DE.Views.ApplicationView.txtEmbed": "嵌入",
"DE.Views.ApplicationView.txtFileLocation": "打开文件所在位置",
"DE.Views.ApplicationView.txtFileLocation": "打开文件位置",
"DE.Views.ApplicationView.txtFullScreen": "全屏",
"DE.Views.ApplicationView.txtPrint": "打印",
"DE.Views.ApplicationView.txtShare": "共享",

View file

@ -326,7 +326,8 @@ define([
text : this.textDisconnect,
placement: 'top',
position: this.statusbar.isVisible() ? undefined : {bottom: 0},
showLink: false
showLink: false,
style: 'max-width: 310px;'
});
this.disconnectTip.on({
'closeclick': function() {
@ -348,6 +349,6 @@ define([
textTrackChanges: 'The document is opened with the Track Changes mode enabled',
tipReview : 'Review',
textSetTrackChanges: 'You are in Track Changes mode',
textDisconnect: '<b>Connection is lost</b><br>Please check connection settings.'
textDisconnect: '<b>Connection is lost</b><br>Trying to connect. Please check connection settings.'
}, DE.Controllers.Statusbar || {}));
});

View file

@ -80,7 +80,6 @@ define([
});
this.addListeners({
'ViewTab': {
'zoom:value': _.bind(this.onChangeZoomValue, this),
'zoom:topage': _.bind(this.onBtnZoomTo, this, 'topage'),
'zoom:towidth': _.bind(this.onBtnZoomTo, this, 'towidth'),
'rulers:change': _.bind(this.onChangeRulers, this),
@ -125,6 +124,11 @@ define([
})).then(function(){
me.view.setEvents();
me.view.cmbZoom.on('selected', _.bind(me.onSelectedZoomValue, me))
.on('changed:before',_.bind(me.onZoomChanged, me, true))
.on('changed:after', _.bind(me.onZoomChanged, me, false))
.on('combo:blur', _.bind(me.onComboBlur, me, false));
me.getApplication().getController('LeftMenu').leftMenu.btnNavigation.on('toggle', function (btn, state) {
if (state !== me.view.btnNavigation.pressed)
me.view.turnNavigation(state);
@ -164,13 +168,37 @@ define([
this.view.btnFitToWidth.toggle(type == 1, true);
this.view.cmbZoom.setValue(percent, percent + '%');
this._state.zoomValue = percent;
},
onChangeZoomValue: function (value) {
this.api.zoom(value);
applyZoom: function (value) {
var val = Math.max(25, Math.min(500, value));
this.api.zoom(val);
Common.NotificationCenter.trigger('edit:complete', this.view);
},
onSelectedZoomValue: function (combo, record) {
this.applyZoom(record.value);
},
onZoomChanged: function (before, combo, record, e) {
var value = parseFloat(record.value);
if (before) {
var expr = new RegExp('^\\s*(\\d*(\\.|,)?\\d+)\\s*(%)?\\s*$');
if (!expr.exec(record.value)) {
this.view.cmbZoom.setValue(this._state.zoomValue, this._state.zoomValue + '%');
Common.NotificationCenter.trigger('edit:complete', this.view);
}
} else {
if (this._state.zoomValue !== value && !isNaN(value)) {
this.applyZoom(value);
} else if (record.value !== this._state.zoomValue + '%') {
this.view.cmbZoom.setValue(this._state.zoomValue, this._state.zoomValue + '%');
}
}
},
onBtnZoomTo: function(type) {
var btn, func;
if ( type === 'topage' ) {
@ -214,5 +242,9 @@ define([
}
},
onComboBlur: function() {
Common.NotificationCenter.trigger('edit:complete', this.view);
}
}, DE.Controllers.ViewTab || {}));
});

View file

@ -54,9 +54,6 @@ define([
me.btnNavigation.on('click', function (btn, e) {
me.fireEvent('viewtab:navigation', [btn.pressed]);
});
me.cmbZoom.on('selected', function (combo, record) {
me.fireEvent('zoom:value', [record.value]);
});
me.btnFitToPage.on('click', function () {
me.fireEvent('zoom:topage');
});
@ -75,6 +72,8 @@ define([
me.btnDarkDocument.on('click', _.bind(function () {
me.fireEvent('darkmode:change');
}, me));
me.cmbZoom.on('combo:focusin', _.bind(this.onComboOpen, this, false));
me.cmbZoom.on('show:after', _.bind(this.onComboOpen, this, true));
},
initialize: function (options) {
@ -104,7 +103,7 @@ define([
el: $host.find('#slot-field-zoom'),
cls: 'input-group-nr',
menuStyle: 'min-width: 55px;',
editable: false,
editable: true,
disabled: true,
data: [
{ displayValue: "50%", value: 50 },
@ -171,7 +170,7 @@ define([
this.btnDarkDocument = new Common.UI.Button({
parentEl: $host.find('#slot-btn-dark-document'),
cls: 'btn-toolbar x-huge icon-top',
iconCls: 'toolbar__icon night',
iconCls: 'toolbar__icon dark-mode',
caption: this.textDarkDocument,
enableToggle: true,
disabled: true,
@ -242,6 +241,14 @@ define([
this.btnNavigation && this.btnNavigation.toggle(state, true);
},
onComboOpen: function (needfocus, combo) {
_.delay(function() {
var input = $('input', combo.cmpEl).select();
if (needfocus) input.focus();
else if (!combo.isMenuOpen()) input.one('mouseup', function (e) { e.preventDefault(); });
}, 10);
},
textNavigation: 'Navigation',
textZoom: 'Zoom',
textFitToPage: 'Fit To Page',

View file

@ -1271,10 +1271,6 @@
"DE.Views.CellsAddDialog.textRow": "Sətirlər",
"DE.Views.CellsAddDialog.textTitle": "Bir Neçəsini Daxil Et",
"DE.Views.CellsAddDialog.textUp": "Kursorun yuxarısında",
"DE.Views.CellsRemoveDialog.textCol": "Bütün sütunu silin",
"DE.Views.CellsRemoveDialog.textLeft": "Xanaları sola sürüşdürün",
"DE.Views.CellsRemoveDialog.textRow": "Bütün cərgəni silin",
"DE.Views.CellsRemoveDialog.textTitle": "Xanaları Silin",
"DE.Views.ChartSettings.textAdvanced": "Qabaqcıl Parametrləri Göstər",
"DE.Views.ChartSettings.textChartType": "Diaqramın növünü dəyiş",
"DE.Views.ChartSettings.textEditData": "Məlumatları Redaktə edin",
@ -1293,10 +1289,6 @@
"DE.Views.ChartSettings.txtTight": "Ensiz",
"DE.Views.ChartSettings.txtTitle": "Diaqram",
"DE.Views.ChartSettings.txtTopAndBottom": "Yuxarı və Aşağı",
"DE.Views.CompareSettingsDialog.textChar": "Simvol səviyyəsi",
"DE.Views.CompareSettingsDialog.textShow": "Dəyişiklikləri göstər:",
"DE.Views.CompareSettingsDialog.textTitle": "Müqayisə Parametrləri",
"DE.Views.CompareSettingsDialog.textWord": "Söz səviyyəsi",
"DE.Views.ControlSettingsDialog.strGeneral": "Ümumi",
"DE.Views.ControlSettingsDialog.textAdd": "Əlavə et",
"DE.Views.ControlSettingsDialog.textAppearance": "Görünüş",
@ -1818,7 +1810,7 @@
"DE.Views.FormsTab.capBtnNext": "Növbəti Sahə",
"DE.Views.FormsTab.capBtnPrev": "Əvvəlki Sahə",
"DE.Views.FormsTab.capBtnRadioBox": "Radio düyməsi",
"DE.Views.FormsTab.capBtnSaveForm": "Forma kimi yadda saxla",
"DE.Views.FormsTab.capBtnSaveForm": "Formanı yarat",
"DE.Views.FormsTab.capBtnSubmit": "Göndər",
"DE.Views.FormsTab.capBtnText": "Mətn Sahəsi",
"DE.Views.FormsTab.capBtnView": "Formanı göstər",

View file

@ -1743,6 +1743,7 @@
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Mostra fent un clic en els globus",
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Mostra en passar el cursor per damunt dels indicadors de funció",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centímetre",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Activa el mode fosc del document",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajusta a la pàgina",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajusta-ho a l'amplària",
"DE.Views.FileMenuPanels.Settings.txtInch": "Polzada",

View file

@ -124,6 +124,8 @@
"Common.Translation.warnFileLocked": "Dokumentet er i brug af en anden applikation. Du kan fortsætte med at redigere og gemme en kopi.",
"Common.Translation.warnFileLockedBtnEdit": "Opret en kopi",
"Common.Translation.warnFileLockedBtnView": "Åben for visning",
"Common.UI.ButtonColored.textAutoColor": "Automatisk",
"Common.UI.ButtonColored.textNewColor": "Brugerdefineret farve",
"Common.UI.Calendar.textApril": "April",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textDecember": "December",
@ -180,6 +182,9 @@
"Common.UI.SynchronizeTip.textSynchronize": "Dokumentet er blevet ændret af en anden bruger.<br>Venligst tryk for at gemme ændringerne og genindlæs opdateringerne.",
"Common.UI.ThemeColorPalette.textStandartColors": "Standard farve",
"Common.UI.ThemeColorPalette.textThemeColors": "Tema farver",
"Common.UI.Themes.txtThemeClassicLight": "Klassisk lys",
"Common.UI.Themes.txtThemeDark": "Mørk",
"Common.UI.Themes.txtThemeLight": "Lys",
"Common.UI.Window.cancelButtonText": "Afbryd",
"Common.UI.Window.closeButtonText": "Luk",
"Common.UI.Window.noButtonText": "Nej",
@ -201,10 +206,13 @@
"Common.Views.About.txtVersion": "Version",
"Common.Views.AutoCorrectDialog.textAdd": "tilføj",
"Common.Views.AutoCorrectDialog.textApplyText": "Anvend løbende",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "Tekst autokorrektur",
"Common.Views.AutoCorrectDialog.textAutoFormat": "Løbende autoformatering",
"Common.Views.AutoCorrectDialog.textBulleted": "Automatiske punktlister",
"Common.Views.AutoCorrectDialog.textBy": "Af",
"Common.Views.AutoCorrectDialog.textDelete": "Slet",
"Common.Views.AutoCorrectDialog.textFLSentence": "Sæt første bogstav i sætninger med stort",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet- og netværksstier med hyperlinks",
"Common.Views.AutoCorrectDialog.textHyphens": "Bindestreger (--) med streg (-)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Matematisk autokorrektur",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatisk nummererede lister",
@ -224,6 +232,12 @@
"Common.Views.AutoCorrectDialog.warnReset": "Al autokorrektur du tilføjede fjernes, og de ændrede gendannes til deres oprindelige værdier. Ønsker du at fortsætte?",
"Common.Views.AutoCorrectDialog.warnRestore": "Autokorrekturindtastningen for %1 nulstilles til sin oprindelige værdi. Ønsker du at fortsætte?",
"Common.Views.Chat.textSend": "Send",
"Common.Views.Comments.mniAuthorAsc": "Forfatter A til Z",
"Common.Views.Comments.mniAuthorDesc": "Forfatter Z til A",
"Common.Views.Comments.mniDateAsc": "Ældste",
"Common.Views.Comments.mniDateDesc": "Nyeste",
"Common.Views.Comments.mniPositionAsc": "Fra toppen",
"Common.Views.Comments.mniPositionDesc": "Fra bunden",
"Common.Views.Comments.textAdd": "Tilføj",
"Common.Views.Comments.textAddComment": "Tilføj kommentar",
"Common.Views.Comments.textAddCommentToDoc": "Tilføj kommentar til dokument",
@ -231,6 +245,7 @@
"Common.Views.Comments.textAnonym": "Gæst",
"Common.Views.Comments.textCancel": "Annuller",
"Common.Views.Comments.textClose": "Luk",
"Common.Views.Comments.textClosePanel": "Luk kommentarer",
"Common.Views.Comments.textComments": "Kommentare",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Skriv din kommentar her",
@ -239,6 +254,7 @@
"Common.Views.Comments.textReply": "Svar",
"Common.Views.Comments.textResolve": "Løs",
"Common.Views.Comments.textResolved": "Løst",
"Common.Views.Comments.textSort": "Sorter kommentarer",
"Common.Views.CopyWarningDialog.textDontShow": "Vis ikke denne meddelelse igen",
"Common.Views.CopyWarningDialog.textMsg": "Kopier, klip og sæt ind handlinger ved brug af redigeringsværktøjets værktøjsbarknapper og kontekst menu handlinger vil kun blive foretaget i redigeringsfanen. <br><br> for at kopier og sætte ind til eller fra programmer uden for redigeringsværktøjet, skal du bruge følgende tastaturtaster: ",
"Common.Views.CopyWarningDialog.textTitle": "Kopier, Klip og Indsæt handlinger",
@ -341,6 +357,8 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "Aktiver samredigeringstilstanden",
"Common.Views.ReviewChanges.tipCommentRem": "Fjern kommentarer",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Fjern nuværende kommentarer",
"Common.Views.ReviewChanges.tipCommentResolve": "Løs kommentarer",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "Løs aktuelle kommentarer",
"Common.Views.ReviewChanges.tipCompare": "Sammenlign nuværende dokument med et andet",
"Common.Views.ReviewChanges.tipHistory": "Vis versionshistorik",
"Common.Views.ReviewChanges.tipRejectCurrent": "Afvis nuværende ændring",
@ -361,6 +379,11 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "Fjern mine kommentarer",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Fjern mine nuværende kommentarer",
"Common.Views.ReviewChanges.txtCommentRemove": "Fjern",
"Common.Views.ReviewChanges.txtCommentResolve": "Løs ",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Løs alle kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Løs aktuelle kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Løs mine kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Løs mine aktuelle kommentarer",
"Common.Views.ReviewChanges.txtCompare": "Sammenlign",
"Common.Views.ReviewChanges.txtDocLang": "Sprog",
"Common.Views.ReviewChanges.txtEditing": "redigering",
@ -369,6 +392,7 @@
"Common.Views.ReviewChanges.txtHistory": "Version historik",
"Common.Views.ReviewChanges.txtMarkup": "Alle ændringer {0}",
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
"Common.Views.ReviewChanges.txtMarkupSimpleCap": "Kun opmærkning",
"Common.Views.ReviewChanges.txtNext": "Til næste ændring",
"Common.Views.ReviewChanges.txtOff": "Slukket for mig",
"Common.Views.ReviewChanges.txtOffGlobal": "Slukket for mig og alle andre",
@ -406,6 +430,10 @@
"Common.Views.ReviewPopover.textOpenAgain": "Åben igen",
"Common.Views.ReviewPopover.textReply": "Svar",
"Common.Views.ReviewPopover.textResolve": "Løs",
"Common.Views.ReviewPopover.txtAccept": "Accepter",
"Common.Views.ReviewPopover.txtDeleteTip": "Slet",
"Common.Views.ReviewPopover.txtEditTip": "Rediger",
"Common.Views.ReviewPopover.txtReject": "Afvis",
"Common.Views.SaveAsDlg.textLoading": "Indlæser",
"Common.Views.SaveAsDlg.textTitle": "Mappe til at gemme",
"Common.Views.SelectFileDlg.textLoading": "Indlæser",
@ -505,6 +533,7 @@
"DE.Controllers.Main.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.",
"DE.Controllers.Main.errorKeyEncrypt": "Ukendte nøgle descriptor",
"DE.Controllers.Main.errorKeyExpire": "Nøgle beskrivelse udløbet",
"DE.Controllers.Main.errorLoadingFont": "Skrifttyper er ikke indlæst.<br>Kontakt din dokument server administrator.",
"DE.Controllers.Main.errorMailMergeLoadFile": "Indlæsning fejlede. Vælg en anden fil.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Fusionering fejlede",
"DE.Controllers.Main.errorProcessSaveResult": "Kunne ikke gemme",
@ -523,6 +552,7 @@
"DE.Controllers.Main.errorUsersExceed": "Det maksimale antal af brugere tilladt i din aftale er nået. ",
"DE.Controllers.Main.errorViewerDisconnect": "Forbindesen er tabt. Du kan stadig se dokumentet, <br> men du vil ikke være i stand til at downloade eller udskrive det før forbindelsen er genetableret. ",
"DE.Controllers.Main.leavePageText": "Du har ændringer i dette dokument der ikke er gemte. Tryk \"Blive på denne side\", og derefter \"Gem\" for at gemme dem. Tryk \"Forlad denne side\" for at slette alle ikke gemte ændringer.",
"DE.Controllers.Main.leavePageTextOnClose": "Alle ikke gemte ændringer i dette dokument vil blive tabt. <br> Tryk \"Afbryd\" og derefter \"gem\" for at gemme dem. Klik \"OK\" for at slette ikke gemte ændringer. ",
"DE.Controllers.Main.loadFontsTextText": "Indlæser data...",
"DE.Controllers.Main.loadFontsTitleText": "Indlæser data",
"DE.Controllers.Main.loadFontTextText": "Indlæser data...",
@ -563,6 +593,7 @@
"DE.Controllers.Main.textContactUs": "Kontakt salg",
"DE.Controllers.Main.textConvertEquation": "Denne ligning er skabt med en ældre version af programmet, som ikke længere understøttes. Omdannelse af denne ligning til Office Math ML format vil gøre den redigérbar.<br>Ønsker du at omdanne?",
"DE.Controllers.Main.textCustomLoader": "Bemærk, at du i henhold til licensbetingelserne ikke har ret til at skifte loaderen.<br>Kontakt venligt vores salgsafdeling for at få en kvote.",
"DE.Controllers.Main.textDisconnect": "Forbindelsen er afbrudt",
"DE.Controllers.Main.textGuest": "Gæst",
"DE.Controllers.Main.textHasMacros": "Filen indeholder makroer.<br>Ønsker du at køre makroer?",
"DE.Controllers.Main.textLearnMore": "Lær mere",
@ -576,6 +607,7 @@
"DE.Controllers.Main.textShape": "Form",
"DE.Controllers.Main.textStrict": "Striks tilstand",
"DE.Controllers.Main.textTryUndoRedo": "Fortryd funktionen er blevet slået fra i den hurtige co-redigerngstilstand.<b>Tryk på 'Striks tilstand' knappen for at skifte til den strikse co-redigeringstilstand for at redigere filen uden at andre brugere kan foretage ændringer før efter du har gemt dem. Du kan skifte i mellem co-redigeringstilstanden ved at bruge de avancerede indstillinger. ",
"DE.Controllers.Main.textTryUndoRedoWarn": "Fortryd/omgør-funktionen er deaktiveret for hurtig medredigeringstilstand.",
"DE.Controllers.Main.titleLicenseExp": "Licens er udløbet",
"DE.Controllers.Main.titleServerVersion": "Redigeringsværktøj opdateret",
"DE.Controllers.Main.titleUpdateVersion": "Version ændret",
@ -609,7 +641,9 @@
"DE.Controllers.Main.txtMissArg": "Manglende argument",
"DE.Controllers.Main.txtMissOperator": "Manglende operatør",
"DE.Controllers.Main.txtNeedSynchronize": "Du har opdateringer",
"DE.Controllers.Main.txtNone": "Ingen",
"DE.Controllers.Main.txtNoTableOfContents": "Der er ingen overskrifter i dokumentet. Anvend en overskriftstil på teksten, så den vises i indholdsfortegnelsen.",
"DE.Controllers.Main.txtNoTableOfFigures": "Ingen tabel med figurer fundet.",
"DE.Controllers.Main.txtNoText": "Fejl! Ingen tekst af den specificerede type i dokumentet.",
"DE.Controllers.Main.txtNotInTable": "Er ikke i tabel",
"DE.Controllers.Main.txtNotValidBookmark": "Fejl! Ikke en gyldig bogmærke selv-reference",
@ -792,6 +826,7 @@
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Afrundet Rektangulær Talebobbel ",
"DE.Controllers.Main.txtStarsRibbons": "Stjerner og bånd",
"DE.Controllers.Main.txtStyle_Caption": "Overskrift",
"DE.Controllers.Main.txtStyle_endnote_text": "Slutnote tekst",
"DE.Controllers.Main.txtStyle_footnote_text": "Fodnote tekst",
"DE.Controllers.Main.txtStyle_Heading_1": "Overskrift 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Overskrift 2",
@ -812,6 +847,8 @@
"DE.Controllers.Main.txtSyntaxError": "Syntax-fejl",
"DE.Controllers.Main.txtTableInd": "Tabel-index kan ikke være 0",
"DE.Controllers.Main.txtTableOfContents": "Indholdsfortegnelse",
"DE.Controllers.Main.txtTableOfFigures": "Figurtabel",
"DE.Controllers.Main.txtTOCHeading": "TOC overskrift",
"DE.Controllers.Main.txtTooLarge": "Tallet er for stort til formatering",
"DE.Controllers.Main.txtTypeEquation": "Indtast ligning her.",
"DE.Controllers.Main.txtUndefBookmark": "Udefineret bogmærke",
@ -847,10 +884,12 @@
"DE.Controllers.Statusbar.tipReview": "Spor ændringer",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "Skrifttypen du gemmer er ikke tilgængeligt på din nuværende enhed.<br>Skrifttypen vil blive vist som en af dem dit system understøtter, den gemte skrifttype vil bruge brugt når den er tilgængelig.<br>Vil du fortsætte?",
"DE.Controllers.Toolbar.dataUrl": "Indsæt en data-URL",
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Advarsel",
"DE.Controllers.Toolbar.textAccent": "Accenter",
"DE.Controllers.Toolbar.textBracket": "Klammer",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Du skal specificere billede URL",
"DE.Controllers.Toolbar.textEmptyMMergeUrl": "Du skal angive URL.",
"DE.Controllers.Toolbar.textFontSizeErr": "Den indtastede værdi er ikke korrekt.<br>Venligst indtast en numerisk værdi mellem 1 og 300",
"DE.Controllers.Toolbar.textFraction": "Fraktioner",
"DE.Controllers.Toolbar.textFunction": "Funktioner",
@ -1186,6 +1225,7 @@
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"DE.Controllers.Viewport.textFitPage": "Tilpas til side",
"DE.Controllers.Viewport.textFitWidth": "Tilpas til bredde",
"DE.Controllers.Viewport.txtDarkMode": "Mørk tilstand",
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Etiket:",
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "Etiket kan ikke være tom.",
"DE.Views.BookmarksDialog.textAdd": "Tilføj",
@ -1376,6 +1416,7 @@
"DE.Views.DocumentHolder.mergeCellsText": "Fusioner celler",
"DE.Views.DocumentHolder.moreText": "Flere varianter...",
"DE.Views.DocumentHolder.noSpellVariantsText": "Ingen varianter",
"DE.Views.DocumentHolder.notcriticalErrorTitle": "Advarsel",
"DE.Views.DocumentHolder.originalSizeText": "Faktisk størrelse",
"DE.Views.DocumentHolder.paragraphText": "Afsnit",
"DE.Views.DocumentHolder.removeHyperlinkText": "Slet Hyperlink",
@ -1443,7 +1484,7 @@
"DE.Views.DocumentHolder.textRotate270": "Roter 90° mod uret",
"DE.Views.DocumentHolder.textRotate90": "Roter 90° med uret",
"DE.Views.DocumentHolder.textRow": "Slet hele rækken",
"DE.Views.DocumentHolder.textSeparateList": "Separat liste",
"DE.Views.DocumentHolder.textSeparateList": "Adskil liste",
"DE.Views.DocumentHolder.textSettings": "Indstillinger",
"DE.Views.DocumentHolder.textSeveral": "Flere rækker/kolonner",
"DE.Views.DocumentHolder.textShapeAlignBottom": "Tilpas bund",
@ -1533,6 +1574,7 @@
"DE.Views.DocumentHolder.txtRemLimit": "Slet begrænsning",
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Fjern accent tegn",
"DE.Views.DocumentHolder.txtRemoveBar": "Fjern bar",
"DE.Views.DocumentHolder.txtRemoveWarning": "Vil du fjerne denne signatur?<br>Det kan ikke fortrydes.",
"DE.Views.DocumentHolder.txtRemScripts": "Slet scripts",
"DE.Views.DocumentHolder.txtRemSubscript": "Slet subscript",
"DE.Views.DocumentHolder.txtRemSuperscript": "Slet superscript",
@ -1552,6 +1594,7 @@
"DE.Views.DocumentHolder.txtTopAndBottom": "Top og bund",
"DE.Views.DocumentHolder.txtUnderbar": "Linie under tekst",
"DE.Views.DocumentHolder.txtUngroup": "Fjern fra gruppe",
"DE.Views.DocumentHolder.txtWarnUrl": "Hvis du klikker på dette link, kan det være skadeligt for din enhed og dine data.<br>Er du sikker på, at du vil fortsætte?",
"DE.Views.DocumentHolder.updateStyleText": "Opdater %1 stilart",
"DE.Views.DocumentHolder.vertAlignText": "Lodret justering",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Rammer og fyld",
@ -1603,6 +1646,8 @@
"DE.Views.FileMenu.btnCloseMenuCaption": "Luk menu",
"DE.Views.FileMenu.btnCreateNewCaption": "Opret ny",
"DE.Views.FileMenu.btnDownloadCaption": "Hent som...",
"DE.Views.FileMenu.btnExitCaption": "Afslut",
"DE.Views.FileMenu.btnFileOpenCaption": "Åben...",
"DE.Views.FileMenu.btnHelpCaption": "Hjælp...",
"DE.Views.FileMenu.btnHistoryCaption": "Version historik",
"DE.Views.FileMenu.btnInfoCaption": "Dokument info...",
@ -1618,6 +1663,8 @@
"DE.Views.FileMenu.btnSettingsCaption": "Avancerede indstillinger...",
"DE.Views.FileMenu.btnToEditCaption": "Rediger dokument",
"DE.Views.FileMenu.textDownload": "Hent",
"DE.Views.FileMenuPanels.CreateNew.txtBlank": "Tomt dokument",
"DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Opret ny",
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Anvend",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tilføj forfatter",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tilføj tekst",
@ -1670,6 +1717,7 @@
"DE.Views.FileMenuPanels.Settings.strPaste": "Klip, kopier og indsæt",
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Vis knappen for Indsæt-optioner når indhold indsættes",
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "Slå visning af de løste kommentarer",
"DE.Views.FileMenuPanels.Settings.strReviewHover": "Spor ændringer Display",
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Real tids samarbejdsændringer",
"DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Slå stavekontrolstilstand til ",
"DE.Views.FileMenuPanels.Settings.strStrict": "Striks",
@ -1691,7 +1739,9 @@
"DE.Views.FileMenuPanels.Settings.txtAll": "Se alle",
"DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Autokorrektur valgmuligheder",
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Standard cache tilstand",
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Vis ved at svæve i værktøjstip",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Slå mørk tilstand dokument til",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Tilpas til side",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Tilpas til bredde",
"DE.Views.FileMenuPanels.Settings.txtInch": "Tomme",
@ -1711,6 +1761,10 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Vis besked",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deaktiver alle makroer med en besked",
"DE.Views.FileMenuPanels.Settings.txtWin": "som Windows",
"DE.Views.FormSettings.textAlways": "Altid",
"DE.Views.FormSettings.textAspect": "Lås billedformat",
"DE.Views.FormSettings.textAutofit": "AutoTilpas",
"DE.Views.FormSettings.textBackgroundColor": "Baggrundsfarve",
"DE.Views.FormSettings.textCheckbox": "Afkrydsningsfelt",
"DE.Views.FormSettings.textColor": "Rammefarve",
"DE.Views.FormSettings.textComb": "Kam af tegn",
@ -1720,6 +1774,7 @@
"DE.Views.FormSettings.textDisconnect": "Afbryd forbindelse",
"DE.Views.FormSettings.textDropDown": "Dropdown",
"DE.Views.FormSettings.textField": "Tekstfelt",
"DE.Views.FormSettings.textFixed": "Felt med fast størrelse",
"DE.Views.FormSettings.textFromFile": "Fra fil",
"DE.Views.FormSettings.textFromStorage": "Fra lager",
"DE.Views.FormSettings.textFromUrl": "Fra URL",
@ -1728,15 +1783,21 @@
"DE.Views.FormSettings.textKey": "Nøgle",
"DE.Views.FormSettings.textLock": "Lås",
"DE.Views.FormSettings.textMaxChars": "Tegnbegrænsning",
"DE.Views.FormSettings.textMulti": "Flerlinjefelt",
"DE.Views.FormSettings.textNever": "Aldrig",
"DE.Views.FormSettings.textNoBorder": "Ingen kant",
"DE.Views.FormSettings.textPlaceholder": "Pladsholder",
"DE.Views.FormSettings.textRadiobox": "Radioknap",
"DE.Views.FormSettings.textRequired": "Påkrævet",
"DE.Views.FormSettings.textScale": "Hvornår skal der skaleres",
"DE.Views.FormSettings.textSelectImage": "Vælg billede",
"DE.Views.FormSettings.textTip": "Tip",
"DE.Views.FormSettings.textTipAdd": "Tilføj ny værdi",
"DE.Views.FormSettings.textTipDelete": "Slet værdi",
"DE.Views.FormSettings.textTipDown": "Flyt ned",
"DE.Views.FormSettings.textTipUp": "Flyt op",
"DE.Views.FormSettings.textTooBig": "Billedet er for stort",
"DE.Views.FormSettings.textTooSmall": "Billedet er for lille",
"DE.Views.FormSettings.textUnlock": "Oplås",
"DE.Views.FormSettings.textValue": "Værdimuligheder",
"DE.Views.FormSettings.textWidth": "Cellebredde",
@ -1747,13 +1808,17 @@
"DE.Views.FormsTab.capBtnNext": "Næste felt",
"DE.Views.FormsTab.capBtnPrev": "Foregående felt",
"DE.Views.FormsTab.capBtnRadioBox": "Radioknap",
"DE.Views.FormsTab.capBtnSaveForm": "Gem som en formular",
"DE.Views.FormsTab.capBtnSubmit": "Send",
"DE.Views.FormsTab.capBtnText": "Tekstfelt",
"DE.Views.FormsTab.capBtnView": "Vis formular",
"DE.Views.FormsTab.textClear": "Ryd felter",
"DE.Views.FormsTab.textClearFields": "Ryd alle felter",
"DE.Views.FormsTab.textCreateForm": "Tilføj felter og opret et udfyld bart OFORM dokument",
"DE.Views.FormsTab.textGotIt": "Forstået",
"DE.Views.FormsTab.textHighlight": "Fremhæv indstillinger",
"DE.Views.FormsTab.textNoHighlight": "Ingen fremhævning",
"DE.Views.FormsTab.textRequired": "Udfyld alle obligatoriske felter for at sende formularen.",
"DE.Views.FormsTab.textSubmited": "Formular indsendt med succes",
"DE.Views.FormsTab.tipCheckBox": "Indsæt afkrydsningsfelt",
"DE.Views.FormsTab.tipComboBox": "Indsæt kombinationsfelt",
@ -1762,9 +1827,11 @@
"DE.Views.FormsTab.tipNextForm": "Gå til næste felt",
"DE.Views.FormsTab.tipPrevForm": "Gå til foregående felt",
"DE.Views.FormsTab.tipRadioBox": "Indsæt radioknap",
"DE.Views.FormsTab.tipSaveForm": "Gem en fil som et udfyldbart OFORM-dokument",
"DE.Views.FormsTab.tipSubmit": "Send formular",
"DE.Views.FormsTab.tipTextField": "Indsæt tekstfelt",
"DE.Views.FormsTab.tipViewForm": "Udfyld formulartilstand",
"DE.Views.FormsTab.txtUntitled": "Unavngivet",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bund midt",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Nederst venstre",
"DE.Views.HeaderFooterSettings.textBottomPage": "Bunden af siden",
@ -2341,6 +2408,7 @@
"DE.Views.TableSettings.textBorders": "Rammestil",
"DE.Views.TableSettings.textCellSize": "Række- og kolonnestørrelse",
"DE.Views.TableSettings.textColumns": "Kolonner",
"DE.Views.TableSettings.textConvert": "Konverter tabel til tekst",
"DE.Views.TableSettings.textDistributeCols": "Fordel kolonner",
"DE.Views.TableSettings.textDistributeRows": "Fordel rækker",
"DE.Views.TableSettings.textEdit": "Rækker og kolonner",
@ -2445,6 +2513,14 @@
"DE.Views.TableSettingsAdvanced.txtNoBorders": "Ingen rammer",
"DE.Views.TableSettingsAdvanced.txtPercent": "Procent",
"DE.Views.TableSettingsAdvanced.txtPt": "Punkt",
"DE.Views.TableToTextDialog.textEmpty": "Du skal indtaste et tegn til den brugerdefinerede separator.",
"DE.Views.TableToTextDialog.textNested": "Konverter indlejrede tabeller",
"DE.Views.TableToTextDialog.textOther": "Andet",
"DE.Views.TableToTextDialog.textPara": "Afsnitstegn",
"DE.Views.TableToTextDialog.textSemicolon": "Semikolon",
"DE.Views.TableToTextDialog.textSeparator": "Adskil tekst med",
"DE.Views.TableToTextDialog.textTab": "Faner",
"DE.Views.TableToTextDialog.textTitle": "Konverter tabel til tekst",
"DE.Views.TextArtSettings.strColor": "Farve",
"DE.Views.TextArtSettings.strFill": "Fyld",
"DE.Views.TextArtSettings.strSize": "Størrelse",
@ -2468,6 +2544,21 @@
"DE.Views.TextArtSettings.tipAddGradientPoint": "Tilføj gradientpunkt",
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "Fjern gradientpunkt",
"DE.Views.TextArtSettings.txtNoBorders": "Ingen linie",
"DE.Views.TextToTableDialog.textAutofit": "Autofit adfærd",
"DE.Views.TextToTableDialog.textColumns": "Kolonner",
"DE.Views.TextToTableDialog.textContents": "Autotilpas til indhold",
"DE.Views.TextToTableDialog.textEmpty": "Du skal indtaste et tegn til den brugerdefinerede separator.",
"DE.Views.TextToTableDialog.textFixed": "Fast søjlebredde",
"DE.Views.TextToTableDialog.textOther": "Andet",
"DE.Views.TextToTableDialog.textPara": "Afsnit",
"DE.Views.TextToTableDialog.textRows": "Rækker",
"DE.Views.TextToTableDialog.textSemicolon": "Semikolon",
"DE.Views.TextToTableDialog.textSeparator": "Adskil tekst fra",
"DE.Views.TextToTableDialog.textTab": "Faner",
"DE.Views.TextToTableDialog.textTableSize": "Tabel størrelse",
"DE.Views.TextToTableDialog.textTitle": "Konverter tekst til tabel",
"DE.Views.TextToTableDialog.textWindow": "Autotilpas til vindue",
"DE.Views.TextToTableDialog.txtAutoText": "automatisk",
"DE.Views.Toolbar.capBtnAddComment": "Tilføj kommentar",
"DE.Views.Toolbar.capBtnBlankPage": "Blank side",
"DE.Views.Toolbar.capBtnColumns": "Kolonner",
@ -2503,6 +2594,9 @@
"DE.Views.Toolbar.mniEditFooter": "Rediger sidefod",
"DE.Views.Toolbar.mniEditHeader": "Rediger overskrift",
"DE.Views.Toolbar.mniEraseTable": "Slet tabel",
"DE.Views.Toolbar.mniFromFile": "Fra Fil",
"DE.Views.Toolbar.mniFromStorage": "Fra fillager",
"DE.Views.Toolbar.mniFromUrl": "Fra URL",
"DE.Views.Toolbar.mniHiddenBorders": "Skjulte tabelrammer",
"DE.Views.Toolbar.mniHiddenChars": "Ikkeprintende tegn",
"DE.Views.Toolbar.mniHighlightControls": "Fremhæv indstillinger",
@ -2511,6 +2605,7 @@
"DE.Views.Toolbar.mniImageFromUrl": "Billede fra URL",
"DE.Views.Toolbar.mniLowerCase": "små bogstaver",
"DE.Views.Toolbar.mniSentenceCase": "Sætning store/små bogstaver.",
"DE.Views.Toolbar.mniTextToTable": "Konverter tekst til tabel",
"DE.Views.Toolbar.mniToggleCase": "Skift store/små bogstaver",
"DE.Views.Toolbar.mniUpperCase": "Store bogstaver",
"DE.Views.Toolbar.strMenuNoFill": "Intet fyld",
@ -2667,6 +2762,7 @@
"DE.Views.Toolbar.txtScheme2": "Gråtoner",
"DE.Views.Toolbar.txtScheme20": "Urban",
"DE.Views.Toolbar.txtScheme21": "Verve",
"DE.Views.Toolbar.txtScheme22": "Nyt Office",
"DE.Views.Toolbar.txtScheme3": "Spids",
"DE.Views.Toolbar.txtScheme4": "aspekt",
"DE.Views.Toolbar.txtScheme5": "Borgerlig",

View file

@ -1809,7 +1809,7 @@
"DE.Views.FormsTab.capBtnNext": "Nächstes Feld",
"DE.Views.FormsTab.capBtnPrev": "Vorheriges Feld",
"DE.Views.FormsTab.capBtnRadioBox": "Radiobutton",
"DE.Views.FormsTab.capBtnSaveForm": "Als ein Formular speichern",
"DE.Views.FormsTab.capBtnSaveForm": "Als OFORM speichern",
"DE.Views.FormsTab.capBtnSubmit": "Senden",
"DE.Views.FormsTab.capBtnText": "Textfeld",
"DE.Views.FormsTab.capBtnView": "Formular anzeigen",

View file

@ -1226,7 +1226,7 @@
"DE.Controllers.Toolbar.txtSymbol_zeta": "Ζήτα",
"DE.Controllers.Viewport.textFitPage": "Προσαρμογή στη Σελίδα",
"DE.Controllers.Viewport.textFitWidth": "Προσαρμογή στο Πλάτος",
"DE.Controllers.Viewport.txtDarkMode": "Σκοτεινή λειτουργία",
"DE.Controllers.Viewport.txtDarkMode": "Σκούρο θέμα",
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Ετικέτα:",
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "Η ετικέτα δεν μπορεί να είναι κενή.",
"DE.Views.BookmarksDialog.textAdd": "Προσθήκη",
@ -1677,7 +1677,7 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Φόρτωση ...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Τελευταία Τροποποίηση Από",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Τελευταίο Τροποποιημένο",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Ιδιοκτήτης",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Κάτοχος",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Σελίδες",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Παράγραφοι",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Τοποθεσία",
@ -1743,6 +1743,7 @@
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Εμφάνιση με κλικ στα συννεφάκια",
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Εμφάνιση με αιώρηση πάνω από συμβουλές",
"DE.Views.FileMenuPanels.Settings.txtCm": "Εκατοστό",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Ενεργοποίηση σκούρου θέματος εγγράφου",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Προσαρμογή στη Σελίδα",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Προσαρμογή στο Πλάτος",
"DE.Views.FileMenuPanels.Settings.txtInch": "Ίντσα",

View file

@ -609,6 +609,7 @@
"DE.Controllers.Main.textLongName": "Enter a name that is less than 128 characters.",
"DE.Controllers.Main.textNoLicenseTitle": "License limit reached",
"DE.Controllers.Main.textPaidFeature": "Paid feature",
"DE.Controllers.Main.textReconnect": "Connection is restored",
"DE.Controllers.Main.textRemember": "Remember my choice for all files",
"DE.Controllers.Main.textRenameError": "User name must not be empty.",
"DE.Controllers.Main.textRenameLabel": "Enter a name to be used for collaboration",
@ -884,15 +885,14 @@
"DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
"DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"DE.Controllers.Main.textReconnect": "Connection is restored",
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
"DE.Controllers.Statusbar.textDisconnect": "<b>Connection is lost</b><br>Trying to connect. Please check connection settings.",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textSetTrackChanges": "You are in Track Changes mode",
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.tipReview": "Track changes",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"DE.Controllers.Statusbar.textDisconnect": "<b>Connection is lost</b><br>Please check connection settings.",
"DE.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?",
"DE.Controllers.Toolbar.dataUrl": "Paste a data URL",
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning",
@ -1840,7 +1840,7 @@
"DE.Views.FormsTab.capBtnNext": "Next Field",
"DE.Views.FormsTab.capBtnPrev": "Previous Field",
"DE.Views.FormsTab.capBtnRadioBox": "Radio Button",
"DE.Views.FormsTab.capBtnSaveForm": "Save as a Form",
"DE.Views.FormsTab.capBtnSaveForm": "Save as oform",
"DE.Views.FormsTab.capBtnSubmit": "Submit",
"DE.Views.FormsTab.capBtnText": "Text Field",
"DE.Views.FormsTab.capBtnView": "View Form",
@ -2719,6 +2719,7 @@
"DE.Views.Toolbar.textTabLinks": "References",
"DE.Views.Toolbar.textTabProtect": "Protection",
"DE.Views.Toolbar.textTabReview": "Review",
"DE.Views.Toolbar.textTabView": "View",
"DE.Views.Toolbar.textTitleError": "Error",
"DE.Views.Toolbar.textToCurrent": "To current position",
"DE.Views.Toolbar.textTop": "Top: ",
@ -2810,7 +2811,15 @@
"DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Foundry",
"DE.Views.Toolbar.textTabView": "View",
"DE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar",
"DE.Views.ViewTab.textDarkDocument": "Dark document",
"DE.Views.ViewTab.textFitToPage": "Fit To Page",
"DE.Views.ViewTab.textFitToWidth": "Fit To Width",
"DE.Views.ViewTab.textInterfaceTheme": "Interface theme",
"DE.Views.ViewTab.textNavigation": "Navigation",
"DE.Views.ViewTab.textRulers": "Rulers",
"DE.Views.ViewTab.textStatusBar": "Status Bar",
"DE.Views.ViewTab.textZoom": "Zoom",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
@ -2834,14 +2843,5 @@
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Font Name",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Font Size",
"DE.Views.ViewTab.textNavigation": "Navigation",
"DE.Views.ViewTab.textZoom": "Zoom",
"DE.Views.ViewTab.textFitToPage": "Fit To Page",
"DE.Views.ViewTab.textFitToWidth": "Fit To Width",
"DE.Views.ViewTab.textInterfaceTheme": "Interface theme",
"DE.Views.ViewTab.textStatusBar": "Status Bar",
"DE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar",
"DE.Views.ViewTab.textRulers": "Rulers",
"DE.Views.ViewTab.textDarkDocument": "Dark document"
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Font Size"
}

View file

@ -1810,7 +1810,7 @@
"DE.Views.FormsTab.capBtnNext": "Campo siguiente",
"DE.Views.FormsTab.capBtnPrev": "Campo anterior",
"DE.Views.FormsTab.capBtnRadioBox": "Botón de opción",
"DE.Views.FormsTab.capBtnSaveForm": "Guardar como formulario",
"DE.Views.FormsTab.capBtnSaveForm": "Guardar como oform",
"DE.Views.FormsTab.capBtnSubmit": "Enviar",
"DE.Views.FormsTab.capBtnText": "Campo de texto",
"DE.Views.FormsTab.capBtnView": "Ver formulario",

View file

@ -397,7 +397,7 @@
"Common.Views.ReviewChanges.txtNext": "À la modification suivante",
"Common.Views.ReviewChanges.txtOff": "OFF pour moi ",
"Common.Views.ReviewChanges.txtOffGlobal": "OFF pour moi et tout le monde",
"Common.Views.ReviewChanges.txtOn": "OFF pour moi ",
"Common.Views.ReviewChanges.txtOn": "ON pour moi ",
"Common.Views.ReviewChanges.txtOnGlobal": "ON pour moi et tout le monde",
"Common.Views.ReviewChanges.txtOriginal": "Toutes les modifications rejetées {0}",
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
@ -1810,7 +1810,7 @@
"DE.Views.FormsTab.capBtnNext": "Champ suivant",
"DE.Views.FormsTab.capBtnPrev": "Champ précédent",
"DE.Views.FormsTab.capBtnRadioBox": "Bouton radio",
"DE.Views.FormsTab.capBtnSaveForm": "Enregistrer comme un formulaire",
"DE.Views.FormsTab.capBtnSaveForm": "Enregistrer sous oform",
"DE.Views.FormsTab.capBtnSubmit": "Soumettre ",
"DE.Views.FormsTab.capBtnText": "Champ texte",
"DE.Views.FormsTab.capBtnView": "Voir le formulaire",

View file

@ -1441,7 +1441,7 @@
"DE.Views.DocumentHolder.tableText": "Tabella",
"DE.Views.DocumentHolder.textAlign": "Allinea",
"DE.Views.DocumentHolder.textArrange": "Disponi",
"DE.Views.DocumentHolder.textArrangeBack": "Porta in secondo piano",
"DE.Views.DocumentHolder.textArrangeBack": "Spostare in secondo piano",
"DE.Views.DocumentHolder.textArrangeBackward": "Porta indietro",
"DE.Views.DocumentHolder.textArrangeForward": "Porta avanti",
"DE.Views.DocumentHolder.textArrangeFront": "Porta in primo piano",
@ -1743,6 +1743,7 @@
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Mostrare tramite clic su balloons",
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Mostrare tramite suggerimenti al passaggio del mouse",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimetro",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Attivare la modalità scura di documenti",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Adatta alla pagina",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Adatta alla larghezza",
"DE.Views.FileMenuPanels.Settings.txtInch": "Pollice",
@ -1809,7 +1810,7 @@
"DE.Views.FormsTab.capBtnNext": "Campo successivo",
"DE.Views.FormsTab.capBtnPrev": "Campo precedente",
"DE.Views.FormsTab.capBtnRadioBox": "Pulsante opzione",
"DE.Views.FormsTab.capBtnSaveForm": "Salvare come modulo",
"DE.Views.FormsTab.capBtnSaveForm": "Salvare come oform",
"DE.Views.FormsTab.capBtnSubmit": "Invia",
"DE.Views.FormsTab.capBtnText": "Campo di testo",
"DE.Views.FormsTab.capBtnView": "Visualizza modulo",

View file

@ -1743,6 +1743,7 @@
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Mostrar por clique em balões",
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Mostrar com a ponta de ferramentas",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Ativar modo escuro de documento",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar a página",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar largura",
"DE.Views.FileMenuPanels.Settings.txtInch": "Polegada",

View file

@ -1810,7 +1810,7 @@
"DE.Views.FormsTab.capBtnNext": "Câmpul următor",
"DE.Views.FormsTab.capBtnPrev": "Câmpul anterior",
"DE.Views.FormsTab.capBtnRadioBox": "Buton opțiune",
"DE.Views.FormsTab.capBtnSaveForm": "Salvare ca un formular",
"DE.Views.FormsTab.capBtnSaveForm": "Salvare ca un formular OFORM",
"DE.Views.FormsTab.capBtnSubmit": "Remitere",
"DE.Views.FormsTab.capBtnText": "Câmp text",
"DE.Views.FormsTab.capBtnView": "Vizualizare formular",

View file

@ -884,6 +884,7 @@
"DE.Controllers.Statusbar.textTrackChanges": "Документ открыт при включенном режиме отслеживания изменений",
"DE.Controllers.Statusbar.tipReview": "Отслеживать изменения",
"DE.Controllers.Statusbar.zoomText": "Масштаб {0}%",
"DE.Controllers.Statusbar.textDisconnect": "<b>Соединение потеряно</b><br>Пытаемся восстановить соединение. Проверьте параметры подключения.",
"DE.Controllers.Toolbar.confirmAddFontName": "Шрифт, который вы хотите сохранить, недоступен на этом устройстве.<br>Стиль текста будет отображаться с помощью одного из системных шрифтов. Сохраненный шрифт будет использоваться, когда он станет доступен.<br>Вы хотите продолжить?",
"DE.Controllers.Toolbar.dataUrl": "Вставьте URL-адрес данных",
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Внимание",
@ -1810,7 +1811,7 @@
"DE.Views.FormsTab.capBtnNext": "Следующее поле",
"DE.Views.FormsTab.capBtnPrev": "Предыдущее поле",
"DE.Views.FormsTab.capBtnRadioBox": "Переключатель",
"DE.Views.FormsTab.capBtnSaveForm": "Сохранить как форму",
"DE.Views.FormsTab.capBtnSaveForm": "Сохранить как oform",
"DE.Views.FormsTab.capBtnSubmit": "Отправить",
"DE.Views.FormsTab.capBtnText": "Текстовое поле",
"DE.Views.FormsTab.capBtnView": "Просмотреть форму",

View file

@ -1742,6 +1742,7 @@
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Balonlarda tıklayarak göster",
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Araç ipuçlarında üzerine gelindiğinde göster ",
"DE.Views.FileMenuPanels.Settings.txtCm": "Santimetre",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Doküman için karanlık modu aç",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Sayfaya Sığdır",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Genişliğe Sığdır",
"DE.Views.FileMenuPanels.Settings.txtInch": "İnç",
@ -1808,7 +1809,7 @@
"DE.Views.FormsTab.capBtnNext": "Sonraki alan",
"DE.Views.FormsTab.capBtnPrev": "Önceki Alan",
"DE.Views.FormsTab.capBtnRadioBox": "Seçenek Düğmesi",
"DE.Views.FormsTab.capBtnSaveForm": "Form olarak Kaydet",
"DE.Views.FormsTab.capBtnSaveForm": "oform olarak kaydet",
"DE.Views.FormsTab.capBtnSubmit": "Kaydet",
"DE.Views.FormsTab.capBtnText": "Metin Alanı",
"DE.Views.FormsTab.capBtnView": "Formu görüntüle",

View file

@ -1743,6 +1743,7 @@
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "点击通知气球以展示",
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "光标移至弹出窗口以展示",
"DE.Views.FileMenuPanels.Settings.txtCm": "厘米",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "开启文档夜间模式",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "适合页面",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "适合宽度",
"DE.Views.FileMenuPanels.Settings.txtInch": "寸",
@ -1809,7 +1810,7 @@
"DE.Views.FormsTab.capBtnNext": "下一填充框",
"DE.Views.FormsTab.capBtnPrev": "上一填充框",
"DE.Views.FormsTab.capBtnRadioBox": "单选框",
"DE.Views.FormsTab.capBtnSaveForm": "保存为表格",
"DE.Views.FormsTab.capBtnSaveForm": "另存为oform",
"DE.Views.FormsTab.capBtnSubmit": "提交",
"DE.Views.FormsTab.capBtnText": "文字字段",
"DE.Views.FormsTab.capBtnView": "浏览表单",

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 554 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 702 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 430 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 803 B

View file

@ -4,11 +4,12 @@
"textAddress": "Διεύθυνση",
"textBack": "Πίσω",
"textEmail": "Ηλεκτρονική διεύθυνση",
"textPoweredBy": "Powered By",
"textTel": "Tel",
"textVersion": "Version"
"textPoweredBy": "Υποστηρίζεται Από",
"textTel": "Τηλ",
"textVersion": "Έκδοση"
},
"Add": {
"notcriticalErrorTitle": "Προειδοποίηση",
"textAddLink": "Προσθήκη συνδέσμου",
"textAddress": "Διεύθυνση",
"textBack": "Πίσω",
@ -24,6 +25,7 @@
"textContinuousPage": "Συνεχόμενη Σελίδα",
"textCurrentPosition": "Τρέχουσα Θέση",
"textDisplay": "Προβολή",
"textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.",
"textEvenPage": "Ζυγή Σελίδα",
"textFootnote": "Υποσημείωση",
"textFormat": "Μορφή",
@ -38,28 +40,27 @@
"textLinkSettings": "Ρυθμίσεις Συνδέσμου",
"textLocation": "Τοποθεσία",
"textNextPage": "Επόμενη Σελίδα",
"notcriticalErrorTitle": "Warning",
"textEmptyImgUrl": "You need to specify image URL.",
"textOddPage": "Odd Page",
"textOther": "Other",
"textPageBreak": "Page Break",
"textPageNumber": "Page Number",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textPosition": "Position",
"textRightBottom": "Right Bottom",
"textRightTop": "Right Top",
"textRows": "Rows",
"textScreenTip": "Screen Tip",
"textSectionBreak": "Section Break",
"textShape": "Shape",
"textStartAt": "Start At",
"textTable": "Table",
"textTableSize": "Table Size",
"txtNotUrl": "This field should be a URL in the format \"http://www.example.com\""
"textOddPage": "Μονή Σελίδα",
"textOther": "Άλλο",
"textPageBreak": "Αλλαγή Σελίδας",
"textPageNumber": "Αριθμός Σελίδας",
"textPictureFromLibrary": "Εικόνα από τη Βιβλιοθήκη",
"textPictureFromURL": "Εικόνα από Σύνδεσμο",
"textPosition": "Θέση",
"textRightBottom": "Δεξιά Κάτω",
"textRightTop": "Δεξιά Πάνω",
"textRows": "Γραμμές",
"textScreenTip": "Συμβουλή Οθόνης",
"textSectionBreak": "Αλλαγή Τμήματος",
"textShape": "Σχήμα",
"textStartAt": "Έναρξη Από",
"textTable": "Πίνακας",
"textTableSize": "Μέγεθος Πίνακα",
"txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»"
},
"Common": {
"Collaboration": {
"notcriticalErrorTitle": "Προειδοποίηση",
"textAccept": "Αποδοχή",
"textAcceptAllChanges": "Αποδοχή όλων των αλλαγών",
"textAddComment": "Προσθήκη σχολίου",
@ -72,6 +73,7 @@
"textBack": "Πίσω",
"textBaseline": "Γραμμή Αναφοράς",
"textBold": "Έντονα",
"textBreakBefore": "Αλλαγή σελίδας πριν",
"textCancel": "Ακύρωση",
"textCaps": "Όλα κεφαλαία",
"textCenter": "Στοίχιση στο κέντρο",
@ -90,6 +92,7 @@
"textEdit": "Επεξεργασία",
"textEditComment": "Επεξεργασία Σχολίου",
"textEditReply": "Επεξεργασία Απάντησης",
"textEditUser": "Οι χρήστες που επεξεργάζονται το αρχείο:",
"textEquation": "Εξίσωση",
"textExact": "ακριβώς",
"textFinal": "Τελικός",
@ -111,56 +114,53 @@
"textMessageDeleteReply": "Θέλετε πραγματικά να διαγράψετε αυτή την απάντηση;",
"textMultiple": "πολλαπλό",
"textNoBreakBefore": "Χωρίς αλλαγή σελίδας πριν",
"textNoChanges": "Δεν υπάρχουν αλλαγές.",
"textNoComments": "Αυτό το έγγραφο δεν περιέχει σχόλια",
"textNoContextual": "Προσθήκη διαστήματος μεταξύ παραγράφων της ίδιας τεχνοτροπίας",
"textNoKeepLines": "Οι γραμμές να μην διατηρούνται μαζί",
"textNoKeepNext": "Να μην διατηρείται με επόμενο",
"textNot": "Όχι",
"textNoWidow": "Χωρίς έλεγχο παραθύρου",
"textNum": "Αλλαγή αρίθμησης",
"textOk": "Εντάξει",
"textOriginal": "Πρωτότυπος",
"textParaDeleted": "Παράγραφος Διαγράφηκε",
"textParaFormatted": "Παράγραφος Μορφοποιήθηκε",
"textParaInserted": "Παράγραφος Εισήχθη",
"textParaMoveFromDown": "Μετακινήθηκε Κάτω:",
"textParaMoveFromUp": "Μετακινήθηκε Πάνω:",
"textParaMoveTo": "Μετακινήθηκε:",
"textPosition": "Θέση",
"textReject": "Απόρριψη",
"textRejectAllChanges": "Απόρριψη Όλων των Αλλαγών",
"textReopen": "Άνοιγμα ξανά",
"textResolve": "Επίλυση",
"textReview": "Επισκόπηση",
"textReviewChange": "Επισκόπηση Αλλαγής",
"textRight": "Στοίχιση δεξιά",
"textShape": "Σχήμα",
"textShd": "Χρώμα παρασκηνίου",
"textSmallCaps": "Μικρά κεφαλαία",
"textSpacing": "Απόσταση",
"textSpacingAfter": "Απόσταση μετά",
"textSpacingBefore": "Απόσταση πριν",
"textStrikeout": "Διαγραφή",
"textSubScript": "Δείκτης",
"textSuperScript": "Εκθέτης",
"textTableChanged": "Άλλαξαν Ρυθμίσεις Πίνακα",
"textTableRowsAdd": "Προστέθηκαν Γραμμές Πίνακα",
"textTableRowsDel": "Διαγράφηκαν Γραμμές Πίνακα",
"textTabs": "Αλλαγή στηλοθετών",
"notcriticalErrorTitle": "Warning",
"textBreakBefore": "Page break before",
"textEditUser": "Users who are editing the file:",
"textNoChanges": "There are no changes.",
"textNoComments": "This document doesn't contain comments",
"textOk": "Ok",
"textOriginal": "Original",
"textParaDeleted": "Paragraph Deleted",
"textParaFormatted": "Paragraph Formatted",
"textParaInserted": "Paragraph Inserted",
"textPosition": "Position",
"textReject": "Reject",
"textRejectAllChanges": "Reject All Changes",
"textReopen": "Reopen",
"textResolve": "Resolve",
"textReview": "Review",
"textReviewChange": "Review Change",
"textShape": "Shape",
"textSmallCaps": "Small caps",
"textSpacing": "Spacing",
"textSpacingAfter": "Spacing after",
"textSpacingBefore": "Spacing before",
"textStrikeout": "Strikeout",
"textSubScript": "Subscript",
"textSuperScript": "Superscript",
"textTableChanged": "Table Settings Changed",
"textTableRowsAdd": "Table Rows Added",
"textTableRowsDel": "Table Rows Deleted",
"textTrackChanges": "Track Changes",
"textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"textUnderline": "Underline",
"textUsers": "Users",
"textWidow": "Widow control"
"textTrackChanges": "Παρακολούθηση Αλλαγών",
"textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.",
"textUnderline": "Υπογράμμιση",
"textUsers": "Χρήστες",
"textWidow": "Έλεγχος μεμονωμένων γραμμών κειμένου"
},
"ThemeColorPalette": {
"textCustomColors": "Προσαρμοσμένα Χρώματα",
"textStandartColors": "Standard Colors",
"textThemeColors": "Theme Colors"
"textStandartColors": "Τυπικά Χρώματα",
"textThemeColors": "Χρώματα Θέματος"
},
"HighlightColorPalette": {
"textNoFill": "No Fill"
@ -178,23 +178,24 @@
"menuJoinList": "Ένωση με προηγούμενη λίστα",
"menuMerge": "Συγχώνευση",
"menuMore": "Περισσότερα",
"menuOpenLink": "Άνοιγμα Συνδέσμου",
"menuReview": "Επισκόπηση",
"menuReviewChange": "Επισκόπηση Αλλαγής",
"menuSeparateList": "Διαχωρισμός λίστας",
"menuSplit": "Διαίρεση",
"menuStartNewList": "Έναρξη νέας λίστας",
"menuStartNumberingFrom": "Ορισμός τιμής αρίθμησης",
"menuViewComment": "Προβολή Σχολίου",
"textCancel": "Ακύρωση",
"textColumns": "Στήλες",
"textCopyCutPasteActions": "Ενέργειες αντιγραφής, αποκοπής και επικόλλησης",
"textDoNotShowAgain": "Να μην εμφανιστεί ξανά",
"textNumberingValue": "Τιμή Αρίθμησης",
"menuOpenLink": "Open Link",
"menuReview": "Review",
"menuReviewChange": "Review Change",
"menuSeparateList": "Separate list",
"menuSplit": "Split",
"menuStartNewList": "Start new list",
"menuStartNumberingFrom": "Set numbering value",
"menuViewComment": "View Comment",
"textOk": "OK",
"textRows": "Rows"
"textOk": "Εντάξει",
"textRows": "Γραμμές"
},
"Edit": {
"notcriticalErrorTitle": "Προειδοποίηση",
"textActualSize": "Πραγματικό μέγεθος",
"textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος",
"textAdditional": "Επιπρόσθετα",
@ -231,6 +232,7 @@
"textDoubleStrikethrough": "Διπλή Διαγραφή",
"textEditLink": "Επεξεργασία Συνδέσμου",
"textEffects": "Εφέ",
"textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.",
"textFill": "Γέμισμα",
"textFirstColumn": "Πρώτη Στήλη",
"textFirstLine": "Πρώτη Γραμμή",
@ -260,55 +262,53 @@
"textMoveWithText": "Μετακίνηση με Κείμενο",
"textNone": "Κανένα",
"textNoStyles": "Δεν υπάρχουν τεχνοτροπίες για αυτόν τον τύπο γραφημάτων.",
"textNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»",
"textNumbers": "Αριθμοί",
"notcriticalErrorTitle": "Warning",
"textEmptyImgUrl": "You need to specify image URL.",
"textDesign": "Design",
"textNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"textOpacity": "Opacity",
"textOptions": "Options",
"textOrphanControl": "Orphan Control",
"textPageBreakBefore": "Page Break Before",
"textPageNumbering": "Page Numbering",
"textParagraph": "Paragraph",
"textParagraphStyles": "Paragraph Styles",
"textPictureFromLibrary": "Picture from Library",
"textPictureFromURL": "Picture from URL",
"textOpacity": "Αδιαφάνεια",
"textOptions": "Επιλογές",
"textOrphanControl": "Έλεγχος Ορφανών",
"textPageBreakBefore": "Αλλαγή Σελίδας Πριν",
"textPageNumbering": "Αρίθμηση Σελίδας",
"textParagraph": "Παράγραφος",
"textParagraphStyles": "Τεχνοτροπίες Παραγράφου",
"textPictureFromLibrary": "Εικόνα από τη Βιβλιοθήκη",
"textPictureFromURL": "Εικόνα από Σύνδεσμο",
"textPt": "pt",
"textRemoveChart": "Remove Chart",
"textRemoveImage": "Remove Image",
"textRemoveLink": "Remove Link",
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textReorder": "Reorder",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",
"textResizeToFitContent": "Resize to Fit Content",
"textScreenTip": "Screen Tip",
"textSelectObjectToEdit": "Select object to edit",
"textSendToBackground": "Send to Background",
"textSettings": "Settings",
"textShape": "Shape",
"textSize": "Size",
"textSmallCaps": "Small Caps",
"textSpaceBetweenParagraphs": "Space Between Paragraphs",
"textSquare": "Square",
"textStartAt": "Start at",
"textStrikethrough": "Strikethrough",
"textStyle": "Style",
"textStyleOptions": "Style Options",
"textSubscript": "Subscript",
"textSuperscript": "Superscript",
"textTable": "Table",
"textTableOptions": "Table Options",
"textText": "Text",
"textThrough": "Through",
"textTight": "Tight",
"textTopAndBottom": "Top and Bottom",
"textTotalRow": "Total Row",
"textType": "Type",
"textWrap": "Wrap",
"textRemoveChart": "Αφαίρεση Γραφήματος",
"textRemoveImage": "Αφαίρεση Εικόνας",
"textRemoveLink": "Αφαίρεση Συνδέσμου",
"textRemoveShape": "Αφαίρεση Σχήματος",
"textRemoveTable": "Αφαίρεση Πίνακα",
"textReorder": "Επανατακτοποίηση",
"textRepeatAsHeaderRow": "Επανάληψη ως Σειράς Κεφαλίδας",
"textReplace": "Αντικατάσταση",
"textReplaceImage": "Αντικατάσταση Εικόνας",
"textResizeToFitContent": "Αλλαγή Μεγέθους για Προσαρμογή Περιεχομένου",
"textScreenTip": "Συμβουλή Οθόνης",
"textSelectObjectToEdit": "Επιλογή αντικειμένου για επεξεργασία",
"textSendToBackground": "Μεταφορά στο Παρασκήνιο",
"textSettings": "Ρυθμίσεις",
"textShape": "Σχήμα",
"textSize": "Μέγεθος",
"textSmallCaps": "Μικρά Κεφαλαία",
"textSpaceBetweenParagraphs": "Διάστημα Μεταξύ Παραγράφων",
"textSquare": "Τετράγωνο",
"textStartAt": "Έναρξη από",
"textStrikethrough": "Διακριτική διαγραφή",
"textStyle": "Τεχνοτροπία",
"textStyleOptions": "Επιλογές Tεχνοτροπίας",
"textSubscript": "Δείκτης",
"textSuperscript": "Εκθέτης",
"textTable": "Πίνακας",
"textTableOptions": "Επιλογές Πίνακα",
"textText": "Κείμενο",
"textThrough": "Διά μέσου",
"textTight": "Σφιχτό",
"textTopAndBottom": "Πάνω και Κάτω",
"textTotalRow": "Συνολική Γραμμή",
"textType": "Τύπος",
"textWrap": "Αναδίπλωση",
"textDesign": "Design",
"textSu": "Su",
"textMo": "Mo",
"textTu": "Tu",
@ -332,8 +332,10 @@
},
"Error": {
"convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.",
"criticalErrorExtText": "Πατήστε 'Εντάξει' για να επιστρέψετε στη λίστα εγγράφων.",
"criticalErrorTitle": "Σφάλμα",
"downloadErrorText": "Αποτυχία λήψης.",
"errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.<br>Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.",
"errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας",
"errorConnectToServer": "Αδύνατη η αποθήκευση αυτού του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή.<br>Όταν πατήσετε Εντάξει, θα σας ζητηθεί να μεταφορτώσετε το έγγραφο.",
"errorDatabaseConnection": "Εξωτερικό σφάλμα<br>Σφάλμα σύνδεσης βάσης δεδομένων. Παρακαλούμε, επικοινωνήστε με την υποστήριξη.",
@ -341,34 +343,32 @@
"errorDataRange": "Εσφαλμένο εύρος δεδομένων.",
"errorDefaultMessage": "Κωδικός σφάλματος: %1",
"errorEditingDownloadas": "Συνέβη ένα σφάλμα κατά την επεξεργασία του εγγράφου.<br>Μεταφορτώστε το έγγραφο για να αποθηκεύσετε τοπικά ένα αντίγραφο ασφαλείας.",
"errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.",
"errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο του εξυπηρετητή σας.<br>Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.",
"errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού",
"errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει",
"errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.<br>Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.",
"errorMailMergeLoadFile": "Φόρτωση απέτυχε",
"errorMailMergeSaveFile": "Η συγχώνευση απέτυχε.",
"errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε, φορτώστε ξανά τη σελίδα.",
"errorSessionIdle": "Το έγγραφο δεν τροποποιήθηκε για μεγάλο χρονικό διάστημα. Παρακαλούμε, φορτώστε ξανά τη σελίδα.",
"errorSessionToken": "Η σύνδεση με τον εξυπηρετητή διακόπηκε. Παρακαλούμε, φορτώστε ξανά τη σελίδα.",
"errorStockChart": "Εσφαλμένη διάταξη γραμμών. Για να φτιάξετε γράφημα μετοχών, βάλτε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:<br> τιμή εκκίνησης, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.",
"errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.<br>Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα. Στη συνέχεια, φορτώστε ξανά αυτή τη σελίδα.",
"errorUserDrop": "Το αρχείο δεν είναι προσβάσιμο αυτή τη στιγμή.",
"errorUsersExceed": "Υπέρβαση του αριθμού των χρηστών που επιτρέπονται από το πρόγραμμα τιμολόγησης",
"errorViewerDisconnect": "Η σύνδεση χάθηκε. Μπορείτε ακόμα να βλέπετε το έγγραφο,<br>αλλά δεν θα μπορείτε να το κατεβάσετε ή να το εκτυπώσετε μέχρι να αποκατασταθεί η σύνδεση και να φορτωθεί ξανά η σελίδα.",
"notcriticalErrorTitle": "Προειδοποίηση",
"openErrorText": "Σφάλμα κατά το άνοιγμα του αρχείου",
"saveErrorText": "Σφάλμα κατά την αποθήκευση του αρχείου",
"scriptLoadError": "Η σύνδεση είναι πολύ αργή, κάποια από τα στοιχεία δεν φορτώθηκαν. Παρακαλούμε, φορτώστε ξανά τη σελίδα.",
"splitDividerErrorText": "Ο αριθμός των γραμμών πρέπει να είναι διαιρέτης του %1",
"splitMaxColsErrorText": "Ο αριθμός στηλών πρέπει να είναι μικρότερος από %1",
"splitMaxRowsErrorText": "Ο αριθμός των γραμμών πρέπει να είναι μικρότερος από %1",
"unknownErrorText": "Άγνωστο σφάλμα.",
"uploadImageExtMessage": "Άγνωστη μορφή εικόνας.",
"uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.",
"criticalErrorExtText": "Press 'OK' to go back to the document list.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
"errorFilePassProtect": "The file is password protected and could not be opened.",
"errorFileSizeExceed": "The file size exceeds your server limit.<br>Please, contact your admin.",
"errorKeyEncrypt": "Unknown key descriptor",
"errorSessionAbsolute": "The document editing session has expired. Please, reload the page.",
"errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.",
"errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.",
"errorUserDrop": "The file can't be accessed right now.",
"errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"notcriticalErrorTitle": "Warning",
"scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.",
"splitDividerErrorText": "The number of rows must be a divisor of %1",
"splitMaxColsErrorText": "The number of columns must be less than %1",
"splitMaxRowsErrorText": "The number of rows must be less than %1",
"unknownErrorText": "Unknown error.",
"uploadImageExtMessage": "Unknown image format.",
"uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB."
"uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB."
},
"LongActions": {
"applyChangesTextText": "Φόρτωση δεδομένων...",
@ -389,24 +389,31 @@
"loadingDocumentTitleText": "Φόρτωση εγγράφου",
"mailMergeLoadFileText": "Φόρτωση της Πηγής Δεδομένων...",
"mailMergeLoadFileTitle": "Φόρτωση της Πηγής Δεδομένων",
"openTextText": "Άνοιγμα εγγράφου...",
"openTitleText": "Άνοιγμα Εγγράφου",
"printTextText": "Εκτύπωση εγγράφου...",
"printTitleText": "Εκτύπωση Εγγράφου",
"savePreparingText": "Προετοιμασία αποθήκευσης",
"savePreparingTitle": "Προετοιμασία αποθήκευσης. Παρακαλούμε περιμένετε...",
"saveTextText": "Αποθήκευση εγγράφου...",
"saveTitleText": "Αποθήκευση Εγγράφου",
"sendMergeText": "Αποστολή Συγχώνευσης...",
"sendMergeTitle": "Αποστολή Συγχώνευσης",
"textLoadingDocument": "Φόρτωση εγγράφου",
"openTextText": "Opening document...",
"openTitleText": "Opening Document",
"printTextText": "Printing document...",
"printTitleText": "Printing Document",
"savePreparingText": "Preparing to save",
"savePreparingTitle": "Preparing to save. Please wait...",
"saveTextText": "Saving document...",
"saveTitleText": "Saving Document",
"sendMergeText": "Sending Merge...",
"sendMergeTitle": "Sending Merge",
"txtEditingMode": "Set editing mode...",
"uploadImageTextText": "Uploading image...",
"uploadImageTitleText": "Uploading Image",
"waitText": "Please, wait..."
"txtEditingMode": "Ορισμός κατάστασης επεξεργασίας...",
"uploadImageTextText": "Μεταφόρτωση εικόνας...",
"uploadImageTitleText": "Μεταφόρτωση Εικόνας",
"waitText": "Παρακαλούμε, περιμένετε..."
},
"Main": {
"criticalErrorTitle": "Σφάλμα",
"errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.<br>Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.",
"errorOpensource": "Με τη δωρεάν έκδοση Κοινότητας μπορείτε να ανοίξετε έγγραφα μόνο για ανάγνωση. Για να αποκτήσετε πρόσβαση στους συντάκτες κινητού μέσω δικτύου, απαιτείται εμπορική άδεια.",
"errorProcessSaveResult": "Αποτυχία αποθήκευσης.",
"errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.",
"errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.",
"leavePageText": "Έχετε μη αποθηκευμένες αλλαγές. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.",
"notcriticalErrorTitle": "Προειδοποίηση",
"SDK": {
" -Section ": "-Τμήμα",
"above": "πάνω από",
@ -444,65 +451,61 @@
"Missing Argument": "Λείπει Όρισμα",
"Missing Operator": "Λείπει Τελεστής",
"No Spacing": "Χωρίς Απόσταση",
"No table of contents entries found": "Δεν υπάρχουν επικεφαλίδες στο έγγραφο. Εφαρμόστε μια τεχνοτροπία επικεφαλίδων στο κείμενο ώστε να εμφανίζεται στον πίνακα περιεχομένων.",
"No table of figures entries found": "Δεν βρέθηκαν καταχωρήσεις στον πίνακα εικόνων",
"None": "Κανένα",
"Normal": "Κανονική",
"Number Too Large To Format": "Αριθμός Πολύ Μεγάλος για να Μορφοποιηθεί",
"No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"Odd Page ": "Odd Page ",
"Quote": "Quote",
"Same as Previous": "Same as Previous",
"Series": "Series",
"Subtitle": "Subtitle",
"Syntax Error": "Syntax Error",
"Table Index Cannot be Zero": "Table Index Cannot be Zero",
"Table of Contents": "Table of Contents",
"table of figures": "Table of figures",
"The Formula Not In Table": "The Formula Not In Table",
"Title": "Title",
"TOC Heading": "TOC Heading",
"Type equation here": "Type equation here",
"Undefined Bookmark": "Undefined Bookmark",
"Unexpected End of Formula": "Unexpected End of Formula",
"X Axis": "X Axis XAS",
"Y Axis": "Y Axis",
"Your text here": "Your text here",
"Zero Divide": "Zero Divide"
"Odd Page ": "Μονή Σελίδα",
"Quote": "Παράθεση",
"Same as Previous": "Ίδιο με το Προηγούμενο",
"Series": "Σειρά",
"Subtitle": "Υπότιτλος",
"Syntax Error": "Συντακτικό Λάθος",
"Table Index Cannot be Zero": "Ο Δείκτης Πίνακα Δεν Μπορεί να είναι Μηδέν",
"Table of Contents": "Πίνακας Περιεχομένων",
"table of figures": "Πίνακας Εικόνων",
"The Formula Not In Table": "Ο Τύπος Δεν Περιλαμβάνεται στον Πίνακα",
"Title": "Τίτλος",
"TOC Heading": "Επικεφαλίδα Πίνακα Περιεχομένων",
"Type equation here": "Πληκτρολογήστε την εξίσωση εδώ",
"Undefined Bookmark": "Μη Ορισμένος Σελιδοδείκτης",
"Unexpected End of Formula": "Μη Αναμενόμενος Τερματισμός του Τύπου",
"X Axis": "Άξονας Χ XAS",
"Y Axis": "Άξονας Υ",
"Your text here": "Το κείμενό σας εδώ",
"Zero Divide": "Μηδενική Διαίρεση"
},
"textAnonymous": "Ανώνυμος",
"textBuyNow": "Επισκεφθείτε την ιστοσελίδα",
"textClose": "Κλείσιμο",
"textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων",
"textCustomLoader": "Λυπούμαστε, δεν έχετε δικαίωμα αλλαγής φορτωτή. Επικοινωνήστε με το τμήμα πωλήσεων για προσφορά.",
"textGuest": "Επισκέπτης",
"textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.<br>Θέλετε να εκτελέσετε μακροεντολές;",
"textNo": "Όχι",
"textNoLicenseTitle": "Το όριο της άδειας προσεγγίσθηκε",
"textPaidFeature": "Δυνατότητα επί πληρωμή",
"textRemember": "Απομνημόνευση επιλογής",
"textYes": "Ναι",
"titleLicenseExp": "Η άδεια έληξε",
"titleServerVersion": "Ο συντάκτης ενημερώθηκε",
"titleUpdateVersion": "Η έκδοση άλλαξε",
"warnLicenseExceeded": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.",
"warnLicenseExp": "Η άδειά σας έληξε. Παρακαλούμε, ενημερώστε την άδειά σας και ανανεώστε τη σελίδα.",
"warnLicenseLimitedNoAccess": "Η άδεια έληξε. Δεν έχετε πρόσβαση στην επεξεργασία εγγράφων. Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας.",
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
"errorProcessSaveResult": "Saving failed.",
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"notcriticalErrorTitle": "Warning",
"textBuyNow": "Visit website",
"textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.",
"textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"textPaidFeature": "Paid feature",
"textRemember": "Remember my choice",
"textYes": "Yes",
"titleUpdateVersion": "Version changed",
"warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.",
"warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.",
"warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.<br>Please contact your administrator to get full access",
"warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
"warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.",
"warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"warnProcessRightsChange": "You don't have permission to edit this file."
"warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί. Έχετε περιορισμένη πρόσβαση στη λειτουργικότητα επεξεργασίας.<br>Παρακαλούμε, επικοινωνήστε με τον διαχειριστή σας για να αποκτήσετε πλήρη πρόσβαση.",
"warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.<br>Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.",
"warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.",
"warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.<br>Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.",
"warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου."
},
"Settings": {
"advDRMOptions": "Προστατευμένο Αρχείο",
"advDRMPassword": "Συνθηματικό",
"advTxtOptions": "Διαλέξτε TXT Επιλογές",
"closeButtonText": "Κλείσιμο Αρχείου",
"notcriticalErrorTitle": "Προειδοποίηση",
"textAbout": "Περί",
"textApplication": "Εφαρμογή",
"textApplicationSettings": "Ρυθμίσεις Εφαρμογής",
@ -551,14 +554,55 @@
"textLocation": "Τοποθεσία",
"textMacrosSettings": "Ρυθμίσεις Mακροεντολών",
"textMargins": "Περιθώρια",
"textMarginsH": "Τα πάνω και κάτω περιθώρια είναι πολύ ψηλά για δεδομένο ύψος σελίδας",
"textMarginsW": "Το αριστερό και το δεξιό περιθώριο είναι πολύ πλατιά για δεδομένο πλάτος σελίδας",
"textNoCharacters": "Μη Εκτυπώσιμοι Χαρακτήρες",
"textNoTextFound": "Δεν βρέθηκε το κείμενο",
"textOk": "Εντάξει",
"textOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο",
"textOrientation": "Προσανατολισμός",
"textOwner": "Κάτοχος",
"textPages": "Σελίδες",
"textParagraphs": "Παράγραφοι",
"textPoint": "Σημείο",
"textPortrait": "Κατακόρυφος",
"textPrint": "Εκτύπωση",
"textReaderMode": "Κατάσταση Αναγνώστη",
"textReplace": "Αντικατάσταση",
"textReplaceAll": "Αντικατάσταση Όλων",
"textResolvedComments": "Επιλυμένα Σχόλια",
"textRight": "Δεξιά",
"textSearch": "Αναζήτηση",
"textSettings": "Ρυθμίσεις",
"textShowNotification": "Εμφάνιση Ειδοποίησης",
"textSpaces": "Κενά",
"textSpellcheck": "Έλεγχος Ορθογραφίας",
"textStatistic": "Στατιστικά",
"textSubject": "Θέμα",
"textSymbols": "Σύμβολα",
"textTitle": "Τίτλος",
"textTop": "Πάνω",
"textUnitOfMeasurement": "Μονάδα Μέτρησης",
"textUploaded": "Μεταφορτώθηκε",
"textWords": "Λέξεις",
"txtDownloadTxt": "Λήψη TXT",
"txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο",
"txtOk": "Εντάξει",
"txtProtected": "Μόλις εισάγετε το συνθηματικό κι ανοίξετε το αρχείο, το τρέχον συνθηματικό θα επαναφερθεί.",
"txtScheme1": "Γραφείο",
"txtScheme10": "Διάμεσο",
"txtScheme11": "Μετρό",
"txtScheme12": "Άρθρωμα",
"txtScheme13": "Άφθονο",
"txtScheme14": "Προεξοχή",
"txtScheme15": "Προέλευση",
"txtScheme16": "Χαρτί",
"txtScheme17": "Ηλιοστάσιο",
"txtScheme18": "Τεχνικό",
"txtScheme19": "Ταξίδι",
"txtScheme2": "Αποχρώσεις του γκρι",
"txtScheme20": "Αστικό",
"txtScheme21": "Οίστρος",
"txtScheme22": "Νέο Γραφείο",
"txtScheme3": "Άκρο",
"txtScheme4": "Άποψη",
@ -566,56 +610,12 @@
"txtScheme6": "Συνάθροιση",
"txtScheme7": "Μετοχή",
"txtScheme8": "Ροή",
"txtScheme9": "Χυτήριο",
"advDRMOptions": "Protected File",
"advDRMPassword": "Password",
"notcriticalErrorTitle": "Warning",
"textMarginsH": "Top and bottom margins are too high for a given page height",
"textNoTextFound": "Text not found",
"textOk": "Ok",
"textOrientation": "Orientation",
"textOwner": "Owner",
"textPages": "Pages",
"textParagraphs": "Paragraphs",
"textPoint": "Point",
"textPortrait": "Portrait",
"textPrint": "Print",
"textReaderMode": "Reader Mode",
"textReplace": "Replace",
"textReplaceAll": "Replace All",
"textResolvedComments": "Resolved Comments",
"textRight": "Right",
"textSearch": "Search",
"textSettings": "Settings",
"textShowNotification": "Show Notification",
"textSpaces": "Spaces",
"textSpellcheck": "Spell Checking",
"textStatistic": "Statistic",
"textSubject": "Subject",
"textSymbols": "Symbols",
"textTitle": "Title",
"textTop": "Top",
"textUnitOfMeasurement": "Unit Of Measurement",
"textUploaded": "Uploaded",
"textWords": "Words",
"txtIncorrectPwd": "Password is incorrect",
"txtOk": "Ok",
"txtProtected": "Once you enter the password and open the file, the current password will be reset",
"txtScheme1": "Office",
"txtScheme13": "Opulent",
"txtScheme14": "Oriel",
"txtScheme15": "Origin",
"txtScheme16": "Paper",
"txtScheme17": "Solstice",
"txtScheme18": "Technic",
"txtScheme19": "Trek",
"txtScheme20": "Urban",
"txtScheme21": "Verve"
"txtScheme9": "Χυτήριο"
},
"Toolbar": {
"dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.",
"dlgLeaveTitleText": "Έξοδος από την εφαρμογή",
"leaveButtonText": "Έξοδος από τη Σελίδα",
"dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
"dlgLeaveTitleText": "You leave the application",
"stayButtonText": "Stay on this page"
"stayButtonText": "Παραμονή στη σελίδα"
}
}

View file

@ -0,0 +1,38 @@
{
"common.view.modals.txtCopy": "Buferə kopyalandı",
"common.view.modals.txtEmbed": "Daxil et",
"common.view.modals.txtHeight": "Hündürlük",
"common.view.modals.txtShare": "Link paylaşın",
"common.view.modals.txtWidth": "En",
"PE.ApplicationController.convertationErrorText": "Çevrilmə alınmadı.",
"PE.ApplicationController.convertationTimeoutText": "Çevrilmə vaxtı maksimumu keçdi.",
"PE.ApplicationController.criticalErrorTitle": "Xəta",
"PE.ApplicationController.downloadErrorText": "Endirmə prosesi uğursuz oldu.",
"PE.ApplicationController.downloadTextText": "Təqdimat yüklənir...",
"PE.ApplicationController.errorAccessDeny": "Hüquqlarınız olmayan əməliyyatı yerinə yetirməyə çalışırsınız.<br>Sənəd Serveri inzibatçınızla əlaqə saxlayın.",
"PE.ApplicationController.errorDefaultMessage": "Xəta kodu: %1",
"PE.ApplicationController.errorFilePassProtect": "Fayl parolla qorunur və onu açmaq mümkün deyil.",
"PE.ApplicationController.errorFileSizeExceed": "Faylın ölçüsü serveriniz üçün təyin edilmiş məhdudiyyəti keçir.<br>Təfərrüatlar üçün Sənəd Serveri inzibatçınızla əlaqə saxlayın.",
"PE.ApplicationController.errorForceSave": "Faylı saxlayarkən xəta baş verdi. Zəhmət olmasa, faylı kompüterinizin sərtt diskində saxlamaq üçün “... kimi endir” seçimindən istifadə edin və ya sonra yenidən cəhd edin.",
"PE.ApplicationController.errorLoadingFont": "Şriftlər yüklənməyib.<br> Sənəd Serveri administratorunuzla əlaqə saxlayın.",
"PE.ApplicationController.errorTokenExpire": "Sənədin təhlükəsizlik nişanının vaxtı bitib.<br>Sənəd Server inzibatçısı ilə əlaqə saxlayın.",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "İnternet bağlantısı bərpa edildi və fayl versiyası dəyişdirildi.<br>İşə davam etməzdən əvvəl heç nəyin itirilmədiyindən əmin olmaq üçün faylı endirməli və ya onun məzmununu kopyalamalı, sonra bu səhifəni yenidən yükləməlisiniz.",
"PE.ApplicationController.errorUserDrop": "Fayla hazırda daxil olmaq mümkün deyil.",
"PE.ApplicationController.notcriticalErrorTitle": "Xəbərdarlıq",
"PE.ApplicationController.openErrorText": "Faylı açan zaman xəta baş verdi.",
"PE.ApplicationController.scriptLoadError": "Bağlantı çox yavaşdır, bəzi komponentləri yükləmək mümkün deyil. Səhifəni yenidən yükləyin.",
"PE.ApplicationController.textAnonymous": "Anonim",
"PE.ApplicationController.textGuest": "Qonaq",
"PE.ApplicationController.textLoadingDocument": "Təqdimat yüklənir",
"PE.ApplicationController.textOf": "/",
"PE.ApplicationController.txtClose": "Bağla",
"PE.ApplicationController.unknownErrorText": "Naməlum xəta.",
"PE.ApplicationController.unsupportedBrowserErrorText": "Brauzeriniz dəstəklənmir.",
"PE.ApplicationController.waitText": "Zəhmət olmasa, gözləyin...",
"PE.ApplicationView.txtDownload": "Endir",
"PE.ApplicationView.txtEmbed": "Daxil et",
"PE.ApplicationView.txtFileLocation": "Fayl yerini açın",
"PE.ApplicationView.txtFullScreen": "Tam ekran",
"PE.ApplicationView.txtPrint": "Çap",
"PE.ApplicationView.txtShare": "Paylaş"
}

View file

@ -13,10 +13,16 @@
"PE.ApplicationController.errorDefaultMessage": "Fejlkode: %1",
"PE.ApplicationController.errorFilePassProtect": "Dokumentet er beskyttet af et kodeord og kunne ikke åbnes.",
"PE.ApplicationController.errorFileSizeExceed": "Filens størrelse overstiger grænsen, som er sat for din server.<br>Kontakt venligst din administrator for hjælp.",
"PE.ApplicationController.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.",
"PE.ApplicationController.errorLoadingFont": "Skrifttyper er ikke indlæst.<br>Kontakt din dokument server administrator.",
"PE.ApplicationController.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.<br>Kontakt venligst din Document Server administrator. ",
"PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.<br>Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.",
"PE.ApplicationController.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ",
"PE.ApplicationController.notcriticalErrorTitle": "Advarsel",
"PE.ApplicationController.openErrorText": "Der skete en fejl under åbningen af filen",
"PE.ApplicationController.scriptLoadError": "Forbindelsen er for langsom, og nogle komponenter kunne ikke indlæses. Indlæs venligst siden igen.",
"PE.ApplicationController.textAnonymous": "Anonymt",
"PE.ApplicationController.textGuest": "Gæst",
"PE.ApplicationController.textLoadingDocument": "Indlæser præsentation",
"PE.ApplicationController.textOf": "af",
"PE.ApplicationController.txtClose": "Luk",
@ -25,6 +31,7 @@
"PE.ApplicationController.waitText": "Vent venligst...",
"PE.ApplicationView.txtDownload": "Hent",
"PE.ApplicationView.txtEmbed": "Indlejre",
"PE.ApplicationView.txtFileLocation": "Åben filplacering",
"PE.ApplicationView.txtFullScreen": "Fuld skærm",
"PE.ApplicationView.txtPrint": "Udskriv",
"PE.ApplicationView.txtShare": "Del"

View file

@ -164,6 +164,7 @@ require([
,'Common.Controllers.ReviewChanges'
,'Common.Controllers.Protection'
,'Transitions'
,'Animation'
]
});
@ -201,6 +202,7 @@ require([
,'common/main/lib/controller/Themes'
,'common/main/lib/controller/Desktop'
,'presentationeditor/main/app/controller/Transitions'
,'presentationeditor/main/app/controller/Animation'
], function() {
app.start();
});

View file

@ -0,0 +1,431 @@
/*
*
* (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
*
*/
/**
* Animation.js
*
* Created by Olga.Animation on 13.10.21
* Copyright (c) 2021 Ascensio System SIA. All rights reserved.
*
*/
define([
'core',
'jquery',
'underscore',
'backbone',
'presentationeditor/main/app/view/Animation',
'presentationeditor/main/app/view/AnimationDialog'
], function () {
'use strict';
PE.Controllers.Animation = Backbone.Controller.extend(_.extend({
models : [],
collections : [],
views : [
'PE.Views.Animation'
],
options: {
alias: 'Animation'
},
sdkViewName : '#id_main',
initialize: function () {
this.addListeners({
'PE.Views.Animation': {
'animation:preview': _.bind(this.onPreviewClick, this),
'animation:parameters': _.bind(this.onParameterClick, this),
'animation:duration': _.bind(this.onDurationChange, this),
'animation:selecteffect': _.bind(this.onEffectSelect, this),
'animation:delay': _.bind(this.onDelayChange, this),
'animation:animationpane': _.bind(this.onAnimationPane, this),
'animation:addanimation': _.bind(this.onAddAnimation, this),
'animation:startselect': _.bind(this.onStartSelect, this),
'animation:checkrewind': _.bind(this.onCheckRewindChange,this),
'animation:repeat': _.bind(this.onRepeatChange, this),
'animation:additional': _.bind(this.onAnimationAdditional, this),
'animation:trigger': _.bind(this.onTriggerClick, this),
'animation:triggerclickof': _.bind(this.onTriggerClickOfClick, this),
'animation:moveearlier': _.bind(this.onMoveEarlier, this),
'animation:movelater': _.bind(this.onMoveLater, this)
},
'Toolbar': {
'tab:active': _.bind(this.onActiveTab, this)
}
});
this.EffectGroups = Common.define.effectData.getEffectGroupData();
},
onLaunch: function () {
this._state = {};
},
setConfig: function (config) {
this.appConfig = config.mode;
this.view = this.createView('PE.Views.Animation', {
toolbar : config.toolbar,
mode : config.mode
});
return this;
},
setApi: function (api) {
this.api = api;
this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onFocusObject, this));
this.api.asc_registerCallback('asc_onCountPages', _.bind(this.onApiCountPages, this));
this.api.asc_registerCallback('asc_onAnimPreviewStarted', _.bind(this.onAnimPreviewStarted, this));
this.api.asc_registerCallback('asc_onAnimPreviewFinished', _.bind(this.onAnimPreviewFinished, this));
return this;
},
onApiCountPages: function (count) {
if (this._state.no_slides !== (count<=0)) {
this._state.no_slides = (count<=0);
this.lockToolbar(PE.enumLock.noSlides, this._state.no_slides);
}
},
createToolbarPanel: function() {
return this.view.getPanel();
},
getView: function(name) {
return !name && this.view ?
this.view : Backbone.Controller.prototype.getView.call(this, name);
},
onPreviewClick: function() {
if (this._state.playPreview)
this.api.asc_StopAnimationPreview();
else
this.api.asc_StartAnimationPreview();
},
onAnimPreviewStarted: function () {
this._state.playPreview = true;
this.view.btnPreview.setIconCls('toolbar__icon transition-zoom');
},
onAnimPreviewFinished: function ()
{
this._state.playPreview = false;
this.view.btnPreview.setIconCls('toolbar__icon transition-fade');
},
onParameterClick: function (value) {
if(this.api && this.AnimationProperties) {
this.AnimationProperties.asc_putSubtype(value);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
onAnimationPane: function() {
},
onAnimationAdditional: function(replace) { // replace or add new additional effect
var me = this;
(new PE.Views.AnimationDialog({
api : this.api,
activeEffect : this._state.Effect,
handler: function(result, value) {
if (result == 'ok') {
if (me.api) {
me.addNewEffect(value.activeEffect, value.activeGroupValue, replace);
}
}
}
})).show();
},
onAddAnimation: function(picker, record) {
var type = record.get('value');
var group = _.findWhere(Common.define.effectData.getEffectGroupData(), {id: record.get('group')}).value;
this.addNewEffect(type, group, false);
},
addNewEffect: function (type, group, replace) {
if (this._state.Effect == type) return;
var parameter = this.view.setMenuParameters(type, undefined, group == this._state.EffectGroups);
this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace);
this._state.EffectGroups = group;
this._state.Effect = type;
},
onDurationChange: function(field, newValue, oldValue, eOpts) {
if (this.api) {
this.AnimationProperties.asc_putDuration(field.getNumberValue() * 1000);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
onDelayChange: function(field, newValue, oldValue, eOpts) {
if (this.api) {
this.AnimationProperties.asc_putDelay(field.getNumberValue() * 1000);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
onRepeatChange: function (field, newValue, oldValue, eOpts){
if (this.api) {
this.AnimationProperties.asc_putRepeatCount(field.getNumberValue() * 1000);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
onMoveEarlier: function () {
if(this.api) {
this.api.asc_moveAnimationEarlier();
}
},
onMoveLater: function () {
if(this.api) {
this.api.asc_moveAnimationLater();
}
},
onTriggerClick: function (value) {
if(this.api) {
if(value.value == this.view.triggers.ClickSequence) {
this.AnimationProperties.asc_putTriggerClickSequence(true);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
}
},
onTriggerClickOfClick: function (value)
{
if(this.api) {
this.AnimationProperties.asc_putTriggerClickSequence(false);
this.AnimationProperties.asc_putTriggerObjectClick(value.caption);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
onEffectSelect: function (combo, record) {
if (this.api) {
var type = record.get('value');
var group = (type != AscFormat.ANIM_PRESET_NONE) ? _.findWhere(Common.define.effectData.getEffectGroupData(), {id: record.get('group')}).value : undefined;
this.addNewEffect(type, group, this._state.Effect != AscFormat.ANIM_PRESET_NONE);
}
},
onStartSelect: function (combo, record) {
if (this.api) {
// this._state.StartEffect = record.value;
this.AnimationProperties.asc_putStartType(record.value);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
onCheckRewindChange: function (field, newValue, oldValue, eOpts) {
if (this.api && this.AnimationProperties) {
this.AnimationProperties.asc_putRewind(field.getValue() == 'checked');
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
onFocusObject: function(selectedObjects) {
this.AnimationProperties = null;
for (var i = 0; i<selectedObjects.length; i++) {
if (selectedObjects[i].get_ObjectType() == Asc.c_oAscTypeSelectElement.Animation) {
this.AnimationProperties = selectedObjects[i].get_ObjectValue();
}
}
if (this._state.onactivetab)
this.setSettings();
},
setSettings: function () {
this._state.noGraphic = this._state.noAnimation = this._state.noAnimationParam = this._state.noTriggerObjects = this._state.noMoveAnimationLater = this._state.noMoveAnimationEarlier = true;
this._state.noAnimationPreview = !this.api.asc_canStartAnimationPreview();
if (this.AnimationProperties) {
this._state.noGraphic = false;
this._state.noMoveAnimationLater = !this.api.asc_canMoveAnimationLater();
this._state.noMoveAnimationEarlier = !this.api.asc_canMoveAnimationEarlier();
var item,
view = this.view,
store = view.listEffects.store,
fieldStore = view.listEffects.fieldPicker.store,
value = this.AnimationProperties.asc_getType(),
group = this.AnimationProperties.asc_getClass();
(value == undefined) && (value = AscFormat.ANIM_PRESET_NONE);
this._state.noAnimation = (value === AscFormat.ANIM_PRESET_NONE);
if (this._state.Effect !== value || this._state.EffectGroup !== group) {
this._state.Effect = value;
this._state.EffectGroup = group;
group = view.listEffects.groups.findWhere({value: this._state.EffectGroup});
item = store.findWhere(group ? {group: group.get('id'), value: this._state.Effect} : {value: this._state.Effect});
if (item) {
var forceFill = false;
if (!item.get('isCustom')) { // remove custom effect from list if not-custom is selected
var rec = store.findWhere({isCustom: true});
forceFill = !!rec;
store.remove(rec);
}
if (this._state.Effect!==AscFormat.ANIM_PRESET_MULTIPLE) { // remove "multiple" item if one effect is selected
var rec = fieldStore.findWhere({value: AscFormat.ANIM_PRESET_MULTIPLE});
forceFill = forceFill || !!rec;
fieldStore.remove(rec);
}
view.listEffects.selectRecord(item);
view.listEffects.fillComboView(item, true, forceFill);
view.btnParameters.setIconCls('toolbar__icon icon ' + item.get('iconCls'));
} else {
store.remove(store.findWhere({isCustom: true})); // remove custom effects
if (this._state.Effect==AscFormat.ANIM_PRESET_MULTIPLE) { // add and select "multiple" item
view.listEffects.fillComboView(store.at(0), false, true);
fieldStore.remove(fieldStore.at(fieldStore.length-1));
view.listEffects.fieldPicker.selectRecord(fieldStore.add(new Common.UI.DataViewModel({
group: 'none',
value: AscFormat.ANIM_PRESET_MULTIPLE,
iconCls: 'animation-multiple',
displayValue: view.textMultiple
}), {at:1}));
view.listEffects.menuPicker.deselectAll();
} else { // add custom effect to appropriate group
if (group) {
var items = store.where({group: group.get('id')});
var index = (items && items.length>0) ? store.indexOf(items.at(items.length-1)) : store.length-1;
var rec = _.findWhere(Common.define.effectData.getEffectFullData(), {group: group.get('id'), value: this._state.Effect});
item = store.add(new Common.UI.DataViewModel({
group: group.get('id'),
value: this._state.Effect,
iconCls: 'transition-push',
displayValue: rec ? rec.displayValue : '',
isCustom: true
}), {at:index+1});
view.listEffects.selectRecord(item);
view.listEffects.fillComboView(item, true, true);
view.btnParameters.setIconCls('toolbar__icon icon ' + item.get('iconCls'));
} else {
view.listEffects.fieldPicker.deselectAll();
view.listEffects.menuPicker.deselectAll();
}
}
}
}
this._state.EffectOption = this.AnimationProperties.asc_getSubtype();
if (this._state.EffectOption !== undefined)
this._state.noAnimationParam = view.setMenuParameters(this._state.Effect, this._state.EffectOption)===undefined;
value = this.AnimationProperties.asc_getDuration();
if (Math.abs(this._state.Duration - value) > 0.001 ||
(this._state.Duration === null || value === null) && (this._state.Duration !== value) ||
(this._state.Duration === undefined || value === undefined) && (this._state.Duration !== value)) {
this._state.Duration = value;
view.numDuration.setValue((this._state.Duration !== null && this._state.Duration !== undefined) ? this._state.Duration / 1000. : '', true);
}
value = this.AnimationProperties.asc_getDelay();
if (Math.abs(this._state.Delay - value) > 0.001 ||
(this._state.Delay === null || value === null) && (this._state.Delay !== value) ||
(this._state.Delay === undefined || value === undefined) && (this._state.Delay !== value)) {
this._state.Delay = value;
view.numDelay.setValue((this._state.Delay !== null && this._state.Delay !== undefined) ? this._state.Delay / 1000. : '', true);
}
value = this.AnimationProperties.asc_getRepeatCount();
if (Math.abs(this._state.Repeat - value) > 0.001 ||
(this._state.Repeat === null || value === null) && (this._state.Repeat !== value) ||
(this._state.Repeat === undefined || value === undefined) && (this._state.Repeat !== value)) {
this._state.Repeat = value;
view.numRepeat.setValue((this._state.Repeat !== null && this._state.Repeat !== undefined) ? this._state.Repeat / 1000. : '', true);
}
this._state.StartSelect = this.AnimationProperties.asc_getStartType();
view.cmbStart.setValue(this._state.StartSelect!==undefined ? this._state.StartSelect : AscFormat.NODE_TYPE_CLICKEFFECT);
this._state.Rewind = this.AnimationProperties.asc_getRewind();
view.chRewind.setValue(!!this._state.Rewind, true);
if(this.AnimationProperties.asc_getTriggerClickSequence()) {
this._state.trigger = view.triggers.ClickSequence;
this._state.TriggerValue = true;
} else {
this._state.trigger = view.triggers.ClickOf;
this._state.TriggerValue = this.AnimationProperties.asc_getTriggerObjectClick();
}
this.setTriggerList();
}
this.setLocked();
},
setTriggerList: function (){
var me = this;
this.objectNames = this.api.asc_getCurSlideObjectsNames();
this._state.noTriggerObjects = !this.objectNames || this.objectNames.length<1;
this.view.btnClickOf.menu.removeAll();
var btnMemnu=this.view.btnClickOf.menu;
this.objectNames.forEach(function (item){
btnMemnu.addItem({ caption: item, checkable: true, toggleGroup: 'animtrigger', checked: item===me._state.TriggerValue});
});
this.view.cmbTrigger.menu.items[0].setChecked(this._state.trigger == this.view.triggers.ClickSequence);
},
onActiveTab: function(tab) {
if (tab == 'animate') {
this._state.onactivetab = true;
this.setSettings();
}
else this._state.onactivetab = false;
},
lockToolbar: function (causes, lock, opts) {
Common.Utils.lockControls(causes, lock, opts, this.view.lockedControls);
},
setLocked: function() {
if (this._state.noGraphic != undefined)
this.lockToolbar(PE.enumLock.noGraphic, this._state.noGraphic);
if (this._state.noAnimation != undefined)
this.lockToolbar(PE.enumLock.noAnimation, this._state.noAnimation);
if (this._state.noAnimationParam != undefined)
this.lockToolbar(PE.enumLock.noAnimationParam, this._state.noAnimationParam);
if (this._state.noTriggerObjects != undefined)
this.lockToolbar(PE.enumLock.noTriggerObjects, this._state.noTriggerObjects);
if (this._state.noMoveAnimationLater != undefined)
this.lockToolbar(PE.enumLock.noMoveAnimationLater, this._state.noMoveAnimationLater);
if (this._state.noMoveAnimationEarlier != undefined)
this.lockToolbar(PE.enumLock.noMoveAnimationEarlier, this._state.noMoveAnimationEarlier);
if (PE.enumLock.noAnimationPreview != undefined)
this.lockToolbar(PE.enumLock.noAnimationPreview, this._state.noAnimationPreview);
}
}, PE.Controllers.Animation || {}));
});

View file

@ -246,7 +246,8 @@ define([
text : this.textDisconnect,
placement: 'top',
position: this.statusbar.isVisible() ? undefined : {bottom: 0},
showLink: false
showLink: false,
style: 'max-width: 310px;'
});
this.disconnectTip.on({
'closeclick': function() {
@ -264,7 +265,7 @@ define([
},
zoomText : 'Zoom {0}%',
textDisconnect: '<b>Connection is lost</b><br>Please check connection settings.'
textDisconnect: '<b>Connection is lost</b><br>Trying to connect. Please check connection settings.'
}, PE.Controllers.Statusbar || {}));
});

View file

@ -53,6 +53,7 @@ define([
'common/main/lib/util/define',
'presentationeditor/main/app/collection/SlideThemes',
'presentationeditor/main/app/controller/Transitions',
'presentationeditor/main/app/controller/Animation',
'presentationeditor/main/app/view/Toolbar',
'presentationeditor/main/app/view/DateTimeDialog',
'presentationeditor/main/app/view/HeaderFooterDialog',
@ -2485,7 +2486,7 @@ define([
var tab = {action: 'review', caption: me.toolbar.textTabCollaboration, layoutname: 'toolbar-collaboration', dataHintTitle: 'U'};
var $panel = me.getApplication().getController('Common.Controllers.ReviewChanges').createToolbarPanel();
if ( $panel ) {
me.toolbar.addTab(tab, $panel, 3);
me.toolbar.addTab(tab, $panel, 4);
me.toolbar.setVisible('review', (config.isEdit || config.canViewReview || config.canCoAuthoring && config.canComments) && Common.UI.LayoutManager.isElementVisible('toolbar-collaboration'));
}
@ -2501,6 +2502,9 @@ define([
viewtab.setApi(me.api).setConfig({toolbar: me, mode: config});
Array.prototype.push.apply(me.toolbar.lockControls, viewtab.getView('ViewTab').getButtons());
var animationController = me.getApplication().getController('Animation');
animationController.setApi(me.api).setConfig({toolbar: me,mode:config}).createToolbarPanel();
me.toolbar.btnSave.on('disabled', _.bind(me.onBtnChangeState, me, 'save:disabled'));
if (!(config.customization && config.customization.compactHeader)) {
@ -2521,7 +2525,7 @@ define([
tab = {action: 'protect', caption: me.toolbar.textTabProtect, layoutname: 'toolbar-protect', dataHintTitle: 'T'};
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
if ($panel)
me.toolbar.addTab(tab, $panel, 4);
me.toolbar.addTab(tab, $panel, 5);
}
}
}

View file

@ -82,7 +82,6 @@ define([
});
this.addListeners({
'ViewTab': {
'zoom:value': _.bind(this.onChangeZoomValue, this),
'zoom:toslide': _.bind(this.onBtnZoomTo, this, 'toslide'),
'zoom:towidth': _.bind(this.onBtnZoomTo, this, 'towidth'),
'rulers:change': _.bind(this.onChangeRulers, this),
@ -141,6 +140,10 @@ define([
accept();
})).then(function () {
me.view.setEvents();
me.view.cmbZoom.on('selected', _.bind(me.onSelectedZoomValue, me))
.on('changed:before',_.bind(me.onZoomChanged, me, true))
.on('changed:after', _.bind(me.onZoomChanged, me, false))
.on('combo:blur', _.bind(me.onComboBlur, me, false));
});
var menuItems = [],
@ -165,13 +168,6 @@ define([
}
},
onChangeZoomValue: function (value) {
this._state.zoom_type = undefined;
this._state.zoom_percent = undefined;
this.api.zoom(value);
Common.NotificationCenter.trigger('edit:complete', this.view);
},
onBtnZoomTo: function (type, btn) {
this._state.zoom_type = undefined;
this._state.zoom_percent = undefined;
@ -207,5 +203,38 @@ define([
}
},
applyZoom: function (value) {
this._state.zoom_percent = undefined;
this._state.zoom_type = undefined;
var val = Math.max(25, Math.min(500, value));
this.api.zoom(val);
Common.NotificationCenter.trigger('edit:complete', this.view);
},
onSelectedZoomValue: function (combo, record) {
this.applyZoom(record.value);
},
onZoomChanged: function (before, combo, record, e) {
var value = parseFloat(record.value);
if (before) {
var expr = new RegExp('^\\s*(\\d*(\\.|,)?\\d+)\\s*(%)?\\s*$');
if (!expr.exec(record.value)) {
this.view.cmbZoom.setValue(this._state.zoom_percent, this._state.zoom_percent + '%');
Common.NotificationCenter.trigger('edit:complete', this.view);
}
} else {
if (this._state.zoom_percent !== value && !isNaN(value)) {
this.applyZoom(value);
} else if (record.value !== this._state.zoom_percent + '%') {
this.view.cmbZoom.setValue(this._state.zoom_percent, this._state.zoom_percent + '%');
}
}
},
onComboBlur: function() {
Common.NotificationCenter.trigger('edit:complete', this.view);
}
}, PE.Controllers.ViewTab || {}));
});

View file

@ -218,6 +218,64 @@
</div>
</div>
</section>
<section id="animation-panel" class="panel" data-tab="animate">
<div class="group flex small" id="animation-field-effects" style="width: 700px; max-width: 700px; min-width: 140px;" data-group-width="700px"></div>
<div class="group small">
<span class="btn-slot text x-huge" id="animation-button-parameters"></span>
</div>
<div class="separator long"></div>
<div class="group small">
<span class="btn-slot text " id="animation-button-add-effect"></span>
</div>
<div class="separator long"></div>
<div class="group small">
<span class="btn-slot text" id="animation-button-preview"></span>
<!--<div class="elset">
<span class="btn-slot text " id="animation-button-pane"></span>
</div>-->
</div>
<div class="separator long"></div>
<div class="group small">
<div class="elset font-normal">
<label id="animation-label-start"></label>
<div class="btn-slot" style="width: 96px; " id="animation-start"></div>
</div>
<div class="elset font-normal">
<label id="animation-delay"></label>
<span id="animation-spin-delay" class="btn-slot text spinner" ></span>
</div>
</div>
<div class="separator long"></div>
<div class="group small">
<div class="elset font-normal">
<label id="animation-duration"></label>
<span id="animation-spin-duration" class="btn-slot text spinner" ></span>
</div>
<div class="elset font-normal">
<div class="btn-slot" style="width: 82px;" id="animation-trigger"></div>
</div>
</div>
<div class="separator long"></div>
<div class="group small">
<div class="elset font-normal">
<label id="animation-repeat"></label>
<span id="animation-spin-repeat" class="btn-slot text spinner" ></span>
</div>
<div class="elset font-normal">
<span class="btn-slot text" id="animation-checkbox-rewind"></span>
</div>
</div>
<div class="separator long"></div>
<div class="group small" style="width: 120px; min-width: 100px;">
<div class="elset">
<div class="btn-slot" id="animation-moveearlier"></div>
</div>
<div class="elset font-normal">
<div class="btn-slot" id="animation-movelater"></div>
</div>
</div>
</section>
</section>
</section>
</div>

View file

@ -0,0 +1,535 @@
/*
*
* (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
*
*/
/**
* Animation.js
*
* View
*
* Created by Olga.Sharova on 13.10.21
* Copyright (c) 2021 Ascensio System SIA. All rights reserved.
*
*/
define([
'common/main/lib/util/utils',
'common/main/lib/component/Button',
'common/main/lib/component/DataView',
'common/main/lib/component/ComboDataView',
'common/main/lib/component/Layout',
'presentationeditor/main/app/view/SlideSettings',
'common/main/lib/component/MetricSpinner',
'common/main/lib/component/Window'
], function () {
'use strict';
PE.Views.Animation = Common.UI.BaseView.extend(_.extend((function() {
function setEvents() {
var me = this;
if (me.listEffects) {
me.listEffects.on('click', _.bind(function (combo, record) {
me.fireEvent('animation:selecteffect', [combo, record]);
}, me));
me.listEffectsMore.on('click', _.bind(function () {
me.fireEvent('animation:additional', [true]); // replace effect
}, me));
}
me.btnAddAnimation && me.btnAddAnimation.menu.on('item:click', function (menu, item, e) {
(item.value=='more') && me.fireEvent('animation:additional', [false]); // add effect
});
if (me.btnPreview) {
me.btnPreview.on('click', _.bind(function(btn) {
me.fireEvent('animation:preview', [me.btnPreview]);
}, me));
}
if(me.cmbTrigger)
{
me.cmbTrigger.menu.on('item:click', _.bind(function(menu, item, e) {
me.fireEvent('animation:trigger', [item]);
}, me));
me.btnClickOf.menu.on('item:click', _.bind(function(menu, item, e) {
me.fireEvent('animation:triggerclickof', [item]);
}, me));
}
if (me.btnParameters) {
me.btnParameters.menu.on('item:click', function (menu, item, e) {
me.fireEvent('animation:parameters', [item.value]);
});
}
if (me.btnAnimationPane) {
me.btnAnimationPane.on('click', _.bind(function(btn) {
me.fireEvent('animation:animationpane', [me.btnAnimationPane]);
}, me));
}
if (me.numDuration) {
me.numDuration.on('change', function(bth) {
me.fireEvent('animation:duration', [me.numDuration]);
}, me);
}
if (me.numDelay) {
me.numDelay.on('change', function(bth) {
me.fireEvent('animation:delay', [me.numDelay]);
}, me);
}
if(me.cmbStart) {
me.cmbStart.on('selected',function (combo, record)
{
me.fireEvent('animation:startselect',[combo, record])
});
}
if (me.numRepeat) {
me.numRepeat.on('change', function(bth) {
me.fireEvent('animation:repeat', [me.numRepeat]);
}, me);
}
if (me.chRewind) {
me.chRewind.on('change', _.bind(function (e) {
me.fireEvent('animation:checkrewind', [me.chRewind, me.chRewind.value, me.chRewind.lastValue]);
}, me));
}
me.btnMoveEarlier && me.btnMoveEarlier.on('click', _.bind(function(btn) {
me.fireEvent('animation:moveearlier', [me.btnMoveEarlier]);
}, me));
me.btnMoveLater && me.btnMoveLater.on('click', _.bind(function(btn) {
me.fireEvent('animation:movelater', [me.btnMoveLater]);
}, me));
}
return {
// el: '#transitions-panel',
options: {},
initialize: function (options) {
this.triggers= {
ClickSequence: 0,
ClickOf: 1
}
this.allEffects = [{group:'none', value: AscFormat.ANIM_PRESET_NONE, iconCls: 'animation-none', displayValue: this.textNone}].concat(Common.define.effectData.getEffectFullData());
Common.UI.BaseView.prototype.initialize.call(this, options);
this.toolbar = options.toolbar;
this.appConfig = options.mode;
this.$el = this.toolbar.toolbar.$el.find('#animation-panel');
var _set = PE.enumLock;
this.lockedControls = [];
this._arrEffectName = [{group:'none', value: AscFormat.ANIM_PRESET_NONE, iconCls: 'animation-none', displayValue: this.textNone}].concat(Common.define.effectData.getEffectData());
this._arrEffectOptions = [];
var itemWidth = 87,
itemHeight = 40;
this.listEffectsMore = new Common.UI.MenuItem({
caption: this.textMoreEffects
});
this.listEffects = new Common.UI.ComboDataView({
cls: 'combo-transitions combo-animation',
itemWidth: itemWidth,
itemHeight: itemHeight,
itemTemplate: _.template([
'<div class = "btn_item x-huge" id = "<%= id %>" style = "width: ' + itemWidth + 'px;height: ' + itemHeight + 'px;">',
'<div class = "icon toolbar__icon <%= iconCls %>"></div>',
'<div class = "caption"><%= displayValue %></div>',
'</div>'
].join('')),
groups: new Common.UI.DataViewGroupStore([{id: 'none', value: -10, caption: this.textNone}].concat(Common.define.effectData.getEffectGroupData())),
store: new Common.UI.DataViewStore(this._arrEffectName),
additionalMenuItems: [{caption: '--'}, this.listEffectsMore],
enableKeyEvents: true,
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: '-16, 0',
beforeOpenHandler: function (e) {
var cmp = this,
menu = cmp.openButton.menu;
if (menu.cmpEl) {
menu.menuAlignEl = cmp.cmpEl;
menu.menuAlign = 'tl-tl';
menu.cmpEl.css({
'width': cmp.cmpEl.width() - cmp.openButton.$el.width(),
'min-height': cmp.cmpEl.height()
});
}
if (cmp.menuPicker.scroller) {
cmp.menuPicker.scroller.update({
includePadding: true,
suppressScrollX: true
});
}
cmp.removeTips();
}
});
this.lockedControls.push(this.listEffects);
this.btnPreview = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top', // x-huge icon-top',
caption: this.txtPreview,
split: false,
iconCls: 'toolbar__icon transition-fade',
lock: [_set.slideDeleted, _set.noSlides, _set.noAnimationPreview],
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'medium'
});
this.lockedControls.push(this.btnPreview);
this.btnParameters = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
caption: this.txtParameters,
iconCls: 'toolbar__icon icon transition-none',
menu: new Common.UI.Menu({items: []}),
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationParam],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
});
this.lockedControls.push(this.btnParameters);
this.btnAnimationPane = new Common.UI.Button({
cls: 'btn-toolbar',
caption: this.txtAnimationPane,
split: true,
iconCls: 'toolbar__icon transition-apply-all',
lock: [_set.slideDeleted, _set.noSlides],
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'medium'
});
this.lockedControls.push(this.btnAnimationPane);
this.btnAddAnimation = new Common.UI.Button({
cls: 'btn-toolbar x-huge icon-top',
caption: this.txtAddEffect,
iconCls: 'toolbar__icon icon btn-addslide',
menu: true,
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'small'
});
this.lockedControls.push(this.btnAddAnimation);
this.numDuration = new Common.UI.MetricSpinner({
el: this.$el.find('#animation-spin-duration'),
step: 1,
width: 52,
value: '',
defaultUnit: this.txtSec,
maxValue: 300,
minValue: 0,
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation],
dataHint: '1',
dataHintDirection: 'top',
dataHintOffset: 'small'
});
this.lockedControls.push(this.numDuration);
this.cmbTrigger = new Common.UI.Button({
parentEl: $('#animation-trigger'),
cls: 'btn-toolbar',
iconCls: 'toolbar__icon btn-contents',
caption: this.strTrigger,
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects],
menu : new Common.UI.Menu({
items: [
{
caption: this.textOnClickSequence,
checkable: true,
toggleGroup: 'animtrigger',
value: this.triggers.ClickSequence
},
{
value: this.triggers.ClickOf,
caption: this.textOnClickOf,
menu: new Common.UI.Menu({
menuAlign: 'tl-tr',
items: []
})
}]
}),
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'medium'
});
this.lockedControls.push(this.cmbTrigger);
this.btnClickOf = this.cmbTrigger.menu.items[1];
this.numDelay = new Common.UI.MetricSpinner({
el: this.$el.find('#animation-spin-delay'),
step: 1,
width: 52,
value: '',
defaultUnit: this.txtSec,
maxValue: 300,
minValue: 0,
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'big'
});
this.lockedControls.push(this.numDelay);
this.cmbStart = new Common.UI.ComboBox({
cls: 'input-group-nr',
menuStyle: 'width: 150px;',
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation],
data: [
{value: AscFormat.NODE_TYPE_CLICKEFFECT, displayValue: this.textStartOnClick},
{value: AscFormat.NODE_TYPE_WITHEFFECT, displayValue: this.textStartWithPrevious},
{value: AscFormat.NODE_TYPE_AFTEREFFECT, displayValue: this.textStartAfterPrevious}
],
dataHint: '1',
dataHintDirection: 'top'
});
this.lockedControls.push(this.cmbStart);
this.chRewind = new Common.UI.CheckBox({
el: this.$el.find('#animation-checkbox-rewind'),
labelText: this.strRewind,
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation],
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'small'
});
this.lockedControls.push(this.chRewind);
this.numRepeat = new Common.UI.MetricSpinner({
el: this.$el.find('#animation-spin-repeat'),
step: 1,
width: 88,
value: '',
maxValue: 1000,
minValue: 0,
defaultUnit: '',
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation],
dataHint: '1',
dataHintDirection: 'bottom',
dataHintOffset: 'big'
});
this.lockedControls.push(this.numRepeat);
this.btnMoveEarlier = new Common.UI.Button({
parentEl: $('#animation-moveearlier'),
cls: 'btn-toolbar',
iconCls: 'toolbar__icon btn-arrow-up',
style: 'min-width: 82px',
caption: this.textMoveEarlier,
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects, _set.noMoveAnimationEarlier],
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'medium'
});
this.lockedControls.push(this.btnMoveEarlier);
this.btnMoveLater = new Common.UI.Button({
parentEl: $('#animation-movelater'),
cls: 'btn-toolbar',
iconCls: 'toolbar__icon btn-arrow-down',
style: 'min-width: 82px',
caption: this.textMoveLater,
lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects, _set.noMoveAnimationLater],
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'medium'
});
this.lockedControls.push(this.btnMoveLater);
this.$el.find('#animation-duration').text(this.strDuration);
this.$el.find('#animation-delay').text(this.strDelay);
this.$el.find('#animation-label-start').text(this.strStart);
this.$el.find('#animation-repeat').text(this.strRepeat);
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
},
render: function (el) {
this.boxSdk = $('#editor_sdk');
if (el) el.html(this.getPanel());
return this;
},
onAppReady: function (config) {
var me = this;
(new Promise(function (accept, reject) {
accept();
})).then(function() {
me.btnAddAnimation.setMenu( new Common.UI.Menu({
style: 'width: 375px;padding-top: 12px;',
items: [
{template: _.template('<div id="id-toolbar-menu-addanimation" class="menu-animation"></div>')},
{caption: '--'},
{
caption: me.textMoreEffects,
value: 'more'
}
]
}));
var itemWidth = 87,
itemHeight = 40;
var onShowBefore = function(menu) {
var picker = new Common.UI.DataView({
el: $('#id-toolbar-menu-addanimation'),
parentMenu: menu,
outerMenu: {menu: me.btnAddAnimation.menu, index: 0},
showLast: false,
restoreHeight: 300,
style: 'max-height: 300px;',
scrollAlwaysVisible: true,
groups: new Common.UI.DataViewGroupStore(Common.define.effectData.getEffectGroupData()),
store: new Common.UI.DataViewStore(Common.define.effectData.getEffectData()),
itemTemplate: _.template([
'<div class = "btn_item x-huge" id = "<%= id %>" style = "width: ' + itemWidth + 'px;height: ' + itemHeight + 'px;">',
'<div class = "icon toolbar__icon <%= iconCls %>"></div>',
'<div class = "caption"><%= displayValue %></div>',
'</div>'
].join(''))
});
picker.on('item:click', function (picker, item, record, e) {
if (record)
me.fireEvent('animation:addanimation', [picker, record]);
});
menu.off('show:before', onShowBefore);
me.btnAddAnimation.menu.setInnerMenu([{menu: picker, index: 0}]);
};
me.btnAddAnimation.menu.on('show:before', onShowBefore);
setEvents.call(me);
});
},
getPanel: function () {
this.listEffects && this.listEffects.render(this.$el.find('#animation-field-effects'));
this.btnPreview && this.btnPreview.render(this.$el.find('#animation-button-preview'));
this.btnParameters && this.btnParameters.render(this.$el.find('#animation-button-parameters'));
this.btnAnimationPane && this.btnAnimationPane.render(this.$el.find('#animation-button-pane'));
this.btnAddAnimation && this.btnAddAnimation.render(this.$el.find('#animation-button-add-effect'));
this.cmbStart && this.cmbStart.render(this.$el.find('#animation-start'));
this.renderComponent('#animation-spin-duration', this.numDuration);
this.renderComponent('#animation-spin-delay', this.numDelay);
this.renderComponent('#animation-spin-repeat', this.numRepeat);
this.$el.find("#animation-duration").innerText = this.strDuration;
this.$el.find("#animation-delay").innerText = this.strDelay;
this.$el.find("#animation-label-start").innerText = this.strStart;
this.$el.find("#animation-repeat").innerText = this.strRepeat;
return this.$el;
},
renderComponent: function (compid, obj) {
var element = this.$el.find(compid);
element.parent().append(obj.el);
},
show: function () {
Common.UI.BaseView.prototype.show.call(this);
this.fireEvent('show', this);
},
getButtons: function (type) {
return this.lockedControls;
},
setMenuParameters: function (effectId, option)
{
var effect = _.findWhere(this.allEffects, {value: effectId});
var arrEffectOptions = Common.define.effectData.getEffectOptionsData(effect.group, effect.value);
if(!arrEffectOptions) {
this.btnParameters.menu.removeAll();
this._effectId = effectId
return undefined;
}
var selectedElement;
if (this._effectId != effectId) {
this.btnParameters.menu.removeAll();
arrEffectOptions.forEach(function (opt, index) {
opt.checkable = true;
opt.toggleGroup ='animateeffects';
this.btnParameters.menu.addItem(opt);
(opt.value==option) && (selectedElement = this.btnParameters.menu.items[index]);
}, this);
}
else {
this.btnParameters.menu.items.forEach(function (opt) {
(opt.value == option) && (selectedElement = opt);
});
}
(selectedElement == undefined) && (selectedElement = this.btnParameters.menu.items[0])
selectedElement.setChecked(true);
this._effectId = effectId;
return selectedElement.value;
},
txtSec: 's',
txtPreview: 'Preview',
txtParameters: 'Parameters',
txtAnimationPane: 'Animation Pane',
txtAddEffect: 'Add animation',
strDuration: 'Duration',
strDelay: 'Delay',
strStart: 'Start',
strRewind: 'Rewind',
strRepeat: 'Repeat',
strTrigger: 'Trigger',
textStartOnClick: 'On Click',
textStartWithPrevious: 'With Previous',
textStartAfterPrevious: 'After Previous',
textOnClickSequence: 'On Click Sequence',
textOnClickOf: 'On Click of',
textNone: 'None',
textMultiple: 'Multiple',
textMoreEffects: 'Show More Effects',
textMoveEarlier: 'Move Earlier',
textMoveLater: 'Move Later'
}
}()), PE.Views.Animation || {}));
});

View file

@ -0,0 +1,185 @@
/*
*
* (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
*
*/
/**
* AnimationDialog.js
*
* Created by Olga Sharova on 29/11/21
* Copyright (c) 2021 Ascensio System SIA. All rights reserved.
*
*/
define([
'common/main/lib/component/Window'
], function () { 'use strict';
PE.Views.AnimationDialog = Common.UI.Window.extend(_.extend({
options: {
width: 350,
height: 426,
header: true,
cls: 'animation-dlg',
buttons: ['ok', 'cancel']
},
initialize : function(options) {
_.extend(this.options, {
title: this.textTitle
}, options || {});
this.template = [
'<div class="box" style="width: 318px; margin: 0 auto">',
'<div class = "input-row" id = "animation-group"></div>',
'<div class = "input-row" id = "animation-level" ></div>',
'<div class = "input-row" id = "animation-list" style = "margin-top: 16px; height: 216px;"></div>',
'<div class = "input-row" id = "animation-setpreview" style = "margin: 16px 0;"></div>',
'</div>'
].join('');
this.allEffects = Common.define.effectData.getEffectFullData();
this.options.tpl = _.template(this.template)(this.options);
this.api = this.options.api;
this._state=[];
this.handler = this.options.handler;
this.EffectGroupData = Common.define.effectData.getEffectGroupData();
this._state.activeGroup = this.EffectGroupData[0].id;
this._state.activeGroupValue = this.EffectGroupData[0].value;
this.EffectGroupData.forEach(function (item) {item.displayValue = item.caption;});
if ((this.options.activeEffect != undefined) && (this.options.activeEffect != AscFormat.ANIM_PRESET_NONE)){
this._state.activeEffect = this.options.activeEffect;
var itemEffect = _.findWhere(this.allEffects,{value: this._state.activeEffect});
this._state.activeGroup = itemEffect.group;
this._state.activeGroupValue = _.findWhere(this.EffectGroupData, {id: this._state.activeGroup}).value;
this.activeLevel = itemEffect.level;
}
Common.UI.Window.prototype.initialize.call(this, this.options);
},
render: function() {
Common.UI.Window.prototype.render.call(this);
var $window = this.getChild();
var footer = $window.find('.footer');
footer.css({"text-align": "center"});
this.cmbGroup = new Common.UI.ComboBox({
el : $('#animation-group'),
cls: 'input-group-nr',
editable: false,
style : 'margin-top: 16px; width: 100%;',
menuStyle: 'min-width: 100%;',
takeFocusOnClose: true,
data : this.EffectGroupData,
value : (this._state.activeEffect != undefined)?this._state.activeGroup:undefined
});
this.cmbGroup.on('selected', _.bind(this.onGroupSelect,this));
this.cmbLevel = new Common.UI.ComboBox({
el : $('#animation-level'),
cls: 'input-group-nr',
editable: false,
style : 'margin-top: 16px; width: 100%;',
menuStyle: 'min-width: 100%;',
takeFocusOnClose: true
});
this.cmbLevel.on('selected', _.bind(this.onLevelSelect,this));
this.lstEffectList = new Common.UI.ListView({
el : $('#animation-list'),
itemTemplate: _.template('<div id="<%= id %>" class="list-item" style=""><%= displayValue %></div>'),
scroll : true
});
this.lstEffectList.on('item:select', _.bind(this.onEffectListItem,this));
this.chPreview = new Common.UI.CheckBox({
el : $('#animation-setpreview'),
labelText : this.textPreviewEffect
});
this.cmbGroup.setValue(this._state.activeGroupValue);
this.fillLevel();
this.$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
},
onGroupSelect: function (combo, record) {
this._state.activeGroup = record.id;
this._state.activeGroupValue = record.value;
this.activeLevel = undefined;
this._state.activeEffect = undefined;
this.fillLevel();
},
fillLevel: function ()
{
this.cmbLevel.store.reset(Common.define.effectData.getLevelEffect(this._state.activeGroup == 'menu-effect-group-path'));
var item = (this.activeLevel)?this.cmbLevel.store.findWhere({id: this.activeLevel}):this.cmbLevel.store.at(0);
this.cmbLevel.setValue(item.get('displayValue'));
this.activeLevel = item.get('id');
this.fillEffect();
},
onLevelSelect: function (combo, record) {
this.activeLevel = record.id;
this._state.activeEffect = undefined;
this.fillEffect();
},
fillEffect: function () {
var arr = _.where(this.allEffects, {group: this._state.activeGroup, level: this.activeLevel });
this.lstEffectList.store.reset(arr);
var item = (this._state.activeEffect != undefined)?this.lstEffectList.store.findWhere({value: this._state.activeEffect}):this.lstEffectList.store.at(0);
this.lstEffectList.selectRecord(item);
this._state.activeEffect = item.get('value');
},
onEffectListItem: function (lisvView, itemView, record){
if (record) {
this._state.activeEffect = record.get('value');
}
},
onBtnClick: function (event)
{
this._handleInput(event.currentTarget.attributes['result'].value);
},
_handleInput: function(state) {
if (this.options.handler) {
this.options.handler.call(this, state, this._state);
}
this.close();
},
textTitle: 'More Effects',
textPreviewEffect: 'Preview Effect'
}, PE.Views.AnimationDialog || {}));
});

View file

@ -86,7 +86,14 @@ define([
noColumns: 'no-columns',
transitLock: 'transit-lock',
inSmartart: 'in-smartart',
inSmartartInternal: 'in-smartart-internal'
inSmartartInternal: 'in-smartart-internal',
noGraphic: 'no-graphic',
noAnimation: 'no-animation',
noAnimationParam: 'no-animation-params',
noTriggerObjects: 'no-trigger-objects',
noMoveAnimationEarlier: 'no-move-animation-earlier',
noMoveAnimationLater: 'no-move-animation-later',
noAnimationPreview: 'no-animation-preview'
};
PE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend((function(){
@ -135,6 +142,7 @@ define([
{caption: me.textTabHome, action: 'home', extcls: 'canedit', dataHintTitle: 'H'},
{caption: me.textTabInsert, action: 'ins', extcls: 'canedit', dataHintTitle: 'I'},
{caption: me.textTabTransitions, action: 'transit', extcls: 'canedit', dataHintTitle: 'N'},
{caption: me.textTabAnimation, action: 'animate', extcls: 'canedit', dataHintTitle: 'A'},
undefined, undefined,
{caption: me.textTabView, action: 'view', extcls: 'canedit', layoutname: 'toolbar-view', dataHintTitle: 'W'}
]
@ -1972,6 +1980,7 @@ define([
tipHighlightColor: 'Highlight color',
txtScheme22: 'New Office',
textTabTransitions: 'Transitions',
textTabAnimation: 'Animation',
textRecentlyUsed: 'Recently Used',
txtDuplicateSlide: 'Duplicate Slide',
tipNumCapitalLetters: 'A. B. C.',

View file

@ -51,9 +51,6 @@ define([
setEvents: function () {
var me = this;
me.cmbZoom && me.cmbZoom.on('selected', function (combo, record) {
me.fireEvent('zoom:value', [record.value]);
});
me.btnFitToSlide && me.btnFitToSlide.on('click', function () {
me.fireEvent('zoom:toslide', [me.btnFitToSlide]);
});
@ -72,6 +69,8 @@ define([
me.chNotes && me.chNotes.on('change', _.bind(function (checkbox, state) {
me.fireEvent('notes:change', [me.chNotes, state === 'checked']);
}, me));
me.cmbZoom.on('combo:focusin', _.bind(this.onComboOpen, this, false));
me.cmbZoom.on('show:after', _.bind(this.onComboOpen, this, true));
},
initialize: function (options) {
@ -89,7 +88,7 @@ define([
el: $host.find('#slot-field-zoom'),
cls: 'input-group-nr',
menuStyle: 'min-width: 55px;',
editable: false,
editable: true,
lock: [_set.disableOnStart],
data: [
{ displayValue: "50%", value: 50 },
@ -221,6 +220,14 @@ define([
}, this);
},
onComboOpen: function (needfocus, combo) {
_.delay(function() {
var input = $('input', combo.cmpEl).select();
if (needfocus) input.focus();
else if (!combo.isMenuOpen()) input.one('mouseup', function (e) { e.preventDefault(); });
}, 10);
},
textZoom: 'Zoom',
textFitToSlide: 'Fit To Slide',
textFitToWidth: 'Fit To Width',

View file

@ -155,6 +155,7 @@ require([
,'Common.Controllers.ReviewChanges'
,'Common.Controllers.Protection'
,'Transitions'
,'Animation'
]
});
@ -192,6 +193,7 @@ require([
,'common/main/lib/controller/Themes'
,'common/main/lib/controller/Desktop'
,'presentationeditor/main/app/controller/Transitions'
,'presentationeditor/main/app/controller/Animation'
], function() {
window.compareVersions = true;
app.start();

File diff suppressed because it is too large Load diff

View file

@ -48,7 +48,10 @@
"Common.define.chartData.textStock": "Aktie",
"Common.define.chartData.textSurface": "Overflade",
"Common.Translation.warnFileLocked": "Dokumentet er i brug af en anden applikation. Du kan fortsætte med at redigere og gemme en kopi.",
"Common.Translation.warnFileLockedBtnEdit": "Opret en kopi",
"Common.Translation.warnFileLockedBtnView": "Åben for visning",
"Common.UI.ButtonColored.textAutoColor": "Automatisk",
"Common.UI.ButtonColored.textNewColor": "Tilføj ny brugerdefineret farve",
"Common.UI.ComboBorderSize.txtNoBorders": "Ingen rammer",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ingen rammer",
"Common.UI.ComboDataView.emptyComboText": "Ingen stilarter",
@ -72,6 +75,9 @@
"Common.UI.SynchronizeTip.textSynchronize": "Dokumentet er blevet ændret af en anden bruger.<br>Venligst tryk for at gemme ændringerne og genindlæs opdateringerne.",
"Common.UI.ThemeColorPalette.textStandartColors": "Standard farve",
"Common.UI.ThemeColorPalette.textThemeColors": "Tema farver",
"Common.UI.Themes.txtThemeClassicLight": "Klassisk lys",
"Common.UI.Themes.txtThemeDark": "Mørk",
"Common.UI.Themes.txtThemeLight": "Lys",
"Common.UI.Window.cancelButtonText": "Annuller",
"Common.UI.Window.closeButtonText": "Luk",
"Common.UI.Window.noButtonText": "Nej",
@ -93,10 +99,13 @@
"Common.Views.About.txtVersion": "Version",
"Common.Views.AutoCorrectDialog.textAdd": "Tilføj",
"Common.Views.AutoCorrectDialog.textApplyText": "Anvend mens du taster",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "Tekst autokorrektur",
"Common.Views.AutoCorrectDialog.textAutoFormat": "Løbende autoformatering",
"Common.Views.AutoCorrectDialog.textBulleted": "Automatiske punktlister",
"Common.Views.AutoCorrectDialog.textBy": "Af",
"Common.Views.AutoCorrectDialog.textDelete": "Slet",
"Common.Views.AutoCorrectDialog.textFLSentence": "Sæt første bogstav i sætninger med stort",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet- og netværksstier med hyperlinks",
"Common.Views.AutoCorrectDialog.textHyphens": "Bindestreger (--) med streg (-)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Matematisk autokorrektur",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatiske nummererede lister",
@ -116,6 +125,12 @@
"Common.Views.AutoCorrectDialog.warnReset": "Al autokorrektur du tilføjede fjernes, og de ændrede gendannes til deres oprindelige værdier. Ønsker du at fortsætte?",
"Common.Views.AutoCorrectDialog.warnRestore": "Autokorrekturindtastningen for %1 nulstilles til sin oprindelige værdi. Ønsker du at fortsætte?",
"Common.Views.Chat.textSend": "Send",
"Common.Views.Comments.mniAuthorAsc": "Forfatter A til Z",
"Common.Views.Comments.mniAuthorDesc": "Forfatter Z til A",
"Common.Views.Comments.mniDateAsc": "Ældste",
"Common.Views.Comments.mniDateDesc": "Nyeste",
"Common.Views.Comments.mniPositionAsc": "Fra toppen",
"Common.Views.Comments.mniPositionDesc": "Fra bunden",
"Common.Views.Comments.textAdd": "Tilføj",
"Common.Views.Comments.textAddComment": "Tilføj kommentar",
"Common.Views.Comments.textAddCommentToDoc": "Tilføj kommentar til dokument",
@ -123,6 +138,7 @@
"Common.Views.Comments.textAnonym": "Gæst",
"Common.Views.Comments.textCancel": "Annuller",
"Common.Views.Comments.textClose": "Luk",
"Common.Views.Comments.textClosePanel": "Luk kommentarer",
"Common.Views.Comments.textComments": "Kommentarer",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Skriv din kommentar her",
@ -131,6 +147,7 @@
"Common.Views.Comments.textReply": "Svar",
"Common.Views.Comments.textResolve": "Løs",
"Common.Views.Comments.textResolved": "Løst",
"Common.Views.Comments.textSort": "Sorter kommentarer",
"Common.Views.CopyWarningDialog.textDontShow": "Vis ikke denne meddelelse igen",
"Common.Views.CopyWarningDialog.textMsg": "Kopier, klip og sæt ind handlinger ved brug af redigeringsværktøjets værktøjsbarknapper og kontekst menu handlinger vil kun blive foretaget i redigeringsfanen. <br><br> for at kopier og sætte ind til eller fra programmer uden for redigeringsværktøjet, skal du bruge følgende tastaturtaster: ",
"Common.Views.CopyWarningDialog.textTitle": "Kopier, Klip og Indsæt handlinger",
@ -148,6 +165,7 @@
"Common.Views.Header.textBack": "Gå til dokumentplacering",
"Common.Views.Header.textCompactView": "Vis kompakt værktøjslinie ",
"Common.Views.Header.textHideLines": "Skjul lineal",
"Common.Views.Header.textHideNotes": "Skjul noter",
"Common.Views.Header.textHideStatusBar": "Skjul statuslinie",
"Common.Views.Header.textRemoveFavorite": "Fjern fra Favoritter",
"Common.Views.Header.textSaveBegin": "Gemmer...",
@ -170,6 +188,7 @@
"Common.Views.History.textCloseHistory": "Luk historik",
"Common.Views.History.textHide": "Kollaps",
"Common.Views.History.textHideAll": "Skjul detaljerede ændringer",
"Common.Views.History.textRestore": "Gendan",
"Common.Views.History.textShow": "Udvid",
"Common.Views.History.textShowAll": "Vis detaljerede ændringer",
"Common.Views.History.textVer": "Ver.",
@ -239,6 +258,8 @@
"Common.Views.ReviewChanges.tipCoAuthMode": "Indstil samredigeringsfunktion",
"Common.Views.ReviewChanges.tipCommentRem": "Fjern kommentarer",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Fjern nuværende kommentarer",
"Common.Views.ReviewChanges.tipCommentResolve": "Løs kommentarer",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "Løs aktuelle kommentarer",
"Common.Views.ReviewChanges.tipHistory": "Vis version historik",
"Common.Views.ReviewChanges.tipRejectCurrent": "Afvis nuværende ændring",
"Common.Views.ReviewChanges.tipReview": "Spor ændringer",
@ -258,6 +279,11 @@
"Common.Views.ReviewChanges.txtCommentRemMy": "Fjern mine kommentarer",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Fjern mine nuværende kommentarer",
"Common.Views.ReviewChanges.txtCommentRemove": "Fjern",
"Common.Views.ReviewChanges.txtCommentResolve": "Løs",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Løs alle kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Løs aktuelle kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Løs mine kommentarer",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Løs mine aktuelle kommentarer",
"Common.Views.ReviewChanges.txtDocLang": "Sprog",
"Common.Views.ReviewChanges.txtFinal": "Alle ændringer accepteret (Forhåndsvisning)",
"Common.Views.ReviewChanges.txtFinalCap": "Endelig",
@ -286,6 +312,8 @@
"Common.Views.ReviewPopover.textOpenAgain": "Åben igen",
"Common.Views.ReviewPopover.textReply": "Svar",
"Common.Views.ReviewPopover.textResolve": "Løs",
"Common.Views.ReviewPopover.txtDeleteTip": "Slet",
"Common.Views.ReviewPopover.txtEditTip": "Rediger",
"Common.Views.SaveAsDlg.textLoading": "Indlæser",
"Common.Views.SaveAsDlg.textTitle": "Mappe til at gemme",
"Common.Views.SelectFileDlg.textLoading": "Indlæser",
@ -344,9 +372,11 @@
"Common.Views.UserNameDialog.textDontShow": "Spørg mig ikke igen",
"Common.Views.UserNameDialog.textLabel": "Mærkat:",
"Common.Views.UserNameDialog.textLabelError": "Mærkat kan ikke være blank.",
"PE.Controllers.LeftMenu.leavePageText": "Alle ikke-gemte ændringer i dette dokument vil gå tabt.<br> Klik på \"Annuller\" og derefter på \"Gem\" for at gemme dem. Klik på \"OK\" for at kassere alle ikke-gemte ændringer.",
"PE.Controllers.LeftMenu.newDocumentTitle": "Namnløs præsentation",
"PE.Controllers.LeftMenu.notcriticalErrorTitle": "Advarsel",
"PE.Controllers.LeftMenu.requestEditRightsText": "Anmoder om redigeringsrettigheder...",
"PE.Controllers.LeftMenu.textLoadHistory": "Indlæser versionshistorik...",
"PE.Controllers.LeftMenu.textNoTextFound": "Dataen du har søgt, kunne ikke findes. Venligst ændre dine søgerkriterier.",
"PE.Controllers.LeftMenu.textReplaceSkipped": "Erstatningen er blevet oprettet. {0} gentagelser blev sprunget over.",
"PE.Controllers.LeftMenu.textReplaceSuccess": "Søgningen er blevet gennemført. Forekomster erstattet: {0}",
@ -376,6 +406,7 @@
"PE.Controllers.Main.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.",
"PE.Controllers.Main.errorKeyEncrypt": "Ukendte nøgle descriptor",
"PE.Controllers.Main.errorKeyExpire": "Nøgle beskrivelse udløbet",
"PE.Controllers.Main.errorLoadingFont": "Skrifttyper er ikke indlæst.<br>Kontakt din dokument server administrator.",
"PE.Controllers.Main.errorProcessSaveResult": "Kunne ikke gemme",
"PE.Controllers.Main.errorServerVersion": "Redigeringsversionen er blevet opdatere. Siden vil blive genindlæst for at anvende ændringerne. ",
"PE.Controllers.Main.errorSessionAbsolute": "Sessionen for dokumentredigering er udløbet. Genindlæs venligst siden. ",
@ -391,6 +422,7 @@
"PE.Controllers.Main.errorUsersExceed": "Det maksimale antal af brugere tilladt i din aftale er nået. ",
"PE.Controllers.Main.errorViewerDisconnect": "Forbindesen er tabt. Du kan stadig se dokumentet, <br> men du vil ikke være i stand til at downloade eller udskrive det før forbindelsen er genetableret. ",
"PE.Controllers.Main.leavePageText": "Du har ikke-gemte ændringer i denne præsentation. Klik på \"Bliv på denne side\", og derefter \"Gem\" for at gemme dem. Klik på \"Forlad denne side\" for at afvise alle de ikke gemte ændringer.",
"PE.Controllers.Main.leavePageTextOnClose": "Alle ikke-gemte ændringer i denne præsentation vil gå tabt.<br> Klik på \"Annuller\" og derefter på \"Gem\" for at gemme dem. Klik på \"OK\" for at kassere alle ikke-gemte ændringer.",
"PE.Controllers.Main.loadFontsTextText": "Indlæser data...",
"PE.Controllers.Main.loadFontsTitleText": "Indlæser data",
"PE.Controllers.Main.loadFontTextText": "Indlæser data...",
@ -427,7 +459,9 @@
"PE.Controllers.Main.textClose": "Luk",
"PE.Controllers.Main.textCloseTip": "Klik for at lukke tippet",
"PE.Controllers.Main.textContactUs": "Kontakt salg",
"PE.Controllers.Main.textConvertEquation": "Denne ligning er skabt med en ældre version af programmet, som ikke længere understøttes. Omdannelse af denne ligning til Office Math ML format vil gøre den redigérbar.<br>Ønsker du at omdanne?",
"PE.Controllers.Main.textCustomLoader": "Bemærk, at du i henhold til licensbetingelserne ikke har ret til at skifte loaderen.<br>Kontakt venligt vores salgsafdeling for at få en kvote.",
"PE.Controllers.Main.textDisconnect": "Forbindelsen er afbrudt",
"PE.Controllers.Main.textGuest": "Gæst",
"PE.Controllers.Main.textHasMacros": "Filen indeholder makroer.<br>Ønsker du at køre makroer?",
"PE.Controllers.Main.textLearnMore": "Lær mere",
@ -441,6 +475,7 @@
"PE.Controllers.Main.textShape": "Form",
"PE.Controllers.Main.textStrict": "Striks tilstand",
"PE.Controllers.Main.textTryUndoRedo": "Fortryd funktionen er blevet slået fra i den hurtige co-redigerngstilstand.<b>Tryk på 'Striks tilstand' knappen for at skifte til den strikse co-redigeringstilstand for at redigere filen uden at andre brugere kan foretage ændringer før efter du har gemt dem. Du kan skifte i mellem co-redigeringstilstanden ved at bruge de avancerede indstillinger. ",
"PE.Controllers.Main.textTryUndoRedoWarn": "Fortryd/omgør-funktionen er deaktiveret for hurtig medredigeringstilstand.",
"PE.Controllers.Main.titleLicenseExp": "Licens er udløbet",
"PE.Controllers.Main.titleServerVersion": "Redigeringsværktøj opdateret",
"PE.Controllers.Main.txtAddFirstSlide": "klik for at tilføje første dias",
@ -465,6 +500,7 @@
"PE.Controllers.Main.txtMath": "Matematik",
"PE.Controllers.Main.txtMedia": "Medie",
"PE.Controllers.Main.txtNeedSynchronize": "Du har opdateringer",
"PE.Controllers.Main.txtNone": "ingen",
"PE.Controllers.Main.txtPicture": "Billede",
"PE.Controllers.Main.txtRectangles": "Rektangel",
"PE.Controllers.Main.txtSeries": "Serie",
@ -1244,6 +1280,7 @@
"PE.Views.DocumentHolder.txtTop": "Top",
"PE.Views.DocumentHolder.txtUnderbar": "Linie under tekst",
"PE.Views.DocumentHolder.txtUngroup": "Fjern fra gruppe",
"PE.Views.DocumentHolder.txtWarnUrl": "Hvis du klikker på dette link, kan det være skadeligt for din enhed og dine data.<br>Er du sikker på, at du vil fortsætte?",
"PE.Views.DocumentHolder.vertAlignText": "Lodret justering",
"PE.Views.DocumentPreview.goToSlideText": "Gå til dias",
"PE.Views.DocumentPreview.slideIndexText": "Dias {0} af {1}",
@ -1263,7 +1300,10 @@
"PE.Views.FileMenu.btnCloseMenuCaption": "Luk menu",
"PE.Views.FileMenu.btnCreateNewCaption": "Opret ny",
"PE.Views.FileMenu.btnDownloadCaption": "Hent som...",
"PE.Views.FileMenu.btnExitCaption": "Afslut",
"PE.Views.FileMenu.btnFileOpenCaption": "Åben...",
"PE.Views.FileMenu.btnHelpCaption": "Hjælp...",
"PE.Views.FileMenu.btnHistoryCaption": "Version historik",
"PE.Views.FileMenu.btnInfoCaption": "Præsentationsinfo ...",
"PE.Views.FileMenu.btnPrintCaption": "Print",
"PE.Views.FileMenu.btnProtectCaption": "Beskyt",
@ -1276,6 +1316,8 @@
"PE.Views.FileMenu.btnSaveCopyAsCaption": "Gem kopi som...",
"PE.Views.FileMenu.btnSettingsCaption": "Avancerede indstillinger...",
"PE.Views.FileMenu.btnToEditCaption": "Rediger præsentation",
"PE.Views.FileMenuPanels.CreateNew.txtBlank": "Blank præsentation",
"PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Opret ny",
"PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Anvend",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tilføj forfatter",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tilføj tekst",
@ -1861,6 +1903,7 @@
"PE.Views.Toolbar.textTabHome": "Hjem",
"PE.Views.Toolbar.textTabInsert": "indsæt",
"PE.Views.Toolbar.textTabProtect": "Beskyttelse",
"PE.Views.Toolbar.textTabTransitions": "Oversættelser",
"PE.Views.Toolbar.textTitleError": "Fejl",
"PE.Views.Toolbar.textUnderline": "Understreg",
"PE.Views.Toolbar.tipAddSlide": "Tilføj dias",
@ -1930,6 +1973,7 @@
"PE.Views.Toolbar.txtScheme2": "Gråtoner",
"PE.Views.Toolbar.txtScheme20": "Urban",
"PE.Views.Toolbar.txtScheme21": "Verve",
"PE.Views.Toolbar.txtScheme22": "Nyt Office",
"PE.Views.Toolbar.txtScheme3": "Spids",
"PE.Views.Toolbar.txtScheme4": "Aspekt",
"PE.Views.Toolbar.txtScheme5": "Borgerlig",
@ -1951,8 +1995,10 @@
"PE.Views.Transitions.textCounterclockwise": "Mod uret",
"PE.Views.Transitions.textCover": "Dække over",
"PE.Views.Transitions.textFade": "Falme",
"PE.Views.Transitions.textHorizontalIn": "Vandret ind",
"PE.Views.Transitions.textHorizontalOut": "Vandret ud",
"PE.Views.Transitions.textLeft": "Venstre",
"PE.Views.Transitions.textNone": "ingen",
"PE.Views.Transitions.textPush": "Skub",
"PE.Views.Transitions.textRight": "Højre",
"PE.Views.Transitions.textSmoothly": "Glat",
@ -1961,6 +2007,8 @@
"PE.Views.Transitions.textTopLeft": "Top-venstre",
"PE.Views.Transitions.textTopRight": "Top-højre",
"PE.Views.Transitions.textUnCover": "Afdække",
"PE.Views.Transitions.textVerticalIn": "Lodret ind",
"PE.Views.Transitions.textVerticalOut": "Lodret ud",
"PE.Views.Transitions.textWedge": "Kile",
"PE.Views.Transitions.textWipe": "Tørre",
"PE.Views.Transitions.textZoom": "Zoom",

View file

@ -1328,7 +1328,7 @@
"PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Δημιουργήθηκε",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Τελευταία Τροποποίηση Από",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Τελευταίο Τροποποιημένο",
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Ιδιοκτήτης",
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Κάτοχος",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Τοποθεσία",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Άτομα που έχουν δικαιώματα",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Θέμα",

View file

@ -47,6 +47,195 @@
"Common.define.chartData.textScatterSmoothMarker": "Scatter with smooth lines and markers",
"Common.define.chartData.textStock": "Stock",
"Common.define.chartData.textSurface": "Surface",
"Common.define.effectData.textAcross": "Across",
"Common.define.effectData.textAppear": "Appear",
"Common.define.effectData.textArcDown": "Arc Down",
"Common.define.effectData.textArcLeft": "Arc Left",
"Common.define.effectData.textArcRight": "Arc Right",
"Common.define.effectData.textArcUp": "Arc Up",
"Common.define.effectData.textBasic": "Basic",
"Common.define.effectData.textBasicSwivel": "Basic Swivel",
"Common.define.effectData.textBasicZoom": "Basic Zoom",
"Common.define.effectData.textBean": "Bean",
"Common.define.effectData.textBlinds": "Blinds",
"Common.define.effectData.textBlink": "Blink",
"Common.define.effectData.textBoldFlash": "Bold Flash",
"Common.define.effectData.textBoldReveal": "Bold Reveal",
"Common.define.effectData.textBoomerang": "Boomerang",
"Common.define.effectData.textBounce": "Bounce",
"Common.define.effectData.textBounceLeft": "Bounce Left",
"Common.define.effectData.textBounceRight": "Bounce Right",
"Common.define.effectData.textBox": "Box",
"Common.define.effectData.textBrushColor": "Brush Color",
"Common.define.effectData.textCenterRevolve": "Center Revolve",
"Common.define.effectData.textCheckerboard": "Checkerboard",
"Common.define.effectData.textCircle": "Circle",
"Common.define.effectData.textCollapse": "Collapse",
"Common.define.effectData.textColorPulse": "Color Pulse",
"Common.define.effectData.textComplementaryColor": "Complementary Color",
"Common.define.effectData.textComplementaryColor2": "Complementary Color 2",
"Common.define.effectData.textCompress": "Compress",
"Common.define.effectData.textContrast": "Contrast",
"Common.define.effectData.textContrastingColor": "Contrasting Color",
"Common.define.effectData.textCredits": "Credits",
"Common.define.effectData.textCrescentMoon": "Crescent Moon",
"Common.define.effectData.textCurveDown": "CurveDown",
"Common.define.effectData.textCurvedSquare": "CurvedSquare",
"Common.define.effectData.textCurvedX": "Curved X",
"Common.define.effectData.textCurvyLeft": "Curvy Left",
"Common.define.effectData.textCurvyRight": "Curvy Right",
"Common.define.effectData.textCurvyStar": "Curvy Star",
"Common.define.effectData.textCustomPath": "Custom Path",
"Common.define.effectData.textCuverUp": "Cuver Up",
"Common.define.effectData.textDarken": "Darken",
"Common.define.effectData.textDecayingWave": "Decaying Wave",
"Common.define.effectData.textDesaturate": "Desaturate",
"Common.define.effectData.textDiagonalDownRight": "Diagonal Down Right",
"Common.define.effectData.textDiagonalUpRight": "Diagonal Up Right",
"Common.define.effectData.textDiamond": "Diamond",
"Common.define.effectData.textDisappear": "Disappear",
"Common.define.effectData.textDissolveIn": "Dissolve In",
"Common.define.effectData.textDissolveOut": "Dissolve Out",
"Common.define.effectData.textDown": "Down",
"Common.define.effectData.textDrop": "Drop",
"Common.define.effectData.textEmphasis": "Emphasis Effect",
"Common.define.effectData.textEntrance": "Entrance Effect",
"Common.define.effectData.textEqualTriangle": "Equal Triangle",
"Common.define.effectData.textExciting": "Exciting",
"Common.define.effectData.textExit": "Exit Effect",
"Common.define.effectData.textExpand": "Expand",
"Common.define.effectData.textFade": "Fade",
"Common.define.effectData.textFigureFour": "Figure 8 Four",
"Common.define.effectData.textFillColor": "Fill Color",
"Common.define.effectData.textFlip": "Flip",
"Common.define.effectData.textFloat": "Float",
"Common.define.effectData.textFloatDown": "Float Down",
"Common.define.effectData.textFloatIn": "Float In",
"Common.define.effectData.textFloatOut": "Float Out",
"Common.define.effectData.textFloatUp": "Float Up",
"Common.define.effectData.textFlyIn": "Fly in",
"Common.define.effectData.textFlyOut": "Fly Out",
"Common.define.effectData.textFontColor": "Font Color",
"Common.define.effectData.textFootball": "Football",
"Common.define.effectData.textFromBottom": "From Bottom",
"Common.define.effectData.textFromBottomLeft": "From Bottom-Left",
"Common.define.effectData.textFromBottomRight": "From Bottom-Right",
"Common.define.effectData.textFromLeft": "From Left",
"Common.define.effectData.textFromRight": "From Right",
"Common.define.effectData.textFromTop": "From Top",
"Common.define.effectData.textFromTopLeft": "From Top-Left",
"Common.define.effectData.textFromTopRight": "From Top-Right",
"Common.define.effectData.textFunnel": "Funnel",
"Common.define.effectData.textGrowShrink": "Grow/Shrink",
"Common.define.effectData.textGrowTurn": "Grow & Turn",
"Common.define.effectData.textGrowWithColor": "Grow With Color",
"Common.define.effectData.textHeart": "Heart",
"Common.define.effectData.textHeartbeat": "Heartbeat",
"Common.define.effectData.textHexagon": "Hexagon",
"Common.define.effectData.textHorizontal": "Horizontal",
"Common.define.effectData.textHorizontalFigure": "Horizontal Figure 8",
"Common.define.effectData.textHorizontalIn": "Horizontal In",
"Common.define.effectData.textHorizontalOut": "Horizontal Out",
"Common.define.effectData.textIn": "In",
"Common.define.effectData.textInFromScreenCenter": "In From Screen Center",
"Common.define.effectData.textInSlightly": "In Slightly",
"Common.define.effectData.textInToScreenCenter": "In To Screen Center",
"Common.define.effectData.textInvertedSquare": "Inverted Square",
"Common.define.effectData.textInvertedTriangle": "Inverted Triangle",
"Common.define.effectData.textLeft": "Left",
"Common.define.effectData.textLeftDown": " Left Down",
"Common.define.effectData.textLeftUp": " Left Up",
"Common.define.effectData.textLighten": "Lighten",
"Common.define.effectData.textLineColor": "Line Color",
"Common.define.effectData.textLinesCurves": "Lines Curves",
"Common.define.effectData.textLoopDeLoop": "Loop de Loop",
"Common.define.effectData.textModerate": "Moderate",
"Common.define.effectData.textNeutron": "Neutron",
"Common.define.effectData.textObjectCenter": "Object Center",
"Common.define.effectData.textObjectColor": "Object Color",
"Common.define.effectData.textOctagon": "Octagon",
"Common.define.effectData.textOut": "Out",
"Common.define.effectData.textOutFromScreenBottom": "Out From Screen Bottom",
"Common.define.effectData.textOutSlightly": "Out Slightly",
"Common.define.effectData.textParallelogram": "Parallelogram",
"Common.define.effectData.textPath": "Motion Path",
"Common.define.effectData.textPeanut": "Peanut",
"Common.define.effectData.textPeekIn": "Peek In",
"Common.define.effectData.textPeekOut": "Peek Out",
"Common.define.effectData.textPentagon": "Pentagon",
"Common.define.effectData.textPinwheel": "Pinwheel",
"Common.define.effectData.textPlus": "Plus",
"Common.define.effectData.textPointStar": "Point Star",
"Common.define.effectData.textPointStar4": "4 Point Star",
"Common.define.effectData.textPointStar5": "5 Point Star",
"Common.define.effectData.textPointStar6": "6 Point Star",
"Common.define.effectData.textPointStar8": "8 Point Star",
"Common.define.effectData.textPulse": "Pulse",
"Common.define.effectData.textRandomBars": "Random Bars ",
"Common.define.effectData.textRight": "Right",
"Common.define.effectData.textRightDown": " Right Down",
"Common.define.effectData.textRightTriangle": "Right Triangle",
"Common.define.effectData.textRightUp": " Right Up",
"Common.define.effectData.textRiseUp": "Rise Up",
"Common.define.effectData.textSCurve1": "S Curve 1",
"Common.define.effectData.textSCurve2": "S Curve 2",
"Common.define.effectData.textShape": "Shape",
"Common.define.effectData.textShimmer": "Shimmer",
"Common.define.effectData.textShrinkTurn": "Shrink & Turn",
"Common.define.effectData.textSineWave": "Sine Wave",
"Common.define.effectData.textSinkDown": "Sink Down",
"Common.define.effectData.textSlideCenter": "Slide Center",
"Common.define.effectData.textSpecial": "Special",
"Common.define.effectData.textSpin": "Spin",
"Common.define.effectData.textSpinner": "Spinner",
"Common.define.effectData.textSpiralIn": "Spiral In",
"Common.define.effectData.textSpiralLeft": "Spiral Left",
"Common.define.effectData.textSpiralOut": "Spiral Out",
"Common.define.effectData.textSpiralRight": "Spiral Right",
"Common.define.effectData.textSplit": "Split",
"Common.define.effectData.textSpoke1": "1 Spoke",
"Common.define.effectData.textSpoke2": "2 Spoke",
"Common.define.effectData.textSpoke3": "3 Spoke",
"Common.define.effectData.textSpoke4": "4 Spoke",
"Common.define.effectData.textSpoke8": "8 Spoke",
"Common.define.effectData.textSpring": "Spring",
"Common.define.effectData.textSquare": "Square",
"Common.define.effectData.textStairsDown": "Stairs Down",
"Common.define.effectData.textStretch": "Stretch",
"Common.define.effectData.textStrips": "Strips",
"Common.define.effectData.textSubtle": "Subtle",
"Common.define.effectData.textSwivel": "Swivel",
"Common.define.effectData.textSwoosh": "Swoosh",
"Common.define.effectData.textTeardrop": "Teardrop",
"Common.define.effectData.textTeeter": "Teeter",
"Common.define.effectData.textToBottom": "To Bottom",
"Common.define.effectData.textToBottomLeft": "To Bottom-Left",
"Common.define.effectData.textToBottomRight": "To Bottom-Right",
"Common.define.effectData.textToFromScreenBottom": "Out To Screen Bottom",
"Common.define.effectData.textToLeft": "To Left",
"Common.define.effectData.textToRight": "To Right",
"Common.define.effectData.textToTop": "To Top",
"Common.define.effectData.textToTopLeft": "To Top-Left",
"Common.define.effectData.textToTopRight": "To Top-Right",
"Common.define.effectData.textTransparency": "Transparency",
"Common.define.effectData.textTrapezoid": "Trapezoid",
"Common.define.effectData.textTurnDown": "Turn Down",
"Common.define.effectData.textTurnDownRight": "Turn Down Right",
"Common.define.effectData.textTurnUp": "Turn Up",
"Common.define.effectData.textTurnUpRight": "Turn Up Right",
"Common.define.effectData.textUnderline": "Underline",
"Common.define.effectData.textUp": "Up",
"Common.define.effectData.textVertical": "Vertical",
"Common.define.effectData.textVerticalFigure": "Vertical Figure 8",
"Common.define.effectData.textVerticalIn": "Vertical In",
"Common.define.effectData.textVerticalOut": "Vertical Out",
"Common.define.effectData.textWave": "Wave",
"Common.define.effectData.textWedge": "Wedge",
"Common.define.effectData.textWheel": "Wheel",
"Common.define.effectData.textWhip": "Whip",
"Common.define.effectData.textWipe": "Wipe",
"Common.define.effectData.textZigzag": "Zigzag",
"Common.define.effectData.textZoom": "Zoom",
"Common.Translation.warnFileLocked": "The file is being edited in another app. You can continue editing and save it as a copy.",
"Common.Translation.warnFileLockedBtnEdit": "Create a copy",
"Common.Translation.warnFileLockedBtnView": "Open for viewing",
@ -476,6 +665,7 @@
"PE.Controllers.Main.textLongName": "Enter a name that is less than 128 characters.",
"PE.Controllers.Main.textNoLicenseTitle": "License limit reached",
"PE.Controllers.Main.textPaidFeature": "Paid feature",
"PE.Controllers.Main.textReconnect": "Connection is restored",
"PE.Controllers.Main.textRemember": "Remember my choice for all files",
"PE.Controllers.Main.textRenameError": "User name must not be empty.",
"PE.Controllers.Main.textRenameLabel": "Enter a name to be used for collaboration",
@ -757,9 +947,8 @@
"PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
"PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"PE.Controllers.Main.textReconnect": "Connection is restored",
"PE.Controllers.Statusbar.textDisconnect": "<b>Connection is lost</b><br>Trying to connect. Please check connection settings.",
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"PE.Controllers.Statusbar.textDisconnect": "<b>Connection is lost</b><br>Please check connection settings.",
"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.textBracket": "Brackets",
@ -1095,6 +1284,29 @@
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"PE.Controllers.Viewport.textFitPage": "Fit to Slide",
"PE.Controllers.Viewport.textFitWidth": "Fit to Width",
"PE.Views.Animation.strDelay": "Delay",
"PE.Views.Animation.strDuration": "Duration",
"PE.Views.Animation.strRepeat": "Repeat",
"PE.Views.Animation.strRewind": "Rewind",
"PE.Views.Animation.strStart": "Start",
"PE.Views.Animation.strTrigger": "Trigger",
"PE.Views.Animation.textMoreEffects": "Show More Effects",
"PE.Views.Animation.textMoveEarlier": "Move Earlier",
"PE.Views.Animation.textMoveLater": "Move Later",
"PE.Views.Animation.textMultiple": "Multiple",
"PE.Views.Animation.textNone": "None",
"PE.Views.Animation.textOnClickOf": "On Click of",
"PE.Views.Animation.textOnClickSequence": "On Click Sequence",
"PE.Views.Animation.textStartAfterPrevious": "After Previous",
"PE.Views.Animation.textStartOnClick": "On Click",
"PE.Views.Animation.textStartWithPrevious": "With Previous",
"PE.Views.Animation.txtAddEffect": "Add animation",
"PE.Views.Animation.txtAnimationPane": "Animation Pane",
"PE.Views.Animation.txtParameters": "Parameters",
"PE.Views.Animation.txtPreview": "Preview",
"PE.Views.Animation.txtSec": "s",
"PE.Views.AnimationDialog.textTitle": "More Effects",
"PE.Views.AnimationDialog.textPreviewEffect": "Preview Effect",
"PE.Views.ChartSettings.textAdvanced": "Show advanced settings",
"PE.Views.ChartSettings.textChartType": "Change Chart Type",
"PE.Views.ChartSettings.textEditData": "Edit Data",
@ -1920,6 +2132,7 @@
"PE.Views.Toolbar.textTabInsert": "Insert",
"PE.Views.Toolbar.textTabProtect": "Protection",
"PE.Views.Toolbar.textTabTransitions": "Transitions",
"PE.Views.Toolbar.textTabView": "View",
"PE.Views.Toolbar.textTitleError": "Error",
"PE.Views.Toolbar.textUnderline": "Underline",
"PE.Views.Toolbar.tipAddSlide": "Add slide",
@ -2000,7 +2213,6 @@
"PE.Views.Toolbar.txtScheme9": "Foundry",
"PE.Views.Toolbar.txtSlideAlign": "Align to Slide",
"PE.Views.Toolbar.txtUngroup": "Ungroup",
"PE.Views.Toolbar.textTabView": "View",
"PE.Views.Transitions.strDelay": "Delay",
"PE.Views.Transitions.strDuration": "Duration",
"PE.Views.Transitions.strStartOnClick": "Start On Click",
@ -2037,12 +2249,12 @@
"PE.Views.Transitions.txtParameters": "Parameters",
"PE.Views.Transitions.txtPreview": "Preview",
"PE.Views.Transitions.txtSec": "s",
"PE.Views.ViewTab.textZoom": "Zoom",
"PE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar",
"PE.Views.ViewTab.textFitToSlide": "Fit To Slide",
"PE.Views.ViewTab.textFitToWidth": "Fit To Width",
"PE.Views.ViewTab.textInterfaceTheme": "Interface theme",
"PE.Views.ViewTab.textStatusBar": "Status Bar",
"PE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar",
"PE.Views.ViewTab.textNotes": "Notes",
"PE.Views.ViewTab.textRulers": "Rulers",
"PE.Views.ViewTab.textNotes": "Notes"
"PE.Views.ViewTab.textStatusBar": "Status Bar",
"PE.Views.ViewTab.textZoom": "Zoom"
}

View file

@ -1874,7 +1874,7 @@
"PE.Views.Toolbar.textAlignMiddle": "Allinea testo in mezzo",
"PE.Views.Toolbar.textAlignRight": "Allinea testo a destra",
"PE.Views.Toolbar.textAlignTop": "Allinea testo in alto",
"PE.Views.Toolbar.textArrangeBack": "Porta in secondo piano",
"PE.Views.Toolbar.textArrangeBack": "Spostare in secondo piano",
"PE.Views.Toolbar.textArrangeBackward": "Porta indietro",
"PE.Views.Toolbar.textArrangeForward": "Porta avanti",
"PE.Views.Toolbar.textArrangeFront": "Porta in primo piano",

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 909 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 962 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 972 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 924 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,012 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,000 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 968 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

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