Skip to content

Commit

Permalink
Merge pull request '[SSE] Add settings for default sheet direction' (#…
Browse files Browse the repository at this point in the history
…187) from feature/sse-def-direction into release/v8.3.0
  • Loading branch information
Julia Radzhabova committed Dec 18, 2024
2 parents 2053d15 + 5d90a39 commit 812c33c
Show file tree
Hide file tree
Showing 45 changed files with 255 additions and 41 deletions.
4 changes: 4 additions & 0 deletions apps/spreadsheeteditor/main/app/controller/LeftMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,10 @@ define([
value = parseInt(Common.localStorage.getItem("sse-settings-paste-button"));
Common.Utils.InternalSettings.set("sse-settings-paste-button", value);
this.api.asc_setVisiblePasteButton(!!value);

value = Common.localStorage.getBool("sse-settings-def-sheet-rtl");
Common.Utils.InternalSettings.set("sse-settings-def-sheet-rtl", value);
this.api.asc_setDefaultDirection(value);
}

var reg = Common.localStorage.getItem("sse-settings-reg-settings"),
Expand Down
4 changes: 4 additions & 0 deletions apps/spreadsheeteditor/main/app/controller/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,10 @@ define([
Common.Utils.InternalSettings.set("sse-settings-smooth-scroll", value);
this.api.asc_SetSmoothScrolling(value);

value = Common.localStorage.getBool("sse-settings-def-sheet-rtl");
Common.Utils.InternalSettings.set("sse-settings-def-sheet-rtl", value);
this.api.asc_setDefaultDirection(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));
Expand Down
38 changes: 38 additions & 0 deletions apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,20 @@ define([], function () {
'<label class="comment-text"><%= scope.txtQuickPrintTip %></label></span></div>',
'</td>',
'</tr>',*/
'<tr class="divider edit"></tr>',
'<tr class="edit">',
'<td colspan="2" class="subgroup-name"><label><%= scope.txtSheetDir %></label></td>',
'</tr>',
'<tr class="edit">',
'<td colspan="2" style="padding-top:0;padding-bottom:0;"><label class="comment-text"><%= scope.txtSheetDirDesc %></label></td>',
'</tr>',
'<tr class="edit">',
'<td colspan="2" role="radiogroup" aria-owns="fms-rb-sheet-rtl"><div id="fms-rb-sheet-ltr"></div></td>',
'</tr>',
'<tr class="edit">',
'<td colspan="2"><div id="fms-rb-sheet-rtl"></div></td>',
'</tr>',
'<tr class ="divider edit"></tr>',
'<tr class="edit quick-access">',
'<td colspan="2"><button type="button" class="btn btn-text-default" id="fms-btn-customize-quick-access" style="width:auto;display:inline-block;padding-right:10px;padding-left:10px;" data-hint="2" data-hint-direction="bottom" data-hint-offset="medium"><%= scope.txtCustomizeQuickAccess %></button></div></td>',
'</tr>',
Expand Down Expand Up @@ -936,6 +950,24 @@ define([], function () {
dataHintOffset: 'small'
});

this.rbSheetLtr = new Common.UI.RadioBox({
el :$markup.findById('#fms-rb-sheet-ltr'),
name : 'sheet-dir',
labelText : this.txtSheetLtr,
dataHint: '2',
dataHintDirection: 'left',
dataHintOffset: 'small'
});

this.rbSheetRtl = new Common.UI.RadioBox({
el :$markup.findById('#fms-rb-sheet-rtl'),
name : 'sheet-dir',
labelText : this.txtSheetRtl,
dataHint: '2',
dataHintDirection: 'left',
dataHintOffset: 'small'
});

this.pnlSettings = $markup.find('.flex-settings').addBack().filter('.flex-settings');
this.pnlApply = $markup.find('.fms-flex-apply').addBack().filter('.fms-flex-apply');
this.pnlTable = this.pnlSettings.find('table');
Expand Down Expand Up @@ -1121,6 +1153,10 @@ define([], function () {
this.inputMaxChange.setValue(value.asc_getMaxChange());
}

value = Common.Utils.InternalSettings.get("sse-settings-def-sheet-rtl");
this.rbSheetLtr.setValue(!value);
this.rbSheetRtl.setValue(value);

var data = [];
for (var t in Common.UI.Themes.map()) {
data.push({value: t, displayValue: Common.UI.Themes.get(t).text});
Expand Down Expand Up @@ -1246,6 +1282,8 @@ define([], function () {
Common.localStorage.setItem("sse-settings-function-tooltip", this.chTooltip.isChecked() ? 1 : 0);
Common.Utils.InternalSettings.set("sse-settings-function-tooltip", this.chTooltip.isChecked() ? 1 : 0);

this.mode.isEdit && Common.localStorage.setBool("sse-settings-def-sheet-rtl", this.rbSheetRtl.getValue());

//Common.localStorage.setBool("sse-settings-quick-print-button", this.chQuickPrint.isChecked());
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
Common.UI.TabStyler.setBackground(this.chTabBack.isChecked() ? 'toolbar' : 'header');
Expand Down
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "أدخل كلمة السر لفك تشفير الصفحة",
"SSE.Views.WBProtection.txtSheetUnlockTitle": "فك حماية الورقة",
"SSE.Views.WBProtection.txtWBUnlockDescription": "أدخل كلمة سر لفك تشفير المصنف",
"SSE.Views.WBProtection.txtWBUnlockTitle": "فك حماية المصنف"
"SSE.Views.WBProtection.txtWBUnlockTitle": "فك حماية المصنف",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/az.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Vərəqin mühafizəsini ləğv etmək üçün parol daxil edin",
"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.WBProtection.txtWBUnlockTitle": "İş kitabının qorumasını ləğv et",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/be.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Каб зняць абарону аркуша, увядзіце пароль",
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Зняць абарону аркуша",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Каб зняць абарону кнігі, увядзіце пароль",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Зняць абарону працоўнай кнігі"
"SSE.Views.WBProtection.txtWBUnlockTitle": "Зняць абарону працоўнай кнігі",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/bg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Enter a password to unprotect sheet",
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook"
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Introdueix una contrasenya per desprotegir el full",
"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.WBProtection.txtWBUnlockTitle": "Desprotegeix el llibre de treball",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Zadejte heslo pro deaktivaci zabezpečení listu",
"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.WBProtection.txtWBUnlockTitle": "Zrušit zabezpečení sešitu",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Indtast en adgangskode for at fjerne beskyttelsen af ​​arket",
"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.WBProtection.txtWBUnlockTitle": "ubeskyt projektmappe",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Zum Entschützen der Tabellenkalkulation bitte Kennwort eingeben",
"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.WBProtection.txtWBUnlockTitle": "Arbeitsmappe entschützen",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Εισάγετε συνθηματικό για άρση προστασίας φύλλου",
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Άρση προστασίας φύλλου",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Εισάγετε συνθηματικό για άρση προστασίας βιβλίου εργασίας",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Άρση προστασίας βιβλίου εργασίας"
"SSE.Views.WBProtection.txtWBUnlockTitle": "Άρση προστασίας βιβλίου εργασίας",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
4 changes: 4 additions & 0 deletions apps/spreadsheeteditor/main/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2806,6 +2806,10 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Workspace",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinese",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left",
"SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning",
"SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "With password",
"SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protect Spreadsheet",
Expand Down
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Introduzca una contraseña para quitarle la protección a la hoja",
"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.WBProtection.txtWBUnlockTitle": "Desproteger libro",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/eu.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Idatzi pasahitza orriari babesa kentzeko",
"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.WBProtection.txtWBUnlockTitle": "Kendu babesa laneko liburuari",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/fi.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Enter a password to unprotect sheet",
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook"
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Entrez un mot de passe pour déprotéger la feuille de calcul",
"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.WBProtection.txtWBUnlockTitle": "Déprotéger le classeur",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/gl.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Introduza un contrasinal para quitarlle a protección á folla",
"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.WBProtection.txtWBUnlockTitle": "Desprotexer libro",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/he.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "הזנת סיסמה כדי להסיר הגנה גיליון",
"SSE.Views.WBProtection.txtSheetUnlockTitle": "הסרת הגנה על גליון",
"SSE.Views.WBProtection.txtWBUnlockDescription": "הזנת סיסמה כדי לבטל את ההגנה חוברת עבודה",
"SSE.Views.WBProtection.txtWBUnlockTitle": "חוברת עבודה לא מוגנת"
"SSE.Views.WBProtection.txtWBUnlockTitle": "חוברת עבודה לא מוגנת",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
6 changes: 5 additions & 1 deletion apps/spreadsheeteditor/main/locale/hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -4537,5 +4537,9 @@
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Írjon be egy jelszót a munkalap védelmének megszüntetéséhez",
"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.WBProtection.txtWBUnlockTitle": "Munkafüzet védelmének megszüntetése",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDir": "Default sheet direction",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetDirDesc": "This setting will affect only the new sheets",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetLtr": "Left-to-right",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSheetRtl": "Right-to-left"
}
Loading

0 comments on commit 812c33c

Please sign in to comment.