diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index f7e0189e8..f0f72168d 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -932,14 +932,17 @@ if (config.editorConfig.customization.loaderName !== 'none') params += "&customer=" + encodeURIComponent(config.editorConfig.customization.loaderName); } else params += "&customer={{APP_CUSTOMER_NAME}}"; - if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.loaderLogo) { - if (config.editorConfig.customization.loaderLogo !== '') params += "&logo=" + encodeURIComponent(config.editorConfig.customization.loaderLogo); - } else if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.logo) { - if (config.type=='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded)) - params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded); - else if (config.type!='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageDark)) { - config.editorConfig.customization.logo.image && (params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image)); - config.editorConfig.customization.logo.imageDark && (params += "&headerlogodark=" + encodeURIComponent(config.editorConfig.customization.logo.imageDark)); + if (typeof(config.editorConfig.customization) == 'object') { + if ( config.editorConfig.customization.loaderLogo && config.editorConfig.customization.loaderLogo !== '') { + params += "&logo=" + encodeURIComponent(config.editorConfig.customization.loaderLogo); + } + if ( config.editorConfig.customization.logo ) { + if (config.type=='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded)) + params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageEmbedded); + else if (config.type!='embedded' && (config.editorConfig.customization.logo.image || config.editorConfig.customization.logo.imageDark)) { + config.editorConfig.customization.logo.image && (params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image)); + config.editorConfig.customization.logo.imageDark && (params += "&headerlogodark=" + encodeURIComponent(config.editorConfig.customization.logo.imageDark)); + } } } } @@ -959,8 +962,6 @@ if (config.editorConfig && config.editorConfig.customization && (config.editorConfig.customization.toolbar===false)) params += "&toolbar=false"; - else if (config.document && config.document.permissions && (config.document.permissions.edit === false && config.document.permissions.fillForms )) - params += "&toolbar=true"; if (config.parentOrigin) params += "&parentOrigin=" + config.parentOrigin; diff --git a/apps/common/forms/resources/less/common.less b/apps/common/forms/resources/less/common.less index 1e61888f3..c1a0ccd51 100644 --- a/apps/common/forms/resources/less/common.less +++ b/apps/common/forms/resources/less/common.less @@ -80,6 +80,7 @@ @import "../../../../common/main/resources/less/spinner.less"; @import "../../../../common/main/resources/less/checkbox.less"; @import "../../../../common/main/resources/less/opendialog.less"; +@import "../../../../common/main/resources/less/advanced-settings-window.less"; @toolbarBorderColor: @border-toolbar-ie; @toolbarBorderColor: @border-toolbar; diff --git a/apps/common/main/lib/component/ComboDataView.js b/apps/common/main/lib/component/ComboDataView.js index 0a568e3b8..ec972e57f 100644 --- a/apps/common/main/lib/component/ComboDataView.js +++ b/apps/common/main/lib/component/ComboDataView.js @@ -416,6 +416,9 @@ define([ if (forceFill || !me.fieldPicker.store.findWhere({'id': record.get('id')})){ if (me.itemMarginLeft===undefined) { var div = $($(this.menuPicker.el).find('.inner > div:not(.grouped-data):not(.ps-scrollbar-x-rail):not(.ps-scrollbar-y-rail)')[0]); + if (!div || div.length<1) { // try to find items in groups + div = $($(this.menuPicker.el).find('.inner .group-items-container > div:not(.grouped-data):not(.ps-scrollbar-x-rail):not(.ps-scrollbar-y-rail)')[0]); + } if (div.length > 0) { me.itemMarginLeft = parseInt(div.css('margin-left')); me.itemMarginRight = parseInt(div.css('margin-right')); diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index 516ce3f01..fa6fdb12d 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -492,7 +492,9 @@ Common.UI.HintManager = new(function() { match = false; var keyCode = e.keyCode; if (keyCode !== 16 && keyCode !== 17 && keyCode !== 18 && keyCode !== 91) { - curLetter = _lang === 'en' ? ((keyCode > 47 && keyCode < 58 || keyCode > 64 && keyCode < 91) ? String.fromCharCode(e.keyCode) : null) : e.key; + curLetter = _lang === 'en' ? + ((keyCode > 47 && keyCode < 58 || keyCode > 64 && keyCode < 91) ? String.fromCharCode(e.keyCode) : null) : + (/[.*+?^${}()|[\]\\]/g.test(e.key) ? null : e.key); } if (curLetter) { var curr; @@ -592,7 +594,7 @@ Common.UI.HintManager = new(function() { } } - _needShow = (e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); + _needShow = (!e.shiftKey && e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); if (e.altKey && e.keyCode !== 115) { e.preventDefault(); } diff --git a/apps/common/main/lib/controller/Plugins.js b/apps/common/main/lib/controller/Plugins.js index ae74097bc..98d3f0c56 100644 --- a/apps/common/main/lib/controller/Plugins.js +++ b/apps/common/main/lib/controller/Plugins.js @@ -39,7 +39,8 @@ define([ 'core', 'common/main/lib/collection/Plugins', - 'common/main/lib/view/Plugins' + 'common/main/lib/view/Plugins', + 'common/main/lib/view/PluginDlg' ], function () { 'use strict'; diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index 971da62bd..df54c82e2 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -760,10 +760,10 @@ define(function(){ 'use strict'; 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', + textInSlightly: 'In Slightly', + textInToScreenBottom: 'In To Screen Bottom', + textOutToScreenCenter: 'Out To Screen Center', textOutSlightly: 'Out Slightly', textToBottom: 'To Bottom', textToBottomLeft: 'To Bottom-Left', @@ -809,10 +809,10 @@ define(function(){ 'use strict'; {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_FLOAT_UP, iconCls: 'animation-entrance-float_in', displayValue: this.textFloatIn, familyEffect: 'entrfloat'}, {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.textShape, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_CIRCLE, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, {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}, @@ -835,15 +835,15 @@ define(function(){ 'use strict'; {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_FLOAT_DOWN, iconCls: 'animation-exit-float_out', displayValue: this.textFloatOut, familyEffect: 'exitfloat'}, {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.textShape, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_CIRCLE, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, {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_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.textLines, familyEffect: 'pathlines'}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion_paths-arcs', displayValue: this.textArcs, familyEffect: 'patharcs'}, @@ -896,8 +896,8 @@ define(function(){ 'use strict'; {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_FLOAT_DOWN, displayValue: this.textFloatDown, familyEffect: 'entrfloat'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_UP, displayValue: this.textFloatUp, familyEffect: 'entrfloat'}, {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}, @@ -954,8 +954,8 @@ define(function(){ 'use strict'; {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_FLOAT_DOWN, displayValue: this.textFloatDown, familyEffect: 'exitfloat'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_UP, displayValue: this.textFloatUp, familyEffect: 'exitfloat'}, {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}, {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SPINNER, displayValue: this.textSpinner}, @@ -1043,33 +1043,33 @@ define(function(){ 'use strict'; switch (type) { case AscFormat.ENTRANCE_BLINDS: return [ - {value: AscFormat.ENTRANCE_BLINDS_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.ENTRANCE_BLINDS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {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_IN, caption: this.textIn, defvalue: true}, {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_ACROSS, caption: this.textAcross, defvalue: true}, {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_IN, caption: this.textIn, defvalue: true}, {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_IN, caption: this.textIn, defvalue: true}, {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, caption: this.textFromBottom, defvalue: true}, {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}, @@ -1080,38 +1080,38 @@ define(function(){ 'use strict'; ]; case AscFormat.ENTRANCE_PEEK_IN_FROM: return [ - {value: AscFormat.ENTRANCE_PEEK_IN_FROM_BOTTOM, caption: this.textFromBottom}, + {value: AscFormat.ENTRANCE_PEEK_IN_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, {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_IN, caption: this.textIn, defvalue: true}, {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_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {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_IN, caption: this.textVerticalIn, defvalue: true}, {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_DOWN, caption: this.textLeftDown, defvalue: true}, {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_1_SPOKE, caption: this.textSpoke1, defvalue: true}, {value: AscFormat.ENTRANCE_WHEEL_2_SPOKES, caption: this.textSpoke2}, {value: AscFormat.ENTRANCE_WHEEL_3_SPOKES, caption: this.textSpoke3}, {value: AscFormat.ENTRANCE_WHEEL_4_SPOKES, caption: this.textSpoke4}, @@ -1119,19 +1119,19 @@ define(function(){ 'use strict'; ]; case AscFormat.ENTRANCE_WIPE_FROM: return [ - {value: AscFormat.ENTRANCE_WIPE_FROM_BOTTOM, caption: this.textFromBottom}, + {value: AscFormat.ENTRANCE_WIPE_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, {value: AscFormat.ENTRANCE_WIPE_FROM_LEFT, caption: this.textFromLeft}, {value: AscFormat.ENTRANCE_WIPE_FROM_RIGHT, caption: this.textFromRight}, {value: AscFormat.ENTRANCE_WIPE_FROM_TOP, caption: this.textFromTop} ]; case AscFormat.ENTRANCE_ZOOM: return [ - {value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter}, + {value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter, defvalue: true}, {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, caption: this.textIn, defvalue: true}, {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}, @@ -1140,7 +1140,7 @@ define(function(){ 'use strict'; ]; case AscFormat.ENTRANCE_STRETCH: return [ - {value: AscFormat.ENTRANCE_STRETCH_ACROSS, caption: this.textAcross}, + {value: AscFormat.ENTRANCE_STRETCH_ACROSS, caption: this.textAcross, defvalue: true}, {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}, @@ -1148,7 +1148,7 @@ define(function(){ 'use strict'; ]; case AscFormat.ENTRANCE_BASIC_SWIVEL: return [ - {value: AscFormat.ENTRANCE_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.ENTRANCE_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {value: AscFormat.ENTRANCE_BASIC_SWIVEL_VERTICAL, caption: this.textVertical} ]; default: @@ -1160,32 +1160,32 @@ define(function(){ 'use strict'; switch (type){ case AscFormat.EXIT_BLINDS: return [ - {value: AscFormat.EXIT_BLINDS_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.EXIT_BLINDS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {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} + {value: AscFormat.EXIT_BOX_OUT, caption: this.textOut, defvalue: true} ]; case AscFormat.EXIT_CHECKERBOARD: return [ - {value: AscFormat.EXIT_CHECKERBOARD_ACROSS, caption: this.textAcross}, + {value: AscFormat.EXIT_CHECKERBOARD_ACROSS, caption: this.textAcross, defvalue: true}, {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} + {value: AscFormat.EXIT_CIRCLE_OUT, caption: this.textOut, defvalue: true} ]; case AscFormat.EXIT_DIAMOND: return [ {value: AscFormat.EXIT_DIAMOND_IN, caption: this.textIn}, - {value: AscFormat.EXIT_DIAMOND_IN, caption: this.textOut} + {value: AscFormat.EXIT_DIAMOND_OUT, caption: this.textOut, defvalue: true} ]; case AscFormat.EXIT_FLY_OUT_TO: return [ - {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM, caption: this.textToBottom}, + {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM, caption: this.textToBottom, defvalue: true}, {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}, @@ -1196,7 +1196,7 @@ define(function(){ 'use strict'; ]; case AscFormat.EXIT_PEEK_OUT_TO: return [ - {value: AscFormat.EXIT_PEEK_OUT_TO_BOTTOM, caption: this.textToBottom}, + {value: AscFormat.EXIT_PEEK_OUT_TO_BOTTOM, caption: this.textToBottom, defvalue: true}, {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} @@ -1204,30 +1204,30 @@ define(function(){ 'use strict'; case AscFormat.EXIT_PLUS: return [ {value: AscFormat.EXIT_PLUS_IN, caption: this.textIn}, - {value: AscFormat.EXIT_PLUS_OUT, caption: this.textOut} + {value: AscFormat.EXIT_PLUS_OUT, caption: this.textOut, defvalue: true} ]; case AscFormat.EXIT_RANDOM_BARS: return [ - {value: AscFormat.EXIT_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.EXIT_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {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_IN, caption: this.textVerticalIn, defvalue: true}, {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_DOWN, caption: this.textLeftDown, defvalue: true}, {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_1_SPOKE, caption: this.textSpoke1, defvalue: true}, {value: AscFormat.EXIT_WHEEL_2_SPOKES, caption: this.textSpoke2}, {value: AscFormat.EXIT_WHEEL_3_SPOKES, caption: this.textSpoke3}, {value: AscFormat.EXIT_WHEEL_4_SPOKES, caption: this.textSpoke4}, @@ -1235,28 +1235,28 @@ define(function(){ 'use strict'; ]; case AscFormat.EXIT_WIPE_FROM: return [ - {value: AscFormat.EXIT_WIPE_FROM_BOTTOM, caption: this.textFromBottom}, + {value: AscFormat.EXIT_WIPE_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, {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} + {value: AscFormat.EXIT_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter, defvalue: true}, + {value: AscFormat.EXIT_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} ]; case AscFormat.EXIT_BASIC_ZOOM: return [ + {value: AscFormat.EXIT_BASIC_ZOOM_OUT, caption: this.textOut, defvalue: true}, + {value: AscFormat.EXIT_BASIC_ZOOM_OUT_TO_SCREEN_CENTER, caption: this.textOutToScreenCenter}, + {value: AscFormat.EXIT_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly}, {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} + {value: AscFormat.EXIT_BASIC_ZOOM_IN_TO_SCREEN_BOTTOM, caption: this.textInToScreenBottom}, + {value: AscFormat.EXIT_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly} ]; case AscFormat.EXIT_COLLAPSE: return [ - {value: AscFormat.EXIT_COLLAPSE_ACROSS, caption: this.textAcross}, + {value: AscFormat.EXIT_COLLAPSE_ACROSS, caption: this.textAcross, defvalue: true}, {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}, @@ -1264,7 +1264,7 @@ define(function(){ 'use strict'; ]; case AscFormat.EXIT_BASIC_SWIVEL: return [ - {value: AscFormat.EXIT_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal}, + {value: AscFormat.EXIT_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, {value: AscFormat.EXIT_BASIC_SWIVEL_VERTICAL, caption: this.textVertical} ]; default: @@ -1279,17 +1279,17 @@ define(function(){ 'use strict'; switch (familyEffect){ case 'shape': return [ - {value: AscFormat.EXIT_BOX, caption: this.textBox}, {value: AscFormat.EXIT_CIRCLE, caption: this.textCircle}, - {value: AscFormat.EXIT_PLUS, caption: this.textPlus}, - {value: AscFormat.EXIT_DIAMOND, caption: this.textDiamond} + {value: AscFormat.EXIT_BOX, caption: this.textBox}, + {value: AscFormat.EXIT_DIAMOND, caption: this.textDiamond}, + {value: AscFormat.EXIT_PLUS, caption: this.textPlus} ]; case 'entrshape': return [ - {value: AscFormat.ENTRANCE_BOX, caption: this.textBox}, {value: AscFormat.ENTRANCE_CIRCLE, caption: this.textCircle}, - {value: AscFormat.ENTRANCE_PLUS, caption: this.textPlus}, - {value: AscFormat.ENTRANCE_DIAMOND, caption: this.textDiamond} + {value: AscFormat.ENTRANCE_BOX, caption: this.textBox}, + {value: AscFormat.ENTRANCE_DIAMOND, caption: this.textDiamond}, + {value: AscFormat.ENTRANCE_PLUS, caption: this.textPlus} ]; case 'pathlines': return[ @@ -1332,6 +1332,16 @@ define(function(){ 'use strict'; {value: AscFormat.MOTION_VERTICAL_FIGURE_8, caption: this.textVerticalFigure}, {value: AscFormat.MOTION_LOOP_DE_LOOP, caption: this.textLoopDeLoop} ]; + case 'entrfloat': + return [ + {value: AscFormat.ENTRANCE_FLOAT_UP, caption: this.textFloatUp}, + {value: AscFormat.ENTRANCE_FLOAT_DOWN, caption: this.textFloatDown} + ]; + case 'exitfloat': + return [ + {value: AscFormat.EXIT_FLOAT_UP, caption: this.textFloatUp}, + {value: AscFormat.EXIT_FLOAT_DOWN, caption: this.textFloatDown} + ]; default: return []; } diff --git a/apps/common/main/lib/view/About.js b/apps/common/main/lib/view/About.js index e588215ae..04f3530eb 100644 --- a/apps/common/main/lib/view/About.js +++ b/apps/common/main/lib/view/About.js @@ -235,10 +235,10 @@ define([ this.lblCompanyLic.parents('tr').addClass('hidden'); value = Common.UI.Themes.isDarkTheme() ? (customer.logoDark || customer.logo) : (customer.logo || customer.logoDark); - value.length ? + value && value.length ? this.divCompanyLogo.html('') : this.divCompanyLogo.parents('tr').addClass('hidden'); - value.length && Common.NotificationCenter.on('uitheme:changed', this.changeLogo.bind(this)); + value && value.length && Common.NotificationCenter.on('uitheme:changed', this.changeLogo.bind(this)); } else { this.cntLicenseeInfo.addClass('hidden'); this.cntLicensorInfo.addClass('margin-bottom'); diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 79df1ab09..19de39c1f 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -104,9 +104,11 @@ define([ '' + '
' + '
' + - '' + + '
' + + '' + + '
' '
' + '' + ''; diff --git a/apps/common/main/lib/view/PluginDlg.js b/apps/common/main/lib/view/PluginDlg.js new file mode 100644 index 000000000..81a5e0ce5 --- /dev/null +++ b/apps/common/main/lib/view/PluginDlg.js @@ -0,0 +1,185 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2022 + * + * 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 + * +*/ +/** + * User: Julia.Radzhabova + * Date: 17.05.16 + * Time: 15:38 + */ + +if (Common === undefined) + var Common = {}; + +Common.Views = Common.Views || {}; + +define([ + 'common/main/lib/util/utils', + 'common/main/lib/component/BaseView', + 'common/main/lib/component/Layout', + 'common/main/lib/component/Window' +], function (template) { + 'use strict'; + + Common.Views.PluginDlg = Common.UI.Window.extend(_.extend({ + initialize : function(options) { + var _options = {}; + _.extend(_options, { + header: true, + enableKeyEvents: false + }, options); + + var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34; + if (!_options.header) header_footer -= 34; + this.bordersOffset = 40; + _options.width = (Common.Utils.innerWidth()-this.bordersOffset*2-_options.width)<0 ? Common.Utils.innerWidth()-this.bordersOffset*2: _options.width; + _options.height += header_footer; + _options.height = (Common.Utils.innerHeight()-this.bordersOffset*2-_options.height)<0 ? Common.Utils.innerHeight()-this.bordersOffset*2: _options.height; + _options.cls += ' advanced-settings-dlg'; + + this.template = [ + '
', + '
', + '
', + '<% if ((typeof buttons !== "undefined") && _.size(buttons) > 0) { %>', + '
', + '<% } %>' + ].join(''); + + _options.tpl = _.template(this.template)(_options); + + this.url = options.url || ''; + this.frameId = options.frameId || 'plugin_iframe'; + Common.UI.Window.prototype.initialize.call(this, _options); + }, + + render: function() { + Common.UI.Window.prototype.render.call(this); + this.$window.find('> .body').css({height: 'auto', overflow: 'hidden'}); + + this.boxEl = this.$window.find('.body > .box'); + this._headerFooterHeight = (this.options.buttons && _.size(this.options.buttons)>0) ? 85 : 34; + if (!this.options.header) this._headerFooterHeight -= 34; + this._headerFooterHeight += ((parseInt(this.$window.css('border-top-width')) + parseInt(this.$window.css('border-bottom-width')))); + + var iframe = document.createElement("iframe"); + iframe.id = this.frameId; + iframe.name = 'pluginFrameEditor'; + iframe.width = '100%'; + iframe.height = '100%'; + iframe.align = "top"; + iframe.frameBorder = 0; + iframe.scrolling = "no"; + iframe.allow = "camera; microphone; display-capture"; + iframe.onload = _.bind(this._onLoad,this); + + var me = this; + setTimeout(function(){ + if (me.isLoaded) return; + me.loadMask = new Common.UI.LoadMask({owner: $('#id-plugin-placeholder')}); + me.loadMask.setTitle(me.textLoading); + me.loadMask.show(); + if (me.isLoaded) me.loadMask.hide(); + }, 500); + + iframe.src = this.url; + $('#id-plugin-placeholder').append(iframe); + + this.on('resizing', function(args){ + me.boxEl.css('height', parseInt(me.$window.css('height')) - me._headerFooterHeight); + }); + + var onMainWindowResize = function(){ + me.onWindowResize(); + }; + $(window).on('resize', onMainWindowResize); + this.on('close', function() { + $(window).off('resize', onMainWindowResize); + }); + }, + + _onLoad: function() { + this.isLoaded = true; + if (this.loadMask) + this.loadMask.hide(); + }, + + setInnerSize: function(width, height) { + var maxHeight = Common.Utils.innerHeight(), + maxWidth = Common.Utils.innerWidth(), + borders_width = (parseInt(this.$window.css('border-left-width')) + parseInt(this.$window.css('border-right-width'))), + bordersOffset = this.bordersOffset*2; + if (maxHeight - bordersOffsetmain_height-bordersOffset) + this.$window.css('top', main_height-bordersOffset - win_height); + if (leftmain_width-bordersOffset) + this.$window.css('left', main_width-bordersOffset-win_width); + } else { + if (win_height>main_height-bordersOffset*2) { + this.setHeight(Math.max(main_height-bordersOffset*2, this.initConfig.minheight)); + this.boxEl.css('height', Math.max(main_height-bordersOffset*2, this.initConfig.minheight) - this._headerFooterHeight); + this.$window.css('top', bordersOffset); + } + if (win_width>main_width-bordersOffset*2) { + this.setWidth(Math.max(main_width-bordersOffset*2, this.initConfig.minwidth)); + this.$window.css('left', bordersOffset); + } + } + }, + + textLoading : 'Loading' + }, Common.Views.PluginDlg || {})); +}); \ No newline at end of file diff --git a/apps/common/main/lib/view/Plugins.js b/apps/common/main/lib/view/Plugins.js index 449bf4be3..75ed76e8b 100644 --- a/apps/common/main/lib/view/Plugins.js +++ b/apps/common/main/lib/view/Plugins.js @@ -429,138 +429,4 @@ define([ groupCaption: 'Plugins' }, Common.Views.Plugins || {})); - - Common.Views.PluginDlg = Common.UI.Window.extend(_.extend({ - initialize : function(options) { - var _options = {}; - _.extend(_options, { - header: true, - enableKeyEvents: false - }, options); - - var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34; - if (!_options.header) header_footer -= 34; - this.bordersOffset = 40; - _options.width = (Common.Utils.innerWidth()-this.bordersOffset*2-_options.width)<0 ? Common.Utils.innerWidth()-this.bordersOffset*2: _options.width; - _options.height += header_footer; - _options.height = (Common.Utils.innerHeight()-this.bordersOffset*2-_options.height)<0 ? Common.Utils.innerHeight()-this.bordersOffset*2: _options.height; - _options.cls += ' advanced-settings-dlg'; - - this.template = [ - '
', - '
', - '
', - '<% if ((typeof buttons !== "undefined") && _.size(buttons) > 0) { %>', - '
', - '<% } %>' - ].join(''); - - _options.tpl = _.template(this.template)(_options); - - this.url = options.url || ''; - this.frameId = options.frameId || 'plugin_iframe'; - Common.UI.Window.prototype.initialize.call(this, _options); - }, - - render: function() { - Common.UI.Window.prototype.render.call(this); - this.$window.find('> .body').css({height: 'auto', overflow: 'hidden'}); - - this.boxEl = this.$window.find('.body > .box'); - this._headerFooterHeight = (this.options.buttons && _.size(this.options.buttons)>0) ? 85 : 34; - if (!this.options.header) this._headerFooterHeight -= 34; - this._headerFooterHeight += ((parseInt(this.$window.css('border-top-width')) + parseInt(this.$window.css('border-bottom-width')))); - - var iframe = document.createElement("iframe"); - iframe.id = this.frameId; - iframe.name = 'pluginFrameEditor'; - iframe.width = '100%'; - iframe.height = '100%'; - iframe.align = "top"; - iframe.frameBorder = 0; - iframe.scrolling = "no"; - iframe.allow = "camera; microphone; display-capture"; - iframe.onload = _.bind(this._onLoad,this); - - var me = this; - setTimeout(function(){ - if (me.isLoaded) return; - me.loadMask = new Common.UI.LoadMask({owner: $('#id-plugin-placeholder')}); - me.loadMask.setTitle(me.textLoading); - me.loadMask.show(); - if (me.isLoaded) me.loadMask.hide(); - }, 500); - - iframe.src = this.url; - $('#id-plugin-placeholder').append(iframe); - - this.on('resizing', function(args){ - me.boxEl.css('height', parseInt(me.$window.css('height')) - me._headerFooterHeight); - }); - - var onMainWindowResize = function(){ - me.onWindowResize(); - }; - $(window).on('resize', onMainWindowResize); - this.on('close', function() { - $(window).off('resize', onMainWindowResize); - }); - }, - - _onLoad: function() { - this.isLoaded = true; - if (this.loadMask) - this.loadMask.hide(); - }, - - setInnerSize: function(width, height) { - var maxHeight = Common.Utils.innerHeight(), - maxWidth = Common.Utils.innerWidth(), - borders_width = (parseInt(this.$window.css('border-left-width')) + parseInt(this.$window.css('border-right-width'))), - bordersOffset = this.bordersOffset*2; - if (maxHeight - bordersOffsetmain_height-bordersOffset) - this.$window.css('top', main_height-bordersOffset - win_height); - if (leftmain_width-bordersOffset) - this.$window.css('left', main_width-bordersOffset-win_width); - } else { - if (win_height>main_height-bordersOffset*2) { - this.setHeight(Math.max(main_height-bordersOffset*2, this.initConfig.minheight)); - this.boxEl.css('height', Math.max(main_height-bordersOffset*2, this.initConfig.minheight) - this._headerFooterHeight); - this.$window.css('top', bordersOffset); - } - if (win_width>main_width-bordersOffset*2) { - this.setWidth(Math.max(main_width-bordersOffset*2, this.initConfig.minwidth)); - this.$window.css('left', bordersOffset); - } - } - }, - - textLoading : 'Loading' - }, Common.Views.PluginDlg || {})); }); \ No newline at end of file diff --git a/apps/common/main/resources/img/doc-formats/csv.svg b/apps/common/main/resources/img/doc-formats/csv.svg index 57371d726..41be9da1a 100644 --- a/apps/common/main/resources/img/doc-formats/csv.svg +++ b/apps/common/main/resources/img/doc-formats/csv.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/djvu.svg b/apps/common/main/resources/img/doc-formats/djvu.svg index 1b5927051..a318cff21 100644 --- a/apps/common/main/resources/img/doc-formats/djvu.svg +++ b/apps/common/main/resources/img/doc-formats/djvu.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/docm.svg b/apps/common/main/resources/img/doc-formats/docm.svg index 9fe4cdb4e..6a17105c9 100644 --- a/apps/common/main/resources/img/doc-formats/docm.svg +++ b/apps/common/main/resources/img/doc-formats/docm.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/docx.svg b/apps/common/main/resources/img/doc-formats/docx.svg index 00a06d1e6..12839165e 100644 --- a/apps/common/main/resources/img/doc-formats/docx.svg +++ b/apps/common/main/resources/img/doc-formats/docx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/docxf.svg b/apps/common/main/resources/img/doc-formats/docxf.svg index 248d8df47..c5b1846c3 100644 --- a/apps/common/main/resources/img/doc-formats/docxf.svg +++ b/apps/common/main/resources/img/doc-formats/docxf.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/dotx.svg b/apps/common/main/resources/img/doc-formats/dotx.svg index 06d5b8d8a..b13d8c92f 100644 --- a/apps/common/main/resources/img/doc-formats/dotx.svg +++ b/apps/common/main/resources/img/doc-formats/dotx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/epub.svg b/apps/common/main/resources/img/doc-formats/epub.svg index 8532668f3..ef7ed8564 100644 --- a/apps/common/main/resources/img/doc-formats/epub.svg +++ b/apps/common/main/resources/img/doc-formats/epub.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/fb2.svg b/apps/common/main/resources/img/doc-formats/fb2.svg index fcfb1fee2..fc2472911 100644 --- a/apps/common/main/resources/img/doc-formats/fb2.svg +++ b/apps/common/main/resources/img/doc-formats/fb2.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/html.svg b/apps/common/main/resources/img/doc-formats/html.svg index 71757a0b1..212e63e09 100644 --- a/apps/common/main/resources/img/doc-formats/html.svg +++ b/apps/common/main/resources/img/doc-formats/html.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/jpg.svg b/apps/common/main/resources/img/doc-formats/jpg.svg index b04feaf76..68d4c826e 100644 --- a/apps/common/main/resources/img/doc-formats/jpg.svg +++ b/apps/common/main/resources/img/doc-formats/jpg.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/odp.svg b/apps/common/main/resources/img/doc-formats/odp.svg index f48451ef4..3fc77de30 100644 --- a/apps/common/main/resources/img/doc-formats/odp.svg +++ b/apps/common/main/resources/img/doc-formats/odp.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ods.svg b/apps/common/main/resources/img/doc-formats/ods.svg index 597c63b92..0356d3255 100644 --- a/apps/common/main/resources/img/doc-formats/ods.svg +++ b/apps/common/main/resources/img/doc-formats/ods.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/odt.svg b/apps/common/main/resources/img/doc-formats/odt.svg index d0a46d62c..c2122c0a4 100644 --- a/apps/common/main/resources/img/doc-formats/odt.svg +++ b/apps/common/main/resources/img/doc-formats/odt.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/oform.svg b/apps/common/main/resources/img/doc-formats/oform.svg index 9e2067a69..80dba56e1 100644 --- a/apps/common/main/resources/img/doc-formats/oform.svg +++ b/apps/common/main/resources/img/doc-formats/oform.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/otp.svg b/apps/common/main/resources/img/doc-formats/otp.svg index 70162b9a6..70dcbc974 100644 --- a/apps/common/main/resources/img/doc-formats/otp.svg +++ b/apps/common/main/resources/img/doc-formats/otp.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ots.svg b/apps/common/main/resources/img/doc-formats/ots.svg index b2c78e26a..96aef7046 100644 --- a/apps/common/main/resources/img/doc-formats/ots.svg +++ b/apps/common/main/resources/img/doc-formats/ots.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ott.svg b/apps/common/main/resources/img/doc-formats/ott.svg index 12d1ef7de..b2a7e1a43 100644 --- a/apps/common/main/resources/img/doc-formats/ott.svg +++ b/apps/common/main/resources/img/doc-formats/ott.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/oxps.svg b/apps/common/main/resources/img/doc-formats/oxps.svg index cdab1aab9..58d22cca5 100644 --- a/apps/common/main/resources/img/doc-formats/oxps.svg +++ b/apps/common/main/resources/img/doc-formats/oxps.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pdf.svg b/apps/common/main/resources/img/doc-formats/pdf.svg index dcc75cd88..8c9a6ed5a 100644 --- a/apps/common/main/resources/img/doc-formats/pdf.svg +++ b/apps/common/main/resources/img/doc-formats/pdf.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pdfa.svg b/apps/common/main/resources/img/doc-formats/pdfa.svg index 6ab7465d3..ef9a17b4e 100644 --- a/apps/common/main/resources/img/doc-formats/pdfa.svg +++ b/apps/common/main/resources/img/doc-formats/pdfa.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/png.svg b/apps/common/main/resources/img/doc-formats/png.svg index 58aef71e3..59d7edf61 100644 --- a/apps/common/main/resources/img/doc-formats/png.svg +++ b/apps/common/main/resources/img/doc-formats/png.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/potx.svg b/apps/common/main/resources/img/doc-formats/potx.svg index bd44a8cef..150957769 100644 --- a/apps/common/main/resources/img/doc-formats/potx.svg +++ b/apps/common/main/resources/img/doc-formats/potx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ppsx.svg b/apps/common/main/resources/img/doc-formats/ppsx.svg index 044ffa5d8..37ab966b2 100644 --- a/apps/common/main/resources/img/doc-formats/ppsx.svg +++ b/apps/common/main/resources/img/doc-formats/ppsx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pptm.svg b/apps/common/main/resources/img/doc-formats/pptm.svg index ead96f9dd..7c15a6807 100644 --- a/apps/common/main/resources/img/doc-formats/pptm.svg +++ b/apps/common/main/resources/img/doc-formats/pptm.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pptx.svg b/apps/common/main/resources/img/doc-formats/pptx.svg index 00f235aaf..51a385103 100644 --- a/apps/common/main/resources/img/doc-formats/pptx.svg +++ b/apps/common/main/resources/img/doc-formats/pptx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/rtf.svg b/apps/common/main/resources/img/doc-formats/rtf.svg index 5ac84e796..1b613a81d 100644 --- a/apps/common/main/resources/img/doc-formats/rtf.svg +++ b/apps/common/main/resources/img/doc-formats/rtf.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/txt.svg b/apps/common/main/resources/img/doc-formats/txt.svg index b9b0e9626..bed12e3f8 100644 --- a/apps/common/main/resources/img/doc-formats/txt.svg +++ b/apps/common/main/resources/img/doc-formats/txt.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xlsm.svg b/apps/common/main/resources/img/doc-formats/xlsm.svg index 5a9c956f9..347be30e4 100644 --- a/apps/common/main/resources/img/doc-formats/xlsm.svg +++ b/apps/common/main/resources/img/doc-formats/xlsm.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xlsx.svg b/apps/common/main/resources/img/doc-formats/xlsx.svg index e00d4f373..277d27536 100644 --- a/apps/common/main/resources/img/doc-formats/xlsx.svg +++ b/apps/common/main/resources/img/doc-formats/xlsx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xltx.svg b/apps/common/main/resources/img/doc-formats/xltx.svg index a52ef8e23..f676c3772 100644 --- a/apps/common/main/resources/img/doc-formats/xltx.svg +++ b/apps/common/main/resources/img/doc-formats/xltx.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xps.svg b/apps/common/main/resources/img/doc-formats/xps.svg index cbebe0aa2..97a062128 100644 --- a/apps/common/main/resources/img/doc-formats/xps.svg +++ b/apps/common/main/resources/img/doc-formats/xps.svg @@ -1,4 +1,4 @@ - + diff --git a/apps/common/main/resources/less/language-dialog.less b/apps/common/main/resources/less/language-dialog.less index 1acb2ad15..900d4d73e 100644 --- a/apps/common/main/resources/less/language-dialog.less +++ b/apps/common/main/resources/less/language-dialog.less @@ -79,7 +79,7 @@ li { &.lv, &.lv-LV {background-position: -32px -72px;} &.lt, &.lt-LT {background-position: 0 -84px;} &.vi, &.vi-VN {background-position: -16px -84px;} - &.de-CH, &.fr-CH {background-position: -32px -84px;} + &.de-CH, &.fr-CH , &.it-CH {background-position: -32px -84px;} &.pt-PT {background-position: -16px -96px;} &.de-AT {background-position: -32px -96px;} &.es, &.es-ES {background-position: 0 -108px;} diff --git a/apps/common/main/resources/less/winxp_fix.less b/apps/common/main/resources/less/winxp_fix.less index 25e061195..9b319bf6a 100644 --- a/apps/common/main/resources/less/winxp_fix.less +++ b/apps/common/main/resources/less/winxp_fix.less @@ -1,6 +1,19 @@ .winxp { - .toolbar .tabs>ul, - .toolbar .extra .btn-slot,#box-document-title .btn-slot { - height:28px; + @toolbar-editor-height: 28px; + @toolbar-viewer-height: 32px; + .toolbar { + .tabs > ul, .extra .btn-slot { + height: @toolbar-editor-height; } + + &.toolbar-view { + .tabs > ul, .extra .btn-slot { + height: @toolbar-viewer-height; + } + } + } + + #box-document-title .btn-slot { + height: @toolbar-editor-height; + } } \ No newline at end of file diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index 5f5509cb0..94cce47c8 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -163,6 +163,8 @@ class ContextMenuController extends Component { } onApiShowForeignCursorLabel(UserId, X, Y, color) { + if (!this.isUserVisible(UserId)) return; + /** coauthoring begin **/ const tipHeight = 20; @@ -173,21 +175,30 @@ class ContextMenuController extends Component { break; } } + if (!src) { src = $$(`
`); src.attr('userid', UserId); src.css({'background-color': '#'+Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b())}); src.text(this.getUserName(UserId)); - $$('#id_main_parent').append(src); this.fastCoAuthTips.push(src); //src.fadeIn(150); src[0].classList.add('active'); - $$('#id_main_view').append(src); + $$("#editor_sdk").append(src); } - src.css({ - top: (Y - tipHeight) + 'px', - left: X + 'px'}); + + if ( X + src.outerWidth() > $$(window).width() ) { + src.css({ + top: (Y - tipHeight) + 'px', + left: X - src.outerWidth() + 'px'}); + } else { + src.css({ + left: X + 'px', + top: (Y - tipHeight) + 'px', + }); + } + /** coauthoring end **/ } diff --git a/apps/common/mobile/lib/store/users.js b/apps/common/mobile/lib/store/users.js index b13152b94..b8d37ed4b 100644 --- a/apps/common/mobile/lib/store/users.js +++ b/apps/common/mobile/lib/store/users.js @@ -44,7 +44,7 @@ export class storeUsers { } } } - !changed && change && (this.users[change.asc_getId()] = change); + !changed && change && (this.users.push(change)); } resetDisconnected (isDisconnected) { diff --git a/apps/common/mobile/resources/img/about/logo-white_s.svg b/apps/common/mobile/resources/img/about/logo-white_s.svg new file mode 100644 index 000000000..ae110aed0 --- /dev/null +++ b/apps/common/mobile/resources/img/about/logo-white_s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/common/mobile/resources/img/about/logo_s.svg b/apps/common/mobile/resources/img/about/logo_s.svg new file mode 100644 index 000000000..04df9911d --- /dev/null +++ b/apps/common/mobile/resources/img/about/logo_s.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/common/mobile/resources/less/about.less b/apps/common/mobile/resources/less/about.less index 8299cd565..6b71c1c41 100644 --- a/apps/common/mobile/resources/less/about.less +++ b/apps/common/mobile/resources/less/about.less @@ -1,5 +1,5 @@ // @text-normal: #000; -// @common-image-about-path - defined in webpack config +// @common-image-path - defined in webpack config .about { .page-content { @@ -49,18 +49,18 @@ display: inline-block; width: 100%; height: 55px; - background: ~"url(@{common-image-about-path}/logo_s.svg) no-repeat center"; + background: ~"url(@{common-image-path}/about/logo_s.svg) no-repeat center"; } .theme-type-dark { .about .logo { - background: ~"url(@{common-image-about-path}/logo-white_s.svg) no-repeat center"; + background: ~"url(@{common-image-path}/about/logo-white_s.svg) no-repeat center"; } } } .theme-type-dark { .about .logo { - background: ~"url(@{common-image-about-path}/logo-white_s.svg) no-repeat center"; + background: ~"url(@{common-image-path}/about/logo-white_s.svg) no-repeat center"; } } \ No newline at end of file diff --git a/apps/common/mobile/resources/less/comments.less b/apps/common/mobile/resources/less/comments.less index dfee37a7c..fb2945ff8 100644 --- a/apps/common/mobile/resources/less/comments.less +++ b/apps/common/mobile/resources/less/comments.less @@ -242,6 +242,9 @@ .actions-modal.modal-in { z-index: 13700; + .actions-group::after { + background-color: @background-menu-divider; + } } .actions-backdrop.backdrop-in { diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index 222cb5458..045dca11d 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -46,6 +46,10 @@ --f7-picker-item-text-color: rgba(var(--text-normal), 0.45); --f7-picker-item-selected-text-color: @text-normal; + --f7-input-bg-color: @background-primary; + --f7-input-placeholder-color: @text-secondary; + --f7-input-text-color: @text-normal; + .button { --f7-touch-ripple-color: transparent; } @@ -86,7 +90,6 @@ --f7-list-item-text-text-color: @text-normal; --f7-list-item-subtitle-text-color: @text-secondary; --f7-block-title-text-color: @text-secondary; - --f7-input-placeholder-color: @text-secondary; --f7-label-text-color: @text-normal; --f7-page-bg-color: @background-tertiary; --f7-list-bg-color: @background-primary; @@ -95,7 +98,6 @@ --f7-toggle-inactive-color: @background-menu-divider; --f7-toggle-border-color: @background-menu-divider; --f7-actions-button-text-color: @text-normal; - --f7-input-text-color: @text-normal; --f7-subnavbar-border-color: @background-menu-divider; --f7-list-border-color: @background-menu-divider; } @@ -607,6 +609,7 @@ .inputs-list { margin: 15px 0 0; ul { + background: none; &::before, &::after { display: none; } diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 7746f5945..6669e9cbf 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -555,7 +555,7 @@ input[type="number"]::-webkit-inner-spin-button { .icon.lang-flag { background-size: 48px auto; - background-image: url(../img/controls/flags@2x.png); + background-image: ~'url(@{common-image-path}/controls/flags@2x.png)'; } .icon.lang-flag { @@ -653,7 +653,9 @@ input[type="number"]::-webkit-inner-spin-button { .lang-flag.vi-VN { background-position: -16px -84px; } -.lang-flag.de-CH { +.lang-flag.de-CH, +.lang-flag.fr-CH, +.lang-flag.it-CH { background-position: -32px -84px; } .lang-flag.pt-PT { diff --git a/apps/common/mobile/resources/less/ios/icons.less b/apps/common/mobile/resources/less/ios/icons.less index 0456b303c..ae34c3505 100644 --- a/apps/common/mobile/resources/less/ios/icons.less +++ b/apps/common/mobile/resources/less/ios/icons.less @@ -1,10 +1,10 @@ -// @common-image-header-path - defined in webpack config +// @common-image-path - defined in webpack config .device-ios { .theme-type-dark { i.icon { &.icon-logo { - background: ~"url(@{common-image-header-path}/logo-android.svg)" no-repeat center; + background: ~"url(@{common-image-path}/header/logo-android.svg)" no-repeat center; } } } @@ -15,7 +15,7 @@ &.icon-logo { width: 100px; height: 14px; - background: ~"url(@{common-image-header-path}/logo-ios.svg)" no-repeat center; + background: ~"url(@{common-image-path}/header/logo-ios.svg)" no-repeat center; } &.icon-prev { width: 22px; diff --git a/apps/common/mobile/resources/less/material/icons.less b/apps/common/mobile/resources/less/material/icons.less index 6768ae033..2a34e8c73 100644 --- a/apps/common/mobile/resources/less/material/icons.less +++ b/apps/common/mobile/resources/less/material/icons.less @@ -1,4 +1,4 @@ -// @common-image-header-path - defined in webpack config +// @common-image-path - defined in webpack config .device-android { i.icon { @@ -8,7 +8,7 @@ &.icon-logo { width: 100px; height: 14px; - background: ~"url(@{common-image-header-path}/logo-android.svg) no-repeat center"; + background: ~"url(@{common-image-path}/header/logo-android.svg) no-repeat center"; } &.icon-prev { width: 20px; diff --git a/apps/documenteditor/embed/locale/be.json b/apps/documenteditor/embed/locale/be.json index bbf138fda..2ff4487d9 100644 --- a/apps/documenteditor/embed/locale/be.json +++ b/apps/documenteditor/embed/locale/be.json @@ -15,6 +15,9 @@ "DE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "DE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", "DE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", + "DE.ApplicationController.errorLoadingFont": "Шрыфты не загрузіліся.
Звярніцеся да адміністратара сервера дакументаў.", + "DE.ApplicationController.errorSubmit": "Не атрымалася адправіць.", + "DE.ApplicationController.errorTokenExpire": "Тэрмін дзеяння токена бяспекі дакумента сышоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "DE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", "DE.ApplicationController.notcriticalErrorTitle": "Увага", @@ -22,10 +25,13 @@ "DE.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", "DE.ApplicationController.textAnonymous": "Ананімны карыстальнік", "DE.ApplicationController.textClear": "Ачысціць усе палі", + "DE.ApplicationController.textGotIt": "Добра", "DE.ApplicationController.textGuest": "Госць", "DE.ApplicationController.textLoadingDocument": "Загрузка дакумента", + "DE.ApplicationController.textNext": "Наступнае поле", "DE.ApplicationController.textOf": "з", "DE.ApplicationController.textRequired": "Запоўніце ўсе абавязковыя палі, патрэбныя для адпраўлення формы. ", + "DE.ApplicationController.textSubmit": "Адправіць", "DE.ApplicationController.textSubmited": "Форма паспяхова адпраўленая
Пстрыкніце, каб закрыць падказку", "DE.ApplicationController.txtClose": "Закрыць", "DE.ApplicationController.txtEmpty": "(Пуста)", diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json index 925a664fd..e091a1c5e 100644 --- a/apps/documenteditor/embed/locale/es.json +++ b/apps/documenteditor/embed/locale/es.json @@ -1,50 +1,50 @@ { "common.view.modals.txtCopy": "Copiar al portapapeles", - "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtEmbed": "Insertar", "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", "DE.ApplicationController.convertationErrorText": "Fallo de conversión.", - "DE.ApplicationController.convertationTimeoutText": "Se superó el tiempo de espera de conversión.", + "DE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "DE.ApplicationController.criticalErrorTitle": "Error", - "DE.ApplicationController.downloadErrorText": "Error en la descarga", + "DE.ApplicationController.downloadErrorText": "Se ha producido un error en la descarga", "DE.ApplicationController.downloadTextText": "Descargando documento...", - "DE.ApplicationController.errorAccessDeny": "Está tratando de realizar una acción para la cual no tiene permiso.
Por favor, contacte con su Administrador del Servidor de Documentos.", + "DE.ApplicationController.errorAccessDeny": "Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del servidor de documentos.", "DE.ApplicationController.errorDefaultMessage": "Código de error: %1", - "DE.ApplicationController.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su ordenador.", - "DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", - "DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede el límite establecido para su servidor. Por favor póngase en contacto con el administrador del Servidor de Documentos para obtener más información.", - "DE.ApplicationController.errorForceSave": "Ha ocurrido un error al guardar el archivo. Por favor, use la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", - "DE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", + "DE.ApplicationController.errorEditingDownloadas": "Se ha producido un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad del archivo en el disco duro de su ordenador.", + "DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no se puede abrir.", + "DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo supera el límiete establecido por su servidor.
Contacte con el administrador del servidor de documentos para obtener más detalles.", + "DE.ApplicationController.errorForceSave": "Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo más tarde.", + "DE.ApplicationController.errorLoadingFont": "Los tipos de letra no están cargados.
Contacte con el administrador del servidor de documentos.", "DE.ApplicationController.errorSubmit": "Error al enviar.", - "DE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página.", - "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.", - "DE.ApplicationController.notcriticalErrorTitle": "Aviso", + "DE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Contacte con el administrador del servidor de documentos", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.", + "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo.", + "DE.ApplicationController.notcriticalErrorTitle": "Advertencia", "DE.ApplicationController.openErrorText": "Se ha producido un error al abrir el archivo. ", - "DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, recargue la página.", + "DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Recargue la página.", "DE.ApplicationController.textAnonymous": "Anónimo", "DE.ApplicationController.textClear": "Borrar todos los campos", - "DE.ApplicationController.textGotIt": "Entiendo", + "DE.ApplicationController.textGotIt": "Entendido", "DE.ApplicationController.textGuest": "Invitado", "DE.ApplicationController.textLoadingDocument": "Cargando documento", "DE.ApplicationController.textNext": "Campo siguiente", "DE.ApplicationController.textOf": "de", "DE.ApplicationController.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.", "DE.ApplicationController.textSubmit": "Enviar", - "DE.ApplicationController.textSubmited": "Formulario enviado con éxito
Haga clic para cerrar el consejo", + "DE.ApplicationController.textSubmited": "Formulario enviado con éxito.
Haga clic para cerrar el consejo", "DE.ApplicationController.txtClose": "Cerrar", "DE.ApplicationController.txtEmpty": "(Vacío)", "DE.ApplicationController.txtPressLink": "Pulse CTRL y haga clic en el enlace", "DE.ApplicationController.unknownErrorText": "Error desconocido.", "DE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", - "DE.ApplicationController.waitText": "Por favor, espere...", + "DE.ApplicationController.waitText": "Espere...", "DE.ApplicationView.txtDownload": "Descargar", "DE.ApplicationView.txtDownloadDocx": "Descargar como docx", "DE.ApplicationView.txtDownloadPdf": "Descargar como pdf", - "DE.ApplicationView.txtEmbed": "Incorporar", + "DE.ApplicationView.txtEmbed": "Insertar", "DE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", - "DE.ApplicationView.txtFullScreen": "Pantalla Completa", + "DE.ApplicationView.txtFullScreen": "Pantalla completa", "DE.ApplicationView.txtPrint": "Imprimir", "DE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/documenteditor/forms/app.js b/apps/documenteditor/forms/app.js index 6ac4557d2..5535a30bf 100644 --- a/apps/documenteditor/forms/app.js +++ b/apps/documenteditor/forms/app.js @@ -139,7 +139,8 @@ require([ nameSpace: 'DE', autoCreate: false, controllers : [ - 'ApplicationController' + 'ApplicationController', + 'Plugins' ] }); @@ -147,10 +148,12 @@ require([ function() { require([ 'documenteditor/forms/app/controller/ApplicationController', + 'documenteditor/forms/app/controller/Plugins', 'documenteditor/forms/app/view/ApplicationView', 'common/main/lib/util/utils', 'common/main/lib/util/LocalStorage', 'common/main/lib/controller/Themes', + 'common/main/lib/view/PluginDlg', 'common/forms/lib/view/modals' ], function() { app.start(); diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 0a4788bd0..45947fc43 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -104,6 +104,8 @@ define([ 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)); + this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onApiServerDisconnect, this)); + Common.NotificationCenter.on('api:disconnect', _.bind(this.onApiServerDisconnect, this)); // Initialize api gateway Common.Gateway.on('init', this.loadConfig.bind(this)); @@ -414,6 +416,8 @@ define([ this.appOptions.saveAsUrl = this.editorConfig.saveAsUrl; this.appOptions.canRequestSaveAs = this.editorConfig.canRequestSaveAs; this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop'; + this.appOptions.lang = this.editorConfig.lang; + this.appOptions.canPlugins = false; }, onExternalMessage: function(msg) { @@ -564,6 +568,8 @@ define([ AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); + DE.getController('Plugins').setMode(this.appOptions, this.api); + var me = this; me.view.btnSubmit.setVisible(this.appOptions.canFillForms && this.appOptions.canSubmitForms); me.view.btnDownload.setVisible(this.appOptions.canDownload && this.appOptions.canFillForms && !this.appOptions.canSubmitForms); @@ -674,7 +680,7 @@ define([ } if (this._state.licenseType!==Asc.c_oLicenseResult.SuccessLimit && this.appOptions.canFillForms) { - this.disableEditing(true); + Common.NotificationCenter.trigger('api:disconnect'); } var value = Common.localStorage.getItem("de-license-warning"); @@ -1339,6 +1345,7 @@ define([ Common.NotificationCenter.on('storage:image-load', _.bind(this.openImageFromStorage, this)); // try to load image from storage Common.NotificationCenter.on('storage:image-insert', _.bind(this.insertImageFromStorage, this)); // set loaded image to control } + DE.getController('Plugins').setApi(this.api); this.updateWindowTitle(true); @@ -1806,9 +1813,21 @@ define([ } }, - disableEditing: function(state) { - this.view && this.view.btnClear && this.view.btnClear.setDisabled(state); - this._isDisabled = state; + onApiServerDisconnect: function(enableDownload) { + this._state.isDisconnected = true; + this._isDisabled = true; + this.view && this.view.btnClear && this.view.btnClear.setDisabled(true); + if (!enableDownload) { + this.appOptions.canPrint = this.appOptions.canDownload = false; + this.view && this.view.btnDownload.setDisabled(true); + this.view && this.view.btnSubmit.setDisabled(true); + if (this.view && this.view.btnOptions && this.view.btnOptions.menu) { + this.view.btnOptions.menu.items[0].setDisabled(true); // print + this.view.btnOptions.menu.items[2].setDisabled(true); // download + this.view.btnOptions.menu.items[3].setDisabled(true); // download docx + this.view.btnOptions.menu.items[4].setDisabled(true); // download pdf + } + } }, errorDefaultMessage : 'Error code: %1', diff --git a/apps/documenteditor/forms/app/controller/Plugins.js b/apps/documenteditor/forms/app/controller/Plugins.js new file mode 100644 index 000000000..4e3fbdbe9 --- /dev/null +++ b/apps/documenteditor/forms/app/controller/Plugins.js @@ -0,0 +1,457 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2022 + * + * 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 + * +*/ +/** + * User: Julia.Radzhabova + * Date: 22.02.2022 + */ + +define([ + 'core', + 'common/main/lib/collection/Plugins', + 'common/main/lib/view/PluginDlg' +], function () { + 'use strict'; + + DE.Controllers.Plugins = Backbone.Controller.extend(_.extend({ + models: [], + appOptions: {}, + configPlugins: {autostart:[]},// {config: 'from editor config', plugins: 'loaded plugins', autostart: 'autostart guids'} + serverPlugins: {autostart:[]},// {config: 'from editor config', plugins: 'loaded plugins', autostart: 'autostart guids'} + collections: [ + 'Common.Collections.Plugins' + ], + initialize: function() { + }, + + events: function() { + }, + + onLaunch: function() { + this._moveOffset = {x:0, y:0}; + this.autostart = []; + + Common.Gateway.on('init', this.loadConfig.bind(this)); + }, + + loadConfig: function(data) { + var me = this; + me.configPlugins.config = data.config.plugins; + me.editor = 'word'; + }, + + loadPlugins: function() { + if (this.configPlugins.config) { + this.getPlugins(this.configPlugins.config.pluginsData) + .then(function(loaded) + { + me.configPlugins.plugins = loaded; + me.mergePlugins(); + }) + .catch(function(err) + { + me.configPlugins.plugins = false; + }); + } else + this.configPlugins.plugins = false; + + var server_plugins_url = '../../../../plugins.json', + me = this; + Common.Utils.loadConfig(server_plugins_url, function (obj) { + if ( obj != 'error' ) { + me.serverPlugins.config = obj; + me.getPlugins(me.serverPlugins.config.pluginsData) + .then(function(loaded) + { + me.serverPlugins.plugins = loaded; + me.mergePlugins(); + }) + .catch(function(err) + { + me.serverPlugins.plugins = false; + }); + } else + me.serverPlugins.plugins = false; + }); + }, + + setApi: function(api) { + this.api = api; + + if (!this.appOptions.customization || (this.appOptions.customization.plugins!==false)) { + this.api.asc_registerCallback("asc_onPluginShow", _.bind(this.onPluginShow, this)); + this.api.asc_registerCallback("asc_onPluginClose", _.bind(this.onPluginClose, this)); + this.api.asc_registerCallback("asc_onPluginResize", _.bind(this.onPluginResize, this)); + this.api.asc_registerCallback("asc_onPluginMouseUp", _.bind(this.onPluginMouseUp, this)); + this.api.asc_registerCallback("asc_onPluginMouseMove", _.bind(this.onPluginMouseMove, this)); + this.api.asc_registerCallback('asc_onPluginsReset', _.bind(this.resetPluginsList, this)); + this.api.asc_registerCallback('asc_onPluginsInit', _.bind(this.onPluginsInit, this)); + + this.loadPlugins(); + } + return this; + }, + + setMode: function(mode, api) { + this.appOptions = mode; + this.api = api; + return this; + }, + + refreshPluginsList: function() { + var me = this; + var storePlugins = this.getApplication().getCollection('Common.Collections.Plugins'), + arr = []; + storePlugins.each(function(item){ + var plugin = new Asc.CPlugin(); + plugin.deserialize(item.attributes); + + var variations = item.get('variations'), + variationsArr = []; + variations.forEach(function(itemVar){ + var variation = new Asc.CPluginVariation(); + variation.deserialize(itemVar.attributes); + variationsArr.push(variation); + }); + + plugin.set_Variations(variationsArr); + item.set('pluginObj', plugin); + arr.push(plugin); + }); + this.api.asc_pluginsRegister('', arr); + Common.Gateway.pluginsReady(); + }, + + onPluginShow: function(plugin, variationIndex, frameId, urlAddition) { + var variation = plugin.get_Variations()[variationIndex]; + if (variation.get_Visual()) { + var url = variation.get_Url(); + url = ((plugin.get_BaseUrl().length == 0) ? url : plugin.get_BaseUrl()) + url; + if (urlAddition) + url += urlAddition; + var me = this, + isCustomWindow = variation.get_CustomWindow(), + arrBtns = variation.get_Buttons(), + newBtns = [], + size = variation.get_Size(), + isModal = variation.get_Modal(); + if (!size || size.length<2) size = [800, 600]; + + if (_.isArray(arrBtns)) { + _.each(arrBtns, function(b, index){ + if (b.visible) + newBtns[index] = {caption: b.text, value: index, primary: b.primary}; + }); + } + + var help = variation.get_Help(); + me.pluginDlg = new Common.Views.PluginDlg({ + cls: isCustomWindow ? 'plain' : '', + header: !isCustomWindow, + title: plugin.get_Name(), + width: size[0], // inner width + height: size[1], // inner height + url: url, + frameId : frameId, + buttons: isCustomWindow ? undefined : newBtns, + toolcallback: _.bind(this.onToolClose, this), + help: !!help, + modal: isModal!==undefined ? isModal : true + }); + me.pluginDlg.on({ + 'render:after': function(obj){ + obj.getChild('.footer .dlg-btn').on('click', _.bind(me.onDlgBtnClick, me)); + me.pluginContainer = me.pluginDlg.$window.find('#id-plugin-container'); + }, + 'close': function(obj){ + me.pluginDlg = undefined; + }, + 'drag': function(args){ + me.api.asc_pluginEnableMouseEvents(args[1]=='start'); + }, + 'resize': function(args){ + me.api.asc_pluginEnableMouseEvents(args[1]=='start'); + }, + 'help': function(){ + help && window.open(help, '_blank'); + } + }); + + me.pluginDlg.show(); + } + }, + + onPluginClose: function(plugin) { + if (this.pluginDlg) + this.pluginDlg.close(); + this.runAutoStartPlugins(); + }, + + onPluginResize: function(size, minSize, maxSize, callback ) { + if (this.pluginDlg) { + var resizable = (minSize && minSize.length>1 && maxSize && maxSize.length>1 && (maxSize[0] > minSize[0] || maxSize[1] > minSize[1] || maxSize[0]==0 || maxSize[1] == 0)); + this.pluginDlg.setResizable(resizable, minSize, maxSize); + this.pluginDlg.setInnerSize(size[0], size[1]); + if (callback) + callback.call(); + } + }, + + onDlgBtnClick: function(event) { + var state = event.currentTarget.attributes['result'].value; + this.api.asc_pluginButtonClick(parseInt(state)); + }, + + onToolClose: function() { + this.api.asc_pluginButtonClick(-1); + }, + + onPluginMouseUp: function(x, y) { + if (this.pluginDlg) { + if (this.pluginDlg.binding.dragStop) this.pluginDlg.binding.dragStop(); + if (this.pluginDlg.binding.resizeStop) this.pluginDlg.binding.resizeStop(); + } + }, + + onPluginMouseMove: function(x, y) { + if (this.pluginDlg) { + var offset = this.pluginContainer.offset(); + if (this.pluginDlg.binding.drag) this.pluginDlg.binding.drag({ pageX: x*Common.Utils.zoom()+offset.left, pageY: y*Common.Utils.zoom()+offset.top }); + if (this.pluginDlg.binding.resize) this.pluginDlg.binding.resize({ pageX: x*Common.Utils.zoom()+offset.left, pageY: y*Common.Utils.zoom()+offset.top }); + } + }, + + onPluginsInit: function(pluginsdata) { + !(pluginsdata instanceof Array) && (pluginsdata = pluginsdata["pluginsData"]); + this.parsePlugins(pluginsdata) + }, + + runAutoStartPlugins: function() { + if (this.autostart && this.autostart.length > 0) { + this.api.asc_pluginRun(this.autostart.shift(), 0, ''); + } + }, + + resetPluginsList: function() { + this.getApplication().getCollection('Common.Collections.Plugins').reset(); + }, + + parsePlugins: function(pluginsdata) { + var me = this; + var pluginStore = this.getApplication().getCollection('Common.Collections.Plugins'), + isEdit = false, + editor = me.editor, + apiVersion = me.api ? me.api.GetVersion() : undefined; + if ( pluginsdata instanceof Array ) { + var arr = [], + lang = me.appOptions.lang.split(/[\-_]/)[0]; + pluginsdata.forEach(function(item){ + if ( arr.some(function(i) { + return (i.get('baseUrl') == item.baseUrl || i.get('guid') == item.guid); + } + ) || pluginStore.findWhere({baseUrl: item.baseUrl}) || pluginStore.findWhere({guid: item.guid})) + { + return; + } + + var variationsArr = [], + pluginVisible = false; + item.variations.forEach(function(itemVar){ + var visible = (isEdit || itemVar.isViewer && (itemVar.isDisplayedInViewer!==false)) && _.contains(itemVar.EditorsSupport, editor) && !itemVar.isSystem; + if ( visible ) pluginVisible = true; + + if (!item.isUICustomizer ) { + var model = new Common.Models.PluginVariation(itemVar); + var description = itemVar.description; + if (typeof itemVar.descriptionLocale == 'object') + description = itemVar.descriptionLocale[lang] || itemVar.descriptionLocale['en'] || description || ''; + + _.each(itemVar.buttons, function(b, index){ + if (typeof b.textLocale == 'object') + b.text = b.textLocale[lang] || b.textLocale['en'] || b.text || ''; + b.visible = (isEdit || b.isViewer !== false); + }); + + model.set({ + description: description, + index: variationsArr.length, + url: itemVar.url, + icons: itemVar.icons2 || itemVar.icons, + buttons: itemVar.buttons, + visible: visible, + help: itemVar.help + }); + + variationsArr.push(model); + } + }); + + if (variationsArr.length > 0 && !item.isUICustomizer) { + var name = item.name; + if (typeof item.nameLocale == 'object') + name = item.nameLocale[lang] || item.nameLocale['en'] || name || ''; + + if (pluginVisible) + pluginVisible = me.checkPluginVersion(apiVersion, item.minVersion); + + arr.push(new Common.Models.Plugin({ + name : name, + guid: item.guid, + baseUrl : item.baseUrl, + variations: variationsArr, + currentVariation: 0, + visible: pluginVisible, + groupName: (item.group) ? item.group.name : '', + groupRank: (item.group) ? item.group.rank : 0, + minVersion: item.minVersion + })); + } + }); + + if (pluginStore) + { + arr = pluginStore.models.concat(arr); + arr.sort(function(a, b){ + var rank_a = a.get('groupRank'), + rank_b = b.get('groupRank'); + if (rank_a < rank_b) + return (rank_a==0) ? 1 : -1; + if (rank_a > rank_b) + return (rank_b==0) ? -1 : 1; + return 0; + }); + pluginStore.reset(arr); + this.appOptions.canPlugins = !pluginStore.isEmpty(); + } + } + else { + this.appOptions.canPlugins = false; + } + + if (this.appOptions.canPlugins) { + this.refreshPluginsList(); + this.runAutoStartPlugins(); + } + }, + + checkPluginVersion: function(apiVersion, pluginVersion) { + if (apiVersion && apiVersion!=='develop' && pluginVersion && typeof pluginVersion == 'string') { + var res = pluginVersion.match(/^([0-9]+)(?:.([0-9]+))?(?:.([0-9]+))?$/), + apires = apiVersion.match(/^([0-9]+)(?:.([0-9]+))?(?:.([0-9]+))?$/); + if (res && res.length>1 && apires && apires.length>1) { + for (var i=0; i<3; i++) { + var pluginVer = res[i+1] ? parseInt(res[i+1]) : 0, + apiVer = apires[i+1] ? parseInt(apires[i+1]) : 0; + if (pluginVer>apiVer) + return false; + if (pluginVer0) + arr = plugins.plugins; + if (plugins && plugins.config) { + var val = plugins.config.autostart || plugins.config.autoStartGuid; + if (typeof (val) == 'string') + val = [val]; + warn = !!plugins.config.autoStartGuid; + autostart = val || []; + } + + plugins = this.serverPlugins; + if (plugins.plugins && plugins.plugins.length>0) + arr = arr.concat(plugins.plugins); + if (plugins && plugins.config) { + val = plugins.config.autostart || plugins.config.autoStartGuid; + if (typeof (val) == 'string') + val = [val]; + (warn || plugins.config.autoStartGuid) && console.warn("Obsolete: The autoStartGuid parameter is deprecated. Please check the documentation for new plugin connection configuration."); + autostart = autostart.concat(val || []); + } + + this.autostart = autostart; + this.parsePlugins(arr); + } + } + + }, DE.Controllers.Plugins || {})); +}); diff --git a/apps/documenteditor/forms/app_dev.js b/apps/documenteditor/forms/app_dev.js index 33aa736fc..d9800d9c6 100644 --- a/apps/documenteditor/forms/app_dev.js +++ b/apps/documenteditor/forms/app_dev.js @@ -129,7 +129,8 @@ require([ nameSpace: 'DE', autoCreate: false, controllers : [ - 'ApplicationController' + 'ApplicationController', + 'Plugins' ] }); @@ -137,10 +138,12 @@ require([ function() { require([ 'documenteditor/forms/app/controller/ApplicationController', + 'documenteditor/forms/app/controller/Plugins', 'documenteditor/forms/app/view/ApplicationView', 'common/main/lib/util/utils', 'common/main/lib/util/LocalStorage', 'common/main/lib/controller/Themes', + 'common/main/lib/view/PluginDlg', 'common/forms/lib/view/modals' ], function() { window.compareVersions = true; diff --git a/apps/documenteditor/forms/locale/cs.json b/apps/documenteditor/forms/locale/cs.json index 45054ea8c..c45e2c933 100644 --- a/apps/documenteditor/forms/locale/cs.json +++ b/apps/documenteditor/forms/locale/cs.json @@ -123,6 +123,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Uložit jako PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Uložit jako...", "DE.Controllers.ApplicationController.textSubmited": "Formulář úspěšně uložen.
Klikněte pro zavření nápovědy.", + "DE.Controllers.ApplicationController.titleLicenseExp": "Platnost licence vypršela", "DE.Controllers.ApplicationController.titleServerVersion": "Editor byl aktualizován", "DE.Controllers.ApplicationController.titleUpdateVersion": "Verze změněna", "DE.Controllers.ApplicationController.txtArt": "Zde napište text", @@ -139,6 +140,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.", "DE.Controllers.ApplicationController.waitText": "Čekejte prosím…", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Došlo k dosažení limitu počtu souběžných spojení %1 editorů. Dokument bude otevřen pouze pro náhled.
Pro více podrobností kontaktujte svého správce.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Platnost vaší licence vypršela.
Prosím, aktualizujte vaší licenci a obnovte stránku.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Platnost vaší licence skončila.
Nemáte přístup k upravování dokumentů.
Obraťte se na svého správce.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Vaši licenci je nutné obnovit.
Přístup k možnostem editace dokumentu je omezen.
Pro získání plného přístupu prosím kontaktujte svého administrátora.", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", @@ -147,12 +149,15 @@ "DE.Views.ApplicationView.textClear": "Vymazat všechna pole", "DE.Views.ApplicationView.textCopy": "Kopírovat", "DE.Views.ApplicationView.textCut": "Vyjmout", + "DE.Views.ApplicationView.textFitToPage": "Přízpůsobit stránce", + "DE.Views.ApplicationView.textFitToWidth": "Přizpůsobit šířce", "DE.Views.ApplicationView.textNext": "Následující pole", "DE.Views.ApplicationView.textPaste": "Vložit", "DE.Views.ApplicationView.textPrintSel": "Vytisknout vybrané", "DE.Views.ApplicationView.textRedo": "Znovu", "DE.Views.ApplicationView.textSubmit": "Potvrdit", "DE.Views.ApplicationView.textUndo": "Zpět", + "DE.Views.ApplicationView.textZoom": "Přiblížení", "DE.Views.ApplicationView.txtDarkMode": "Tmavý režim", "DE.Views.ApplicationView.txtDownload": "Stáhnout", "DE.Views.ApplicationView.txtDownloadDocx": "Stáhnout jako docx", @@ -162,5 +167,5 @@ "DE.Views.ApplicationView.txtFullScreen": "Na celou obrazovku", "DE.Views.ApplicationView.txtPrint": "Tisk", "DE.Views.ApplicationView.txtShare": "Sdílet", - "DE.Views.ApplicationView.txtTheme": "Vzhled uživatelského rozhraní" + "DE.Views.ApplicationView.txtTheme": "Vzhled prostředí" } \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index bbb6a0caa..f528e131e 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -61,6 +61,9 @@ define([ if (!me._navigationObject) me._navigationObject = obj; me.updateNavigation(); + } else { + if (me.panelNavigation && me.panelNavigation.viewNavigationList && me.panelNavigation.viewNavigationList.scroller) + me.panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); } }, 'hide': function() { @@ -293,6 +296,8 @@ define([ arr[0].set('tip', this.txtGotoBeginning); } this.getApplication().getCollection('Navigation').reset(arr); + if (this.panelNavigation && this.panelNavigation.viewNavigationList && this.panelNavigation.viewNavigationList.scroller) + this.panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); } }, diff --git a/apps/documenteditor/main/app/controller/PageThumbnails.js b/apps/documenteditor/main/app/controller/PageThumbnails.js index f8702d131..91736f5e2 100644 --- a/apps/documenteditor/main/app/controller/PageThumbnails.js +++ b/apps/documenteditor/main/app/controller/PageThumbnails.js @@ -57,8 +57,8 @@ define([ this.addListeners({ 'PageThumbnails': { 'show': _.bind(function () { + this.api.asc_viewerThumbnailsResize(); if (this.firstShow) { - this.api.asc_viewerThumbnailsResize(); this.api.asc_setViewerThumbnailsUsePageRect(Common.localStorage.getBool("de-thumbnails-highlight", true)); this.firstShow = false; } diff --git a/apps/documenteditor/main/app/controller/ViewTab.js b/apps/documenteditor/main/app/controller/ViewTab.js index 0e544b79b..6558e36aa 100644 --- a/apps/documenteditor/main/app/controller/ViewTab.js +++ b/apps/documenteditor/main/app/controller/ViewTab.js @@ -246,8 +246,10 @@ define([ if (this.view) { var current_theme = Common.UI.Themes.currentThemeId() || Common.UI.Themes.defaultThemeId(), menu_item = _.findWhere(this.view.btnInterfaceTheme.menu.items, {value: current_theme}); - this.view.btnInterfaceTheme.menu.clearAll(); - menu_item.setChecked(true, true); + if ( menu_item ) { + this.view.btnInterfaceTheme.menu.clearAll(); + menu_item.setChecked(true, true); + } this.view.btnDarkDocument.setDisabled(!Common.UI.Themes.isDarkTheme()); } }, diff --git a/apps/documenteditor/main/app/view/ControlSettingsDialog.js b/apps/documenteditor/main/app/view/ControlSettingsDialog.js index 46f42eb2d..f8c10561a 100644 --- a/apps/documenteditor/main/app/view/ControlSettingsDialog.js +++ b/apps/documenteditor/main/app/view/ControlSettingsDialog.js @@ -205,7 +205,7 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template', // date picker var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/documenteditor/main/app/view/DateTimeDialog.js b/apps/documenteditor/main/app/view/DateTimeDialog.js index 931ad20a2..80253793d 100644 --- a/apps/documenteditor/main/app/view/DateTimeDialog.js +++ b/apps/documenteditor/main/app/view/DateTimeDialog.js @@ -89,7 +89,7 @@ define([ Common.UI.Window.prototype.render.call(this); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index f85484e2c..cdeeed126 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -2120,7 +2120,7 @@ define([ menuViewCut.setDisabled(disabled || !cancopy); menuViewPaste.setVisible(me._fillFormwMode && canEditControl); menuViewPaste.setDisabled(disabled); - menuViewPrint.setVisible(me.mode.canPrint); + menuViewPrint.setVisible(me.mode.canPrint && !me._fillFormwMode); menuViewPrint.setDisabled(!cancopy); }, diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index fc1762dad..2af5d2f4f 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -1274,26 +1274,15 @@ define([ this._state.imgPositionY = 50; } this.imagePositionLabel.text(Math.round(this._state.imgPositionX) + ',' + Math.round(this._state.imgPositionY)); - - if (this._sendUndoPoint) { - this.api.setStartPointHistory(); - this._sendUndoPoint = false; - this.updateslider = setInterval(_.bind(this.imgPositionApplyFunc, this, type), 100); - } }, onImagePositionChangeComplete: function (type, field, newValue, oldValue) { - clearInterval(this.updateslider); if (type === 'x') { this._state.imgPositionX = newValue; } else { this._state.imgPositionY = newValue; } - if (!this._sendUndoPoint) { // start point was added - this.api.setEndPointHistory(); - this.imgPositionApplyFunc(type); - } - this._sendUndoPoint = true; + this.imgPositionApplyFunc(type); }, imgPositionApplyFunc: function (type) { diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js index b832fc750..8f7a7031d 100644 --- a/apps/documenteditor/main/app/view/ShapeSettings.js +++ b/apps/documenteditor/main/app/view/ShapeSettings.js @@ -129,7 +129,7 @@ define([ this.txtKnit, this.txtLeather, this.txtBrownPaper, this.txtPapyrus, this.txtWood]; this.fillControls = []; - this.gradientColorsStr=""; + this.gradientColorsStr="#000, #fff"; this.typeGradient = 90 ; this.render(); }, @@ -468,9 +468,13 @@ define([ rawData = record; } - this.typeGradient = rawData.type + 90; - - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -1223,13 +1227,13 @@ define([ btnDirectionRedraw: function(slider, gradientColorsStr) { this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); @@ -1397,9 +1401,12 @@ define([ { type:270, subtype:3}, { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { type:2, subtype:5} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1424,8 +1431,8 @@ define([ allowScrollbar: false, store: new Common.UI.DataViewStore(me._viewDataLinear), itemTemplate: _.template('
') + +'<% if(type!=2) {%>linear-gradient(<%= type + 90 %>deg,<%= gradientColorsStr %>)' + +' <%} else {%> radial-gradient(<%= gradientColorsStr %>) <%}%>;">') }); }); this.btnDirection.render($('#shape-button-direction')); diff --git a/apps/documenteditor/main/app/view/TextArtSettings.js b/apps/documenteditor/main/app/view/TextArtSettings.js index 5f8128e0a..a6a66bea6 100644 --- a/apps/documenteditor/main/app/view/TextArtSettings.js +++ b/apps/documenteditor/main/app/view/TextArtSettings.js @@ -108,6 +108,8 @@ define([ this.BorderSize = 0; this.BorderType = Asc.c_oDashType.solid; + this.gradientColorsStr="#000, #fff"; + this.typeGradient = 90 ; DE.getCollection('Common.Collections.TextArt').bind({ reset: this.fillTextArt.bind(this) }); @@ -278,10 +280,9 @@ define([ this.mnuDirectionPicker.restoreHeight = 174; var record = this.mnuDirectionPicker.store.findWhere({type: this.GradLinearDirectionType}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + + this.typeGradient = (record) ? this.GradLinearDirectionType + 90 : -1; + this.numGradientAngle.setValue(this.GradLinearDirectionType, true); this.numGradientAngle.setDisabled(this._locked); } else if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_PATH) { @@ -290,9 +291,9 @@ define([ this.mnuDirectionPicker.restoreHeight = 58; this.mnuDirectionPicker.selectByIndex(this.GradRadialDirectionIdx, true); if (this.GradRadialDirectionIdx>=0) - this.btnDirection.setIconCls('item-gradient ' + this._viewDataRadial[this.GradRadialDirectionIdx].iconcls); + this.typeGradient = this._viewDataRadial[this.GradRadialDirectionIdx].type; else - this.btnDirection.setIconCls(''); + this.typeGradient= -1; this.numGradientAngle.setValue(0, true); this.numGradientAngle.setDisabled(true); } @@ -332,8 +333,14 @@ define([ rawData = record; } - this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + //this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -612,7 +619,7 @@ define([ this.onGradTypeSelect(this.cmbGradType, rec.attributes); } else { this.cmbGradType.setValue(''); - this.btnDirection.setIconCls(''); + this.typeGradient = -1; } this._state.GradFillType = this.GradFillType; } @@ -623,10 +630,7 @@ define([ this.GradLinearDirectionType=value; var record = this.mnuDirectionPicker.store.findWhere({type: value}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record)? value + 90 : -1; this.numGradientAngle.setValue(value, true); } } else @@ -659,10 +663,17 @@ define([ me.GradColor.values[index] = position; } }); + + var arrGrCollors=[]; + var scale=(this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR)?1:0.7; for (var index=0; index= this.GradColor.colors.length) { me.GradColor.currentIdx = 0; } @@ -830,6 +841,26 @@ define([ } }, + btnDirectionRedraw: function(slider, gradientColorsStr) { + this.gradientColorsStr = gradientColorsStr; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); + + if (this.typeGradient == -1) + this.btnDirection.$icon.css({'background': 'none'}); + else if (this.typeGradient == 2) + this.btnDirection.$icon.css({'background': ('radial-gradient(' + gradientColorsStr + ')')}); + else + this.btnDirection.$icon.css({ + 'background': ('linear-gradient(' + this.typeGradient + 'deg, ' + gradientColorsStr + ')') + }); + }, + createDelayedControls: function() { var me = this; @@ -904,18 +935,21 @@ define([ this.lockedControls.push(this.cmbGradType); this._viewDataLinear = [ - { offsetx: 0, offsety: 0, type:45, subtype:-1, iconcls:'gradient-left-top' }, - { offsetx: 50, offsety: 0, type:90, subtype:4, iconcls:'gradient-top'}, - { offsetx: 100, offsety: 0, type:135, subtype:5, iconcls:'gradient-right-top'}, - { offsetx: 0, offsety: 50, type:0, subtype:6, iconcls:'gradient-left', cls: 'item-gradient-separator', selected: true}, - { offsetx: 100, offsety: 50, type:180, subtype:1, iconcls:'gradient-right'}, - { offsetx: 0, offsety: 100, type:315, subtype:2, iconcls:'gradient-left-bottom'}, - { offsetx: 50, offsety: 100, type:270, subtype:3, iconcls:'gradient-bottom'}, - { offsetx: 100, offsety: 100, type:225, subtype:7, iconcls:'gradient-right-bottom'} + { type:45, subtype:-1}, + { type:90, subtype:4}, + { type:135, subtype:5}, + { type:0, subtype:6, cls: 'item-gradient-separator', selected: true}, + { type:180, subtype:1}, + { type:315, subtype:2}, + { type:270, subtype:3}, + { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { offsetx: 100, offsety: 150, type:2, subtype:5, iconcls:'gradient-radial-center'} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -938,7 +972,9 @@ define([ parentMenu: btn.menu, restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); }); this.btnDirection.render($('#textart-button-direction')); diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index eba9b2179..01b681768 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -35,7 +35,7 @@ "Common.Controllers.ReviewChanges.textIndentRight": "Водступ справа", "Common.Controllers.ReviewChanges.textInserted": "Устаўлена:", "Common.Controllers.ReviewChanges.textItalic": "Курсіў", - "Common.Controllers.ReviewChanges.textJustify": "Па шырыні", + "Common.Controllers.ReviewChanges.textJustify": "Выраўнованне па шырыні", "Common.Controllers.ReviewChanges.textKeepLines": "Не падзяляць абзац", "Common.Controllers.ReviewChanges.textKeepNext": "Не адасобліваць ад наступнага", "Common.Controllers.ReviewChanges.textLeft": "Выраўнаваць па леваму краю", @@ -79,16 +79,25 @@ "Common.Controllers.ReviewChanges.textUrl": "Устаўце URL-адрас дакумента", "Common.Controllers.ReviewChanges.textWidow": "Кіраванне акном", "Common.define.chartData.textArea": "Вобласць", + "Common.define.chartData.textAreaStackedPer": "100% з абласцямі і зводкай", "Common.define.chartData.textBar": "Лінія", "Common.define.chartData.textBarNormal3d": "Трохвымерная гістаграма з групаваннем", "Common.define.chartData.textBarNormal3dPerspective": "Трохвымерная гістаграма", "Common.define.chartData.textBarStacked3d": "Трохвымерная састаўная гістаграма", + "Common.define.chartData.textBarStackedPer": "100% слупкі са зводкай", "Common.define.chartData.textBarStackedPer3d": "Трохвымерная састаўная гістаграма 100%", "Common.define.chartData.textCharts": "Дыяграмы", "Common.define.chartData.textColumn": "Гістаграма", "Common.define.chartData.textHBarNormal3d": "Трохвымерная лінейная з групаваннем", + "Common.define.chartData.textHBarStacked3d": "3-D лініі са зводкай", + "Common.define.chartData.textHBarStackedPer": "100% лініі са зводкай", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% лініі са зводкай", "Common.define.chartData.textLine": "Графік", + "Common.define.chartData.textLine3d": "3-D лініі", + "Common.define.chartData.textLineStackedPer": "100% лініі са зводкай", + "Common.define.chartData.textLineStackedPerMarker": "100% лініі са зводкай і адзнакамі", "Common.define.chartData.textPie": "Па крузе", + "Common.define.chartData.textPie3d": "3-D круг", "Common.define.chartData.textPoint": "XY (рассеяная)", "Common.define.chartData.textStock": "Біржа", "Common.define.chartData.textSurface": "Паверхня", @@ -178,6 +187,8 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Спісы з адзнакамі", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Выдаліць", + "Common.Views.AutoCorrectDialog.textFLCells": "Першыя словы ў ячэйках табліцы з вялікай літары", + "Common.Views.AutoCorrectDialog.textFLSentence": "Сказы з вялікай літары", "Common.Views.AutoCorrectDialog.textHyphens": "Злучкі (--) на працяжнік (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Аўтазамена матэматычнымі сімваламі", "Common.Views.AutoCorrectDialog.textNumbered": "Нумараваныя спісы", @@ -197,6 +208,8 @@ "Common.Views.AutoCorrectDialog.warnReset": "Любая дададзеная вамі аўтазамена будзе выдаленая, а значэнні вернуцца да прадвызначаных. Хочаце працягнуць?", "Common.Views.AutoCorrectDialog.warnRestore": "Аўтазамена для %1 скінутая да прадвызначанага значэння. Хочаце працягнуць?", "Common.Views.Chat.textSend": "Адправіць", + "Common.Views.Comments.mniAuthorAsc": "Аўтары ад А да Я", + "Common.Views.Comments.mniAuthorDesc": "Аўтары ад Я да А", "Common.Views.Comments.textAdd": "Дадаць", "Common.Views.Comments.textAddComment": "Дадаць каментар", "Common.Views.Comments.textAddCommentToDoc": "Дадаць каментар да дакумента", @@ -339,7 +352,8 @@ "Common.Views.ReviewChanges.txtFinalCap": "Выніковы дакумент", "Common.Views.ReviewChanges.txtHistory": "Гісторыя версій", "Common.Views.ReviewChanges.txtMarkup": "Усе змены {0}", - "Common.Views.ReviewChanges.txtMarkupCap": "Змены", + "Common.Views.ReviewChanges.txtMarkupCap": "Разметка і зноскі", + "Common.Views.ReviewChanges.txtMarkupSimple": "Усе змены {0}
Зноскі адключаныя", "Common.Views.ReviewChanges.txtNext": "Далей", "Common.Views.ReviewChanges.txtOriginal": "Усе змены адкінутыя {0}", "Common.Views.ReviewChanges.txtOriginalCap": "Зыходны дакумент", @@ -489,6 +503,7 @@ "DE.Controllers.Main.errorUsersExceed": "Перасягнута колькасць карыстальнікаў, дазволеных згодна тарыфу", "DE.Controllers.Main.errorViewerDisconnect": "Злучэнне страчана. Вы зможаце праглядаць дакумент,
але не зможаце спампаваць альбо надрукаваць яго да аднаўлення злучэння і перазагрузкі старонкі.", "DE.Controllers.Main.leavePageText": "У дакуменце ёсць незахаваныя змены. Пстрыкніце \"Застацца на гэтай старонцы\", пасля \"Захаваць\". Націсніце \"Пакінуць старонку\", каб адкінуць змены.", + "DE.Controllers.Main.leavePageTextOnClose": "Усе незахаваныя змены ў гэтым дакуменце страцяцца.
Націсніце \"Скасаваць\" і \"Захаваць\", каб захаваць іх. Націсніце \"Добра\", каб адкінуць незахаваныя змены.", "DE.Controllers.Main.loadFontsTextText": "Загрузка даных…", "DE.Controllers.Main.loadFontsTitleText": "Загрузка даных", "DE.Controllers.Main.loadFontTextText": "Загрузка даных…", @@ -561,9 +576,9 @@ "DE.Controllers.Main.txtEvenPage": "Цотная старонка", "DE.Controllers.Main.txtFiguredArrows": "Фігурныя стрэлкі", "DE.Controllers.Main.txtFirstPage": "Першая старонка", - "DE.Controllers.Main.txtFooter": "Ніжні калантытул", + "DE.Controllers.Main.txtFooter": "Ніжні калонтытул", "DE.Controllers.Main.txtFormulaNotInTable": "Формула не ў табліцы", - "DE.Controllers.Main.txtHeader": "Верхні калантытул", + "DE.Controllers.Main.txtHeader": "Верхні калонтытул", "DE.Controllers.Main.txtHyperlink": "Гіперспасылка", "DE.Controllers.Main.txtIndTooLarge": "Індэкс занадта вялікі", "DE.Controllers.Main.txtLines": "Лініі", @@ -789,7 +804,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "Перасягнуты максімальны памер дакумента.", "DE.Controllers.Main.uploadImageExtMessage": "Невядомы фармат выявы.", "DE.Controllers.Main.uploadImageFileCountMessage": "Выяў не запампавана.", - "DE.Controllers.Main.uploadImageSizeMessage": "Перасягнуты максімальны памер выявы", + "DE.Controllers.Main.uploadImageSizeMessage": "Занадта вялікая выява. Максімальны памер - 25 МБ.", "DE.Controllers.Main.uploadImageTextText": "Запампоўванне выявы…", "DE.Controllers.Main.uploadImageTitleText": "Запампоўванне выявы", "DE.Controllers.Main.waitText": "Калі ласка, пачакайце...", @@ -805,6 +820,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Вам адмоўлена ў правах на рэдагаванне гэтага файла.", "DE.Controllers.Navigation.txtBeginning": "Пачатак дакумента", "DE.Controllers.Navigation.txtGotoBeginning": "Перайсці да пачатку дакумента", + "DE.Controllers.Statusbar.textDisconnect": "Злучэнне страчана
Выконваецца спроба падлучэння. Праверце налады.", "DE.Controllers.Statusbar.textHasChanges": "Адсочаны новыя змены", "DE.Controllers.Statusbar.textTrackChanges": "Дакумент адкрыты з уключаным рэжымам адсочвання зменаў.", "DE.Controllers.Statusbar.tipReview": "Адсочваць змены", @@ -828,6 +844,7 @@ "DE.Controllers.Toolbar.textScript": "Індэксы", "DE.Controllers.Toolbar.textSymbols": "Сімвалы", "DE.Controllers.Toolbar.textWarning": "Увага", + "DE.Controllers.Toolbar.tipMarkersArrow": "Маркеры-стрэлкі", "DE.Controllers.Toolbar.txtAccent_Accent": "Націск", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрэлка ўправа-ўлева зверху", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрэлка ўлева зверху", @@ -1202,7 +1219,7 @@ "DE.Views.ChartSettings.textUndock": "Адмацаваць ад панэлі", "DE.Views.ChartSettings.textWidth": "Шырыня", "DE.Views.ChartSettings.textWrap": "Стыль абцякання", - "DE.Views.ChartSettings.txtBehind": "За", + "DE.Views.ChartSettings.txtBehind": "За тэкстам", "DE.Views.ChartSettings.txtInFront": "Перад тэкстам", "DE.Views.ChartSettings.txtInline": "У тэксце", "DE.Views.ChartSettings.txtSquare": "Вакол", @@ -1316,8 +1333,8 @@ "DE.Views.DocumentHolder.directHText": "Гарызантальна", "DE.Views.DocumentHolder.directionText": "Напрамак тэксту", "DE.Views.DocumentHolder.editChartText": "Рэдагаваць даныя", - "DE.Views.DocumentHolder.editFooterText": "Рэдагаваць ніжні калантытул", - "DE.Views.DocumentHolder.editHeaderText": "Рэдагаваць верхні калантытул", + "DE.Views.DocumentHolder.editFooterText": "Рэдагаваць ніжні калонтытул", + "DE.Views.DocumentHolder.editHeaderText": "Рэдагаваць верхні калонтытул", "DE.Views.DocumentHolder.editHyperlinkText": "Рэдагаваць гіперспасылку", "DE.Views.DocumentHolder.guestText": "Госць", "DE.Views.DocumentHolder.hyperlinkText": "Гіперспасылка", @@ -1421,6 +1438,7 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Абнавіць змест", "DE.Views.DocumentHolder.textWrap": "Стыль абцякання", "DE.Views.DocumentHolder.tipIsLocked": "Гэты элемент рэдагуецца іншым карыстальнікам.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрэлкі", "DE.Views.DocumentHolder.toDictionaryText": "Дадаць у слоўнік", "DE.Views.DocumentHolder.txtAddBottom": "Дадаць ніжнюю мяжу", "DE.Views.DocumentHolder.txtAddFractionBar": "Дадаць рыску дробу", @@ -1432,7 +1450,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Дадаць верхнюю мяжу", "DE.Views.DocumentHolder.txtAddVer": "Дадаць вертыкальную лінію", "DE.Views.DocumentHolder.txtAlignToChar": "Выраўноўванне па сімвале", - "DE.Views.DocumentHolder.txtBehind": "За", + "DE.Views.DocumentHolder.txtBehind": "За тэкстам", "DE.Views.DocumentHolder.txtBorderProps": "Уласцівасці межаў", "DE.Views.DocumentHolder.txtBottom": "Знізу", "DE.Views.DocumentHolder.txtColumnAlign": "Выраўноўванне слупка", @@ -1576,6 +1594,7 @@ "DE.Views.FileMenu.btnSettingsCaption": "Дадатковыя налады…", "DE.Views.FileMenu.btnToEditCaption": "Рэдагаваць дакумент", "DE.Views.FileMenu.textDownload": "Спампаваць", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Пусты дакумент", "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Стварыць новы", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Ужыць", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Дадаць аўтара", @@ -1622,7 +1641,7 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Перш чым убачыць змены іх патрэбна ухваліць", "DE.Views.FileMenuPanels.Settings.strFast": "Хуткі", "DE.Views.FileMenuPanels.Settings.strFontRender": "Хінтынг шрыфтоў", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Заўсёды захоўваць на серверы (інакш захоўваць на серверы падчас закрыцця дакумента)", + "DE.Views.FileMenuPanels.Settings.strForcesave": " Дадаваць версію ў сховішча пасля націскання кнопкі \"Захаваць\" або \"Ctrl+S\"", "DE.Views.FileMenuPanels.Settings.strInputMode": "Уключыць іерогліфы", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Уключыць адлюстраванне каментароў у тэксце", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Налады макрасаў", @@ -1643,7 +1662,7 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "Аўтазахаванне", "DE.Views.FileMenuPanels.Settings.textCompatible": "Сумяшчальнасць", "DE.Views.FileMenuPanels.Settings.textDisabled": "Выключана", - "DE.Views.FileMenuPanels.Settings.textForceSave": "Захаваць на серверы", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Захаванне прамежкавых версій", "DE.Views.FileMenuPanels.Settings.textMinute": "Кожную хвіліну", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Зрабіць файлы сумяшчальнымі са старымі версіямі MS Word пры захаванні як DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Праглядзець усе", @@ -1669,6 +1688,7 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Паказваць апавяшчэнне", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Адключыць усе макрасы з апавяшчэннем", "DE.Views.FileMenuPanels.Settings.txtWin": "як Windows", + "DE.Views.FormSettings.textAlways": "Заўсёды", "DE.Views.FormSettings.textAspect": "Захоўваць прапорцыі", "DE.Views.FormSettings.textAutofit": "Аўтазапаўненне", "DE.Views.FormSettings.textBackgroundColor": "Колер фону", @@ -1683,9 +1703,12 @@ "DE.Views.FormSettings.textPlaceholder": "Запаўняльнік", "DE.Views.FormSettings.textRequired": "Патрабуецца", "DE.Views.FormSettings.textSelectImage": "Абраць выяву", + "DE.Views.FormSettings.textTipAdd": "Дадаць новае значэнне", "DE.Views.FormSettings.textTipDown": "Перамясціць уніз", "DE.Views.FormSettings.textTipUp": "Перамясціць уверх", + "DE.Views.FormSettings.textWidth": "Шырыня ячэйкі", "DE.Views.FormsTab.capBtnComboBox": "Поле са спісам", + "DE.Views.FormsTab.textCreateForm": "Дадайце палі і стварыце запаўняльны дакумент OFORM", "DE.Views.FormsTab.textNoHighlight": "Без падсвятлення", "DE.Views.FormsTab.tipImageField": "Уставіць выяву", "DE.Views.FormsTab.txtUntitled": "Без назвы", @@ -1696,8 +1719,8 @@ "DE.Views.HeaderFooterSettings.textDiffFirst": "Асобны для першай старонкі", "DE.Views.HeaderFooterSettings.textDiffOdd": "Асобныя для цотных і няцотных", "DE.Views.HeaderFooterSettings.textFrom": "Пачаць з", - "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Ніжні калантытул", - "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Верхні калантытул", + "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Ніжні калонтытул", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Верхні калонтытул", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Уставіць на бягучай пазіцыі", "DE.Views.HeaderFooterSettings.textOptions": "Параметры", "DE.Views.HeaderFooterSettings.textPageNum": "Уставіць нумар старонкі", @@ -1745,7 +1768,7 @@ "DE.Views.ImageSettings.textSize": "Памер", "DE.Views.ImageSettings.textWidth": "Шырыня", "DE.Views.ImageSettings.textWrap": "Стыль абцякання", - "DE.Views.ImageSettings.txtBehind": "За", + "DE.Views.ImageSettings.txtBehind": "За тэкстам", "DE.Views.ImageSettings.txtInFront": "Перад тэкстам", "DE.Views.ImageSettings.txtInline": "У тэксце", "DE.Views.ImageSettings.txtSquare": "Вакол", @@ -1820,7 +1843,7 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Лініі і стрэлкі", "DE.Views.ImageSettingsAdvanced.textWidth": "Шырыня", "DE.Views.ImageSettingsAdvanced.textWrap": "Стыль абцякання", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "За", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "За тэкстам", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Перад тэкстам", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "У тэксце", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Вакол", @@ -1853,7 +1876,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Аўта", "DE.Views.Links.capBtnBookmarks": "Закладка", "DE.Views.Links.capBtnCaption": "Назва", - "DE.Views.Links.capBtnContentsUpdate": "Абнавіць", + "DE.Views.Links.capBtnContentsUpdate": "Абнавіць табліцу", "DE.Views.Links.capBtnCrossRef": "Перакрыжаваная спасылка", "DE.Views.Links.capBtnInsContents": "Змест", "DE.Views.Links.capBtnInsFootnote": "Зноска", @@ -2094,7 +2117,7 @@ "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Аўта", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Без межаў", "DE.Views.RightMenu.txtChartSettings": "Налады дыяграмы", - "DE.Views.RightMenu.txtHeaderFooterSettings": "Налады верхняга і ніжняга калантытулаў", + "DE.Views.RightMenu.txtHeaderFooterSettings": "Налады верхняга і ніжняга калонтытулаў", "DE.Views.RightMenu.txtImageSettings": "Налады выявы", "DE.Views.RightMenu.txtMailMergeSettings": "Налады аб’яднання", "DE.Views.RightMenu.txtParagraphSettings": "Налады абзаца", @@ -2147,7 +2170,7 @@ "DE.Views.ShapeSettings.textWrap": "Стыль абцякання", "DE.Views.ShapeSettings.tipAddGradientPoint": "Дадаць кропку градыента", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Выдаліць кропку градыента", - "DE.Views.ShapeSettings.txtBehind": "За", + "DE.Views.ShapeSettings.txtBehind": "За тэкстам", "DE.Views.ShapeSettings.txtBrownPaper": "Карычневая папера", "DE.Views.ShapeSettings.txtCanvas": "Палатно", "DE.Views.ShapeSettings.txtCarton": "Картон", @@ -2205,6 +2228,7 @@ "DE.Views.TableOfContentsSettings.strLinks": "Фарматаваць змест у спасылкі", "DE.Views.TableOfContentsSettings.strShowPages": "Паказаць нумары старонак", "DE.Views.TableOfContentsSettings.textBuildTable": "Стварыць змест з", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Стварыць табліцу з дапамогай", "DE.Views.TableOfContentsSettings.textEquation": "Раўнанне", "DE.Views.TableOfContentsSettings.textFigure": "Фігура", "DE.Views.TableOfContentsSettings.textLeader": "Запаўняльнік", @@ -2218,6 +2242,7 @@ "DE.Views.TableOfContentsSettings.textStyles": "Стылі", "DE.Views.TableOfContentsSettings.textTable": "Табліца", "DE.Views.TableOfContentsSettings.textTitle": "Змест", + "DE.Views.TableOfContentsSettings.txtCentered": "Па цэнтры", "DE.Views.TableOfContentsSettings.txtClassic": "Класічны", "DE.Views.TableOfContentsSettings.txtCurrent": "Бягучы", "DE.Views.TableOfContentsSettings.txtModern": "Сучасны", @@ -2375,10 +2400,13 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "Дадаць кропку градыента", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Выдаліць кропку градыента", "DE.Views.TextArtSettings.txtNoBorders": "Без абвядзення", + "DE.Views.TextToTableDialog.textAutofit": "Аўтаматычны выбар шырыні", "DE.Views.TextToTableDialog.textColumns": "Слупкі", + "DE.Views.TextToTableDialog.textContents": "Аўтазапаўненне па змесціву", "DE.Views.TextToTableDialog.textOther": "Іншае", "DE.Views.TextToTableDialog.textPara": "Абзацы", "DE.Views.TextToTableDialog.textTableSize": "Памеры табліцы", + "DE.Views.TextToTableDialog.textWindow": "Аўтазапаўненне па шырыні акна", "DE.Views.TextToTableDialog.txtAutoText": "Аўта", "DE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", "DE.Views.Toolbar.capBtnBlankPage": "Пустая старонка", @@ -2389,7 +2417,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Элементы кіравання змесцівам", "DE.Views.Toolbar.capBtnInsDropcap": "Буквіца", "DE.Views.Toolbar.capBtnInsEquation": "Раўнанне", - "DE.Views.Toolbar.capBtnInsHeader": "Калантытулы", + "DE.Views.Toolbar.capBtnInsHeader": "Калонтытулы", "DE.Views.Toolbar.capBtnInsImage": "Выява", "DE.Views.Toolbar.capBtnInsPagebreak": "Разрывы", "DE.Views.Toolbar.capBtnInsShape": "Фігура", @@ -2407,12 +2435,13 @@ "DE.Views.Toolbar.capImgForward": "Перамясціць уперад", "DE.Views.Toolbar.capImgGroup": "Групаванне", "DE.Views.Toolbar.capImgWrapping": "Абцяканне", + "DE.Views.Toolbar.mniCapitalizeWords": "Кожнае слова з вялікай літары", "DE.Views.Toolbar.mniCustomTable": "Уставіць адвольную табліцу", "DE.Views.Toolbar.mniDrawTable": "Нарысаваць табліцу", "DE.Views.Toolbar.mniEditControls": "Налады элемента кіравання", "DE.Views.Toolbar.mniEditDropCap": "Налады буквіцы", - "DE.Views.Toolbar.mniEditFooter": "Рэдагаваць ніжні калантытул", - "DE.Views.Toolbar.mniEditHeader": "Рэдагаваць верхні калантытул", + "DE.Views.Toolbar.mniEditFooter": "Рэдагаваць ніжні калонтытул", + "DE.Views.Toolbar.mniEditHeader": "Рэдагаваць верхні калонтытул", "DE.Views.Toolbar.mniEraseTable": "Ачысціць табліцу", "DE.Views.Toolbar.mniFromFile": "З файла", "DE.Views.Toolbar.mniFromStorage": "Са сховішча", @@ -2504,6 +2533,7 @@ "DE.Views.Toolbar.tipAlignRight": "Выраўнаваць па праваму краю", "DE.Views.Toolbar.tipBack": "Назад", "DE.Views.Toolbar.tipBlankPage": "Уставіць пустую старонку", + "DE.Views.Toolbar.tipChangeCase": "Змяніць рэгістр", "DE.Views.Toolbar.tipChangeChart": "Змяніць тып дыяграмы", "DE.Views.Toolbar.tipClearStyle": "Ачысціць стыль", "DE.Views.Toolbar.tipColorSchemas": "Змяніць каляровую схему", @@ -2515,7 +2545,7 @@ "DE.Views.Toolbar.tipDecFont": "Паменшыць памер шрыфту", "DE.Views.Toolbar.tipDecPrLeft": "Паменшыць водступ", "DE.Views.Toolbar.tipDropCap": "Уставіць буквіцу", - "DE.Views.Toolbar.tipEditHeader": "Рэдагаваць калантытулы", + "DE.Views.Toolbar.tipEditHeader": "Рэдагаваць калонтытулы", "DE.Views.Toolbar.tipFontColor": "Колер шрыфту", "DE.Views.Toolbar.tipFontName": "Шрыфт", "DE.Views.Toolbar.tipFontSize": "Памер шрыфту", @@ -2583,6 +2613,7 @@ "DE.Views.Toolbar.txtScheme7": "Справядлівасць", "DE.Views.Toolbar.txtScheme8": "Плаваючая", "DE.Views.Toolbar.txtScheme9": "Ліцейня", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Заўсёды паказваць панэль інструментаў", "DE.Views.ViewTab.textNavigation": "Навігацыя", "DE.Views.ViewTab.textZoom": "Маштаб", "DE.Views.WatermarkSettingsDialog.textAuto": "Аўта", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 3324af12b..b88c489b2 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Afegiu punt amb doble espai", "Common.Views.AutoCorrectDialog.textFLCells": "Posa en majúscula la primera lletra de les cel·les de la taula", "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", "Common.Views.AutoCorrectDialog.textHyperlink": "Camins de xarxa i d'Internet per enllaços", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "El document es desarà amb el format nou. Podreu utilitzar totes les funcions de l'editor, però podria afectar la disposició del document.
Useu l'opció 'Compatibilitat' de la configuració avançada si voleu que els fitxers siguin compatibles amb versions anteriors de MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Sense títol", "DE.Controllers.LeftMenu.warnDownloadAs": "Si continueu i deseu en aquest format, es perdran totes les característiques, excepte el text.
Voleu continuar?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "El vostre {0} es convertirà a un format editable. Això pot trigar una estona. El document resultant s'optimitzarà perquè pugueu editar el text, de manera que pot ser que no se sembli a l'original {0}, sobretot si el fitxer original contenia molts gràfics.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continueu i deseu en aquest format, es pot perdre part del format.
Voleu continuar?", "DE.Controllers.Main.applyChangesTextText": "S'estan carregant els canvis...", "DE.Controllers.Main.applyChangesTitleText": "S'estan carregant els canvis", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Signa", "DE.Views.DocumentHolder.styleText": "Format d'estil", "DE.Views.DocumentHolder.tableText": "Taula", + "DE.Views.DocumentHolder.textAccept": "Accepteu el canvi", "DE.Views.DocumentHolder.textAlign": "Alineació", "DE.Views.DocumentHolder.textArrange": "Organitza", "DE.Views.DocumentHolder.textArrangeBack": "Envia al fons", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Enganxa", "DE.Views.DocumentHolder.textPrevPage": "Pàgina anterior", "DE.Views.DocumentHolder.textRefreshField": "Actualitza el camp", + "DE.Views.DocumentHolder.textReject": "Rebutjeu el canvi", "DE.Views.DocumentHolder.textRemCheckBox": "Suprimeix la casella de selecció", "DE.Views.DocumentHolder.textRemComboBox": "Suprimeix el quadre combinat", "DE.Views.DocumentHolder.textRemDropdown": "Suprimeix el desplegable", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Pàgina {0} de {1}", "DE.Views.Statusbar.tipFitPage": "Ajusta-ho a la pàgina", "DE.Views.Statusbar.tipFitWidth": "Ajusta-ho a l'amplària", + "DE.Views.Statusbar.tipHandTool": "Eina manual", + "DE.Views.Statusbar.tipSelectTool": "Seleccioneu l'eina", "DE.Views.Statusbar.tipSetLang": "Estableix l'idioma del text", "DE.Views.Statusbar.tipZoomFactor": "Zoom", "DE.Views.Statusbar.tipZoomIn": "Amplia", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 7e3a3e1cf..a865066a9 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -183,7 +183,7 @@ "Common.UI.SynchronizeTip.textDontShow": "Tuto zprávu už nezobrazovat", "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl mezitím změněn jiným uživatelem.
Kliknutím uložte změny provedené vámi a načtení těch od ostatních.", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", - "Common.UI.ThemeColorPalette.textThemeColors": "Barvy motivu vzhledu", + "Common.UI.ThemeColorPalette.textThemeColors": "Barvy vzhledu prostředí", "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", "Common.UI.Themes.txtThemeDark": "Tmavé", "Common.UI.Themes.txtThemeLight": "Světlé", @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatické odrážkové seznamy", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Odstranit", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Přidat interval s dvojitou mezerou", "Common.Views.AutoCorrectDialog.textFLCells": "První písmeno v obsahu buněk tabulky měnit na velké", "Common.Views.AutoCorrectDialog.textFLSentence": "Velká na začátku věty", "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a síťové přístupy s hypertextovými odkazy", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Dokument bude uložen v novém formátu. Umožní vám využít všechny funkce editoru, ale může ovlivnit rozvržení dokumentu.
Pokud chcete, aby soubory byly kompatibilní se staršími verzemi MS Word, použijte volbu „Kompatibilita“ v pokročilých nastaveních.", "DE.Controllers.LeftMenu.txtUntitled": "Bez názvu", "DE.Controllers.LeftMenu.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Vašich {0} bude převedeno do editovatelného formátu. Tato operace může chvíli trvat. Výsledný dokument bude optimalizován a umožní editaci textu. Nemusí vypadat totožně jako původní {0}, zvláště pokud původní soubor obsahoval velké množství grafiky. ", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Uložením v tomto formátu může být ztracena část formátování dokumentu.
Opravdu chcete pokračovat?", "DE.Controllers.Main.applyChangesTextText": "Načítání změn…", "DE.Controllers.Main.applyChangesTitleText": "Načítání změn", @@ -808,16 +810,16 @@ "DE.Controllers.Main.txtShape_snip2SameRect": "Obdélník se dvěma ustřiženými rohy na stejné straně", "DE.Controllers.Main.txtShape_snipRoundRect": "Obdélník s jedním zaobleným a jedním ustřiženým rohem na stejné straně", "DE.Controllers.Main.txtShape_spline": "Křivka", - "DE.Controllers.Main.txtShape_star10": "Hvězda s 10 cípy", - "DE.Controllers.Main.txtShape_star12": "Hvězda s 12 cípy", - "DE.Controllers.Main.txtShape_star16": "Hvězda se 16 cípy", - "DE.Controllers.Main.txtShape_star24": "Hvězda se 24 cípy", - "DE.Controllers.Main.txtShape_star32": "Hvězda s 32 cípy", - "DE.Controllers.Main.txtShape_star4": "Hvězda se 4 cípy", - "DE.Controllers.Main.txtShape_star5": "Hvězda s 5 cípy", - "DE.Controllers.Main.txtShape_star6": "Hvězda se 6 cípy", - "DE.Controllers.Main.txtShape_star7": "Hvězda se 7 cípy", - "DE.Controllers.Main.txtShape_star8": "Hvězda s 8 cípy", + "DE.Controllers.Main.txtShape_star10": "Hvězda s 10 paprsky", + "DE.Controllers.Main.txtShape_star12": "Hvězda s 12 paprsky", + "DE.Controllers.Main.txtShape_star16": "Hvězda s 16 paprsky", + "DE.Controllers.Main.txtShape_star24": "Hvězda se 24 paprsky", + "DE.Controllers.Main.txtShape_star32": "Hvězda se 32 paprsky", + "DE.Controllers.Main.txtShape_star4": "Hvězda se 4 paprsky", + "DE.Controllers.Main.txtShape_star5": "Hvězda s 5 paprsky", + "DE.Controllers.Main.txtShape_star6": "Hvězda se 6 paprsky", + "DE.Controllers.Main.txtShape_star7": "Hvězda se 7 paprsky", + "DE.Controllers.Main.txtShape_star8": "Hvězda s 8 paprsky", "DE.Controllers.Main.txtShape_stripedRightArrow": "Proužkovaná šipka vpravo", "DE.Controllers.Main.txtShape_sun": "Slunce", "DE.Controllers.Main.txtShape_teardrop": "Slza", @@ -922,6 +924,7 @@ "DE.Controllers.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", "DE.Controllers.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", "DE.Controllers.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", + "DE.Controllers.Toolbar.tipMarkersHRound": "Duté kulaté odrážky", "DE.Controllers.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Víceúrovňové číslované odrážky", "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Víceúrovňové symbolové odrážky", @@ -1459,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Podepsat", "DE.Views.DocumentHolder.styleText": "Formátování jako styl", "DE.Views.DocumentHolder.tableText": "Tabulka", + "DE.Views.DocumentHolder.textAccept": "Přijmout změnu", "DE.Views.DocumentHolder.textAlign": "Zarovnání", "DE.Views.DocumentHolder.textArrange": "Uspořádat", "DE.Views.DocumentHolder.textArrangeBack": "Přesunout na pozadí", @@ -1493,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Vložit", "DE.Views.DocumentHolder.textPrevPage": "Předchozí stránka", "DE.Views.DocumentHolder.textRefreshField": "Obnovit pole", + "DE.Views.DocumentHolder.textReject": "Odmítnout změnu", "DE.Views.DocumentHolder.textRemCheckBox": "Odstranit zaškrtávací pole", "DE.Views.DocumentHolder.textRemComboBox": "Odstranit výběrové pole", "DE.Views.DocumentHolder.textRemDropdown": "Odstranit rozevírací seznam", @@ -1532,6 +1537,7 @@ "DE.Views.DocumentHolder.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", "DE.Views.DocumentHolder.tipMarkersFRound": "Vyplněné kulaté odrážky", "DE.Views.DocumentHolder.tipMarkersFSquare": "Plné čtvercové odrážky", + "DE.Views.DocumentHolder.tipMarkersHRound": "Duté kulaté odrážky", "DE.Views.DocumentHolder.tipMarkersStar": "Hvězdičkové odrážky", "DE.Views.DocumentHolder.toDictionaryText": "Přidat do slovníku", "DE.Views.DocumentHolder.txtAddBottom": "Přidat spodní ohraničení", @@ -2081,7 +2087,7 @@ "DE.Views.ListSettingsDialog.txtType": "Typ", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Poslat", - "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma", + "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Prostředí", "DE.Views.MailMergeEmailDlg.textAttachDocx": "Připojit jako DOCX", "DE.Views.MailMergeEmailDlg.textAttachPdf": "Připojit jako PDF", "DE.Views.MailMergeEmailDlg.textFileName": "Název souboru", @@ -2376,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Stránka {0} z {1}", "DE.Views.Statusbar.tipFitPage": "Přizpůsobit stránce", "DE.Views.Statusbar.tipFitWidth": "Přizpůsobit šířce", + "DE.Views.Statusbar.tipHandTool": "Nástroj ruka", + "DE.Views.Statusbar.tipSelectTool": "Zvolit nástroj", "DE.Views.Statusbar.tipSetLang": "Nastavit jazyk textu", "DE.Views.Statusbar.tipZoomFactor": "Měřítko zobrazení", "DE.Views.Statusbar.tipZoomIn": "Přiblížit", @@ -2813,7 +2821,7 @@ "DE.Views.ViewTab.textDarkDocument": "Tmavý režim dokumentu", "DE.Views.ViewTab.textFitToPage": "Přizpůsobit stránce", "DE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce", - "DE.Views.ViewTab.textInterfaceTheme": "Vzhled uživatelského rozhraní", + "DE.Views.ViewTab.textInterfaceTheme": "Vzhled prostředí", "DE.Views.ViewTab.textNavigation": "Navigace", "DE.Views.ViewTab.textRulers": "Pravítka", "DE.Views.ViewTab.textStatusBar": "Stavová lišta", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 29c15f1eb..dc8b72519 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -512,8 +512,8 @@ "DE.Controllers.LeftMenu.txtCompatible": "The document will be saved to the new format. It will allow to use all the editor features, but might affect the document layout.
Use the 'Compatibility' option of the advanced settings if you want to make the files compatible with older MS Word versions.", "DE.Controllers.LeftMenu.txtUntitled": "Untitled", "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", - "DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", "DE.Controllers.Main.applyChangesTextText": "Loading the changes...", "DE.Controllers.Main.applyChangesTitleText": "Loading the Changes", "DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index aaef5fb29..b7a916f08 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listes à puces automatiques", "Common.Views.AutoCorrectDialog.textBy": "Par", "Common.Views.AutoCorrectDialog.textDelete": "Supprimer", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Ajouter un point avec un double espace", "Common.Views.AutoCorrectDialog.textFLCells": "Mettre la première lettre des cellules du tableau en majuscule", "Common.Views.AutoCorrectDialog.textFLSentence": "Majuscule en début de phrase", "Common.Views.AutoCorrectDialog.textHyperlink": "Adresses Internet et réseau avec des liens hypertextes", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Le fichier sera enregistré au nouveau format. Toutes les fonctionnalités des éditeurs vous seront disponibles, mais cela peut affecter la mise en page du document.
Activez l'option \" Compatibilité \" dans les paramètres avancés pour rendre votre fichier compatible avec les anciennes versions de MS Word. ", "DE.Controllers.LeftMenu.txtUntitled": "Sans titre", "DE.Controllers.LeftMenu.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer ?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Votre {0} sera converti en un format modifiable. Cette opération peut prendre quelque temps. Le document résultant sera optimisé pour l'édition de texte, il peut donc être différent de l'original {0}, surtout si le fichier original contient de nombreux éléments graphiques.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée
Êtes-vous sûr de vouloir continuer?", "DE.Controllers.Main.applyChangesTextText": "Chargement des changemets...", "DE.Controllers.Main.applyChangesTitleText": "Chargement des changemets", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Signer", "DE.Views.DocumentHolder.styleText": "En tant que style", "DE.Views.DocumentHolder.tableText": "Tableau", + "DE.Views.DocumentHolder.textAccept": "Accepter la modification", "DE.Views.DocumentHolder.textAlign": "Aligner", "DE.Views.DocumentHolder.textArrange": "Organiser", "DE.Views.DocumentHolder.textArrangeBack": "Mettre en arrière-plan", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Coller", "DE.Views.DocumentHolder.textPrevPage": "Page précédente", "DE.Views.DocumentHolder.textRefreshField": "Actualiser le champ", + "DE.Views.DocumentHolder.textReject": "Rejeter la modification", "DE.Views.DocumentHolder.textRemCheckBox": "Supprimer une case à cocher", "DE.Views.DocumentHolder.textRemComboBox": "Supprimer une zone de liste déroulante", "DE.Views.DocumentHolder.textRemDropdown": "Supprimer une liste déroulante", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Page {0} de {1}", "DE.Views.Statusbar.tipFitPage": "Ajuster à la page", "DE.Views.Statusbar.tipFitWidth": "Ajuster à la largeur", + "DE.Views.Statusbar.tipHandTool": "Outil Main", + "DE.Views.Statusbar.tipSelectTool": "Outil de sélection", "DE.Views.Statusbar.tipSetLang": "Définir la langue du texte", "DE.Views.Statusbar.tipZoomFactor": "Grossissement", "DE.Views.Statusbar.tipZoomIn": "Zoom avant", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index 7546a1bd0..31dfeedb8 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -49,6 +49,9 @@ "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraph Deleted", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", "Common.Controllers.ReviewChanges.textParaInserted": "Paragraph Inserted", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Pindah ke bawah", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Pindah ke atas", + "Common.Controllers.ReviewChanges.textParaMoveTo": "Pindah", "Common.Controllers.ReviewChanges.textPosition": "Position", "Common.Controllers.ReviewChanges.textRight": "Align right", "Common.Controllers.ReviewChanges.textShape": "Shape", @@ -60,12 +63,23 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Strikeout", "Common.Controllers.ReviewChanges.textSubScript": "Subscript", "Common.Controllers.ReviewChanges.textSuperScript": "Superscript", + "Common.Controllers.ReviewChanges.textTableChanged": "Setelan tabel", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Baris tabel ditambah", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Baris Tabel dihapus", "Common.Controllers.ReviewChanges.textTabs": "Change tabs", "Common.Controllers.ReviewChanges.textUnderline": "Underline", "Common.Controllers.ReviewChanges.textWidow": "Widow control", + "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textCharts": "Bagan", "Common.define.chartData.textColumn": "Kolom", "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textPie": "Diagram Lingkaran", + "Common.define.chartData.textStock": "Diagram Garis", + "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.UI.ButtonColored.textAutoColor": "Otomatis", "Common.UI.ButtonColored.textNewColor": "Tambahkan warna khusus baru", + "Common.UI.Calendar.textMonths": "bulan", + "Common.UI.Calendar.textYears": "tahun", "Common.UI.ComboBorderSize.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboDataView.emptyComboText": "Tidak ada model", @@ -87,6 +101,7 @@ "Common.UI.SynchronizeTip.textDontShow": "Jangan tampilkan pesan ini lagi", "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah diubah oleh pengguna lain.
Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", + "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Window.cancelButtonText": "Batalkan", "Common.UI.Window.closeButtonText": "Tutup", "Common.UI.Window.noButtonText": "Tidak", @@ -105,11 +120,18 @@ "Common.Views.About.txtTel": "tel:", "Common.Views.About.txtVersion": "Versi", "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textBy": "oleh", + "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", + "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", + "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", "Common.Views.Chat.textSend": "Kirim", "Common.Views.Comments.textAdd": "Tambahkan", "Common.Views.Comments.textAddComment": "Tambahkan", "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk Dokumen", "Common.Views.Comments.textAddReply": "Tambahkan Balasan", + "Common.Views.Comments.textAll": "Semua", "Common.Views.Comments.textAnonym": "Tamu", "Common.Views.Comments.textCancel": "Batalkan", "Common.Views.Comments.textClose": "Tutup", @@ -135,8 +157,21 @@ "Common.Views.ExternalMergeEditor.textClose": "Close", "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", + "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", "Common.Views.Header.textBack": "Buka Dokumen", + "Common.Views.Header.textHideLines": "Sembunyikan Mistar", + "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", + "Common.Views.Header.textZoom": "Pembesaran", + "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipRedo": "Ulangi", + "Common.Views.Header.tipSave": "Simpan", + "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", "Common.Views.Header.txtAccessRights": "Ubah hak akses", + "Common.Views.Header.txtRename": "Ganti nama", + "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Tempel URL gambar:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", @@ -146,28 +181,64 @@ "Common.Views.InsertTableDialog.txtMinText": "Input minimal untuk kolom ini adalah {0}.", "Common.Views.InsertTableDialog.txtRows": "Jumlah Baris", "Common.Views.InsertTableDialog.txtTitle": "Ukuran Tabel", + "Common.Views.InsertTableDialog.txtTitleSplit": "Pisahkan Sel", + "Common.Views.LanguageDialog.labelSelect": "Pilih bahasa dokumen", "Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", + "Common.Views.OpenDialog.txtPassword": "Kata Sandi", + "Common.Views.OpenDialog.txtPreview": "Pratinjau", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.ReviewChanges.textEnable": "Aktifkan", "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", + "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", "Common.Views.ReviewChanges.txtAccept": "Accept", "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes", "Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", + "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", + "Common.Views.ReviewChanges.txtDocLang": "Bahasa", "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", "Common.Views.ReviewChanges.txtNext": "To Next Change", "Common.Views.ReviewChanges.txtPrev": "To Previous Change", + "Common.Views.ReviewChanges.txtPreview": "Pratinjau", "Common.Views.ReviewChanges.txtReject": "Reject", "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes", + "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", "Common.Views.ReviewChangesDialog.txtAccept": "Terima", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Terima semua perubahan", "Common.Views.ReviewChangesDialog.txtReject": "Tolak", "Common.Views.ReviewPopover.textAdd": "Tambahkan", "Common.Views.ReviewPopover.textAddReply": "Tambahkan balasan", + "Common.Views.ReviewPopover.textCancel": "Batalkan", + "Common.Views.ReviewPopover.textClose": "Tutup", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", + "Common.Views.ReviewPopover.textReply": "Balas", + "Common.Views.ReviewPopover.textResolve": "Selesaikan", "Common.Views.ReviewPopover.txtAccept": "Terima", + "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", + "Common.Views.ReviewPopover.txtEditTip": "Sunting", + "Common.Views.ReviewPopover.txtReject": "Tolak", + "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", + "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textInfoName": "Nama", + "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textFont": "Huruf", + "Common.Views.SymbolTableDialog.textSpecial": "karakter khusus", "Common.Views.SymbolTableDialog.textSymbols": "Simbol", "DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.LeftMenu.newDocumentTitle": "Dokumen tidak bernama", @@ -232,7 +303,10 @@ "DE.Controllers.Main.splitMaxColsErrorText": "Jumlah kolom harus kurang dari %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "Jumlah haris harus kurang dari %1.", "DE.Controllers.Main.textAnonymous": "Anonim", + "DE.Controllers.Main.textClose": "Tutup", "DE.Controllers.Main.textCloseTip": "Klik untuk menutup tips", + "DE.Controllers.Main.textGuest": "Tamu", + "DE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", "DE.Controllers.Main.textLoadingDocument": "Memuat dokumen", "DE.Controllers.Main.textStrict": "Strict mode", "DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", @@ -240,19 +314,36 @@ "DE.Controllers.Main.txtAbove": "Di atas", "DE.Controllers.Main.txtArt": "Your text here", "DE.Controllers.Main.txtBasicShapes": "Bentuk Dasar", + "DE.Controllers.Main.txtBelow": "Di bawah", "DE.Controllers.Main.txtButtons": "Tombol", "DE.Controllers.Main.txtCallouts": "Balon Kata", "DE.Controllers.Main.txtCharts": "Bagan", "DE.Controllers.Main.txtDiagramTitle": "Chart Title", "DE.Controllers.Main.txtEditingMode": "Atur mode editing...", "DE.Controllers.Main.txtErrorLoadHistory": "History loading failed", + "DE.Controllers.Main.txtEvenPage": "Halaman Genap", "DE.Controllers.Main.txtFiguredArrows": "Tanda Panah Berpola", "DE.Controllers.Main.txtLines": "Garis", "DE.Controllers.Main.txtMath": "Matematika", "DE.Controllers.Main.txtNeedSynchronize": "Ada pembaruan", + "DE.Controllers.Main.txtNone": "tidak ada", "DE.Controllers.Main.txtRectangles": "Persegi Panjang", "DE.Controllers.Main.txtSeries": "Series", + "DE.Controllers.Main.txtShape_bevel": "Miring", + "DE.Controllers.Main.txtShape_frame": "Kerangka", + "DE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "DE.Controllers.Main.txtShape_line": "Garis", + "DE.Controllers.Main.txtShape_mathEqual": "Setara", + "DE.Controllers.Main.txtShape_mathMinus": "Minus", + "DE.Controllers.Main.txtShape_mathPlus": "Plus", + "DE.Controllers.Main.txtShape_pie": "Diagram Lingkaran", + "DE.Controllers.Main.txtShape_plus": "Plus", + "DE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", "DE.Controllers.Main.txtStarsRibbons": "Bintang & Pita", + "DE.Controllers.Main.txtStyle_Normal": "Normal", + "DE.Controllers.Main.txtStyle_Quote": "Kutip", + "DE.Controllers.Main.txtStyle_Title": "Judul", + "DE.Controllers.Main.txtTableOfContents": "Daftar Isi", "DE.Controllers.Main.txtXAxis": "X Axis", "DE.Controllers.Main.txtYAxis": "Y Axis", "DE.Controllers.Main.unknownErrorText": "Error tidak dikenal.", @@ -262,6 +353,7 @@ "DE.Controllers.Main.uploadImageSizeMessage": "Melebihi ukuran maksimal file.", "DE.Controllers.Main.uploadImageTextText": "Mengunggah gambar...", "DE.Controllers.Main.uploadImageTitleText": "Mengunggah Gambar", + "DE.Controllers.Main.waitText": "Silahkan menunggu", "DE.Controllers.Main.warnBrowserIE9": "Aplikasi ini tidak berjalan dengan baik di IE9. Gunakan IE10 atau versi yang terbaru", "DE.Controllers.Main.warnBrowserZoom": "Pengaturan pembesaran tampilan pada browser Anda saat ini tidak didukung sepenuhnya. Silakan atur ulang ke tampilan standar dengan menekan Ctrl+0.", "DE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", @@ -276,6 +368,7 @@ "DE.Controllers.Toolbar.textFontSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input numerik antara 1 dan 300", "DE.Controllers.Toolbar.textFraction": "Pecahan", "DE.Controllers.Toolbar.textFunction": "Fungsi", + "DE.Controllers.Toolbar.textGroup": "Grup", "DE.Controllers.Toolbar.textInsert": "Sisipkan", "DE.Controllers.Toolbar.textIntegral": "Integral", "DE.Controllers.Toolbar.textLargeOperator": "Operator Besar", @@ -604,10 +697,23 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Controllers.Viewport.textFitPage": "Sesuaikan Halaman", + "DE.Controllers.Viewport.textFitWidth": "Sesuaikan Lebar", "DE.Views.BookmarksDialog.textAdd": "Tambahkan", + "DE.Views.BookmarksDialog.textClose": "Tutup", + "DE.Views.BookmarksDialog.textCopy": "Salin", + "DE.Views.BookmarksDialog.textDelete": "Hapus", + "DE.Views.BookmarksDialog.textLocation": "Lokasi", + "DE.Views.BookmarksDialog.textName": "Nama", + "DE.Views.BookmarksDialog.textSort": "Urutkan berdasar", "DE.Views.CaptionDialog.textAfter": "setelah", "DE.Views.CaptionDialog.textBefore": "Sebelum", + "DE.Views.CaptionDialog.textColon": "Titik dua", + "DE.Views.CaptionDialog.textInsert": "Sisipkan", + "DE.Views.CaptionDialog.textNumbering": "Penomoran", "DE.Views.CaptionDialog.textTable": "Tabel", + "DE.Views.CellsAddDialog.textCol": "Kolom", + "DE.Views.CellsAddDialog.textRow": "Baris", "DE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", "DE.Views.ChartSettings.textChartType": "Ubah Tipe Bagan", "DE.Views.ChartSettings.textEditData": "Edit Data", @@ -626,9 +732,25 @@ "DE.Views.ChartSettings.txtTight": "Ketat", "DE.Views.ChartSettings.txtTitle": "Bagan", "DE.Views.ChartSettings.txtTopAndBottom": "Atas dan bawah", + "DE.Views.ControlSettingsDialog.strGeneral": "Umum", "DE.Views.ControlSettingsDialog.textAdd": "Tambahkan", + "DE.Views.ControlSettingsDialog.textChange": "Sunting", + "DE.Views.ControlSettingsDialog.textColor": "Warna", + "DE.Views.ControlSettingsDialog.textDelete": "Hapus", + "DE.Views.ControlSettingsDialog.textLang": "Bahasa", + "DE.Views.ControlSettingsDialog.textName": "Judul", + "DE.Views.ControlSettingsDialog.textNone": "tidak ada", + "DE.Views.ControlSettingsDialog.textTag": "Tandai", + "DE.Views.ControlSettingsDialog.textUp": "Naik", + "DE.Views.ControlSettingsDialog.textValue": "Nilai", + "DE.Views.CrossReferenceDialog.textInsert": "Sisipkan", + "DE.Views.CrossReferenceDialog.textTable": "Tabel", + "DE.Views.CustomColumnsDialog.textColumns": "Jumlah Kolom", + "DE.Views.CustomColumnsDialog.textTitle": "Kolom", + "DE.Views.DateTimeDialog.textLang": "Bahasa", "DE.Views.DocumentHolder.aboveText": "Di atas", "DE.Views.DocumentHolder.addCommentText": "Tambahkan Komentar", + "DE.Views.DocumentHolder.advancedDropCapText": "Pengaturan Drop Cap", "DE.Views.DocumentHolder.advancedFrameText": "Pengaturan Lanjut untuk Kerangka", "DE.Views.DocumentHolder.advancedParagraphText": "Pengaturan Lanjut untuk Paragraf", "DE.Views.DocumentHolder.advancedTableText": "Pengaturan Lanjut untuk Tabel", @@ -672,6 +794,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Gabungkan Sel", "DE.Views.DocumentHolder.moreText": "Varian lain...", "DE.Views.DocumentHolder.noSpellVariantsText": "Tidak ada varian", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Peringatan", "DE.Views.DocumentHolder.originalSizeText": "Ukuran Standar", "DE.Views.DocumentHolder.paragraphText": "Paragraf", "DE.Views.DocumentHolder.removeHyperlinkText": "Hapus Hyperlink", @@ -696,11 +819,16 @@ "DE.Views.DocumentHolder.textArrangeForward": "Majukan", "DE.Views.DocumentHolder.textArrangeFront": "Tampilkan di Halaman Muka", "DE.Views.DocumentHolder.textCopy": "Salin", + "DE.Views.DocumentHolder.textCropFill": "Isian", "DE.Views.DocumentHolder.textCut": "Potong", "DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Pembatas Potongan Teks", + "DE.Views.DocumentHolder.textFromFile": "Dari File", + "DE.Views.DocumentHolder.textFromUrl": "Dari URL", "DE.Views.DocumentHolder.textNextPage": "Halaman Selanjutnya", "DE.Views.DocumentHolder.textPaste": "Tempel", "DE.Views.DocumentHolder.textPrevPage": "Halaman Sebelumnya", + "DE.Views.DocumentHolder.textRemove": "Hapus", + "DE.Views.DocumentHolder.textReplace": "Ganti Gambar", "DE.Views.DocumentHolder.textSettings": "Pengaturan", "DE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah", "DE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah", @@ -709,6 +837,7 @@ "DE.Views.DocumentHolder.textShapeAlignRight": "Rata Kanan", "DE.Views.DocumentHolder.textShapeAlignTop": "Rata Atas", "DE.Views.DocumentHolder.textTOC": "Daftar Isi", + "DE.Views.DocumentHolder.textUndo": "Batalkan", "DE.Views.DocumentHolder.textWrap": "Bentuk Potongan", "DE.Views.DocumentHolder.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", "DE.Views.DocumentHolder.txtAddBottom": "Add bottom border", @@ -834,6 +963,7 @@ "DE.Views.DropcapSettingsAdvanced.textWidth": "Lebar", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Nama Huruf", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.EditListItemDialog.textValue": "Nilai", "DE.Views.FileMenu.btnBackCaption": "Buka Dokumen", "DE.Views.FileMenu.btnCreateNewCaption": "Buat Baru", "DE.Views.FileMenu.btnDownloadCaption": "Unduh sebagai...", @@ -849,22 +979,30 @@ "DE.Views.FileMenu.btnSettingsCaption": "Pengaturan Lanjut...", "DE.Views.FileMenu.btnToEditCaption": "Edit Dokumen", "DE.Views.FileMenu.textDownload": "Download", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Penulis", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Memuat...", + "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Halaman", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraf", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbol dengan spasi", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", + "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul Dokumen", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Kata", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", + "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", + "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit Dokumen", "DE.Views.FileMenuPanels.Settings.okButtonText": "Terapkan", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", "DE.Views.FileMenuPanels.Settings.strAutosave": "Aktifkan simpan otomatis", @@ -890,6 +1028,8 @@ "DE.Views.FileMenuPanels.Settings.textMinute": "Tiap Menit", "DE.Views.FileMenuPanels.Settings.txtAll": "Lihat Semua", "DE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Sesuaikan Halaman", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Sesuaikan Lebar", "DE.Views.FileMenuPanels.Settings.txtInput": "Ganti Input", "DE.Views.FileMenuPanels.Settings.txtLast": "Lihat yang Terakhir", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Komentar Langsung", @@ -899,6 +1039,15 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Titik", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Periksa Ejaan", "DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "DE.Views.FormSettings.textBackgroundColor": "Warna Latar", + "DE.Views.FormSettings.textColor": "Warna Pembatas", + "DE.Views.FormSettings.textDelete": "Hapus", + "DE.Views.FormSettings.textDisconnect": "Putuskan hubungan", + "DE.Views.FormSettings.textFromFile": "Dari File", + "DE.Views.FormSettings.textFromUrl": "Dari URL", + "DE.Views.FormSettings.textImage": "Gambar", + "DE.Views.FormSettings.textNever": "tidak pernah", + "DE.Views.FormsTab.capBtnImage": "Gambar", "DE.Views.FormsTab.tipImageField": "Sisipkan Gambar", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bawah Tengah", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bawah Kiri", @@ -916,12 +1065,15 @@ "DE.Views.HeaderFooterSettings.textTopRight": "Atas Kanan", "DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmen teks yang dipilih", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Tampilan", + "DE.Views.HyperlinkSettingsDialog.textExternal": "Tautan eksternal", "DE.Views.HyperlinkSettingsDialog.textTitle": "Pengaturan Hyperlink", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Teks ScreenTip", "DE.Views.HyperlinkSettingsDialog.textUrl": "Tautkan dengan", "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Kolom ini harus diisi", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", "DE.Views.ImageSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "DE.Views.ImageSettings.textCropFill": "Isian", + "DE.Views.ImageSettings.textEdit": "Sunting", "DE.Views.ImageSettings.textFromFile": "Dari File", "DE.Views.ImageSettings.textFromUrl": "Dari URL", "DE.Views.ImageSettings.textHeight": "Ketinggian", @@ -939,6 +1091,8 @@ "DE.Views.ImageSettings.txtTopAndBottom": "Atas dan bawah", "DE.Views.ImageSettingsAdvanced.strMargins": "Lapisan Teks", "DE.Views.ImageSettingsAdvanced.textAlignment": "Perataan", + "DE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "DE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", "DE.Views.ImageSettingsAdvanced.textArrows": "Tanda panah", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Ukuran Mulai", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Gaya Mulai", @@ -1001,11 +1155,21 @@ "DE.Views.LeftMenu.tipSearch": "Cari", "DE.Views.LeftMenu.tipSupport": "Masukan & Dukungan", "DE.Views.LeftMenu.tipTitles": "Judul", + "DE.Views.LineNumbersDialog.textNumbering": "Penomoran", + "DE.Views.LineNumbersDialog.txtAutoText": "Otomatis", + "DE.Views.Links.capBtnInsContents": "Daftar Isi", + "DE.Views.Links.textContentsSettings": "Pengaturan", "DE.Views.Links.tipInsertHyperlink": "Tambahkan hyperlink", "DE.Views.ListSettingsDialog.textAuto": "Otomatis", + "DE.Views.ListSettingsDialog.textCenter": "Tengah", "DE.Views.ListSettingsDialog.textLeft": "Kiri", + "DE.Views.ListSettingsDialog.textPreview": "Pratinjau", "DE.Views.ListSettingsDialog.textRight": "Kanan", + "DE.Views.ListSettingsDialog.txtAlign": "Perataan", + "DE.Views.ListSettingsDialog.txtColor": "Warna", + "DE.Views.ListSettingsDialog.txtNone": "tidak ada", "DE.Views.ListSettingsDialog.txtSize": "Ukuran", + "DE.Views.ListSettingsDialog.txtType": "Tipe", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Send", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme", @@ -1053,9 +1217,17 @@ "DE.Views.MailMergeSettings.txtPrev": "To previous record", "DE.Views.MailMergeSettings.txtUntitled": "Untitled", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", + "DE.Views.Navigation.txtCollapse": "Tutup semua", + "DE.Views.Navigation.txtExpand": "Buka semua", + "DE.Views.NoteSettingsDialog.textApply": "Terapkan", + "DE.Views.NoteSettingsDialog.textInsert": "Sisipkan", + "DE.Views.NoteSettingsDialog.textLocation": "Lokasi", + "DE.Views.NoteSettingsDialog.textNumbering": "Penomoran", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning", "DE.Views.PageMarginsDialog.textBottom": "Bottom", "DE.Views.PageMarginsDialog.textLeft": "Left", + "DE.Views.PageMarginsDialog.textNormal": "Normal", + "DE.Views.PageMarginsDialog.textPreview": "Pratinjau", "DE.Views.PageMarginsDialog.textRight": "Right", "DE.Views.PageMarginsDialog.textTitle": "Margins", "DE.Views.PageMarginsDialog.textTop": "Top", @@ -1064,6 +1236,10 @@ "DE.Views.PageSizeDialog.textHeight": "Height", "DE.Views.PageSizeDialog.textTitle": "Page Size", "DE.Views.PageSizeDialog.textWidth": "Width", + "DE.Views.PageSizeDialog.txtCustom": "Khusus", + "DE.Views.ParagraphSettings.strIndent": "Indentasi", + "DE.Views.ParagraphSettings.strIndentsLeftText": "Kiri", + "DE.Views.ParagraphSettings.strIndentsRightText": "Kanan", "DE.Views.ParagraphSettings.strLineHeight": "Spasi Antar Baris", "DE.Views.ParagraphSettings.strParagraphSpacing": "Spasi", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Jangan tambahkan interval antar paragraf dengan model yang sama", @@ -1086,6 +1262,8 @@ "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Kiri", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Kanan", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Tetap satukan garis", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Satukan dengan berikutnya", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Lapisan", @@ -1113,7 +1291,9 @@ "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efek", "DE.Views.ParagraphSettingsAdvanced.textExact": "Persis", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri", + "DE.Views.ParagraphSettingsAdvanced.textNone": "tidak ada", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Posisi", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus Semua", @@ -1134,6 +1314,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Buat Pembatas Luar Saja", "DE.Views.ParagraphSettingsAdvanced.tipRight": "Buat Pembatas Kanan Saja", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Buat Pembatas Atas Saja", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", "DE.Views.RightMenu.txtChartSettings": "Pengaturan Bagan", "DE.Views.RightMenu.txtHeaderFooterSettings": "Pengaturan Header dan Footer", @@ -1152,6 +1333,7 @@ "DE.Views.ShapeSettings.strSize": "Ukuran", "DE.Views.ShapeSettings.strStroke": "Tekanan", "DE.Views.ShapeSettings.strTransparency": "Opasitas", + "DE.Views.ShapeSettings.strType": "Tipe", "DE.Views.ShapeSettings.textAdvanced": "Tampilkan pengaturan lanjut", "DE.Views.ShapeSettings.textBorderSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input antara 1pt dan 1584pt.", "DE.Views.ShapeSettings.textColor": "Isian Warna", @@ -1165,6 +1347,7 @@ "DE.Views.ShapeSettings.textLinear": "Linier", "DE.Views.ShapeSettings.textNoFill": "Tidak ada Isian", "DE.Views.ShapeSettings.textPatternFill": "Pola", + "DE.Views.ShapeSettings.textPosition": "Jabatan", "DE.Views.ShapeSettings.textRadial": "Radial", "DE.Views.ShapeSettings.textSelectTexture": "Pilih", "DE.Views.ShapeSettings.textStretch": "Rentangkan", @@ -1191,6 +1374,7 @@ "DE.Views.ShapeSettings.txtTight": "Ketat", "DE.Views.ShapeSettings.txtTopAndBottom": "Atas dan bawah", "DE.Views.ShapeSettings.txtWood": "Kayu", + "DE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", "DE.Views.Statusbar.goToPageText": "Buka Halaman", "DE.Views.Statusbar.pageIndexText": "Halaman {0} dari {1}", "DE.Views.Statusbar.tipFitPage": "Sesuaikan Halaman", @@ -1205,6 +1389,12 @@ "DE.Views.StyleTitleDialog.textTitle": "Title", "DE.Views.StyleTitleDialog.txtEmpty": "This field is required", "DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty", + "DE.Views.TableOfContentsSettings.textNone": "tidak ada", + "DE.Views.TableOfContentsSettings.textRadioStyle": "Model", + "DE.Views.TableOfContentsSettings.textStyle": "Model", + "DE.Views.TableOfContentsSettings.textTable": "Tabel", + "DE.Views.TableOfContentsSettings.textTitle": "Daftar Isi", + "DE.Views.TableOfContentsSettings.txtCurrent": "Saat ini", "DE.Views.TableSettings.deleteColumnText": "Hapus Kolom", "DE.Views.TableSettings.deleteRowText": "Hapus Baris", "DE.Views.TableSettings.deleteTableText": "Hapus Tabel", @@ -1230,11 +1420,13 @@ "DE.Views.TableSettings.textEmptyTemplate": "Tidak ada template", "DE.Views.TableSettings.textFirst": "Pertama", "DE.Views.TableSettings.textHeader": "Header", + "DE.Views.TableSettings.textHeight": "Ketinggian", "DE.Views.TableSettings.textLast": "Terakhir", "DE.Views.TableSettings.textRows": "Baris", "DE.Views.TableSettings.textSelectBorders": "Pilih pembatas yang ingin Anda ubah dengan menerarpkan model yang telah dipilih di atas", "DE.Views.TableSettings.textTemplate": "Pilih Dari Template", "DE.Views.TableSettings.textTotal": "Total", + "DE.Views.TableSettings.textWidth": "Lebar", "DE.Views.TableSettings.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", "DE.Views.TableSettings.tipBottom": "Buat Pembatas Bawah-Luar Saja", "DE.Views.TableSettings.tipInner": "Buat Garis Dalam Saja", @@ -1249,6 +1441,8 @@ "DE.Views.TableSettingsAdvanced.textAlign": "Perataan", "DE.Views.TableSettingsAdvanced.textAlignment": "Perataan", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Beri spasi antar sel", + "DE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "DE.Views.TableSettingsAdvanced.textAltTitle": "Judul", "DE.Views.TableSettingsAdvanced.textAnchorText": "Teks", "DE.Views.TableSettingsAdvanced.textAutofit": "Otomatis sesuaikan ukuran dengan konten ", "DE.Views.TableSettingsAdvanced.textBackColor": "Latar Sel", @@ -1281,7 +1475,9 @@ "DE.Views.TableSettingsAdvanced.textRight": "Kanan", "DE.Views.TableSettingsAdvanced.textRightOf": "ke sebelah kanan dari", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Kanan", + "DE.Views.TableSettingsAdvanced.textTable": "Tabel", "DE.Views.TableSettingsAdvanced.textTableBackColor": "Latar Belakang Tabel", + "DE.Views.TableSettingsAdvanced.textTableSize": "Ukuran Tabel", "DE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan Lanjut", "DE.Views.TableSettingsAdvanced.textTop": "Atas", "DE.Views.TableSettingsAdvanced.textVertical": "Vertikal", @@ -1290,6 +1486,7 @@ "DE.Views.TableSettingsAdvanced.textWrap": "Potongan Teks", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabel berderet", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Tabel alur", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Bentuk Potongan", "DE.Views.TableSettingsAdvanced.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", "DE.Views.TableSettingsAdvanced.tipCellAll": "Buat Pembatas untuk Sel Dalam Saja", "DE.Views.TableSettingsAdvanced.tipCellInner": "Buat Garis Vertikal dan Horisontal untuk Sel Dalam Saja", @@ -1300,12 +1497,17 @@ "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Buat Pembatas Luar dan Pembatas untuk Semua Sel Dalam", "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Buat Pembatas Luar dan Garis Vertikal dan Horisontal untuk Sel Dalam", "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Buat Pembatas Luar Tabel dan Pembatas Luar untuk Sel Dalam", + "DE.Views.TableSettingsAdvanced.txtCm": "Sentimeter", "DE.Views.TableSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.TableSettingsAdvanced.txtPt": "Titik", + "DE.Views.TableToTextDialog.textOther": "Lainnya", + "DE.Views.TableToTextDialog.textTab": "Tab", "DE.Views.TextArtSettings.strColor": "Color", "DE.Views.TextArtSettings.strFill": "Fill", "DE.Views.TextArtSettings.strSize": "Size", "DE.Views.TextArtSettings.strStroke": "Stroke", "DE.Views.TextArtSettings.strTransparency": "Opacity", + "DE.Views.TextArtSettings.strType": "Tipe", "DE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "DE.Views.TextArtSettings.textColor": "Color Fill", "DE.Views.TextArtSettings.textDirection": "Direction", @@ -1313,19 +1515,38 @@ "DE.Views.TextArtSettings.textGradientFill": "Gradient Fill", "DE.Views.TextArtSettings.textLinear": "Linear", "DE.Views.TextArtSettings.textNoFill": "No Fill", + "DE.Views.TextArtSettings.textPosition": "Jabatan", "DE.Views.TextArtSettings.textRadial": "Radial", "DE.Views.TextArtSettings.textSelectTexture": "Select", "DE.Views.TextArtSettings.textStyle": "Style", "DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.TextToTableDialog.textColumns": "Kolom", + "DE.Views.TextToTableDialog.textOther": "Lainnya", + "DE.Views.TextToTableDialog.textPara": "Paragraf", + "DE.Views.TextToTableDialog.textRows": "Baris", + "DE.Views.TextToTableDialog.textTab": "Tab", + "DE.Views.TextToTableDialog.textTableSize": "Ukuran Tabel", + "DE.Views.TextToTableDialog.txtAutoText": "Otomatis", "DE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "DE.Views.Toolbar.capBtnColumns": "Kolom", + "DE.Views.Toolbar.capBtnComment": "Komentar", "DE.Views.Toolbar.capBtnInsChart": "Bagan", + "DE.Views.Toolbar.capBtnInsDropcap": "Drop Cap", + "DE.Views.Toolbar.capBtnInsImage": "Gambar", + "DE.Views.Toolbar.capBtnInsTable": "Tabel", + "DE.Views.Toolbar.capBtnPageSize": "Ukuran", + "DE.Views.Toolbar.capImgAlign": "Sejajarkan", + "DE.Views.Toolbar.capImgBackward": "Mundurkan", + "DE.Views.Toolbar.capImgForward": "Majukan", "DE.Views.Toolbar.capImgGroup": "Grup", "DE.Views.Toolbar.mniCustomTable": "Sisipkan Tabel Khusus", "DE.Views.Toolbar.mniEditDropCap": "Pengaturan Drop Cap", "DE.Views.Toolbar.mniEditFooter": "Edit Footer", "DE.Views.Toolbar.mniEditHeader": "Edit Header", + "DE.Views.Toolbar.mniFromFile": "Dari File", + "DE.Views.Toolbar.mniFromUrl": "Dari URL", "DE.Views.Toolbar.mniHiddenBorders": "Pembatas Tabel Disembunyikan", "DE.Views.Toolbar.mniHiddenChars": "Karakter Tidak Dicetak", "DE.Views.Toolbar.mniImageFromFile": "Gambar dari File", @@ -1340,6 +1561,7 @@ "DE.Views.Toolbar.textColumnsThree": "Three", "DE.Views.Toolbar.textColumnsTwo": "Two", "DE.Views.Toolbar.textContPage": "Halaman Bersambung", + "DE.Views.Toolbar.textDateControl": "Tanggal", "DE.Views.Toolbar.textEvenPage": "Halaman Genap", "DE.Views.Toolbar.textInMargin": "Dalam Margin", "DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break", @@ -1370,7 +1592,11 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textSubscript": "Subskrip", "DE.Views.Toolbar.textSuperscript": "Superskrip", + "DE.Views.Toolbar.textTabFile": "File", "DE.Views.Toolbar.textTabHome": "Halaman Depan", + "DE.Views.Toolbar.textTabInsert": "Sisipkan", + "DE.Views.Toolbar.textTabReview": "Ulasan", + "DE.Views.Toolbar.textTabView": "Lihat", "DE.Views.Toolbar.textTitleError": "Error", "DE.Views.Toolbar.textToCurrent": "Ke posisi saat ini", "DE.Views.Toolbar.textTop": "Top: ", @@ -1419,6 +1645,8 @@ "DE.Views.Toolbar.tipRedo": "Ulangi", "DE.Views.Toolbar.tipSave": "Simpan", "DE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan yang Anda buat agar dapat dilihat oleh pengguna lain", + "DE.Views.Toolbar.tipSendBackward": "Mundurkan", + "DE.Views.Toolbar.tipSendForward": "Majukan", "DE.Views.Toolbar.tipShowHiddenChars": "Karakter Tidak Dicetak", "DE.Views.Toolbar.tipSynchronize": "Dokumen telah diubah oleh pengguna lain. Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", "DE.Views.Toolbar.tipUndo": "Batalkan", @@ -1442,5 +1670,21 @@ "DE.Views.Toolbar.txtScheme6": "Himpunan", "DE.Views.Toolbar.txtScheme7": "Margin Sisa", "DE.Views.Toolbar.txtScheme8": "Alur", - "DE.Views.Toolbar.txtScheme9": "Cetakan" + "DE.Views.Toolbar.txtScheme9": "Cetakan", + "DE.Views.ViewTab.textFitToPage": "Sesuaikan Halaman", + "DE.Views.ViewTab.textFitToWidth": "Sesuaikan Lebar", + "DE.Views.ViewTab.textZoom": "Perbesar", + "DE.Views.WatermarkSettingsDialog.textAuto": "Otomatis", + "DE.Views.WatermarkSettingsDialog.textBold": "Tebal", + "DE.Views.WatermarkSettingsDialog.textFont": "Huruf", + "DE.Views.WatermarkSettingsDialog.textFromFile": "Dari File", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "Dari URL", + "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal", + "DE.Views.WatermarkSettingsDialog.textItalic": "Miring", + "DE.Views.WatermarkSettingsDialog.textLanguage": "Bahasa", + "DE.Views.WatermarkSettingsDialog.textNone": "tidak ada", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "Coret ganda", + "DE.Views.WatermarkSettingsDialog.textText": "Teks", + "DE.Views.WatermarkSettingsDialog.textUnderline": "Garis bawah", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran Huruf" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 55c8e5183..6ee05345e 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -213,6 +213,8 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き", "Common.Views.AutoCorrectDialog.textBy": "幅", "Common.Views.AutoCorrectDialog.textDelete": "削除する", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "スペース2回でピリオドを入力する", + "Common.Views.AutoCorrectDialog.textFLCells": "テーブルセルの最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textHyperlink": "インターネットとネットワークのアドレスをハイパーリンクに変更する", "Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)の代わりにダッシュ(—)", @@ -505,11 +507,12 @@ "DE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...", "DE.Controllers.LeftMenu.textLoadHistory": "バリエーションの履歴の読み込み中...", "DE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", - "DE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", + "DE.Controllers.LeftMenu.textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", "DE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。", "DE.Controllers.LeftMenu.txtCompatible": "ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。", "DE.Controllers.LeftMenu.txtUntitled": "タイトルなし", "DE.Controllers.LeftMenu.warnDownloadAs": "この形式で保存し続ける場合は、テキスト以外のすべての機能が失われます。
続行してもよろしいですか?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "あなたの{0}は編集可能な形式に変換されます。これには時間がかかる場合があります。変換後のドキュメントは、テキストを編集できるように最適化されるため、特に元のファイルに多くのグラフィックが含まれている場合、元の {0} と全く同じようには見えないかもしれません。", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "この形式で保存を続けると、一部の書式が失われる可能性があります。
続行しますか?", "DE.Controllers.Main.applyChangesTextText": "変更の読み込み中...", "DE.Controllers.Main.applyChangesTitleText": "変更の読み込み中", @@ -608,6 +611,7 @@ "DE.Controllers.Main.textLongName": "128文字未満の名前を入力してください。", "DE.Controllers.Main.textNoLicenseTitle": "ライセンス制限に達しました。", "DE.Controllers.Main.textPaidFeature": "有料機能", + "DE.Controllers.Main.textReconnect": "接続を回復しました", "DE.Controllers.Main.textRemember": "選択内容を保存する", "DE.Controllers.Main.textRenameError": "ユーザー名は空にできません。", "DE.Controllers.Main.textRenameLabel": "コラボレーションに使用する名前を入力します", @@ -1453,6 +1457,7 @@ "DE.Views.DocumentHolder.strSign": "サイン", "DE.Views.DocumentHolder.styleText": "スタイルようにフォーマッティングする", "DE.Views.DocumentHolder.tableText": "テーブル", + "DE.Views.DocumentHolder.textAccept": "変更を受け入れる", "DE.Views.DocumentHolder.textAlign": "整列", "DE.Views.DocumentHolder.textArrange": "整列", "DE.Views.DocumentHolder.textArrangeBack": "背景へ移動", @@ -1892,6 +1897,7 @@ "DE.Views.ImageSettings.textCrop": "トリミング", "DE.Views.ImageSettings.textCropFill": "塗りつぶし", "DE.Views.ImageSettings.textCropFit": "収める", + "DE.Views.ImageSettings.textCropToShape": "図形に合わせてトリミング", "DE.Views.ImageSettings.textEdit": "編集する", "DE.Views.ImageSettings.textEditObject": "オブジェクトを編集する", "DE.Views.ImageSettings.textFitMargins": "余白内に収まる", @@ -2176,6 +2182,7 @@ "DE.Views.PageSizeDialog.textTitle": "ページのサイズ", "DE.Views.PageSizeDialog.textWidth": "幅", "DE.Views.PageSizeDialog.txtCustom": "ユーザー設定", + "DE.Views.PageThumbnails.textClosePanel": "ページサムネイルを閉じる", "DE.Views.ParagraphSettings.strIndent": "インデント", "DE.Views.ParagraphSettings.strIndentsLeftText": "左", "DE.Views.ParagraphSettings.strIndentsRightText": "右", @@ -2794,9 +2801,11 @@ "DE.Views.Toolbar.txtScheme7": "株主資本", "DE.Views.Toolbar.txtScheme8": "フロー", "DE.Views.Toolbar.txtScheme9": "エコロジー", - "DE.Views.ViewTab.textAlwaysShowToolbar": "常にツールバーを表示する", + "DE.Views.ViewTab.textAlwaysShowToolbar": "ツールバーを常に表示する", + "DE.Views.ViewTab.textDarkDocument": "ダーク ドキュメント", "DE.Views.ViewTab.textFitToPage": "ページに合わせる", "DE.Views.ViewTab.textInterfaceTheme": "インターフェイスのテーマ", + "DE.Views.ViewTab.textNavigation": "ナビゲーション", "DE.Views.ViewTab.textRulers": "ルーラー", "DE.Views.ViewTab.textZoom": "ズーム", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 0eda9e811..dba5ba8ff 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -168,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nieuw", "Common.UI.ExtendedColorDialog.textRGBErr": "De ingevoerde waarde is onjuist.
Voer een numerieke waarde tussen 0 en 255 in.", "Common.UI.HSBColorPicker.textNoColor": "Geen kleur", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Wachtwoord verbergen", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Wachtwoord weergeven", "Common.UI.SearchDialog.textHighlight": "Resultaten markeren", "Common.UI.SearchDialog.textMatchCase": "Hoofdlettergevoelig", "Common.UI.SearchDialog.textReplaceDef": "Voer de vervangende tekst in", @@ -236,12 +238,14 @@ "Common.Views.Comments.mniAuthorDesc": "Auteur Z tot A", "Common.Views.Comments.mniDateAsc": "Oudste", "Common.Views.Comments.mniDateDesc": "Nieuwste", + "Common.Views.Comments.mniFilterGroups": "Filter per groep", "Common.Views.Comments.mniPositionAsc": "Van bovenkant", "Common.Views.Comments.mniPositionDesc": "Van onderkant", "Common.Views.Comments.textAdd": "Toevoegen", "Common.Views.Comments.textAddComment": "Opmerking toevoegen", "Common.Views.Comments.textAddCommentToDoc": "Opmerking toevoegen aan document", "Common.Views.Comments.textAddReply": "Antwoord toevoegen", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gast", "Common.Views.Comments.textCancel": "Annuleren", "Common.Views.Comments.textClose": "Sluiten", @@ -255,6 +259,7 @@ "Common.Views.Comments.textResolve": "Oplossen", "Common.Views.Comments.textResolved": "Opgelost", "Common.Views.Comments.textSort": "Opmerkingen sorteren", + "Common.Views.Comments.textViewResolved": "U heeft geen toestemming om deze opmerking te heropenen", "Common.Views.CopyWarningDialog.textDontShow": "Dit bericht niet meer weergeven", "Common.Views.CopyWarningDialog.textMsg": "De acties Kopiëren, Knippen en Plakken kunnen alleen met behulp van de knoppen op de werkbalk en de acties in het contextmenu worden uitgevoerd op dit tabblad van de editor.

Als u wilt kopiëren naar of plakken van toepassingen buiten het tabblad van de editor, gebruikt u de volgende toetsencombinaties:", "Common.Views.CopyWarningDialog.textTitle": "Acties Kopiëren, Knippen en Plakken", @@ -431,6 +436,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Opnieuw openen", "Common.Views.ReviewPopover.textReply": "Beantwoorden", "Common.Views.ReviewPopover.textResolve": "Oplossen", + "Common.Views.ReviewPopover.textViewResolved": "U heeft geen toestemming om deze opmerking te heropenen", "Common.Views.ReviewPopover.txtAccept": "Accepteer", "Common.Views.ReviewPopover.txtDeleteTip": "Verwijder", "Common.Views.ReviewPopover.txtEditTip": "Bewerken", @@ -602,6 +608,7 @@ "DE.Controllers.Main.textLongName": "Voer een naam in die uit minder dan 128 tekens bestaat.", "DE.Controllers.Main.textNoLicenseTitle": "Licentielimiet bereikt", "DE.Controllers.Main.textPaidFeature": "Betaalde optie", + "DE.Controllers.Main.textReconnect": "Connectie is hervat", "DE.Controllers.Main.textRemember": "Onthoud voorkeur", "DE.Controllers.Main.textRenameError": "Gebruikersnaam mag niet leeg zijn. ", "DE.Controllers.Main.textRenameLabel": "Voer een naam in die voor samenwerking moet worden gebruikt ", @@ -879,6 +886,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", "DE.Controllers.Navigation.txtBeginning": "Begin van het document", "DE.Controllers.Navigation.txtGotoBeginning": "Ga naar het begin van het document", + "DE.Controllers.Statusbar.textDisconnect": "Verbinding verbroken
Proberen opnieuw te verbinden. Controleer de netwerkinstellingen.", "DE.Controllers.Statusbar.textHasChanges": "Er zijn nieuwe wijzigingen bijgehouden", "DE.Controllers.Statusbar.textSetTrackChanges": "U bevindt zich in de modus Wijzigingen bijhouden ", "DE.Controllers.Statusbar.textTrackChanges": "Het document is geopend met de modus 'Wijzigingen bijhouden' geactiveerd", @@ -902,10 +910,14 @@ "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Operators", "DE.Controllers.Toolbar.textRadical": "Wortels", + "DE.Controllers.Toolbar.textRecentlyUsed": "Recent gebruikt", "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Symbolen", "DE.Controllers.Toolbar.textTabForms": "Formulieren", "DE.Controllers.Toolbar.textWarning": "Waarschuwing", + "DE.Controllers.Toolbar.tipMarkersArrow": "Pijltjes", + "DE.Controllers.Toolbar.tipMarkersCheckmark": "Vinkjes", + "DE.Controllers.Toolbar.tipMarkersDash": "Streepjes", "DE.Controllers.Toolbar.txtAccent_Accent": "Aigu", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Pijl van rechts naar links boven", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Pijl links boven", @@ -1439,6 +1451,7 @@ "DE.Views.DocumentHolder.strSign": "Onderteken", "DE.Views.DocumentHolder.styleText": "Opmaak als stijl", "DE.Views.DocumentHolder.tableText": "Tabel", + "DE.Views.DocumentHolder.textAccept": "Accepteer verandering", "DE.Views.DocumentHolder.textAlign": "Uitlijnen", "DE.Views.DocumentHolder.textArrange": "Ordenen", "DE.Views.DocumentHolder.textArrangeBack": "Naar achtergrond sturen", @@ -1472,6 +1485,7 @@ "DE.Views.DocumentHolder.textPaste": "Plakken", "DE.Views.DocumentHolder.textPrevPage": "Vorige pagina", "DE.Views.DocumentHolder.textRefreshField": "Ververs veld", + "DE.Views.DocumentHolder.textReject": "Verandering weigeren", "DE.Views.DocumentHolder.textRemCheckBox": "Verwijder het selectievakje", "DE.Views.DocumentHolder.textRemComboBox": "Verwijder keuzelijst met invoervak", "DE.Views.DocumentHolder.textRemDropdown": "Dropdown verwijderen", @@ -1505,6 +1519,9 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Inhoudsopgave verversen", "DE.Views.DocumentHolder.textWrap": "Terugloopstijl", "DE.Views.DocumentHolder.tipIsLocked": "Dit element wordt op dit moment bewerkt door een andere gebruiker.", + "DE.Views.DocumentHolder.tipMarkersArrow": "Pijltjes", + "DE.Views.DocumentHolder.tipMarkersCheckmark": "Vinkjes", + "DE.Views.DocumentHolder.tipMarkersDash": "Streepjes", "DE.Views.DocumentHolder.toDictionaryText": "Toevoegen aan woordenboek", "DE.Views.DocumentHolder.txtAddBottom": "Onderrand toevoegen", "DE.Views.DocumentHolder.txtAddFractionBar": "Deelteken toevoegen", @@ -1871,6 +1888,7 @@ "DE.Views.ImageSettings.textCrop": "Uitsnijden", "DE.Views.ImageSettings.textCropFill": "Vulling", "DE.Views.ImageSettings.textCropFit": "Aanpassen", + "DE.Views.ImageSettings.textCropToShape": "Bijsnijden naar vorm", "DE.Views.ImageSettings.textEdit": "Bewerken", "DE.Views.ImageSettings.textEditObject": "Object bewerken", "DE.Views.ImageSettings.textFitMargins": "Aan Marge Aanpassen", @@ -1885,6 +1903,7 @@ "DE.Views.ImageSettings.textHintFlipV": "Verticaal omdraaien", "DE.Views.ImageSettings.textInsert": "Afbeelding vervangen", "DE.Views.ImageSettings.textOriginalSize": "Ware grootte", + "DE.Views.ImageSettings.textRecentlyUsed": "Recent gebruikt", "DE.Views.ImageSettings.textRotate90": "Draaien 90°", "DE.Views.ImageSettings.textRotation": "Draaien", "DE.Views.ImageSettings.textSize": "Grootte", @@ -2155,6 +2174,9 @@ "DE.Views.PageSizeDialog.textTitle": "Paginaformaat", "DE.Views.PageSizeDialog.textWidth": "Breedte", "DE.Views.PageSizeDialog.txtCustom": "Aangepast", + "DE.Views.PageThumbnails.textPageThumbnails": "Pagina pictogrammen", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Pictograminstellingen", + "DE.Views.PageThumbnails.textThumbnailsSize": "Pictogram grootte", "DE.Views.ParagraphSettings.strIndent": "Inspringen", "DE.Views.ParagraphSettings.strIndentsLeftText": "Links", "DE.Views.ParagraphSettings.strIndentsRightText": "Rechts", @@ -2290,6 +2312,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Patroon", "DE.Views.ShapeSettings.textPosition": "Positie", "DE.Views.ShapeSettings.textRadial": "Radiaal", + "DE.Views.ShapeSettings.textRecentlyUsed": "Recent gebruikt", "DE.Views.ShapeSettings.textRotate90": "Draaien 90°", "DE.Views.ShapeSettings.textRotation": "Draaien", "DE.Views.ShapeSettings.textSelectImage": "selecteer afbeelding", @@ -2340,6 +2363,7 @@ "DE.Views.Statusbar.pageIndexText": "Pagina {0} van {1}", "DE.Views.Statusbar.tipFitPage": "Aan pagina aanpassen", "DE.Views.Statusbar.tipFitWidth": "Aan breedte aanpassen", + "DE.Views.Statusbar.tipSelectTool": "Gereedschap selecteren", "DE.Views.Statusbar.tipSetLang": "Taal van tekst instellen", "DE.Views.Statusbar.tipZoomFactor": "Zoomen", "DE.Views.Statusbar.tipZoomIn": "Inzoomen", @@ -2681,6 +2705,7 @@ "DE.Views.Toolbar.textTabLinks": "Verwijzingen", "DE.Views.Toolbar.textTabProtect": "Beveiliging", "DE.Views.Toolbar.textTabReview": "Beoordelen", + "DE.Views.Toolbar.textTabView": "Bekijken", "DE.Views.Toolbar.textTitleError": "Fout", "DE.Views.Toolbar.textToCurrent": "Naar huidige positie", "DE.Views.Toolbar.textTop": "Boven:", @@ -2772,6 +2797,15 @@ "DE.Views.Toolbar.txtScheme7": "Vermogen", "DE.Views.Toolbar.txtScheme8": "Stroom", "DE.Views.Toolbar.txtScheme9": "Gieterij", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Werkbalk altijd weergeven", + "DE.Views.ViewTab.textDarkDocument": "Donker document", + "DE.Views.ViewTab.textFitToPage": "Aan pagina aanpassen", + "DE.Views.ViewTab.textFitToWidth": "Aan breedte aanpassen", + "DE.Views.ViewTab.textInterfaceTheme": "Thema van de interface", + "DE.Views.ViewTab.textNavigation": "Navigatie", + "DE.Views.ViewTab.textRulers": "Linialen", + "DE.Views.ViewTab.textStatusBar": "Statusbalk", + "DE.Views.ViewTab.textZoom": "Inzoomen", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch", "DE.Views.WatermarkSettingsDialog.textBold": "Vet", "DE.Views.WatermarkSettingsDialog.textColor": "Tekstkleur", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index d4fd3e45b..a31fcd768 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas com marcadores automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Excluir", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adicionar ponto com espaço duplo", "Common.Views.AutoCorrectDialog.textFLCells": "Capitalizar a primeira letra das células da tabela", "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira carta de sentenças", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e caminhos de rede com hyperlinks", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "O documento será salvo em novo formato. Isto permitirá usar todos os recursos de editor, mas pode afetar o layout do documento.
Use a opção de 'Compatibilidade' para configurações avançadas se deseja tornar o arquivo compatível com versões antigas do MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Sem título", "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "O documento resultante será otimizado para permitir que você edite o texto, portanto, não gráficos exatamente iguais ao original, se o arquivo original contiver muitos gráficos.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Se você continuar salvando neste formato algumas formatações podem ser perdidas.
Você tem certeza que deseja continuar?", "DE.Controllers.Main.applyChangesTextText": "Carregando as alterações...", "DE.Controllers.Main.applyChangesTitleText": "Carregando as alterações", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Assinar", "DE.Views.DocumentHolder.styleText": "Formatar como Estilo", "DE.Views.DocumentHolder.tableText": "Tabela", + "DE.Views.DocumentHolder.textAccept": "Aceitar alteração", "DE.Views.DocumentHolder.textAlign": "Alinhar", "DE.Views.DocumentHolder.textArrange": "Organizar", "DE.Views.DocumentHolder.textArrangeBack": "Enviar para plano de fundo", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Colar", "DE.Views.DocumentHolder.textPrevPage": "Página anterior", "DE.Views.DocumentHolder.textRefreshField": "Atualizar o campo", + "DE.Views.DocumentHolder.textReject": "Rejeitar alteração", "DE.Views.DocumentHolder.textRemCheckBox": "Remover caixa de seleção", "DE.Views.DocumentHolder.textRemComboBox": "Remover caixa de combinação", "DE.Views.DocumentHolder.textRemDropdown": "Remover lista suspensa", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Página {0} de {1}", "DE.Views.Statusbar.tipFitPage": "Ajustar página", "DE.Views.Statusbar.tipFitWidth": "Ajustar largura", + "DE.Views.Statusbar.tipHandTool": "Ferramenta de mão", + "DE.Views.Statusbar.tipSelectTool": "Selecionar ferramenta", "DE.Views.Statusbar.tipSetLang": "Definir idioma do texto", "DE.Views.Statusbar.tipZoomFactor": "Zoom", "DE.Views.Statusbar.tipZoomIn": "Ampliar", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 87217ce37..ac257d705 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Creare automată a listei cu marcatori", "Common.Views.AutoCorrectDialog.textBy": "După", "Common.Views.AutoCorrectDialog.textDelete": "Ștergere", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adăugarea unui punct prin apăsarea dublă a barei de spațiu ", "Common.Views.AutoCorrectDialog.textFLCells": "Scrie cu majusculă prima litera din fiecare celulă de tabel", "Common.Views.AutoCorrectDialog.textFLSentence": "Scrie cu majusculă prima literă a propoziției", "Common.Views.AutoCorrectDialog.textHyperlink": "Căi Internet și de rețea cu hyperlink-uri", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Documentul va fi slvat în format nou. În acest caz, toate opțiunile editorului vor deveni disponibile, totuși aspectul documentului poate fi afectat.
Folosiți setări avansate și opțiunea de Compatibilitate dacă fișierul trebuie să fie compatibil cu o versiune mai veche MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Fără titlu", "DE.Controllers.LeftMenu.warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
Sunteți sigur că doriți să continuați?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Fișierul dvs {0} va fi convertit într-un format editabil. Convertirea poate dura ceva timp. Documentul rezultat va fi optimizat pentru a vă permite să editați textul, dar s-ar putea să nu arate exact ca original {0}, mai ales dacă fișierul original conține mai multe elemente grafice.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Dacă salvați în acest format de fișier, este posibil ca unele dintre formatări să se piardă.
Sigur doriți să continuați?", "DE.Controllers.Main.applyChangesTextText": "Încărcarea modificărilor...", "DE.Controllers.Main.applyChangesTitleText": "Încărcare modificări", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Semnare", "DE.Views.DocumentHolder.styleText": "Formatare cu stil", "DE.Views.DocumentHolder.tableText": "Tabel", + "DE.Views.DocumentHolder.textAccept": "Acceptați această modificare", "DE.Views.DocumentHolder.textAlign": "Aliniere", "DE.Views.DocumentHolder.textArrange": "Aranjare", "DE.Views.DocumentHolder.textArrangeBack": "Trimitere în plan secundar", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Lipire", "DE.Views.DocumentHolder.textPrevPage": "Pagina anterioară", "DE.Views.DocumentHolder.textRefreshField": "Actualizare câmp", + "DE.Views.DocumentHolder.textReject": "Respingenți această modificare", "DE.Views.DocumentHolder.textRemCheckBox": "Eliminare control casetă de selectare", "DE.Views.DocumentHolder.textRemComboBox": "Eliminare control casetă combo", "DE.Views.DocumentHolder.textRemDropdown": "Eliminare listă verticală", @@ -2032,7 +2036,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Marcaj", "DE.Views.Links.capBtnCaption": "Legenda", - "DE.Views.Links.capBtnContentsUpdate": "Actualizare", + "DE.Views.Links.capBtnContentsUpdate": "Actualizare tabel", "DE.Views.Links.capBtnCrossRef": "Referință încrucișată", "DE.Views.Links.capBtnInsContents": "Cuprins", "DE.Views.Links.capBtnInsFootnote": "Notă de subsol", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Page {0} din {1}", "DE.Views.Statusbar.tipFitPage": "Portivire la pagina", "DE.Views.Statusbar.tipFitWidth": "Potrivire lățime", + "DE.Views.Statusbar.tipHandTool": "Instrumentul Mână", + "DE.Views.Statusbar.tipSelectTool": "Instrumentul Selectare", "DE.Views.Statusbar.tipSetLang": "Setare limba text", "DE.Views.Statusbar.tipZoomFactor": "Zoom", "DE.Views.Statusbar.tipZoomIn": "Mărire", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 9123e4cfd..3bacb3217 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Стили маркированных списков", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Удалить", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Добавлять точку двойным пробелом", "Common.Views.AutoCorrectDialog.textFLCells": "Делать первые буквы ячеек таблиц прописными", "Common.Views.AutoCorrectDialog.textFLSentence": "Делать первые буквы предложений прописными", "Common.Views.AutoCorrectDialog.textHyperlink": "Адреса в Интернете и сетевые пути гиперссылками", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Документ будет сохранен в новый формат. Это позволит использовать все функции редактора, но может повлиять на структуру документа.
Используйте опцию 'Совместимость' в дополнительных параметрах, если хотите сделать файлы совместимыми с более старыми версиями MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Без имени", "DE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
Вы действительно хотите продолжить?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} будет сконвертирован в редактируемый формат. Это может занять некоторое время. Получившийся в результате документ будет оптимизирован для редактирования текста, поэтому он может отличаться от исходного {0}, особенно если исходный файл содержит много графических элементов.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Если вы продолжите сохранение в этот формат, часть форматирования может быть потеряна.
Вы действительно хотите продолжить?", "DE.Controllers.Main.applyChangesTextText": "Загрузка изменений...", "DE.Controllers.Main.applyChangesTitleText": "Загрузка изменений", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "Подписать", "DE.Views.DocumentHolder.styleText": "Форматирование как стиль", "DE.Views.DocumentHolder.tableText": "Таблицу", + "DE.Views.DocumentHolder.textAccept": "Принять изменение", "DE.Views.DocumentHolder.textAlign": "Выравнивание", "DE.Views.DocumentHolder.textArrange": "Порядок", "DE.Views.DocumentHolder.textArrangeBack": "Перенести на задний план", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "Вставить", "DE.Views.DocumentHolder.textPrevPage": "Предыдущая страница", "DE.Views.DocumentHolder.textRefreshField": "Обновить поле", + "DE.Views.DocumentHolder.textReject": "Отклонить изменение", "DE.Views.DocumentHolder.textRemCheckBox": "Удалить флажок", "DE.Views.DocumentHolder.textRemComboBox": "Удалить поле со списком", "DE.Views.DocumentHolder.textRemDropdown": "Удалить выпадающий список", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "Страница {0} из {1}", "DE.Views.Statusbar.tipFitPage": "По размеру страницы", "DE.Views.Statusbar.tipFitWidth": "По ширине", + "DE.Views.Statusbar.tipHandTool": "Инструмент \"Рука\"", + "DE.Views.Statusbar.tipSelectTool": "Инструмент выделения", "DE.Views.Statusbar.tipSetLang": "Выбрать язык текста", "DE.Views.Statusbar.tipZoomFactor": "Масштаб", "DE.Views.Statusbar.tipZoomIn": "Увеличить", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index e32da15e7..541aa28d4 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自动项目符号列表", "Common.Views.AutoCorrectDialog.textBy": "依据", "Common.Views.AutoCorrectDialog.textDelete": "删除", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "按两下空白键自动增加一个句点(.)符号", "Common.Views.AutoCorrectDialog.textFLCells": "表格单元格的首字母大写", "Common.Views.AutoCorrectDialog.textFLSentence": "将句子首字母大写", "Common.Views.AutoCorrectDialog.textHyperlink": "带超链接的互联网与网络路径", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "文档将保存为新格式。它将允许使用所有编辑器功能,但可能会影响文档布局。
如果要使文档与旧版微软 Word 兼容,请使用高级设置的“兼容性”选项。", "DE.Controllers.LeftMenu.txtUntitled": "无标题", "DE.Controllers.LeftMenu.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "您的 {0} 将转换成一份可修改的文件。系统需要处理一段时间。转换后的文件即可随之修改,但可能不完全跟您的原 {0} 相同,特别是如果原文件有过多的图像将会更有差异。", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果您继续以此格式保存,一些格式可能会丢失。
您确定要继续吗?", "DE.Controllers.Main.applyChangesTextText": "载入更改...", "DE.Controllers.Main.applyChangesTitleText": "加载更改", @@ -1460,6 +1462,7 @@ "DE.Views.DocumentHolder.strSign": "签名", "DE.Views.DocumentHolder.styleText": "格式化为样式", "DE.Views.DocumentHolder.tableText": "表格", + "DE.Views.DocumentHolder.textAccept": "接受变化", "DE.Views.DocumentHolder.textAlign": "对齐", "DE.Views.DocumentHolder.textArrange": "安排", "DE.Views.DocumentHolder.textArrangeBack": "发送到背景", @@ -1494,6 +1497,7 @@ "DE.Views.DocumentHolder.textPaste": "粘贴", "DE.Views.DocumentHolder.textPrevPage": "上一页", "DE.Views.DocumentHolder.textRefreshField": "刷新字段", + "DE.Views.DocumentHolder.textReject": "拒绝变化", "DE.Views.DocumentHolder.textRemCheckBox": "删除多选框", "DE.Views.DocumentHolder.textRemComboBox": "删除组合框", "DE.Views.DocumentHolder.textRemDropdown": "删除候选列表", @@ -2378,6 +2382,8 @@ "DE.Views.Statusbar.pageIndexText": "第{0}页共{1}页", "DE.Views.Statusbar.tipFitPage": "适合页面", "DE.Views.Statusbar.tipFitWidth": "适合宽度", + "DE.Views.Statusbar.tipHandTool": "移动工具", + "DE.Views.Statusbar.tipSelectTool": "选取工具", "DE.Views.Statusbar.tipSetLang": "设置文本语言", "DE.Views.Statusbar.tipZoomFactor": "放大", "DE.Views.Statusbar.tipZoomIn": "放大", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 0599355a0..d2d03ed7f 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -41,6 +41,7 @@ "textLocation": "Umístění", "textNextPage": "Další stránka", "textOddPage": "Lichá stránka", + "textOk": "OK", "textOther": "Jiné", "textPageBreak": "Konec stránky", "textPageNumber": "Číslo stránky", @@ -56,8 +57,7 @@ "textStartAt": "Začít na", "textTable": "Tabulka", "textTableSize": "Velikost tabulky", - "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "Uživatelé", "textWidow": "Ovládací prvek okna" }, + "HighlightColorPalette": { + "textNoFill": "Bez výplně" + }, "ThemeColorPalette": { "textCustomColors": "Vlastní barvy", "textStandartColors": "Standardní barvy", - "textThemeColors": "Barvy motivu vzhledu" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" + "textThemeColors": "Barvy vzhledu prostředí" } }, "ContextMenu": { @@ -229,6 +229,7 @@ "textContinueFromPreviousSection": "Pokračovat od předchozí sekce", "textCustomColor": "Vlastní barva", "textDecember": "prosinec", + "textDesign": "Vzhled", "textDifferentFirstPage": "Odlišná první stránka", "textDifferentOddAndEvenPages": "Rozdílné liché a sudé stránky", "textDisplay": "Zobrazit", @@ -238,6 +239,7 @@ "textEffects": "Efekty", "textEmpty": "prázdné", "textEmptyImgUrl": "Musíte upřesnit URL obrázku.", + "textFebruary": "únor", "textFill": "Výplň", "textFirstColumn": "První sloupec", "textFirstLine": "První řádek", @@ -246,6 +248,7 @@ "textFontColors": "Barvy písma", "textFonts": "Styly", "textFooter": "Zápatí", + "textFr": "pá", "textHeader": "Záhlaví", "textHeaderRow": "Záhlaví řádků", "textHighlightColor": "Barva zvýraznění", @@ -254,6 +257,9 @@ "textImageURL": "URL obrázku", "textInFront": "Vpředu", "textInline": "V textu", + "textJanuary": "leden", + "textJuly": "červenec", + "textJune": "červen", "textKeepLinesTogether": "Držet řádky pohromadě", "textKeepWithNext": "Svázat s následujícím", "textLastColumn": "Poslední sloupec", @@ -262,13 +268,19 @@ "textLink": "Odkaz", "textLinkSettings": "Nastavení odkazů", "textLinkToPrevious": "Odkaz na předchozí", + "textMarch": "březen", + "textMay": "květen", + "textMo": "po", "textMoveBackward": "Jít zpět", "textMoveForward": "Posunout vpřed", "textMoveWithText": "Přesunout s textem", "textNone": "Žádné", "textNoStyles": "Žádné styly pro tento typ grafů.", "textNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", + "textNovember": "listopad", "textNumbers": "Čísla", + "textOctober": "říjen", + "textOk": "OK", "textOpacity": "Průhlednost", "textOptions": "Možnosti", "textOrphanControl": "Kontrola osamocených řádků", @@ -289,9 +301,11 @@ "textReplace": "Nahradit", "textReplaceImage": "Nahradit obrázek", "textResizeToFitContent": "Změnit velikost pro přizpůsobení obsahu", + "textSa": "so", "textScreenTip": "Nápověda", "textSelectObjectToEdit": "Vyberte objekt pro úpravu", "textSendToBackground": "Přesunout do pozadí", + "textSeptember": "září", "textSettings": "Nastavení", "textShape": "Obrazec", "textSize": "Velikost", @@ -302,35 +316,21 @@ "textStrikethrough": "Přeškrtnuté", "textStyle": "Styl", "textStyleOptions": "Možnosti stylu", + "textSu": "ne", "textSubscript": "Dolní index", "textSuperscript": "Horní index", "textTable": "Tabulka", "textTableOptions": "Možnosti tabulky", "textText": "Text", + "textTh": "čt", "textThrough": "Skrz", "textTight": "Těsné", "textTopAndBottom": "Nahoře a dole", "textTotalRow": "Součtový řádek", + "textTu": "út", "textType": "Typ", - "textWrap": "Obtékání", - "textDesign": "Design", - "textFebruary": "February", - "textFr": "Fr", - "textJanuary": "January", - "textJuly": "July", - "textJune": "June", - "textMarch": "March", - "textMay": "May", - "textMo": "Mo", - "textNovember": "November", - "textOctober": "October", - "textOk": "Ok", - "textSa": "Sa", - "textSeptember": "September", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "st", + "textWrap": "Obtékání" }, "Error": { "convertationTimeoutText": "Vypršel čas konverze.", @@ -487,8 +487,11 @@ "textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "textNo": "Ne", "textNoLicenseTitle": "Došlo k dosažení limitu licence", + "textNoTextFound": "Text nebyl nalezen", "textPaidFeature": "Placená funkce", "textRemember": "Zapamatovat moji volbu", + "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", + "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", "textYes": "Ano", "titleLicenseExp": "Platnost licence vypršela", "titleServerVersion": "Editor byl aktualizován", @@ -500,10 +503,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." }, "Settings": { "advDRMOptions": "Zabezpečený soubor", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index dfd8610bb..78599cf30 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -41,6 +41,7 @@ "textLocation": "場所", "textNextPage": "次のページ", "textOddPage": "奇数ページ", + "textOk": "OK", "textOther": "その他", "textPageBreak": "改ページ", "textPageNumber": "ページ番号", @@ -56,8 +57,7 @@ "textStartAt": "から始まる", "textTable": "表", "textTableSize": "表のサイズ", - "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", - "textOk": "Ok" + "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。" }, "Common": { "Collaboration": { @@ -158,13 +158,13 @@ "textUsers": "ユーザー", "textWidow": "改ページ時 1 行残して段落を区切らない" }, + "HighlightColorPalette": { + "textNoFill": "塗りつぶしなし" + }, "ThemeColorPalette": { "textCustomColors": "ユーザー設定の色", "textStandartColors": "標準の色", "textThemeColors": "テーマの色" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -229,6 +229,7 @@ "textContinueFromPreviousSection": "前のセクションから続ける", "textCustomColor": "ユーザー設定の色", "textDecember": "12月", + "textDesign": "デザイン", "textDifferentFirstPage": "先頭ページのみ別指定", "textDifferentOddAndEvenPages": "奇数/偶数ページ別指定", "textDisplay": "表示する", @@ -236,6 +237,7 @@ "textDoubleStrikethrough": "二重取り消し線", "textEditLink": "リンクを編集する", "textEffects": "効果", + "textEmpty": "空", "textEmptyImgUrl": "イメージのURLを指定すべきです。", "textFebruary": "2月", "textFill": "塗りつぶし", @@ -246,6 +248,7 @@ "textFontColors": "フォントの色", "textFonts": "フォント", "textFooter": "フッター", + "textFr": "金", "textHeader": "ヘッダー", "textHeaderRow": "ヘッダー行", "textHighlightColor": "強調表示の色", @@ -267,6 +270,7 @@ "textLinkToPrevious": "前に結合する", "textMarch": "3月", "textMay": "5月", + "textMo": "月", "textMoveBackward": "背面に動かす", "textMoveForward": "前面に動かす", "textMoveWithText": "テキストと一緒に移動する", @@ -276,6 +280,7 @@ "textNovember": "11月", "textNumbers": "数", "textOctober": "10月", + "textOk": "OK", "textOpacity": "不透明度", "textOptions": "オプション", "textOrphanControl": "改ページ時 1 行残して段落を区切らない", @@ -296,6 +301,7 @@ "textReplace": "置換する", "textReplaceImage": "イメージを置換する", "textResizeToFitContent": "内容に合わせてサイズを変更する", + "textSa": "土", "textScreenTip": "ヒント", "textSelectObjectToEdit": "編集するためにオブジェクト​​を選んでください", "textSendToBackground": "背景へ動かす", @@ -310,27 +316,21 @@ "textStrikethrough": "取り消し線", "textStyle": "スタイル", "textStyleOptions": "スタイルの設定", + "textSu": "日", "textSubscript": "下付き文字", "textSuperscript": "上付き文字", "textTable": "表", "textTableOptions": "表の設定", "textText": "テキスト", + "textTh": "木", "textThrough": "スルー", "textTight": "外周", "textTopAndBottom": "上と下", "textTotalRow": "合計行", + "textTu": "火", "textType": "タイプ", - "textWrap": "折り返す", - "textDesign": "Design", - "textEmpty": "Empty", - "textFr": "Fr", - "textMo": "Mo", - "textOk": "Ok", - "textSa": "Sa", - "textSu": "Su", - "textTh": "Th", - "textTu": "Tu", - "textWe": "We" + "textWe": "水", + "textWrap": "折り返す" }, "Error": { "convertationTimeoutText": "変換のタイムアウトを超過しました。", @@ -487,8 +487,10 @@ "textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", "textNo": "いいえ", "textNoLicenseTitle": "ライセンス制限に達しました", + "textNoTextFound": "テキストが見つかりませんでした", "textPaidFeature": "有料機能", "textRemember": "選択を覚える", + "textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", "textYes": "はい", "titleLicenseExp": "ライセンスの有効期限が切れています", "titleServerVersion": "編集者が更新された", @@ -501,8 +503,6 @@ "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnProcessRightsChange": "ファイルを編集する権限がありません!", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" }, "Settings": { diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index eb366b911..a569c98dd 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -30,6 +30,7 @@ class ContextMenu extends ContextMenuController { this.onApiHideComment = this.onApiHideComment.bind(this); this.onApiShowChange = this.onApiShowChange.bind(this); this.getUserName = this.getUserName.bind(this); + this.isUserVisible = this.isUserVisible.bind(this); this.ShowModal = this.ShowModal.bind(this); } @@ -42,6 +43,11 @@ class ContextMenu extends ContextMenuController { return AscCommon.UserInfoParser.getParsedName(user.asc_getUserName()); } + isUserVisible(id) { + const user = this.props.users.searchUserByCurrentId(id); + return user ? (user.asc_getIdOriginal()===this.props.users.currentUser.asc_getIdOriginal() || AscCommon.UserInfoParser.isUserVisible(user.asc_getUserName())) : true; + } + componentWillUnmount() { super.componentWillUnmount(); diff --git a/apps/documenteditor/mobile/src/less/app-ios.less b/apps/documenteditor/mobile/src/less/app-ios.less index d8f784511..3e5723b45 100644 --- a/apps/documenteditor/mobile/src/less/app-ios.less +++ b/apps/documenteditor/mobile/src/less/app-ios.less @@ -32,7 +32,7 @@ border-top: 1px solid #446995; border-bottom: 1px solid #446995; input { - color: #000; + color: @text-normal; font-size: 17px; font-weight: var(--f7-list-item-after-line-height); } diff --git a/apps/documenteditor/mobile/src/less/app-material.less b/apps/documenteditor/mobile/src/less/app-material.less index 0182800f7..46ad54346 100644 --- a/apps/documenteditor/mobile/src/less/app-material.less +++ b/apps/documenteditor/mobile/src/less/app-material.less @@ -79,7 +79,7 @@ border:none; input { - color: #000; + color: @text-normal; font-size: 16px; width: 40px; font-weight: var(--f7-list-item-after-line-height); diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index 9ae2ab2d1..e05e3469a 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -200,6 +200,9 @@ border: 1px solid @brandColor; background-color: transparent; } + .calendar-day-weekend .calendar-day-number { + color: #D25252; + } .calendar-day-number { color: @text-normal; font-size: 14px; @@ -236,6 +239,3 @@ color: @brandColor; } } - - - diff --git a/apps/documenteditor/mobile/src/less/icons-material.less b/apps/documenteditor/mobile/src/less/icons-material.less index 2eb429078..e470749c6 100644 --- a/apps/documenteditor/mobile/src/less/icons-material.less +++ b/apps/documenteditor/mobile/src/less/icons-material.less @@ -78,7 +78,7 @@ &.icon-expand-down { width: 17px; height: 17px; - .encoded-svg-mask('', @fill-white); + .encoded-svg-mask(''); } &.icon-expand-up { width: 17px; diff --git a/apps/documenteditor/mobile/src/store/textSettings.js b/apps/documenteditor/mobile/src/store/textSettings.js index c5526df34..b3c50936d 100644 --- a/apps/documenteditor/mobile/src/store/textSettings.js +++ b/apps/documenteditor/mobile/src/store/textSettings.js @@ -101,11 +101,11 @@ export class storeTextSettings { this.thumbCanvas = document.createElement('canvas'); this.thumbContext = this.thumbCanvas.getContext('2d'); this.thumbs = [ - {ratio: 1, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, - {ratio: 1.25, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, - {ratio: 1.5, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, - {ratio: 1.75, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, - {ratio: 2, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} + {ratio: 1, path: '../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, + {ratio: 1.25, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, + {ratio: 1.5, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, + {ratio: 1.75, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, + {ratio: 2, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} ]; const applicationPixelRatio = Common.Utils.applicationPixelRatio(); diff --git a/apps/presentationeditor/embed/locale/be.json b/apps/presentationeditor/embed/locale/be.json index 164a5e089..9f4303dc1 100644 --- a/apps/presentationeditor/embed/locale/be.json +++ b/apps/presentationeditor/embed/locale/be.json @@ -14,6 +14,7 @@ "PE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "PE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", "PE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", + "PE.ApplicationController.errorLoadingFont": "Шрыфты не загрузіліся.
Звярніцеся да адміністратара сервера дакументаў.", "PE.ApplicationController.errorTokenExpire": "Тэрмін дзеяння токена бяспекі дакумента сышоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "PE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", diff --git a/apps/presentationeditor/embed/locale/es.json b/apps/presentationeditor/embed/locale/es.json index be4ef8ae6..c0b9b7a54 100644 --- a/apps/presentationeditor/embed/locale/es.json +++ b/apps/presentationeditor/embed/locale/es.json @@ -1,38 +1,38 @@ { "common.view.modals.txtCopy": "Copiar al portapapeles", - "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtEmbed": "Insertar", "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", - "PE.ApplicationController.convertationErrorText": "Fallo de conversión.", - "PE.ApplicationController.convertationTimeoutText": "Límite de tiempo de conversión está superado.", + "PE.ApplicationController.convertationErrorText": "Se ha producido un error en la conversión.", + "PE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "PE.ApplicationController.criticalErrorTitle": "Error", - "PE.ApplicationController.downloadErrorText": "Fallo en descarga.", + "PE.ApplicationController.downloadErrorText": "Se ha producido un error en la descarga", "PE.ApplicationController.downloadTextText": "Descargando presentación...", - "PE.ApplicationController.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con su Administrador del Servidor de Documentos.", + "PE.ApplicationController.errorAccessDeny": "Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del servidor de documentos.", "PE.ApplicationController.errorDefaultMessage": "Código de error: %1", - "PE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", - "PE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Póngase en contacto con el administrador del Servidor de documentos para obtener más información.", - "PE.ApplicationController.errorForceSave": "Ha ocurrido un error al guardar el archivo. Por favor, use la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", - "PE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", - "PE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.", - "PE.ApplicationController.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página. ", - "PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", - "PE.ApplicationController.notcriticalErrorTitle": "Aviso", + "PE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no se puede abrir.", + "PE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo supera el límiete establecido por su servidor.
Contacte con el administrador del servidor de documentos para obtener más detalles.", + "PE.ApplicationController.errorForceSave": "Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo más tarde.", + "PE.ApplicationController.errorLoadingFont": "Los tipos de letra no están cargados.
Contacte con el administrador del servidor de documentos.", + "PE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Contacte con el administrador del servidor de documentos", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.", + "PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo.", + "PE.ApplicationController.notcriticalErrorTitle": "Advertencia", "PE.ApplicationController.openErrorText": "Se ha producido un error al abrir el archivo. ", - "PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", + "PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Recargue la página.", "PE.ApplicationController.textAnonymous": "Anónimo", "PE.ApplicationController.textGuest": "Invitado", "PE.ApplicationController.textLoadingDocument": "Cargando presentación", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Cerrar", "PE.ApplicationController.unknownErrorText": "Error desconocido.", - "PE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no está soportado.", - "PE.ApplicationController.waitText": "Por favor, espere...", + "PE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", + "PE.ApplicationController.waitText": "Espere...", "PE.ApplicationView.txtDownload": "Descargar", - "PE.ApplicationView.txtEmbed": "Incorporar", + "PE.ApplicationView.txtEmbed": "Insertar", "PE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", - "PE.ApplicationView.txtFullScreen": "Pantalla Completa", + "PE.ApplicationView.txtFullScreen": "Pantalla completa", "PE.ApplicationView.txtPrint": "Imprimir", "PE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/id.json b/apps/presentationeditor/embed/locale/id.json index bd2968a12..826ba68e6 100644 --- a/apps/presentationeditor/embed/locale/id.json +++ b/apps/presentationeditor/embed/locale/id.json @@ -17,7 +17,7 @@ "PE.ApplicationController.errorUserDrop": "File tidak dapat di akses", "PE.ApplicationController.notcriticalErrorTitle": "Peringatan", "PE.ApplicationController.scriptLoadError": "Koneksi terlalu lambat,", - "PE.ApplicationController.textAnonymous": "Tamu", + "PE.ApplicationController.textAnonymous": "Anonim", "PE.ApplicationController.textLoadingDocument": "Memuat penyajian", "PE.ApplicationController.textOf": "Dari", "PE.ApplicationController.txtClose": "Tutup", @@ -26,6 +26,7 @@ "PE.ApplicationController.waitText": "Mohon menunggu", "PE.ApplicationView.txtDownload": "Unduh", "PE.ApplicationView.txtEmbed": "Melekatkan", + "PE.ApplicationView.txtFileLocation": "Buka Dokumen", "PE.ApplicationView.txtFullScreen": "Layar penuh", "PE.ApplicationView.txtShare": "Bagikan" } \ No newline at end of file diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 0da847d72..358d9d869 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -546,11 +546,11 @@ define([ 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) + if (this._state.noAnimationPreview != undefined) this.lockToolbar(PE.enumLock.noAnimationPreview, this._state.noAnimationPreview); - if (PE.enumLock.noAnimationRepeat != undefined) + if (this._state.noAnimationRepeat != undefined) this.lockToolbar(PE.enumLock.noAnimationRepeat, this._state.noAnimationRepeat); - if (PE.enumLock.noAnimationDuration != undefined) + if (this._state.noAnimationDuration != undefined) this.lockToolbar(PE.enumLock.noAnimationDuration, this._state.noAnimationDuration); } diff --git a/apps/presentationeditor/main/app/controller/ViewTab.js b/apps/presentationeditor/main/app/controller/ViewTab.js index 9fedc8a61..23d85f9f4 100644 --- a/apps/presentationeditor/main/app/controller/ViewTab.js +++ b/apps/presentationeditor/main/app/controller/ViewTab.js @@ -202,8 +202,10 @@ define([ if (this.view) { var current_theme = Common.UI.Themes.currentThemeId() || Common.UI.Themes.defaultThemeId(), menu_item = _.findWhere(this.view.btnInterfaceTheme.menu.items, {value: current_theme}); - this.view.btnInterfaceTheme.menu.clearAll(); - menu_item.setChecked(true, true); + if ( !!menu_item ) { + this.view.btnInterfaceTheme.menu.clearAll(); + menu_item.setChecked(true, true); + } } }, diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 0fdeba5b0..581d359d8 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -558,13 +558,13 @@ define([ opt.checkable = true; opt.toggleGroup = 'animateeffects'; this.btnParameters.menu.addItem(opt); - (opt.value == option) && (selectedElement = this.btnParameters.menu.items[index]); + (opt.value == option || option===undefined && !!opt.defvalue) && (selectedElement = this.btnParameters.menu.items[index]); }, this); (effect && effect.familyEffect) && this.btnParameters.menu.addItem({caption: '--'}); } else { this.btnParameters.menu.clearAll(); this.btnParameters.menu.items.forEach(function (opt) { - if(opt.toggleGroup == 'animateeffects' && opt.value == option) + if(opt.toggleGroup == 'animateeffects' && (opt.value == option || option===undefined && !!opt.options.defvalue)) selectedElement = opt; },this); } diff --git a/apps/presentationeditor/main/app/view/AnimationDialog.js b/apps/presentationeditor/main/app/view/AnimationDialog.js index f00add7d5..a2da6fc64 100644 --- a/apps/presentationeditor/main/app/view/AnimationDialog.js +++ b/apps/presentationeditor/main/app/view/AnimationDialog.js @@ -110,6 +110,7 @@ define([ el : $('#animation-level'), cls: 'input-group-nr', editable: false, + valueField: 'id', style : 'margin-top: 16px; width: 100%;', menuStyle: 'min-width: 100%;', takeFocusOnClose: true @@ -156,7 +157,7 @@ define([ { 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.cmbLevel.setValue(item.get('id'), item.get('displayValue')); this.activeLevel = item.get('id'); this.fillEffect(); }, diff --git a/apps/presentationeditor/main/app/view/DateTimeDialog.js b/apps/presentationeditor/main/app/view/DateTimeDialog.js index 397aba526..e170cb6d1 100644 --- a/apps/presentationeditor/main/app/view/DateTimeDialog.js +++ b/apps/presentationeditor/main/app/view/DateTimeDialog.js @@ -89,7 +89,7 @@ define([ Common.UI.Window.prototype.render.call(this); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js index 41480db38..b1fb2b1a1 100644 --- a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js +++ b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js @@ -123,7 +123,7 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template', }); var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js index 236a161b8..3d4167f10 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettings.js +++ b/apps/presentationeditor/main/app/view/ShapeSettings.js @@ -448,8 +448,13 @@ define([ rawData = record; } - this.typeGradient = rawData.type + 90; - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -536,13 +541,13 @@ define([ btnDirectionRedraw: function(slider, gradientColorsStr) { this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); @@ -1302,9 +1307,12 @@ define([ { type:270, subtype:3}, { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { type:2, subtype:5} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1328,8 +1336,8 @@ define([ restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), itemTemplate: _.template('
') + +'<% if(type!=2) {%>linear-gradient(<%= type + 90 %>deg,<%= gradientColorsStr %>)' + +' <%} else {%> radial-gradient(<%= gradientColorsStr %>) <%}%>;">') }); }); this.btnDirection.render($('#shape-button-direction')); diff --git a/apps/presentationeditor/main/app/view/SlideSettings.js b/apps/presentationeditor/main/app/view/SlideSettings.js index 2b4005fdc..1bb821d15 100644 --- a/apps/presentationeditor/main/app/view/SlideSettings.js +++ b/apps/presentationeditor/main/app/view/SlideSettings.js @@ -110,7 +110,7 @@ define([ this.textureNames = [this.txtCanvas, this.txtCarton, this.txtDarkFabric, this.txtGrain, this.txtGranite, this.txtGreyPaper, this.txtKnit, this.txtLeather, this.txtBrownPaper, this.txtPapyrus, this.txtWood]; - this.gradientColorsStr=""; + this.gradientColorsStr="#000, #fff"; this.typeGradient = 90; this.render(); @@ -519,8 +519,13 @@ define([ rawData = record; } - this.typeGradient = rawData.type + 90; - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -607,13 +612,13 @@ define([ btnDirectionRedraw: function(slider, gradientColorsStr) { this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); @@ -799,9 +804,12 @@ define([ { type:270, subtype:3}, { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { type:2, subtype:5} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -825,8 +833,8 @@ define([ restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), itemTemplate: _.template('
') + +'<% if(type!=2) {%>linear-gradient(<%= type + 90 %>deg,<%= gradientColorsStr %>)' + +' <%} else {%> radial-gradient(<%= gradientColorsStr %>) <%}%>;">') }); }); this.btnDirection.render($('#slide-button-direction')); diff --git a/apps/presentationeditor/main/app/view/TextArtSettings.js b/apps/presentationeditor/main/app/view/TextArtSettings.js index 3819358a7..848e77b94 100644 --- a/apps/presentationeditor/main/app/view/TextArtSettings.js +++ b/apps/presentationeditor/main/app/view/TextArtSettings.js @@ -129,6 +129,8 @@ define([ this.TransformSettings = $('.textart-transform'); + this.gradientColorsStr="#000, #fff"; + this.typeGradient = 90 ; PE.getCollection('Common.Collections.TextArt').bind({ reset: this.fillTextArt.bind(this) }); @@ -397,10 +399,7 @@ define([ this.mnuDirectionPicker.restoreHeight = 174; var record = this.mnuDirectionPicker.store.findWhere({type: this.GradLinearDirectionType}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record) ? this.GradLinearDirectionType + 90 : -1; this.numGradientAngle.setValue(this.GradLinearDirectionType, true); this.numGradientAngle.setDisabled(this._locked); } else if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_PATH) { @@ -409,9 +408,9 @@ define([ this.mnuDirectionPicker.restoreHeight = 58; this.mnuDirectionPicker.selectByIndex(this.GradRadialDirectionIdx, true); if (this.GradRadialDirectionIdx>=0) - this.btnDirection.setIconCls('item-gradient ' + this._viewDataRadial[this.GradRadialDirectionIdx].iconcls); + this.typeGradient = this._viewDataRadial[this.GradRadialDirectionIdx].type; else - this.btnDirection.setIconCls(''); + this.typeGradient= -1; this.numGradientAngle.setValue(0, true); this.numGradientAngle.setDisabled(true); } @@ -451,7 +450,13 @@ define([ rawData = record; } - this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { @@ -528,6 +533,14 @@ define([ this.api.setEndPointHistory(); this._gradientApplyFunc(); } + + var arrGrCollors=[]; + var scale=(this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR)?1:0.7; + for (var index=0; index < slider.thumbs.length; index++) { + arrGrCollors.push(slider.getColorValue(index)+ ' '+ slider.getValue(index)*scale +'%'); + } + + this.btnDirectionRedraw(slider, arrGrCollors.join(', ')); this._sendUndoPoint = true; }, @@ -805,7 +818,7 @@ define([ this.onGradTypeSelect(this.cmbGradType, rec.attributes); } else { this.cmbGradType.setValue(''); - this.btnDirection.setIconCls(''); + this.typeGradient = -1; } this._state.GradFillType = this.GradFillType; } @@ -816,10 +829,7 @@ define([ this.GradLinearDirectionType=value; var record = this.mnuDirectionPicker.store.findWhere({type: value}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record)? value + 90 : -1; this.numGradientAngle.setValue(value, true); } } else @@ -852,10 +862,17 @@ define([ me.GradColor.values[index] = position; } }); + var arrGrCollors=[]; + var scale=(this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR)?1:0.7; + for (var index=0; index= this.GradColor.colors.length) { me.GradColor.currentIdx = 0; } @@ -1076,6 +1093,26 @@ define([ } }, + btnDirectionRedraw: function(slider, gradientColorsStr) { + this.gradientColorsStr = gradientColorsStr; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); + + if (this.typeGradient == -1) + this.btnDirection.$icon.css({'background': 'none'}); + else if (this.typeGradient == 2) + this.btnDirection.$icon.css({'background': ('radial-gradient(' + gradientColorsStr + ')')}); + else + this.btnDirection.$icon.css({ + 'background': ('linear-gradient(' + this.typeGradient + 'deg, ' + gradientColorsStr + ')') + }); + }, + createDelayedControls: function() { var me = this; @@ -1218,18 +1255,21 @@ define([ this.lockedControls.push(this.cmbGradType); this._viewDataLinear = [ - { offsetx: 0, offsety: 0, type:45, subtype:-1, iconcls:'gradient-left-top' }, - { offsetx: 50, offsety: 0, type:90, subtype:4, iconcls:'gradient-top'}, - { offsetx: 100, offsety: 0, type:135, subtype:5, iconcls:'gradient-right-top'}, - { offsetx: 0, offsety: 50, type:0, subtype:6, iconcls:'gradient-left', cls: 'item-gradient-separator', selected: true}, - { offsetx: 100, offsety: 50, type:180, subtype:1, iconcls:'gradient-right'}, - { offsetx: 0, offsety: 100, type:315, subtype:2, iconcls:'gradient-left-bottom'}, - { offsetx: 50, offsety: 100, type:270, subtype:3, iconcls:'gradient-bottom'}, - { offsetx: 100, offsety: 100, type:225, subtype:7, iconcls:'gradient-right-bottom'} + { type:45, subtype:-1}, + { type:90, subtype:4}, + { type:135, subtype:5}, + { type:0, subtype:6, cls: 'item-gradient-separator', selected: true}, + { type:180, subtype:1}, + { type:315, subtype:2}, + { type:270, subtype:3}, + { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { offsetx: 100, offsety: 150, type:2, subtype:5, iconcls:'gradient-radial-center'} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1252,7 +1292,9 @@ define([ parentMenu: btn.menu, restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); }); this.btnDirection.render($('#textart-button-direction')); diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index f756587f8..317cc7223 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -461,8 +461,8 @@ "PE.Controllers.Main.txtEditingMode": "Актывацыя рэжыму рэдагавання…", "PE.Controllers.Main.txtErrorLoadHistory": "Не атрымалася загрузіць гісторыю", "PE.Controllers.Main.txtFiguredArrows": "Фігурныя стрэлкі", - "PE.Controllers.Main.txtFooter": "Ніжні калантытул", - "PE.Controllers.Main.txtHeader": "Верхні калантытул", + "PE.Controllers.Main.txtFooter": "Ніжні калонтытул", + "PE.Controllers.Main.txtHeader": "Верхні калонтытул", "PE.Controllers.Main.txtImage": "Вобраз", "PE.Controllers.Main.txtLines": "Лініі", "PE.Controllers.Main.txtLoading": "Загрузка…", @@ -1373,13 +1373,13 @@ "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Увага", "PE.Views.HeaderFooterDialog.textDateTime": "Дата і час", "PE.Views.HeaderFooterDialog.textFixed": "Фіксаванае", - "PE.Views.HeaderFooterDialog.textFooter": "Тэкст ніжняга калантытула", + "PE.Views.HeaderFooterDialog.textFooter": "Тэкст ніжняга калонтытула", "PE.Views.HeaderFooterDialog.textFormat": "Фарматы", "PE.Views.HeaderFooterDialog.textLang": "Мова", "PE.Views.HeaderFooterDialog.textNotTitle": "Не паказваць на тытульным слайдзе", "PE.Views.HeaderFooterDialog.textPreview": "Прагляд", "PE.Views.HeaderFooterDialog.textSlideNum": "Нумар слайда", - "PE.Views.HeaderFooterDialog.textTitle": "Налады ніжняга калантытула", + "PE.Views.HeaderFooterDialog.textTitle": "Налады ніжняга калонтытула", "PE.Views.HeaderFooterDialog.textUpdate": "Абнаўляць аўтаматычна", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Паказваць", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Звязаць з", @@ -1806,7 +1806,7 @@ "PE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", "PE.Views.Toolbar.capBtnComment": "Каментар", "PE.Views.Toolbar.capBtnDateTime": "Дата і час", - "PE.Views.Toolbar.capBtnInsHeader": "Ніжні калантытул", + "PE.Views.Toolbar.capBtnInsHeader": "Ніжні калонтытул", "PE.Views.Toolbar.capBtnInsSymbol": "Сімвал", "PE.Views.Toolbar.capBtnSlideNum": "Нумар слайда", "PE.Views.Toolbar.capInsertAudio": "Аўдыё", @@ -1877,7 +1877,7 @@ "PE.Views.Toolbar.tipDateTime": "Уставіць быгучую назву і час", "PE.Views.Toolbar.tipDecFont": "Паменшыць памер шрыфту", "PE.Views.Toolbar.tipDecPrLeft": "Паменшыць водступ", - "PE.Views.Toolbar.tipEditHeader": "Рэдагаваць ніжні калантытул", + "PE.Views.Toolbar.tipEditHeader": "Рэдагаваць ніжні калонтытул", "PE.Views.Toolbar.tipFontColor": "Колер шрыфту", "PE.Views.Toolbar.tipFontName": "Шрыфт", "PE.Views.Toolbar.tipFontSize": "Памер шрыфту", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 07e843b29..d3569eaad 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Entrant", "Common.define.effectData.textInFromScreenCenter": "Amplia des del centre de la pantalla", "Common.define.effectData.textInSlightly": "Amplia lleugerament", - "Common.define.effectData.textInToScreenCenter": "Al centre de la pantalla", "Common.define.effectData.textInvertedSquare": "Quadrat invertit", "Common.define.effectData.textInvertedTriangle": "Triangle invertit", "Common.define.effectData.textLeft": "Esquerra", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Cap a baix", "Common.define.effectData.textToBottomLeft": "Cap a baix a l'esquerra", "Common.define.effectData.textToBottomRight": "Cap a baix a la dreta", - "Common.define.effectData.textToFromScreenBottom": "Redueix cap a la part inferior de la pantalla", "Common.define.effectData.textToLeft": "Cap a la dreta", "Common.define.effectData.textToRight": "Cap a la dreta", "Common.define.effectData.textToTop": "Cap a dalt", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index bf14c219c..67d9dbeb7 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -48,32 +48,71 @@ "Common.define.chartData.textStock": "Burzovní graf", "Common.define.chartData.textSurface": "Povrch", "Common.define.effectData.textAcross": "Napříč", - "Common.define.effectData.textAppear": "Objeví", + "Common.define.effectData.textAppear": "Celé najednou", + "Common.define.effectData.textArcDown": "Oblouk dole", + "Common.define.effectData.textArcLeft": "Oblouk vlevo", + "Common.define.effectData.textArcRight": "Oblouk vpravo", + "Common.define.effectData.textArcUp": "Oblouk nahoře", "Common.define.effectData.textBasic": "Základní", + "Common.define.effectData.textBasicSwivel": "Základní otočný", "Common.define.effectData.textBasicZoom": "Základní přiblížení", "Common.define.effectData.textBean": "Fazole", "Common.define.effectData.textBlinds": "Žaluzie", - "Common.define.effectData.textBrushColor": "Barva štětce", + "Common.define.effectData.textBlink": "Mrknutí", + "Common.define.effectData.textBoldFlash": "Záblesk tučně", + "Common.define.effectData.textBoldReveal": "Zobrazení tučně", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Odraz", + "Common.define.effectData.textBounceLeft": "Odraz vlevo", + "Common.define.effectData.textBounceRight": "Odraz vpravo", + "Common.define.effectData.textBox": "Schránka", + "Common.define.effectData.textBrushColor": "Přebarvení", + "Common.define.effectData.textCenterRevolve": "Rotace kolem středu", + "Common.define.effectData.textCheckerboard": "Šachovnice", "Common.define.effectData.textCircle": "Kruh", "Common.define.effectData.textCollapse": "Sbalit", + "Common.define.effectData.textColorPulse": "Barevný pulz", "Common.define.effectData.textComplementaryColor": "Doplňková barva", "Common.define.effectData.textComplementaryColor2": "Doplňková barva 2", "Common.define.effectData.textCompress": "Komprimovat", "Common.define.effectData.textContrast": "Kontrast", "Common.define.effectData.textContrastingColor": "Kontrastující barva", "Common.define.effectData.textCredits": "Poděkování", + "Common.define.effectData.textCrescentMoon": "Srpek měsíce", + "Common.define.effectData.textCurveDown": "Křivka dolů", + "Common.define.effectData.textCurvedSquare": "Zaoblený čtverec", + "Common.define.effectData.textCurvedX": "Zakřivené X", + "Common.define.effectData.textCurvyLeft": "Vývrtka doleva", + "Common.define.effectData.textCurvyRight": "Vývrtka doprava", + "Common.define.effectData.textCurvyStar": "Zakřivená hvězda", "Common.define.effectData.textCustomPath": "Uživatelsky určená cesta", + "Common.define.effectData.textCuverUp": "Křivka nahoru", + "Common.define.effectData.textDarken": "Tmavnutí", + "Common.define.effectData.textDecayingWave": "Rozpadající se vlna", + "Common.define.effectData.textDesaturate": "Do černobílé", + "Common.define.effectData.textDiagonalDownRight": "Diagonálně vpravo dolů", + "Common.define.effectData.textDiagonalUpRight": "Diagonálně vpravo nahoru", "Common.define.effectData.textDiamond": "Kosodélník", - "Common.define.effectData.textDisappear": "Zmizet", + "Common.define.effectData.textDisappear": "Prolnutí", + "Common.define.effectData.textDissolveIn": "Rozpustit dovnitř", + "Common.define.effectData.textDissolveOut": "Rozpustit vně", "Common.define.effectData.textDown": "Dolů", "Common.define.effectData.textDrop": "Zahodit", "Common.define.effectData.textEmphasis": "Zdůrazňující efekt", + "Common.define.effectData.textEntrance": "Vstupní efekt", + "Common.define.effectData.textEqualTriangle": "Rovnoramenný trojúhelník", "Common.define.effectData.textExciting": "Vzrušující", "Common.define.effectData.textExit": "Efekt při ukončení", "Common.define.effectData.textExpand": "Rozšířit", "Common.define.effectData.textFade": "Vyblednout", + "Common.define.effectData.textFigureFour": "Znásobená osmička", "Common.define.effectData.textFillColor": "Barva výplně", "Common.define.effectData.textFlip": "Převrátit", + "Common.define.effectData.textFloat": "Hladké", + "Common.define.effectData.textFloatDown": "Plynutí dolů", + "Common.define.effectData.textFloatIn": "Hladké zobrazení", + "Common.define.effectData.textFloatOut": "Hladké zmizení", + "Common.define.effectData.textFloatUp": "Plynutí nahoru", "Common.define.effectData.textFlyIn": "Přiletět", "Common.define.effectData.textFlyOut": "Odletět", "Common.define.effectData.textFontColor": "Barva písma", @@ -86,49 +125,114 @@ "Common.define.effectData.textFromTop": "Shora", "Common.define.effectData.textFromTopLeft": "Zleva nahoře", "Common.define.effectData.textFromTopRight": "Zprava nahoře", + "Common.define.effectData.textFunnel": "Nálevka", + "Common.define.effectData.textGrowShrink": "Růst/Zmenšit", "Common.define.effectData.textGrowTurn": "Narůst a otočit", + "Common.define.effectData.textGrowWithColor": "Narůst se změnou barvy", "Common.define.effectData.textHeart": "Srdce", "Common.define.effectData.textHeartbeat": "Srdeční tep", "Common.define.effectData.textHexagon": "Šestiúhelník", "Common.define.effectData.textHorizontal": "Vodorovné", - "Common.define.effectData.textInFromScreenCenter": "Ze středu obrazovky", + "Common.define.effectData.textHorizontalFigure": "Ležatá osmička", + "Common.define.effectData.textHorizontalIn": "Vodorovně uvnitř", + "Common.define.effectData.textHorizontalOut": "Vodorovně vně", + "Common.define.effectData.textIn": "Dovnitř", + "Common.define.effectData.textInFromScreenCenter": "Dovnitř ze středu obrazovky", + "Common.define.effectData.textInSlightly": "Dovnitř mírně", "Common.define.effectData.textInvertedSquare": "Převrácený čtverec", "Common.define.effectData.textInvertedTriangle": "Převrácený trojúhelník", - "Common.define.effectData.textLineColor": "Barva čáry", + "Common.define.effectData.textLeft": "Vlevo", + "Common.define.effectData.textLeftDown": "Vlevo dolů", + "Common.define.effectData.textLeftUp": "Vlevo nahoru", + "Common.define.effectData.textLighten": "Zesvětlit", + "Common.define.effectData.textLineColor": "Barva ohraničení", "Common.define.effectData.textLinesCurves": "Křivky čar", + "Common.define.effectData.textLoopDeLoop": "Smyčkovitě", "Common.define.effectData.textModerate": "Mírné", "Common.define.effectData.textNeutron": "Neutron", "Common.define.effectData.textObjectCenter": "Střed objektu", "Common.define.effectData.textObjectColor": "Barva objektu", "Common.define.effectData.textOctagon": "Osmiúhelník", + "Common.define.effectData.textOut": "Vně", + "Common.define.effectData.textOutFromScreenBottom": "Pryč skrze dolní část obrazovky", + "Common.define.effectData.textOutSlightly": "Vně mírně", + "Common.define.effectData.textParallelogram": "Rovnoběžník", "Common.define.effectData.textPath": "Trasa pohybu", + "Common.define.effectData.textPeanut": "Burský oříšek", + "Common.define.effectData.textPeekIn": "Přilétnutí", + "Common.define.effectData.textPeekOut": "Odlétnutí", "Common.define.effectData.textPentagon": "Pětiúhelník", + "Common.define.effectData.textPinwheel": "Větrník", "Common.define.effectData.textPlus": "Plus", - "Common.define.effectData.textPulse": "Puls", + "Common.define.effectData.textPointStar": "Hvězda s paprsky", + "Common.define.effectData.textPointStar4": "Hvězda se 4 paprsky", + "Common.define.effectData.textPointStar5": "Hvězda s 5 paprsky", + "Common.define.effectData.textPointStar6": "Hvězda s 6 paprsky", + "Common.define.effectData.textPointStar8": "Hvězda s 8 paprsky", + "Common.define.effectData.textPulse": "Pulz", "Common.define.effectData.textRandomBars": "Náhodné pruhy", + "Common.define.effectData.textRight": "Vpravo", + "Common.define.effectData.textRightDown": "Vpravo dole", "Common.define.effectData.textRightTriangle": "Pravoúhlý trojúhelník", + "Common.define.effectData.textRightUp": "Vpravo nahoře", + "Common.define.effectData.textRiseUp": "Stoupat", + "Common.define.effectData.textSCurve1": "Křivka 1", + "Common.define.effectData.textSCurve2": "Křivka 2", "Common.define.effectData.textShape": "Tvar", + "Common.define.effectData.textShimmer": "Třpit", "Common.define.effectData.textShrinkTurn": "Zmenšit a otočit", "Common.define.effectData.textSineWave": "Sinusová vlna", + "Common.define.effectData.textSinkDown": "Potopení", + "Common.define.effectData.textSlideCenter": "Střed snímku", "Common.define.effectData.textSpecial": "Speciální", + "Common.define.effectData.textSpin": "Točit", + "Common.define.effectData.textSpinner": "Odstředivka", + "Common.define.effectData.textSpiralIn": "Spirála", + "Common.define.effectData.textSpiralLeft": "Vlevo do spirály", + "Common.define.effectData.textSpiralOut": "Vně do spirály", + "Common.define.effectData.textSpiralRight": "Vpravo do spirály", "Common.define.effectData.textSplit": "Rozdělit", + "Common.define.effectData.textSpoke1": "1 Paprsek", + "Common.define.effectData.textSpoke2": "2 Paprsky", + "Common.define.effectData.textSpoke3": "3 Paprsky", + "Common.define.effectData.textSpoke4": "4 Paprsky", + "Common.define.effectData.textSpoke8": "8 paprsků", "Common.define.effectData.textSpring": "Pružina", "Common.define.effectData.textSquare": "Čtverec", + "Common.define.effectData.textStairsDown": "Po schodech dolů", "Common.define.effectData.textStretch": "Roztáhnout", "Common.define.effectData.textStrips": "Proužky", "Common.define.effectData.textSubtle": "Jemné", + "Common.define.effectData.textSwivel": "Otočný", + "Common.define.effectData.textSwoosh": "Vlnovka", + "Common.define.effectData.textTeardrop": "Slza", + "Common.define.effectData.textTeeter": "Houpačka", + "Common.define.effectData.textToBottom": "Dolů", + "Common.define.effectData.textToBottomLeft": "Dolů vlevo", + "Common.define.effectData.textToBottomRight": "Dolů vpravo", "Common.define.effectData.textToLeft": "Doleva", "Common.define.effectData.textToRight": "Doprava", "Common.define.effectData.textToTop": "Nahoru", + "Common.define.effectData.textToTopLeft": "Nahoru vlevo", + "Common.define.effectData.textToTopRight": "Nahoru vpravo", "Common.define.effectData.textTransparency": "Průhlednost", "Common.define.effectData.textTrapezoid": "Lichoběžník", + "Common.define.effectData.textTurnDown": "Otočit dolů", + "Common.define.effectData.textTurnDownRight": "Otočit vpravo dolů", "Common.define.effectData.textTurnUp": "Převrátit nahoru", "Common.define.effectData.textTurnUpRight": "Převrátit vpravo", "Common.define.effectData.textUnderline": "Podtrhnout", "Common.define.effectData.textUp": "Nahoru", "Common.define.effectData.textVertical": "Svislé", + "Common.define.effectData.textVerticalFigure": "Vertikální osmička", + "Common.define.effectData.textVerticalIn": "Svislý uvnitř", + "Common.define.effectData.textVerticalOut": "Svislý vně", "Common.define.effectData.textWave": "Vlnka", + "Common.define.effectData.textWedge": "Konjunkce", "Common.define.effectData.textWheel": "Kolo", + "Common.define.effectData.textWhip": "Bič", + "Common.define.effectData.textWipe": "Setření", + "Common.define.effectData.textZigzag": "Cikcak", "Common.define.effectData.textZoom": "Přiblížení", "Common.Translation.warnFileLocked": "Soubor je upravován v jiné aplikaci. Můžete pokračovat v úpravách a uložit ho jako kopii.", "Common.Translation.warnFileLockedBtnEdit": "Vytvořit kopii", @@ -159,7 +263,7 @@ "Common.UI.SynchronizeTip.textDontShow": "Tuto zprávu už nezobrazovat", "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl mezitím změněn jiným uživatelem.
Kliknutím uložte změny provedené vámi a načtěte ty od ostatních.", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", - "Common.UI.ThemeColorPalette.textThemeColors": "Barvy motivu vzhledu", + "Common.UI.ThemeColorPalette.textThemeColors": "Barvy vzhledu prostředí", "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", "Common.UI.Themes.txtThemeDark": "Tmavé", "Common.UI.Themes.txtThemeLight": "Světlé", @@ -189,6 +293,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatické odrážkové seznamy", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Odstranit", + "Common.Views.AutoCorrectDialog.textFLCells": "První písmeno v obsahu buněk tabulky měnit na velké", "Common.Views.AutoCorrectDialog.textFLSentence": "Velká na začátku věty", "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a síťové přístupy s hypertextovými odkazy", "Common.Views.AutoCorrectDialog.textHyphens": "Spojovníky (--) s pomlčkou (—)", @@ -522,8 +627,8 @@ "PE.Controllers.Main.loadImageTitleText": "Načítání obrázku", "PE.Controllers.Main.loadingDocumentTextText": "Načítání prezentace…", "PE.Controllers.Main.loadingDocumentTitleText": "Načítání prezentace", - "PE.Controllers.Main.loadThemeTextText": "Načítání motivu vzhledu...", - "PE.Controllers.Main.loadThemeTitleText": "Načítání motivu vzhledu", + "PE.Controllers.Main.loadThemeTextText": "Načítání vzhledu prostředí...", + "PE.Controllers.Main.loadThemeTitleText": "Načítání vzhledu prostředí", "PE.Controllers.Main.notcriticalErrorTitle": "Varování", "PE.Controllers.Main.openErrorText": "Při otevírání souboru došlo k chybě.", "PE.Controllers.Main.openTextText": "Otevírání prezentace…", @@ -815,7 +920,7 @@ "PE.Controllers.Main.txtTheme_green_leaf": "Zelený list", "PE.Controllers.Main.txtTheme_lines": "Řádky", "PE.Controllers.Main.txtTheme_office": "Kancelář", - "PE.Controllers.Main.txtTheme_office_theme": "Kancelářský motiv vzhledu", + "PE.Controllers.Main.txtTheme_office_theme": "Kancelářský vzhledu prostředí", "PE.Controllers.Main.txtTheme_official": "Oficiální", "PE.Controllers.Main.txtTheme_pixel": "Pixel", "PE.Controllers.Main.txtTheme_safari": "Safari", @@ -840,6 +945,7 @@ "PE.Controllers.Main.warnNoLicense": "Došlo dosažení limitu souběžných připojení %1 editorů. Dokument bude otevřen pouze pro náhled.
Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "PE.Controllers.Main.warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "PE.Controllers.Main.warnProcessRightsChange": "Bylo vám odepřeno oprávnění soubor upravovat.", + "PE.Controllers.Statusbar.textDisconnect": "Spojení je ztraceno
Pokus o opětovné připojení. Zkontrolujte nastavení připojení.", "PE.Controllers.Statusbar.zoomText": "Přiblížení {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Písmo (font) ve kterém se chystáte uložit, není na tomto zařízení k dispozici.
Text bude zobrazen pomocí některého ze systémových písem s tím, že uložené písmo bude použito, když bude dostupné.
Chcete pokračovat?", "PE.Controllers.Toolbar.textAccent": "Akcenty", @@ -1180,11 +1286,12 @@ "PE.Views.Animation.strDuration": "Doba trvání", "PE.Views.Animation.strRepeat": "Zopakovat", "PE.Views.Animation.strRewind": "Vrátit na začátek", - "PE.Views.Animation.strStart": "Začátek", + "PE.Views.Animation.strStart": "Spustit", "PE.Views.Animation.strTrigger": "Spouštěč", "PE.Views.Animation.textMoreEffects": "Zobrazit další efekty", "PE.Views.Animation.textMoveEarlier": "Přesunout dřívější", "PE.Views.Animation.textMoveLater": "Přesunout pozdější", + "PE.Views.Animation.textMultiple": "vícenásobný", "PE.Views.Animation.textNone": "Žádné", "PE.Views.Animation.textOnClickOf": "Při kliknutí na", "PE.Views.Animation.textOnClickSequence": "Při posloupnosti kliknutí", @@ -1195,6 +1302,7 @@ "PE.Views.Animation.txtAnimationPane": "Podokno animací", "PE.Views.Animation.txtParameters": "Parametry", "PE.Views.Animation.txtPreview": "Náhled", + "PE.Views.Animation.txtSec": "sek", "PE.Views.AnimationDialog.textPreviewEffect": "Náhled efektu", "PE.Views.AnimationDialog.textTitle": "Další efekty", "PE.Views.ChartSettings.textAdvanced": "Zobrazit pokročilá nastavení", @@ -1315,7 +1423,7 @@ "PE.Views.DocumentHolder.txtBorderProps": "Vlastnosti ohraničení", "PE.Views.DocumentHolder.txtBottom": "Dole", "PE.Views.DocumentHolder.txtChangeLayout": "Změnit uspořádání", - "PE.Views.DocumentHolder.txtChangeTheme": "Změnit motiv vzhledu", + "PE.Views.DocumentHolder.txtChangeTheme": "Změnit vzhled prostředí", "PE.Views.DocumentHolder.txtColumnAlign": "Zarovnání sloupce", "PE.Views.DocumentHolder.txtDecreaseArg": "Snížit velikost argumentu", "PE.Views.DocumentHolder.txtDeleteArg": "Odstranit argument", @@ -1361,9 +1469,11 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Limit pod textem", "PE.Views.DocumentHolder.txtMatchBrackets": "Přizpůsobit závorky výšce argumentu", "PE.Views.DocumentHolder.txtMatrixAlign": "Zarovnání matice", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Přesunout snímek na konec", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Přesunout snímek na začátek", "PE.Views.DocumentHolder.txtNewSlide": "Nový snímek", "PE.Views.DocumentHolder.txtOverbar": "Čárka nad textem", - "PE.Views.DocumentHolder.txtPasteDestFormat": "Použít cílový motiv vzhledu", + "PE.Views.DocumentHolder.txtPasteDestFormat": "Použít cílový vzhledu prostředí", "PE.Views.DocumentHolder.txtPastePicture": "Obrázek", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ponechat formátování zdroje", "PE.Views.DocumentHolder.txtPressLink": "Stikněte CTRL a klikněte na odkaz", @@ -1891,7 +2001,7 @@ "PE.Views.TableSettings.txtTable_NoGrid": "Žádná mřížka", "PE.Views.TableSettings.txtTable_NoStyle": "Bez stylu", "PE.Views.TableSettings.txtTable_TableGrid": "Mřížka tabulky", - "PE.Views.TableSettings.txtTable_ThemedStyle": "Styl opatřený motivem vzhledu", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Styl se vzhledem prostředí", "PE.Views.TableSettingsAdvanced.textAlt": "Alternativní text", "PE.Views.TableSettingsAdvanced.textAltDescription": "Popis", "PE.Views.TableSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", @@ -2069,7 +2179,7 @@ "PE.Views.Toolbar.tipShapeArrange": "Uspořádat obrazec", "PE.Views.Toolbar.tipSlideNum": "Vložit číslo snímku", "PE.Views.Toolbar.tipSlideSize": "Vybrat velikost snímku", - "PE.Views.Toolbar.tipSlideTheme": "Motiv vzhledu snímku", + "PE.Views.Toolbar.tipSlideTheme": "Vzhledu prostředí snímku", "PE.Views.Toolbar.tipUndo": "Krok zpět", "PE.Views.Toolbar.tipVAligh": "Svislé zarovnání", "PE.Views.Toolbar.tipViewSettings": "Zobrazit nastavení", @@ -2129,7 +2239,7 @@ "PE.Views.Transitions.textVerticalIn": "Svislý uvnitř", "PE.Views.Transitions.textVerticalOut": "Svislý vně", "PE.Views.Transitions.textWedge": "Konjunkce", - "PE.Views.Transitions.textWipe": "Vyčistit", + "PE.Views.Transitions.textWipe": "Setření", "PE.Views.Transitions.textZoom": "Přiblížení", "PE.Views.Transitions.textZoomIn": "Přiblížit", "PE.Views.Transitions.textZoomOut": "Oddálit", @@ -2138,9 +2248,10 @@ "PE.Views.Transitions.txtParameters": "Parametry", "PE.Views.Transitions.txtPreview": "Náhled", "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovat panel nástrojů", "PE.Views.ViewTab.textFitToSlide": "Přizpůsobit snímku", "PE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce", - "PE.Views.ViewTab.textInterfaceTheme": "Vzhled uživatelského rozhraní", + "PE.Views.ViewTab.textInterfaceTheme": "Vzhled prostředí", "PE.Views.ViewTab.textNotes": "Poznámky", "PE.Views.ViewTab.textRulers": "Pravítka", "PE.Views.ViewTab.textStatusBar": "Stavová lišta", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 21c8b33d8..0e69ffd4a 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "In", "Common.define.effectData.textInFromScreenCenter": "Vergrößern von Bildschirmmitte", "Common.define.effectData.textInSlightly": "Etwas vergrößern", - "Common.define.effectData.textInToScreenCenter": "Vergrößern in Bildschirmmitte", "Common.define.effectData.textInvertedSquare": "Invertiertes Quadrat", "Common.define.effectData.textInvertedTriangle": "Invertiertes Dreieck", "Common.define.effectData.textLeft": "Nach links", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Nach unten", "Common.define.effectData.textToBottomLeft": "Nach links unten", "Common.define.effectData.textToBottomRight": "Nach rechts unten", - "Common.define.effectData.textToFromScreenBottom": "Verkleinern nach unten", "Common.define.effectData.textToLeft": "Nach links", "Common.define.effectData.textToRight": "Nach rechts", "Common.define.effectData.textToTop": "Nach oben", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 59085b43f..498655dfa 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -127,6 +127,8 @@ "Common.define.effectData.textFromTopRight": "Από την Κορυφή Δεξιά", "Common.define.effectData.textFunnel": "Χωνί", "Common.define.effectData.textGrowShrink": "Μεγέθυνση/Σμίκρυνση", + "Common.define.effectData.textGrowTurn": "Μεγέθυνση & Στροφή", + "Common.define.effectData.textGrowWithColor": "Μεγέθυνση Με Χρώμα", "Common.define.effectData.textHeart": "Καρδιά", "Common.define.effectData.textHeartbeat": "Σφυγμός", "Common.define.effectData.textHexagon": "Εξάγωνο", @@ -137,7 +139,6 @@ "Common.define.effectData.textIn": "Μέσα", "Common.define.effectData.textInFromScreenCenter": "Μέσα Από το Κέντρο της Οθόνης", "Common.define.effectData.textInSlightly": "Ελαφρώς Μέσα", - "Common.define.effectData.textInToScreenCenter": "Μέσα Προς το Κέντρο της Οθόνης", "Common.define.effectData.textInvertedSquare": "Ανεστραμμένο Τετράγωνο", "Common.define.effectData.textInvertedTriangle": "Ανεστραμμένο Τρίγωνο", "Common.define.effectData.textLeft": "Αριστερά", @@ -163,6 +164,7 @@ "Common.define.effectData.textPentagon": "Πεντάγωνο", "Common.define.effectData.textPinwheel": "Τροχός", "Common.define.effectData.textPlus": "Συν", + "Common.define.effectData.textPointStar": "Αστέρι με Σημεία", "Common.define.effectData.textPointStar4": "Αστέρι 4 Σημείων", "Common.define.effectData.textPointStar5": "Αστέρι 5 Σημείων", "Common.define.effectData.textPointStar6": "Αστέρι 6 Σημείων", @@ -208,7 +210,6 @@ "Common.define.effectData.textToBottom": "Προς το Κάτω Μέρος", "Common.define.effectData.textToBottomLeft": "Προς το Κάτω Μέρος Αριστερά", "Common.define.effectData.textToBottomRight": "Προς το Κάτω Μέρος Δεξιά", - "Common.define.effectData.textToFromScreenBottom": "Έξω Προς το Κάτω Μέρος της Οθόνης", "Common.define.effectData.textToLeft": "Προς τα Αριστερά", "Common.define.effectData.textToRight": "Προς τα Δεξιά", "Common.define.effectData.textToTop": "Προς την Κορυφή", @@ -216,6 +217,10 @@ "Common.define.effectData.textToTopRight": "Προς την Κορυφή Δεξιά", "Common.define.effectData.textTransparency": "Διαφάνεια", "Common.define.effectData.textTrapezoid": "Τραπέζιο", + "Common.define.effectData.textTurnDown": "Στροφή Κάτω", + "Common.define.effectData.textTurnDownRight": "Στροφή Κάτω Δεξιά", + "Common.define.effectData.textTurnUp": "Στροφή Πάνω", + "Common.define.effectData.textTurnUpRight": "Στροφή Πάνω Δεξιά", "Common.define.effectData.textUnderline": "Υπογράμμιση", "Common.define.effectData.textUp": "Πάνω", "Common.define.effectData.textVertical": "Κατακόρυφος", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 07c8f99e2..7b5073e89 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -140,7 +140,7 @@ "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.textInToScreenBottom": "In To Screen Bottom", "Common.define.effectData.textInvertedSquare": "Inverted Square", "Common.define.effectData.textInvertedTriangle": "Inverted Triangle", "Common.define.effectData.textLeft": "Left", @@ -160,6 +160,7 @@ "Common.define.effectData.textOut": "Out", "Common.define.effectData.textOutFromScreenBottom": "Out From Screen Bottom", "Common.define.effectData.textOutSlightly": "Out Slightly", + "Common.define.effectData.textOutToScreenCenter": "Out To Screen Center", "Common.define.effectData.textParallelogram": "Parallelogram", "Common.define.effectData.textPath": "Motion Path", "Common.define.effectData.textPeanut": "Peanut", @@ -215,7 +216,6 @@ "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", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index d548c834d..a54532638 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Hacia dentro", "Common.define.effectData.textInFromScreenCenter": "Aumentar desde el centro de pantalla", "Common.define.effectData.textInSlightly": "Acercar ligeramente", - "Common.define.effectData.textInToScreenCenter": "Aumentar hacia el centro de la pantalla", "Common.define.effectData.textInvertedSquare": "Cuadrado invertido", "Common.define.effectData.textInvertedTriangle": "Triángulo invertido", "Common.define.effectData.textLeft": "Izquierda", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Hacia abajo", "Common.define.effectData.textToBottomLeft": "Hacia abajo a la izquierda", "Common.define.effectData.textToBottomRight": "Hacia abajo a la derecha", - "Common.define.effectData.textToFromScreenBottom": "De fuera hacia la parte inferior de la pantalla", "Common.define.effectData.textToLeft": "A la izquierda", "Common.define.effectData.textToRight": "A la derecha", "Common.define.effectData.textToTop": "Hacia arriba", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 58bf7458a..b46c2bfb5 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Vers l’intérieur", "Common.define.effectData.textInFromScreenCenter": "Avant depuis le centre de l’écran", "Common.define.effectData.textInSlightly": "Avant léger", - "Common.define.effectData.textInToScreenCenter": "Avant vers le centre de l’écran", "Common.define.effectData.textInvertedSquare": "Carré inversé", "Common.define.effectData.textInvertedTriangle": "Triangle inversé", "Common.define.effectData.textLeft": "Gauche", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Vers le bas", "Common.define.effectData.textToBottomLeft": "Vers le coin inférieur gauche", "Common.define.effectData.textToBottomRight": "Vers le coin inférieur droit", - "Common.define.effectData.textToFromScreenBottom": "Arrière vers le bas de l’écran", "Common.define.effectData.textToLeft": "Vers la gauche", "Common.define.effectData.textToRight": "Vers la droite", "Common.define.effectData.textToTop": "Vers le haut", diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index e383c187e..fbf7977bc 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "En", "Common.define.effectData.textInFromScreenCenter": "Aumentar desde o centro de pantalla", "Common.define.effectData.textInSlightly": "Achegar lixeiramente", - "Common.define.effectData.textInToScreenCenter": "Aumentar ao centro da pantalla", "Common.define.effectData.textInvertedSquare": "Cadrado invertido", "Common.define.effectData.textInvertedTriangle": "Triángulo invertido", "Common.define.effectData.textLeft": "Esquerda", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Cara abaixo", "Common.define.effectData.textToBottomLeft": "Cara abaixo á esquerda", "Common.define.effectData.textToBottomRight": "Cara abaixo á dereita", - "Common.define.effectData.textToFromScreenBottom": "De fóra cara á parte inferior da pantalla", "Common.define.effectData.textToLeft": "Á esquerda", "Common.define.effectData.textToRight": "Á dereita", "Common.define.effectData.textToTop": "Cara arriba", diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index 7d81c6e09..e3e328972 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -5,6 +5,28 @@ "Common.Controllers.ExternalDiagramEditor.textClose": "Close", "Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Warning", + "Common.define.chartData.textArea": "Grafik Area", + "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textCharts": "Bagan", + "Common.define.chartData.textColumn": "Kolom", + "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textStock": "Diagram Garis", + "Common.define.effectData.textFillColor": "Fill Color", + "Common.define.effectData.textFontColor": "Warna Huruf", + "Common.define.effectData.textHorizontal": "Horisontal", + "Common.define.effectData.textIn": "Dalam", + "Common.define.effectData.textLeft": "Kiri", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textRight": "Kanan", + "Common.define.effectData.textSquare": "Persegi", + "Common.define.effectData.textStretch": "Rentangkan", + "Common.define.effectData.textUnderline": "Garis bawah", + "Common.define.effectData.textUp": "Naik", + "Common.define.effectData.textVertical": "Vertikal", + "Common.define.effectData.textZoom": "Perbesar", + "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.UI.ButtonColored.textAutoColor": "Otomatis", + "Common.UI.ButtonColored.textNewColor": "Tambahkan Warna Khusus Baru", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", @@ -25,6 +47,8 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", + "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", + "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Window.cancelButtonText": "Cancel", "Common.UI.Window.closeButtonText": "Close", "Common.UI.Window.noButtonText": "No", @@ -42,17 +66,26 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Version ", + "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textBy": "oleh", + "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", + "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", + "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.textAdd": "Add", "Common.Views.Comments.textAddComment": "Tambahkan", "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", "Common.Views.Comments.textAddReply": "Add Reply", + "Common.Views.Comments.textAll": "Semua", "Common.Views.Comments.textAnonym": "Guest", "Common.Views.Comments.textCancel": "Cancel", "Common.Views.Comments.textClose": "Close", "Common.Views.Comments.textComments": "Comments", "Common.Views.Comments.textEdit": "Edit", "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", + "Common.Views.Comments.textHintAddComment": "Tambahkan komentar", "Common.Views.Comments.textOpenAgain": "Open Again", "Common.Views.Comments.textReply": "Reply", "Common.Views.Comments.textResolve": "Resolve", @@ -68,7 +101,21 @@ "Common.Views.ExternalDiagramEditor.textClose": "Close", "Common.Views.ExternalDiagramEditor.textSave": "Save & Exit", "Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor", + "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", "Common.Views.Header.textBack": "Go to Documents", + "Common.Views.Header.textHideLines": "Sembunyikan Mistar", + "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", + "Common.Views.Header.textZoom": "Perbesar", + "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipRedo": "Ulangi", + "Common.Views.Header.tipSave": "Simpan", + "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", + "Common.Views.Header.txtAccessRights": "Ubah hak akses", + "Common.Views.Header.txtRename": "Ganti nama", + "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", @@ -78,11 +125,64 @@ "Common.Views.InsertTableDialog.txtMinText": "The minimum value for this field is {0}.", "Common.Views.InsertTableDialog.txtRows": "Number of Rows", "Common.Views.InsertTableDialog.txtTitle": "Table Size", + "Common.Views.InsertTableDialog.txtTitleSplit": "Pisahkan Sel", + "Common.Views.LanguageDialog.labelSelect": "Pilih bahasa dokumen", + "Common.Views.ListSettingsDialog.txtColor": "Warna", + "Common.Views.ListSettingsDialog.txtNone": "Tidak ada", + "Common.Views.ListSettingsDialog.txtSize": "Ukuran", + "Common.Views.ListSettingsDialog.txtType": "Tipe", + "Common.Views.OpenDialog.txtEncoding": "Enkoding", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", + "Common.Views.OpenDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", + "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.txtAccept": "Terima", + "Common.Views.ReviewChanges.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChanges.txtChat": "Chat", + "Common.Views.ReviewChanges.txtClose": "Tutup", + "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", + "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", + "Common.Views.ReviewChanges.txtDocLang": "Bahasa", + "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", + "Common.Views.ReviewChanges.txtNext": "Berikutnya", + "Common.Views.ReviewChanges.txtPrev": "Sebelumnya", + "Common.Views.ReviewChanges.txtReject": "Tolak", + "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", + "Common.Views.ReviewPopover.textAdd": "Tambahkan", + "Common.Views.ReviewPopover.textAddReply": "Tambahkan Balasan", + "Common.Views.ReviewPopover.textCancel": "Batalkan", + "Common.Views.ReviewPopover.textClose": "Tutup", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", + "Common.Views.ReviewPopover.textReply": "Balas", + "Common.Views.ReviewPopover.textResolve": "Selesaikan", + "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", + "Common.Views.ReviewPopover.txtEditTip": "Sunting", + "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", + "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textInfoName": "Nama", + "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textFont": "Huruf", + "Common.Views.SymbolTableDialog.textSpecial": "Karakter khusus", + "Common.Views.SymbolTableDialog.textSymbols": "Simbol", "PE.Controllers.LeftMenu.newDocumentTitle": "Unnamed presentation", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Peringatan", "PE.Controllers.LeftMenu.requestEditRightsText": "Requesting editing rights...", "PE.Controllers.LeftMenu.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", + "PE.Controllers.LeftMenu.textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", + "PE.Controllers.LeftMenu.textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti.", "PE.Controllers.Main.applyChangesTextText": "Loading data...", "PE.Controllers.Main.applyChangesTitleText": "Loading Data", "PE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", @@ -129,7 +229,10 @@ "PE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1.", "PE.Controllers.Main.textAnonymous": "Anonymous", + "PE.Controllers.Main.textClose": "Tutup", "PE.Controllers.Main.textCloseTip": "Click to close the tip", + "PE.Controllers.Main.textGuest": "Tamu", + "PE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", "PE.Controllers.Main.textLoadingDocument": "Loading presentation", "PE.Controllers.Main.textShape": "Shape", "PE.Controllers.Main.textStrict": "Strict mode", @@ -142,11 +245,25 @@ "PE.Controllers.Main.txtDiagramTitle": "Chart Title", "PE.Controllers.Main.txtEditingMode": "Set editing mode...", "PE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "PE.Controllers.Main.txtImage": "Gambar", "PE.Controllers.Main.txtLines": "Lines", + "PE.Controllers.Main.txtLoading": "Memuat...", "PE.Controllers.Main.txtMath": "Math", + "PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtNeedSynchronize": "You have updates", + "PE.Controllers.Main.txtNone": "Tidak ada", "PE.Controllers.Main.txtRectangles": "Rectangles", "PE.Controllers.Main.txtSeries": "Series", + "PE.Controllers.Main.txtShape_bevel": "Miring", + "PE.Controllers.Main.txtShape_downArrow": "Panah Bawah", + "PE.Controllers.Main.txtShape_frame": "Kerangka", + "PE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "PE.Controllers.Main.txtShape_line": "Garis", + "PE.Controllers.Main.txtShape_mathEqual": "Setara", + "PE.Controllers.Main.txtShape_mathMinus": "Minus", + "PE.Controllers.Main.txtShape_mathPlus": "Plus", + "PE.Controllers.Main.txtShape_plus": "Plus", + "PE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", "PE.Controllers.Main.txtSldLtTBlank": "Blank", "PE.Controllers.Main.txtSldLtTChart": "Chart", "PE.Controllers.Main.txtSldLtTChartAndTx": "Chart and Text", @@ -184,6 +301,8 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text Over Chart", "PE.Controllers.Main.txtSldLtTVertTx": "Vertical Text", "PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "PE.Controllers.Main.txtTheme_green": "Hijau", + "PE.Controllers.Main.txtTheme_lines": "Garis", "PE.Controllers.Main.txtXAxis": "X Axis", "PE.Controllers.Main.txtYAxis": "Y Axis", "PE.Controllers.Main.unknownErrorText": "Unknown error.", @@ -193,14 +312,249 @@ "PE.Controllers.Main.uploadImageSizeMessage": "Maximum image size limit exceeded.", "PE.Controllers.Main.uploadImageTextText": "Uploading image...", "PE.Controllers.Main.uploadImageTitleText": "Uploading Image", + "PE.Controllers.Main.waitText": "Silahkan menunggu...", "PE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", "PE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", + "PE.Controllers.Toolbar.textAccent": "Aksen", + "PE.Controllers.Toolbar.textBracket": "Tanda Kurung", "PE.Controllers.Toolbar.textEmptyImgUrl": "You need to specify image URL.", "PE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
Please enter a numeric value between 1 and 300", + "PE.Controllers.Toolbar.textFraction": "Pecahan", + "PE.Controllers.Toolbar.textFunction": "Fungsi", + "PE.Controllers.Toolbar.textInsert": "Sisipkan", + "PE.Controllers.Toolbar.textIntegral": "Integral", + "PE.Controllers.Toolbar.textLargeOperator": "Operator Besar", + "PE.Controllers.Toolbar.textLimitAndLog": "Limit dan Logaritma", + "PE.Controllers.Toolbar.textMatrix": "Matriks", + "PE.Controllers.Toolbar.textOperator": "Operator", + "PE.Controllers.Toolbar.textRadical": "Perakaran", "PE.Controllers.Toolbar.textWarning": "Warning", + "PE.Controllers.Toolbar.txtAccent_Accent": "Akut", + "PE.Controllers.Toolbar.txtAccent_ArrowD": "Tanda Panah Kanan-Kiri Atas", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "Panah Kiri Atas", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "Tanda Panah ke Kanan Atas", + "PE.Controllers.Toolbar.txtAccent_Bar": "Palang", + "PE.Controllers.Toolbar.txtAccent_BarTop": "Garis Atas", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Kotak Formula (Dengan Placeholder)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kotak Formula (Contoh)", + "PE.Controllers.Toolbar.txtAccent_Check": "Periksa", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Kurung Kurawal Atas", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Dengan Overbar", + "PE.Controllers.Toolbar.txtAccent_DDot": "Titik Dua", + "PE.Controllers.Toolbar.txtAccent_Dot": "Titik", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Overbar Ganda", + "PE.Controllers.Toolbar.txtAccent_Grave": "Aksen Kiri", + "PE.Controllers.Toolbar.txtAccent_GroupBot": "Pengelompokan Karakter Di Bawah", + "PE.Controllers.Toolbar.txtAccent_GroupTop": "Pengelompokan Karakter Di Atas", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Panah Tiga Kiri Atas", + "PE.Controllers.Toolbar.txtAccent_Hat": "Caping", + "PE.Controllers.Toolbar.txtAccent_Smile": "Prosodi ", + "PE.Controllers.Toolbar.txtBracket_Angle": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Curve": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "Kasus (Dua Kondisi)", + "PE.Controllers.Toolbar.txtBracket_Custom_2": "Kasus (Tiga Kondisi)", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus", + "PE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien Binomial", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien Binomial", + "PE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Round": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Square": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Tanda Kurung", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "Diferensial", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "Diferensial", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "Diferensial", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "Diferensial", + "PE.Controllers.Toolbar.txtFractionHorizontal": "Pecahan Linear", + "PE.Controllers.Toolbar.txtFractionPi_2": "Pi Dibagi 2", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "Fungsi Kosin Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Fungsi Kosin Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "Fungsi Kotangen Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "Fungsi Kotangen Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "Fungsi Kosekans Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Csch": "Fungsi Kosekan Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "Fungsi Sekans Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "Fungsi Sekans Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Sin": "Fungsi Sin Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Fungsi Sin Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "Fungsi Tangen Terbalik", + "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Fungsi Tangen Hiperbolik Terbalik", + "PE.Controllers.Toolbar.txtFunction_Cos": "Fungsi Kosin", + "PE.Controllers.Toolbar.txtFunction_Cosh": "Fungsi Kosin Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Cot": "Fungsi Kotangen", + "PE.Controllers.Toolbar.txtFunction_Coth": "Fungsi Kotangen Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Csc": "Fungsi Kosekans", + "PE.Controllers.Toolbar.txtFunction_Csch": "Fungsi Kosekans Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Sech": "Fungsi Sekans Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Sinh": "Fungsi Sin Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Tanh": "Fungsi Tangen Hiperbolik", + "PE.Controllers.Toolbar.txtIntegral": "Integral", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "Theta Diferensial", + "PE.Controllers.Toolbar.txtIntegral_dx": "Diferensial x", + "PE.Controllers.Toolbar.txtIntegral_dy": "Diferensial y", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralDouble": "Integral Ganda", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integral Ganda", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral Ganda", + "PE.Controllers.Toolbar.txtIntegralOriented": "Integral Kontur", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral Kontur", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral Kontur", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produk", + "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Contoh Limit", + "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Contoh Maksimal", + "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "PE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritma Natural", + "PE.Controllers.Toolbar.txtLimitLog_Log": "Logaritma", + "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritma", + "PE.Controllers.Toolbar.txtLimitLog_Max": "Maksimal", + "PE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriks Kosong dengan Tanda Kurung", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriks Kosong dengan Tanda Kurung", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriks Kosong dengan Tanda Kurung", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriks Kosong dengan Tanda Kurung", + "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Matriks Kosong", + "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Titik Bawah", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Matriks Identitas", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Matriks Identitas", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Matriks Identitas", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Matriks Identitas", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Tanda Panah Kanan-Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Panah Kiri Bawah", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Panah Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Tanda Panah ke Kanan Atas", + "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Titik Dua", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Hasil Delta", + "PE.Controllers.Toolbar.txtOperator_Definition": "Setara Menurut Definisi", + "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Setara Dengan", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Tanda Panah Kanan-Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Panah Kiri Bawah", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Panah Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Tanda Panah ke Kanan Atas", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Setara Setara", + "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Sama Dengan", + "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Sama Dengan", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Diukur Berdasar", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Akar", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Akar", + "PE.Controllers.Toolbar.txtRadicalRoot_3": "Akar Pangkat Tiga", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "Akar Dengan Derajat", + "PE.Controllers.Toolbar.txtScriptSub": "Subskrip", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Subskrip-SuperskripKiri", + "PE.Controllers.Toolbar.txtScriptSup": "Superskrip", + "PE.Controllers.Toolbar.txtSymbol_about": "Kira-Kira", + "PE.Controllers.Toolbar.txtSymbol_additional": "Komplemen", + "PE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "PE.Controllers.Toolbar.txtSymbol_approx": "Setara Dengan", + "PE.Controllers.Toolbar.txtSymbol_ast": "Operator Tanda Bintang", + "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Taruhan", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Operator Butir", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "Akar Pangkat Tiga", + "PE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis Tengah Horisontal", + "PE.Controllers.Toolbar.txtSymbol_celsius": "Derajat Celcius", + "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "PE.Controllers.Toolbar.txtSymbol_cong": "Kira-Kira Setara Dengan", + "PE.Controllers.Toolbar.txtSymbol_degree": "Derajat", + "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "PE.Controllers.Toolbar.txtSymbol_div": "Tanda Pembagi", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "Panah Bawah", + "PE.Controllers.Toolbar.txtSymbol_emptyset": "Himpunan Kosong", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "PE.Controllers.Toolbar.txtSymbol_equals": "Setara", + "PE.Controllers.Toolbar.txtSymbol_equiv": "Identik Dengan", + "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_factorial": "Faktorial", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derajat Fahrenheit", + "PE.Controllers.Toolbar.txtSymbol_forall": "Untuk Semua", + "PE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "PE.Controllers.Toolbar.txtSymbol_geq": "Lebih Dari atau Sama Dengan", + "PE.Controllers.Toolbar.txtSymbol_gg": "Lebih Dari", + "PE.Controllers.Toolbar.txtSymbol_greater": "Lebih Dari", + "PE.Controllers.Toolbar.txtSymbol_in": "Elemen Dari", + "PE.Controllers.Toolbar.txtSymbol_inc": "Naik", + "PE.Controllers.Toolbar.txtSymbol_infinity": "Tak Terbatas", + "PE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Panah Kiri", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Panah Kanan-Kiri", + "PE.Controllers.Toolbar.txtSymbol_leq": "Kurang Dari atau Sama Dengan", + "PE.Controllers.Toolbar.txtSymbol_less": "Kurang Dari", + "PE.Controllers.Toolbar.txtSymbol_ll": "Kurang Dari", + "PE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "PE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "PE.Controllers.Toolbar.txtSymbol_ni": "Sertakan sebagai Anggota", + "PE.Controllers.Toolbar.txtSymbol_not": "Tanda Negasi", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "PE.Controllers.Toolbar.txtSymbol_o": "Omikron", + "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "PE.Controllers.Toolbar.txtSymbol_partial": "Diferensial Parsial", + "PE.Controllers.Toolbar.txtSymbol_percent": "Persentase", + "PE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "PE.Controllers.Toolbar.txtSymbol_pm": "Plus Minus", + "PE.Controllers.Toolbar.txtSymbol_propto": "Proposional Dengan", + "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "Akar Kuadrat", + "PE.Controllers.Toolbar.txtSymbol_qed": "Pembuktian Akhir", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Tanda Panah ke Kanan", + "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "Tanda Akar", + "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "PE.Controllers.Toolbar.txtSymbol_times": "Tanda Perkalian", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Varian Epsilon", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Varian Phi", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Varian Pi", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Varian Rho", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Theta Variant", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Viewport.textFitWidth": "Sesuaikan Lebar", + "PE.Views.Animation.strStart": "Mulai", + "PE.Views.Animation.textMultiple": "Banyak", + "PE.Views.Animation.textNone": "Tidak ada", + "PE.Views.Animation.txtParameters": "Parameter", + "PE.Views.Animation.txtPreview": "Pratinjau", + "PE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", "PE.Views.ChartSettings.textChartType": "Change Chart Type", "PE.Views.ChartSettings.textEditData": "Edit Data", "PE.Views.ChartSettings.textHeight": "Height", @@ -208,15 +562,21 @@ "PE.Views.ChartSettings.textSize": "Size", "PE.Views.ChartSettings.textStyle": "Style", "PE.Views.ChartSettings.textWidth": "Width", + "PE.Views.ChartSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ChartSettingsAdvanced.textAltTitle": "Judul", + "PE.Views.ChartSettingsAdvanced.textTitle": "Bagan - Pengaturan Lanjut", + "PE.Views.DateTimeDialog.textLang": "Bahasa", "PE.Views.DocumentHolder.aboveText": "Above", "PE.Views.DocumentHolder.addCommentText": "Add Comment", "PE.Views.DocumentHolder.advancedImageText": "Image Advanced Settings", "PE.Views.DocumentHolder.advancedParagraphText": "Text Advanced Settings", "PE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", "PE.Views.DocumentHolder.advancedTableText": "Table Advanced Settings", + "PE.Views.DocumentHolder.alignmentText": "Perataan", "PE.Views.DocumentHolder.belowText": "Below", "PE.Views.DocumentHolder.cellAlignText": "Cell Vertical Alignment", "PE.Views.DocumentHolder.cellText": "Cell", + "PE.Views.DocumentHolder.centerText": "Tengah", "PE.Views.DocumentHolder.columnText": "Column", "PE.Views.DocumentHolder.deleteColumnText": "Delete Column", "PE.Views.DocumentHolder.deleteRowText": "Delete Row", @@ -229,6 +589,8 @@ "PE.Views.DocumentHolder.editChartText": "Edit Data", "PE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", "PE.Views.DocumentHolder.hyperlinkText": "Hyperlink", + "PE.Views.DocumentHolder.ignoreAllSpellText": "Abaikan Semua", + "PE.Views.DocumentHolder.ignoreSpellText": "Abaikan", "PE.Views.DocumentHolder.insertColumnLeftText": "Column Left", "PE.Views.DocumentHolder.insertColumnRightText": "Column Right", "PE.Views.DocumentHolder.insertColumnText": "Insert Column", @@ -236,11 +598,19 @@ "PE.Views.DocumentHolder.insertRowBelowText": "Row Below", "PE.Views.DocumentHolder.insertRowText": "Insert Row", "PE.Views.DocumentHolder.insertText": "Insert", + "PE.Views.DocumentHolder.langText": "Pilih Bahasa", + "PE.Views.DocumentHolder.leftText": "Kiri", + "PE.Views.DocumentHolder.loadSpellText": "Memuat varian...", "PE.Views.DocumentHolder.mergeCellsText": "Merge Cells", + "PE.Views.DocumentHolder.mniCustomTable": "Sisipkan Tabel Khusus", + "PE.Views.DocumentHolder.moreText": "Varian lain...", + "PE.Views.DocumentHolder.noSpellVariantsText": "Tidak ada varian", "PE.Views.DocumentHolder.originalSizeText": "Default Size", "PE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "PE.Views.DocumentHolder.rightText": "Kanan", "PE.Views.DocumentHolder.rowText": "Row", "PE.Views.DocumentHolder.selectText": "Select", + "PE.Views.DocumentHolder.spellcheckText": "Periksa ejaan", "PE.Views.DocumentHolder.splitCellsText": "Split Cell...", "PE.Views.DocumentHolder.splitCellTitleText": "Split Cell", "PE.Views.DocumentHolder.tableText": "Table", @@ -249,10 +619,14 @@ "PE.Views.DocumentHolder.textArrangeForward": "Move Forward", "PE.Views.DocumentHolder.textArrangeFront": "Bring To Foreground", "PE.Views.DocumentHolder.textCopy": "Copy", + "PE.Views.DocumentHolder.textCropFill": "Isian", "PE.Views.DocumentHolder.textCut": "Cut", + "PE.Views.DocumentHolder.textFromFile": "Dari File", + "PE.Views.DocumentHolder.textFromUrl": "Dari URL", "PE.Views.DocumentHolder.textNextPage": "Next Slide", "PE.Views.DocumentHolder.textPaste": "Paste", "PE.Views.DocumentHolder.textPrevPage": "Previous Slide", + "PE.Views.DocumentHolder.textReplace": "Ganti Gambar", "PE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom", "PE.Views.DocumentHolder.textShapeAlignCenter": "Align Center", "PE.Views.DocumentHolder.textShapeAlignLeft": "Align Left", @@ -260,10 +634,12 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Align Right", "PE.Views.DocumentHolder.textShapeAlignTop": "Align Top", "PE.Views.DocumentHolder.textSlideSettings": "Slide Settings", + "PE.Views.DocumentHolder.textUndo": "Batalkan", "PE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.", "PE.Views.DocumentHolder.txtAlign": "Align", "PE.Views.DocumentHolder.txtArrange": "Arrange", "PE.Views.DocumentHolder.txtBackground": "Background", + "PE.Views.DocumentHolder.txtBottom": "Bawah", "PE.Views.DocumentHolder.txtChangeLayout": "Change Layout", "PE.Views.DocumentHolder.txtDeleteSlide": "Delete Slide", "PE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally", @@ -275,6 +651,7 @@ "PE.Views.DocumentHolder.txtPreview": "Preview", "PE.Views.DocumentHolder.txtSelectAll": "Select All", "PE.Views.DocumentHolder.txtSlide": "Slide", + "PE.Views.DocumentHolder.txtTop": "Atas", "PE.Views.DocumentHolder.txtUngroup": "Ungroup", "PE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", "PE.Views.DocumentPreview.goToSlideText": "Go to Slide", @@ -288,11 +665,13 @@ "PE.Views.DocumentPreview.txtPause": "Pause Presentation", "PE.Views.DocumentPreview.txtPlay": "Start Presentation", "PE.Views.DocumentPreview.txtPrev": "Previous Slide", + "PE.Views.DocumentPreview.txtReset": "Atur ulang", "PE.Views.FileMenu.btnAboutCaption": "About", "PE.Views.FileMenu.btnBackCaption": "Go to Documents", "PE.Views.FileMenu.btnCreateNewCaption": "Create New", "PE.Views.FileMenu.btnDownloadCaption": "Download as...", "PE.Views.FileMenu.btnHelpCaption": "Help...", + "PE.Views.FileMenu.btnHistoryCaption": "Riwayat versi", "PE.Views.FileMenu.btnInfoCaption": "Presentation Info...", "PE.Views.FileMenu.btnPrintCaption": "Print", "PE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", @@ -302,13 +681,22 @@ "PE.Views.FileMenu.btnSaveCaption": "Save", "PE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", "PE.Views.FileMenu.btnToEditCaption": "Edit Presentation", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", + "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", + "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Presentation Title", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", + "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", "PE.Views.FileMenuPanels.Settings.okButtonText": "Apply", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", "PE.Views.FileMenuPanels.Settings.strAutosave": "Turn on autosave", @@ -316,6 +704,7 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", + "PE.Views.FileMenuPanels.Settings.strFontRender": "Contoh Huruf", "PE.Views.FileMenuPanels.Settings.strInputMode": "Turn on hieroglyphs", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Realtime Collaboration Changes", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", @@ -332,9 +721,18 @@ "PE.Views.FileMenuPanels.Settings.txtAll": "View All", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Fit Slide", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Sesuaikan Lebar", "PE.Views.FileMenuPanels.Settings.txtInput": "Alternate Input", "PE.Views.FileMenuPanels.Settings.txtLast": "View Last", + "PE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X", + "PE.Views.FileMenuPanels.Settings.txtNative": "Asli", "PE.Views.FileMenuPanels.Settings.txtPt": "Point", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Periksa Ejaan", + "PE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "PE.Views.HeaderFooterDialog.applyText": "Terapkan", + "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Peringatan", + "PE.Views.HeaderFooterDialog.textLang": "Bahasa", + "PE.Views.HeaderFooterDialog.textPreview": "Pratinjau", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Display", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link To", "PE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment", @@ -353,6 +751,8 @@ "PE.Views.HyperlinkSettingsDialog.txtPrev": "Previous Slide", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Slide", "PE.Views.ImageSettings.textAdvanced": "Show advanced settings", + "PE.Views.ImageSettings.textCropFill": "Isian", + "PE.Views.ImageSettings.textEdit": "Sunting", "PE.Views.ImageSettings.textFromFile": "From File", "PE.Views.ImageSettings.textFromUrl": "From URL", "PE.Views.ImageSettings.textHeight": "Height", @@ -360,9 +760,12 @@ "PE.Views.ImageSettings.textOriginalSize": "Default Size", "PE.Views.ImageSettings.textSize": "Size", "PE.Views.ImageSettings.textWidth": "Width", + "PE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", "PE.Views.ImageSettingsAdvanced.textHeight": "Height", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant Proportions", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Default Size", + "PE.Views.ImageSettingsAdvanced.textPlacement": "Penempatan", "PE.Views.ImageSettingsAdvanced.textPosition": "Position", "PE.Views.ImageSettingsAdvanced.textSize": "Size", "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", @@ -387,19 +790,28 @@ "PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "Indentasi", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Placement", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Spasi", "PE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", + "PE.Views.ParagraphSettingsAdvanced.textExact": "Persis", + "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "PE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "PE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", "PE.Views.ParagraphSettingsAdvanced.textSet": "Specify", @@ -408,6 +820,7 @@ "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", "PE.Views.RightMenu.txtChartSettings": "Chart Settings", "PE.Views.RightMenu.txtImageSettings": "Image Settings", "PE.Views.RightMenu.txtParagraphSettings": "Text Settings", @@ -424,6 +837,7 @@ "PE.Views.ShapeSettings.strSize": "Size", "PE.Views.ShapeSettings.strStroke": "Stroke", "PE.Views.ShapeSettings.strTransparency": "Opacity", + "PE.Views.ShapeSettings.strType": "Tipe", "PE.Views.ShapeSettings.textAdvanced": "Show advanced settings", "PE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "PE.Views.ShapeSettings.textColor": "Color Fill", @@ -437,6 +851,7 @@ "PE.Views.ShapeSettings.textLinear": "Linear", "PE.Views.ShapeSettings.textNoFill": "No Fill", "PE.Views.ShapeSettings.textPatternFill": "Pattern", + "PE.Views.ShapeSettings.textPosition": "Posisi", "PE.Views.ShapeSettings.textRadial": "Radial", "PE.Views.ShapeSettings.textSelectTexture": "Select", "PE.Views.ShapeSettings.textStretch": "Stretch", @@ -455,13 +870,17 @@ "PE.Views.ShapeSettings.txtNoBorders": "No Line", "PE.Views.ShapeSettings.txtPapyrus": "Papyrus", "PE.Views.ShapeSettings.txtWood": "Wood", + "PE.Views.ShapeSettingsAdvanced.strColumns": "Kolom", "PE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", + "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Judul", "PE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", "PE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", "PE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", "PE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "PE.Views.ShapeSettingsAdvanced.textColNumber": "Jumlah Kolom", "PE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", "PE.Views.ShapeSettingsAdvanced.textFlat": "Flat", @@ -480,11 +899,13 @@ "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", "PE.Views.ShapeSettingsAdvanced.textWidth": "Width", "PE.Views.ShapeSettingsAdvanced.txtNone": "None", + "PE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", "PE.Views.SlideSettings.strBackground": "Background color", "PE.Views.SlideSettings.strColor": "Color", "PE.Views.SlideSettings.strFill": "Fill", "PE.Views.SlideSettings.strForeground": "Foreground color", "PE.Views.SlideSettings.strPattern": "Pattern", + "PE.Views.SlideSettings.strTransparency": "Opasitas", "PE.Views.SlideSettings.textAdvanced": "Show advanced settings", "PE.Views.SlideSettings.textColor": "Color Fill", "PE.Views.SlideSettings.textDirection": "Direction", @@ -497,6 +918,7 @@ "PE.Views.SlideSettings.textLinear": "Linear", "PE.Views.SlideSettings.textNoFill": "No Fill", "PE.Views.SlideSettings.textPatternFill": "Pattern", + "PE.Views.SlideSettings.textPosition": "Posisi", "PE.Views.SlideSettings.textRadial": "Radial", "PE.Views.SlideSettings.textReset": "Reset Changes", "PE.Views.SlideSettings.textSelectTexture": "Select", @@ -536,6 +958,7 @@ "PE.Views.Statusbar.tipFitPage": "Fit Slide", "PE.Views.Statusbar.tipFitWidth": "Fit Width", "PE.Views.Statusbar.tipPreview": "Start Preview", + "PE.Views.Statusbar.tipSetLang": "Atur Bahasa Teks", "PE.Views.Statusbar.tipZoomFactor": "Magnification", "PE.Views.Statusbar.tipZoomIn": "Zoom In", "PE.Views.Statusbar.tipZoomOut": "Zoom Out", @@ -564,11 +987,13 @@ "PE.Views.TableSettings.textEmptyTemplate": "No templates", "PE.Views.TableSettings.textFirst": "First", "PE.Views.TableSettings.textHeader": "Header", + "PE.Views.TableSettings.textHeight": "Ketinggian", "PE.Views.TableSettings.textLast": "Last", "PE.Views.TableSettings.textRows": "Rows", "PE.Views.TableSettings.textSelectBorders": "Select borders you want to change applying style chosen above", "PE.Views.TableSettings.textTemplate": "Select From Template", "PE.Views.TableSettings.textTotal": "Total", + "PE.Views.TableSettings.textWidth": "Lebar", "PE.Views.TableSettings.tipAll": "Set Outer Border and All Inner Lines", "PE.Views.TableSettings.tipBottom": "Set Outer Bottom Border Only", "PE.Views.TableSettings.tipInner": "Set Inner Lines Only", @@ -580,6 +1005,8 @@ "PE.Views.TableSettings.tipRight": "Set Outer Right Border Only", "PE.Views.TableSettings.tipTop": "Set Outer Top Border Only", "PE.Views.TableSettings.txtNoBorders": "No borders", + "PE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.TableSettingsAdvanced.textAltTitle": "Judul", "PE.Views.TableSettingsAdvanced.textBottom": "Bottom", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Margins", @@ -597,6 +1024,7 @@ "PE.Views.TextArtSettings.strSize": "Size", "PE.Views.TextArtSettings.strStroke": "Stroke", "PE.Views.TextArtSettings.strTransparency": "Opacity", + "PE.Views.TextArtSettings.strType": "Tipe", "PE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "PE.Views.TextArtSettings.textColor": "Color Fill", "PE.Views.TextArtSettings.textDirection": "Direction", @@ -609,6 +1037,7 @@ "PE.Views.TextArtSettings.textLinear": "Linear", "PE.Views.TextArtSettings.textNoFill": "No Fill", "PE.Views.TextArtSettings.textPatternFill": "Pattern", + "PE.Views.TextArtSettings.textPosition": "Posisi", "PE.Views.TextArtSettings.textRadial": "Radial", "PE.Views.TextArtSettings.textSelectTexture": "Select", "PE.Views.TextArtSettings.textStretch": "Stretch", @@ -629,12 +1058,21 @@ "PE.Views.TextArtSettings.txtNoBorders": "No Line", "PE.Views.TextArtSettings.txtPapyrus": "Papyrus", "PE.Views.TextArtSettings.txtWood": "Wood", + "PE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "PE.Views.Toolbar.capBtnComment": "Komentar", + "PE.Views.Toolbar.capInsertChart": "Bagan", + "PE.Views.Toolbar.capInsertImage": "Gambar", + "PE.Views.Toolbar.capInsertTable": "Tabel", + "PE.Views.Toolbar.capTabFile": "File", + "PE.Views.Toolbar.capTabHome": "Halaman Depan", + "PE.Views.Toolbar.capTabInsert": "Sisipkan", "PE.Views.Toolbar.mniCustomTable": "Insert Custom Table", "PE.Views.Toolbar.mniImageFromFile": "Picture from File", "PE.Views.Toolbar.mniImageFromUrl": "Picture from URL", "PE.Views.Toolbar.mniSlideAdvanced": "Advanced Settings", "PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)", "PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)", + "PE.Views.Toolbar.strMenuNoFill": "Tidak ada Isian", "PE.Views.Toolbar.textAlignBottom": "Align text to the bottom", "PE.Views.Toolbar.textAlignCenter": "Center text", "PE.Views.Toolbar.textAlignJust": "Justify", @@ -657,22 +1095,31 @@ "PE.Views.Toolbar.textStrikeout": "Strikeout", "PE.Views.Toolbar.textSubscript": "Subscript", "PE.Views.Toolbar.textSuperscript": "Superscript", + "PE.Views.Toolbar.textTabFile": "File", + "PE.Views.Toolbar.textTabHome": "Halaman Depan", + "PE.Views.Toolbar.textTabInsert": "Sisipkan", + "PE.Views.Toolbar.textTabView": "Lihat", "PE.Views.Toolbar.textTitleError": "Error", "PE.Views.Toolbar.textUnderline": "Underline", "PE.Views.Toolbar.tipAddSlide": "Add Slide", "PE.Views.Toolbar.tipBack": "Back", + "PE.Views.Toolbar.tipChangeChart": "Ubah Tipe Bagan", "PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout", "PE.Views.Toolbar.tipClearStyle": "Clear Style", "PE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", "PE.Views.Toolbar.tipCopy": "Copy", "PE.Views.Toolbar.tipCopyStyle": "Copy Style", + "PE.Views.Toolbar.tipDecFont": "Perkecil Ukuran Huruf", "PE.Views.Toolbar.tipDecPrLeft": "Decrease Indent", "PE.Views.Toolbar.tipFontColor": "Font color", "PE.Views.Toolbar.tipFontName": "Font Name", "PE.Views.Toolbar.tipFontSize": "Font Size", "PE.Views.Toolbar.tipHAligh": "Horizontal Align", + "PE.Views.Toolbar.tipHighlightColor": "Warna Sorot", + "PE.Views.Toolbar.tipIncFont": "Perbesar Ukuran Huruf", "PE.Views.Toolbar.tipIncPrLeft": "Increase Indent", "PE.Views.Toolbar.tipInsertChart": "Insert Chart", + "PE.Views.Toolbar.tipInsertEquation": "Masukkan Persamaan", "PE.Views.Toolbar.tipInsertHyperlink": "Add Hyperlink", "PE.Views.Toolbar.tipInsertImage": "Insert Picture", "PE.Views.Toolbar.tipInsertShape": "Insert Autoshape", @@ -718,5 +1165,17 @@ "PE.Views.Toolbar.txtScheme7": "Equity", "PE.Views.Toolbar.txtScheme8": "Flow", "PE.Views.Toolbar.txtScheme9": "Foundry", - "PE.Views.Toolbar.txtUngroup": "Ungroup" + "PE.Views.Toolbar.txtUngroup": "Ungroup", + "PE.Views.Transitions.textBottom": "Bawah", + "PE.Views.Transitions.textLeft": "Kiri", + "PE.Views.Transitions.textNone": "Tidak ada", + "PE.Views.Transitions.textRight": "Kanan", + "PE.Views.Transitions.textTop": "Atas", + "PE.Views.Transitions.textZoom": "Perbesar", + "PE.Views.Transitions.textZoomIn": "Perbesar", + "PE.Views.Transitions.textZoomOut": "Perkecil", + "PE.Views.Transitions.txtParameters": "Parameter", + "PE.Views.Transitions.txtPreview": "Pratinjau", + "PE.Views.ViewTab.textFitToWidth": "Sesuaikan Lebar", + "PE.Views.ViewTab.textZoom": "Perbesar" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index c69280a51..40d6822c6 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "All'interno", "Common.define.effectData.textInFromScreenCenter": "Aumentare da centro schermo", "Common.define.effectData.textInSlightly": "Lieve aumento", - "Common.define.effectData.textInToScreenCenter": "Aumento al centro schermo", "Common.define.effectData.textInvertedSquare": "Quadrato invertito", "Common.define.effectData.textInvertedTriangle": "Triangolo invertito", "Common.define.effectData.textLeft": "A sinistra", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Verso il basso", "Common.define.effectData.textToBottomLeft": "Verso il basso a sinistra", "Common.define.effectData.textToBottomRight": "Verso il basso a destra", - "Common.define.effectData.textToFromScreenBottom": "Diminuzione verso il basso dello schermo", "Common.define.effectData.textToLeft": "A sinistra", "Common.define.effectData.textToRight": "A destra", "Common.define.effectData.textToTop": "Verso l'alto", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index fc0938b15..a1ff9fca4 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -47,13 +47,26 @@ "Common.define.chartData.textScatterSmoothMarker": "マーカーと平滑線付き散布図", "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", + "Common.define.effectData.textBox": "ボックス", + "Common.define.effectData.textCircle": "円", + "Common.define.effectData.textDown": "下", "Common.define.effectData.textFade": "フェード", + "Common.define.effectData.textHorizontal": "水平", "Common.define.effectData.textLeft": "左", "Common.define.effectData.textLeftDown": "左下", "Common.define.effectData.textLeftUp": "左上", "Common.define.effectData.textRight": "右", "Common.define.effectData.textRightDown": "右下", "Common.define.effectData.textRightUp": "右上", + "Common.define.effectData.textSpoke1": "1スポーク", + "Common.define.effectData.textSpoke2": "2スポーク", + "Common.define.effectData.textSpoke3": "3スポーク", + "Common.define.effectData.textSpoke4": "4スポーク", + "Common.define.effectData.textSpoke8": "8スポーク", + "Common.define.effectData.textUp": "上", + "Common.define.effectData.textWave": "波", + "Common.define.effectData.textWipe": "ワイプ", + "Common.define.effectData.textZigzag": "ジグザグ", "Common.define.effectData.textZoom": "ズーム", "Common.Translation.warnFileLocked": "文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成", @@ -390,7 +403,7 @@ "PE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...", "PE.Controllers.LeftMenu.textLoadHistory": "バージョン履歴の読み込み中...", "PE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", - "PE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", + "PE.Controllers.LeftMenu.textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", "PE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。", "PE.Controllers.LeftMenu.txtUntitled": "タイトルなし", "PE.Controllers.Main.applyChangesTextText": "データを読み込んでいます...", @@ -1912,6 +1925,7 @@ "PE.Views.Toolbar.textStrikeout": "取り消し線", "PE.Views.Toolbar.textSubscript": "下付き", "PE.Views.Toolbar.textSuperscript": "上付き文字", + "PE.Views.Toolbar.textTabAnimation": "アニメーション", "PE.Views.Toolbar.textTabCollaboration": "共同編集", "PE.Views.Toolbar.textTabFile": "ファイル", "PE.Views.Toolbar.textTabHome": "ホーム", @@ -2034,5 +2048,6 @@ "PE.Views.Transitions.txtParameters": "パラメーター", "PE.Views.Transitions.txtPreview": "プレビュー", "PE.Views.Transitions.txtSec": "秒", + "PE.Views.ViewTab.textAlwaysShowToolbar": "ツールバーを常に表示する", "PE.Views.ViewTab.textZoom": "ズーム" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index 177007bf2..4c92f2315 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -47,6 +47,16 @@ "Common.define.chartData.textScatterSmoothMarker": "Verspreid met vloeiende lijnen en markeringen ", "Common.define.chartData.textStock": "Voorraad", "Common.define.chartData.textSurface": "Oppervlak", + "Common.define.effectData.textCircle": "Rondje", + "Common.define.effectData.textCollapse": "Samenvouwen", + "Common.define.effectData.textDrop": "Vallen", + "Common.define.effectData.textHeart": "Hart", + "Common.define.effectData.textHeartbeat": "Hartslag", + "Common.define.effectData.textHexagon": "Zeshoek", + "Common.define.effectData.textPointStar4": "Vierpuntsster", + "Common.define.effectData.textPointStar5": "Vijfpuntsster", + "Common.define.effectData.textPointStar6": "Zespuntsster", + "Common.define.effectData.textPointStar8": "Achtpuntsster", "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en als kopie opslaan.", "Common.Translation.warnFileLockedBtnEdit": "Maak een kopie", "Common.Translation.warnFileLockedBtnView": "Open voor lezen", @@ -61,6 +71,7 @@ "Common.UI.ExtendedColorDialog.textNew": "Nieuw", "Common.UI.ExtendedColorDialog.textRGBErr": "De ingevoerde waarde is onjuist.
Voer een numerieke waarde tussen 0 en 255 in.", "Common.UI.HSBColorPicker.textNoColor": "Geen kleur", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Wachtwoord verbergen", "Common.UI.SearchDialog.textHighlight": "Resultaten markeren", "Common.UI.SearchDialog.textMatchCase": "Hoofdlettergevoelig", "Common.UI.SearchDialog.textReplaceDef": "Voer de vervangende tekst in", @@ -135,6 +146,7 @@ "Common.Views.Comments.textAddComment": "Opmerking toevoegen", "Common.Views.Comments.textAddCommentToDoc": "Opmerking toevoegen aan document", "Common.Views.Comments.textAddReply": "Antwoord toevoegen", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gast", "Common.Views.Comments.textCancel": "Annuleren", "Common.Views.Comments.textClose": "Sluiten", @@ -1086,6 +1098,7 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Aanpassen aan dia", "PE.Controllers.Viewport.textFitWidth": "Aan breedte aanpassen", + "PE.Views.Animation.strDelay": "Vertragen", "PE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen", "PE.Views.ChartSettings.textChartType": "Grafiektype wijzigen", "PE.Views.ChartSettings.textEditData": "Gegevens bewerken", @@ -1957,6 +1970,7 @@ "PE.Views.Toolbar.tipViewSettings": "Weergave-instellingen", "PE.Views.Toolbar.txtDistribHor": "Horizontaal verdelen", "PE.Views.Toolbar.txtDistribVert": "Verticaal verdelen", + "PE.Views.Toolbar.txtDuplicateSlide": "Dia dupliceren", "PE.Views.Toolbar.txtGroup": "Groeperen", "PE.Views.Toolbar.txtObjectsAlign": "Geslecteerde objecten uitlijnen", "PE.Views.Toolbar.txtScheme1": "Kantoor", @@ -2018,5 +2032,6 @@ "PE.Views.Transitions.txtApplyToAll": "Toepassen op alle dia's", "PE.Views.Transitions.txtParameters": "Parameters", "PE.Views.Transitions.txtPreview": "Voorbeeld", - "PE.Views.Transitions.txtSec": "s" + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Werkbalk altijd weergeven" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 4f9c83d1b..3e6687abd 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Em", "Common.define.effectData.textInFromScreenCenter": "No centro da tela", "Common.define.effectData.textInSlightly": "Ligeiramente", - "Common.define.effectData.textInToScreenCenter": "No centro da tela", "Common.define.effectData.textInvertedSquare": "Quadrado invertido", "Common.define.effectData.textInvertedTriangle": "Triângulo Invertido", "Common.define.effectData.textLeft": "Esquerda", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Para baixo", "Common.define.effectData.textToBottomLeft": "Para Inferior-Esquerda", "Common.define.effectData.textToBottomRight": "Para baixo-direita", - "Common.define.effectData.textToFromScreenBottom": "Fora para o fundo da tela", "Common.define.effectData.textToLeft": "Para a esquerda", "Common.define.effectData.textToRight": "Para a direita", "Common.define.effectData.textToTop": "Para o topo", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 8579b03b8..c2f06ad79 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "În interior", "Common.define.effectData.textInFromScreenCenter": "În interior din centrul ecranului", "Common.define.effectData.textInSlightly": "Ușor în interior", - "Common.define.effectData.textInToScreenCenter": "În interior către centrul ecranului", "Common.define.effectData.textInvertedSquare": "Pătrat invers", "Common.define.effectData.textInvertedTriangle": "Triunghi invers", "Common.define.effectData.textLeft": "Stânga", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "În jos", "Common.define.effectData.textToBottomLeft": "Spre stânga jos", "Common.define.effectData.textToBottomRight": "Spre dreapta jos", - "Common.define.effectData.textToFromScreenBottom": "În exterior către josul ecranului", "Common.define.effectData.textToLeft": "Spre stânga", "Common.define.effectData.textToRight": "Spre dreapta", "Common.define.effectData.textToTop": "În sus", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 59df123e8..15cb2420f 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Внутрь", "Common.define.effectData.textInFromScreenCenter": "Увеличение из центра экрана", "Common.define.effectData.textInSlightly": "Небольшое увеличение", - "Common.define.effectData.textInToScreenCenter": "Увеличение к центру экрана", "Common.define.effectData.textInvertedSquare": "Квадрат наизнанку", "Common.define.effectData.textInvertedTriangle": "Треугольник наизнанку", "Common.define.effectData.textLeft": "Влево", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Вниз", "Common.define.effectData.textToBottomLeft": "Вниз влево", "Common.define.effectData.textToBottomRight": "Вниз вправо", - "Common.define.effectData.textToFromScreenBottom": "Уменьшение к нижней части экрана", "Common.define.effectData.textToLeft": "Влево", "Common.define.effectData.textToRight": "Вправо", "Common.define.effectData.textToTop": "Вверх", diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index e888f1196..872a68309 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "In", "Common.define.effectData.textInFromScreenCenter": "In från skärmens mitt", "Common.define.effectData.textInSlightly": "Något inåt", - "Common.define.effectData.textInToScreenCenter": "In till skärmens mitt", "Common.define.effectData.textInvertedSquare": "Omvänd kvadrat", "Common.define.effectData.textInvertedTriangle": "Omvänd triangel", "Common.define.effectData.textLeft": "Vänster", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Till nederkant", "Common.define.effectData.textToBottomLeft": "Till vänster nederkant", "Common.define.effectData.textToBottomRight": "Till höger nederkant", - "Common.define.effectData.textToFromScreenBottom": "Ut till skärmens nederkant", "Common.define.effectData.textToLeft": "Till vänster", "Common.define.effectData.textToRight": "Till höger", "Common.define.effectData.textToTop": "Till ovankant", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index f238c2d17..369556469 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "Всередину", "Common.define.effectData.textInFromScreenCenter": "Збільшення із центру екрану", "Common.define.effectData.textInSlightly": "Невелике збільшення", - "Common.define.effectData.textInToScreenCenter": "Збільшення до центру екрану", "Common.define.effectData.textInvertedSquare": "Обернений квадрат", "Common.define.effectData.textInvertedTriangle": "Перевернутий трикутник", "Common.define.effectData.textLeft": "Ліворуч", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "Вниз", "Common.define.effectData.textToBottomLeft": "Вниз ліворуч", "Common.define.effectData.textToBottomRight": "Вниз праворуч", - "Common.define.effectData.textToFromScreenBottom": "Зменшення до нижньої частини екрану", "Common.define.effectData.textToLeft": "Ліворуч", "Common.define.effectData.textToRight": "Праворуч", "Common.define.effectData.textToTop": "Вгору", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index a83075c55..64d844ff9 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -139,7 +139,6 @@ "Common.define.effectData.textIn": "在", "Common.define.effectData.textInFromScreenCenter": "从屏幕中心放大", "Common.define.effectData.textInSlightly": "轻微放大", - "Common.define.effectData.textInToScreenCenter": "缩大到屏幕中心", "Common.define.effectData.textInvertedSquare": "正方形结", "Common.define.effectData.textInvertedTriangle": "三角结", "Common.define.effectData.textLeft": "左侧", @@ -211,7 +210,6 @@ "Common.define.effectData.textToBottom": "到底部", "Common.define.effectData.textToBottomLeft": "到左下部", "Common.define.effectData.textToBottomRight": "到右下部", - "Common.define.effectData.textToFromScreenBottom": "缩小到屏幕底部", "Common.define.effectData.textToLeft": "到左侧", "Common.define.effectData.textToRight": "到右侧", "Common.define.effectData.textToTop": "到顶部", diff --git a/apps/presentationeditor/mobile/locale/az.json b/apps/presentationeditor/mobile/locale/az.json index a06c36408..33a8e623b 100644 --- a/apps/presentationeditor/mobile/locale/az.json +++ b/apps/presentationeditor/mobile/locale/az.json @@ -379,7 +379,6 @@ "textTopLeft": "Yuxarı-Sol", "textTopRight": "Yuxarı-Sağ", "textTotalRow": "Yekun Sətir", - "textTransition": "Keçid", "textTransitions": "Keçidlər", "textType": "Növ", "textUnCover": "Açın", diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index b2fb8fec5..89a00db4b 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -377,7 +377,6 @@ "textTopLeft": "Уверсе злева", "textTopRight": "Уверсе справа", "textTotalRow": "Радок вынікаў", - "textTransition": "Пераход", "textType": "Тып", "textUnCover": "Адкрыццё", "textVerticalIn": "Вертыкальна ўнутр", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 31f17d156..09e00fbab 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -382,7 +382,6 @@ "textTopLeft": "Superior-esquerra", "textTopRight": "Superior-dreta", "textTotalRow": "Fila de total", - "textTransition": "Transició", "textTransitions": "Transicions", "textType": "Tipus", "textUnCover": "Descobreix", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index e9cec20f9..2ff86dc22 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "Funkce Zpět/Znovu jsou vypnuty pro rychlý režim spolupráce.", "textUsers": "Uživatelé" }, + "HighlightColorPalette": { + "textNoFill": "Bez výplně" + }, "ThemeColorPalette": { "textCustomColors": "Vlastní barvy", "textStandartColors": "Standardní barvy", - "textThemeColors": "Barvy tématu" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" + "textThemeColors": "Barvy vzhledu prostředí" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "textNo": "Ne", "textNoLicenseTitle": "Došlo k dosažení limitu licence", + "textNoTextFound": "Text nebyl nalezen", "textOpenFile": "Zadejte heslo pro otevření souboru", "textPaidFeature": "Placená funkce", "textRemember": "Zapamatovat moji volbu", + "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", + "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", "textYes": "Ano", "titleLicenseExp": "Platnost licence vypršela", "titleServerVersion": "Editor byl aktualizován", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." } }, "Error": { @@ -182,8 +182,8 @@ "loadImageTitleText": "Načítání obrázku", "loadingDocumentTextText": "Načítání dokumentu…", "loadingDocumentTitleText": "Načítání dokumentu", - "loadThemeTextText": "Načítání motivu vzhledu...", - "loadThemeTitleText": "Načítání motivu vzhledu", + "loadThemeTextText": "Načítání vzhledu prostředí...", + "loadThemeTitleText": "Načítání vzhledu prostředí", "openTextText": "Otevírání dokumentu...", "openTitleText": "Otevírání dokumentu", "printTextText": "Tisknutí dokumentu...", @@ -228,6 +228,7 @@ "textLinkTo": "Odkaz na", "textLinkType": "Typ odkazu", "textNextSlide": "Další snímek", + "textOk": "OK", "textOther": "Jiné", "textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromURL": "Obrázek z adresy URL", @@ -240,8 +241,7 @@ "textSlideNumber": "Číslo snímku", "textTable": "Tabulka", "textTableSize": "Velikost tabulky", - "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "textOk": "Ok" + "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"" }, "Edit": { "notcriticalErrorTitle": "Varování", @@ -261,6 +261,7 @@ "textAllCaps": "Všechny kapitálky", "textApplyAll": "Použít na všechny snímky", "textAuto": "Automaticky", + "textAutomatic": "Automaticky", "textBack": "Zpět", "textBandedColumn": "Pruhované sloupce", "textBandedRow": "Pruhované řádky", @@ -285,6 +286,7 @@ "textDefault": "Vybraný text", "textDelay": "Prodleva", "textDeleteSlide": "Odstranit snímek", + "textDesign": "Vzhled", "textDisplay": "Zobrazit", "textDistanceFromText": "Vzdálenost od textu", "textDistributeHorizontally": "Rozmístit vodorovně", @@ -336,6 +338,7 @@ "textNoTextFound": "Text nebyl nalezen", "textNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "textNumbers": "Čísla", + "textOk": "OK", "textOpacity": "Průhlednost", "textOptions": "Možnosti", "textPictureFromLibrary": "Obrázek z knihovny", @@ -374,26 +377,22 @@ "textSuperscript": "Horní index", "textTable": "Tabulka", "textText": "Text", - "textTheme": "Téma", + "textTheme": "Prostředí", "textTop": "Nahoru", "textTopLeft": "Vlevo nahoře", "textTopRight": "Vpravo nahoře", "textTotalRow": "Součtový řádek", - "textTransition": "Přechod", "textTransitions": "Přechody", "textType": "Typ", "textUnCover": "Odkrýt", "textVerticalIn": "Svislý uvnitř", "textVerticalOut": "Svislý vně", "textWedge": "Konjunkce", - "textWipe": "Vyčistit", + "textWipe": "Setření", "textZoom": "Přiblížení", "textZoomIn": "Přiblížit", "textZoomOut": "Oddálit", - "textZoomRotate": "Přiblížit a otočit", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "Přiblížit a otočit" }, "Settings": { "mniSlideStandard": "Standardní (4:3)", @@ -410,6 +409,7 @@ "textColorSchemes": "Schémata barev", "textComment": "Komentář", "textCreated": "Vytvořeno", + "textDarkTheme": "Tmavý vzhled prostředí", "textDisableAll": "Vypnout vše", "textDisableAllMacrosWithNotification": "Vypnout všechna makra s notifikacemi", "textDisableAllMacrosWithoutNotification": "Vypnout všechna makra bez notifikací", @@ -472,8 +472,7 @@ "txtScheme6": "Hala", "txtScheme7": "Rovnost", "txtScheme8": "Tok", - "txtScheme9": "Slévárna", - "textDarkTheme": "Dark Theme" + "txtScheme9": "Slévárna" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index c87eebb48..58bcf073f 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -382,7 +382,6 @@ "textTopLeft": "Oben links", "textTopRight": "Oben rechts", "textTotalRow": "Ergebniszeile", - "textTransition": "Übergang", "textTransitions": "Übergänge", "textType": "Typ", "textUnCover": "Aufdecken", diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index 9cb5c9620..664da091a 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -382,7 +382,6 @@ "textTopLeft": "Πάνω-Αριστερά", "textTopRight": "Πάνω-Δεξιά", "textTotalRow": "Συνολική Γραμμή", - "textTransition": "Μετάβαση", "textTransitions": "Μεταβάσεις", "textType": "Τύπος", "textUnCover": "Αποκάλυψη", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 3a83c0c19..b8cfbba7c 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -382,7 +382,6 @@ "textTopLeft": "Arriba a la izquierda", "textTopRight": "Arriba a la derecha", "textTotalRow": "Fila de totales", - "textTransition": "Transición", "textTransitions": "Transiciones", "textType": "Tipo", "textUnCover": "Revelar", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index aff78b2f0..7ba089451 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -382,7 +382,6 @@ "textTopLeft": "Haut à gauche", "textTopRight": "Haut à droite", "textTotalRow": "Ligne de total", - "textTransition": "Transition", "textTransitions": "Transitions", "textType": "Type", "textUnCover": "Découvrir", diff --git a/apps/presentationeditor/mobile/locale/gl.json b/apps/presentationeditor/mobile/locale/gl.json index 742ba734d..c86417a12 100644 --- a/apps/presentationeditor/mobile/locale/gl.json +++ b/apps/presentationeditor/mobile/locale/gl.json @@ -382,7 +382,6 @@ "textTopLeft": "Parte superior esquerda", "textTopRight": "Parte superior dereita", "textTotalRow": "Fila total", - "textTransition": "Transición", "textTransitions": "Transicións", "textType": "Tipo", "textUnCover": "Rebelar", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index 412274beb..c74497ae9 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -382,7 +382,6 @@ "textTopLeft": "Bal felső", "textTopRight": "Jobb felső", "textTotalRow": "Összes sor", - "textTransition": "Átmenet", "textTransitions": "Átmenetek", "textType": "Típus", "textUnCover": "Felfed", diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index afee10aa8..b14c904fa 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -382,7 +382,6 @@ "textTopLeft": "In alto a sinistra", "textTopRight": "In alto a destra", "textTotalRow": "Riga del totale", - "textTransition": "Transizione", "textTransitions": "Transizioni", "textType": "Tipo", "textUnCover": "Scoprire", diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index debb8d4e1..66fac9361 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -33,13 +33,13 @@ "textTryUndoRedo": "高速で共同な編集モードでは、元に戻す/やり直し機能が無効になります。", "textUsers": "ユーザー" }, + "HighlightColorPalette": { + "textNoFill": "塗りつぶしなし" + }, "ThemeColorPalette": { "textCustomColors": "ユーザー設定の色", "textStandartColors": "標準の色", "textThemeColors": "テーマの色" - }, - "HighlightColorPalette": { - "textNoFill": "No Fill" } }, "ContextMenu": { @@ -107,9 +107,12 @@ "textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", "textNo": "いいえ", "textNoLicenseTitle": "ライセンス制限に達しました", + "textNoTextFound": "テキストが見つかりませんでした", "textOpenFile": "ファイルを開くためにパスワードを入力してください", "textPaidFeature": "有料機能", "textRemember": "選択を覚える", + "textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", + "textReplaceSuccess": "検索が完了しました。{0}つが置換されました。", "textYes": "はい", "titleLicenseExp": "ライセンスの有効期限が切れています", "titleServerVersion": "編集者が更新された", @@ -123,10 +126,7 @@ "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", - "warnProcessRightsChange": "ファイルを編集する権限がありません!", - "textNoTextFound": "Text not found", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "ファイルを編集する権限がありません!" } }, "Error": { @@ -228,6 +228,7 @@ "textLinkTo": "リンク先", "textLinkType": "リンクのタイプ", "textNextSlide": "次のスライド", + "textOk": "OK", "textOther": "その他", "textPictureFromLibrary": "ライブラリからのイメージ", "textPictureFromURL": "URLからのイメージ", @@ -240,8 +241,7 @@ "textSlideNumber": "スライド番号", "textTable": "表", "textTableSize": "表のサイズ", - "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要がある", - "textOk": "Ok" + "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要がある" }, "Edit": { "notcriticalErrorTitle": " 警告", @@ -261,6 +261,7 @@ "textAllCaps": "全ての大字", "textApplyAll": "全てのスライドに適用する", "textAuto": "自動", + "textAutomatic": "自動", "textBack": "戻る", "textBandedColumn": "列を交代する", "textBandedRow": "行を交代する", @@ -285,6 +286,7 @@ "textDefault": "選択したテキスト", "textDelay": "遅延", "textDeleteSlide": "スタンドを削除する", + "textDesign": "デザイン", "textDisplay": "表示する", "textDistanceFromText": "テキストからの間隔", "textDistributeHorizontally": "左右に整列", @@ -292,7 +294,7 @@ "textDone": "完了", "textDoubleStrikethrough": "二重取り消し線", "textDuplicateSlide": "スライドの複製", - "textDuration": "期間", + "textDuration": "継続時間", "textEditLink": "リンクを編集する", "textEffect": "効果", "textEffects": "効果", @@ -336,6 +338,7 @@ "textNoTextFound": "テキストが見つかりませんでした", "textNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "textNumbers": "数", + "textOk": "OK", "textOpacity": "不透明度", "textOptions": "設定", "textPictureFromLibrary": "ライブラリからのイメージ", @@ -379,7 +382,6 @@ "textTopLeft": "左上", "textTopRight": "右上", "textTotalRow": "合計行", - "textTransition": "切り替え​​", "textTransitions": "切り替え効果", "textType": "タイプ", "textUnCover": "アンカバー", @@ -390,10 +392,7 @@ "textZoom": "ズーム", "textZoomIn": "拡大", "textZoomOut": "縮小", - "textZoomRotate": "ズームと回転", - "textAutomatic": "Automatic", - "textDesign": "Design", - "textOk": "Ok" + "textZoomRotate": "ズームと回転" }, "Settings": { "mniSlideStandard": "標準(4:3)", @@ -410,6 +409,7 @@ "textColorSchemes": "色スキーム", "textComment": "コメント", "textCreated": "作成された", + "textDarkTheme": "デークテーマ", "textDisableAll": "全てを無効にする", "textDisableAllMacrosWithNotification": "警告を表示して全てのマクロを無効にする", "textDisableAllMacrosWithoutNotification": "警告を表示してないすべてのマクロを無効にする", @@ -472,8 +472,7 @@ "txtScheme6": "コンコース", "txtScheme7": "株主資本", "txtScheme8": "フロー", - "txtScheme9": "ファウンドリ", - "textDarkTheme": "Dark Theme" + "txtScheme9": "ファウンドリ" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 1152fc5ff..39106ae89 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -379,7 +379,6 @@ "textTopLeft": "왼쪽 위", "textTopRight": "오른쪽 위", "textTotalRow": "합계", - "textTransition": "전환", "textTransitions": "전환", "textType": "유형", "textUnCover": "당기기", diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index 991b0f073..def1863c0 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -382,7 +382,6 @@ "textTopLeft": "Linksboven", "textTopRight": "Rechtsboven", "textTotalRow": "Totaalrij", - "textTransition": "Overgang", "textTransitions": "Overgangen", "textType": "Type", "textUnCover": "Onthullen", diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index c3ea981dc..cc53baea0 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -382,7 +382,6 @@ "textTopLeft": "Parte superior esquerda", "textTopRight": "Parte superior direita", "textTotalRow": "Linha total", - "textTransition": "Transição", "textTransitions": "Transições", "textType": "Tipo", "textUnCover": "Descobrir", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 30dc47e3f..d5978feb3 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -382,7 +382,6 @@ "textTopLeft": "Stânga sus", "textTopRight": "Dreapta sus", "textTotalRow": "Rând total", - "textTransition": "Tranziții", "textTransitions": "Tranziții", "textType": "Tip", "textUnCover": "Descoperire", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index c42b05784..6d4bcda58 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -382,7 +382,6 @@ "textTopLeft": "Сверху слева", "textTopRight": "Сверху справа", "textTotalRow": "Строка итогов", - "textTransition": "Переход", "textTransitions": "Переходы", "textType": "Тип", "textUnCover": "Открывание", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index ad192a2b1..d6a30341c 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -379,7 +379,6 @@ "textTopLeft": "Üst-Sol", "textTopRight": "Üst-Sağ", "textTotalRow": "Toplam Satır", - "textTransition": "Geçiş", "textTransitions": "geçişler", "textType": "Tip", "textUnCover": "Meydana çıkar", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index 533bc87fc..daa677149 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -382,7 +382,6 @@ "textTopLeft": "左上", "textTopRight": "右上", "textTotalRow": "总行", - "textTransition": "过渡", "textTransitions": "切换", "textType": "类型", "textUnCover": "揭露", diff --git a/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx b/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx index 73615138b..374ea55a1 100644 --- a/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/presentationeditor/mobile/src/controller/ContextMenu.jsx @@ -25,6 +25,7 @@ class ContextMenu extends ContextMenuController { this.onApiShowComment = this.onApiShowComment.bind(this); this.onApiHideComment = this.onApiHideComment.bind(this); this.getUserName = this.getUserName.bind(this); + this.isUserVisible = this.isUserVisible.bind(this); } static closeContextMenu() { @@ -36,6 +37,11 @@ class ContextMenu extends ContextMenuController { return AscCommon.UserInfoParser.getParsedName(user.asc_getUserName()); } + isUserVisible(id) { + const user = this.props.users.searchUserByCurrentId(id); + return user ? (user.asc_getIdOriginal()===this.props.users.currentUser.asc_getIdOriginal() || AscCommon.UserInfoParser.isUserVisible(user.asc_getUserName())) : true; + } + componentWillUnmount() { super.componentWillUnmount(); diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index 6d1ac5f12..cd4bb85da 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -627,10 +627,11 @@ class MainController extends Component { } onAdvancedOptions (type, advOptions) { + const { t } = this.props; + const _t = t('Controller.Main', {returnObjects:true}); + if ($$('.dlg-adv-options.modal-in').length > 0) return; - const _t = this._t; - if (type == Asc.c_oAscAdvancedOptionsID.DRM) { Common.Notifications.trigger('preloader:close'); Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], this.LoadingDocument, true); diff --git a/apps/presentationeditor/mobile/src/store/textSettings.js b/apps/presentationeditor/mobile/src/store/textSettings.js index 44ae68c56..551c633ae 100644 --- a/apps/presentationeditor/mobile/src/store/textSettings.js +++ b/apps/presentationeditor/mobile/src/store/textSettings.js @@ -105,11 +105,11 @@ export class storeTextSettings { this.thumbCanvas = document.createElement('canvas'); this.thumbContext = this.thumbCanvas.getContext('2d'); this.thumbs = [ - {ratio: 1, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, - {ratio: 1.25, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, - {ratio: 1.5, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, - {ratio: 1.75, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, - {ratio: 2, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} + {ratio: 1, path: '../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, + {ratio: 1.25, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, + {ratio: 1.5, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, + {ratio: 1.75, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, + {ratio: 2, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} ]; const applicationPixelRatio = Common.Utils.applicationPixelRatio(); diff --git a/apps/spreadsheeteditor/embed/locale/be.json b/apps/spreadsheeteditor/embed/locale/be.json index 97b6f0a85..80a4b9f80 100644 --- a/apps/spreadsheeteditor/embed/locale/be.json +++ b/apps/spreadsheeteditor/embed/locale/be.json @@ -14,6 +14,8 @@ "SSE.ApplicationController.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", "SSE.ApplicationController.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", "SSE.ApplicationController.errorForceSave": "Падчас захавання файла адбылася памылка. Калі ласка, выкарыстайце параметр \"Спампаваць як\", каб захаваць файл на цвёрдым дыску камп’ютара, альбо паспрабуйце яшчэ раз пазней.", + "SSE.ApplicationController.errorLoadingFont": "Шрыфты не загрузіліся.
Звярніцеся да адміністратара сервера дакументаў.", + "SSE.ApplicationController.errorTokenExpire": "Тэрмін дзеяння токена бяспекі дакумента сышоў.
Калі ласка, звярніцеся да адміністратара сервера дакументаў.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", "SSE.ApplicationController.errorUserDrop": "На дадзены момант файл недаступны.", "SSE.ApplicationController.notcriticalErrorTitle": "Увага", @@ -29,6 +31,7 @@ "SSE.ApplicationController.waitText": "Калі ласка, пачакайце...", "SSE.ApplicationView.txtDownload": "Спампаваць", "SSE.ApplicationView.txtEmbed": "Убудаваць", + "SSE.ApplicationView.txtFileLocation": "Перайсці да дакументаў", "SSE.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым", "SSE.ApplicationView.txtPrint": "Друк", "SSE.ApplicationView.txtShare": "Падзяліцца" diff --git a/apps/spreadsheeteditor/embed/locale/es.json b/apps/spreadsheeteditor/embed/locale/es.json index a8f4405a0..775c9c64e 100644 --- a/apps/spreadsheeteditor/embed/locale/es.json +++ b/apps/spreadsheeteditor/embed/locale/es.json @@ -1,38 +1,38 @@ { "common.view.modals.txtCopy": "Copiar al portapapeles", - "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtEmbed": "Insertar", "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", - "SSE.ApplicationController.convertationErrorText": "Fallo de conversión.", - "SSE.ApplicationController.convertationTimeoutText": "Límite de tiempo de conversión está superado.", + "SSE.ApplicationController.convertationErrorText": "Se ha producido un error en la conversión.", + "SSE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "SSE.ApplicationController.criticalErrorTitle": "Error", - "SSE.ApplicationController.downloadErrorText": "Fallo en descarga.", + "SSE.ApplicationController.downloadErrorText": "Se ha producido un error en la descarga", "SSE.ApplicationController.downloadTextText": "Descargando hoja de cálculo...", - "SSE.ApplicationController.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
Por favor, contacte con su Administrador del Servidor de Documentos.", + "SSE.ApplicationController.errorAccessDeny": "Está intentando realizar una acción para la que no tiene permiso.
Contacte con el administrador del servidor de documentos.", "SSE.ApplicationController.errorDefaultMessage": "Código de error: %1", - "SSE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", - "SSE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Póngase en contacto con el administrador del Servidor de documentos para obtener más información.", - "SSE.ApplicationController.errorForceSave": "Ha ocurrido un error al guardar el archivo. Por favor, use la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", - "SSE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", - "SSE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Por favor, póngase en contacto con el administrador del Servidor de Documentos.", - "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página.", - "SSE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", - "SSE.ApplicationController.notcriticalErrorTitle": "Aviso", + "SSE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no se puede abrir.", + "SSE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo supera el límiete establecido por su servidor.
Contacte con el administrador del servidor de documentos para obtener más detalles.", + "SSE.ApplicationController.errorForceSave": "Se ha producido un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo más tarde.", + "SSE.ApplicationController.errorLoadingFont": "Los tipos de letra no están cargados.
Contacte con el administrador del servidor de documentos.", + "SSE.ApplicationController.errorTokenExpire": "El token de seguridad del documento ha expirado.
Contacte con el administrador del servidor de documentos", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.", + "SSE.ApplicationController.errorUserDrop": "No se puede acceder al archivo.", + "SSE.ApplicationController.notcriticalErrorTitle": "Advertencia", "SSE.ApplicationController.openErrorText": "Se ha producido un error al abrir el archivo. ", - "SSE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", + "SSE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Recargue la página.", "SSE.ApplicationController.textAnonymous": "Anónimo", "SSE.ApplicationController.textGuest": "Invitado", "SSE.ApplicationController.textLoadingDocument": "Cargando hoja de cálculo", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Cerrar", "SSE.ApplicationController.unknownErrorText": "Error desconocido.", - "SSE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no está soportado.", - "SSE.ApplicationController.waitText": "Por favor, espere...", + "SSE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", + "SSE.ApplicationController.waitText": "Espere...", "SSE.ApplicationView.txtDownload": "Descargar", - "SSE.ApplicationView.txtEmbed": "Incorporar", + "SSE.ApplicationView.txtEmbed": "Insertar", "SSE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", - "SSE.ApplicationView.txtFullScreen": "Pantalla Completa", + "SSE.ApplicationView.txtFullScreen": "Pantalla completa", "SSE.ApplicationView.txtPrint": "Imprimir", "SSE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app.js b/apps/spreadsheeteditor/main/app.js index 74d763024..a9cf9cc1b 100644 --- a/apps/spreadsheeteditor/main/app.js +++ b/apps/spreadsheeteditor/main/app.js @@ -152,9 +152,9 @@ require([ 'Print', 'Toolbar', 'Statusbar', - 'Spellcheck', 'RightMenu', 'LeftMenu', + 'Spellcheck', 'Main', 'PivotTable', 'DataTab', @@ -177,9 +177,9 @@ require([ 'spreadsheeteditor/main/app/controller/CellEditor', 'spreadsheeteditor/main/app/controller/Toolbar', 'spreadsheeteditor/main/app/controller/Statusbar', - 'spreadsheeteditor/main/app/controller/Spellcheck', 'spreadsheeteditor/main/app/controller/RightMenu', 'spreadsheeteditor/main/app/controller/LeftMenu', + 'spreadsheeteditor/main/app/controller/Spellcheck', 'spreadsheeteditor/main/app/controller/Main', 'spreadsheeteditor/main/app/controller/Print', 'spreadsheeteditor/main/app/controller/PivotTable', diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 616f237c1..e8af354c4 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -106,6 +106,9 @@ define([ this.api.asc_drawPrintPreview(this._navigationPreview.currentPage); } }, this)); + + var eventname = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel'; + this.printSettings.$previewBox.on(eventname, _.bind(this.onPreviewWheel, this)); }, setApi: function(o) { @@ -315,9 +318,8 @@ define([ if (!!pageCount) { this.updateNavigationButtons(0, pageCount); this.printSettings.txtNumberPage.checkValidate(); - - this._isPreviewVisible = true; } + this._isPreviewVisible = true; }, openPrintSettings: function(type, cmp, format, asUrl) { @@ -641,6 +643,11 @@ define([ this.updateNavigationButtons(index, this._navigationPreview.pageCount); }, + onPreviewWheel: function (e) { + var forward = (e.deltaY || (e.detail && -e.detail) || e.wheelDelta) < 0; + this.onChangePreviewPage(forward); + }, + onKeypressPageNumber: function (input, e) { if (e.keyCode === Common.UI.Keys.RETURN) { var box = this.printSettings.$el.find('#print-number-page'), diff --git a/apps/spreadsheeteditor/main/app/controller/Spellcheck.js b/apps/spreadsheeteditor/main/app/controller/Spellcheck.js index 7a166723e..54e982183 100644 --- a/apps/spreadsheeteditor/main/app/controller/Spellcheck.js +++ b/apps/spreadsheeteditor/main/app/controller/Spellcheck.js @@ -254,6 +254,9 @@ define([ }, onSpellCheckVariantsFound: function (property) { + if (property===null && this._currentSpellObj === property && !(this.panelSpellcheck && this.panelSpellcheck.isVisible())) + return; + this._currentSpellObj = property; var arr = [], diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 97e314757..29be2e544 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -3982,6 +3982,9 @@ define([ api: me.api, fontStore: me.fontStore, handler: function(dlg, result) { + if (result === 'ok') { + me.getApplication().getController('Print').updatePreview(); + } Common.NotificationCenter.trigger('edit:complete'); } }); diff --git a/apps/spreadsheeteditor/main/app/controller/ViewTab.js b/apps/spreadsheeteditor/main/app/controller/ViewTab.js index 09d045e0b..8a09ef62b 100644 --- a/apps/spreadsheeteditor/main/app/controller/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/controller/ViewTab.js @@ -284,8 +284,10 @@ define([ if (this.view) { var current_theme = Common.UI.Themes.currentThemeId() || Common.UI.Themes.defaultThemeId(), menu_item = _.findWhere(this.view.btnInterfaceTheme.menu.items, {value: current_theme}); - this.view.btnInterfaceTheme.menu.clearAll(); - menu_item.setChecked(true, true); + if ( !!menu_item ) { + this.view.btnInterfaceTheme.menu.clearAll(); + menu_item.setChecked(true, true); + } } } diff --git a/apps/spreadsheeteditor/main/app/view/CellSettings.js b/apps/spreadsheeteditor/main/app/view/CellSettings.js index f6f58591e..690341383 100644 --- a/apps/spreadsheeteditor/main/app/view/CellSettings.js +++ b/apps/spreadsheeteditor/main/app/view/CellSettings.js @@ -92,7 +92,7 @@ define([ this.GradColor = { values: [0, 100], colors: ['000000', 'ffffff'], currentIdx: 0}; this.fillControls = []; - this.gradientColorsStr=""; + this.gradientColorsStr="#000, #fff"; this.typeGradient = 90; this.render(); @@ -242,6 +242,9 @@ define([ { offsetx: 50, offsety: 100, type:270, subtype:3}, { offsetx: 100, offsety: 100, type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this.btnDirection = new Common.UI.Button({ cls : 'btn-large-dataview', @@ -263,7 +266,8 @@ define([ parentMenu: btn.menu, restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); }); this.btnDirection.render($('#cell-button-direction')); @@ -1080,15 +1084,13 @@ define([ }, btnDirectionRedraw: function(slider, gradientColorsStr) { - this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index b5c4f8d0d..35f998f1d 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -220,7 +220,7 @@ define([ iconCls: 'toolbar__icon btn-data-validation', caption: this.capBtnTextDataValidation, disabled: true, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.sheetLock, _set.wsLock], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.editPivot, _set.cantModifyFilter, _set.sheetLock, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index 73ed419df..92b31fdb5 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -448,7 +448,7 @@ define([ if (this.mode.canPrint) { var printPanel = SSE.getController('Print').getView('PrintWithPreview'); printPanel.menu = this; - this.panels['printpreview'] = printPanel.render(this.$el.find('#panel-print')); + !this.panels['printpreview'] && (this.panels['printpreview'] = printPanel.render(this.$el.find('#panel-print'))); } if ( Common.Controllers.Desktop.isActive() ) { diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 3b4e313fd..df69c1f5d 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -553,7 +553,7 @@ define([ }); var regdata = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; regdata.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js index 3cb0252cb..50ee3dfea 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js @@ -124,7 +124,7 @@ define([ this.txtKnit, this.txtLeather, this.txtBrownPaper, this.txtPapyrus, this.txtWood]; this.fillControls = []; - this.gradientColorsStr=""; + this.gradientColorsStr="#000, #fff"; this.typeGradient = 90; this.render(); @@ -461,8 +461,13 @@ define([ rawData = record; } - this.typeGradient = rawData.type + 90; - (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { this.numGradientAngle.setValue(rawData.type, true); @@ -1144,13 +1149,13 @@ define([ btnDirectionRedraw: function(slider, gradientColorsStr) { this.gradientColorsStr = gradientColorsStr; - if (this.mnuDirectionPicker.dataViewItems.length == 1) - this.mnuDirectionPicker.dataViewItems[0].$el.children(0).css({'background': 'radial-gradient(' + gradientColorsStr + ')'}); - else - this.mnuDirectionPicker.dataViewItems.forEach(function (item) { - var type = item.model.get('type') + 90; - item.$el.children(0).css({'background': 'linear-gradient(' + type + 'deg, ' + gradientColorsStr + ')'}); - }); + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); if (this.typeGradient == -1) this.btnDirection.$icon.css({'background': 'none'}); @@ -1318,9 +1323,12 @@ define([ { type:270, subtype:3}, { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { type:2, subtype:5} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1344,8 +1352,8 @@ define([ restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), itemTemplate: _.template('
') + +'<% if(type!=2) {%>linear-gradient(<%= type + 90 %>deg,<%= gradientColorsStr %>)' + +' <%} else {%> radial-gradient(<%= gradientColorsStr %>) <%}%>;">') }); }); this.btnDirection.render($('#shape-button-direction')); diff --git a/apps/spreadsheeteditor/main/app/view/TextArtSettings.js b/apps/spreadsheeteditor/main/app/view/TextArtSettings.js index 651d4fcbc..ef15aebd6 100644 --- a/apps/spreadsheeteditor/main/app/view/TextArtSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TextArtSettings.js @@ -130,6 +130,8 @@ define([ this.TransformSettings = $('.textart-transform'); + this.gradientColorsStr="#000, #fff"; + this.typeGradient = 90 ; SSE.getCollection('Common.Collections.TextArt').bind({ reset: this.fillTextArt.bind(this) }); @@ -398,10 +400,7 @@ define([ this.mnuDirectionPicker.restoreHeight = 174; var record = this.mnuDirectionPicker.store.findWhere({type: this.GradLinearDirectionType}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record) ? this.GradLinearDirectionType + 90 : -1; this.numGradientAngle.setValue(this.GradLinearDirectionType, true); this.numGradientAngle.setDisabled(this._locked); } else if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_PATH) { @@ -410,9 +409,9 @@ define([ this.mnuDirectionPicker.restoreHeight = 58; this.mnuDirectionPicker.selectByIndex(this.GradRadialDirectionIdx, true); if (this.GradRadialDirectionIdx>=0) - this.btnDirection.setIconCls('item-gradient ' + this._viewDataRadial[this.GradRadialDirectionIdx].iconcls); + this.typeGradient = this._viewDataRadial[this.GradRadialDirectionIdx].type; else - this.btnDirection.setIconCls(''); + this.typeGradient= -1; this.numGradientAngle.setValue(0, true); this.numGradientAngle.setDisabled(true); } @@ -452,7 +451,14 @@ define([ rawData = record; } - this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); + //this.btnDirection.setIconCls('item-gradient ' + rawData.iconcls); + if (this.GradFillType === Asc.c_oAscFillGradType.GRAD_LINEAR) { + this.GradLinearDirectionType = rawData.type; + this.typeGradient = rawData.type + 90; + } else { + this.GradRadialDirectionIdx = 0; + this.typeGradient = rawData.type; + } (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) ? this.GradLinearDirectionType = rawData.type : this.GradRadialDirectionIdx = 0; if (this.api) { if (this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR) { @@ -809,7 +815,7 @@ define([ this.onGradTypeSelect(this.cmbGradType, rec.attributes); } else { this.cmbGradType.setValue(''); - this.btnDirection.setIconCls(''); + this.typeGradient = -1; } this._state.GradFillType = this.GradFillType; } @@ -820,10 +826,7 @@ define([ this.GradLinearDirectionType=value; var record = this.mnuDirectionPicker.store.findWhere({type: value}); this.mnuDirectionPicker.selectRecord(record, true); - if (record) - this.btnDirection.setIconCls('item-gradient ' + record.get('iconcls')); - else - this.btnDirection.setIconCls(''); + this.typeGradient = (record)? value + 90 : -1; this.numGradientAngle.setValue(value, true); } } else @@ -856,10 +859,17 @@ define([ me.GradColor.values[index] = position; } }); + + var arrGrCollors=[]; + var scale=(this.GradFillType == Asc.c_oAscFillGradType.GRAD_LINEAR)?1:0.7; for (var index=0; index= this.GradColor.colors.length) { me.GradColor.currentIdx = 0; } @@ -1080,6 +1090,26 @@ define([ } }, + btnDirectionRedraw: function(slider, gradientColorsStr) { + this.gradientColorsStr = gradientColorsStr; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = gradientColorsStr; + }); + this._viewDataRadial.gradientColorsStr = this.gradientColorsStr; + this.mnuDirectionPicker.store.each(function(item){ + item.set('gradientColorsStr', gradientColorsStr); + }, this); + + if (this.typeGradient == -1) + this.btnDirection.$icon.css({'background': 'none'}); + else if (this.typeGradient == 2) + this.btnDirection.$icon.css({'background': ('radial-gradient(' + gradientColorsStr + ')')}); + else + this.btnDirection.$icon.css({ + 'background': ('linear-gradient(' + this.typeGradient + 'deg, ' + gradientColorsStr + ')') + }); + }, + createDelayedControls: function() { var me = this; @@ -1222,18 +1252,21 @@ define([ this.lockedControls.push(this.cmbGradType); this._viewDataLinear = [ - { offsetx: 0, offsety: 0, type:45, subtype:-1, iconcls:'gradient-left-top' }, - { offsetx: 50, offsety: 0, type:90, subtype:4, iconcls:'gradient-top'}, - { offsetx: 100, offsety: 0, type:135, subtype:5, iconcls:'gradient-right-top'}, - { offsetx: 0, offsety: 50, type:0, subtype:6, iconcls:'gradient-left', cls: 'item-gradient-separator', selected: true}, - { offsetx: 100, offsety: 50, type:180, subtype:1, iconcls:'gradient-right'}, - { offsetx: 0, offsety: 100, type:315, subtype:2, iconcls:'gradient-left-bottom'}, - { offsetx: 50, offsety: 100, type:270, subtype:3, iconcls:'gradient-bottom'}, - { offsetx: 100, offsety: 100, type:225, subtype:7, iconcls:'gradient-right-bottom'} + { type:45, subtype:-1}, + { type:90, subtype:4}, + { type:135, subtype:5}, + { type:0, subtype:6, cls: 'item-gradient-separator', selected: true}, + { type:180, subtype:1}, + { type:315, subtype:2}, + { type:270, subtype:3}, + { type:225, subtype:7} ]; + _.each(this._viewDataLinear, function(item){ + item.gradientColorsStr = me.gradientColorsStr; + }); this._viewDataRadial = [ - { offsetx: 100, offsety: 150, type:2, subtype:5, iconcls:'gradient-radial-center'} + { type:2, subtype:5, gradientColorsStr: this.gradientColorsStr} ]; this.btnDirection = new Common.UI.Button({ @@ -1256,7 +1289,9 @@ define([ parentMenu: btn.menu, restoreHeight: 174, store: new Common.UI.DataViewStore(me._viewDataLinear), - itemTemplate: _.template('
') + itemTemplate: _.template('
') }); }); this.btnDirection.render($('#textart-button-direction')); diff --git a/apps/spreadsheeteditor/main/app_dev.js b/apps/spreadsheeteditor/main/app_dev.js index c3253a8fe..746539606 100644 --- a/apps/spreadsheeteditor/main/app_dev.js +++ b/apps/spreadsheeteditor/main/app_dev.js @@ -142,9 +142,9 @@ require([ 'Print', 'Toolbar', 'Statusbar', - 'Spellcheck', 'RightMenu', 'LeftMenu', + 'Spellcheck', 'Main', 'PivotTable', 'DataTab', @@ -167,9 +167,9 @@ require([ 'spreadsheeteditor/main/app/controller/CellEditor', 'spreadsheeteditor/main/app/controller/Toolbar', 'spreadsheeteditor/main/app/controller/Statusbar', - 'spreadsheeteditor/main/app/controller/Spellcheck', 'spreadsheeteditor/main/app/controller/RightMenu', 'spreadsheeteditor/main/app/controller/LeftMenu', + 'spreadsheeteditor/main/app/controller/Spellcheck', 'spreadsheeteditor/main/app/controller/Main', 'spreadsheeteditor/main/app/controller/Print', 'spreadsheeteditor/main/app/controller/PivotTable', diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index 253ad5464..80a167977 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -134,7 +134,7 @@ "Common.Views.Header.textBack": "Перайсці да дакументаў", "Common.Views.Header.textCompactView": "Схаваць панэль прылад", "Common.Views.Header.textHideLines": "Схаваць лінейкі", - "Common.Views.Header.textHideStatusBar": "Схаваць панэль стану", + "Common.Views.Header.textHideStatusBar": "Аб'яднаць панэлі радкоў і стану", "Common.Views.Header.textSaveBegin": "Захаванне…", "Common.Views.Header.textSaveChanged": "Зменена", "Common.Views.Header.textSaveEnd": "Усе змены захаваныя", @@ -637,7 +637,7 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Ліцэнзійнае абмежаванне", "SSE.Controllers.Main.textPaidFeature": "Платная функцыя", "SSE.Controllers.Main.textPleaseWait": "Аперацыя можа заняць больш часу. Калі ласка, пачакайце… ", - "SSE.Controllers.Main.textRemember": "Запомніць мой выбар", + "SSE.Controllers.Main.textRemember": "Запомніць мой выбар для ўсіх файлаў", "SSE.Controllers.Main.textShape": "Фігура", "SSE.Controllers.Main.textStrict": "Строгі рэжым", "SSE.Controllers.Main.textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.
Націсніце кнопку \"Строгі рэжым\", каб пераключыцца ў строгі рэжым сумеснага рэдагавання, каб рэдагаваць файл без іншых карыстальнікаў і адпраўляць змены толькі пасля іх захавання. Пераключацца паміж рэжымамі сумеснага рэдагавання можна з дапамогай дадатковых налад рэдактара.", @@ -1725,7 +1725,7 @@ "SSE.Views.DocumentHolder.txtSortFontColor": "Спачатку ячэйкі з вылучаным шрыфтам", "SSE.Views.DocumentHolder.txtSparklines": "Спарклайны", "SSE.Views.DocumentHolder.txtText": "Тэкст", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Дадатковыя налады тэксту", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Дадатковыя налады абзаца", "SSE.Views.DocumentHolder.txtTime": "Час", "SSE.Views.DocumentHolder.txtUngroup": "Разгрупаваць", "SSE.Views.DocumentHolder.txtWidth": "Шырыня", @@ -1802,7 +1802,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Дзесятковы падзяляльнік", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Хуткі", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Хінтынг шрыфтоў", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Заўсёды захоўваць на серверы (інакш захоўваць на серверы падчас закрыцця дакумента)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": " Дадаваць версію ў сховішча пасля націскання кнопкі \"Захаваць\" або \"Ctrl+S\"", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Мова формул", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Прыклад: СУМ; МІН; МАКС; ПАДЛІК", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Уключыць адлюстраванне каментароў у тэксце", @@ -1826,7 +1826,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Аўтаматычнае аднаўленне", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Аўтазахаванне", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Выключана", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Захаваць на серверы", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Захаванне прамежкавых версій", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Кожную хвіліну", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Стыль спасылак", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Прадвызначаны рэжым кэшу", @@ -1861,7 +1861,7 @@ "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Абараніць табліцу", "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Пры дапамозе подпісу", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Рэдагаваць табліцу", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Пры рэдагаванні табліцы выдаляцца подпісы.
Сапраўды хочаце працягнуць? ", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Пры рэдагаванні табліцы выдаляцца подпісы.
Працягнуць?", "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Гэтая электронная табліца абароненая паролем", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Гэтую табліцу неабходна падпісаць.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "У табліцу былі дададзеныя дзейныя подпісы. Табліца абароненая ад рэдагавання.", @@ -1975,8 +1975,8 @@ "SSE.Views.HeaderFooterDialog.textEven": "Цотная старонка", "SSE.Views.HeaderFooterDialog.textFileName": "Назва файла", "SSE.Views.HeaderFooterDialog.textFirst": "Першая старонка", - "SSE.Views.HeaderFooterDialog.textFooter": "Ніжні калантытул", - "SSE.Views.HeaderFooterDialog.textHeader": "Верхні калантытул", + "SSE.Views.HeaderFooterDialog.textFooter": "Ніжні калонтытул", + "SSE.Views.HeaderFooterDialog.textHeader": "Верхні калонтытул", "SSE.Views.HeaderFooterDialog.textInsert": "Уставіць", "SSE.Views.HeaderFooterDialog.textItalic": "Курсіў", "SSE.Views.HeaderFooterDialog.textLeft": "Злева", @@ -1993,7 +1993,7 @@ "SSE.Views.HeaderFooterDialog.textSubscript": "Падрадковыя", "SSE.Views.HeaderFooterDialog.textSuperscript": "Надрадковыя", "SSE.Views.HeaderFooterDialog.textTime": "Час", - "SSE.Views.HeaderFooterDialog.textTitle": "Налады калантытулаў", + "SSE.Views.HeaderFooterDialog.textTitle": "Налады калонтытулаў", "SSE.Views.HeaderFooterDialog.textUnderline": "Падкрэслены", "SSE.Views.HeaderFooterDialog.tipFontName": "Шрыфт", "SSE.Views.HeaderFooterDialog.tipFontSize": "Памер шрыфту", @@ -2333,7 +2333,7 @@ "SSE.Views.PrintWithPreview.txtFitCols": "Умясціць усе слупкі на адной старонцы", "SSE.Views.PrintWithPreview.txtFitPage": "Умясціць аркуш на адной старонцы", "SSE.Views.PrintWithPreview.txtFitRows": "Умясціць усе радкі на адной старонцы", - "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Налады калантытулаў", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Налады калонтытулаў", "SSE.Views.PrintWithPreview.txtIgnore": "Ігнараваць вобласць друку", "SSE.Views.PrintWithPreview.txtLandscape": "Альбомная", "SSE.Views.PrintWithPreview.txtLeft": "Злева", @@ -2354,7 +2354,7 @@ "SSE.Views.RightMenu.txtCellSettings": "Налады ячэйкі", "SSE.Views.RightMenu.txtChartSettings": "Налады дыяграмы", "SSE.Views.RightMenu.txtImageSettings": "Налады выявы", - "SSE.Views.RightMenu.txtParagraphSettings": "Налады тэксту", + "SSE.Views.RightMenu.txtParagraphSettings": "Налады абзаца", "SSE.Views.RightMenu.txtPivotSettings": "Налады зводнай табліцы", "SSE.Views.RightMenu.txtSettings": "Асноўныя налады", "SSE.Views.RightMenu.txtShapeSettings": "Налады фігуры", @@ -2486,7 +2486,7 @@ "SSE.Views.SignatureSettings.strSigner": "Падпісальнік", "SSE.Views.SignatureSettings.strValid": "Дзейныя подпісы", "SSE.Views.SignatureSettings.txtContinueEditing": "Рэдагаваць усё роўна", - "SSE.Views.SignatureSettings.txtEditWarning": "Пры рэдагаванні табліцы выдаляцца подпісы.
Сапраўды хочаце працягнуць? ", + "SSE.Views.SignatureSettings.txtEditWarning": "Пры рэдагаванні табліцы выдаляцца подпісы.
Працягнуць?", "SSE.Views.SignatureSettings.txtRequestedSignatures": "Гэтую табліцу неабходна падпісаць.", "SSE.Views.SignatureSettings.txtSigned": "У табліцу былі дададзеныя дзейныя подпісы. Табліца абароненая ад рэдагавання.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Некаторыя з лічбавых подпісаў электроннай табліцы хібныя альбо іх немагчыма праверыць. Табліца абароненая ад рэдагавання.", @@ -2634,7 +2634,7 @@ "SSE.Views.Spellcheck.txtSpelling": "Правапіс", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Скапіяваць у канец)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Перамясціць у канец)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Скапіяваць перад аркушам", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Уставіць перад аркушам", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Перамясціць перад аркушам", "SSE.Views.Statusbar.filteredRecordsText": "Адфільтравана {0} з {1} запісаў", "SSE.Views.Statusbar.filteredText": "Рэжым фільтрацыі", @@ -2772,7 +2772,7 @@ "SSE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", "SSE.Views.Toolbar.capBtnColorSchemas": "Каляровая схема", "SSE.Views.Toolbar.capBtnComment": "Каментар", - "SSE.Views.Toolbar.capBtnInsHeader": "Калантытулы", + "SSE.Views.Toolbar.capBtnInsHeader": "Калонтытулы", "SSE.Views.Toolbar.capBtnInsSlicer": "Зводка", "SSE.Views.Toolbar.capBtnInsSymbol": "Сімвал", "SSE.Views.Toolbar.capBtnMargins": "Палі", @@ -2899,7 +2899,7 @@ "SSE.Views.Toolbar.tipEditChart": "Рэдагаваць дыяграму", "SSE.Views.Toolbar.tipEditChartData": "Абраць даныя", "SSE.Views.Toolbar.tipEditChartType": "Змяніць тып дыяграмы", - "SSE.Views.Toolbar.tipEditHeader": "Рэдагаваць калантытулы", + "SSE.Views.Toolbar.tipEditHeader": "Рэдагаваць калонтытулы", "SSE.Views.Toolbar.tipFontColor": "Колер шрыфту", "SSE.Views.Toolbar.tipFontName": "Шрыфт", "SSE.Views.Toolbar.tipFontSize": "Памер шрыфту", @@ -2925,7 +2925,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Арыентацыя старонкі", "SSE.Views.Toolbar.tipPageSize": "Памер старонкі", "SSE.Views.Toolbar.tipPaste": "Уставіць", - "SSE.Views.Toolbar.tipPrColor": "Колер фону", + "SSE.Views.Toolbar.tipPrColor": "Колер запаўнення", "SSE.Views.Toolbar.tipPrint": "Друк", "SSE.Views.Toolbar.tipPrintArea": "Вобласць друку", "SSE.Views.Toolbar.tipPrintTitles": "Друкаваць загалоўкі", diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 52f3c3250..8a1194bc3 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -480,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Přidat svislou čáru", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Zarovnat vůči znaku", "SSE.Controllers.DocumentHolder.txtAll": "(vše)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Získá veškerý obsah tabulky, nebo definovaných sloupců tabulky tj. hlavičky, data a celkový počet řádků", "SSE.Controllers.DocumentHolder.txtAnd": "a", "SSE.Controllers.DocumentHolder.txtBegins": "Začíná na", "SSE.Controllers.DocumentHolder.txtBelowAve": "Podprůměrné", @@ -489,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Sloupec", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Zarovnání sloupce", "SSE.Controllers.DocumentHolder.txtContains": "Obsahuje", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Získá hodnotu buněk tabulky, nebo definovaných sloupců tabulky", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Snížit velikost argumentu", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Odstranit argument", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Odstranit ruční zalomení", @@ -512,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Větší nebo rovno", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Znak nad textem", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Znak pod textem", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Získá hlavičky v tabulce, nebo hlavičky definovaných sloupců tabulky", "SSE.Controllers.DocumentHolder.txtHeight": "Výška", "SSE.Controllers.DocumentHolder.txtHideBottom": "Skrýt ohraničení dole", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Skrýt dolní limit", @@ -592,6 +595,7 @@ "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Roztáhnout závorky", "SSE.Controllers.DocumentHolder.txtThisRowHint": "Zvolte pouze tento řádek zadaného sloupce", "SSE.Controllers.DocumentHolder.txtTop": "Nahoře", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Získá hodnotu celkového počtu řádků, nebo definovaných sloupců tabulky", "SSE.Controllers.DocumentHolder.txtUnderbar": "Čárka pod textem", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Vzít zpět automatické rozšíření tabulky", "SSE.Controllers.DocumentHolder.txtUseTextImport": "Použít průvodce importem textu", @@ -646,6 +650,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operaci nelze provést, protože oblast obsahuje filtrované buňky.
Odkryjte filtrované prvky a zkuste to znovu.", "SSE.Controllers.Main.errorBadImageUrl": "URL adresa obrázku není správně", "SSE.Controllers.Main.errorCannotUngroup": "Seskupení není možné zrušit. Pro zahájení obrysu, vyberte podrobnost řádek nebo sloupců a seskupte je.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Tento příkaz nelze použít na zabezpečený list. Pro použití příkazu, zrušte zabezpečení listu.
Může být vyžadováno zadání hesla.", "SSE.Controllers.Main.errorChangeArray": "Nemůžete měnit část pole.", "SSE.Controllers.Main.errorChangeFilteredRange": "Dojde ke změně rozsahu filtrů v listě.
Pro provedení je nutné vypnout automatické filtry.", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Buňka nebo graf, který se pokoušíte změnit je na zabezpečeném listu. Pro provedení změny, vypněte zabezpečení listu. Může být vyžadováno zadání hesla.", @@ -762,6 +767,10 @@ "SSE.Controllers.Main.textCustomLoader": "Mějte na paměti, že dle podmínek licence nejste oprávněni měnit zavaděč.
Pro získání nabídky se obraťte na naše obchodní oddělení.", "SSE.Controllers.Main.textDisconnect": "Spojení je ztraceno", "SSE.Controllers.Main.textFillOtherRows": "Vyplnit ostatní řádky", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Vzorec zadaný v {0} řádcích obsahuje data. Doplnění dat do ostatních řádků, může trvat několik minut.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Vzorec je zadán zadaný prvních {0} řádcích. Doplnění dat do ostatních řádků, může trvat několik minut.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Vzorec je zadaný pouze v prvních {0} řádcích, z důvodu ukládání do paměti. Dalších {1} řádků v tomto listu neobsahuje data. Data můžete zapsat manuálně.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Vzorec je zadaný pouze v prvních {0} řádcích, z důvodu ukládání do paměti. Ostatní řádky v tomto listu neobsahují data.", "SSE.Controllers.Main.textGuest": "Návštěvník", "SSE.Controllers.Main.textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "SSE.Controllers.Main.textLearnMore": "Více informací", @@ -2744,9 +2753,12 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Stávající list", "SSE.Views.PrintWithPreview.txtCustom": "Uživatelsky určené", "SSE.Views.PrintWithPreview.txtCustomOptions": "Uživatelsky určené předvolby", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Není co vytisknout, protože tabulka je prázdná.", "SSE.Views.PrintWithPreview.txtFitCols": "Přizpůsobit všechny sloupce na jedné stránce", "SSE.Views.PrintWithPreview.txtFitPage": "Přizpůsobit list jedné stránce", "SSE.Views.PrintWithPreview.txtFitRows": "Přizpůsobit všechny řádky na jedné stránce", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Mřížky a nadpisy", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Nastavení záhlaví/zápatí", "SSE.Views.PrintWithPreview.txtIgnore": "Ignorovat oblast tisku", "SSE.Views.PrintWithPreview.txtLandscape": "Na šířku", "SSE.Views.PrintWithPreview.txtLeft": "Vlevo", @@ -2763,6 +2775,9 @@ "SSE.Views.PrintWithPreview.txtPrintRange": "Rozsah tisku", "SSE.Views.PrintWithPreview.txtPrintTitles": "Tisk názvů", "SSE.Views.PrintWithPreview.txtRepeat": "Opakovat…", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Vlevo opakovat sloupce", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Nahoře opakovat řádky", + "SSE.Views.PrintWithPreview.txtRight": "Vpravo", "SSE.Views.PrintWithPreview.txtSave": "Uložit", "SSE.Views.PrintWithPreview.txtScaling": "Změna měřítka", "SSE.Views.PrintWithPreview.txtSelection": "Výběr", @@ -3420,6 +3435,7 @@ "SSE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", "SSE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", "SSE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", + "SSE.Views.Toolbar.tipMarkersHRound": "Duté kulaté odrážky", "SSE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", "SSE.Views.Toolbar.tipMerge": "Sloučit a vystředit", "SSE.Views.Toolbar.tipNone": "Žádné", diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json index d106493af..250546c06 100644 --- a/apps/spreadsheeteditor/main/locale/id.json +++ b/apps/spreadsheeteditor/main/locale/id.json @@ -2,6 +2,37 @@ "cancelButtonText": "Cancel", "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", "Common.Controllers.Chat.textEnterMessage": "Enter your message here", + "Common.Controllers.History.notcriticalErrorTitle": "Peringatan", + "Common.define.chartData.textArea": "Grafik Area", + "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textCharts": "Bagan", + "Common.define.chartData.textColumn": "Kolom", + "Common.define.chartData.textColumnSpark": "Kolom", + "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textLineSpark": "Garis", + "Common.define.chartData.textPie": "Diagram Lingkaran", + "Common.define.conditionalData.textAbove": "Di atas", + "Common.define.conditionalData.textBelow": "Di bawah", + "Common.define.conditionalData.textBottom": "Bawah", + "Common.define.conditionalData.textDate": "Tanggal", + "Common.define.conditionalData.textDuplicate": "Duplikat", + "Common.define.conditionalData.textError": "Kesalahan", + "Common.define.conditionalData.textGreater": "Lebih Dari", + "Common.define.conditionalData.textGreaterEq": "Lebih Dari atau Sama Dengan", + "Common.define.conditionalData.textLastMonth": "bulan lalu", + "Common.define.conditionalData.textLastWeek": "minggu lalu", + "Common.define.conditionalData.textLess": "Kurang Dari", + "Common.define.conditionalData.textLessEq": "Kurang Dari atau Sama Dengan", + "Common.define.conditionalData.textNotEqual": "Tidak Sama Dengan", + "Common.define.conditionalData.textText": "Teks", + "Common.define.conditionalData.textThisMonth": "Bulan ini", + "Common.define.conditionalData.textToday": "Hari ini", + "Common.define.conditionalData.textTomorrow": "Besok", + "Common.define.conditionalData.textTop": "Atas", + "Common.define.conditionalData.textYesterday": "Kemarin", + "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.UI.ButtonColored.textAutoColor": "Otomatis", + "Common.UI.ButtonColored.textNewColor": "Tambahkan Warna Khusus Baru", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", @@ -22,6 +53,7 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", + "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Window.cancelButtonText": "Cancel", "Common.UI.Window.closeButtonText": "Close", "Common.UI.Window.noButtonText": "No", @@ -39,17 +71,26 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Version ", + "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textBy": "oleh", + "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", + "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", + "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", "Common.Views.Chat.textSend": "Send", "Common.Views.Comments.textAdd": "Add", "Common.Views.Comments.textAddComment": "Add Comment", "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", "Common.Views.Comments.textAddReply": "Add Reply", + "Common.Views.Comments.textAll": "Semua", "Common.Views.Comments.textAnonym": "Guest", "Common.Views.Comments.textCancel": "Cancel", "Common.Views.Comments.textClose": "Close", "Common.Views.Comments.textComments": "Comments", "Common.Views.Comments.textEdit": "Edit", "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", + "Common.Views.Comments.textHintAddComment": "Tambahkan komentar", "Common.Views.Comments.textOpenAgain": "Open Again", "Common.Views.Comments.textReply": "Reply", "Common.Views.Comments.textResolve": "Resolve", @@ -62,27 +103,119 @@ "Common.Views.CopyWarningDialog.textToPaste": "for Paste", "Common.Views.DocumentAccessDialog.textLoading": "Loading...", "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings", + "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", "Common.Views.Header.textBack": "Go to Documents", + "Common.Views.Header.textHideLines": "Sembunyikan Mistar", + "Common.Views.Header.textZoom": "Pembesaran", + "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipRedo": "Ulangi", + "Common.Views.Header.tipSave": "Simpan", + "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", + "Common.Views.Header.txtAccessRights": "Ubah hak akses", + "Common.Views.Header.txtRename": "Ganti nama", + "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "Common.Views.ListSettingsDialog.txtColor": "Warna", + "Common.Views.ListSettingsDialog.txtNone": "tidak ada", + "Common.Views.ListSettingsDialog.txtSize": "Ukuran", + "Common.Views.ListSettingsDialog.txtType": "Tipe", + "Common.Views.OpenDialog.txtAdvanced": "Tingkat Lanjut", + "Common.Views.OpenDialog.txtColon": "Titik dua", + "Common.Views.OpenDialog.txtComma": "Koma", "Common.Views.OpenDialog.txtDelimiter": "Delimiter", + "Common.Views.OpenDialog.txtEmpty": "Kolom ini harus diisi", "Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", + "Common.Views.OpenDialog.txtOther": "Lainnya", + "Common.Views.OpenDialog.txtPassword": "Kata Sandi", + "Common.Views.OpenDialog.txtPreview": "Pratinjau", + "Common.Views.OpenDialog.txtSemicolon": "Titik koma", "Common.Views.OpenDialog.txtSpace": "Space", "Common.Views.OpenDialog.txtTab": "Tab", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", + "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.txtAccept": "Terima", + "Common.Views.ReviewChanges.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChanges.txtClose": "Tutup", + "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", + "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", + "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", + "Common.Views.ReviewChanges.txtNext": "Berikutnya", + "Common.Views.ReviewChanges.txtPrev": "Sebelumnya", + "Common.Views.ReviewChanges.txtReject": "Tolak", + "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", + "Common.Views.ReviewPopover.textAdd": "Tambahkan", + "Common.Views.ReviewPopover.textAddReply": "Tambahkan Balasan", + "Common.Views.ReviewPopover.textCancel": "Batalkan", + "Common.Views.ReviewPopover.textClose": "Tutup", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", + "Common.Views.ReviewPopover.textReply": "Balas", + "Common.Views.ReviewPopover.textResolve": "Selesaikan", + "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", + "Common.Views.ReviewPopover.txtEditTip": "Sunting", + "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", + "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textInfoName": "Nama", + "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textFont": "Huruf", + "Common.Views.SymbolTableDialog.textSpecial": "karakter khusus", + "SSE.Controllers.DataTab.textColumns": "Kolom", + "SSE.Controllers.DataTab.textRows": "Baris", + "SSE.Controllers.DocumentHolder.alignmentText": "Perataan", + "SSE.Controllers.DocumentHolder.centerText": "Tengah", + "SSE.Controllers.DocumentHolder.deleteColumnText": "Hapus Kolom", + "SSE.Controllers.DocumentHolder.deleteText": "Hapus", "SSE.Controllers.DocumentHolder.guestText": "Guest", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Kolom Kiri", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Kolom Kanan", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Baris di Atas", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Baris di Bawah", + "SSE.Controllers.DocumentHolder.insertText": "Sisipkan", + "SSE.Controllers.DocumentHolder.leftText": "Kiri", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Peringatan", + "SSE.Controllers.DocumentHolder.rightText": "Kanan", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Column Width {0} symbols ({1} pixels)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Row Height {0} points ({1} pixels)", "SSE.Controllers.DocumentHolder.textCtrlClick": "Press CTRL and click link", "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", "SSE.Controllers.DocumentHolder.tipIsLocked": "This element is being edited by another user.", + "SSE.Controllers.DocumentHolder.txtAnd": "dan", + "SSE.Controllers.DocumentHolder.txtBottom": "Bawah", + "SSE.Controllers.DocumentHolder.txtColumn": "Kolom", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Bawah", + "SSE.Controllers.DocumentHolder.txtFilterTop": "Atas", + "SSE.Controllers.DocumentHolder.txtGreater": "Lebih Dari", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Lebih Dari atau Sama Dengan", "SSE.Controllers.DocumentHolder.txtHeight": "Height", + "SSE.Controllers.DocumentHolder.txtLess": "Kurang Dari", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Kurang Dari atau Sama Dengan", + "SSE.Controllers.DocumentHolder.txtOr": "Atau", + "SSE.Controllers.DocumentHolder.txtPaste": "Tempel", "SSE.Controllers.DocumentHolder.txtRowHeight": "Row Height", + "SSE.Controllers.DocumentHolder.txtTop": "Atas", "SSE.Controllers.DocumentHolder.txtWidth": "Width", + "SSE.Controllers.FormulaDialog.sCategoryAll": "Semua", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informasi", "SSE.Controllers.LeftMenu.newDocumentTitle": "Unnamed spreadsheet", "SSE.Controllers.LeftMenu.textByColumns": "By columns", "SSE.Controllers.LeftMenu.textByRows": "By rows", @@ -164,10 +297,15 @@ "SSE.Controllers.Main.saveTextText": "Saving spreadsheet...", "SSE.Controllers.Main.saveTitleText": "Saving Spreadsheet", "SSE.Controllers.Main.textAnonymous": "Anonymous", + "SSE.Controllers.Main.textClose": "Tutup", "SSE.Controllers.Main.textCloseTip": "Click to close the tip", "SSE.Controllers.Main.textConfirm": "Confirmation", + "SSE.Controllers.Main.textGuest": "Tamu", + "SSE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", "SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet", + "SSE.Controllers.Main.textNeedSynchronize": "Ada pembaruan", "SSE.Controllers.Main.textNo": "No", + "SSE.Controllers.Main.textNoLicenseTitle": "%1 keterbatasan koneksi", "SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...", "SSE.Controllers.Main.textShape": "Shape", "SSE.Controllers.Main.textStrict": "Strict mode", @@ -178,16 +316,44 @@ "SSE.Controllers.Main.txtButtons": "Buttons", "SSE.Controllers.Main.txtCallouts": "Callouts", "SSE.Controllers.Main.txtCharts": "Charts", + "SSE.Controllers.Main.txtColumn": "Kolom", + "SSE.Controllers.Main.txtDate": "Tanggal", + "SSE.Controllers.Main.txtDays": "Hari", "SSE.Controllers.Main.txtDiagramTitle": "Chart Title", "SSE.Controllers.Main.txtEditingMode": "Set editing mode...", "SSE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "SSE.Controllers.Main.txtFile": "File", + "SSE.Controllers.Main.txtGroup": "Grup", + "SSE.Controllers.Main.txtHours": "jam", "SSE.Controllers.Main.txtLines": "Lines", "SSE.Controllers.Main.txtMath": "Math", + "SSE.Controllers.Main.txtMinutes": "menit", + "SSE.Controllers.Main.txtMonths": "bulan", + "SSE.Controllers.Main.txtPage": "Halaman", + "SSE.Controllers.Main.txtPages": "Halaman", "SSE.Controllers.Main.txtRectangles": "Rectangles", + "SSE.Controllers.Main.txtRow": "Baris", "SSE.Controllers.Main.txtSeries": "Series", + "SSE.Controllers.Main.txtShape_bevel": "Miring", + "SSE.Controllers.Main.txtShape_downArrow": "Panah Bawah", + "SSE.Controllers.Main.txtShape_frame": "Kerangka", + "SSE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "SSE.Controllers.Main.txtShape_line": "Garis", + "SSE.Controllers.Main.txtShape_mathEqual": "Setara", + "SSE.Controllers.Main.txtShape_mathPlus": "Plus", + "SSE.Controllers.Main.txtShape_pie": "Diagram Lingkaran", + "SSE.Controllers.Main.txtShape_plus": "Plus", + "SSE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "SSE.Controllers.Main.txtStyle_Comma": "Koma", + "SSE.Controllers.Main.txtStyle_Currency": "Mata uang", + "SSE.Controllers.Main.txtStyle_Note": "Catatan", + "SSE.Controllers.Main.txtStyle_Title": "Judul", + "SSE.Controllers.Main.txtTable": "Tabel", + "SSE.Controllers.Main.txtTime": "Waktu", "SSE.Controllers.Main.txtXAxis": "X Axis", "SSE.Controllers.Main.txtYAxis": "Y Axis", + "SSE.Controllers.Main.txtYears": "tahun", "SSE.Controllers.Main.unknownErrorText": "Unknown error.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", "SSE.Controllers.Main.uploadImageExtMessage": "Unknown image format.", @@ -195,11 +361,13 @@ "SSE.Controllers.Main.uploadImageSizeMessage": "Maximium image size limit exceeded.", "SSE.Controllers.Main.uploadImageTextText": "Uploading image...", "SSE.Controllers.Main.uploadImageTitleText": "Uploading Image", + "SSE.Controllers.Main.waitText": "Silahkan menunggu", "SSE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", "SSE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "SSE.Controllers.Print.strAllSheets": "All Sheets", "SSE.Controllers.Print.textWarning": "Warning", + "SSE.Controllers.Print.txtCustom": "Khusus", "SSE.Controllers.Print.warnCheckMargings": "Margins are incorrect", "SSE.Controllers.Statusbar.errorLastSheet": "Workbook must have at least one visible worksheet.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Cannot delete the worksheet.", @@ -207,39 +375,305 @@ "SSE.Controllers.Statusbar.warnDeleteSheet": "The worksheet might contain data. Are you sure you want to proceed?", "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", + "SSE.Controllers.Toolbar.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Controllers.Toolbar.textAccent": "Aksen", + "SSE.Controllers.Toolbar.textBracket": "Tanda Kurung", "SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
Please enter a numeric value between 1 and 409", + "SSE.Controllers.Toolbar.textFunction": "Fungsi", + "SSE.Controllers.Toolbar.textInsert": "Sisipkan", + "SSE.Controllers.Toolbar.textLargeOperator": "Operator Besar", + "SSE.Controllers.Toolbar.textLimitAndLog": "Limit dan Logaritma", + "SSE.Controllers.Toolbar.textMatrix": "Matriks", + "SSE.Controllers.Toolbar.textRadical": "Perakaran", "SSE.Controllers.Toolbar.textWarning": "Warning", + "SSE.Controllers.Toolbar.txtAccent_Accent": "Akut", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Tanda Panah Kanan-Kiri Atas", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Panah Kiri Atas", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Tanda Panah ke Kanan Atas", + "SSE.Controllers.Toolbar.txtAccent_Bar": "Palang", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Garis Atas", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Kotak Formula (Dengan Placeholder)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kotak Formula(Contoh)", + "SSE.Controllers.Toolbar.txtAccent_Check": "Periksa", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Kurung Kurawal Atas", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Dengan Overbar", + "SSE.Controllers.Toolbar.txtAccent_DDot": "Titik Dua", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Overbar Ganda", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Aksen Kiri", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Pengelompokan Karakter Di Bawah", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Pengelompokan Karakter Di Atas", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Panah Tiga Kiri Atas", + "SSE.Controllers.Toolbar.txtAccent_Hat": "Caping", + "SSE.Controllers.Toolbar.txtAccent_Smile": "Prosodi ", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Kasus (Dua Kondisi)", + "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Kasus (Tiga Kondisi)", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien Binomial", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien Binomial", + "SSE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Round": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Square": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Diferensial", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Diferensial", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Diferensial", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Diferensial", + "SSE.Controllers.Toolbar.txtFractionHorizontal": "Pecahan Linear", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi Dibagi 2", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Fungsi Kosin Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Fungsi Kosin Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Fungsi Kotangen Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Fungsi Kotangen Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Fungsi Kosekans Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Fungsi Kosekan Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Fungsi Sekans Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Fungsi Sekans Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Fungsi Sin Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Fungsi Sin Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Fungsi Tangen Terbalik", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Fungsi Tangen Hiperbolik Terbalik", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Fungsi Kosin", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Fungsi Kosin Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Cot": "Fungsi Kotangen", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Fungsi Kotangen Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Csc": "Fungsi Kosekans", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Fungsi Kosekans Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Fungsi Sekans Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Fungsi Sin Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Fungsi Tangen Hiperbolik", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Theta Diferensial", + "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferensial x", + "SSE.Controllers.Toolbar.txtIntegral_dy": "Diferensial y", + "SSE.Controllers.Toolbar.txtIntegralDouble": "Integral Ganda", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integral Ganda", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral Ganda", + "SSE.Controllers.Toolbar.txtIntegralOriented": "Integral Kontur", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral Kontur", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral Kontur", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Perpotongan", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produk", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Contoh Limit", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Contoh Maksimal", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritma Natural", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logaritma", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritma", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maksimal", + "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriks Kosong dengan Tanda Kurung", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriks Kosong dengan Tanda Kurung", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriks Kosong dengan Tanda Kurung", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriks Kosong dengan Tanda Kurung", + "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Matriks Identitas", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Matriks Identitas", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Matriks Identitas", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Matriks Identitas", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Tanda Panah Kanan-Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Panah Kiri Bawah", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Panah Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Tanda Panah ke Kanan Atas", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Titik Dua", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Hasil Delta", + "SSE.Controllers.Toolbar.txtOperator_Definition": "Setara Menurut Definisi", + "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Setara Dengan", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Tanda Panah Kanan-Kiri Bawah", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Tanda Panah Kanan-Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Panah Kiri Bawah", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Panah Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Tanda Panah ke Kanan Atas", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Setara Setara", + "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Sama Dengan", + "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Sama Dengan", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Diukur Berdasar", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Akar", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Akar", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Akar Pangkat Tiga", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Akar Dengan Derajat", + "SSE.Controllers.Toolbar.txtScriptSub": "Subskrip", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Subskrip-SuperskripKiri", + "SSE.Controllers.Toolbar.txtScriptSup": "Superskrip", + "SSE.Controllers.Toolbar.txtSymbol_about": "Kira-Kira", + "SSE.Controllers.Toolbar.txtSymbol_additional": "Komplemen", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "SSE.Controllers.Toolbar.txtSymbol_approx": "Setara Dengan", + "SSE.Controllers.Toolbar.txtSymbol_ast": "Operator Tanda Bintang", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_beth": "Taruhan", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Operator Butir", + "SSE.Controllers.Toolbar.txtSymbol_cap": "Perpotongan", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Akar Pangkat Tiga", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis Tengah Horisontal", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "Derajat Celcius", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "SSE.Controllers.Toolbar.txtSymbol_cong": "Kira-Kira Setara Dengan", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Serong Kanan Bawah ", + "SSE.Controllers.Toolbar.txtSymbol_degree": "Derajat", + "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "SSE.Controllers.Toolbar.txtSymbol_div": "Tanda Pembagi", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Panah Bawah", + "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Himpunan Kosong", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_equals": "Setara", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Identik Dengan", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_factorial": "Faktorial", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derajat Fahrenheit", + "SSE.Controllers.Toolbar.txtSymbol_forall": "Untuk Semua", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Lebih Dari atau Sama Dengan", + "SSE.Controllers.Toolbar.txtSymbol_greater": "Lebih Dari", + "SSE.Controllers.Toolbar.txtSymbol_in": "Elemen Dari", + "SSE.Controllers.Toolbar.txtSymbol_inc": "Naik", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "Tak Terbatas", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Panah Kiri", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Kurang Dari atau Sama Dengan", + "SSE.Controllers.Toolbar.txtSymbol_less": "Kurang Dari", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Kurang Dari", + "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_neq": "Tidak Sama Dengan", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Sertakan sebagai Anggota", + "SSE.Controllers.Toolbar.txtSymbol_not": "Tanda Negasi", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omikron", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Diferensial Parsial", + "SSE.Controllers.Toolbar.txtSymbol_percent": "Persentase", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Plus Minus", + "SSE.Controllers.Toolbar.txtSymbol_propto": "Proposional Dengan", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Akar Kuadrat", + "SSE.Controllers.Toolbar.txtSymbol_qed": "Pembuktian Akhir", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Tanda Panah ke Kanan", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Tanda Akar", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "SSE.Controllers.Toolbar.txtSymbol_times": "Tanda Perkalian", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Varian Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Varian Phi", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Varian Pi", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Varian Rho", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", "SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pengaturan Lanjut", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", "SSE.Views.AutoFilterDialog.textSelectAll": "Select All", "SSE.Views.AutoFilterDialog.textWarning": "Warning", + "SSE.Views.AutoFilterDialog.txtClear": "Hapus", "SSE.Views.AutoFilterDialog.txtEmpty": "Enter cell filter", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", + "SSE.Views.AutoFilterDialog.txtTop10": "10 Teratas", "SSE.Views.AutoFilterDialog.warnNoSelected": "You must choose at least one value", "SSE.Views.CellEditor.textManager": "Name Manager", "SSE.Views.CellEditor.tipFormula": "Insert Function", "SSE.Views.CellRangeDialog.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Views.CellRangeDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", "SSE.Views.CellRangeDialog.txtEmpty": "This field is required", "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Invalid cells range", "SSE.Views.CellRangeDialog.txtTitle": "Select Data Range", + "SSE.Views.CellSettings.textBackColor": "Warna Latar", + "SSE.Views.CellSettings.textBackground": "Warna Latar", + "SSE.Views.CellSettings.textBorderColor": "Warna", + "SSE.Views.CellSettings.textBorders": "Gaya Pembatas", + "SSE.Views.CellSettings.textColor": "Isian Warna", + "SSE.Views.CellSettings.textDirection": "Arah", + "SSE.Views.CellSettings.textFill": "Isian", + "SSE.Views.CellSettings.textForeground": "Warna latar depan", + "SSE.Views.CellSettings.textGradient": "Gradien", + "SSE.Views.CellSettings.textGradientColor": "Warna", + "SSE.Views.CellSettings.textGradientFill": "Isian Gradien", + "SSE.Views.CellSettings.textLinear": "Linier", + "SSE.Views.CellSettings.textNoFill": "Tidak ada Isian", + "SSE.Views.CellSettings.textPattern": "Pola", + "SSE.Views.CellSettings.textPatternFill": "Pola", + "SSE.Views.CellSettings.textPosition": "Jabatan", + "SSE.Views.CellSettings.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", + "SSE.Views.CellSettings.tipBottom": "Buat Pembatas Bawah-Luar Saja", + "SSE.Views.CellSettings.tipInner": "Buat Garis Dalam Saja", + "SSE.Views.CellSettings.tipInnerHor": "Buat Garis Horisontal Dalam Saja", + "SSE.Views.CellSettings.tipInnerVert": "Buat Garis Dalam Vertikal Saja", + "SSE.Views.CellSettings.tipLeft": "Buat Pembatas Kiri-Luar Saja", + "SSE.Views.CellSettings.tipNone": "Tanpa Pembatas", + "SSE.Views.CellSettings.tipOuter": "Buat Pembatas Luar Saja", + "SSE.Views.CellSettings.tipRight": "Buat Pembatas Kanan-Luar Saja", + "SSE.Views.CellSettings.tipTop": "Buat Pembatas Atas-Luar Saja", + "SSE.Views.ChartDataDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Views.ChartDataDialog.textAdd": "Tambahkan", + "SSE.Views.ChartDataDialog.textDelete": "Hapus", + "SSE.Views.ChartDataDialog.textEdit": "Sunting", + "SSE.Views.ChartDataDialog.textUp": "Naik", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Views.ChartSettings.strSparkColor": "Warna", "SSE.Views.ChartSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ChartSettings.textBorderSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input antara 1pt dan 1584pt.", + "SSE.Views.ChartSettings.textChangeType": "Ubah tipe", "SSE.Views.ChartSettings.textChartType": "Change Chart Type", "SSE.Views.ChartSettings.textEditData": "Edit Data", "SSE.Views.ChartSettings.textHeight": "Height", "SSE.Views.ChartSettings.textKeepRatio": "Constant Proportions", + "SSE.Views.ChartSettings.textShow": "Tampilkan", "SSE.Views.ChartSettings.textSize": "Size", "SSE.Views.ChartSettings.textStyle": "Style", + "SSE.Views.ChartSettings.textType": "Tipe", "SSE.Views.ChartSettings.textWidth": "Width", "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", "SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", + "SSE.Views.ChartSettingsDlg.textAltDescription": "Deskripsi", + "SSE.Views.ChartSettingsDlg.textAltTitle": "Judul", "SSE.Views.ChartSettingsDlg.textAuto": "Auto", "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses", "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options", "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Judul", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks", "SSE.Views.ChartSettingsDlg.textBillions": "Billions", + "SSE.Views.ChartSettingsDlg.textBottom": "Bawah", "SSE.Views.ChartSettingsDlg.textCategoryName": "Category Name", "SSE.Views.ChartSettingsDlg.textCenter": "Center", "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &
Chart Legend", @@ -250,6 +684,7 @@ "SSE.Views.ChartSettingsDlg.textDataLabels": "Data Labels", "SSE.Views.ChartSettingsDlg.textDataRows": "in rows", "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Display Legend", + "SSE.Views.ChartSettingsDlg.textFit": "Sesuaikan Lebar", "SSE.Views.ChartSettingsDlg.textFixed": "Fixed", "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", "SSE.Views.ChartSettingsDlg.textHide": "Hide", @@ -268,6 +703,7 @@ "SSE.Views.ChartSettingsDlg.textLabelOptions": "Label Options", "SSE.Views.ChartSettingsDlg.textLabelPos": "Label Position", "SSE.Views.ChartSettingsDlg.textLayout": "Layout", + "SSE.Views.ChartSettingsDlg.textLeft": "Kiri", "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left Overlay", "SSE.Views.ChartSettingsDlg.textLegendBottom": "Bottom", "SSE.Views.ChartSettingsDlg.textLegendLeft": "Left", @@ -295,6 +731,7 @@ "SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top", "SSE.Views.ChartSettingsDlg.textOverlay": "Overlay", "SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order", + "SSE.Views.ChartSettingsDlg.textRight": "Kanan", "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay", "SSE.Views.ChartSettingsDlg.textRotated": "Rotated", "SSE.Views.ChartSettingsDlg.textSelectData": "Select Data", @@ -311,6 +748,7 @@ "SSE.Views.ChartSettingsDlg.textThousands": "Thousands", "SSE.Views.ChartSettingsDlg.textTickOptions": "Tick Options", "SSE.Views.ChartSettingsDlg.textTitle": "Chart - Advanced Settings", + "SSE.Views.ChartSettingsDlg.textTop": "Atas", "SSE.Views.ChartSettingsDlg.textTrillions": "Trillions", "SSE.Views.ChartSettingsDlg.textType": "Type", "SSE.Views.ChartSettingsDlg.textTypeData": "Type & Data", @@ -320,6 +758,32 @@ "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title", "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", + "SSE.Views.ChartTypeDialog.textStyle": "Model", + "SSE.Views.ChartTypeDialog.textType": "Tipe", + "SSE.Views.CreatePivotDialog.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.DataTab.capBtnGroup": "Grup", + "SSE.Views.DataTab.capBtnUngroup": "Pisahkan dari grup", + "SSE.Views.DataValidationDialog.strSettings": "Pengaturan", + "SSE.Views.DataValidationDialog.textAlert": "Waspada", + "SSE.Views.DataValidationDialog.textAllow": "Ijinkan", + "SSE.Views.DataValidationDialog.textData": "Data", + "SSE.Views.DataValidationDialog.textEndDate": "Tanggal Berakhir", + "SSE.Views.DataValidationDialog.textMax": "Maksimal", + "SSE.Views.DataValidationDialog.textMessage": "Pesan", + "SSE.Views.DataValidationDialog.textSource": "Sumber", + "SSE.Views.DataValidationDialog.textStartDate": "Tanggal Mulai", + "SSE.Views.DataValidationDialog.textStyle": "Model", + "SSE.Views.DataValidationDialog.textTitle": "Judul", + "SSE.Views.DataValidationDialog.txtDate": "Tanggal", + "SSE.Views.DataValidationDialog.txtEndDate": "Tanggal Berakhir", + "SSE.Views.DataValidationDialog.txtGreaterThan": "Lebih Dari", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Lebih Dari atau Sama Dengan", + "SSE.Views.DataValidationDialog.txtLessThan": "Kurang Dari", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Kurang Dari atau Sama Dengan", + "SSE.Views.DataValidationDialog.txtOther": "Lainnya", + "SSE.Views.DataValidationDialog.txtStartDate": "Tanggal Mulai", + "SSE.Views.DataValidationDialog.txtTime": "Waktu", "SSE.Views.DigitalFilterDialog.capAnd": "And", "SSE.Views.DigitalFilterDialog.capCondition1": "equals", "SSE.Views.DigitalFilterDialog.capCondition10": "does not end with", @@ -339,22 +803,50 @@ "SSE.Views.DigitalFilterDialog.textUse1": "Use ? to present any single character", "SSE.Views.DigitalFilterDialog.textUse2": "Use * to present any series of character", "SSE.Views.DigitalFilterDialog.txtTitle": "Custom Filter", + "SSE.Views.DocumentHolder.advancedImgText": "Pengaturan Lanjut untuk Gambar", "SSE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", "SSE.Views.DocumentHolder.bottomCellText": "Align Bottom", "SSE.Views.DocumentHolder.centerCellText": "Align Center", "SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings", + "SSE.Views.DocumentHolder.deleteColumnText": "Kolom", + "SSE.Views.DocumentHolder.deleteRowText": "Baris", + "SSE.Views.DocumentHolder.deleteTableText": "Tabel", "SSE.Views.DocumentHolder.direct270Text": "Rotate at 270°", "SSE.Views.DocumentHolder.direct90Text": "Rotate at 90°", "SSE.Views.DocumentHolder.directHText": "Horizontal", "SSE.Views.DocumentHolder.directionText": "Text Direction", "SSE.Views.DocumentHolder.editChartText": "Edit Data", "SSE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Kolom Kiri", + "SSE.Views.DocumentHolder.insertColumnRightText": "Kolom Kanan", + "SSE.Views.DocumentHolder.insertRowAboveText": "Baris di Atas", + "SSE.Views.DocumentHolder.insertRowBelowText": "Baris di Bawah", + "SSE.Views.DocumentHolder.originalSizeText": "Ukuran Sebenarnya", "SSE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "SSE.Views.DocumentHolder.selectRowText": "Baris", + "SSE.Views.DocumentHolder.selectTableText": "Tabel", + "SSE.Views.DocumentHolder.textAlign": "Ratakan", + "SSE.Views.DocumentHolder.textArrange": "Susun", "SSE.Views.DocumentHolder.textArrangeBack": "Send to Background", "SSE.Views.DocumentHolder.textArrangeBackward": "Move Backward", "SSE.Views.DocumentHolder.textArrangeForward": "Move Forward", "SSE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground", + "SSE.Views.DocumentHolder.textBullets": "Butir", + "SSE.Views.DocumentHolder.textCropFill": "Isian", "SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes", + "SSE.Views.DocumentHolder.textFromFile": "Dari File", + "SSE.Views.DocumentHolder.textFromUrl": "Dari URL", + "SSE.Views.DocumentHolder.textNone": "tidak ada", + "SSE.Views.DocumentHolder.textNumbering": "Penomoran", + "SSE.Views.DocumentHolder.textReplace": "Ganti Gambar", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Rata Kiri", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Rata di Tengah", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Rata Kanan", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Rata Atas", + "SSE.Views.DocumentHolder.textSum": "Jumlah", + "SSE.Views.DocumentHolder.textUndo": "Batalkan", "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", "SSE.Views.DocumentHolder.topCellText": "Align Top", "SSE.Views.DocumentHolder.txtAddComment": "Add Comment", @@ -370,7 +862,9 @@ "SSE.Views.DocumentHolder.txtColumn": "Entire column", "SSE.Views.DocumentHolder.txtColumnWidth": "Column Width", "SSE.Views.DocumentHolder.txtCopy": "Copy", + "SSE.Views.DocumentHolder.txtCurrency": "Mata uang", "SSE.Views.DocumentHolder.txtCut": "Cut", + "SSE.Views.DocumentHolder.txtDate": "Tanggal", "SSE.Views.DocumentHolder.txtDelete": "Delete", "SSE.Views.DocumentHolder.txtDescending": "Descending", "SSE.Views.DocumentHolder.txtEditComment": "Edit Comment", @@ -379,23 +873,31 @@ "SSE.Views.DocumentHolder.txtHide": "Hide", "SSE.Views.DocumentHolder.txtInsert": "Insert", "SSE.Views.DocumentHolder.txtInsHyperlink": "Hyperlink", + "SSE.Views.DocumentHolder.txtNumber": "Angka", "SSE.Views.DocumentHolder.txtPaste": "Paste", + "SSE.Views.DocumentHolder.txtPercentage": "Persentase", "SSE.Views.DocumentHolder.txtRow": "Entire row", "SSE.Views.DocumentHolder.txtRowHeight": "Row Height", + "SSE.Views.DocumentHolder.txtSelect": "Pilih", "SSE.Views.DocumentHolder.txtShiftDown": "Shift cells down", "SSE.Views.DocumentHolder.txtShiftLeft": "Shift cells left", "SSE.Views.DocumentHolder.txtShiftRight": "Shift cells right", "SSE.Views.DocumentHolder.txtShiftUp": "Shift cells up", "SSE.Views.DocumentHolder.txtShow": "Show", "SSE.Views.DocumentHolder.txtSort": "Sort", + "SSE.Views.DocumentHolder.txtText": "Teks", "SSE.Views.DocumentHolder.txtTextAdvanced": "Text Advanced Settings", + "SSE.Views.DocumentHolder.txtTime": "Waktu", "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", "SSE.Views.DocumentHolder.txtWidth": "Width", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "SSE.Views.FieldSettingsDialog.txtProduct": "Produk", + "SSE.Views.FieldSettingsDialog.txtSum": "Jumlah", "SSE.Views.FileMenu.btnBackCaption": "Go to Documents", "SSE.Views.FileMenu.btnCreateNewCaption": "Create New", "SSE.Views.FileMenu.btnDownloadCaption": "Download as...", "SSE.Views.FileMenu.btnHelpCaption": "Help...", + "SSE.Views.FileMenu.btnHistoryCaption": "Riwayat versi", "SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Info...", "SSE.Views.FileMenu.btnPrintCaption": "Print", "SSE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", @@ -405,11 +907,19 @@ "SSE.Views.FileMenu.btnSaveCaption": "Save", "SSE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", "SSE.Views.FileMenu.btnToEditCaption": "Edit Spreadsheet", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Spreadsheet Title", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Apply", @@ -443,15 +953,83 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Terapkan", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Periksa Ejaan", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Peringatan", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Otomatis", + "SSE.Views.FormatRulesEditDlg.textBold": "Tebal", + "SSE.Views.FormatRulesEditDlg.textClear": "Hapus", + "SSE.Views.FormatRulesEditDlg.textCustom": "Khusus", + "SSE.Views.FormatRulesEditDlg.textFill": "Isian", + "SSE.Views.FormatRulesEditDlg.textGradient": "Gradien", + "SSE.Views.FormatRulesEditDlg.textItalic": "Miring", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Maksimal", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Tambahkan Warna Khusus Baru", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Tidak ada pembatas", + "SSE.Views.FormatRulesEditDlg.textNone": "tidak ada", + "SSE.Views.FormatRulesEditDlg.textPosition": "Jabatan", + "SSE.Views.FormatRulesEditDlg.textPreview": "Pratinjau", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Subskrip", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superskrip", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Garis bawah", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Mata uang", + "SSE.Views.FormatRulesEditDlg.txtDate": "Tanggal", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Angka", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Persentase", + "SSE.Views.FormatRulesEditDlg.txtText": "Teks", + "SSE.Views.FormatRulesEditDlg.txtTime": "Waktu", + "SSE.Views.FormatRulesManagerDlg.guestText": "Tamu", + "SSE.Views.FormatRulesManagerDlg.lockText": "Dikunci", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Hapus", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Sunting", + "SSE.Views.FormatRulesManagerDlg.textNew": "baru", + "SSE.Views.FormatSettingsDialog.textCategory": "Kategori", + "SSE.Views.FormatSettingsDialog.txtCurrency": "Mata uang", + "SSE.Views.FormatSettingsDialog.txtCustom": "Khusus", + "SSE.Views.FormatSettingsDialog.txtDate": "Tanggal", + "SSE.Views.FormatSettingsDialog.txtGeneral": "Umum", + "SSE.Views.FormatSettingsDialog.txtNone": "tidak ada", + "SSE.Views.FormatSettingsDialog.txtNumber": "Angka", + "SSE.Views.FormatSettingsDialog.txtPercentage": "Persentase", + "SSE.Views.FormatSettingsDialog.txtText": "Teks", + "SSE.Views.FormatSettingsDialog.txtTime": "Waktu", "SSE.Views.FormulaDialog.sDescription": "Description", "SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group", "SSE.Views.FormulaDialog.textListDescription": "Select Function", + "SSE.Views.FormulaDialog.txtSearch": "Cari", "SSE.Views.FormulaDialog.txtTitle": "Insert Function", + "SSE.Views.FormulaTab.textAutomatic": "Otomatis", + "SSE.Views.FormulaTab.txtAdditional": "Tambahan", + "SSE.Views.FormulaWizard.textAny": "Apa saja", + "SSE.Views.FormulaWizard.textNumber": "Angka", + "SSE.Views.FormulaWizard.textText": "Teks", + "SSE.Views.HeaderFooterDialog.textBold": "Tebal", + "SSE.Views.HeaderFooterDialog.textCenter": "Tengah", + "SSE.Views.HeaderFooterDialog.textDate": "Tanggal", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Halaman ganjil dan genap yang berbeda", + "SSE.Views.HeaderFooterDialog.textEven": "Halaman Genap", + "SSE.Views.HeaderFooterDialog.textFileName": "Nama file", + "SSE.Views.HeaderFooterDialog.textInsert": "Sisipkan", + "SSE.Views.HeaderFooterDialog.textItalic": "Miring", + "SSE.Views.HeaderFooterDialog.textLeft": "Kiri", + "SSE.Views.HeaderFooterDialog.textNewColor": "Tambahkan Warna Khusus Baru", + "SSE.Views.HeaderFooterDialog.textOdd": "Halaman Ganjil", + "SSE.Views.HeaderFooterDialog.textRight": "Kanan", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Coret ganda", + "SSE.Views.HeaderFooterDialog.textSubscript": "Subskrip", + "SSE.Views.HeaderFooterDialog.textSuperscript": "Superskrip", + "SSE.Views.HeaderFooterDialog.textTime": "Waktu", + "SSE.Views.HeaderFooterDialog.textUnderline": "Garis bawah", + "SSE.Views.HeaderFooterDialog.tipFontName": "Huruf", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Ukuran Huruf", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Display", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to", "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Sheet", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Salin", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Selected range", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here", @@ -463,6 +1041,9 @@ "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "SSE.Views.ImageSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.ImageSettings.textCropFill": "Isian", + "SSE.Views.ImageSettings.textEdit": "Sunting", "SSE.Views.ImageSettings.textFromFile": "From File", "SSE.Views.ImageSettings.textFromUrl": "From URL", "SSE.Views.ImageSettings.textHeight": "Height", @@ -471,11 +1052,15 @@ "SSE.Views.ImageSettings.textOriginalSize": "Default Size", "SSE.Views.ImageSettings.textSize": "Size", "SSE.Views.ImageSettings.textWidth": "Width", + "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Gambar - Pengaturan Lanjut", "SSE.Views.LeftMenu.tipAbout": "About", "SSE.Views.LeftMenu.tipChat": "Chat", "SSE.Views.LeftMenu.tipComments": "Comments", "SSE.Views.LeftMenu.tipFile": "File", "SSE.Views.LeftMenu.tipSearch": "Search", + "SSE.Views.LeftMenu.tipSpellcheck": "Periksa Ejaan", "SSE.Views.LeftMenu.tipSupport": "Feedback & Support", "SSE.Views.MainSettingsPrint.okButtonText": "Save", "SSE.Views.MainSettingsPrint.strBottom": "Bottom", @@ -486,6 +1071,8 @@ "SSE.Views.MainSettingsPrint.strPrint": "Print", "SSE.Views.MainSettingsPrint.strRight": "Right", "SSE.Views.MainSettingsPrint.strTop": "Top", + "SSE.Views.MainSettingsPrint.textActualSize": "Ukuran Sebenarnya", + "SSE.Views.MainSettingsPrint.textCustom": "Khusus", "SSE.Views.MainSettingsPrint.textPageOrientation": "Page Orientation", "SSE.Views.MainSettingsPrint.textPageSize": "Page Size", "SSE.Views.MainSettingsPrint.textPrintGrid": "Print Gridlines", @@ -511,6 +1098,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", "SSE.Views.NameManagerDlg.closeButtonText": "Close", "SSE.Views.NameManagerDlg.guestText": "Guest", + "SSE.Views.NameManagerDlg.lockText": "Dikunci", "SSE.Views.NameManagerDlg.textDataRange": "Data Range", "SSE.Views.NameManagerDlg.textDelete": "Delete", "SSE.Views.NameManagerDlg.textEdit": "Edit", @@ -528,6 +1116,11 @@ "SSE.Views.NameManagerDlg.textWorkbook": "Workbook", "SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.", "SSE.Views.NameManagerDlg.txtTitle": "Name Manager", + "SSE.Views.PageMarginsDialog.textBottom": "Bawah", + "SSE.Views.PageMarginsDialog.textLeft": "Kiri", + "SSE.Views.PageMarginsDialog.textRight": "Kanan", + "SSE.Views.PageMarginsDialog.textTitle": "Margin", + "SSE.Views.PageMarginsDialog.textTop": "Atas", "SSE.Views.ParagraphSettings.strLineHeight": "Line Spacing", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Spacing", "SSE.Views.ParagraphSettings.strSpacingAfter": "After", @@ -542,18 +1135,27 @@ "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "oleh", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Placement", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Spasi", "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "Persis", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", "SSE.Views.ParagraphSettingsAdvanced.textSet": "Specify", @@ -562,6 +1164,24 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "dan", + "SSE.Views.PivotGroupDialog.textAuto": "Otomatis", + "SSE.Views.PivotGroupDialog.textBy": "oleh", + "SSE.Views.PivotGroupDialog.textDays": "Hari", + "SSE.Views.PivotGroupDialog.textHour": "jam", + "SSE.Views.PivotGroupDialog.textMin": "menit", + "SSE.Views.PivotGroupDialog.textMonth": "bulan", + "SSE.Views.PivotGroupDialog.textYear": "tahun", + "SSE.Views.PivotSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.PivotSettings.textColumns": "Kolom", + "SSE.Views.PivotSettings.textRows": "Baris", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.PivotSettingsAdvanced.txtName": "Nama", + "SSE.Views.PivotTable.txtCreate": "Sisipkan Tabel", + "SSE.Views.PivotTable.txtSelect": "Pilih", "SSE.Views.PrintSettings.btnPrint": "Save & Print", "SSE.Views.PrintSettings.strBottom": "Bottom", "SSE.Views.PrintSettings.strLandscape": "Landscape", @@ -570,10 +1190,12 @@ "SSE.Views.PrintSettings.strPortrait": "Portrait", "SSE.Views.PrintSettings.strPrint": "Print", "SSE.Views.PrintSettings.strRight": "Right", + "SSE.Views.PrintSettings.strShow": "Tampilkan", "SSE.Views.PrintSettings.strTop": "Top", "SSE.Views.PrintSettings.textActualSize": "Actual Size", "SSE.Views.PrintSettings.textAllSheets": "All Sheets", "SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet", + "SSE.Views.PrintSettings.textCustom": "Khusus", "SSE.Views.PrintSettings.textHideDetails": "Hide Details", "SSE.Views.PrintSettings.textLayout": "Layout", "SSE.Views.PrintSettings.textPageOrientation": "Page Orientation", @@ -584,12 +1206,47 @@ "SSE.Views.PrintSettings.textSelection": "Selection", "SSE.Views.PrintSettings.textShowDetails": "Show Details", "SSE.Views.PrintSettings.textTitle": "Print Settings", + "SSE.Views.PrintWithPreview.txtActualSize": "Ukuran Sebenarnya", + "SSE.Views.PrintWithPreview.txtBottom": "Bawah", + "SSE.Views.PrintWithPreview.txtCustom": "Khusus", + "SSE.Views.PrintWithPreview.txtLeft": "Kiri", + "SSE.Views.PrintWithPreview.txtMargins": "Margin", + "SSE.Views.PrintWithPreview.txtPage": "Halaman", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Nomor halaman salah", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientasi Halaman", + "SSE.Views.PrintWithPreview.txtPageSize": "Ukuran Halaman", + "SSE.Views.PrintWithPreview.txtPrint": "Cetak", + "SSE.Views.PrintWithPreview.txtRight": "Kanan", + "SSE.Views.PrintWithPreview.txtSave": "Simpan", + "SSE.Views.PrintWithPreview.txtTop": "Atas", + "SSE.Views.ProtectDialog.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.ProtectDialog.txtPassword": "Kata Sandi", + "SSE.Views.ProtectDialog.txtRangeName": "Judul", + "SSE.Views.ProtectDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "SSE.Views.ProtectRangesDlg.guestText": "Tamu", + "SSE.Views.ProtectRangesDlg.lockText": "Dikunci", + "SSE.Views.ProtectRangesDlg.textDelete": "Hapus", + "SSE.Views.ProtectRangesDlg.textEdit": "Sunting", + "SSE.Views.ProtectRangesDlg.textNew": "baru", + "SSE.Views.ProtectRangesDlg.textPwd": "Kata Sandi", + "SSE.Views.ProtectRangesDlg.textTitle": "Judul", + "SSE.Views.ProtectRangesDlg.txtNo": "Tidak", + "SSE.Views.ProtectRangesDlg.txtYes": "Ya", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Kolom", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Pilih semua", "SSE.Views.RightMenu.txtChartSettings": "Chart Settings", "SSE.Views.RightMenu.txtImageSettings": "Image Settings", "SSE.Views.RightMenu.txtParagraphSettings": "Text Settings", "SSE.Views.RightMenu.txtSettings": "Common Settings", "SSE.Views.RightMenu.txtShapeSettings": "Shape Settings", + "SSE.Views.RightMenu.txtTableSettings": "Pengaturan Tabel", "SSE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", + "SSE.Views.ScaleDialog.textAuto": "Otomatis", + "SSE.Views.ScaleDialog.textFewPages": "Halaman", + "SSE.Views.ScaleDialog.textHeight": "Ketinggian", + "SSE.Views.ScaleDialog.textManyPages": "Halaman", + "SSE.Views.ScaleDialog.textOnePage": "Halaman", + "SSE.Views.ScaleDialog.textWidth": "Lebar", "SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}", "SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}", "SSE.Views.ShapeSettings.strBackground": "Background color", @@ -601,6 +1258,7 @@ "SSE.Views.ShapeSettings.strSize": "Size", "SSE.Views.ShapeSettings.strStroke": "Stroke", "SSE.Views.ShapeSettings.strTransparency": "Opacity", + "SSE.Views.ShapeSettings.strType": "Tipe", "SSE.Views.ShapeSettings.textAdvanced": "Show advanced settings", "SSE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Color Fill", @@ -615,6 +1273,7 @@ "SSE.Views.ShapeSettings.textNoFill": "No Fill", "SSE.Views.ShapeSettings.textOriginalSize": "Original Size", "SSE.Views.ShapeSettings.textPatternFill": "Pattern", + "SSE.Views.ShapeSettings.textPosition": "Jabatan", "SSE.Views.ShapeSettings.textRadial": "Radial", "SSE.Views.ShapeSettings.textSelectTexture": "Select", "SSE.Views.ShapeSettings.textStretch": "Stretch", @@ -633,13 +1292,17 @@ "SSE.Views.ShapeSettings.txtNoBorders": "No Line", "SSE.Views.ShapeSettings.txtPapyrus": "Papyrus", "SSE.Views.ShapeSettings.txtWood": "Wood", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "Kolom", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", + "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Judul", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", "SSE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", "SSE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Jumlah Kolom", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat", @@ -657,6 +1320,51 @@ "SSE.Views.ShapeSettingsAdvanced.textTop": "Top", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Width", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", + "SSE.Views.SlicerAddDialog.textColumns": "Kolom", + "SSE.Views.SlicerSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.SlicerSettings.textButtons": "Tombol", + "SSE.Views.SlicerSettings.textColumns": "Kolom", + "SSE.Views.SlicerSettings.textHeight": "Ketinggian", + "SSE.Views.SlicerSettings.textHor": "Horisontal", + "SSE.Views.SlicerSettings.textKeepRatio": "Proporsi Konstan", + "SSE.Views.SlicerSettings.textPosition": "Jabatan", + "SSE.Views.SlicerSettings.textSize": "Ukuran", + "SSE.Views.SlicerSettings.textStyle": "Model", + "SSE.Views.SlicerSettings.textVert": "Vertikal", + "SSE.Views.SlicerSettings.textWidth": "Lebar", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Tombol", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Kolom", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Ketinggian", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Ukuran", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Model", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Lebar", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Proporsi Konstan", + "SSE.Views.SlicerSettingsAdvanced.textName": "Nama", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.SortDialog.textAuto": "Otomatis", + "SSE.Views.SortDialog.textBelow": "Di bawah", + "SSE.Views.SortDialog.textColumn": "Kolom", + "SSE.Views.SortDialog.textFontColor": "Warna Huruf", + "SSE.Views.SortDialog.textLeft": "Kiri", + "SSE.Views.SortDialog.textNone": "tidak ada", + "SSE.Views.SortDialog.textOptions": "Pilihan", + "SSE.Views.SortDialog.textOrder": "Pesanan", + "SSE.Views.SortDialog.textRight": "Kanan", + "SSE.Views.SortDialog.textRow": "Baris", + "SSE.Views.SortDialog.textSortBy": "Urutkan berdasar", + "SSE.Views.SortDialog.textTop": "Atas", + "SSE.Views.SortOptionsDialog.textCase": "Harus sama persis", + "SSE.Views.SpecialPasteDialog.textAdd": "Tambahkan", + "SSE.Views.SpecialPasteDialog.textAll": "Semua", + "SSE.Views.SpecialPasteDialog.textComments": "Komentar", + "SSE.Views.SpecialPasteDialog.textNone": "tidak ada", + "SSE.Views.SpecialPasteDialog.textPaste": "Tempel", + "SSE.Views.Spellcheck.textChange": "Ganti", + "SSE.Views.Spellcheck.textIgnore": "Abaikan", + "SSE.Views.Spellcheck.textIgnoreAll": "Abaikan Semua", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copy to end)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Move to end)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copy before sheet", @@ -666,8 +1374,10 @@ "SSE.Views.Statusbar.itemHidden": "Hidden", "SSE.Views.Statusbar.itemHide": "Hide", "SSE.Views.Statusbar.itemInsert": "Insert", + "SSE.Views.Statusbar.itemMaximum": "Maksimal", "SSE.Views.Statusbar.itemMove": "Move", "SSE.Views.Statusbar.itemRename": "Rename", + "SSE.Views.Statusbar.itemSum": "Jumlah", "SSE.Views.Statusbar.itemTabColor": "Tab Color", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Worksheet with such a name already exists.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "A sheet name cannot contain the following characters: \\/*?[]:", @@ -691,6 +1401,27 @@ "SSE.Views.TableOptionsDialog.txtFormat": "Create table", "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range", "SSE.Views.TableOptionsDialog.txtTitle": "Title", + "SSE.Views.TableSettings.deleteColumnText": "Hapus Kolom", + "SSE.Views.TableSettings.deleteRowText": "Hapus Baris", + "SSE.Views.TableSettings.deleteTableText": "Hapus Tabel", + "SSE.Views.TableSettings.insertColumnLeftText": "Sisipkan Kolom di Kiri", + "SSE.Views.TableSettings.insertColumnRightText": "Sisipkan Kolom di Kanan", + "SSE.Views.TableSettings.insertRowBelowText": "Sisipkan Baris di Bawah", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Peringatan", + "SSE.Views.TableSettings.selectRowText": "Pilih Baris", + "SSE.Views.TableSettings.selectTableText": "Pilih Tabel", + "SSE.Views.TableSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.TableSettings.textBanded": "Bergaris", + "SSE.Views.TableSettings.textColumns": "Kolom", + "SSE.Views.TableSettings.textEdit": "Baris & Kolom", + "SSE.Views.TableSettings.textEmptyTemplate": "Tidak ada template", + "SSE.Views.TableSettings.textFirst": "pertama", + "SSE.Views.TableSettings.textLast": "terakhir", + "SSE.Views.TableSettings.textRows": "Baris", + "SSE.Views.TableSettings.textTemplate": "Pilih Dari Template", + "SSE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan Lanjut", "SSE.Views.TextArtSettings.strBackground": "Background color", "SSE.Views.TextArtSettings.strColor": "Color", "SSE.Views.TextArtSettings.strFill": "Fill", @@ -699,6 +1430,7 @@ "SSE.Views.TextArtSettings.strSize": "Size", "SSE.Views.TextArtSettings.strStroke": "Stroke", "SSE.Views.TextArtSettings.strTransparency": "Opacity", + "SSE.Views.TextArtSettings.strType": "Tipe", "SSE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "SSE.Views.TextArtSettings.textColor": "Color Fill", "SSE.Views.TextArtSettings.textDirection": "Direction", @@ -711,6 +1443,7 @@ "SSE.Views.TextArtSettings.textLinear": "Linear", "SSE.Views.TextArtSettings.textNoFill": "No Fill", "SSE.Views.TextArtSettings.textPatternFill": "Pattern", + "SSE.Views.TextArtSettings.textPosition": "Jabatan", "SSE.Views.TextArtSettings.textRadial": "Radial", "SSE.Views.TextArtSettings.textSelectTexture": "Select", "SSE.Views.TextArtSettings.textStretch": "Stretch", @@ -731,6 +1464,17 @@ "SSE.Views.TextArtSettings.txtNoBorders": "No Line", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Wood", + "SSE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "SSE.Views.Toolbar.capBtnComment": "Komentar", + "SSE.Views.Toolbar.capBtnMargins": "Margin", + "SSE.Views.Toolbar.capBtnPageSize": "Ukuran", + "SSE.Views.Toolbar.capImgAlign": "Ratakan", + "SSE.Views.Toolbar.capImgBackward": "Mundurkan", + "SSE.Views.Toolbar.capImgForward": "Majukan", + "SSE.Views.Toolbar.capImgGroup": "Grup", + "SSE.Views.Toolbar.capInsertChart": "Bagan", + "SSE.Views.Toolbar.capInsertImage": "Gambar", + "SSE.Views.Toolbar.capInsertTable": "Tabel", "SSE.Views.Toolbar.mniImageFromFile": "Picture from File", "SSE.Views.Toolbar.mniImageFromUrl": "Picture from URL", "SSE.Views.Toolbar.textAlignBottom": "Align Bottom", @@ -741,6 +1485,8 @@ "SSE.Views.Toolbar.textAlignRight": "Align Right", "SSE.Views.Toolbar.textAlignTop": "Align Top", "SSE.Views.Toolbar.textAllBorders": "All Borders", + "SSE.Views.Toolbar.textAuto": "Otomatis", + "SSE.Views.Toolbar.textAutoColor": "Otomatis", "SSE.Views.Toolbar.textBold": "Bold", "SSE.Views.Toolbar.textBordersColor": "Border Color", "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", @@ -753,23 +1499,37 @@ "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", "SSE.Views.Toolbar.textEntireCol": "Entire Column", "SSE.Views.Toolbar.textEntireRow": "Entire Row", + "SSE.Views.Toolbar.textFewPages": "Halaman", + "SSE.Views.Toolbar.textHeight": "Ketinggian", "SSE.Views.Toolbar.textHorizontal": "Horizontal Text", "SSE.Views.Toolbar.textInsDown": "Shift Cells Down", "SSE.Views.Toolbar.textInsideBorders": "Inside Borders", "SSE.Views.Toolbar.textInsRight": "Shift Cells Right", "SSE.Views.Toolbar.textItalic": "Italic", "SSE.Views.Toolbar.textLeftBorders": "Left Borders", + "SSE.Views.Toolbar.textManyPages": "Halaman", "SSE.Views.Toolbar.textMiddleBorders": "Inside Horizontal Borders", "SSE.Views.Toolbar.textNewColor": "Add New Custom Color", "SSE.Views.Toolbar.textNoBorders": "No Borders", + "SSE.Views.Toolbar.textOnePage": "Halaman", "SSE.Views.Toolbar.textOutBorders": "Outside Borders", "SSE.Views.Toolbar.textPrint": "Print", "SSE.Views.Toolbar.textPrintOptions": "Print Settings", "SSE.Views.Toolbar.textRightBorders": "Right Borders", "SSE.Views.Toolbar.textRotateDown": "Rotate Text Down", "SSE.Views.Toolbar.textRotateUp": "Rotate Text Up", + "SSE.Views.Toolbar.textScaleCustom": "Khusus", + "SSE.Views.Toolbar.textStrikeout": "Coret ganda", + "SSE.Views.Toolbar.textSubscript": "Subskrip", + "SSE.Views.Toolbar.textSuperscript": "Superskrip", + "SSE.Views.Toolbar.textTabData": "Data", + "SSE.Views.Toolbar.textTabFile": "File", + "SSE.Views.Toolbar.textTabHome": "Halaman Depan", + "SSE.Views.Toolbar.textTabInsert": "Sisipkan", + "SSE.Views.Toolbar.textTabView": "Lihat", "SSE.Views.Toolbar.textTopBorders": "Top Borders", "SSE.Views.Toolbar.textUnderline": "Underline", + "SSE.Views.Toolbar.textWidth": "Lebar", "SSE.Views.Toolbar.textZoom": "Zoom", "SSE.Views.Toolbar.tipAlignBottom": "Align Bottom", "SSE.Views.Toolbar.tipAlignCenter": "Align Center", @@ -782,6 +1542,7 @@ "SSE.Views.Toolbar.tipBack": "Back", "SSE.Views.Toolbar.tipBorders": "Borders", "SSE.Views.Toolbar.tipCellStyle": "Cell Style", + "SSE.Views.Toolbar.tipChangeChart": "Ubah Tipe Bagan", "SSE.Views.Toolbar.tipClearStyle": "Clear", "SSE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", "SSE.Views.Toolbar.tipCopy": "Copy", @@ -793,25 +1554,34 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style", "SSE.Views.Toolbar.tipDigStylePercent": "Percent Style", "SSE.Views.Toolbar.tipEditChart": "Edit Chart", + "SSE.Views.Toolbar.tipEditChartType": "Ubah Tipe Bagan", "SSE.Views.Toolbar.tipFontColor": "Font Color", "SSE.Views.Toolbar.tipFontName": "Font Name", "SSE.Views.Toolbar.tipFontSize": "Font Size", "SSE.Views.Toolbar.tipIncDecimal": "Increase Decimal", "SSE.Views.Toolbar.tipIncFont": "Increment font size", "SSE.Views.Toolbar.tipInsertChart": "Insert Chart", + "SSE.Views.Toolbar.tipInsertChartSpark": "Sisipkan Bagan", + "SSE.Views.Toolbar.tipInsertEquation": "Masukkan Persamaan", "SSE.Views.Toolbar.tipInsertHyperlink": "Add Hyperlink", "SSE.Views.Toolbar.tipInsertImage": "Insert Picture", "SSE.Views.Toolbar.tipInsertOpt": "Insert Cells", "SSE.Views.Toolbar.tipInsertShape": "Insert Autoshape", + "SSE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel", "SSE.Views.Toolbar.tipInsertText": "Insert Text", "SSE.Views.Toolbar.tipMerge": "Merge", + "SSE.Views.Toolbar.tipNone": "tidak ada", "SSE.Views.Toolbar.tipNumFormat": "Number Format", + "SSE.Views.Toolbar.tipPageOrient": "Orientasi Halaman", + "SSE.Views.Toolbar.tipPageSize": "Ukuran Halaman", "SSE.Views.Toolbar.tipPaste": "Paste", "SSE.Views.Toolbar.tipPrColor": "Background Color", "SSE.Views.Toolbar.tipPrint": "Print", "SSE.Views.Toolbar.tipRedo": "Redo", "SSE.Views.Toolbar.tipSave": "Save", "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", + "SSE.Views.Toolbar.tipSendBackward": "Mundurkan", + "SSE.Views.Toolbar.tipSendForward": "Majukan", "SSE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.", "SSE.Views.Toolbar.tipTextOrientation": "Orientation", "SSE.Views.Toolbar.tipUndo": "Undo", @@ -883,5 +1653,24 @@ "SSE.Views.Toolbar.txtText": "Text", "SSE.Views.Toolbar.txtTime": "Time", "SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells", - "SSE.Views.Toolbar.txtYen": "¥ Yen" + "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Top10FilterDialog.textType": "Tampilkan", + "SSE.Views.Top10FilterDialog.txtBottom": "Bawah", + "SSE.Views.Top10FilterDialog.txtBy": "oleh", + "SSE.Views.Top10FilterDialog.txtSum": "Jumlah", + "SSE.Views.Top10FilterDialog.txtTop": "Atas", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Indeks", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produk", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Jumlah", + "SSE.Views.ViewManagerDlg.closeButtonText": "Tutup", + "SSE.Views.ViewManagerDlg.guestText": "Tamu", + "SSE.Views.ViewManagerDlg.lockText": "Dikunci", + "SSE.Views.ViewManagerDlg.textDelete": "Hapus", + "SSE.Views.ViewManagerDlg.textDuplicate": "Duplikat", + "SSE.Views.ViewManagerDlg.textNew": "baru", + "SSE.Views.ViewManagerDlg.textRename": "Ganti nama", + "SSE.Views.ViewTab.textClose": "Tutup", + "SSE.Views.ViewTab.textCreate": "baru", + "SSE.Views.ViewTab.textDefault": "standar", + "SSE.Views.ViewTab.textZoom": "Pembesaran" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 240a8cbb2..4d1df8f67 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -187,6 +187,7 @@ "Common.Views.Comments.textAddComment": "コメントを追加", "Common.Views.Comments.textAddCommentToDoc": "ドキュメントにコメントを追加", "Common.Views.Comments.textAddReply": "返信する", + "Common.Views.Comments.textAll": "すべて", "Common.Views.Comments.textAnonym": "ゲスト", "Common.Views.Comments.textCancel": "キャンセル", "Common.Views.Comments.textClose": "閉じる", @@ -200,6 +201,7 @@ "Common.Views.Comments.textResolve": "解決", "Common.Views.Comments.textResolved": "解決済み", "Common.Views.Comments.textSort": "コメントを並べ替える", + "Common.Views.Comments.textViewResolved": "コメントを再開する権限がありません", "Common.Views.CopyWarningDialog.textDontShow": "今後このメッセージを表示しない", "Common.Views.CopyWarningDialog.textMsg": "このタブの編集のツールバーのボタンとコンテキストメニューを使って、コピー、分割と貼り付けをすることができます。

他のアプリケーションにコピーと貼り付けのために、次のショートカットキー を使ってください:", "Common.Views.CopyWarningDialog.textTitle": "コピー,切り取り,貼り付けの操作", @@ -284,7 +286,7 @@ "Common.Views.PasswordDialog.txtPassword": "パスワード", "Common.Views.PasswordDialog.txtRepeat": "パスワードを再入力", "Common.Views.PasswordDialog.txtTitle": "パスワードの設定", - "Common.Views.PasswordDialog.txtWarning": "注意: パスワードを忘れると、元に戻せません。", + "Common.Views.PasswordDialog.txtWarning": "注意: パスワードを忘れると元に戻せません。安全な場所に記録してください。", "Common.Views.PluginDlg.textLoading": "読み込み中", "Common.Views.Plugins.groupCaption": "プラグイン", "Common.Views.Plugins.strPlugins": "プラグイン", @@ -367,6 +369,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "もう一度開く", "Common.Views.ReviewPopover.textReply": "返事する", "Common.Views.ReviewPopover.textResolve": "解決する", + "Common.Views.ReviewPopover.textViewResolved": "コメントを再開する権限がありません", "Common.Views.ReviewPopover.txtDeleteTip": "削除", "Common.Views.ReviewPopover.txtEditTip": "編集", "Common.Views.SaveAsDlg.textLoading": "読み込み中", @@ -614,7 +617,7 @@ "SSE.Controllers.LeftMenu.textLoadHistory": "バリエーションの履歴の読み込み中...", "SSE.Controllers.LeftMenu.textLookin": "検索の範囲", "SSE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", - "SSE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", "SSE.Controllers.LeftMenu.textReplaceSuccess": "検索完了しました。更新件数は、{0} です。", "SSE.Controllers.LeftMenu.textSearch": "検索", "SSE.Controllers.LeftMenu.textSheet": "シート", @@ -642,6 +645,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "エリアをフィルタされたセルが含まれているので、操作を実行できません。
フィルタリングの要素を表示して、もう一度お試しください", "SSE.Controllers.Main.errorBadImageUrl": "画像のURLが正しくありません。", "SSE.Controllers.Main.errorCannotUngroup": "グループ化を解除できません。 アウトラインを開始するには、詳細の行または列を選択してグループ化ください。", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "このコマンドは、保護されたシートでは使用できません。このコマンドを使用するには、シートの保護を解除してください。
パスワードの入力を求められる場合があります。", "SSE.Controllers.Main.errorChangeArray": "配列の一部を変更することはできません。", "SSE.Controllers.Main.errorChangeFilteredRange": "これにより、ワークシートのフィルター範囲が変更されます。
このタスクを完了するには、オートフィルターをご削除ください。", "SSE.Controllers.Main.errorChangeOnProtectedSheet": "変更しようとしているチャートには、保護されたシートにあります。変更するには保護を解除が必要です。パスワードの入力を要求されることもあります。", @@ -1063,6 +1067,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "最低 1 つのワークシートが含まれていなければなりません。", "SSE.Controllers.Statusbar.errorRemoveSheet": "ワークシートを削除することができません。", "SSE.Controllers.Statusbar.strSheet": "シート", + "SSE.Controllers.Statusbar.textDisconnect": "切断されました
設定を確認してください。", "SSE.Controllers.Statusbar.textSheetViewTip": "シートビューモードになっています。 フィルタと並べ替えは、あなたとまだこのビューにいる人だけに表示されます。", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "シート表示モードになっています。 フィルタは、あなたとまだこの表示にいる人だけに表示されます。", "SSE.Controllers.Statusbar.warnDeleteSheet": "選択したシートにはデータが含まれている可能性があります。続行してもよろしいですか?", @@ -2727,6 +2732,13 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "範囲の選択", "SSE.Views.PrintTitlesDialog.textTitle": "タイトルを印刷する", "SSE.Views.PrintTitlesDialog.textTop": "上の行を繰り返す", + "SSE.Views.PrintWithPreview.txtActualSize": "実際の大きさ", + "SSE.Views.PrintWithPreview.txtAllSheets": "全てのシート", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "全てのシートに適用", + "SSE.Views.PrintWithPreview.txtLeft": "左", + "SSE.Views.PrintWithPreview.txtPrint": "印刷", + "SSE.Views.PrintWithPreview.txtPrintGrid": "枠線の印刷", + "SSE.Views.PrintWithPreview.txtPrintRange": "印刷範囲\t", "SSE.Views.ProtectDialog.textExistName": "エラー!この名がある範囲があります。", "SSE.Views.ProtectDialog.textInvalidName": "範囲の名前に含めることができるのは、文字、数字、およびスペースだけです", "SSE.Views.ProtectDialog.textInvalidRange": "エラー!セルの範囲が正しくありません。", @@ -2744,7 +2756,7 @@ "SSE.Views.ProtectDialog.txtInsHyper": "ハイパーリンクを挿入する", "SSE.Views.ProtectDialog.txtInsRows": "行を挿入する", "SSE.Views.ProtectDialog.txtObjs": "オブジェクトを編集する", - "SSE.Views.ProtectDialog.txtOptional": "任意の", + "SSE.Views.ProtectDialog.txtOptional": "任意", "SSE.Views.ProtectDialog.txtPassword": "パスワード", "SSE.Views.ProtectDialog.txtPivot": "ピボット表とピボットチャートを使う", "SSE.Views.ProtectDialog.txtProtect": "保護する", @@ -2757,7 +2769,7 @@ "SSE.Views.ProtectDialog.txtSheetDescription": "編集権限を制限して、他のユーザーが不用意にデータを変更することを防ぎます", "SSE.Views.ProtectDialog.txtSheetTitle": "シートを保護する", "SSE.Views.ProtectDialog.txtSort": "並べ替え", - "SSE.Views.ProtectDialog.txtWarning": "注意: パスワードを忘れると、元に戻せません。安全な場所に持ってください。", + "SSE.Views.ProtectDialog.txtWarning": "注意: パスワードを忘れると元に戻せません。安全な場所に記録してください。", "SSE.Views.ProtectDialog.txtWBDescription": "他のユーザは非表示のワークシートを表示したり、シート追加、移動、削除したり、シートを非表示、名の変更することができないようにブックの構造をパスワードで保護できます", "SSE.Views.ProtectDialog.txtWBTitle": "ブックを保護する", "SSE.Views.ProtectRangesDlg.guestText": "ゲスト", @@ -3289,6 +3301,7 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "ユーザー設定の余白", "SSE.Views.Toolbar.textPortrait": "縦向き", "SSE.Views.Toolbar.textPrint": "印刷", + "SSE.Views.Toolbar.textPrintGridlines": "枠線の印刷", "SSE.Views.Toolbar.textPrintOptions": "設定の印刷", "SSE.Views.Toolbar.textRight": "右:", "SSE.Views.Toolbar.textRightBorders": "右の罫線", @@ -3367,6 +3380,7 @@ "SSE.Views.Toolbar.tipInsertTable": "テーブルの挿入", "SSE.Views.Toolbar.tipInsertText": "テキストボックスを挿入する", "SSE.Views.Toolbar.tipInsertTextart": "ワードアートの挿入", + "SSE.Views.Toolbar.tipMarkersArrow": "箇条書き(矢印)", "SSE.Views.Toolbar.tipMerge": "結合して、中央に配置する", "SSE.Views.Toolbar.tipNumFormat": "数値の書式", "SSE.Views.Toolbar.tipPageMargins": "余白", @@ -3511,6 +3525,7 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "現在有効になっている表示 '%1'を削除しようとしています。
この表示を閉じて削除しますか?", "SSE.Views.ViewTab.capBtnFreeze": "ウィンドウ枠の固定", "SSE.Views.ViewTab.capBtnSheetView": "シートの表示", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "ツールバーを常に表示する", "SSE.Views.ViewTab.textClose": "閉じる", "SSE.Views.ViewTab.textCreate": "新しい", "SSE.Views.ViewTab.textDefault": "デフォルト", @@ -3531,9 +3546,9 @@ "SSE.Views.WBProtection.hintProtectSheet": "シートを保護する", "SSE.Views.WBProtection.hintProtectWB": "ブックを保護する", "SSE.Views.WBProtection.txtAllowRanges": "範囲の編集を許可する", - "SSE.Views.WBProtection.txtHiddenFormula": "非表示の数式", + "SSE.Views.WBProtection.txtHiddenFormula": "数式を非表示", "SSE.Views.WBProtection.txtLockedCell": "ロックしたセル", - "SSE.Views.WBProtection.txtLockedShape": "形がロックした", + "SSE.Views.WBProtection.txtLockedShape": "図形をロック", "SSE.Views.WBProtection.txtLockedText": "テキストをロックする", "SSE.Views.WBProtection.txtProtectSheet": "シートを保護する", "SSE.Views.WBProtection.txtProtectWB": "ブックを保護する", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index f25c2e248..7d75b0e41 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -310,7 +310,7 @@ "Common.Views.ReviewChanges.strFast": "Rápido", "Common.Views.ReviewChanges.strFastDesc": "Coedição em tempo real. Todas as alterações são salvas automaticamente.", "Common.Views.ReviewChanges.strStrict": "Estrito", - "Common.Views.ReviewChanges.strStrictDesc": "Use o botão 'Salvar' para sincronizar as alterações que você e outras pessoas fazem.", + "Common.Views.ReviewChanges.strStrictDesc": "Use o botão 'Salvar' para sincronizar as alterações que você e outras pessoas fazeram.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Aceitar alteração atual", "Common.Views.ReviewChanges.tipCoAuthMode": "Definir o modo de co-edição", "Common.Views.ReviewChanges.tipCommentRem": "Remover comentários", @@ -344,7 +344,7 @@ "Common.Views.ReviewChanges.txtDocLang": "Idioma", "Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceitas (Visualização)", "Common.Views.ReviewChanges.txtFinalCap": "Final", - "Common.Views.ReviewChanges.txtHistory": "Histórico de Versões", + "Common.Views.ReviewChanges.txtHistory": "Histórico da Versões", "Common.Views.ReviewChanges.txtMarkup": "Todas as alterações (Edição)", "Common.Views.ReviewChanges.txtMarkupCap": "Marcação", "Common.Views.ReviewChanges.txtNext": "Próximo", @@ -569,7 +569,7 @@ "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formatação da fonte", "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpor", "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Valor + toda formatação", - "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Valor + formato de número", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Valor + formato do número", "SSE.Controllers.DocumentHolder.txtPasteValues": "Colar apenas valor", "SSE.Controllers.DocumentHolder.txtPercent": "por cento", "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Refazer tabela de expansão automática", @@ -686,7 +686,7 @@ "SSE.Controllers.Main.errorFTChangeTableRangeError": "Não foi possível concluir a operação para o intervalo de células selecionado.
Selecione um intervalo para que a primeira linha da tabela fique na mesma linha
e a tabela resultante se sobreponha à atual.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Não foi possível concluir a operação para o intervalo de células selecionado.
Selecione um intervalo que não inclua outras tabelas.", "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "SSE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", + "SSE.Controllers.Main.errorKeyEncrypt": "Descrição de chave desconhecida", "SSE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", "SSE.Controllers.Main.errorLabledColumnsPivot": "Para criar uma tabela dinâmica, você deve usar os dados organizados como uma lista com colunas rotuladas.", "SSE.Controllers.Main.errorLoadingFont": "As fontes não foram carregadas.
Entre em contato com o administrador do Document Server.", @@ -949,7 +949,7 @@ "SSE.Controllers.Main.txtShape_mathNotEqual": "Não igual", "SSE.Controllers.Main.txtShape_mathPlus": "Mais", "SSE.Controllers.Main.txtShape_moon": "Lua", - "SSE.Controllers.Main.txtShape_noSmoking": "Entrada Proibida", + "SSE.Controllers.Main.txtShape_noSmoking": "Símbolo \"Não\"", "SSE.Controllers.Main.txtShape_notchedRightArrow": "Seta direita entalhada", "SSE.Controllers.Main.txtShape_octagon": "Octógono", "SSE.Controllers.Main.txtShape_parallelogram": "Paralelogramo", @@ -1408,7 +1408,7 @@ "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Raiz quadrada", "SSE.Controllers.Toolbar.txtSymbol_qed": "Fim da prova", - "SSE.Controllers.Toolbar.txtSymbol_rddots": "Reticências diagonal direitas para cima", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Reticências diagonal direita para cima", "SSE.Controllers.Toolbar.txtSymbol_rho": "Rô", "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Seta para direita", "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", @@ -1682,7 +1682,7 @@ "SSE.Views.ChartSettingsDlg.textOut": "Fora", "SSE.Views.ChartSettingsDlg.textOuterTop": "Fora do topo", "SSE.Views.ChartSettingsDlg.textOverlay": "Sobreposição", - "SSE.Views.ChartSettingsDlg.textReverse": "Valores na ordem reversa", + "SSE.Views.ChartSettingsDlg.textReverse": "Valores em ordem reversa", "SSE.Views.ChartSettingsDlg.textReverseOrder": "Ordem reversa", "SSE.Views.ChartSettingsDlg.textRight": "Direita", "SSE.Views.ChartSettingsDlg.textRightOverlay": "Sobreposição direita", @@ -2021,7 +2021,7 @@ "SSE.Views.FileMenu.btnExitCaption": "Sair", "SSE.Views.FileMenu.btnFileOpenCaption": "Abrir...", "SSE.Views.FileMenu.btnHelpCaption": "Ajuda...", - "SSE.Views.FileMenu.btnHistoryCaption": "Histórico de versão", + "SSE.Views.FileMenu.btnHistoryCaption": "Histórico da versão", "SSE.Views.FileMenu.btnInfoCaption": "Informações da planilha", "SSE.Views.FileMenu.btnPrintCaption": "Imprimir", "SSE.Views.FileMenu.btnProtectCaption": "Proteger", @@ -2079,7 +2079,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema de interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "separador de milhares", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unidade de medida", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Use separadores com base nas configurações regionais", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Usar separadores com base nas configurações regionais", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Valor de zoom padrão", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "A cada 10 minutos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "A cada 30 minutos", @@ -2305,7 +2305,7 @@ "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", "SSE.Views.FormatSettingsDialog.textFormat": "Formato", "SSE.Views.FormatSettingsDialog.textLinked": "Ligado à fonte", - "SSE.Views.FormatSettingsDialog.textSeparator": "Use separador 1.000", + "SSE.Views.FormatSettingsDialog.textSeparator": "Usar separador 1.000", "SSE.Views.FormatSettingsDialog.textSymbols": "Símbolos", "SSE.Views.FormatSettingsDialog.textTitle": "Formato de número", "SSE.Views.FormatSettingsDialog.txtAccounting": "Contabilidade", @@ -2602,7 +2602,7 @@ "SSE.Views.PivotDigitalFilterDialog.capCondition9": "Termina com", "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Mostrar itens para os quais o rótulo:", "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Mostrar itens para os quais:", - "SSE.Views.PivotDigitalFilterDialog.textUse1": "Usar ? apresentar qualquer um caracter", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Usar ? apresentar qualquer um caractere", "SSE.Views.PivotDigitalFilterDialog.textUse2": "Use * para apresentar qualquer série de caracteres", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "E", "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtro de rótulos", @@ -2803,7 +2803,7 @@ "SSE.Views.ProtectDialog.txtObjs": "Editar objetos", "SSE.Views.ProtectDialog.txtOptional": "Opcional", "SSE.Views.ProtectDialog.txtPassword": "Senha", - "SSE.Views.ProtectDialog.txtPivot": "Use Tabela Dinâmica e Gráfico Dinâmico", + "SSE.Views.ProtectDialog.txtPivot": "Usar Tabela Dinâmica e Gráfico Dinâmico", "SSE.Views.ProtectDialog.txtProtect": "Proteger", "SSE.Views.ProtectDialog.txtRange": "Intervalo", "SSE.Views.ProtectDialog.txtRangeName": "Título", @@ -2984,7 +2984,7 @@ "SSE.Views.SlicerAddDialog.textColumns": "Colunas", "SSE.Views.SlicerAddDialog.txtTitle": "Inserir Segmentação de Dados", "SSE.Views.SlicerSettings.strHideNoData": "Ocultar itens sem dados", - "SSE.Views.SlicerSettings.strIndNoData": "Indique visualmente itens sem dados", + "SSE.Views.SlicerSettings.strIndNoData": "Itens indicados visualmente sem dados", "SSE.Views.SlicerSettings.strShowDel": "Mostrar itens excluídos da fonte de dados", "SSE.Views.SlicerSettings.strShowNoData": "Mostrar itens sem dados por último", "SSE.Views.SlicerSettings.strSorting": "Classificação e filtragem", @@ -3012,7 +3012,7 @@ "SSE.Views.SlicerSettingsAdvanced.strColumns": "Colunas", "SSE.Views.SlicerSettingsAdvanced.strHeight": "Altura", "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Ocultar itens sem dados", - "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Indique visualmente itens sem dados", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Itens indicados visualmente sem dados", "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referências", "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Mostrar itens excluídos da fonte de dados", "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Cabeçalho de exibição", @@ -3123,8 +3123,8 @@ "SSE.Views.Spellcheck.txtDictionaryLanguage": "Idioma do dicionário", "SSE.Views.Spellcheck.txtNextTip": "Vá para a próxima palavra", "SSE.Views.Spellcheck.txtSpelling": "Ortografia", - "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copiar para fim)", - "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mover para fim)", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copiar para o final)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mover para o final)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copiar antes da folha", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Mover antes da folha", "SSE.Views.Statusbar.filteredRecordsText": "{0} de {1} registros filtrados", @@ -3526,7 +3526,7 @@ "SSE.Views.Toolbar.txtTableTemplate": "Formato como Modelo de tabela", "SSE.Views.Toolbar.txtText": "Texto", "SSE.Views.Toolbar.txtTime": "Hora", - "SSE.Views.Toolbar.txtUnmerge": "Desfaz a mesclagem de células", + "SSE.Views.Toolbar.txtUnmerge": "Desfazer a mesclagem de células", "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "Exibir", "SSE.Views.Top10FilterDialog.txtBottom": "Inferior", @@ -3575,7 +3575,7 @@ "SSE.Views.ViewManagerDlg.textLongName": "Digite um nome que tenha menos de 128 caracteres.", "SSE.Views.ViewManagerDlg.textNew": "Novo", "SSE.Views.ViewManagerDlg.textRename": "Renomear", - "SSE.Views.ViewManagerDlg.textRenameError": "O nome da vista não deve estar vazio.", + "SSE.Views.ViewManagerDlg.textRenameError": "O nome não deve estar vazio.", "SSE.Views.ViewManagerDlg.textRenameLabel": "Renomear vista", "SSE.Views.ViewManagerDlg.textViews": "Vistas de folha", "SSE.Views.ViewManagerDlg.tipIsLocked": "Este elemento está sendo editado por outro usuário.", diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index 8edd8ccae..775fafeb9 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -298,8 +298,8 @@ "textWarnDeleteSheet": "İş vərəqində məlumat ola bilər. Əməliyyat davam etdirilsin?", "textHidden": "Hidden", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Bu sənəddə saxlanmamış dəyişiklikləriniz var. Avtomatik saxlanmanı gözləmək üçün \"Bu Səhifədə Qalın\" hissəsinin üzərinə klikləyin. Bütün saxlanmamış dəyişiklikləri ləğv etmək üçün \"Bu səhifədən Çıxın\" hissəsinin üzərinə klikləyin.", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index cc401449d..628ff6163 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -250,8 +250,8 @@ "textHide": "Hide", "textMore": "More", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)", "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index ff22a2004..5b8b771bc 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -291,8 +291,8 @@ "textHide": "Amaga", "textMore": "Més", "textMove": "Desplaça", - "textMoveBack": "Ves endarrere", - "textMoveForward": "Ves endavant", + "textMoveBefore": "Desplaceu abans del full", + "textMoveToEnd": "Aneu al final", "textOk": "D'acord", "textRename": "Canvia el nom", "textRenameSheet": "Canvia el nom del full", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 6a50552cd..84cdf1fea 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -36,7 +36,7 @@ "ThemeColorPalette": { "textCustomColors": "Vlastní barvy", "textStandartColors": "Standardní barvy", - "textThemeColors": "Barvy motivu vzhledu" + "textThemeColors": "Barvy vzhledu prostředí" } }, "ContextMenu": { @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "Chyba", "errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.
Obraťte se na Vašeho správce.", + "errorOpensource": "Při využívání bezplatné komunitní veze, můžete otevřít dokumenty pouze pro náhled. Pro získání přístupu k mobilním online editorům, je nutná komerční licence.", "errorProcessSaveResult": "Ukládání selhalo.", "errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se změny uplatnily.", "errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.", @@ -142,9 +143,14 @@ "textGuest": "Návštěvník", "textHasMacros": "Soubor obsahuje automatická makra.
Opravdu chcete makra spustit?", "textNo": "Ne", + "textNoChoices": "Neexistují žádné možnosti pro vyplnění buňky.
Jako náhradu je možné vybrat pouze textové hodnoty ze sloupce.", "textNoLicenseTitle": "Došlo k dosažení limitu licence", + "textNoTextFound": "Text nebyl nalezen", + "textOk": "OK", "textPaidFeature": "Placená funkce", "textRemember": "Zapamatovat moji volbu", + "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", + "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", "textYes": "Ano", "titleServerVersion": "Editor byl aktualizován", "titleUpdateVersion": "Verze změněna", @@ -154,13 +160,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "Operaci nelze pro zvolený rozsah buněk provést.
Vyberte jednotnou oblast dat uvnitř nebo vně tabulky a zkuste to znovu.", "errorAutoFilterHiddenRange": "Operaci nelze provést, protože oblast obsahuje filtrované buňky.
Odkryjte filtrované prvky a zkuste to znovu.", "errorBadImageUrl": "Adresa URL obrázku je nesprávná", + "errorCannotUseCommandProtectedSheet": "Tento příkaz nelze použít na zabezpečený list. Pro použití příkazu, zrušte zabezpečení listu.
Může být vyžadováno zadání hesla.", "errorChangeArray": "Nemůžete měnit část pole.", "errorChangeOnProtectedSheet": "Buňka nebo graf, který se pokoušíte změnit je na zabezpečeném listu. Pro provedení změny, vypněte zabezpečení listu. Může být vyžadováno zadání hesla.", "errorConnectToServer": "Není možné uložit dokument. Zkontrolujte nastavení připojení, nebo kontaktujte Vašeho správce.
Po kliknutím na tlačítko 'OK' budete vyzváni ke stažení dokumentu.", @@ -233,8 +234,7 @@ "unknownErrorText": "Neznámá chyba.", "uploadImageExtMessage": "Neznámý formát obrázku.", "uploadImageFileCountMessage": "Nenahrány žádné obrázky.", - "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB." }, "LongActions": { "advDRMPassword": "Heslo", @@ -287,19 +287,19 @@ "textErrNotEmpty": "List musí mít název", "textErrorLastSheet": "Sešit musí obsahovat alespoň jeden viditelný list.", "textErrorRemoveSheet": "Nelze odstranit list.", + "textHidden": "Skrytý", "textHide": "Skrýt", "textMore": "Více", + "textMove": "Přesunout", + "textMoveBefore": "Přesunout před list", + "textMoveToEnd": "(Přesunout na konec)", "textOk": "OK", "textRename": "Přejmenovat", "textRenameSheet": "Přejmenovat list", "textSheet": "List", "textSheetName": "Název listu", "textUnhide": "Odkrýt", - "textWarnDeleteSheet": "List může obsahovat data. Pokračovat v operaci? ", - "textHidden": "Hidden", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textWarnDeleteSheet": "List může obsahovat data. Pokračovat v operaci? " }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce' a počkejte dokud nedojde k automatickému uložení. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.", @@ -342,6 +342,7 @@ "textLink": "Odkaz", "textLinkSettings": "Nastavení odkazů", "textLinkType": "Typ odkazu", + "textOk": "OK", "textOther": "Jiné", "textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromURL": "Obrázek z adresy URL", @@ -359,8 +360,7 @@ "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "txtSorting": "Řazení", "txtSortSelected": "Seřadit vybrané", - "txtYes": "Ano", - "textOk": "Ok" + "txtYes": "Ano" }, "Edit": { "notcriticalErrorTitle": "Varování", @@ -379,6 +379,7 @@ "textAngleClockwise": "Otočit ve směru hodinových ručiček", "textAngleCounterclockwise": "Otočit proti směru hodinových ručiček", "textAuto": "Automaticky", + "textAutomatic": "Automaticky", "textAxisCrosses": "Křížení os", "textAxisOptions": "Možnosti osy", "textAxisPosition": "Pozice osy", @@ -479,6 +480,7 @@ "textNoOverlay": "Bez překrytí", "textNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "textNumber": "Číslo", + "textOk": "OK", "textOnTickMarks": "Na značkách zaškrtnutí", "textOpacity": "Průhlednost", "textOut": "Vně", @@ -540,9 +542,7 @@ "textYen": "Jen", "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "txtSortHigh2Low": "Seřadit od nejvyššího po nejnižší", - "txtSortLow2High": "Seřadit od nejnižšího po nejvyšší", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "Seřadit od nejnižšího po nejvyšší" }, "Settings": { "advCSVOptions": "Vyberte možnosti CSV", @@ -572,6 +572,7 @@ "textComments": "Komentáře", "textCreated": "Vytvořeno", "textCustomSize": "Vlastní velikost", + "textDarkTheme": "Tmavý vzhled prostředí", "textDelimeter": "Oddělovač", "textDisableAll": "Vypnout vše", "textDisableAllMacrosWithNotification": "Vypnout všechna makra s notifikacemi", @@ -672,8 +673,7 @@ "txtSemicolon": "Středník", "txtSpace": "Mezera", "txtTab": "Tabulátor", - "warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index d65416a67..52cdd0fa8 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -292,8 +292,8 @@ "textErrorLastSheet": "The workbook must have at least one visible worksheet.", "textHidden": "Hidden", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index a159b2f01..f11a5a938 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -290,8 +290,6 @@ "textHide": "Ausblenden", "textMore": "Mehr", "textMove": "Verschieben", - "textMoveBack": "Zurück", - "textMoveForward": "Vorwärts", "textOk": "OK", "textRename": "Umbenennen", "textRenameSheet": "Tabelle umbenennen", @@ -299,7 +297,9 @@ "textSheetName": "Blattname", "textUnhide": "Einblenden", "textWarnDeleteSheet": "Das Arbeitsblatt kann Daten enthalten. Möchten Sie fortsetzen?", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index d235ae34d..b60a43b57 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -291,15 +291,15 @@ "textHide": "Απόκρυψη", "textMore": "Περισσότερα", "textMove": "Μετακίνηση", - "textMoveBack": "Μετακίνηση πίσω", - "textMoveForward": "Μετακίνηση εμπρός", "textOk": "Εντάξει", "textRename": "Μετονομασία", "textRenameSheet": "Μετονομασία Φύλλου", "textSheet": "Φύλλο", "textSheetName": "Όνομα Φύλλου", "textUnhide": "Αναίρεση απόκρυψης", - "textWarnDeleteSheet": "Το φύλλο εργασίας ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;" + "textWarnDeleteSheet": "Το φύλλο εργασίας ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές στο έγγραφο. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 0a633752c..c9038b65d 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -291,8 +291,8 @@ "textHide": "Hide", "textMore": "More", "textMove": "Move", - "textMoveToEnd": "(Move to end)", "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)", "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index f95428ed4..5ed3367de 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -291,15 +291,15 @@ "textHide": "Ocultar", "textMore": "Más", "textMove": "Mover", - "textMoveBack": "Retroceder", - "textMoveForward": "Avanzar", "textOk": "OK", "textRename": "Renombrar", "textRenameSheet": "Renombrar hoja", "textSheet": "Hoja", "textSheetName": "Nombre de hoja", "textUnhide": "Volver a mostrar", - "textWarnDeleteSheet": "La hoja de cálculo puede tener datos. ¿Continuar con la operación?" + "textWarnDeleteSheet": "La hoja de cálculo puede tener datos. ¿Continuar con la operación?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios no guardados en este documento. Haga clic en \"Quedarse en esta página\" para esperar hasta que se guarden automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index d5881286f..c5a860d04 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -291,8 +291,8 @@ "textHide": "Masquer", "textMore": "Plus", "textMove": "Déplacer", - "textMoveBack": "Déplacer vers l’arrière", - "textMoveForward": "Déplacer vers l'avant", + "textMoveBefore": "Déplacer avant la feuille", + "textMoveToEnd": "(Déplacer à la fin)", "textOk": "OK", "textRename": "Renommer", "textRenameSheet": "Renommer la feuille", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index 2b05c032f..05818029d 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -291,15 +291,15 @@ "textHide": "Agochar", "textMore": "Máis", "textMove": "Mover", - "textMoveBack": "Volver", - "textMoveForward": "Mover á fronte", "textOk": "Aceptar", "textRename": "Renomear", "textRenameSheet": "Renomear folla", "textSheet": "Folla", "textSheetName": "Nome da folla", "textUnhide": "Volver a amosar", - "textWarnDeleteSheet": "A folla de traballo pode que conteña datos. Queres continuar a operación?" + "textWarnDeleteSheet": "A folla de traballo pode que conteña datos. Queres continuar a operación?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Ten cambios non gardados neste documento. Prema en \"Quedarse nesta páxina\" para esperar ata que se garden automaticamente. Prema en \"Saír desta páxina\" para descartar todos os cambios non gardados.", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 21458aa96..e8f9aea49 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -290,8 +290,6 @@ "textHide": "Elrejt", "textMore": "Több", "textMove": "Áthelyezés", - "textMoveBack": "Mozgatás hátra", - "textMoveForward": "Előre mozgat", "textOk": "OK", "textRename": "Átnevezés", "textRenameSheet": "Munkalap átnevezése", @@ -299,7 +297,9 @@ "textSheetName": "Munkalap neve", "textUnhide": "Megmutat", "textWarnDeleteSheet": "A munkalap lehet hogy tartalmaz adatok. Folytatja a műveletet?", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Nem mentett módosításai vannak ebben a dokumentumban. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index ebc97d77f..1821935e5 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -291,15 +291,15 @@ "textHide": "Nascondere", "textMore": "Di più", "textMove": "Sposta", - "textMoveBack": "Sposta indietro", - "textMoveForward": "Sposta avanti", "textOk": "OK", "textRename": "Rinominare", "textRenameSheet": "Rinominare foglio", "textSheet": "Foglio", "textSheetName": "Nome foglio", "textUnhide": "Scoprire", - "textWarnDeleteSheet": "Il foglio di calcolo potrebbe contenere dati. Procedere con l'operazione?" + "textWarnDeleteSheet": "Il foglio di calcolo potrebbe contenere dati. Procedere con l'operazione?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Ci sono i cambiamenti non salvati in questo documento. Fai clic su \"Rimanere su questa pagina\" per attendere il salvataggio automatico. Fai clic su \"Lasciare questa pagina\" per eliminare tutti i cambiamenti non salvati.", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index a124550e5..a7d738867 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -68,6 +68,7 @@ "Main": { "criticalErrorTitle": "エラー", "errorAccessDeny": "許可されていないアクションを実行しています。アドミニストレータを連絡してください。", + "errorOpensource": "無料のコミュニティバージョンを使用すると、表示専用のドキュメントを開くことができます。モバイルWebエディターにアクセスするには、商用ライセンスが必要です。", "errorProcessSaveResult": "保存が失敗", "errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。", "errorUpdateVersion": "ファイルのバージョンが変更されました。ページが再ロードされます。", @@ -142,9 +143,14 @@ "textGuest": "ゲスト", "textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", "textNo": "いいえ", + "textNoChoices": "セルを記入する選択肢がありません。
置換対象として選択できるのは列のテキスト値のみです。", "textNoLicenseTitle": "ライセンス制限に達しました", + "textNoTextFound": "テキストが見つかりませんでした", + "textOk": "OK", "textPaidFeature": "有料機能", "textRemember": "選択を覚える", + "textReplaceSkipped": "置換が完了しました。{0}つスキップされました。", + "textReplaceSuccess": "検索が完了しました。{0}つが置換されました。", "textYes": "Yes", "titleServerVersion": "編集者が更新された", "titleUpdateVersion": "バージョンが変更されました", @@ -154,13 +160,7 @@ "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", - "warnProcessRightsChange": "ファイルを編集する権限がありません!", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "textNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", - "textNoTextFound": "Text not found", - "textOk": "Ok", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}" + "warnProcessRightsChange": "ファイルを編集する権限がありません!" } }, "Error": { @@ -175,6 +175,7 @@ "errorAutoFilterDataRange": "選択したセルの範囲に対しては操作を実行できません。表の中また表の外に均質のデータの範囲を選択してもう一度してください。", "errorAutoFilterHiddenRange": "範囲がフィルターセルがありますから操作を実行できません。フィルターした要素を表示してもう一度してください。", "errorBadImageUrl": "画像のURLが正しくありません。", + "errorCannotUseCommandProtectedSheet": "このコマンドは、保護されたシートでは使用できません。このコマンドを使用するには、シートの保護を解除してください。
パスワードの入力を求められる場合があります。", "errorChangeArray": "配列の一部を変更することはできません。", "errorChangeOnProtectedSheet": "変更しようとしているセルやチャートが保護されたシートにあります。変更するには、対象のシートの保護を解除してください。パスワードの入力を求められる場合があります。", "errorConnectToServer": "この文書を保存できません。接続設定をチェックし、アドミニストレータを連絡してください。
「OK」をクリックすると、文書をダウンロードするに提案されます。", @@ -233,8 +234,7 @@ "unknownErrorText": "不明なエラー", "uploadImageExtMessage": "不明なイメージ形式", "uploadImageFileCountMessage": "アップロードしたイメージがない", - "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
You might be requested to enter a password." + "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。" }, "LongActions": { "advDRMPassword": "パスワード", @@ -287,8 +287,10 @@ "textErrNotEmpty": "シート名は空であってはなりません", "textErrorLastSheet": "ブックではシートが少なくとも 1 つ表示されている必要があります。", "textErrorRemoveSheet": "ワークシートを削除できません。", + "textHidden": "非表示", "textHide": "隠す", "textMore": "もっと", + "textMove": "移動", "textOk": "OK", "textRename": "名前の変更", "textRenameSheet": "このシートの名前を変更する", @@ -296,10 +298,8 @@ "textSheetName": "シートの名", "textUnhide": "表示する", "textWarnDeleteSheet": "ワークシートはデータがあるそうです。操作を続けてもよろしいですか?", - "textHidden": "Hidden", - "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "保存されていない変更があります。自動保存を待つように「このページから移動しない」をクリックしてください。保存されていない変更を破棄ように「このページから移動する」をクリックしてください。", @@ -342,6 +342,7 @@ "textLink": "リンク", "textLinkSettings": "リンク設定", "textLinkType": "リンクのタイプ", + "textOk": "OK", "textOther": "その他", "textPictureFromLibrary": "ライブラリからのイメージ", "textPictureFromURL": "URLからのイメージ", @@ -359,8 +360,7 @@ "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "txtSorting": "並べ替え中", "txtSortSelected": "選択したを並べ替える", - "txtYes": "Yes", - "textOk": "Ok" + "txtYes": "Yes" }, "Edit": { "notcriticalErrorTitle": " 警告", @@ -379,6 +379,7 @@ "textAngleClockwise": "右回りに​​回転", "textAngleCounterclockwise": "左回りに​​回転", "textAuto": "オート", + "textAutomatic": "自動", "textAxisCrosses": "軸との交点", "textAxisOptions": "軸の設定", "textAxisPosition": "軸位置", @@ -479,6 +480,7 @@ "textNoOverlay": "オーバーレイなし", "textNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "textNumber": "数", + "textOk": "OK", "textOnTickMarks": "目盛", "textOpacity": "不透明度", "textOut": "外", @@ -540,9 +542,7 @@ "textYen": "円", "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "txtSortHigh2Low": " 大きい順に並べ替えます", - "txtSortLow2High": "小さい順に並べ替えます。", - "textAutomatic": "Automatic", - "textOk": "Ok" + "txtSortLow2High": "小さい順に並べ替えます。" }, "Settings": { "advCSVOptions": "CSVオプションを選択する", @@ -572,6 +572,7 @@ "textComments": "コメント", "textCreated": "作成された", "textCustomSize": "ユーザー設定サイズ", + "textDarkTheme": "ダークテーマ", "textDelimeter": "デリミタ", "textDisableAll": "全てを無効にする", "textDisableAllMacrosWithNotification": "警告を表示して全てのマクロを無効にする", @@ -672,8 +673,7 @@ "txtSemicolon": "セミコロン", "txtSpace": "スペース", "txtTab": "タブ", - "warnDownloadAs": "この形式で保存する続けば、テクスト除いて全てが失います。続けてもよろしいですか?", - "textDarkTheme": "Dark Theme" + "warnDownloadAs": "この形式で保存する続けば、テクスト除いて全てが失います。続けてもよろしいですか?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 603ba7041..afe5a7913 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -298,8 +298,8 @@ "textWarnDeleteSheet": "워크시트에 데이터가 포함될 수 있습니다. 진행 하시겠습니까?", "textHidden": "Hidden", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "이 문서에 저장되지 않은 변경 사항이 있습니다. 자동 저장을 활성화하려면 \"이 페이지에서 나가기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 편집 내용이 삭제됩니다.", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 50d782a98..07a11e956 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -298,8 +298,8 @@ "textWarnDeleteSheet": "Het werkblad heeft misschien gegevens. Verder gaan met de bewerking?", "textHidden": "Hidden", "textMove": "Move", - "textMoveBack": "Move back", - "textMoveForward": "Move forward" + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 53a5216e4..62822a8e4 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -291,15 +291,15 @@ "textHide": "Ocultar", "textMore": "Mais", "textMove": "Mover", - "textMoveBack": "Voltar", - "textMoveForward": "Mover para frente", "textOk": "OK", "textRename": "Renomear", "textRenameSheet": "Renomear Folha", "textSheet": "Folha", "textSheetName": "Nome da folha", "textUnhide": "Reexibir", - "textWarnDeleteSheet": "A folha de trabalho talvez tenha dados. Proceder à operação?" + "textWarnDeleteSheet": "A folha de trabalho talvez tenha dados. Proceder à operação?", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 2521dd9dc..8c488620b 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -291,8 +291,8 @@ "textHide": "Ascunde", "textMore": "Mai multe", "textMove": "Mutare", - "textMoveBack": "Mutare înapoi", - "textMoveForward": "Mutare înainte", + "textMoveBefore": "Mutare înaintea foii", + "textMoveToEnd": "(Mutare la sfârșit)", "textOk": "OK", "textRename": "Redenumire", "textRenameSheet": "Redenumire foaie", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 2bfbf03e9..c49d387f6 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -291,8 +291,8 @@ "textHide": "Скрыть", "textMore": "Ещё", "textMove": "Переместить", - "textMoveBack": "Переместить назад", - "textMoveForward": "Переместить вперед", + "textMoveBefore": "Переместить перед листом", + "textMoveToEnd": "(Переместить в конец)", "textOk": "Ok", "textRename": "Переименовать", "textRenameSheet": "Переименовать лист", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index a86c63b82..26522f148 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -290,8 +290,6 @@ "textHide": "Gizle", "textMore": "Daha fazla", "textMove": "Taşı", - "textMoveBack": "Geriye taşı", - "textMoveForward": "İleri Taşı", "textOk": "Tamam", "textRename": "Yeniden adlandır", "textRenameSheet": "Sayfayı Yeniden Adlandır", @@ -299,7 +297,9 @@ "textSheetName": "Sayfa ismi", "textUnhide": "Gizlemeyi kaldır", "textWarnDeleteSheet": "Çalışma sayfasında veri olabilir. İşleme devam edilsin mi?", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "Bu belgede kaydedilmemiş değişiklikleriniz var. Otomatik kaydetmeyi beklemek için 'Bu Sayfada Kal' seçeneğini tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için 'Bu Sayfadan Ayrıl'ı tıklayın.", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 4621ba6ad..92302679e 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -299,7 +299,9 @@ "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden" + "textHidden": "Hidden", + "textMoveBefore": "Move before sheet", + "textMoveToEnd": "(Move to end)" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index cecedeb1d..aaa1d618d 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -291,8 +291,8 @@ "textHide": "隐藏", "textMore": "更多", "textMove": "移动", - "textMoveBack": "后移", - "textMoveForward": "前移", + "textMoveBefore": "在工作表之前移动", + "textMoveToEnd": "(移动到末尾)", "textOk": "OK", "textRename": "重命名", "textRenameSheet": "重命名工作表", diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index f57aebe28..d21cff870 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -30,6 +30,7 @@ class ContextMenu extends ContextMenuController { this.isOpenWindowUser = false; this.timer; this.getUserName = this.getUserName.bind(this); + this.isUserVisible = this.isUserVisible.bind(this); this.onApiMouseMove = this.onApiMouseMove.bind(this); this.onApiHyperlinkClick = this.onApiHyperlinkClick.bind(this); } @@ -43,6 +44,11 @@ class ContextMenu extends ContextMenuController { return AscCommon.UserInfoParser.getParsedName(user.asc_getUserName()); } + isUserVisible(id) { + const user = this.props.users.searchUserByCurrentId(id); + return user ? (user.asc_getIdOriginal()===this.props.users.currentUser.asc_getIdOriginal() || AscCommon.UserInfoParser.isUserVisible(user.asc_getUserName())) : true; + } + componentWillUnmount() { super.componentWillUnmount(); @@ -263,13 +269,18 @@ class ContextMenu extends ContextMenuController { } onApiMouseMove(dataarray) { - let index_locked; + const tipHeight = 20; + let index_locked, + index_foreign, + editorOffset = $$("#editor_sdk").offset(), + XY = [ editorOffset.left - $(window).scrollLeft(), editorOffset.top - $(window).scrollTop()]; for (let i = dataarray.length; i > 0; i--) { if (dataarray[i-1].asc_getType() === Asc.c_oAscMouseMoveType.LockedObject) index_locked = i; + if (dataarray[i-1].asc_getType() === Asc.c_oAscMouseMoveType.ForeignSelect) index_foreign = i; } - if (!index_locked && this.isOpenWindowUser) { + if (this.isOpenWindowUser) { this.timer = setTimeout(() => $$('.username-tip').remove(), 1500); this.isOpenWindowUser = false; } else { @@ -277,11 +288,8 @@ class ContextMenu extends ContextMenuController { $$('.username-tip').remove(); } - if (index_locked ) { - const tipHeight = 20; - let editorOffset = $$("#editor_sdk").offset(), - XY = [ editorOffset.left - $(window).scrollLeft(), editorOffset.top - $(window).scrollTop()], - data = dataarray[index_locked - 1], + if (index_locked && this.isUserVisible(dataarray[index_locked-1].asc_getUserId())) { + let data = dataarray[index_locked - 1], X = data.asc_getX(), Y = data.asc_getY(), src = $$(`
`); @@ -312,6 +320,39 @@ class ContextMenu extends ContextMenuController { } this.isOpenWindowUser = true; } + + if(index_foreign && this.isUserVisible(dataarray[index_foreign-1].asc_getUserId())) { + let data = dataarray[index_foreign - 1], + src = $$(`
`), + color = data.asc_getColor(), + foreignSelectX = data.asc_getX(), + foreignSelectY = data.asc_getY(); + + src.css({ + height : tipHeight + 'px', + position : 'absolute', + zIndex : '5000', + visibility : 'visible', + 'background-color': '#'+Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()) + }); + + src.text(this.getUserName(data.asc_getUserId())); + src.addClass('active'); + $$(document.body).append(src); + + if ( foreignSelectX + src.outerWidth() > $$(window).width() ) { + src.css({ + left: foreignSelectX - src.outerWidth() + 'px', + top: (foreignSelectY + XY[1] - tipHeight) + 'px', + }); + } else { + src.css({ + left: foreignSelectX + 'px', + top: (foreignSelectY + XY[1] - tipHeight) + 'px', + }); + } + this.isOpenWindowUser = true; + } } initExtraItems () { diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index 323279360..0565ce531 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -71,7 +71,7 @@ } } -.username-tip.active { +.username-tip { background-color: #ee3525; } @@ -134,8 +134,8 @@ border-radius: 2px; } } - .page{ - top: 30px; + .navbar { + top: -1px; } } diff --git a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js index 437fae8cf..d45318d05 100644 --- a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js @@ -52,8 +52,8 @@ export class storeApplicationSettings { getRegDataCodes() { const regDataCode = [ - { value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + { value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, + { value: 0x040B }, { value: 0x040C }, { value: 0x100C }, { value: 0x0410 }, { value: 0x0810 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 } ]; diff --git a/apps/spreadsheeteditor/mobile/src/store/textSettings.js b/apps/spreadsheeteditor/mobile/src/store/textSettings.js index 9b57d4350..b034ad03f 100644 --- a/apps/spreadsheeteditor/mobile/src/store/textSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/textSettings.js @@ -105,11 +105,11 @@ export class storeTextSettings { this.thumbCanvas = document.createElement('canvas'); this.thumbContext = this.thumbCanvas.getContext('2d'); this.thumbs = [ - {ratio: 1, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, - {ratio: 1.25, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, - {ratio: 1.5, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, - {ratio: 1.75, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, - {ratio: 2, path: '../../../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} + {ratio: 1, path: '../../../../../sdkjs/common/Images/fonts_thumbnail.png', width: this.iconWidth, height: this.iconHeight}, + {ratio: 1.25, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: this.iconWidth * 1.25, height: this.iconHeight * 1.25}, + {ratio: 1.5, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: this.iconWidth * 1.5, height: this.iconHeight * 1.5}, + {ratio: 1.75, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: this.iconWidth * 1.75, height: this.iconHeight * 1.75}, + {ratio: 2, path: '../../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: this.iconWidth * 2, height: this.iconHeight * 2} ]; const applicationPixelRatio = Common.Utils.applicationPixelRatio(); diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index 5e49ad2bd..b228ea604 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -14,23 +14,25 @@ const PageListMove = props => { const allSheets = sheets.sheets; return ( - - - - - { allSheets.map((model, index) => - model.hidden ? null : + + + + + + { allSheets.map((model, index) => + model.hidden ? null : + onMenuMoveClick(index)} />) + } onMenuMoveClick(index)} />) - } - onMenuMoveClick(-255)}/> - - - + title={t('Statusbar.textMoveToEnd')} + onClick={() => onMenuMoveClick(-255)}/> + + + + ) }; @@ -40,19 +42,21 @@ const PageAllList = (props) => { const allSheets = sheets.sheets; return ( - - - { allSheets.map( (model,sheetIndex) => - onTabListClick(sheetIndex)}> - {model.hidden ? -
- {t('Statusbar.textHidden')} -
- : null} -
) - } -
-
+ + + + { allSheets.map( (model,sheetIndex) => + onTabListClick(sheetIndex)}> + {model.hidden ? +
+ {t('Statusbar.textHidden')} +
+ : null} +
) + } +
+
+
) }; @@ -138,7 +142,7 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop ) : null} { - + } @@ -150,7 +154,7 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop : - + } diff --git a/vendor/framework7-react/build/webpack.config.js b/vendor/framework7-react/build/webpack.config.js index 7780894ce..09257fa73 100644 --- a/vendor/framework7-react/build/webpack.config.js +++ b/vendor/framework7-react/build/webpack.config.js @@ -132,8 +132,7 @@ module.exports = { lessOptions: { javascriptEnabled: true, globalVars: { - "common-image-header-path": env === 'production' ? `../../../${editor}/mobile/resources/img/header` : '../../common/mobile/resources/img/header', - "common-image-about-path": env === 'production' ? `../../../${editor}/mobile/resources/img/about` : '../../common/main/resources/img/about', + "common-image-path": env === 'production' ? `../../../${editor}/mobile/resources/img` : '../../common/mobile/resources/img', "app-image-path": env === 'production' ? '../resources/img' : './resources/img', } }