Update translation for rotation
This commit is contained in:
parent
d3bf9ff612
commit
03b81f8007
|
@ -2362,14 +2362,14 @@ define([
|
|||
menu : new Common.UI.Menu({
|
||||
menuAlign: 'tl-tr',
|
||||
items: [
|
||||
new Common.UI.MenuItem({
|
||||
caption: this.textRotate270,
|
||||
value : 0
|
||||
}).on('click', _.bind(me.onImgRotate, me)),
|
||||
new Common.UI.MenuItem({
|
||||
caption: this.textRotate90,
|
||||
value : 1
|
||||
}).on('click', _.bind(me.onImgRotate, me)),
|
||||
new Common.UI.MenuItem({
|
||||
caption: this.textRotate270,
|
||||
value : 0
|
||||
}).on('click', _.bind(me.onImgRotate, me)),
|
||||
new Common.UI.MenuItem({
|
||||
caption: this.textFlipH,
|
||||
value : 1
|
||||
|
@ -3955,11 +3955,11 @@ define([
|
|||
bulletsText: 'Bullets and Numbering',
|
||||
txtDistribHor : 'Distribute Horizontally',
|
||||
txtDistribVert : 'Distribute Vertically',
|
||||
textRotate270: 'Rotate Left 90°',
|
||||
textRotate90: 'Rotate Right 90°',
|
||||
textRotate270: 'Rotate 90° Counterclockwise',
|
||||
textRotate90: 'Rotate 90° Clockwise',
|
||||
textFlipV: 'Flip Vertically',
|
||||
textFlipH: 'Flip Horizontally',
|
||||
textRotate: 'Rotation'
|
||||
textRotate: 'Rotate'
|
||||
|
||||
}, DE.Views.DocumentHolder || {}));
|
||||
});
|
|
@ -523,8 +523,8 @@ define([
|
|||
textRotation: 'Rotation',
|
||||
textRotate90: 'Rotate 90°',
|
||||
textFlip: 'Flip',
|
||||
textHint270: 'Rotate Left 90°',
|
||||
textHint90: 'Rotate Right 90°',
|
||||
textHint270: 'Rotate 90° Counterclockwise',
|
||||
textHint90: 'Rotate 90° Clockwise',
|
||||
textHintFlipV: 'Flip Vertically',
|
||||
textHintFlipH: 'Flip Horizontally'
|
||||
|
||||
|
|
|
@ -1242,11 +1242,11 @@
|
|||
"DE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
||||
"DE.Views.DocumentHolder.textRotate270": "Rotate Left 90°",
|
||||
"DE.Views.DocumentHolder.textRotate90": "Rotate Right 90°",
|
||||
"DE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise",
|
||||
"DE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise",
|
||||
"DE.Views.DocumentHolder.textFlipV": "Flip Vertically",
|
||||
"DE.Views.DocumentHolder.textFlipH": "Flip Horizontally",
|
||||
"DE.Views.DocumentHolder.textRotate": "Rotation",
|
||||
"DE.Views.DocumentHolder.textRotate": "Rotate",
|
||||
"DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Cancel",
|
||||
"DE.Views.DropcapSettingsAdvanced.okButtonText": "Ok",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill",
|
||||
|
@ -1426,8 +1426,8 @@
|
|||
"DE.Views.ImageSettings.textFromFile": "From File",
|
||||
"DE.Views.ImageSettings.textFromUrl": "From URL",
|
||||
"DE.Views.ImageSettings.textHeight": "Height",
|
||||
"DE.Views.ImageSettings.textHint270": "Rotate Left 90°",
|
||||
"DE.Views.ImageSettings.textHint90": "Rotate Right 90°",
|
||||
"DE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise",
|
||||
"DE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise",
|
||||
"DE.Views.ImageSettings.textHintFlipH": "Flip Horizontally",
|
||||
"DE.Views.ImageSettings.textHintFlipV": "Flip Vertically",
|
||||
"DE.Views.ImageSettings.textInsert": "Replace Image",
|
||||
|
@ -1742,8 +1742,8 @@
|
|||
"DE.Views.ShapeSettings.textFromUrl": "From URL",
|
||||
"DE.Views.ShapeSettings.textGradient": "Gradient",
|
||||
"DE.Views.ShapeSettings.textGradientFill": "Gradient Fill",
|
||||
"DE.Views.ShapeSettings.textHint270": "Rotate Left 90°",
|
||||
"DE.Views.ShapeSettings.textHint90": "Rotate Right 90°",
|
||||
"DE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise",
|
||||
"DE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise",
|
||||
"DE.Views.ShapeSettings.textHintFlipH": "Flip Horizontally",
|
||||
"DE.Views.ShapeSettings.textHintFlipV": "Flip Vertically",
|
||||
"DE.Views.ShapeSettings.textImageTexture": "Picture or Texture",
|
||||
|
|
|
@ -2799,14 +2799,14 @@ define([
|
|||
menu : new Common.UI.Menu({
|
||||
menuAlign: 'tl-tr',
|
||||
items: [
|
||||
new Common.UI.MenuItem({
|
||||
caption: me.textRotate270,
|
||||
value : 0
|
||||
}).on('click', _.bind(onImgRotate, me)),
|
||||
new Common.UI.MenuItem({
|
||||
caption: me.textRotate90,
|
||||
value : 1
|
||||
}).on('click', _.bind(onImgRotate, me)),
|
||||
new Common.UI.MenuItem({
|
||||
caption: me.textRotate270,
|
||||
value : 0
|
||||
}).on('click', _.bind(onImgRotate, me)),
|
||||
new Common.UI.MenuItem({
|
||||
caption: me.textFlipH,
|
||||
value : 1
|
||||
|
@ -3527,11 +3527,11 @@ define([
|
|||
textReplace: 'Replace image',
|
||||
textFromUrl: 'From URL',
|
||||
textFromFile: 'From File',
|
||||
textRotate270: 'Rotate Left 90°',
|
||||
textRotate90: 'Rotate Right 90°',
|
||||
textRotate270: 'Rotate 90° Counterclockwise',
|
||||
textRotate90: 'Rotate 90° Clockwise',
|
||||
textFlipV: 'Flip Vertically',
|
||||
textFlipH: 'Flip Horizontally',
|
||||
textRotate: 'Rotation'
|
||||
textRotate: 'Rotate'
|
||||
|
||||
}, PE.Views.DocumentHolder || {}));
|
||||
});
|
|
@ -358,8 +358,8 @@ define([
|
|||
textRotation: 'Rotation',
|
||||
textRotate90: 'Rotate 90°',
|
||||
textFlip: 'Flip',
|
||||
textHint270: 'Rotate Left 90°',
|
||||
textHint90: 'Rotate Right 90°',
|
||||
textHint270: 'Rotate 90° Counterclockwise',
|
||||
textHint90: 'Rotate 90° Clockwise',
|
||||
textHintFlipV: 'Flip Vertically',
|
||||
textHintFlipH: 'Flip Horizontally'
|
||||
|
||||
|
|
|
@ -1104,11 +1104,11 @@
|
|||
"PE.Views.DocumentHolder.txtUnderbar": "Bar under text",
|
||||
"PE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
||||
"PE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
||||
"PE.Views.DocumentHolder.textRotate270": "Rotate Left 90°",
|
||||
"PE.Views.DocumentHolder.textRotate90": "Rotate Right 90°",
|
||||
"PE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise",
|
||||
"PE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise",
|
||||
"PE.Views.DocumentHolder.textFlipV": "Flip Vertically",
|
||||
"PE.Views.DocumentHolder.textFlipH": "Flip Horizontally",
|
||||
"PE.Views.DocumentHolder.textRotate": "Rotation",
|
||||
"PE.Views.DocumentHolder.textRotate": "Rotate",
|
||||
"PE.Views.DocumentPreview.goToSlideText": "Go to Slide",
|
||||
"PE.Views.DocumentPreview.slideIndexText": "Slide {0} of {1}",
|
||||
"PE.Views.DocumentPreview.txtClose": "Close slideshow",
|
||||
|
@ -1225,8 +1225,8 @@
|
|||
"PE.Views.ImageSettings.textFromFile": "From File",
|
||||
"PE.Views.ImageSettings.textFromUrl": "From URL",
|
||||
"PE.Views.ImageSettings.textHeight": "Height",
|
||||
"PE.Views.ImageSettings.textHint270": "Rotate Left 90°",
|
||||
"PE.Views.ImageSettings.textHint90": "Rotate Right 90°",
|
||||
"PE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise",
|
||||
"PE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise",
|
||||
"PE.Views.ImageSettings.textHintFlipH": "Flip Horizontally",
|
||||
"PE.Views.ImageSettings.textHintFlipV": "Flip Vertically",
|
||||
"PE.Views.ImageSettings.textInsert": "Replace Image",
|
||||
|
@ -1329,8 +1329,8 @@
|
|||
"PE.Views.ShapeSettings.textFromUrl": "From URL",
|
||||
"PE.Views.ShapeSettings.textGradient": "Gradient",
|
||||
"PE.Views.ShapeSettings.textGradientFill": "Gradient Fill",
|
||||
"PE.Views.ShapeSettings.textHint270": "Rotate Left 90°",
|
||||
"PE.Views.ShapeSettings.textHint90": "Rotate Right 90°",
|
||||
"PE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise",
|
||||
"PE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise",
|
||||
"PE.Views.ShapeSettings.textHintFlipH": "Flip Horizontally",
|
||||
"PE.Views.ShapeSettings.textHintFlipV": "Flip Vertically",
|
||||
"PE.Views.ShapeSettings.textImageTexture": "Picture or Texture",
|
||||
|
|
|
@ -694,16 +694,16 @@ define([
|
|||
menu : new Common.UI.Menu({
|
||||
menuAlign: 'tl-tr',
|
||||
items: [
|
||||
new Common.UI.MenuItem({
|
||||
caption: me.textRotate270,
|
||||
type : 'rotate',
|
||||
value : 0
|
||||
}),
|
||||
new Common.UI.MenuItem({
|
||||
caption: me.textRotate90,
|
||||
type : 'rotate',
|
||||
value : 1
|
||||
}),
|
||||
new Common.UI.MenuItem({
|
||||
caption: me.textRotate270,
|
||||
type : 'rotate',
|
||||
value : 0
|
||||
}),
|
||||
new Common.UI.MenuItem({
|
||||
caption: me.textFlipH,
|
||||
type : 'flip',
|
||||
|
@ -1046,11 +1046,11 @@ define([
|
|||
textShapeAlignMiddle : 'Align Middle',
|
||||
txtDistribHor: 'Distribute Horizontally',
|
||||
txtDistribVert: 'Distribute Vertically',
|
||||
textRotate270: 'Rotate Left 90°',
|
||||
textRotate90: 'Rotate Right 90°',
|
||||
textRotate270: 'Rotate 90° Counterclockwise',
|
||||
textRotate90: 'Rotate 90° Clockwise',
|
||||
textFlipV: 'Flip Vertically',
|
||||
textFlipH: 'Flip Horizontally',
|
||||
textRotate: 'Rotation',
|
||||
textRotate: 'Rotate',
|
||||
textArrange: 'Arrange',
|
||||
textAlign: 'Align'
|
||||
|
||||
|
|
|
@ -457,8 +457,8 @@ define([
|
|||
textRotation: 'Rotation',
|
||||
textRotate90: 'Rotate 90°',
|
||||
textFlip: 'Flip',
|
||||
textHint270: 'Rotate Left 90°',
|
||||
textHint90: 'Rotate Right 90°',
|
||||
textHint270: 'Rotate 90° Counterclockwise',
|
||||
textHint90: 'Rotate 90° Clockwise',
|
||||
textHintFlipV: 'Flip Vertically',
|
||||
textHintFlipH: 'Flip Horizontally'
|
||||
}, SSE.Views.ImageSettings || {}));
|
||||
|
|
|
@ -1439,11 +1439,11 @@
|
|||
"SSE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
||||
"SSE.Views.DocumentHolder.txtWidth": "Width",
|
||||
"SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
||||
"SSE.Views.DocumentHolder.textRotate270": "Rotate Left 90°",
|
||||
"SSE.Views.DocumentHolder.textRotate90": "Rotate Right 90°",
|
||||
"SSE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise",
|
||||
"SSE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise",
|
||||
"SSE.Views.DocumentHolder.textFlipV": "Flip Vertically",
|
||||
"SSE.Views.DocumentHolder.textFlipH": "Flip Horizontally",
|
||||
"SSE.Views.DocumentHolder.textRotate": "Rotation",
|
||||
"SSE.Views.DocumentHolder.textRotate": "Rotate",
|
||||
"SSE.Views.DocumentHolder.textArrange": "Arrange",
|
||||
"SSE.Views.DocumentHolder.textAlign": "Align",
|
||||
"SSE.Views.FileMenu.btnBackCaption": "Go to Documents",
|
||||
|
@ -1590,8 +1590,8 @@
|
|||
"SSE.Views.ImageSettings.textFromFile": "From File",
|
||||
"SSE.Views.ImageSettings.textFromUrl": "From URL",
|
||||
"SSE.Views.ImageSettings.textHeight": "Height",
|
||||
"SSE.Views.ImageSettings.textHint270": "Rotate Left 90°",
|
||||
"SSE.Views.ImageSettings.textHint90": "Rotate Right 90°",
|
||||
"SSE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise",
|
||||
"SSE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise",
|
||||
"SSE.Views.ImageSettings.textHintFlipH": "Flip Horizontally",
|
||||
"SSE.Views.ImageSettings.textHintFlipV": "Flip Vertically",
|
||||
"SSE.Views.ImageSettings.textInsert": "Replace Image",
|
||||
|
@ -1849,8 +1849,8 @@
|
|||
"SSE.Views.ShapeSettings.textFromUrl": "From URL",
|
||||
"SSE.Views.ShapeSettings.textGradient": "Gradient",
|
||||
"SSE.Views.ShapeSettings.textGradientFill": "Gradient Fill",
|
||||
"SSE.Views.ShapeSettings.textHint270": "Rotate Left 90°",
|
||||
"SSE.Views.ShapeSettings.textHint90": "Rotate Right 90°",
|
||||
"SSE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise",
|
||||
"SSE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise",
|
||||
"SSE.Views.ShapeSettings.textHintFlipH": "Flip Horizontally",
|
||||
"SSE.Views.ShapeSettings.textHintFlipV": "Flip Vertically",
|
||||
"SSE.Views.ShapeSettings.textImageTexture": "Picture or Texture",
|
||||
|
|
Loading…
Reference in a new issue