diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index 969edb2383..1b97145071 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -518,6 +518,10 @@ define([ Common.Utils.InternalSettings.set("sse-settings-r1c1", value); this.api.asc_setR1C1Mode(value); + value = Common.localStorage.getBool("sse-settings-smooth-scroll"); + Common.Utils.InternalSettings.set("sse-settings-smooth-scroll", value); + this.api.asc_SetSmoothScrolling(value); + var fast_coauth = Common.Utils.InternalSettings.get("sse-settings-coauthmode"); if (this.mode.isEdit && !this.mode.isOffline && this.mode.canCoAuthoring) { if (this.mode.canChangeCoAuthoring) { diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 0fcad05b8a..f3cbcc5928 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1010,6 +1010,10 @@ define([ /** spellcheck settings end **/ } + value = Common.localStorage.getBool("sse-settings-smooth-scroll", true); + Common.Utils.InternalSettings.set("sse-settings-smooth-scroll", value); + this.api.asc_SetSmoothScrolling(value); + me.api.asc_registerCallback('asc_onStartAction', _.bind(me.onLongActionBegin, me)); me.api.asc_registerCallback('asc_onConfirmAction', _.bind(me.onConfirmAction, me)); me.api.asc_registerCallback('asc_onActiveSheetChanged', _.bind(me.onActiveSheetChanged, me)); diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 8f4fa4426f..e1cc84127e 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -476,8 +476,10 @@ define([ button.on('click', _.bind(me.onEditHeaderClick, me, undefined)); }); toolbar.btnPrintTitles.on('click', _.bind(this.onPrintTitlesClick, this)); - toolbar.chPrintGridlines.on('change', _.bind(this.onPrintGridlinesChange, this)); - toolbar.chPrintHeadings.on('change', _.bind(this.onPrintHeadingsChange, this)); + toolbar.chPrintGridlines.on('change', _.bind(this.onPrintGridlinesChange, this)); + toolbar.chPrintHeadings.on('change', _.bind(this.onPrintHeadingsChange, this)); + toolbar.btnRtlSheet.on('click', _.bind(this.onRtlSheetClick, this)); + if (toolbar.btnCondFormat.rendered) { toolbar.btnCondFormat.menu.on('show:before', _.bind(this.onShowBeforeCondFormat, this, this.toolbar, 'toolbar')); } @@ -2639,7 +2641,8 @@ define([ var currentSheet = this.api.asc_getActiveWorksheetIndex(), props = this.api.asc_getPageOptions(currentSheet), - opt = props.asc_getPageSetup(); + opt = props.asc_getPageSetup(), + params = this.api.asc_getSheetViewSettings(); this.onApiPageOrient(opt.asc_getOrientation()); this.onApiPageSize(opt.asc_getWidth(), opt.asc_getHeight()); @@ -2647,6 +2650,7 @@ define([ this.onChangeScaleSettings(opt.asc_getFitToWidth(),opt.asc_getFitToHeight(),opt.asc_getScale()); this.onApiGridLines(props.asc_getGridLines()); this.onApiHeadings(props.asc_getHeadings()); + this.onApiRtlSheet(params.asc_getRightToLeft()); this.api.asc_isLayoutLocked(currentSheet) ? this.onApiLockDocumentProps(currentSheet) : this.onApiUnLockDocumentProps(currentSheet); this.toolbar.lockToolbar(Common.enumLock.printAreaLock, this.api.asc_isPrintAreaLocked(currentSheet), {array: [this.toolbar.btnPrintArea]}); @@ -2666,6 +2670,10 @@ define([ this.toolbar.chPrintHeadings.setValue(checked, true); }, + onApiRtlSheet: function (checked) { + this.toolbar.btnRtlSheet.toggle(!!checked, true); + }, + onApiPageSize: function(w, h) { if (this._state.pgorient===undefined) return; @@ -4925,12 +4933,17 @@ define([ }, onPrintGridlinesChange: function (field, value) { - this.api.asc_SetPrintGridlines(value === 'checked'); + this.api && this.api.asc_SetPrintGridlines(value === 'checked'); Common.NotificationCenter.trigger('edit:complete', this.toolbar); }, onPrintHeadingsChange: function (field, value) { - this.api.asc_SetPrintHeadings(value === 'checked'); + this.api && this.api.asc_SetPrintHeadings(value === 'checked'); + Common.NotificationCenter.trigger('edit:complete', this.toolbar); + }, + + onRtlSheetClick: function (btn) { + this.api && this.api.asc_setRightToLeft(btn.pressed); Common.NotificationCenter.trigger('edit:complete', this.toolbar); }, diff --git a/apps/spreadsheeteditor/main/app/template/Toolbar.template b/apps/spreadsheeteditor/main/app/template/Toolbar.template index 59eeef3270..e245367f04 100644 --- a/apps/spreadsheeteditor/main/app/template/Toolbar.template +++ b/apps/spreadsheeteditor/main/app/template/Toolbar.template @@ -187,6 +187,10 @@
+
+ +
+
diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 0a02351950..c29c46a4d4 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -324,7 +324,10 @@ define([], function () { '', '
', '', - '', + '', + '
', + '', + '', '
Beta', '', /*'', @@ -479,6 +482,14 @@ define([], function () { }); (Common.Utils.isIE || Common.Utils.isMac && Common.Utils.isGecko) && this.chUseAltKey.$el.parent().parent().hide(); + this.chSmoothScroll = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-smooth-scroll'), + labelText: this.strSmoothScroll, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.chScreenReader = new Common.UI.CheckBox({ el: $markup.findById('#fms-chb-scrn-reader'), labelText: this.txtScreenReader, @@ -1038,6 +1049,7 @@ define([], function () { this.chLiveComment.setValue(Common.Utils.InternalSettings.get("sse-settings-livecomment")); this.chResolvedComment.setValue(Common.Utils.InternalSettings.get("sse-settings-resolvedcomment")); this.chR1C1Style.setValue(Common.Utils.InternalSettings.get("sse-settings-r1c1")); + this.chSmoothScroll.setValue(!Common.Utils.InternalSettings.get("sse-settings-smooth-scroll")); var fast_coauth = Common.Utils.InternalSettings.get("sse-settings-coauthmode"); this.rbCoAuthModeFast.setValue(fast_coauth); @@ -1209,6 +1221,7 @@ define([], function () { } /** coauthoring end **/ Common.localStorage.setItem("sse-settings-r1c1", this.chR1C1Style.isChecked() ? 1 : 0); + Common.localStorage.setItem("sse-settings-smooth-scroll", this.chSmoothScroll.isChecked() ? 0 : 1); Common.localStorage.setItem("sse-settings-fontrender", this.cmbFontRender.getValue()); var item = this.cmbFontRender.store.findWhere({value: 'custom'}); Common.localStorage.setItem("sse-settings-cachemode", item && !item.get('checked') ? 0 : 1); diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index ecff8e1305..3792933555 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -2164,6 +2164,17 @@ define([ dataHintOffset: 'small' }); + me.btnRtlSheet = new Common.UI.Button({ + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon btn-sheet-rtl', + lock: [_set.selRange, _set.selRangeEdit, _set.sheetLock, _set.lostConnect, _set.coAuth, _set.editCell], + caption: this.textRtlSheet + ' (Beta)', + enableToggle: true, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + me.btnImgAlign = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-align', @@ -2232,7 +2243,7 @@ define([ me.btnCopy, me.btnPaste, me.btnCut, me.btnSelectAll, me.btnReplace, me.listStyles, me.btnPrint, /*me.btnSave,*/ me.btnClearStyle, me.btnCopyStyle, me.btnPageMargins, me.btnPageSize, me.btnPageOrient, me.btnPrintArea, me.btnPageBreak, me.btnPrintTitles, me.btnImgAlign, me.btnImgBackward, me.btnImgForward, me.btnImgGroup, me.btnScale, - me.chPrintGridlines, me.chPrintHeadings, me.btnVisibleArea, me.btnVisibleAreaClose, me.btnTextFormatting, me.btnHorizontalAlign, me.btnVerticalAlign + me.chPrintGridlines, me.chPrintHeadings, me.btnRtlSheet, me.btnVisibleArea, me.btnVisibleAreaClose, me.btnTextFormatting, me.btnHorizontalAlign, me.btnVerticalAlign ]; _.each(me.lockControls.concat([me.btnSave]), function(cmp) { @@ -2435,6 +2446,7 @@ define([ _injectComponent('#slot-btn-printtitles', this.btnPrintTitles); _injectComponent('#slot-chk-print-gridlines', this.chPrintGridlines); _injectComponent('#slot-chk-print-headings', this.chPrintHeadings); + _injectComponent('#slot-btn-rtl-sheet', this.btnRtlSheet); _injectComponent('#slot-img-align', this.btnImgAlign); _injectComponent('#slot-img-group', this.btnImgGroup); _injectComponent('#slot-img-movefrwd', this.btnImgForward); @@ -2538,6 +2550,7 @@ define([ _updateHint(this.btnTextFormatting, this.tipTextFormatting); _updateHint(this.btnHorizontalAlign, this.tipHAlighOle); _updateHint(this.btnVerticalAlign, this.tipVAlighOle); + _updateHint(this.btnRtlSheet, this.tipRtlSheet + ' (Beta)'); this.btnsEditHeader.forEach(function (btn) { _updateHint(btn, me.tipEditHeader); }); diff --git a/apps/spreadsheeteditor/main/locale/ar.json b/apps/spreadsheeteditor/main/locale/ar.json index 590c685cf8..5fe0c37cb0 100644 --- a/apps/spreadsheeteditor/main/locale/ar.json +++ b/apps/spreadsheeteditor/main/locale/ar.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "فك حماية الورقة", "SSE.Views.WBProtection.txtWBUnlockDescription": "أدخل كلمة سر لفك تشفير المصنف", "SSE.Views.WBProtection.txtWBUnlockTitle": "فك حماية المصنف", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json index ddbc81b1b6..937962a889 100644 --- a/apps/spreadsheeteditor/main/locale/az.json +++ b/apps/spreadsheeteditor/main/locale/az.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Vərəqin qorumasını ləğv et", "SSE.Views.WBProtection.txtWBUnlockDescription": "İş kitabının mühafizəsini ləğv etmək üçün parol daxil edin", "SSE.Views.WBProtection.txtWBUnlockTitle": "İş kitabının qorumasını ləğv et", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index fb881fe4c3..93bfc08f91 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Зняць абарону аркуша", "SSE.Views.WBProtection.txtWBUnlockDescription": "Каб зняць абарону кнігі, увядзіце пароль", "SSE.Views.WBProtection.txtWBUnlockTitle": "Зняць абарону працоўнай кнігі", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json index 2677f64a5f..e033351d87 100644 --- a/apps/spreadsheeteditor/main/locale/bg.json +++ b/apps/spreadsheeteditor/main/locale/bg.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index c71588e53b..0c82e55f59 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desprotegeix el full", "SSE.Views.WBProtection.txtWBUnlockDescription": "Introdueix una contrasenya per desprotegir el llibre", "SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotegeix el llibre de treball", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 031b05c3b0..8b1cac1363 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Zrušit zabezpečení listu", "SSE.Views.WBProtection.txtWBUnlockDescription": "Vložte heslo pro přístup k sešitu", "SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušit zabezpečení sešitu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index a7b677beb4..aeb3bccae1 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Fjern beskyttelse af ark", "SSE.Views.WBProtection.txtWBUnlockDescription": "Indtast en adgangskode for at fjerne beskyttelsen af ​​projektmappen", "SSE.Views.WBProtection.txtWBUnlockTitle": "ubeskyt projektmappe", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 796921865e..f0f1dd7d13 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Liste entschützen", "SSE.Views.WBProtection.txtWBUnlockDescription": "Zum Entschützen der Arbeitsmappe bitte Kennwort eingeben", "SSE.Views.WBProtection.txtWBUnlockTitle": "Arbeitsmappe entschützen", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index 1ba59ed9e8..34d1417692 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Άρση προστασίας φύλλου", "SSE.Views.WBProtection.txtWBUnlockDescription": "Εισάγετε συνθηματικό για άρση προστασίας βιβλίου εργασίας", "SSE.Views.WBProtection.txtWBUnlockTitle": "Άρση προστασίας βιβλίου εργασίας", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index b9f2ce4b65..55ca5238fb 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -2698,6 +2698,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unit of measurement", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Use separators based on regional settings", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Default Zoom value", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Every 10 minutes", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Every 30 minutes", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Every 5 minutes", @@ -4371,6 +4372,8 @@ "SSE.Views.Toolbar.txtTime": "Time", "SSE.Views.Toolbar.txtUnmerge": "Unmerge cells", "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.Top10FilterDialog.textType": "Show", "SSE.Views.Top10FilterDialog.txtBottom": "Bottom", "SSE.Views.Top10FilterDialog.txtBy": "by", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 30636db45a..6e8a55be28 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desproteger hoja", "SSE.Views.WBProtection.txtWBUnlockDescription": "Introduzca una contraseña para quitarle la protección al libro", "SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger libro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/eu.json b/apps/spreadsheeteditor/main/locale/eu.json index b419ecc10f..69c0b62034 100644 --- a/apps/spreadsheeteditor/main/locale/eu.json +++ b/apps/spreadsheeteditor/main/locale/eu.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Kendu babesa orriari", "SSE.Views.WBProtection.txtWBUnlockDescription": "Idatzi pasahitza laneko liburuari babesa kentzeko", "SSE.Views.WBProtection.txtWBUnlockTitle": "Kendu babesa laneko liburuari", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fi.json b/apps/spreadsheeteditor/main/locale/fi.json index 6cf4808f62..7c5ee9bb42 100644 --- a/apps/spreadsheeteditor/main/locale/fi.json +++ b/apps/spreadsheeteditor/main/locale/fi.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 537c5588ce..928d9f44a8 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Déprotéger la feuille de calcul", "SSE.Views.WBProtection.txtWBUnlockDescription": "Entrez un mot de passe pour déprotéger le classeur", "SSE.Views.WBProtection.txtWBUnlockTitle": "Déprotéger le classeur", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json index 03db922b84..714978ac4b 100644 --- a/apps/spreadsheeteditor/main/locale/gl.json +++ b/apps/spreadsheeteditor/main/locale/gl.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desprotexer folla", "SSE.Views.WBProtection.txtWBUnlockDescription": "Introduza un contrasinal para quitarlle a protección ao libro", "SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotexer libro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/he.json b/apps/spreadsheeteditor/main/locale/he.json index 6f747f7df4..ec91e54a74 100644 --- a/apps/spreadsheeteditor/main/locale/he.json +++ b/apps/spreadsheeteditor/main/locale/he.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "הסרת הגנה על גליון", "SSE.Views.WBProtection.txtWBUnlockDescription": "הזנת סיסמה כדי לבטל את ההגנה חוברת עבודה", "SSE.Views.WBProtection.txtWBUnlockTitle": "חוברת עבודה לא מוגנת", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json index ac6988764c..3da207923c 100644 --- a/apps/spreadsheeteditor/main/locale/hu.json +++ b/apps/spreadsheeteditor/main/locale/hu.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Munkalap védelmének megszüntetése", "SSE.Views.WBProtection.txtWBUnlockDescription": "Írjon be egy jelszót a munkafüzet védelmének megszüntetéséhez", "SSE.Views.WBProtection.txtWBUnlockTitle": "Munkafüzet védelmének megszüntetése", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json index 5f485f94fc..ec45ad9e13 100644 --- a/apps/spreadsheeteditor/main/locale/hy.json +++ b/apps/spreadsheeteditor/main/locale/hy.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Չպաշտպանել թերթիկը", "SSE.Views.WBProtection.txtWBUnlockDescription": "Մուտքագրեք գաղտնաբառ՝ աշխատանքային գրքույկը պաշտպանելու համար", "SSE.Views.WBProtection.txtWBUnlockTitle": "Չպաշտպանել աշխատանքային գրքույկը", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json index 0baf42a661..7ccf2657ea 100644 --- a/apps/spreadsheeteditor/main/locale/id.json +++ b/apps/spreadsheeteditor/main/locale/id.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Buka Proteksi Sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Masukkan password untuk membuka proteksi workbook", "SSE.Views.WBProtection.txtWBUnlockTitle": "Buka Proteksi Workbook", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 25092871cd..5b0f11f7cc 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Rimuovi la protezione del foglio", "SSE.Views.WBProtection.txtWBUnlockDescription": "Inserisci una password per rimuovere la protezione del libro di lavoro", "SSE.Views.WBProtection.txtWBUnlockTitle": "Rimuovi la protezione del libro di lavoro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index e6e40ca0aa..11378027ff 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "シートを保護を解除する", "SSE.Views.WBProtection.txtWBUnlockDescription": "ブックを保護解除するようにパスワードを入力してください", "SSE.Views.WBProtection.txtWBUnlockTitle": "ブックを保護を解除する", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json index 4017fe2275..d974fdfc10 100644 --- a/apps/spreadsheeteditor/main/locale/ko.json +++ b/apps/spreadsheeteditor/main/locale/ko.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "시트 보호해제", "SSE.Views.WBProtection.txtWBUnlockDescription": "통합 문서 보호를 해제하려면 비밀번호를 입력하세요.", "SSE.Views.WBProtection.txtWBUnlockTitle": "통합 문서 보호 잠금 해제", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json index 3357cfcfc4..e1ba1894ca 100644 --- a/apps/spreadsheeteditor/main/locale/lo.json +++ b/apps/spreadsheeteditor/main/locale/lo.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "ບໍ່ປ້ອງກັນແຜ່ນຊີດ", "SSE.Views.WBProtection.txtWBUnlockDescription": "ປ້ອນລະຫັດຜ່ານເພື່ອບໍ່ປົກປ້ອງປື້ມບັນທືກ", "SSE.Views.WBProtection.txtWBUnlockTitle": "ບໍ່ປ້ອງ ປື້ມບັນທືກ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json index 285dcbb2cb..854764caad 100644 --- a/apps/spreadsheeteditor/main/locale/lv.json +++ b/apps/spreadsheeteditor/main/locale/lv.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Noņemt aizsargāto lapu", "SSE.Views.WBProtection.txtWBUnlockDescription": "Ievadiet paroli, lai noņemtu darbgrāmatas aizsardzību", "SSE.Views.WBProtection.txtWBUnlockTitle": "Noņemt darbgrāmatas aizsardzību", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ms.json b/apps/spreadsheeteditor/main/locale/ms.json index c2ac1c59a5..9aaf2c25ab 100644 --- a/apps/spreadsheeteditor/main/locale/ms.json +++ b/apps/spreadsheeteditor/main/locale/ms.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Helaian Nyahlindung", "SSE.Views.WBProtection.txtWBUnlockDescription": "Masukkan kata laluan untuk melindungi buku kerja", "SSE.Views.WBProtection.txtWBUnlockTitle": "Buku Kerja Nyahlindung", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index efe57f62d8..2fd7454af3 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Beveiliging van blad opheffen", "SSE.Views.WBProtection.txtWBUnlockDescription": "Voer een wachtwoord in om de beveiliging voor het werkboek op te heffen", "SSE.Views.WBProtection.txtWBUnlockTitle": "Beveiliging van werkboek opheffen", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json index e80d8f716b..1aed6c95ab 100644 --- a/apps/spreadsheeteditor/main/locale/pl.json +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Usuń ochronę arkusza", "SSE.Views.WBProtection.txtWBUnlockDescription": "Wprowadź hasło, aby wyłączyć ochronę skoroszytu", "SSE.Views.WBProtection.txtWBUnlockTitle": "Usuń ochronę skoroszytu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt-pt.json b/apps/spreadsheeteditor/main/locale/pt-pt.json index d0490f0b9d..067cf878da 100644 --- a/apps/spreadsheeteditor/main/locale/pt-pt.json +++ b/apps/spreadsheeteditor/main/locale/pt-pt.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desproteger folha", "SSE.Views.WBProtection.txtWBUnlockDescription": "Introduza uma palavra-passe para desbloquear o livro", "SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger Livro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index 903eae2ba6..8111e01d4e 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desproteger a folha", "SSE.Views.WBProtection.txtWBUnlockDescription": "Digite uma senha para desproteger a pasta de trabalho", "SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger pasta de trabalho", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index 7de4cb2ef5..7a50253088 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Anularea protecției foii de calcul", "SSE.Views.WBProtection.txtWBUnlockDescription": "Introduceți parola pentru dezactivarea protejării a registrului de calcul", "SSE.Views.WBProtection.txtWBUnlockTitle": "Dezactivarea protejării registrului de calcul", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 3f74b5d586..84e2d48de2 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Снять защиту листа", "SSE.Views.WBProtection.txtWBUnlockDescription": "Введите пароль для отключения защиты книги", "SSE.Views.WBProtection.txtWBUnlockTitle": "Снять защиту книги", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/si.json b/apps/spreadsheeteditor/main/locale/si.json index 878b5f9bc9..638bd99e71 100644 --- a/apps/spreadsheeteditor/main/locale/si.json +++ b/apps/spreadsheeteditor/main/locale/si.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "කොළය අනාරක්‍ෂණය", "SSE.Views.WBProtection.txtWBUnlockDescription": "වැඩපොත අනාරක්‍ෂණයට මුරපදයක් ඇතුල් කරන්න", "SSE.Views.WBProtection.txtWBUnlockTitle": "වැඩපොත අනාරක්‍ෂණය", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index aca879321d..b9e680a122 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Zrušte ochranu listu", "SSE.Views.WBProtection.txtWBUnlockDescription": "Vložte heslo pre vstup k zošitu", "SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušte ochranu zošita", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index 655bc6a181..493262f7eb 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sr-cyrl.json b/apps/spreadsheeteditor/main/locale/sr-cyrl.json index 792beddde4..d2cd99f145 100644 --- a/apps/spreadsheeteditor/main/locale/sr-cyrl.json +++ b/apps/spreadsheeteditor/main/locale/sr-cyrl.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Незаштити лист", "SSE.Views.WBProtection.txtWBUnlockDescription": "Унесите лозинку да незаштитите радну књигу", "SSE.Views.WBProtection.txtWBUnlockTitle": "Незаштити радну књигу", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sr.json b/apps/spreadsheeteditor/main/locale/sr.json index 05ca14c9f6..763d5dcb20 100644 --- a/apps/spreadsheeteditor/main/locale/sr.json +++ b/apps/spreadsheeteditor/main/locale/sr.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Nezaštiti list", "SSE.Views.WBProtection.txtWBUnlockDescription": "Unesite lozinku da nezaštitite radnu knjigu", "SSE.Views.WBProtection.txtWBUnlockTitle": "Nezaštiti radnu knjigu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index ed6a336ac4..0cc8d4b413 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Lås upp kalkylbladet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Ange ett lösenord för att låsa upp arbetsbokens skydd", "SSE.Views.WBProtection.txtWBUnlockTitle": "Lås upp arbetsboken", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 3f85699d16..e38c377136 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Korumasız Sayfa", "SSE.Views.WBProtection.txtWBUnlockDescription": "Çalışma kitabının korumasını kaldırmak için bir parola girin", "SSE.Views.WBProtection.txtWBUnlockTitle": "Korumasız Çalışma Sayfası", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index d264ed388a..3fcf15883a 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Зняти захист аркуша", "SSE.Views.WBProtection.txtWBUnlockDescription": "Введіть пароль для вимкнення захисту книги", "SSE.Views.WBProtection.txtWBUnlockTitle": "Зняти захист книги", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json index eaedb89ad0..edab0f1f5f 100644 --- a/apps/spreadsheeteditor/main/locale/vi.json +++ b/apps/spreadsheeteditor/main/locale/vi.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh-tw.json b/apps/spreadsheeteditor/main/locale/zh-tw.json index b11f2aff6f..035062b4c1 100644 --- a/apps/spreadsheeteditor/main/locale/zh-tw.json +++ b/apps/spreadsheeteditor/main/locale/zh-tw.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "解除工作表保護", "SSE.Views.WBProtection.txtWBUnlockDescription": "輸入密碼以解除工作簿的保護", "SSE.Views.WBProtection.txtWBUnlockTitle": "解除工作簿保護", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 69299ebdf2..22394a4515 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -4490,6 +4490,9 @@ "SSE.Views.WBProtection.txtSheetUnlockTitle": "撤消工作表保护", "SSE.Views.WBProtection.txtWBUnlockDescription": "输入密码以取消工作簿保护", "SSE.Views.WBProtection.txtWBUnlockTitle": "撤消工作簿保护", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSmoothScroll": "Snapped to the grid while scrolling", + "SSE.Views.Toolbar.tipRtlSheet": "Switch the sheet direction so that the first column is on the right side", + "SSE.Views.Toolbar.textRtlSheet": "Sheet Right-to-left", "SSE.Views.ChartSettingsDlg.textShowEquation": "Display equation on chart", "SSE.Views.ChartSettingsDlg.textTrendlineOptions": "Trendline options" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/btn-sheet-rtl.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/btn-sheet-rtl.png new file mode 100644 index 0000000000..c33db22359 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/btn-sheet-rtl.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/btn-sheet-rtl.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/btn-sheet-rtl.png new file mode 100644 index 0000000000..97a0d7fd0f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/btn-sheet-rtl.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/btn-sheet-rtl.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/btn-sheet-rtl.png new file mode 100644 index 0000000000..0f56014bbd Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/btn-sheet-rtl.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/btn-sheet-rtl.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/btn-sheet-rtl.png new file mode 100644 index 0000000000..809f82415b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/btn-sheet-rtl.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/2.5x/big/btn-sheet-rtl.svg b/apps/spreadsheeteditor/main/resources/img/toolbar/2.5x/big/btn-sheet-rtl.svg new file mode 100644 index 0000000000..d6937de3f0 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/img/toolbar/2.5x/big/btn-sheet-rtl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/btn-sheet-rtl.png b/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/btn-sheet-rtl.png new file mode 100644 index 0000000000..c2ffc7104d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/btn-sheet-rtl.png differ